@flowio/types 11.24.63 → 11.24.65

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.
@@ -1776,6 +1776,21 @@ declare namespace io.flow.payment.v0.models {
1776
1776
  readonly raw?: string;
1777
1777
  }
1778
1778
 
1779
+ interface DeviceDetailsBrowser {
1780
+ readonly type: 'browser';
1781
+ readonly user_agent: string;
1782
+ readonly origin: string;
1783
+ readonly accept_language?: string;
1784
+ readonly ip?: string;
1785
+ readonly time_zone_offset?: number;
1786
+ readonly date_string?: string;
1787
+ readonly navigator_language?: string;
1788
+ readonly navigator_hardware_concurrency?: number;
1789
+ readonly cookie_created_at?: number;
1790
+ readonly session_duration?: number;
1791
+ readonly fingerprint?: string;
1792
+ }
1793
+
1779
1794
  interface DirectAuthorizationForm {
1780
1795
  readonly discriminator: 'direct_authorization_form';
1781
1796
  readonly token: string;
@@ -2343,6 +2358,7 @@ declare namespace io.flow.payment.v0.unions {
2343
2358
  type ConfirmationDetails =
2344
2359
  | io.flow.payment.v0.models.DirectDebit
2345
2360
  | io.flow.payment.v0.models.CardConfirmationSummary;
2361
+ type DeviceDetails = io.flow.payment.v0.models.DeviceDetailsBrowser;
2346
2362
  type ExpandableCard =
2347
2363
  | io.flow.payment.v0.models.Card
2348
2364
  | io.flow.payment.v0.models.CardReference
@@ -4773,15 +4789,18 @@ declare namespace io.flow.adyen.v0.enums {
4773
4789
  | 'SECOND_CHARGEBACK'
4774
4790
  | 'PREARBITRATION_WON'
4775
4791
  | 'PREARBITRATION_LOST';
4776
- type Method = 'GET' | 'POST';
4792
+ type HttpRedirectMethod = 'GET' | 'POST';
4777
4793
  type Operation = 'cancel' | 'capture' | 'refund';
4778
4794
  type PaymentMethod =
4779
4795
  | 'ach'
4780
4796
  | 'alipay'
4797
+ | 'alipay_hk'
4781
4798
  | 'alipay_wap'
4782
4799
  | 'amex'
4783
4800
  | 'bankTransfer_IBAN'
4784
4801
  | 'bcmc'
4802
+ | 'bcmc_mobile'
4803
+ | 'blik'
4785
4804
  | 'cartebancaire'
4786
4805
  | 'cup'
4787
4806
  | 'diners'
@@ -4792,21 +4811,27 @@ declare namespace io.flow.adyen.v0.enums {
4792
4811
  | 'dragonpay_gcash'
4793
4812
  | 'dragonpay_otc_banking'
4794
4813
  | 'ebanking_FI'
4814
+ | 'gcash'
4795
4815
  | 'giropay'
4796
4816
  | 'ideal'
4797
4817
  | 'interac'
4798
4818
  | 'jcb'
4819
+ | 'kakaopay'
4799
4820
  | 'kcp_banktransfer'
4800
4821
  | 'kcp_creditcard'
4801
4822
  | 'kcp_payco'
4802
4823
  | 'maestro'
4824
+ | 'mbway'
4803
4825
  | 'mc'
4826
+ | 'mobilepay'
4804
4827
  | 'molpay_points'
4805
4828
  | 'multibanco'
4829
+ | 'onlineBanking_PL'
4806
4830
  | 'qiwiwallet'
4807
4831
  | 'sepadirectdebit'
4808
4832
  | 'trustly'
4809
4833
  | 'trustpay'
4834
+ | 'twint'
4810
4835
  | 'unionpay'
4811
4836
  | 'visa'
4812
4837
  | 'wechatpay'
@@ -4844,6 +4869,11 @@ declare namespace io.flow.adyen.v0.models {
4844
4869
  readonly currency: string;
4845
4870
  }
4846
4871
 
4872
+ interface Applepay {
4873
+ readonly type: 'applepay';
4874
+ readonly applePayToken: string;
4875
+ }
4876
+
4847
4877
  interface Authentication {
4848
4878
  readonly 'threeds2.fingerprintToken'?: string;
4849
4879
  readonly 'threeds2.challengeToken'?: string;
@@ -4871,6 +4901,8 @@ declare namespace io.flow.adyen.v0.models {
4871
4901
  readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
4872
4902
  readonly threeDS2RequestData?: io.flow.adyen.v0.models.Threeds2RequestData;
4873
4903
  readonly recurringProcessingModel?: io.flow.adyen.v0.enums.RecurringProcessingModel;
4904
+ readonly mcc?: string;
4905
+ readonly metadata?: any /*object*/;
4874
4906
  }
4875
4907
 
4876
4908
  interface AuthorizeRequest3D {
@@ -5027,6 +5059,14 @@ declare namespace io.flow.adyen.v0.models {
5027
5059
  readonly paymentData?: string;
5028
5060
  }
5029
5061
 
5062
+ interface PaymentDetailsV663Ds2Challenge {
5063
+ readonly 'threeds2.challengeResult': string;
5064
+ }
5065
+
5066
+ interface PaymentDetailsV663Ds2Fingerprint {
5067
+ readonly 'threeds2.fingerprint': string;
5068
+ }
5069
+
5030
5070
  interface PaymentRequest {
5031
5071
  readonly reference: string;
5032
5072
  readonly merchantAccount: string;
@@ -5048,7 +5088,12 @@ declare namespace io.flow.adyen.v0.models {
5048
5088
  readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
5049
5089
  readonly origin?: string;
5050
5090
  readonly channel?: io.flow.adyen.v0.enums.Channel;
5051
- readonly returnURL?: string;
5091
+ readonly returnUrl?: string;
5092
+ readonly mcc?: string;
5093
+ readonly metadata?: any /*object*/;
5094
+ readonly redirectToIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
5095
+ readonly redirectFromIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
5096
+ readonly storePaymentMethod?: boolean;
5052
5097
  }
5053
5098
 
5054
5099
  interface PaymentResponse {
@@ -5065,12 +5110,54 @@ declare namespace io.flow.adyen.v0.models {
5065
5110
  interface PaymentResponseAdditionalData {
5066
5111
  readonly authCode?: string;
5067
5112
  readonly avsResultRaw?: string;
5113
+ readonly avsResult?: string;
5068
5114
  readonly cvcResultRaw?: string;
5115
+ readonly cvcResult?: string;
5116
+ readonly refusalReasonRaw?: string;
5069
5117
  readonly liabilityShift?: string;
5070
5118
  readonly threeDAuthenticated?: string;
5071
5119
  readonly threeDAuthenticatedResponse?: string;
5072
5120
  readonly threeDOffered?: string;
5073
5121
  readonly threeDOfferedResponse?: string;
5122
+ readonly threeDSVersion?: string;
5123
+ readonly eci?: string;
5124
+ readonly cavv?: string;
5125
+ readonly scaExemptionRequested?: string;
5126
+ readonly paymentMethod?: string;
5127
+ readonly paymentMethodVariant?: string;
5128
+ readonly tokenTxVariant?: string;
5129
+ readonly acquirerCode?: string;
5130
+ readonly acquirerAccountCode?: string;
5131
+ readonly cardPaymentMethod?: string;
5132
+ readonly coBrandedWith?: string;
5133
+ readonly cardIssuingCountry?: string;
5134
+ readonly cardIssuingCurrency?: string;
5135
+ readonly cardIssuingBank?: string;
5136
+ readonly cardBin?: string;
5137
+ readonly issuerBin?: string;
5138
+ readonly cardSummary?: string;
5139
+ readonly untokenisedCardSummary?: string;
5140
+ readonly expiryDate?: string;
5141
+ readonly cardHolderName?: string;
5142
+ readonly fundingSource?: string;
5143
+ readonly ownerName?: string;
5144
+ readonly bankName?: string;
5145
+ readonly issuerCountry?: string;
5146
+ readonly iban?: string;
5147
+ readonly bic?: string;
5148
+ readonly iDealConsumerAccountNumber?: string;
5149
+ readonly iDealConsumerBIC?: string;
5150
+ readonly iDealConsumerCity?: string;
5151
+ readonly iDealConsumerIBAN?: string;
5152
+ readonly iDealConsumerName?: string;
5153
+ readonly iDealTransactionId?: string;
5154
+ readonly 'recurring.recurringDetailReference'?: string;
5155
+ readonly 'recurring.shopperReference'?: string;
5156
+ readonly networkTxReference?: string;
5157
+ readonly PaymentAccountReference?: string;
5158
+ readonly 'networkToken.available'?: string;
5159
+ readonly 'networkToken.bin'?: string;
5160
+ readonly 'networkToken.tokenSummary'?: string;
5074
5161
  }
5075
5162
 
5076
5163
  interface Recurring {
@@ -5079,7 +5166,7 @@ declare namespace io.flow.adyen.v0.models {
5079
5166
 
5080
5167
  interface Redirect {
5081
5168
  readonly data?: io.flow.adyen.v0.models.RedirectData;
5082
- readonly method?: io.flow.adyen.v0.enums.Method;
5169
+ readonly method?: io.flow.adyen.v0.enums.HttpRedirectMethod;
5083
5170
  readonly url?: string;
5084
5171
  }
5085
5172
 
@@ -5102,6 +5189,17 @@ declare namespace io.flow.adyen.v0.models {
5102
5189
  readonly holderName: string;
5103
5190
  readonly number: string;
5104
5191
  readonly cvc?: string;
5192
+ readonly storedPaymentMethodId?: string;
5193
+ readonly networkPaymentReference?: string;
5194
+ }
5195
+
5196
+ interface SdkV3OnCompleteData {
5197
+ readonly details: any /*object*/;
5198
+ readonly payment_data?: string;
5199
+ }
5200
+
5201
+ interface SdkV3OnCompleteResult {
5202
+ readonly data: io.flow.adyen.v0.models.SdkV3OnCompleteData;
5105
5203
  }
5106
5204
 
5107
5205
  interface ThreeDSecureData {
@@ -5135,7 +5233,9 @@ declare namespace io.flow.adyen.v0.unions {
5135
5233
  type BrowserInfo =
5136
5234
  | io.flow.adyen.v0.models.BrowserInfo3Ds1
5137
5235
  | io.flow.adyen.v0.models.BrowserInfo3Ds2;
5138
- type PaymentMethodData = io.flow.adyen.v0.models.Scheme;
5236
+ type PaymentMethodData =
5237
+ | io.flow.adyen.v0.models.Scheme
5238
+ | io.flow.adyen.v0.models.Applepay;
5139
5239
  }
5140
5240
 
5141
5241
  declare namespace io.flow.order.management.v0.enums {
@@ -5442,6 +5542,7 @@ declare namespace io.flow.shopify.external.v0.models {
5442
5542
  readonly vendor?: string;
5443
5543
  readonly body_html?: string;
5444
5544
  readonly product_type?: string;
5545
+ readonly status?: string;
5445
5546
  readonly options: io.flow.shopify.external.v0.models.Option[];
5446
5547
  readonly tags?: string;
5447
5548
  readonly template_suffix?: string;
@@ -6367,7 +6468,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
6367
6468
 
6368
6469
  declare namespace io.flow.shopify.markets.v0.models {
6369
6470
  interface FulfillmentOrderInternationalDuties {
6370
- readonly incoterm: io.flow.shopify.markets.v0.enums.IncotermDuties;
6471
+ readonly incoterm?: io.flow.shopify.markets.v0.enums.IncotermDuties;
6371
6472
  }
6372
6473
 
6373
6474
  interface FulfillmentOrderLineItem {
@@ -7432,21 +7533,6 @@ declare namespace io.flow.payment.gateway.v0.models {
7432
7533
  readonly result: any /*object*/;
7433
7534
  }
7434
7535
 
7435
- interface DeviceDetailsBrowser {
7436
- readonly type: 'browser';
7437
- readonly user_agent: string;
7438
- readonly origin: string;
7439
- readonly accept_language?: string;
7440
- readonly ip?: string;
7441
- readonly time_zone_offset?: number;
7442
- readonly date_string?: string;
7443
- readonly navigator_language?: string;
7444
- readonly navigator_hardware_concurrency?: number;
7445
- readonly cookie_created_at?: number;
7446
- readonly session_duration?: number;
7447
- readonly fingerprint?: string;
7448
- }
7449
-
7450
7536
  interface DeviceFingerprintDetailsBrowser {
7451
7537
  readonly type: 'browser';
7452
7538
  readonly accept?: string;
@@ -7858,7 +7944,7 @@ declare namespace io.flow.payment.gateway.v0.models {
7858
7944
  readonly amount: number;
7859
7945
  readonly currency: string;
7860
7946
  readonly order_information: io.flow.payment.gateway.v0.unions.OrderInformation;
7861
- readonly device_details: io.flow.payment.gateway.v0.unions.DeviceDetails;
7947
+ readonly device_details: io.flow.payment.v0.unions.DeviceDetails;
7862
7948
  readonly locale?: string;
7863
7949
  readonly return_url: string;
7864
7950
  readonly attributes?: Record<string, string>;
@@ -7873,7 +7959,7 @@ declare namespace io.flow.payment.gateway.v0.models {
7873
7959
  readonly amount: number;
7874
7960
  readonly currency: string;
7875
7961
  readonly order_information: io.flow.payment.gateway.v0.unions.OrderInformation;
7876
- readonly device_details: io.flow.payment.gateway.v0.unions.DeviceDetails;
7962
+ readonly device_details: io.flow.payment.v0.unions.DeviceDetails;
7877
7963
  readonly locale?: string;
7878
7964
  readonly return_url: string;
7879
7965
  readonly attributes?: Record<string, string>;
@@ -7952,7 +8038,6 @@ declare namespace io.flow.payment.gateway.v0.unions {
7952
8038
  type CardNumber =
7953
8039
  | io.flow.payment.gateway.v0.models.PaymentMethodCardNumberCleartext
7954
8040
  | io.flow.payment.gateway.v0.models.PaymentMethodCardNumberCipher;
7955
- type DeviceDetails = io.flow.payment.gateway.v0.models.DeviceDetailsBrowser;
7956
8041
  type DeviceFingerprintDetails =
7957
8042
  io.flow.payment.gateway.v0.models.DeviceFingerprintDetailsBrowser;
7958
8043
  type OrderInformation =
@@ -9441,6 +9526,7 @@ declare namespace io.flow.experience.v0.models {
9441
9526
  readonly rules?: io.flow.experience.v0.models.OrderRulesSummary;
9442
9527
  readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
9443
9528
  readonly geo?: io.flow.experience.v0.models.OrderGeo;
9529
+ readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
9444
9530
  }
9445
9531
 
9446
9532
  interface OrderAddress {
@@ -11680,7 +11766,10 @@ declare namespace io.flow.billing.v0.enums {
11680
11766
  | 'rate_lock'
11681
11767
  | 'transfer';
11682
11768
  type PayoutAttachmentType = 'transactions';
11683
- type PayoutStatusFailureCode = 'invalid_account_number' | 'could_not_process';
11769
+ type PayoutStatusFailureCode =
11770
+ | 'invalid_account_number'
11771
+ | 'account_closed'
11772
+ | 'could_not_process';
11684
11773
  type StatementAttachmentType = 'csv';
11685
11774
  type TransactionSource =
11686
11775
  | 'capture'
@@ -11716,10 +11805,17 @@ declare namespace io.flow.billing.v0.models {
11716
11805
  readonly url: string;
11717
11806
  }
11718
11807
 
11719
- interface BankAccountForm {
11808
+ interface BankAccountFormInfo {
11809
+ readonly discriminator: 'info';
11720
11810
  readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
11721
11811
  }
11722
11812
 
11813
+ interface BankAccountFormSimple {
11814
+ readonly discriminator: 'simple';
11815
+ readonly routing_number: string;
11816
+ readonly account_number: string;
11817
+ }
11818
+
11723
11819
  interface BankAccountReference {
11724
11820
  readonly id: string;
11725
11821
  }
@@ -11923,6 +12019,9 @@ declare namespace io.flow.billing.v0.models {
11923
12019
  }
11924
12020
 
11925
12021
  declare namespace io.flow.billing.v0.unions {
12022
+ type BankAccountForm =
12023
+ | io.flow.billing.v0.models.BankAccountFormInfo
12024
+ | io.flow.billing.v0.models.BankAccountFormSimple;
11926
12025
  type PayoutStatus =
11927
12026
  | io.flow.billing.v0.models.PayoutStatusScheduled
11928
12027
  | io.flow.billing.v0.models.PayoutStatusSent
@@ -13079,8 +13178,8 @@ declare namespace io.flow.apple.pay.v0.enums {
13079
13178
  | 'email'
13080
13179
  | 'name'
13081
13180
  | 'phone'
13082
- | 'postal_address'
13083
- | 'phonetic_name';
13181
+ | 'postalAddress'
13182
+ | 'phoneticName';
13084
13183
  type ApplePayLineItemType = 'final' | 'pending';
13085
13184
  type ApplePayMerchantCapability =
13086
13185
  | 'supports3DS'
@@ -13090,8 +13189,8 @@ declare namespace io.flow.apple.pay.v0.enums {
13090
13189
  type ApplePayShippingType =
13091
13190
  | 'shipping'
13092
13191
  | 'delivery'
13093
- | 'store_pickup'
13094
- | 'service_pickup';
13192
+ | 'storePickup'
13193
+ | 'servicePickup';
13095
13194
  type ApplePaySupportedNetworks =
13096
13195
  | 'amex'
13097
13196
  | 'chinaUnionPay'
@@ -13106,7 +13205,7 @@ declare namespace io.flow.apple.pay.v0.models {
13106
13205
  interface ApplePayLineItem {
13107
13206
  readonly label: string;
13108
13207
  readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
13109
- readonly amount: number;
13208
+ readonly amount: string;
13110
13209
  }
13111
13210
 
13112
13211
  interface ApplePayPaymentContact {
@@ -13157,7 +13256,7 @@ declare namespace io.flow.apple.pay.v0.models {
13157
13256
  interface ApplePayShippingMethod {
13158
13257
  readonly label: string;
13159
13258
  readonly detail: string;
13160
- readonly amount: number;
13259
+ readonly amount: string;
13161
13260
  readonly identifier: string;
13162
13261
  }
13163
13262
  }
@@ -13250,6 +13349,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
13250
13349
  }
13251
13350
 
13252
13351
  interface OnboardingStateTransition {
13352
+ readonly id: string;
13253
13353
  readonly state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
13254
13354
  readonly started_at: string;
13255
13355
  }
@@ -13259,6 +13359,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
13259
13359
  readonly organization: io.flow.common.v0.models.OrganizationReference;
13260
13360
  readonly transitions: io.flow.organization.onboarding.state.v0.models.OnboardingStateTransition[];
13261
13361
  readonly current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
13362
+ readonly started_at?: string;
13363
+ readonly time_blocked?: number;
13364
+ readonly blocked_since?: string;
13365
+ readonly completed_at?: string;
13262
13366
  }
13263
13367
 
13264
13368
  interface SetupBlocked {
@@ -13619,6 +13723,30 @@ declare namespace io.flow.session.v0.unions {
13619
13723
  }
13620
13724
 
13621
13725
  declare namespace io.flow.billing.bank.account.v0.models {
13726
+ interface BankAccountInfoCan {
13727
+ readonly discriminator: 'can';
13728
+ readonly routing_number: string;
13729
+ readonly account_number: string;
13730
+ }
13731
+
13732
+ interface BankAccountInfoFra {
13733
+ readonly discriminator: 'fra';
13734
+ readonly swift_code: string;
13735
+ readonly iban: string;
13736
+ }
13737
+
13738
+ interface BankAccountInfoGbr {
13739
+ readonly discriminator: 'gbr';
13740
+ readonly swift_code: string;
13741
+ readonly iban: string;
13742
+ }
13743
+
13744
+ interface BankAccountInfoIta {
13745
+ readonly discriminator: 'ita';
13746
+ readonly swift_code: string;
13747
+ readonly iban: string;
13748
+ }
13749
+
13622
13750
  interface BankAccountInfoUsa {
13623
13751
  readonly discriminator: 'usa';
13624
13752
  readonly routing_number: string;
@@ -13628,7 +13756,11 @@ declare namespace io.flow.billing.bank.account.v0.models {
13628
13756
 
13629
13757
  declare namespace io.flow.billing.bank.account.v0.unions {
13630
13758
  type BankAccountInfo =
13631
- io.flow.billing.bank.account.v0.models.BankAccountInfoUsa;
13759
+ | io.flow.billing.bank.account.v0.models.BankAccountInfoUsa
13760
+ | io.flow.billing.bank.account.v0.models.BankAccountInfoCan
13761
+ | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr
13762
+ | io.flow.billing.bank.account.v0.models.BankAccountInfoFra
13763
+ | io.flow.billing.bank.account.v0.models.BankAccountInfoIta;
13632
13764
  }
13633
13765
 
13634
13766
  declare namespace io.flow.internal.v0.enums {
@@ -13645,6 +13777,12 @@ declare namespace io.flow.internal.v0.enums {
13645
13777
  | 'duty_rates_data_event'
13646
13778
  | 'integration_test'
13647
13779
  | 'unit_test';
13780
+ type AutoRestrictRule =
13781
+ | 'prr-3ce7d556f2464314ab0a3e8eee33e0ce'
13782
+ | 'prr-599c6246a1a24752aeb85e8f79030781'
13783
+ | 'prr-79e41878ea564f9c81cc432a0e84703f'
13784
+ | 'prr-f29c26dc09e04536bc77f9c32786ed70'
13785
+ | 'prr-0522d426a5b741c791ba05496c35297a';
13648
13786
  type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
13649
13787
  type BillingAllocationKey =
13650
13788
  | 'freight_cost'
@@ -13673,6 +13811,69 @@ declare namespace io.flow.internal.v0.enums {
13673
13811
  | 'duty_subsidy'
13674
13812
  | 'fuel_surcharge'
13675
13813
  | 'remote_area_surcharge';
13814
+ type BillingMetricKey =
13815
+ | 'adjustment_transactions_count'
13816
+ | 'adjustment_transactions_total'
13817
+ | 'capture_transactions_count'
13818
+ | 'capture_transactions_total'
13819
+ | 'channel_transactions_count'
13820
+ | 'channel_transactions_total'
13821
+ | 'channel_billed_transactions_count'
13822
+ | 'channel_billed_transactions_total'
13823
+ | 'credit_payment_transactions_count'
13824
+ | 'credit_payment_transactions_total'
13825
+ | 'duty_transactions_count'
13826
+ | 'duty_transactions_total'
13827
+ | 'fully_subsidized_order_transactions_count'
13828
+ | 'fully_subsidized_order_transactions_total'
13829
+ | 'billable_label_transactions_count'
13830
+ | 'billable_label_transactions_total'
13831
+ | 'revenue_share_label_transactions_count'
13832
+ | 'revenue_share_label_transactions_total'
13833
+ | 'manual_transactions_count'
13834
+ | 'manual_transactions_total'
13835
+ | 'order_transactions_count'
13836
+ | 'order_transactions_total'
13837
+ | 'refund_transactions_count'
13838
+ | 'refund_transactions_total'
13839
+ | 'reversal_order_cancellations_transactions_count'
13840
+ | 'reversal_order_cancellations_transactions_total'
13841
+ | 'reversal_external_fulfillment_transactions_count'
13842
+ | 'reversal_external_fulfillment_transactions_total'
13843
+ | 'tax_transactions_count'
13844
+ | 'tax_transactions_total'
13845
+ | 'transfer_transactions_count'
13846
+ | 'transfer_transactions_total'
13847
+ | 'fulfillments_count'
13848
+ | 'fulfillments_total'
13849
+ | 'shipping_notifications_count'
13850
+ | 'queued_capture_unprocessed_count'
13851
+ | 'queued_capture_deletion_unprocessed_count'
13852
+ | 'queued_channel_transaction_unprocessed_count'
13853
+ | 'queued_channel_organization_unprocessed_count'
13854
+ | 'queued_consumer_invoice_unprocessed_count'
13855
+ | 'queued_label_tracking_summary_unprocessed_count'
13856
+ | 'queued_order_unprocessed_count'
13857
+ | 'queued_order_identifier_unprocessed_count'
13858
+ | 'queued_refund_unprocessed_count'
13859
+ | 'queued_refund_deletion_unprocessed_count'
13860
+ | 'queued_statement_batch_unprocessed_count'
13861
+ | 'queued_statement_batch_email_unprocessed_count'
13862
+ | 'queued_statement_email_unprocessed_count'
13863
+ | 'queued_statement_summary_email_unprocessed_count'
13864
+ | 'shipping_notifications_total'
13865
+ | 'statements_no_payout_count'
13866
+ | 'statements_no_payout_total'
13867
+ | 'statements_pending_payout_count'
13868
+ | 'statements_pending_payout_total'
13869
+ | 'payouts_scheduled_count'
13870
+ | 'payouts_scheduled_total'
13871
+ | 'payouts_sent_count'
13872
+ | 'payouts_sent_total'
13873
+ | 'payouts_failed_count'
13874
+ | 'payouts_failed_total'
13875
+ | 'pending_payouts_max_age'
13876
+ | 'average_payout_amount';
13676
13877
  type BillingStatementAttachmentKey =
13677
13878
  | 'invoice'
13678
13879
  | 'statement'
@@ -14136,6 +14337,8 @@ declare namespace io.flow.internal.v0.enums {
14136
14337
  | 'tax_transaction_deleted'
14137
14338
  | 'duty_transaction_upserted'
14138
14339
  | 'duty_transaction_deleted'
14340
+ | 'daily_value_upserted'
14341
+ | 'daily_value_deleted'
14139
14342
  | 'calculator_organization_settings_upserted'
14140
14343
  | 'calculator_organization_settings_deleted'
14141
14344
  | 'carrier_account_upserted_v2'
@@ -14222,6 +14425,8 @@ declare namespace io.flow.internal.v0.enums {
14222
14425
  | 'billing_statement_batch_deleted'
14223
14426
  | 'billing_statement_batch_statement_upserted'
14224
14427
  | 'billing_statement_batch_statement_deleted'
14428
+ | 'standalone_attachment_upserted'
14429
+ | 'standalone_attachment_deleted'
14225
14430
  | 'platform_fee_change_upserted'
14226
14431
  | 'platform_fee_change_deleted'
14227
14432
  | 'organization_bank_account_upserted'
@@ -14552,6 +14757,7 @@ declare namespace io.flow.internal.v0.enums {
14552
14757
  | 'integration_partner'
14553
14758
  | 'dtce'
14554
14759
  | 'restrictions'
14760
+ | 'organization_status'
14555
14761
  | 'miscellaneous';
14556
14762
  type OnboardingAutomationProcessState =
14557
14763
  | 'not_started'
@@ -14571,6 +14777,7 @@ declare namespace io.flow.internal.v0.enums {
14571
14777
  | 'api_internal'
14572
14778
  | 'api_internal_block'
14573
14779
  | 'api_internal_unblock'
14780
+ | 'api_internal_delete_transaction'
14574
14781
  | 'onboarding_application'
14575
14782
  | 'organization_state_change'
14576
14783
  | 'restriction_organization_status';
@@ -14589,6 +14796,9 @@ declare namespace io.flow.internal.v0.enums {
14589
14796
  type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
14590
14797
  type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
14591
14798
  type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
14799
+ type OrganizationMetricType =
14800
+ | 'organization_restriction_snapshot'
14801
+ | 'organization_restriction_status';
14592
14802
  type OrganizationPaymentStatus = 'active' | 'archived';
14593
14803
  type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
14594
14804
  type OrganizationRestrictionNoteType =
@@ -14646,10 +14856,27 @@ declare namespace io.flow.internal.v0.enums {
14646
14856
  | 'fiserv'
14647
14857
  | 'crypto';
14648
14858
  type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
14859
+ type ProductStatus = 'active' | 'archived' | 'draft';
14649
14860
  type PromptAction = 'prompt_displayed' | 'consent_granted' | 'consent_denied';
14650
14861
  type PromptCheckoutDisplayPosition = 'email' | 'submission';
14651
14862
  type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
14652
14863
  type PromptTarget = 'browse' | 'checkout';
14864
+ type QueuedRecordType =
14865
+ | 'capture'
14866
+ | 'capture_deletion'
14867
+ | 'channel_transaction'
14868
+ | 'channel_organization'
14869
+ | 'consumer_invoice'
14870
+ | 'label_tracking_summary'
14871
+ | 'order'
14872
+ | 'order_identifier'
14873
+ | 'refund'
14874
+ | 'refund_deletion'
14875
+ | 'statement_batch'
14876
+ | 'statement_batch_email'
14877
+ | 'statement_email'
14878
+ | 'statement_summary_email'
14879
+ | 'wash';
14653
14880
  type QuoteRequestType =
14654
14881
  | 'generate'
14655
14882
  | 'delete'
@@ -14750,7 +14977,7 @@ declare namespace io.flow.internal.v0.enums {
14750
14977
  | 'do_nothing';
14751
14978
  type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
14752
14979
  type SnoozeNextActionWith = 'customer_service' | 'engineering';
14753
- type SnoozeSourceType = 'queued_capture' | 'queued_refund';
14980
+ type SnoozeSourceType = 'queued_record';
14754
14981
  type StatementStatus =
14755
14982
  | 'created'
14756
14983
  | 'no_transactions'
@@ -15723,7 +15950,6 @@ declare namespace io.flow.internal.v0.models {
15723
15950
 
15724
15951
  interface BillingStatementBatch {
15725
15952
  readonly id: string;
15726
- readonly period: io.flow.common.v0.models.DatetimeRange;
15727
15953
  readonly reconciliation: io.flow.internal.v0.models.BillingStatementBatchReconciliation;
15728
15954
  }
15729
15955
 
@@ -18843,6 +19069,15 @@ declare namespace io.flow.internal.v0.models {
18843
19069
  readonly number_of_items: number;
18844
19070
  }
18845
19071
 
19072
+ interface ClassificationSummaryReportPayload {
19073
+ readonly organization_id?: string;
19074
+ readonly product_id?: string;
19075
+ readonly date_from?: string;
19076
+ readonly date_to?: string;
19077
+ readonly email: string;
19078
+ readonly limit: number;
19079
+ }
19080
+
18846
19081
  interface ClassificationWrapper {
18847
19082
  readonly classifications: io.flow.internal.v0.unions.ClassificationResponse[];
18848
19083
  }
@@ -19301,6 +19536,27 @@ declare namespace io.flow.internal.v0.models {
19301
19536
  readonly daily_experiment_results: io.flow.internal.v0.models.DailyExperimentResults;
19302
19537
  }
19303
19538
 
19539
+ interface DailyValue {
19540
+ readonly id: string;
19541
+ readonly key: io.flow.internal.v0.enums.BillingMetricKey;
19542
+ readonly value: number;
19543
+ readonly date: string;
19544
+ }
19545
+
19546
+ interface DailyValueDeleted {
19547
+ readonly discriminator: 'daily_value_deleted';
19548
+ readonly event_id: string;
19549
+ readonly timestamp: string;
19550
+ readonly id: string;
19551
+ }
19552
+
19553
+ interface DailyValueUpserted {
19554
+ readonly discriminator: 'daily_value_upserted';
19555
+ readonly event_id: string;
19556
+ readonly timestamp: string;
19557
+ readonly daily_value: io.flow.internal.v0.models.DailyValue;
19558
+ }
19559
+
19304
19560
  interface DebugDetails {
19305
19561
  readonly labels: io.flow.internal.v0.models.DebugLabel[];
19306
19562
  readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
@@ -19354,8 +19610,7 @@ declare namespace io.flow.internal.v0.models {
19354
19610
  readonly type: string;
19355
19611
  readonly processing_transaction_id?: string;
19356
19612
  readonly queue_errors?: string[];
19357
- readonly processing_transaction_ignore_reason?: string;
19358
- readonly channel_transaction_ignore_reason?: string;
19613
+ readonly ignore_reason?: string;
19359
19614
  }
19360
19615
 
19361
19616
  interface DebugTransactionDetails {
@@ -19422,6 +19677,10 @@ declare namespace io.flow.internal.v0.models {
19422
19677
  readonly name: string;
19423
19678
  }
19424
19679
 
19680
+ interface DeleteTransitionsPutForm {
19681
+ readonly transition_ids: string[];
19682
+ }
19683
+
19425
19684
  interface DeliveredDutyOption {
19426
19685
  readonly methods: io.flow.common.v0.enums.DeliveredDuty[];
19427
19686
  readonly message?: io.flow.internal.v0.models.DeliveredDutyOptionMessage;
@@ -20354,33 +20613,6 @@ declare namespace io.flow.internal.v0.models {
20354
20613
  readonly transfer?: io.flow.internal.v0.models.Fee;
20355
20614
  }
20356
20615
 
20357
- interface File {
20358
- readonly id: string;
20359
- readonly stream: io.flow.internal.v0.models.StreamReference;
20360
- readonly url: string;
20361
- readonly created_at: string;
20362
- readonly metadata: io.flow.internal.v0.models.FileMetadata;
20363
- readonly confirmation?: io.flow.internal.v0.models.FileConfirmation;
20364
- }
20365
-
20366
- interface FileConfirmation {
20367
- readonly counts: io.flow.internal.v0.models.FileMetadataCounts;
20368
- }
20369
-
20370
- interface FileConfirmationForm {
20371
- readonly count_transactions: number;
20372
- readonly count_statements: number;
20373
- }
20374
-
20375
- interface FileMetadata {
20376
- readonly counts: io.flow.internal.v0.models.FileMetadataCounts;
20377
- }
20378
-
20379
- interface FileMetadataCounts {
20380
- readonly transactions: number;
20381
- readonly statements: number;
20382
- }
20383
-
20384
20616
  interface FinanceBankAccount {
20385
20617
  readonly id: string;
20386
20618
  readonly accounts: io.flow.internal.v0.models.AccountSummary[];
@@ -23195,6 +23427,7 @@ declare namespace io.flow.internal.v0.models {
23195
23427
  readonly organization_id: string;
23196
23428
  readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
23197
23429
  readonly setup_completed_at?: string;
23430
+ readonly activated_at?: string;
23198
23431
  readonly gmv: number;
23199
23432
  readonly health_score: number;
23200
23433
  readonly blocked_since?: string;
@@ -23654,6 +23887,15 @@ declare namespace io.flow.internal.v0.models {
23654
23887
  readonly to: string;
23655
23888
  }
23656
23889
 
23890
+ interface OrganizationOnboardingStateAdjustmentResult {
23891
+ readonly organization_onboarding_state?: io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
23892
+ }
23893
+
23894
+ interface OrganizationOnboardingStateAuditResult {
23895
+ readonly organization: string;
23896
+ readonly validation_errors: string[];
23897
+ }
23898
+
23657
23899
  interface OrganizationPaymentSetting {
23658
23900
  readonly id: string;
23659
23901
  readonly organization_id: string;
@@ -24939,6 +25181,17 @@ declare namespace io.flow.internal.v0.models {
24939
25181
  readonly number: string;
24940
25182
  }
24941
25183
 
25184
+ interface ReportRuleDecision {
25185
+ readonly rule_id: string;
25186
+ readonly rule_name: string;
25187
+ readonly status: io.flow.internal.v0.enums.RestrictionStatus;
25188
+ readonly count: number;
25189
+ }
25190
+
25191
+ interface ReportSummary {
25192
+ readonly task_id: string;
25193
+ }
25194
+
24942
25195
  interface RequeueRequestForm {
24943
25196
  readonly product_ids?: string[];
24944
25197
  readonly hs6_codes?: string[];
@@ -25104,7 +25357,7 @@ declare namespace io.flow.internal.v0.models {
25104
25357
  interface RestrictionRuleDecisionForm {
25105
25358
  readonly rule_id: string;
25106
25359
  readonly decision: io.flow.internal.v0.enums.RestrictionDecision;
25107
- readonly product_id?: string;
25360
+ readonly product_id: string;
25108
25361
  }
25109
25362
 
25110
25363
  interface RestrictionRuleForm {
@@ -25812,6 +26065,13 @@ declare namespace io.flow.internal.v0.models {
25812
26065
  readonly id: string;
25813
26066
  }
25814
26067
 
26068
+ interface ShopifyShopStatistics {
26069
+ readonly id: string;
26070
+ readonly initial_catalog_synced_at?: string;
26071
+ readonly catalog_sync_duration?: number;
26072
+ readonly catalog_products_count?: number;
26073
+ }
26074
+
25815
26075
  interface ShopifyShopUpserted {
25816
26076
  readonly discriminator: 'shopify_shop_upserted';
25817
26077
  readonly event_id: string;
@@ -25961,23 +26221,36 @@ declare namespace io.flow.internal.v0.models {
25961
26221
  readonly spot_rate: io.flow.internal.v0.models.SpotRate;
25962
26222
  }
25963
26223
 
25964
- interface StoreConnection {
25965
- readonly organization?: io.flow.common.v0.models.OrganizationReference;
26224
+ interface StandaloneAttachment {
25966
26225
  readonly id: string;
25967
- readonly domain: string;
26226
+ readonly statement: io.flow.internal.v0.models.BillingStatementReference;
26227
+ readonly key: io.flow.internal.v0.enums.BillingStatementAttachmentKey;
26228
+ readonly name: string;
26229
+ readonly url: string;
25968
26230
  }
25969
26231
 
25970
- interface StoreConnectionForm {
25971
- readonly organization: string;
26232
+ interface StandaloneAttachmentDeleted {
26233
+ readonly discriminator: 'standalone_attachment_deleted';
26234
+ readonly event_id: string;
26235
+ readonly timestamp: string;
26236
+ readonly id: string;
25972
26237
  }
25973
26238
 
25974
- interface Stream {
25975
- readonly id: string;
25976
- readonly key: string;
26239
+ interface StandaloneAttachmentUpserted {
26240
+ readonly discriminator: 'standalone_attachment_upserted';
26241
+ readonly event_id: string;
26242
+ readonly timestamp: string;
26243
+ readonly attachment: io.flow.internal.v0.models.StandaloneAttachment;
25977
26244
  }
25978
26245
 
25979
- interface StreamReference {
26246
+ interface StoreConnection {
26247
+ readonly organization?: io.flow.common.v0.models.OrganizationReference;
25980
26248
  readonly id: string;
26249
+ readonly domain: string;
26250
+ }
26251
+
26252
+ interface StoreConnectionForm {
26253
+ readonly organization: string;
25981
26254
  }
25982
26255
 
25983
26256
  interface StringFeatureDefaultValue {
@@ -27423,6 +27696,8 @@ declare namespace io.flow.internal.v0.unions {
27423
27696
  | io.flow.internal.v0.models.TaxTransactionDeleted
27424
27697
  | io.flow.internal.v0.models.DutyTransactionUpserted
27425
27698
  | io.flow.internal.v0.models.DutyTransactionDeleted
27699
+ | io.flow.internal.v0.models.DailyValueUpserted
27700
+ | io.flow.internal.v0.models.DailyValueDeleted
27426
27701
  | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted
27427
27702
  | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted
27428
27703
  | io.flow.internal.v0.models.CarrierAccountUpsertedV2
@@ -27509,6 +27784,8 @@ declare namespace io.flow.internal.v0.unions {
27509
27784
  | io.flow.internal.v0.models.BillingStatementBatchDeleted
27510
27785
  | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted
27511
27786
  | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted
27787
+ | io.flow.internal.v0.models.StandaloneAttachmentUpserted
27788
+ | io.flow.internal.v0.models.StandaloneAttachmentDeleted
27512
27789
  | io.flow.internal.v0.models.PlatformFeeChangeUpserted
27513
27790
  | io.flow.internal.v0.models.PlatformFeeChangeDeleted
27514
27791
  | io.flow.internal.v0.models.OrganizationBankAccountUpserted
@@ -28123,6 +28400,7 @@ export type AuthorizedOrderCharge =
28123
28400
  io.flow.internal.v0.unions.AuthorizedOrderCharge;
28124
28401
  export type AuthorizedShippingCharge =
28125
28402
  io.flow.internal.v0.models.AuthorizedShippingCharge;
28403
+ export type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
28126
28404
  export type Backfill = io.flow.internal.v0.models.Backfill;
28127
28405
  export type BackfillForm = io.flow.internal.v0.models.BackfillForm;
28128
28406
  export type BankAccountReference =
@@ -28150,6 +28428,7 @@ export type BillingLabelSummary =
28150
28428
  io.flow.internal.v0.models.BillingLabelSummary;
28151
28429
  export type BillingLabelTrackingSummaryReference =
28152
28430
  io.flow.internal.v0.models.BillingLabelTrackingSummaryReference;
28431
+ export type BillingMetricKey = io.flow.internal.v0.enums.BillingMetricKey;
28153
28432
  export type BillingOrderDestination =
28154
28433
  io.flow.internal.v0.models.BillingOrderDestination;
28155
28434
  export type BillingOrderSummary =
@@ -29503,6 +29782,8 @@ export type ClassificationResponse =
29503
29782
  io.flow.internal.v0.unions.ClassificationResponse;
29504
29783
  export type ClassificationStatistics =
29505
29784
  io.flow.internal.v0.models.ClassificationStatistics;
29785
+ export type ClassificationSummaryReportPayload =
29786
+ io.flow.internal.v0.models.ClassificationSummaryReportPayload;
29506
29787
  export type ClassificationTaxonomy =
29507
29788
  io.flow.internal.v0.unions.ClassificationTaxonomy;
29508
29789
  export type ClassificationWrapper =
@@ -29608,6 +29889,9 @@ export type DailyExperimentResultsDeleted =
29608
29889
  io.flow.internal.v0.models.DailyExperimentResultsDeleted;
29609
29890
  export type DailyExperimentResultsUpserted =
29610
29891
  io.flow.internal.v0.models.DailyExperimentResultsUpserted;
29892
+ export type DailyValue = io.flow.internal.v0.models.DailyValue;
29893
+ export type DailyValueDeleted = io.flow.internal.v0.models.DailyValueDeleted;
29894
+ export type DailyValueUpserted = io.flow.internal.v0.models.DailyValueUpserted;
29611
29895
  export type DebugDetails = io.flow.internal.v0.models.DebugDetails;
29612
29896
  export type DebugLabel = io.flow.internal.v0.models.DebugLabel;
29613
29897
  export type DebugLabelTransactionSummary =
@@ -29638,6 +29922,8 @@ export type DeclineReasonFraud = io.flow.internal.v0.models.DeclineReasonFraud;
29638
29922
  export type DecryptCipherForm = io.flow.internal.v0.models.DecryptCipherForm;
29639
29923
  export type DecryptedCipher = io.flow.internal.v0.models.DecryptedCipher;
29640
29924
  export type DeleteIndexTask = io.flow.internal.v0.models.DeleteIndexTask;
29925
+ export type DeleteTransitionsPutForm =
29926
+ io.flow.internal.v0.models.DeleteTransitionsPutForm;
29641
29927
  export type DeliveredDutyOption =
29642
29928
  io.flow.internal.v0.models.DeliveredDutyOption;
29643
29929
  export type DeliveredDutyOptionMessage =
@@ -29889,12 +30175,6 @@ export type FeedUpserted = io.flow.internal.v0.models.FeedUpserted;
29889
30175
  export type FeedsExport = io.flow.internal.v0.models.FeedsExport;
29890
30176
  export type Fees = io.flow.internal.v0.models.Fees;
29891
30177
  export type FeesSource = io.flow.internal.v0.enums.FeesSource;
29892
- export type File = io.flow.internal.v0.models.File;
29893
- export type FileConfirmation = io.flow.internal.v0.models.FileConfirmation;
29894
- export type FileConfirmationForm =
29895
- io.flow.internal.v0.models.FileConfirmationForm;
29896
- export type FileMetadata = io.flow.internal.v0.models.FileMetadata;
29897
- export type FileMetadataCounts = io.flow.internal.v0.models.FileMetadataCounts;
29898
30178
  export type FinanceBankAccount = io.flow.internal.v0.models.FinanceBankAccount;
29899
30179
  export type FinanceBankAccountOwner =
29900
30180
  io.flow.internal.v0.models.FinanceBankAccountOwner;
@@ -30695,6 +30975,12 @@ export type OrganizationMembershipCopy =
30695
30975
  io.flow.internal.v0.models.OrganizationMembershipCopy;
30696
30976
  export type OrganizationMembershipCopyForm =
30697
30977
  io.flow.internal.v0.models.OrganizationMembershipCopyForm;
30978
+ export type OrganizationMetricType =
30979
+ io.flow.internal.v0.enums.OrganizationMetricType;
30980
+ export type OrganizationOnboardingStateAdjustmentResult =
30981
+ io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult;
30982
+ export type OrganizationOnboardingStateAuditResult =
30983
+ io.flow.internal.v0.models.OrganizationOnboardingStateAuditResult;
30698
30984
  export type OrganizationPaymentSetting =
30699
30985
  io.flow.internal.v0.models.OrganizationPaymentSetting;
30700
30986
  export type OrganizationPaymentSettingDeleted =
@@ -30924,6 +31210,7 @@ export type ProductListSettingsForm =
30924
31210
  io.flow.internal.v0.models.ProductListSettingsForm;
30925
31211
  export type ProductReviewHistory =
30926
31212
  io.flow.internal.v0.models.ProductReviewHistory;
31213
+ export type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
30927
31214
  export type PromptAction = io.flow.internal.v0.enums.PromptAction;
30928
31215
  export type PromptCheckoutDisplayPosition =
30929
31216
  io.flow.internal.v0.enums.PromptCheckoutDisplayPosition;
@@ -30938,6 +31225,7 @@ export type ProofOfPostingOrderCancellation =
30938
31225
  io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
30939
31226
  export type ProofOfPostingShippingNotification =
30940
31227
  io.flow.internal.v0.models.ProofOfPostingShippingNotification;
31228
+ export type QueuedRecordType = io.flow.internal.v0.enums.QueuedRecordType;
30941
31229
  export type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
30942
31230
  export type QuoteRequestType = io.flow.internal.v0.enums.QuoteRequestType;
30943
31231
  export type RateAndRuleItem = io.flow.internal.v0.models.RateAndRuleItem;
@@ -31046,6 +31334,8 @@ export type RegisteredExporterTariffEligibilityForm =
31046
31334
  io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
31047
31335
  export type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
31048
31336
  export type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
31337
+ export type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
31338
+ export type ReportSummary = io.flow.internal.v0.models.ReportSummary;
31049
31339
  export type ReportingScheme = io.flow.internal.v0.enums.ReportingScheme;
31050
31340
  export type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
31051
31341
  export type ResponsibleParty = io.flow.internal.v0.enums.ResponsibleParty;
@@ -31313,6 +31603,8 @@ export type ShopifyPromotionStatus =
31313
31603
  io.flow.internal.v0.enums.ShopifyPromotionStatus;
31314
31604
  export type ShopifyService = io.flow.internal.v0.enums.ShopifyService;
31315
31605
  export type ShopifyShopDeleted = io.flow.internal.v0.models.ShopifyShopDeleted;
31606
+ export type ShopifyShopStatistics =
31607
+ io.flow.internal.v0.models.ShopifyShopStatistics;
31316
31608
  export type ShopifyShopUpserted =
31317
31609
  io.flow.internal.v0.models.ShopifyShopUpserted;
31318
31610
  export type ShopifyWebhook = io.flow.internal.v0.models.ShopifyWebhook;
@@ -31353,6 +31645,12 @@ export type SpotRateMetadataRate =
31353
31645
  io.flow.internal.v0.models.SpotRateMetadataRate;
31354
31646
  export type SpotRateUpserted = io.flow.internal.v0.models.SpotRateUpserted;
31355
31647
  export type SpotRateVersion = io.flow.internal.v0.models.SpotRateVersion;
31648
+ export type StandaloneAttachment =
31649
+ io.flow.internal.v0.models.StandaloneAttachment;
31650
+ export type StandaloneAttachmentDeleted =
31651
+ io.flow.internal.v0.models.StandaloneAttachmentDeleted;
31652
+ export type StandaloneAttachmentUpserted =
31653
+ io.flow.internal.v0.models.StandaloneAttachmentUpserted;
31356
31654
  export type StatementStatus = io.flow.internal.v0.enums.StatementStatus;
31357
31655
  export type StatementTransferTransactionLocation =
31358
31656
  io.flow.internal.v0.enums.StatementTransferTransactionLocation;
@@ -31361,8 +31659,6 @@ export type Status = io.flow.internal.v0.enums.Status;
31361
31659
  export type StoreConnection = io.flow.internal.v0.models.StoreConnection;
31362
31660
  export type StoreConnectionForm =
31363
31661
  io.flow.internal.v0.models.StoreConnectionForm;
31364
- export type Stream = io.flow.internal.v0.models.Stream;
31365
- export type StreamReference = io.flow.internal.v0.models.StreamReference;
31366
31662
  export type StringFeatureDefaultValue =
31367
31663
  io.flow.internal.v0.models.StringFeatureDefaultValue;
31368
31664
  export type StringFeatureRule = io.flow.internal.v0.models.StringFeatureRule;