Skip to content

Commit 35bbd10

Browse files
committed
feat(api): enum updates
1 parent c580763 commit 35bbd10

8 files changed

+12
-6
lines changed

src/increase/types/document.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ class Document(BaseModel):
4949
"onboarding_questionnaire",
5050
"penetration_test_report",
5151
"platform_compliance_metrics_submission",
52+
"consumer_platform_compliance_metrics_submission",
5253
"program_risk_assessment",
5354
"security_audit_report",
5455
"servicing_policy",

src/increase/types/document_list_params.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
"onboarding_questionnaire",
5454
"penetration_test_report",
5555
"platform_compliance_metrics_submission",
56+
"consumer_platform_compliance_metrics_submission",
5657
"program_risk_assessment",
5758
"security_audit_report",
5859
"servicing_policy",

src/increase/types/simulations/ach_transfer_simulation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -867,11 +867,13 @@ class TransactionSourceInternalSource(BaseModel):
867867
reason: Literal[
868868
"bank_migration",
869869
"cashback",
870+
"collection_receivable",
870871
"empyreal_adjustment",
871872
"error",
872873
"error_correction",
873874
"fees",
874875
"interest",
876+
"negative_balance_forgiveness",
875877
"sample_funds",
876878
"sample_funds_return",
877879
]
@@ -1090,7 +1092,6 @@ class TransactionSource(BaseModel):
10901092
"check_transfer_return",
10911093
"check_transfer_rejection",
10921094
"check_transfer_stop_payment_request",
1093-
"collection_receivable",
10941095
"dispute_resolution",
10951096
"empyreal_cash_deposit",
10961097
"fee_payment",

src/increase/types/simulations/inbound_real_time_payments_transfer_simulation_result.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -867,11 +867,13 @@ class TransactionSourceInternalSource(BaseModel):
867867
reason: Literal[
868868
"bank_migration",
869869
"cashback",
870+
"collection_receivable",
870871
"empyreal_adjustment",
871872
"error",
872873
"error_correction",
873874
"fees",
874875
"interest",
876+
"negative_balance_forgiveness",
875877
"sample_funds",
876878
"sample_funds_return",
877879
]
@@ -1090,7 +1092,6 @@ class TransactionSource(BaseModel):
10901092
"check_transfer_return",
10911093
"check_transfer_rejection",
10921094
"check_transfer_stop_payment_request",
1093-
"collection_receivable",
10941095
"dispute_resolution",
10951096
"empyreal_cash_deposit",
10961097
"fee_payment",

src/increase/types/simulations/interest_payment_simulation_result.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,11 +856,13 @@ class TransactionSourceInternalSource(BaseModel):
856856
reason: Literal[
857857
"bank_migration",
858858
"cashback",
859+
"collection_receivable",
859860
"empyreal_adjustment",
860861
"error",
861862
"error_correction",
862863
"fees",
863864
"interest",
865+
"negative_balance_forgiveness",
864866
"sample_funds",
865867
"sample_funds_return",
866868
]
@@ -1079,7 +1081,6 @@ class TransactionSource(BaseModel):
10791081
"check_transfer_return",
10801082
"check_transfer_rejection",
10811083
"check_transfer_stop_payment_request",
1082-
"collection_receivable",
10831084
"dispute_resolution",
10841085
"empyreal_cash_deposit",
10851086
"fee_payment",

src/increase/types/simulations/wire_transfer_simulation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,11 +856,13 @@ class TransactionSourceInternalSource(BaseModel):
856856
reason: Literal[
857857
"bank_migration",
858858
"cashback",
859+
"collection_receivable",
859860
"empyreal_adjustment",
860861
"error",
861862
"error_correction",
862863
"fees",
863864
"interest",
865+
"negative_balance_forgiveness",
864866
"sample_funds",
865867
"sample_funds_return",
866868
]
@@ -1079,7 +1081,6 @@ class TransactionSource(BaseModel):
10791081
"check_transfer_return",
10801082
"check_transfer_rejection",
10811083
"check_transfer_stop_payment_request",
1082-
"collection_receivable",
10831084
"dispute_resolution",
10841085
"empyreal_cash_deposit",
10851086
"fee_payment",

src/increase/types/transaction.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -855,11 +855,13 @@ class SourceInternalSource(BaseModel):
855855
reason: Literal[
856856
"bank_migration",
857857
"cashback",
858+
"collection_receivable",
858859
"empyreal_adjustment",
859860
"error",
860861
"error_correction",
861862
"fees",
862863
"interest",
864+
"negative_balance_forgiveness",
863865
"sample_funds",
864866
"sample_funds_return",
865867
]
@@ -1078,7 +1080,6 @@ class Source(BaseModel):
10781080
"check_transfer_return",
10791081
"check_transfer_rejection",
10801082
"check_transfer_stop_payment_request",
1081-
"collection_receivable",
10821083
"dispute_resolution",
10831084
"empyreal_cash_deposit",
10841085
"fee_payment",

src/increase/types/transaction_list_params.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ class CreatedAt(TypedDict, total=False):
5858
"check_transfer_return",
5959
"check_transfer_rejection",
6060
"check_transfer_stop_payment_request",
61-
"collection_receivable",
6261
"dispute_resolution",
6362
"empyreal_cash_deposit",
6463
"fee_payment",

0 commit comments

Comments
 (0)