@flowio/api-internal-prop-types 9.24.59 → 9.24.61

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-internal-prop-types",
3
- "version": "9.24.59",
3
+ "version": "9.24.61",
4
4
  "description": "PropType validators that work with internal Flow API",
5
5
  "keywords": [
6
6
  "flow",
@@ -30,5 +30,5 @@
30
30
  "peerDependencies": {
31
31
  "prop-types": "^15.7.0"
32
32
  },
33
- "gitHead": "ad876b01a126395eae5d27ad56893b2c69b3944f"
33
+ "gitHead": "5bf5109cdb6252257d20453fbdab8e9cf5a7344c"
34
34
  }
@@ -10230,7 +10230,7 @@ declare namespace io.flow.billing.v0.enums {
10230
10230
  type PayoutAttachmentType = 'transactions';
10231
10231
  type PayoutStatusFailureCode = 'invalid_account_number' | 'could_not_process';
10232
10232
  type StatementAttachmentType = 'csv';
10233
- type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
10233
+ type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
10234
10234
  type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
10235
10235
  }
10236
10236
 
@@ -11697,6 +11697,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
11697
11697
  }
11698
11698
 
11699
11699
  interface OrganizationOnboardingState {
11700
+ readonly 'id': string;
11700
11701
  readonly 'organization': io.flow.common.v0.models.OrganizationReference;
11701
11702
  readonly 'transitions': io.flow.organization.onboarding.state.v0.models.OnboardingStateTransition[];
11702
11703
  readonly 'current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
@@ -12237,8 +12238,10 @@ declare namespace io.flow.internal.v0.enums {
12237
12238
  type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'miscellaneous';
12238
12239
  type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
12239
12240
  type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
12241
+ type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
12240
12242
  type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
12241
12243
  type OrderAttributeIntent = 'discount_code';
12244
+ type OrderCancellationInitiatedBy = 'flow' | 'organization';
12242
12245
  type OrderChargeTrigger = 'first_shipment' | 'last_shipment' | 'shipment_exhausted';
12243
12246
  type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
12244
12247
  type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
@@ -12375,6 +12378,7 @@ declare namespace io.flow.internal.v0.models {
12375
12378
  readonly 'payment_conditions'?: string;
12376
12379
  readonly 'deposit_rule'?: io.flow.internal.v0.models.AccountDepositRuleForm;
12377
12380
  readonly 'center_key'?: string;
12381
+ readonly 'bank_account_id'?: string;
12378
12382
  }
12379
12383
 
12380
12384
  interface AccountOrdersExportRequest {
@@ -13078,6 +13082,10 @@ declare namespace io.flow.internal.v0.models {
13078
13082
  readonly 'experiment_key'?: string;
13079
13083
  }
13080
13084
 
13085
+ interface BankAccountReference {
13086
+ readonly 'id': string;
13087
+ }
13088
+
13081
13089
  interface BankPayment {
13082
13090
  readonly 'id': string;
13083
13091
  readonly 'key': string;
@@ -13826,6 +13834,7 @@ declare namespace io.flow.internal.v0.models {
13826
13834
  readonly 'center_key'?: string;
13827
13835
  readonly 'statistics': io.flow.internal.v0.models.AccountStatistics;
13828
13836
  readonly 'next_statement': io.flow.internal.v0.models.NextBillingStatement;
13837
+ readonly 'bank_account'?: io.flow.internal.v0.models.BankAccountReference;
13829
13838
  readonly 'created_at': string;
13830
13839
  }
13831
13840
 
@@ -17874,7 +17883,7 @@ declare namespace io.flow.internal.v0.models {
17874
17883
 
17875
17884
  interface FinanceBankAccount {
17876
17885
  readonly 'id': string;
17877
- readonly 'account': io.flow.internal.v0.models.AccountSummary;
17886
+ readonly 'accounts': io.flow.internal.v0.models.AccountSummary[];
17878
17887
  readonly 'last4': string;
17879
17888
  readonly 'info': io.flow.billing.bank.account.v0.unions.BankAccountInfo;
17880
17889
  readonly 'owner'?: io.flow.internal.v0.models.FinanceBankAccountOwner;
@@ -18018,6 +18027,7 @@ declare namespace io.flow.internal.v0.models {
18018
18027
  readonly 'center_key'?: string;
18019
18028
  readonly 'statistics': io.flow.internal.v0.models.AccountStatistics;
18020
18029
  readonly 'next_statement': io.flow.internal.v0.models.NextBillingStatement;
18030
+ readonly 'bank_account'?: io.flow.internal.v0.models.BankAccountReference;
18021
18031
  readonly 'created_at': string;
18022
18032
  }
18023
18033
 
@@ -20664,11 +20674,12 @@ declare namespace io.flow.internal.v0.models {
20664
20674
  readonly 'setup_completed_at'?: string;
20665
20675
  readonly 'gmv': number;
20666
20676
  readonly 'health_score': number;
20677
+ readonly 'blocked_since'?: string;
20667
20678
  }
20668
20679
 
20669
20680
  interface OnboardingStateForm {
20670
20681
  readonly 'onboarding_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
20671
- readonly 'transitioned_at': string;
20682
+ readonly 'transitioned_at'?: string;
20672
20683
  }
20673
20684
 
20674
20685
  interface OneTimeTokenRedemptionForm {
@@ -20798,8 +20809,13 @@ declare namespace io.flow.internal.v0.models {
20798
20809
  readonly 'description': string;
20799
20810
  }
20800
20811
 
20812
+ interface OrderCancellationEvidenceReturnToSender {
20813
+ readonly 'discriminator': 'return_to_sender';
20814
+ readonly 'initiated_by': io.flow.internal.v0.enums.OrderCancellationInitiatedBy;
20815
+ }
20816
+
20801
20817
  interface OrderCancellationForm {
20802
- readonly 'evidence': io.flow.internal.v0.models.OrderCancellationEvidenceManual;
20818
+ readonly 'evidence': io.flow.internal.v0.unions.OrderCancellationEvidence;
20803
20819
  }
20804
20820
 
20805
20821
  interface OrderDetail {
@@ -20968,6 +20984,7 @@ declare namespace io.flow.internal.v0.models {
20968
20984
  readonly 'center_key'?: string;
20969
20985
  readonly 'statistics': io.flow.internal.v0.models.AccountStatistics;
20970
20986
  readonly 'next_statement': io.flow.internal.v0.models.NextBillingStatement;
20987
+ readonly 'bank_account'?: io.flow.internal.v0.models.BankAccountReference;
20971
20988
  readonly 'created_at': string;
20972
20989
  }
20973
20990
 
@@ -22543,6 +22560,7 @@ declare namespace io.flow.internal.v0.models {
22543
22560
  interface RestrictionRuleDecisionForm {
22544
22561
  readonly 'rule_id': string;
22545
22562
  readonly 'decision': io.flow.internal.v0.enums.RestrictionDecision;
22563
+ readonly 'product_id'?: string;
22546
22564
  }
22547
22565
 
22548
22566
  interface RestrictionRuleForm {
@@ -24494,7 +24512,7 @@ declare namespace io.flow.internal.v0.unions {
24494
24512
  type MarketingGatewaySourceSummary = (io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary | io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary | io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary);
24495
24513
  type OptinPromptDisplay = (io.flow.internal.v0.models.OptinPromptCheckoutDisplay);
24496
24514
  type OrderActionForm = (io.flow.internal.v0.models.WholeOrderActionForm | io.flow.internal.v0.models.LineActionForm | io.flow.internal.v0.models.FulfillmentActionForm);
24497
- type OrderCancellationEvidence = (io.flow.internal.v0.models.OrderCancellationEvidenceManual | io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled);
24515
+ type OrderCancellationEvidence = (io.flow.internal.v0.models.OrderCancellationEvidenceManual | io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled | io.flow.internal.v0.models.OrderCancellationEvidenceReturnToSender);
24498
24516
  type PaymentRedirect = (io.flow.internal.v0.models.OnlineAuthorizationCompleted | io.flow.internal.v0.models.RedirectActionCompleted);
24499
24517
  type PaymentSummaryDetails = (io.flow.internal.v0.models.SearchAuthorization);
24500
24518
  type PlatformFee = (io.flow.internal.v0.models.PlatformFeePause | io.flow.internal.v0.models.PlatformFeeFlat | io.flow.internal.v0.models.PlatformFeePercentage | io.flow.internal.v0.models.PlatformFeeDisabled);
@@ -24709,8 +24727,10 @@ export const onboardingAuditResult: PropTypes.Requireable<io.flow.internal.v0.en
24709
24727
  export const onboardingAuditThemeKey: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingAuditThemeKey>;
24710
24728
  export const onboardingAutomationProcessState: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingAutomationProcessState>;
24711
24729
  export const onboardingAutomationTaskState: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingAutomationTaskState>;
24730
+ export const onboardingStateSource: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingStateSource>;
24712
24731
  export const orderAction: PropTypes.Requireable<io.flow.internal.v0.enums.OrderAction>;
24713
24732
  export const orderAttributeIntent: PropTypes.Requireable<io.flow.internal.v0.enums.OrderAttributeIntent>;
24733
+ export const orderCancellationInitiatedBy: PropTypes.Requireable<io.flow.internal.v0.enums.OrderCancellationInitiatedBy>;
24714
24734
  export const orderChargeTrigger: PropTypes.Requireable<io.flow.internal.v0.enums.OrderChargeTrigger>;
24715
24735
  export const orderLifecycleEvent: PropTypes.Requireable<io.flow.internal.v0.enums.OrderLifecycleEvent>;
24716
24736
  export const orderTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.OrderTransactionType>;
@@ -24887,6 +24907,7 @@ export const authorizedLineItemCharge: PropTypes.Requireable<io.flow.internal.v0
24887
24907
  export const authorizedShippingCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedShippingCharge>;
24888
24908
  export const backfill: PropTypes.Requireable<io.flow.internal.v0.models.Backfill>;
24889
24909
  export const backfillForm: PropTypes.Requireable<io.flow.internal.v0.models.BackfillForm>;
24910
+ export const bankAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.BankAccountReference>;
24890
24911
  export const bankPayment: PropTypes.Requireable<io.flow.internal.v0.models.BankPayment>;
24891
24912
  export const bankPaymentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentDeleted>;
24892
24913
  export const bankPaymentDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentDeletedV2>;
@@ -25999,6 +26020,7 @@ export const orderAttributeUpserted: PropTypes.Requireable<io.flow.internal.v0.m
25999
26020
  export const orderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellation>;
26000
26021
  export const orderCancellationEvidenceFullyRefundedNotFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled>;
26001
26022
  export const orderCancellationEvidenceManual: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationEvidenceManual>;
26023
+ export const orderCancellationEvidenceReturnToSender: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationEvidenceReturnToSender>;
26002
26024
  export const orderCancellationForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationForm>;
26003
26025
  export const orderDetail: PropTypes.Requireable<io.flow.internal.v0.models.OrderDetail>;
26004
26026
  export const orderFulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderFulfillmentDeleted>;
@@ -9223,6 +9223,7 @@ T['io.flow.internal.v0.enums.restriction_decision'] = PropTypes.oneOf(['accept',
9223
9223
  T['io.flow.internal.v0.models.restriction_rule_decision_form'] = PropTypes.exact({
9224
9224
  rule_id: PropTypes.string.isRequired,
9225
9225
  decision: T['io.flow.internal.v0.enums.restriction_decision'].isRequired,
9226
+ product_id: PropTypes.string,
9226
9227
  });
9227
9228
 
9228
9229
  T['io.flow.internal.v0.models.restriction_product_decision_form'] = PropTypes.exact({
@@ -9934,6 +9935,13 @@ T['io.flow.export.v0.models.order_export_type'] = PropTypes.exact({
9934
9935
  sort: PropTypes.string,
9935
9936
  });
9936
9937
 
9938
+ T['io.flow.internal.v0.enums.order_cancellation_initiated_by'] = PropTypes.oneOf(['flow', 'organization']);
9939
+
9940
+ T['io.flow.internal.v0.models.order_cancellation_evidence_return_to_sender'] = PropTypes.exact({
9941
+ discriminator: PropTypes.oneOf(['return_to_sender']).isRequired,
9942
+ initiated_by: T['io.flow.internal.v0.enums.order_cancellation_initiated_by'].isRequired,
9943
+ });
9944
+
9937
9945
  T['io.flow.internal.v0.models.order_cancellation_evidence_fully_refunded_not_fulfilled'] = PropTypes.exact({
9938
9946
  discriminator: PropTypes.oneOf(['fully_refunded_not_fulfilled']).isRequired,
9939
9947
  placeholder: PropTypes.string,
@@ -9944,15 +9952,16 @@ T['io.flow.internal.v0.models.order_cancellation_evidence_manual'] = PropTypes.e
9944
9952
  description: PropTypes.string.isRequired,
9945
9953
  });
9946
9954
 
9947
- T['io.flow.internal.v0.models.order_cancellation_form'] = PropTypes.exact({
9948
- evidence: T['io.flow.internal.v0.models.order_cancellation_evidence_manual'].isRequired,
9949
- });
9950
-
9951
9955
  T['io.flow.internal.v0.unions.order_cancellation_evidence'] = PropTypes.oneOfType([
9952
9956
  T['io.flow.internal.v0.models.order_cancellation_evidence_manual'],
9953
9957
  T['io.flow.internal.v0.models.order_cancellation_evidence_fully_refunded_not_fulfilled'],
9958
+ T['io.flow.internal.v0.models.order_cancellation_evidence_return_to_sender'],
9954
9959
  ]);
9955
9960
 
9961
+ T['io.flow.internal.v0.models.order_cancellation_form'] = PropTypes.exact({
9962
+ evidence: T['io.flow.internal.v0.unions.order_cancellation_evidence'].isRequired,
9963
+ });
9964
+
9956
9965
  T['io.flow.internal.v0.enums.order_attribute_intent'] = PropTypes.oneOf(['discount_code']);
9957
9966
  T['io.flow.common.v0.enums.attribute_data_type'] = PropTypes.oneOf(['boolean', 'integer', 'decimal', 'string', 'json_array']);
9958
9967
 
@@ -10068,7 +10077,7 @@ T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition']
10068
10077
 
10069
10078
  T['io.flow.internal.v0.models.onboarding_state_form'] = PropTypes.exact({
10070
10079
  onboarding_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
10071
- transitioned_at: PropTypes.string.isRequired,
10080
+ transitioned_at: PropTypes.string,
10072
10081
  });
10073
10082
 
10074
10083
  T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
@@ -10083,6 +10092,7 @@ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
10083
10092
  setup_completed_at: PropTypes.string,
10084
10093
  gmv: PropTypes.number.isRequired,
10085
10094
  health_score: PropTypes.number.isRequired,
10095
+ blocked_since: PropTypes.string,
10086
10096
  });
10087
10097
 
10088
10098
  T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
@@ -12992,6 +13002,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
12992
13002
  'platform_fee',
12993
13003
  'tax',
12994
13004
  'duty',
13005
+ 'withholding',
12995
13006
  'other_adjustment',
12996
13007
  'tax_adjustment',
12997
13008
  'channel',
@@ -22631,6 +22642,10 @@ T['io.flow.internal.v0.unions.order_action_form'] = PropTypes.oneOfType([
22631
22642
  T['io.flow.internal.v0.models.fulfillment_action_form'],
22632
22643
  ]);
22633
22644
 
22645
+ T['io.flow.internal.v0.models.bank_account_reference'] = PropTypes.exact({
22646
+ id: PropTypes.string.isRequired,
22647
+ });
22648
+
22634
22649
  T['io.flow.internal.v0.models.account_deposit_rule'] = PropTypes.exact({
22635
22650
  target: PropTypes.number.isRequired,
22636
22651
  rate: PropTypes.number.isRequired,
@@ -22733,6 +22748,7 @@ T['io.flow.export.v0.models.export_version'] = PropTypes.exact({
22733
22748
  });
22734
22749
 
22735
22750
  T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'] = PropTypes.exact({
22751
+ id: PropTypes.string.isRequired,
22736
22752
  organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22737
22753
 
22738
22754
  transitions: PropTypes.arrayOf(
@@ -24882,7 +24898,7 @@ T['io.flow.internal.v0.models.finance_bank_payment'] = PropTypes.exact({
24882
24898
 
24883
24899
  T['io.flow.internal.v0.models.finance_bank_account'] = PropTypes.exact({
24884
24900
  id: PropTypes.string.isRequired,
24885
- account: T['io.flow.internal.v0.models.account_summary'].isRequired,
24901
+ accounts: PropTypes.arrayOf(T['io.flow.internal.v0.models.account_summary']).isRequired,
24886
24902
  last4: PropTypes.string.isRequired,
24887
24903
  info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
24888
24904
  owner: T['io.flow.internal.v0.models.finance_bank_account_owner'],
@@ -25498,6 +25514,7 @@ T['io.flow.internal.v0.models.channel_account'] = PropTypes.exact({
25498
25514
  center_key: PropTypes.string,
25499
25515
  statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
25500
25516
  next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
25517
+ bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
25501
25518
  created_at: PropTypes.string.isRequired,
25502
25519
  });
25503
25520
 
@@ -25520,6 +25537,7 @@ T['io.flow.internal.v0.models.flow_account'] = PropTypes.exact({
25520
25537
  center_key: PropTypes.string,
25521
25538
  statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
25522
25539
  next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
25540
+ bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
25523
25541
  created_at: PropTypes.string.isRequired,
25524
25542
  });
25525
25543
 
@@ -25542,6 +25560,7 @@ T['io.flow.internal.v0.models.organization_account'] = PropTypes.exact({
25542
25560
  center_key: PropTypes.string,
25543
25561
  statistics: T['io.flow.internal.v0.models.account_statistics'].isRequired,
25544
25562
  next_statement: T['io.flow.internal.v0.models.next_billing_statement'].isRequired,
25563
+ bank_account: T['io.flow.internal.v0.models.bank_account_reference'],
25545
25564
  created_at: PropTypes.string.isRequired,
25546
25565
  });
25547
25566
 
@@ -25566,6 +25585,7 @@ T['io.flow.internal.v0.models.account_form'] = PropTypes.exact({
25566
25585
  payment_conditions: PropTypes.string,
25567
25586
  deposit_rule: T['io.flow.internal.v0.models.account_deposit_rule_form'],
25568
25587
  center_key: PropTypes.string,
25588
+ bank_account_id: PropTypes.string,
25569
25589
  });
25570
25590
 
25571
25591
  T['io.flow.internal.v0.models.simple_account_reference'] = PropTypes.exact({
@@ -26415,6 +26435,20 @@ T['io.flow.internal.v0.enums.marketing_gateway_feed_download_format'] = PropType
26415
26435
  T['io.flow.internal.v0.enums.marketing_gateway_product_status'] = PropTypes.oneOf(['approved', 'not_approved', 'pending', 'not_found', 'excluded']);
26416
26436
  T['io.flow.internal.v0.enums.onboarding_automation_process_state'] = PropTypes.oneOf(['not_started', 'in_progress', 'success', 'failed']);
26417
26437
  T['io.flow.internal.v0.enums.onboarding_automation_task_state'] = PropTypes.oneOf(['not_started', 'in_progress', 'success', 'failed']);
26438
+
26439
+ T['io.flow.internal.v0.enums.onboarding_state_source'] = PropTypes.oneOf([
26440
+ 'unknown',
26441
+ 'unit_test',
26442
+ 'api',
26443
+ 'api_activation',
26444
+ 'api_internal',
26445
+ 'api_internal_block',
26446
+ 'api_internal_unblock',
26447
+ 'onboarding_application',
26448
+ 'organization_state_change',
26449
+ 'restriction_organization_status',
26450
+ ]);
26451
+
26418
26452
  T['io.flow.internal.v0.enums.order_lifecycle_event'] = PropTypes.oneOf(['order_placed', 'ready_to_fulfill']);
26419
26453
  T['io.flow.internal.v0.enums.order_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'order_service']);
26420
26454
  T['io.flow.internal.v0.enums.output_style'] = PropTypes.oneOf(['flow', 'shopify_p1']);
@@ -28417,6 +28451,7 @@ export const authorizedOrderCharge = T['io.flow.internal.v0.unions.authorized_or
28417
28451
  export const authorizedShippingCharge = T['io.flow.internal.v0.models.authorized_shipping_charge'];
28418
28452
  export const backfill = T['io.flow.internal.v0.models.backfill'];
28419
28453
  export const backfillForm = T['io.flow.internal.v0.models.backfill_form'];
28454
+ export const bankAccountReference = T['io.flow.internal.v0.models.bank_account_reference'];
28420
28455
  export const bankPayment = T['io.flow.internal.v0.models.bank_payment'];
28421
28456
  export const bankPaymentDeleted = T['io.flow.internal.v0.models.bank_payment_deleted'];
28422
28457
  export const bankPaymentDeletedV2 = T['io.flow.internal.v0.models.bank_payment_deleted_v2'];
@@ -29806,6 +29841,7 @@ export const onboardingAutomationProcessState = T['io.flow.internal.v0.enums.onb
29806
29841
  export const onboardingAutomationTaskState = T['io.flow.internal.v0.enums.onboarding_automation_task_state'];
29807
29842
  export const onboardingOrganization = T['io.flow.internal.v0.models.onboarding_organization'];
29808
29843
  export const onboardingStateForm = T['io.flow.internal.v0.models.onboarding_state_form'];
29844
+ export const onboardingStateSource = T['io.flow.internal.v0.enums.onboarding_state_source'];
29809
29845
  export const oneTimeTokenRedemptionForm = T['io.flow.internal.v0.models.one_time_token_redemption_form'];
29810
29846
  export const onlineAuthorizationCompleted = T['io.flow.internal.v0.models.online_authorization_completed'];
29811
29847
  export const optinAttribute = T['io.flow.internal.v0.models.optin_attribute'];
@@ -29829,7 +29865,9 @@ export const orderCancellation = T['io.flow.internal.v0.models.order_cancellatio
29829
29865
  export const orderCancellationEvidence = T['io.flow.internal.v0.unions.order_cancellation_evidence'];
29830
29866
  export const orderCancellationEvidenceFullyRefundedNotFulfilled = T['io.flow.internal.v0.models.order_cancellation_evidence_fully_refunded_not_fulfilled'];
29831
29867
  export const orderCancellationEvidenceManual = T['io.flow.internal.v0.models.order_cancellation_evidence_manual'];
29868
+ export const orderCancellationEvidenceReturnToSender = T['io.flow.internal.v0.models.order_cancellation_evidence_return_to_sender'];
29832
29869
  export const orderCancellationForm = T['io.flow.internal.v0.models.order_cancellation_form'];
29870
+ export const orderCancellationInitiatedBy = T['io.flow.internal.v0.enums.order_cancellation_initiated_by'];
29833
29871
  export const orderChargeTrigger = T['io.flow.internal.v0.enums.order_charge_trigger'];
29834
29872
  export const orderDetail = T['io.flow.internal.v0.models.order_detail'];
29835
29873
  export const orderFulfillmentDeleted = T['io.flow.internal.v0.models.order_fulfillment_deleted'];