@flowio/api-internal-prop-types 9.24.62 → 9.24.64

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.
@@ -364,6 +364,12 @@ T['io.flow.shopify.v0.unions.shopify_cart_add_form'] = PropTypes.oneOfType([
364
364
  T['io.flow.shopify.v0.models.shopify_cart_add_multiple_form'],
365
365
  ]);
366
366
 
367
+ T['io.flow.billing.v0.models.bank_account_form_simple'] = PropTypes.exact({
368
+ discriminator: PropTypes.oneOf(['simple']).isRequired,
369
+ routing_number: PropTypes.string.isRequired,
370
+ account_number: PropTypes.string.isRequired,
371
+ });
372
+
367
373
  T['io.flow.billing.v0.models.settlement_no_payout'] = PropTypes.exact({
368
374
  discriminator: PropTypes.oneOf(['no_payout']).isRequired,
369
375
  placeholder: PropTypes.string,
@@ -1289,21 +1295,6 @@ T['io.flow.payment.gateway.v0.models.payment_request_review_check'] = PropTypes.
1289
1295
 
1290
1296
  T['io.flow.payment.gateway.v0.enums.payment_request_review_status'] = PropTypes.oneOf(['pending', 'approved', 'rejected']);
1291
1297
 
1292
- T['io.flow.payment.gateway.v0.models.device_details_browser'] = PropTypes.exact({
1293
- type: PropTypes.oneOf(['browser']).isRequired,
1294
- user_agent: PropTypes.string.isRequired,
1295
- origin: PropTypes.string.isRequired,
1296
- accept_language: PropTypes.string,
1297
- ip: PropTypes.string,
1298
- time_zone_offset: PropTypes.number,
1299
- date_string: PropTypes.string,
1300
- navigator_language: PropTypes.string,
1301
- navigator_hardware_concurrency: PropTypes.number,
1302
- cookie_created_at: PropTypes.number,
1303
- session_duration: PropTypes.number,
1304
- fingerprint: PropTypes.string,
1305
- });
1306
-
1307
1298
  T['io.flow.payment.gateway.v0.enums.payment_type'] = PropTypes.oneOf([
1308
1299
  'card',
1309
1300
  'klarna',
@@ -1565,7 +1556,7 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_contact'] = PropTypes.exact({
1565
1556
  country_code: PropTypes.string,
1566
1557
  });
1567
1558
 
1568
- T['io.flow.apple.pay.v0.enums.apple_pay_contact_field'] = PropTypes.oneOf(['email', 'name', 'phone', 'postal_address', 'phonetic_name']);
1559
+ T['io.flow.apple.pay.v0.enums.apple_pay_contact_field'] = PropTypes.oneOf(['email', 'name', 'phone', 'postalAddress', 'phoneticName']);
1569
1560
 
1570
1561
  T['io.flow.apple.pay.v0.enums.apple_pay_supported_networks'] = PropTypes.oneOf([
1571
1562
  'amex',
@@ -1577,12 +1568,12 @@ T['io.flow.apple.pay.v0.enums.apple_pay_supported_networks'] = PropTypes.oneOf([
1577
1568
  'visa',
1578
1569
  ]);
1579
1570
 
1580
- T['io.flow.apple.pay.v0.enums.apple_pay_shipping_type'] = PropTypes.oneOf(['shipping', 'delivery', 'store_pickup', 'service_pickup']);
1571
+ T['io.flow.apple.pay.v0.enums.apple_pay_shipping_type'] = PropTypes.oneOf(['shipping', 'delivery', 'storePickup', 'servicePickup']);
1581
1572
 
1582
1573
  T['io.flow.apple.pay.v0.models.apple_pay_shipping_method'] = PropTypes.exact({
1583
1574
  label: PropTypes.string.isRequired,
1584
1575
  detail: PropTypes.string.isRequired,
1585
- amount: PropTypes.number.isRequired,
1576
+ amount: PropTypes.string.isRequired,
1586
1577
  identifier: PropTypes.string.isRequired,
1587
1578
  });
1588
1579
 
@@ -1591,7 +1582,7 @@ T['io.flow.apple.pay.v0.enums.apple_pay_merchant_capability'] = PropTypes.oneOf(
1591
1582
  T['io.flow.apple.pay.v0.models.apple_pay_line_item'] = PropTypes.exact({
1592
1583
  label: PropTypes.string.isRequired,
1593
1584
  type: T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'].isRequired,
1594
- amount: PropTypes.number.isRequired,
1585
+ amount: PropTypes.string.isRequired,
1595
1586
  });
1596
1587
 
1597
1588
  T['io.flow.apple.pay.v0.models.apple_pay_payment_info'] = PropTypes.exact({
@@ -2177,7 +2168,7 @@ T['io.flow.shopify.markets.v0.enums.shopify_order_kind_type'] = PropTypes.oneOf(
2177
2168
  T['io.flow.shopify.markets.v0.enums.incoterm_duties'] = PropTypes.oneOf(['DAP', 'DDP']);
2178
2169
 
2179
2170
  T['io.flow.shopify.markets.v0.models.fulfillment_order_international_duties'] = PropTypes.exact({
2180
- incoterm: T['io.flow.shopify.markets.v0.enums.incoterm_duties'].isRequired,
2171
+ incoterm: T['io.flow.shopify.markets.v0.enums.incoterm_duties'],
2181
2172
  });
2182
2173
 
2183
2174
  T['io.flow.shopify.markets.v0.models.shopify_fulfillment_order'] = PropTypes.exact({
@@ -3014,6 +3005,7 @@ T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
3014
3005
  vendor: PropTypes.string,
3015
3006
  body_html: PropTypes.string,
3016
3007
  product_type: PropTypes.string,
3008
+ status: PropTypes.string,
3017
3009
  options: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.option']).isRequired,
3018
3010
  tags: PropTypes.string,
3019
3011
  template_suffix: PropTypes.string,
@@ -3032,7 +3024,15 @@ T['io.flow.shopify.external.v0.models.response_product'] = PropTypes.exact({
3032
3024
  });
3033
3025
 
3034
3026
  T['io.flow.order.management.v0.enums.fulfillment_item_quantity_status'] = PropTypes.oneOf(['new', 'shipped', 'cancelled']);
3035
- T['io.flow.adyen.v0.enums.method'] = PropTypes.oneOf(['GET', 'POST']);
3027
+
3028
+ T['io.flow.adyen.v0.models.sdk_v3_on_complete_data'] = PropTypes.exact({
3029
+ details: PropTypes.object.isRequired,
3030
+ payment_data: PropTypes.string,
3031
+ });
3032
+
3033
+ T['io.flow.adyen.v0.models.sdk_v3_on_complete_result'] = PropTypes.exact({
3034
+ data: T['io.flow.adyen.v0.models.sdk_v3_on_complete_data'].isRequired,
3035
+ });
3036
3036
 
3037
3037
  T['io.flow.adyen.v0.models.redirect_data'] = PropTypes.exact({
3038
3038
  PaReq: PropTypes.string,
@@ -3040,12 +3040,6 @@ T['io.flow.adyen.v0.models.redirect_data'] = PropTypes.exact({
3040
3040
  MD: PropTypes.string,
3041
3041
  });
3042
3042
 
3043
- T['io.flow.adyen.v0.models.redirect'] = PropTypes.exact({
3044
- data: T['io.flow.adyen.v0.models.redirect_data'],
3045
- method: T['io.flow.adyen.v0.enums.method'],
3046
- url: PropTypes.string,
3047
- });
3048
-
3049
3043
  T['io.flow.adyen.v0.models.authentication'] = PropTypes.exact({
3050
3044
  'threeds2.fingerprintToken': PropTypes.string,
3051
3045
  'threeds2.challengeToken': PropTypes.string,
@@ -3054,12 +3048,59 @@ T['io.flow.adyen.v0.models.authentication'] = PropTypes.exact({
3054
3048
  T['io.flow.adyen.v0.models.payment_response_additional_data'] = PropTypes.exact({
3055
3049
  authCode: PropTypes.string,
3056
3050
  avsResultRaw: PropTypes.string,
3051
+ avsResult: PropTypes.string,
3057
3052
  cvcResultRaw: PropTypes.string,
3053
+ cvcResult: PropTypes.string,
3054
+ refusalReasonRaw: PropTypes.string,
3058
3055
  liabilityShift: PropTypes.string,
3059
3056
  threeDAuthenticated: PropTypes.string,
3060
3057
  threeDAuthenticatedResponse: PropTypes.string,
3061
3058
  threeDOffered: PropTypes.string,
3062
3059
  threeDOfferedResponse: PropTypes.string,
3060
+ threeDSVersion: PropTypes.string,
3061
+ eci: PropTypes.string,
3062
+ cavv: PropTypes.string,
3063
+ scaExemptionRequested: PropTypes.string,
3064
+ paymentMethod: PropTypes.string,
3065
+ paymentMethodVariant: PropTypes.string,
3066
+ tokenTxVariant: PropTypes.string,
3067
+ acquirerCode: PropTypes.string,
3068
+ acquirerAccountCode: PropTypes.string,
3069
+ cardPaymentMethod: PropTypes.string,
3070
+ coBrandedWith: PropTypes.string,
3071
+ cardIssuingCountry: PropTypes.string,
3072
+ cardIssuingCurrency: PropTypes.string,
3073
+ cardIssuingBank: PropTypes.string,
3074
+ cardBin: PropTypes.string,
3075
+ issuerBin: PropTypes.string,
3076
+ cardSummary: PropTypes.string,
3077
+ untokenisedCardSummary: PropTypes.string,
3078
+ expiryDate: PropTypes.string,
3079
+ cardHolderName: PropTypes.string,
3080
+ fundingSource: PropTypes.string,
3081
+ ownerName: PropTypes.string,
3082
+ bankName: PropTypes.string,
3083
+ issuerCountry: PropTypes.string,
3084
+ iban: PropTypes.string,
3085
+ bic: PropTypes.string,
3086
+ iDealConsumerAccountNumber: PropTypes.string,
3087
+ iDealConsumerBIC: PropTypes.string,
3088
+ iDealConsumerCity: PropTypes.string,
3089
+ iDealConsumerIBAN: PropTypes.string,
3090
+ iDealConsumerName: PropTypes.string,
3091
+ iDealTransactionId: PropTypes.string,
3092
+ 'recurring.recurringDetailReference': PropTypes.string,
3093
+ 'recurring.shopperReference': PropTypes.string,
3094
+ networkTxReference: PropTypes.string,
3095
+ PaymentAccountReference: PropTypes.string,
3096
+ 'networkToken.available': PropTypes.string,
3097
+ 'networkToken.bin': PropTypes.string,
3098
+ 'networkToken.tokenSummary': PropTypes.string,
3099
+ });
3100
+
3101
+ T['io.flow.adyen.v0.models.applepay'] = PropTypes.exact({
3102
+ type: PropTypes.oneOf(['applepay']).isRequired,
3103
+ applePayToken: PropTypes.string.isRequired,
3063
3104
  });
3064
3105
 
3065
3106
  T['io.flow.adyen.v0.models.scheme'] = PropTypes.exact({
@@ -3069,6 +3110,16 @@ T['io.flow.adyen.v0.models.scheme'] = PropTypes.exact({
3069
3110
  holderName: PropTypes.string.isRequired,
3070
3111
  number: PropTypes.string.isRequired,
3071
3112
  cvc: PropTypes.string,
3113
+ storedPaymentMethodId: PropTypes.string,
3114
+ networkPaymentReference: PropTypes.string,
3115
+ });
3116
+
3117
+ T['io.flow.adyen.v0.enums.http_redirect_method'] = PropTypes.oneOf(['GET', 'POST']);
3118
+
3119
+ T['io.flow.adyen.v0.models.redirect'] = PropTypes.exact({
3120
+ data: T['io.flow.adyen.v0.models.redirect_data'],
3121
+ method: T['io.flow.adyen.v0.enums.http_redirect_method'],
3122
+ url: PropTypes.string,
3072
3123
  });
3073
3124
 
3074
3125
  T['io.flow.adyen.v0.enums.channel'] = PropTypes.oneOf(['web']);
@@ -3078,15 +3129,20 @@ T['io.flow.adyen.v0.models.threeds_additional_data'] = PropTypes.exact({
3078
3129
  allow3DS2: PropTypes.bool,
3079
3130
  });
3080
3131
 
3081
- T['io.flow.adyen.v0.unions.payment_method_data'] = PropTypes.oneOfType([T['io.flow.adyen.v0.models.scheme']]);
3132
+ T['io.flow.adyen.v0.unions.payment_method_data'] = PropTypes.oneOfType(
3133
+ [T['io.flow.adyen.v0.models.scheme'], T['io.flow.adyen.v0.models.applepay']],
3134
+ );
3082
3135
 
3083
3136
  T['io.flow.adyen.v0.enums.payment_method'] = PropTypes.oneOf([
3084
3137
  'ach',
3085
3138
  'alipay',
3139
+ 'alipay_hk',
3086
3140
  'alipay_wap',
3087
3141
  'amex',
3088
3142
  'bankTransfer_IBAN',
3089
3143
  'bcmc',
3144
+ 'bcmc_mobile',
3145
+ 'blik',
3090
3146
  'cartebancaire',
3091
3147
  'cup',
3092
3148
  'diners',
@@ -3097,21 +3153,27 @@ T['io.flow.adyen.v0.enums.payment_method'] = PropTypes.oneOf([
3097
3153
  'dragonpay_gcash',
3098
3154
  'dragonpay_otc_banking',
3099
3155
  'ebanking_FI',
3156
+ 'gcash',
3100
3157
  'giropay',
3101
3158
  'ideal',
3102
3159
  'interac',
3103
3160
  'jcb',
3161
+ 'kakaopay',
3104
3162
  'kcp_banktransfer',
3105
3163
  'kcp_creditcard',
3106
3164
  'kcp_payco',
3107
3165
  'maestro',
3166
+ 'mbway',
3108
3167
  'mc',
3168
+ 'mobilepay',
3109
3169
  'molpay_points',
3110
3170
  'multibanco',
3171
+ 'onlineBanking_PL',
3111
3172
  'qiwiwallet',
3112
3173
  'sepadirectdebit',
3113
3174
  'trustly',
3114
3175
  'trustpay',
3176
+ 'twint',
3115
3177
  'unionpay',
3116
3178
  'visa',
3117
3179
  'wechatpay',
@@ -3310,7 +3372,12 @@ T['io.flow.adyen.v0.models.payment_request'] = PropTypes.exact({
3310
3372
  browserInfo: T['io.flow.adyen.v0.unions.browser_info'],
3311
3373
  origin: PropTypes.string,
3312
3374
  channel: T['io.flow.adyen.v0.enums.channel'],
3313
- returnURL: PropTypes.string,
3375
+ returnUrl: PropTypes.string,
3376
+ mcc: PropTypes.string,
3377
+ metadata: PropTypes.object,
3378
+ redirectToIssuerMethod: T['io.flow.adyen.v0.enums.http_redirect_method'],
3379
+ redirectFromIssuerMethod: T['io.flow.adyen.v0.enums.http_redirect_method'],
3380
+ storePaymentMethod: PropTypes.bool,
3314
3381
  });
3315
3382
 
3316
3383
  T['io.flow.adyen.v0.models.modification_request'] = PropTypes.exact({
@@ -3366,6 +3433,8 @@ T['io.flow.adyen.v0.models.authorize_request'] = PropTypes.exact({
3366
3433
  browserInfo: T['io.flow.adyen.v0.unions.browser_info'],
3367
3434
  threeDS2RequestData: T['io.flow.adyen.v0.models.threeds2_request_data'],
3368
3435
  recurringProcessingModel: T['io.flow.adyen.v0.enums.recurring_processing_model'],
3436
+ mcc: PropTypes.string,
3437
+ metadata: PropTypes.object,
3369
3438
  });
3370
3439
 
3371
3440
  T['io.flow.brickftp.v0.models.file_summary'] = PropTypes.exact({
@@ -5191,6 +5260,21 @@ T['io.flow.payment.v0.models.stripe_authentication_data'] = PropTypes.exact({
5191
5260
 
5192
5261
  T['io.flow.payment.v0.unions.gateway_authentication_data'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.stripe_authentication_data']]);
5193
5262
 
5263
+ T['io.flow.payment.v0.models.device_details_browser'] = PropTypes.exact({
5264
+ type: PropTypes.oneOf(['browser']).isRequired,
5265
+ user_agent: PropTypes.string.isRequired,
5266
+ origin: PropTypes.string.isRequired,
5267
+ accept_language: PropTypes.string,
5268
+ ip: PropTypes.string,
5269
+ time_zone_offset: PropTypes.number,
5270
+ date_string: PropTypes.string,
5271
+ navigator_language: PropTypes.string,
5272
+ navigator_hardware_concurrency: PropTypes.number,
5273
+ cookie_created_at: PropTypes.number,
5274
+ session_duration: PropTypes.number,
5275
+ fingerprint: PropTypes.string,
5276
+ });
5277
+
5194
5278
  T['io.flow.payment.v0.models.issuer_v1'] = PropTypes.exact({
5195
5279
  iin: PropTypes.string.isRequired,
5196
5280
  card_brand: PropTypes.string.isRequired,
@@ -7613,6 +7697,13 @@ T['io.flow.internal.v0.models.platform_fee_change_deleted'] = PropTypes.exact({
7613
7697
  id: PropTypes.string.isRequired,
7614
7698
  });
7615
7699
 
7700
+ T['io.flow.internal.v0.models.standalone_attachment_deleted'] = PropTypes.exact({
7701
+ discriminator: PropTypes.oneOf(['standalone_attachment_deleted']).isRequired,
7702
+ event_id: PropTypes.string.isRequired,
7703
+ timestamp: PropTypes.string.isRequired,
7704
+ id: PropTypes.string.isRequired,
7705
+ });
7706
+
7616
7707
  T['io.flow.internal.v0.models.billing_statement_batch_statement_deleted'] = PropTypes.exact({
7617
7708
  discriminator: PropTypes.oneOf(['billing_statement_batch_statement_deleted']).isRequired,
7618
7709
  event_id: PropTypes.string.isRequired,
@@ -7876,6 +7967,13 @@ T['io.flow.internal.v0.models.calculator_organization_settings_deleted'] = PropT
7876
7967
  id: PropTypes.string.isRequired,
7877
7968
  });
7878
7969
 
7970
+ T['io.flow.internal.v0.models.daily_value_deleted'] = PropTypes.exact({
7971
+ discriminator: PropTypes.oneOf(['daily_value_deleted']).isRequired,
7972
+ event_id: PropTypes.string.isRequired,
7973
+ timestamp: PropTypes.string.isRequired,
7974
+ id: PropTypes.string.isRequired,
7975
+ });
7976
+
7879
7977
  T['io.flow.internal.v0.models.duty_transaction_deleted'] = PropTypes.exact({
7880
7978
  discriminator: PropTypes.oneOf(['duty_transaction_deleted']).isRequired,
7881
7979
  event_id: PropTypes.string.isRequired,
@@ -8511,7 +8609,7 @@ T['io.flow.internal.v0.models.spot_rate_upserted'] = PropTypes.exact({
8511
8609
  spot_rate: T['io.flow.internal.v0.models.spot_rate'].isRequired,
8512
8610
  });
8513
8611
 
8514
- T['io.flow.internal.v0.enums.snooze_source_type'] = PropTypes.oneOf(['queued_capture', 'queued_refund']);
8612
+ T['io.flow.internal.v0.enums.snooze_source_type'] = PropTypes.oneOf(['queued_record']);
8515
8613
 
8516
8614
  T['io.flow.internal.v0.models.snooze_source'] = PropTypes.exact({
8517
8615
  type: T['io.flow.internal.v0.enums.snooze_source_type'].isRequired,
@@ -9156,7 +9254,7 @@ T['io.flow.internal.v0.enums.restriction_decision'] = PropTypes.oneOf(['accept',
9156
9254
  T['io.flow.internal.v0.models.restriction_rule_decision_form'] = PropTypes.exact({
9157
9255
  rule_id: PropTypes.string.isRequired,
9158
9256
  decision: T['io.flow.internal.v0.enums.restriction_decision'].isRequired,
9159
- product_id: PropTypes.string,
9257
+ product_id: PropTypes.string.isRequired,
9160
9258
  });
9161
9259
 
9162
9260
  T['io.flow.internal.v0.models.restriction_product_decision_form'] = PropTypes.exact({
@@ -9351,6 +9449,13 @@ T['io.flow.internal.v0.models.restriction_status_metadata'] = PropTypes.exact({
9351
9449
  count: PropTypes.number.isRequired,
9352
9450
  });
9353
9451
 
9452
+ T['io.flow.internal.v0.models.report_rule_decision'] = PropTypes.exact({
9453
+ rule_id: PropTypes.string.isRequired,
9454
+ rule_name: PropTypes.string.isRequired,
9455
+ status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
9456
+ count: PropTypes.number.isRequired,
9457
+ });
9458
+
9354
9459
  T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
9355
9460
  positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
9356
9461
  negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
@@ -10022,6 +10127,7 @@ T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'] = PropType
10022
10127
  ]);
10023
10128
 
10024
10129
  T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'] = PropTypes.exact({
10130
+ id: PropTypes.string.isRequired,
10025
10131
  state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
10026
10132
  started_at: PropTypes.string.isRequired,
10027
10133
  });
@@ -10041,6 +10147,7 @@ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
10041
10147
  organization_id: PropTypes.string.isRequired,
10042
10148
  onboarding_current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
10043
10149
  setup_completed_at: PropTypes.string,
10150
+ activated_at: PropTypes.string,
10044
10151
  gmv: PropTypes.number.isRequired,
10045
10152
  health_score: PropTypes.number.isRequired,
10046
10153
  blocked_since: PropTypes.string,
@@ -10076,6 +10183,7 @@ T['io.flow.internal.v0.enums.onboarding_audit_theme_key'] = PropTypes.oneOf([
10076
10183
  'integration_partner',
10077
10184
  'dtce',
10078
10185
  'restrictions',
10186
+ 'organization_status',
10079
10187
  'miscellaneous',
10080
10188
  ]);
10081
10189
 
@@ -11530,27 +11638,11 @@ T['io.flow.payment.gateway.v0.enums.payment_action_type'] = PropTypes.oneOf([
11530
11638
  'display_inline_window',
11531
11639
  ]);
11532
11640
 
11533
- T['io.flow.payment.gateway.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.payment.gateway.v0.models.device_details_browser']]);
11534
-
11535
11641
  T['io.flow.payment.gateway.v0.unions.order_information'] = PropTypes.oneOfType([
11536
11642
  T['io.flow.payment.gateway.v0.models.order_information_flow'],
11537
11643
  T['io.flow.payment.gateway.v0.models.order_information_details'],
11538
11644
  ]);
11539
11645
 
11540
- T['io.flow.payment.gateway.v0.models.payment_request_form'] = PropTypes.exact({
11541
- amount: PropTypes.number.isRequired,
11542
- currency: PropTypes.string.isRequired,
11543
- order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
11544
- device_details: T['io.flow.payment.gateway.v0.unions.device_details'].isRequired,
11545
- locale: PropTypes.string,
11546
- return_url: PropTypes.string.isRequired,
11547
- attributes: PropTypes.objectOf(PropTypes.string),
11548
- reference: PropTypes.string,
11549
- payment_method_data: T['io.flow.payment.gateway.v0.unions.payment_method_data'],
11550
- supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']),
11551
- payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
11552
- });
11553
-
11554
11646
  T['io.flow.payment.gateway.v0.models.payment_failure'] = PropTypes.exact({
11555
11647
  authorization_id: PropTypes.string,
11556
11648
  failure_code: T['io.flow.payment.gateway.v0.enums.payment_failure_code'].isRequired,
@@ -12021,48 +12113,58 @@ T['io.flow.internal.v0.models.financial_reporting_statement'] = PropTypes.exact(
12021
12113
  adjustments_url: PropTypes.string,
12022
12114
  });
12023
12115
 
12024
- T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'] = PropTypes.exact({
12025
- discriminator: PropTypes.oneOf(['usa']).isRequired,
12026
- routing_number: PropTypes.string.isRequired,
12027
- account_number: PropTypes.string.isRequired,
12116
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'] = PropTypes.exact({
12117
+ discriminator: PropTypes.oneOf(['ita']).isRequired,
12118
+ swift_code: PropTypes.string.isRequired,
12119
+ iban: PropTypes.string.isRequired,
12028
12120
  });
12029
12121
 
12030
- T['io.flow.internal.v0.models.finance_bank_account_owner'] = PropTypes.exact({
12031
- name: PropTypes.string.isRequired,
12122
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'] = PropTypes.exact({
12123
+ discriminator: PropTypes.oneOf(['fra']).isRequired,
12124
+ swift_code: PropTypes.string.isRequired,
12125
+ iban: PropTypes.string.isRequired,
12032
12126
  });
12033
12127
 
12034
- T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([T['io.flow.billing.bank.account.v0.models.bank_account_info_usa']]);
12035
-
12036
- T['io.flow.billing.v0.models.bank_account_form'] = PropTypes.exact({
12037
- info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
12128
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'] = PropTypes.exact({
12129
+ discriminator: PropTypes.oneOf(['gbr']).isRequired,
12130
+ swift_code: PropTypes.string.isRequired,
12131
+ iban: PropTypes.string.isRequired,
12038
12132
  });
12039
12133
 
12040
- T['io.flow.internal.v0.models.file_metadata_counts'] = PropTypes.exact({
12041
- transactions: PropTypes.number.isRequired,
12042
- statements: PropTypes.number.isRequired,
12134
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_can'] = PropTypes.exact({
12135
+ discriminator: PropTypes.oneOf(['can']).isRequired,
12136
+ routing_number: PropTypes.string.isRequired,
12137
+ account_number: PropTypes.string.isRequired,
12043
12138
  });
12044
12139
 
12045
- T['io.flow.internal.v0.models.file_confirmation'] = PropTypes.exact({
12046
- counts: T['io.flow.internal.v0.models.file_metadata_counts'].isRequired,
12140
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'] = PropTypes.exact({
12141
+ discriminator: PropTypes.oneOf(['usa']).isRequired,
12142
+ routing_number: PropTypes.string.isRequired,
12143
+ account_number: PropTypes.string.isRequired,
12047
12144
  });
12048
12145
 
12049
- T['io.flow.internal.v0.models.file_metadata'] = PropTypes.exact({
12050
- counts: T['io.flow.internal.v0.models.file_metadata_counts'].isRequired,
12146
+ T['io.flow.internal.v0.models.finance_bank_account_owner'] = PropTypes.exact({
12147
+ name: PropTypes.string.isRequired,
12051
12148
  });
12052
12149
 
12053
- T['io.flow.internal.v0.models.stream_reference'] = PropTypes.exact({
12054
- id: PropTypes.string.isRequired,
12055
- });
12150
+ T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([
12151
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'],
12152
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_can'],
12153
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'],
12154
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
12155
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
12156
+ ]);
12056
12157
 
12057
- T['io.flow.internal.v0.models.file'] = PropTypes.exact({
12058
- id: PropTypes.string.isRequired,
12059
- stream: T['io.flow.internal.v0.models.stream_reference'].isRequired,
12060
- url: PropTypes.string.isRequired,
12061
- created_at: PropTypes.string.isRequired,
12062
- metadata: T['io.flow.internal.v0.models.file_metadata'].isRequired,
12063
- confirmation: T['io.flow.internal.v0.models.file_confirmation'],
12158
+ T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
12159
+ discriminator: PropTypes.oneOf(['info']).isRequired,
12160
+ info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
12064
12161
  });
12065
12162
 
12163
+ T['io.flow.billing.v0.unions.bank_account_form'] = PropTypes.oneOfType([
12164
+ T['io.flow.billing.v0.models.bank_account_form_info'],
12165
+ T['io.flow.billing.v0.models.bank_account_form_simple'],
12166
+ ]);
12167
+
12066
12168
  T['io.flow.internal.v0.enums.marketing_gateway_feed_state'] = PropTypes.oneOf(['initialized', 'generated', 'in_review', 'rejected', 'active']);
12067
12169
 
12068
12170
  T['io.flow.internal.v0.models.marketing_gateway_feed_source_facebook'] = PropTypes.exact({
@@ -12999,8 +13101,7 @@ T['io.flow.internal.v0.models.debug_payment_transaction_summary'] = PropTypes.ex
12999
13101
  type: PropTypes.string.isRequired,
13000
13102
  processing_transaction_id: PropTypes.string,
13001
13103
  queue_errors: PropTypes.arrayOf(PropTypes.string),
13002
- processing_transaction_ignore_reason: PropTypes.string,
13003
- channel_transaction_ignore_reason: PropTypes.string,
13104
+ ignore_reason: PropTypes.string,
13004
13105
  });
13005
13106
 
13006
13107
  T['io.flow.internal.v0.models.debug_label'] = PropTypes.exact({
@@ -13017,6 +13118,85 @@ T['io.flow.internal.v0.models.debug_details'] = PropTypes.exact({
13017
13118
  refunds: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_payment_transaction_summary']).isRequired,
13018
13119
  });
13019
13120
 
13121
+ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
13122
+ 'adjustment_transactions_count',
13123
+ 'adjustment_transactions_total',
13124
+ 'capture_transactions_count',
13125
+ 'capture_transactions_total',
13126
+ 'channel_transactions_count',
13127
+ 'channel_transactions_total',
13128
+ 'channel_billed_transactions_count',
13129
+ 'channel_billed_transactions_total',
13130
+ 'credit_payment_transactions_count',
13131
+ 'credit_payment_transactions_total',
13132
+ 'duty_transactions_count',
13133
+ 'duty_transactions_total',
13134
+ 'fully_subsidized_order_transactions_count',
13135
+ 'fully_subsidized_order_transactions_total',
13136
+ 'billable_label_transactions_count',
13137
+ 'billable_label_transactions_total',
13138
+ 'revenue_share_label_transactions_count',
13139
+ 'revenue_share_label_transactions_total',
13140
+ 'manual_transactions_count',
13141
+ 'manual_transactions_total',
13142
+ 'order_transactions_count',
13143
+ 'order_transactions_total',
13144
+ 'refund_transactions_count',
13145
+ 'refund_transactions_total',
13146
+ 'reversal_order_cancellations_transactions_count',
13147
+ 'reversal_order_cancellations_transactions_total',
13148
+ 'reversal_external_fulfillment_transactions_count',
13149
+ 'reversal_external_fulfillment_transactions_total',
13150
+ 'tax_transactions_count',
13151
+ 'tax_transactions_total',
13152
+ 'transfer_transactions_count',
13153
+ 'transfer_transactions_total',
13154
+ 'fulfillments_count',
13155
+ 'fulfillments_total',
13156
+ 'shipping_notifications_count',
13157
+ 'queued_capture_unprocessed_count',
13158
+ 'queued_capture_deletion_unprocessed_count',
13159
+ 'queued_channel_transaction_unprocessed_count',
13160
+ 'queued_channel_organization_unprocessed_count',
13161
+ 'queued_consumer_invoice_unprocessed_count',
13162
+ 'queued_label_tracking_summary_unprocessed_count',
13163
+ 'queued_order_unprocessed_count',
13164
+ 'queued_order_identifier_unprocessed_count',
13165
+ 'queued_refund_unprocessed_count',
13166
+ 'queued_refund_deletion_unprocessed_count',
13167
+ 'queued_statement_batch_unprocessed_count',
13168
+ 'queued_statement_batch_email_unprocessed_count',
13169
+ 'queued_statement_email_unprocessed_count',
13170
+ 'queued_statement_summary_email_unprocessed_count',
13171
+ 'shipping_notifications_total',
13172
+ 'statements_no_payout_count',
13173
+ 'statements_no_payout_total',
13174
+ 'statements_pending_payout_count',
13175
+ 'statements_pending_payout_total',
13176
+ 'payouts_scheduled_count',
13177
+ 'payouts_scheduled_total',
13178
+ 'payouts_sent_count',
13179
+ 'payouts_sent_total',
13180
+ 'payouts_failed_count',
13181
+ 'payouts_failed_total',
13182
+ 'pending_payouts_max_age',
13183
+ 'average_payout_amount',
13184
+ ]);
13185
+
13186
+ T['io.flow.internal.v0.models.daily_value'] = PropTypes.exact({
13187
+ id: PropTypes.string.isRequired,
13188
+ key: T['io.flow.internal.v0.enums.billing_metric_key'].isRequired,
13189
+ value: PropTypes.number.isRequired,
13190
+ date: PropTypes.string.isRequired,
13191
+ });
13192
+
13193
+ T['io.flow.internal.v0.models.daily_value_upserted'] = PropTypes.exact({
13194
+ discriminator: PropTypes.oneOf(['daily_value_upserted']).isRequired,
13195
+ event_id: PropTypes.string.isRequired,
13196
+ timestamp: PropTypes.string.isRequired,
13197
+ daily_value: T['io.flow.internal.v0.models.daily_value'].isRequired,
13198
+ });
13199
+
13020
13200
  T['io.flow.internal.v0.models.daily_experiment_results'] = PropTypes.exact({
13021
13201
  id: PropTypes.string.isRequired,
13022
13202
  day: PropTypes.string.isRequired,
@@ -14598,33 +14778,6 @@ T['io.flow.payment.gateway.v0.models.payment_payment_method'] = PropTypes.exact(
14598
14778
  possible_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
14599
14779
  });
14600
14780
 
14601
- T['io.flow.payment.gateway.v0.models.payment_request'] = PropTypes.exact({
14602
- id: PropTypes.string.isRequired,
14603
- status: T['io.flow.payment.gateway.v0.enums.payment_status'].isRequired,
14604
- created_at: PropTypes.string.isRequired,
14605
- updated_at: PropTypes.string.isRequired,
14606
- available_payment_methods: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_payment_method']).isRequired,
14607
- last_payment_failure: T['io.flow.payment.gateway.v0.models.payment_failure'],
14608
- next_action: T['io.flow.payment.gateway.v0.unions.action'],
14609
- amount: PropTypes.number.isRequired,
14610
- currency: PropTypes.string.isRequired,
14611
- order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
14612
- device_details: T['io.flow.payment.gateway.v0.unions.device_details'].isRequired,
14613
- locale: PropTypes.string,
14614
- return_url: PropTypes.string.isRequired,
14615
- attributes: PropTypes.objectOf(PropTypes.string),
14616
- reference: PropTypes.string,
14617
- payment_information: T['io.flow.payment.gateway.v0.models.payment_information'].isRequired,
14618
- supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
14619
- payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
14620
- review: T['io.flow.payment.gateway.v0.models.payment_request_review'],
14621
- });
14622
-
14623
- T['io.flow.internal.v0.models.internal_payment_request'] = PropTypes.exact({
14624
- payment_request: T['io.flow.payment.gateway.v0.models.payment_request'].isRequired,
14625
- actual_action: T['io.flow.payment.gateway.v0.unions.action'],
14626
- });
14627
-
14628
14781
  T['io.flow.reference.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'online', 'offline']);
14629
14782
 
14630
14783
  T['io.flow.reference.v0.models.payment_method'] = PropTypes.exact({
@@ -16189,6 +16342,49 @@ T['io.flow.experience.v0.enums.order_error_code'] = PropTypes.oneOf([
16189
16342
  'total_changed',
16190
16343
  ]);
16191
16344
 
16345
+ T['io.flow.payment.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.device_details_browser']]);
16346
+
16347
+ T['io.flow.payment.gateway.v0.models.payment_request_form'] = PropTypes.exact({
16348
+ amount: PropTypes.number.isRequired,
16349
+ currency: PropTypes.string.isRequired,
16350
+ order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
16351
+ device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
16352
+ locale: PropTypes.string,
16353
+ return_url: PropTypes.string.isRequired,
16354
+ attributes: PropTypes.objectOf(PropTypes.string),
16355
+ reference: PropTypes.string,
16356
+ payment_method_data: T['io.flow.payment.gateway.v0.unions.payment_method_data'],
16357
+ supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']),
16358
+ payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
16359
+ });
16360
+
16361
+ T['io.flow.payment.gateway.v0.models.payment_request'] = PropTypes.exact({
16362
+ id: PropTypes.string.isRequired,
16363
+ status: T['io.flow.payment.gateway.v0.enums.payment_status'].isRequired,
16364
+ created_at: PropTypes.string.isRequired,
16365
+ updated_at: PropTypes.string.isRequired,
16366
+ available_payment_methods: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_payment_method']).isRequired,
16367
+ last_payment_failure: T['io.flow.payment.gateway.v0.models.payment_failure'],
16368
+ next_action: T['io.flow.payment.gateway.v0.unions.action'],
16369
+ amount: PropTypes.number.isRequired,
16370
+ currency: PropTypes.string.isRequired,
16371
+ order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
16372
+ device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
16373
+ locale: PropTypes.string,
16374
+ return_url: PropTypes.string.isRequired,
16375
+ attributes: PropTypes.objectOf(PropTypes.string),
16376
+ reference: PropTypes.string,
16377
+ payment_information: T['io.flow.payment.gateway.v0.models.payment_information'].isRequired,
16378
+ supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
16379
+ payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
16380
+ review: T['io.flow.payment.gateway.v0.models.payment_request_review'],
16381
+ });
16382
+
16383
+ T['io.flow.internal.v0.models.internal_payment_request'] = PropTypes.exact({
16384
+ payment_request: T['io.flow.payment.gateway.v0.models.payment_request'].isRequired,
16385
+ actual_action: T['io.flow.payment.gateway.v0.unions.action'],
16386
+ });
16387
+
16192
16388
  T['io.flow.experience.v0.models.order_geo'] = PropTypes.exact({
16193
16389
  ip: PropTypes.string,
16194
16390
  country: PropTypes.string.isRequired,
@@ -18855,42 +19051,6 @@ T['io.flow.internal.v0.models.bitpay_authentication'] = PropTypes.exact({
18855
19051
  secret_key_reference: PropTypes.string.isRequired,
18856
19052
  });
18857
19053
 
18858
- T['io.flow.internal.v0.models.billing_statement_reference'] = PropTypes.exact({
18859
- id: PropTypes.string.isRequired,
18860
- });
18861
-
18862
- T['io.flow.internal.v0.models.pending_bank_payment_detail'] = PropTypes.exact({
18863
- transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
18864
- statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
18865
- });
18866
-
18867
- T['io.flow.internal.v0.models.explicit_statement'] = PropTypes.exact({
18868
- id: PropTypes.string.isRequired,
18869
- statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
18870
- reason: PropTypes.string.isRequired,
18871
- });
18872
-
18873
- T['io.flow.internal.v0.models.billing_statement_batch_reference'] = PropTypes.exact({
18874
- id: PropTypes.string.isRequired,
18875
- });
18876
-
18877
- T['io.flow.internal.v0.models.billing_statement_batch_statement'] = PropTypes.exact({
18878
- id: PropTypes.string.isRequired,
18879
- batch: T['io.flow.internal.v0.models.billing_statement_batch_reference'].isRequired,
18880
- statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
18881
- });
18882
-
18883
- T['io.flow.internal.v0.models.billing_statement_batch_statement_upserted'] = PropTypes.exact({
18884
- discriminator: PropTypes.oneOf(['billing_statement_batch_statement_upserted']).isRequired,
18885
- event_id: PropTypes.string.isRequired,
18886
- timestamp: PropTypes.string.isRequired,
18887
- billing_statement_batch_statement: T['io.flow.internal.v0.models.billing_statement_batch_statement'].isRequired,
18888
- });
18889
-
18890
- T['io.flow.internal.v0.models.billing_statement_batch_reconciliation'] = PropTypes.exact({
18891
- month: PropTypes.string.isRequired,
18892
- });
18893
-
18894
19054
  T['io.flow.common.v0.models.datetime_range'] = PropTypes.exact({
18895
19055
  from: PropTypes.string.isRequired,
18896
19056
  to: PropTypes.string.isRequired,
@@ -19022,9 +19182,44 @@ T['io.flow.internal.v0.models.checkout_order_deliveries'] = PropTypes.exact({
19022
19182
  all: PropTypes.arrayOf(T['io.flow.internal.v0.models.checkout_order_delivery']).isRequired,
19023
19183
  });
19024
19184
 
19185
+ T['io.flow.internal.v0.models.billing_statement_reference'] = PropTypes.exact({
19186
+ id: PropTypes.string.isRequired,
19187
+ });
19188
+
19189
+ T['io.flow.internal.v0.models.pending_bank_payment_detail'] = PropTypes.exact({
19190
+ transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
19191
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
19192
+ });
19193
+
19194
+ T['io.flow.internal.v0.models.explicit_statement'] = PropTypes.exact({
19195
+ id: PropTypes.string.isRequired,
19196
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
19197
+ reason: PropTypes.string.isRequired,
19198
+ });
19199
+
19200
+ T['io.flow.internal.v0.models.billing_statement_batch_reference'] = PropTypes.exact({
19201
+ id: PropTypes.string.isRequired,
19202
+ });
19203
+
19204
+ T['io.flow.internal.v0.models.billing_statement_batch_statement'] = PropTypes.exact({
19205
+ id: PropTypes.string.isRequired,
19206
+ batch: T['io.flow.internal.v0.models.billing_statement_batch_reference'].isRequired,
19207
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
19208
+ });
19209
+
19210
+ T['io.flow.internal.v0.models.billing_statement_batch_statement_upserted'] = PropTypes.exact({
19211
+ discriminator: PropTypes.oneOf(['billing_statement_batch_statement_upserted']).isRequired,
19212
+ event_id: PropTypes.string.isRequired,
19213
+ timestamp: PropTypes.string.isRequired,
19214
+ billing_statement_batch_statement: T['io.flow.internal.v0.models.billing_statement_batch_statement'].isRequired,
19215
+ });
19216
+
19217
+ T['io.flow.internal.v0.models.billing_statement_batch_reconciliation'] = PropTypes.exact({
19218
+ month: PropTypes.string.isRequired,
19219
+ });
19220
+
19025
19221
  T['io.flow.internal.v0.models.billing_statement_batch'] = PropTypes.exact({
19026
19222
  id: PropTypes.string.isRequired,
19027
- period: T['io.flow.common.v0.models.datetime_range'].isRequired,
19028
19223
  reconciliation: T['io.flow.internal.v0.models.billing_statement_batch_reconciliation'].isRequired,
19029
19224
  });
19030
19225
 
@@ -19052,6 +19247,21 @@ T['io.flow.internal.v0.enums.billing_statement_attachment_key'] = PropTypes.oneO
19052
19247
  'all',
19053
19248
  ]);
19054
19249
 
19250
+ T['io.flow.internal.v0.models.standalone_attachment'] = PropTypes.exact({
19251
+ id: PropTypes.string.isRequired,
19252
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
19253
+ key: T['io.flow.internal.v0.enums.billing_statement_attachment_key'].isRequired,
19254
+ name: PropTypes.string.isRequired,
19255
+ url: PropTypes.string.isRequired,
19256
+ });
19257
+
19258
+ T['io.flow.internal.v0.models.standalone_attachment_upserted'] = PropTypes.exact({
19259
+ discriminator: PropTypes.oneOf(['standalone_attachment_upserted']).isRequired,
19260
+ event_id: PropTypes.string.isRequired,
19261
+ timestamp: PropTypes.string.isRequired,
19262
+ attachment: T['io.flow.internal.v0.models.standalone_attachment'].isRequired,
19263
+ });
19264
+
19055
19265
  T['io.flow.internal.v0.models.billing_statement_attachment'] = PropTypes.exact({
19056
19266
  key: T['io.flow.internal.v0.enums.billing_statement_attachment_key'].isRequired,
19057
19267
  name: PropTypes.string.isRequired,
@@ -19090,7 +19300,7 @@ T['io.flow.internal.v0.models.billing_order_summary'] = PropTypes.exact({
19090
19300
  destination: T['io.flow.internal.v0.models.billing_order_destination'],
19091
19301
  });
19092
19302
 
19093
- T['io.flow.billing.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'could_not_process']);
19303
+ T['io.flow.billing.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'account_closed', 'could_not_process']);
19094
19304
  T['io.flow.internal.v0.enums.bank_payment_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
19095
19305
 
19096
19306
  T['io.flow.internal.v0.models.bank_payment_status_form'] = PropTypes.exact({
@@ -22732,17 +22942,6 @@ T['io.flow.export.v0.models.export_version'] = PropTypes.exact({
22732
22942
  'export': T['io.flow.export.v0.models.export'].isRequired,
22733
22943
  });
22734
22944
 
22735
- T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'] = PropTypes.exact({
22736
- id: PropTypes.string.isRequired,
22737
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
22738
-
22739
- transitions: PropTypes.arrayOf(
22740
- T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'],
22741
- ).isRequired,
22742
-
22743
- current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
22744
- });
22745
-
22746
22945
  T['io.flow.internal.v0.models.store_connection'] = PropTypes.exact({
22747
22946
  organization: T['io.flow.common.v0.models.organization_reference'],
22748
22947
  id: PropTypes.string.isRequired,
@@ -22825,6 +23024,25 @@ T['io.flow.internal.v0.models.ratecard_service_fees_override'] = PropTypes.exact
22825
23024
  service_fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
22826
23025
  });
22827
23026
 
23027
+ T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'] = PropTypes.exact({
23028
+ id: PropTypes.string.isRequired,
23029
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
23030
+
23031
+ transitions: PropTypes.arrayOf(
23032
+ T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'],
23033
+ ).isRequired,
23034
+
23035
+ current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
23036
+ started_at: PropTypes.string,
23037
+ time_blocked: PropTypes.number,
23038
+ blocked_since: PropTypes.string,
23039
+ completed_at: PropTypes.string,
23040
+ });
23041
+
23042
+ T['io.flow.internal.v0.models.organization_onboarding_state_adjustment_result'] = PropTypes.exact({
23043
+ organization_onboarding_state: T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'],
23044
+ });
23045
+
22828
23046
  T['io.flow.internal.v0.models.organization_boolean_value'] = PropTypes.exact({
22829
23047
  id: PropTypes.string.isRequired,
22830
23048
  organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
@@ -24427,6 +24645,7 @@ T['io.flow.experience.v0.models.order'] = PropTypes.exact({
24427
24645
  rules: T['io.flow.experience.v0.models.order_rules_summary'],
24428
24646
  tax_registration: T['io.flow.harmonization.v0.models.tax_registration'],
24429
24647
  geo: T['io.flow.experience.v0.models.order_geo'],
24648
+ device_details: T['io.flow.payment.v0.unions.device_details'],
24430
24649
  });
24431
24650
 
24432
24651
  T['io.flow.shopify.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
@@ -25643,6 +25862,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
25643
25862
  T['io.flow.internal.v0.models.tax_transaction_deleted'],
25644
25863
  T['io.flow.internal.v0.models.duty_transaction_upserted'],
25645
25864
  T['io.flow.internal.v0.models.duty_transaction_deleted'],
25865
+ T['io.flow.internal.v0.models.daily_value_upserted'],
25866
+ T['io.flow.internal.v0.models.daily_value_deleted'],
25646
25867
  T['io.flow.internal.v0.models.calculator_organization_settings_upserted'],
25647
25868
  T['io.flow.internal.v0.models.calculator_organization_settings_deleted'],
25648
25869
  T['io.flow.internal.v0.models.carrier_account_upserted_v2'],
@@ -25729,6 +25950,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
25729
25950
  T['io.flow.internal.v0.models.billing_statement_batch_deleted'],
25730
25951
  T['io.flow.internal.v0.models.billing_statement_batch_statement_upserted'],
25731
25952
  T['io.flow.internal.v0.models.billing_statement_batch_statement_deleted'],
25953
+ T['io.flow.internal.v0.models.standalone_attachment_upserted'],
25954
+ T['io.flow.internal.v0.models.standalone_attachment_deleted'],
25732
25955
  T['io.flow.internal.v0.models.platform_fee_change_upserted'],
25733
25956
  T['io.flow.internal.v0.models.platform_fee_change_deleted'],
25734
25957
  T['io.flow.internal.v0.models.organization_bank_account_upserted'],
@@ -26063,6 +26286,14 @@ T['io.flow.internal.v0.models.lab_project_settings'] = PropTypes.exact({
26063
26286
  T['io.flow.internal.v0.enums.any_dangerous_goods'] = PropTypes.oneOf(['yes', 'no', 'i_dont_know']);
26064
26287
  T['io.flow.internal.v0.enums.api_call_reference_id'] = PropTypes.oneOf(['duty_rates_data_event', 'integration_test', 'unit_test']);
26065
26288
 
26289
+ T['io.flow.internal.v0.enums.auto_restrict_rule'] = PropTypes.oneOf([
26290
+ 'prr-3ce7d556f2464314ab0a3e8eee33e0ce',
26291
+ 'prr-599c6246a1a24752aeb85e8f79030781',
26292
+ 'prr-79e41878ea564f9c81cc432a0e84703f',
26293
+ 'prr-f29c26dc09e04536bc77f9c32786ed70',
26294
+ 'prr-0522d426a5b741c791ba05496c35297a',
26295
+ ]);
26296
+
26066
26297
  T['io.flow.internal.v0.enums.billing_allocation_key'] = PropTypes.oneOf([
26067
26298
  'freight_cost',
26068
26299
  'adjustment',
@@ -26164,6 +26395,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
26164
26395
  'tax_transaction_deleted',
26165
26396
  'duty_transaction_upserted',
26166
26397
  'duty_transaction_deleted',
26398
+ 'daily_value_upserted',
26399
+ 'daily_value_deleted',
26167
26400
  'calculator_organization_settings_upserted',
26168
26401
  'calculator_organization_settings_deleted',
26169
26402
  'carrier_account_upserted_v2',
@@ -26250,6 +26483,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
26250
26483
  'billing_statement_batch_deleted',
26251
26484
  'billing_statement_batch_statement_upserted',
26252
26485
  'billing_statement_batch_statement_deleted',
26486
+ 'standalone_attachment_upserted',
26487
+ 'standalone_attachment_deleted',
26253
26488
  'platform_fee_change_upserted',
26254
26489
  'platform_fee_change_deleted',
26255
26490
  'organization_bank_account_upserted',
@@ -26433,6 +26668,7 @@ T['io.flow.internal.v0.enums.onboarding_state_source'] = PropTypes.oneOf([
26433
26668
  'api_internal',
26434
26669
  'api_internal_block',
26435
26670
  'api_internal_unblock',
26671
+ 'api_internal_delete_transaction',
26436
26672
  'onboarding_application',
26437
26673
  'organization_state_change',
26438
26674
  'restriction_organization_status',
@@ -26440,6 +26676,7 @@ T['io.flow.internal.v0.enums.onboarding_state_source'] = PropTypes.oneOf([
26440
26676
 
26441
26677
  T['io.flow.internal.v0.enums.order_lifecycle_event'] = PropTypes.oneOf(['order_placed', 'ready_to_fulfill']);
26442
26678
  T['io.flow.internal.v0.enums.order_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'order_service']);
26679
+ T['io.flow.internal.v0.enums.organization_metric_type'] = PropTypes.oneOf(['organization_restriction_snapshot', 'organization_restriction_status']);
26443
26680
  T['io.flow.internal.v0.enums.output_style'] = PropTypes.oneOf(['flow', 'shopify_p1']);
26444
26681
  T['io.flow.internal.v0.enums.preferred_billing_schedule'] = PropTypes.oneOf(['monthly', 'bi-monthly']);
26445
26682
 
@@ -26461,7 +26698,27 @@ T['io.flow.internal.v0.enums.processing_transaction_type'] = PropTypes.oneOf([
26461
26698
  'credit_payment',
26462
26699
  ]);
26463
26700
 
26701
+ T['io.flow.internal.v0.enums.product_status'] = PropTypes.oneOf(['active', 'archived', 'draft']);
26464
26702
  T['io.flow.internal.v0.enums.prompt_action'] = PropTypes.oneOf(['prompt_displayed', 'consent_granted', 'consent_denied']);
26703
+
26704
+ T['io.flow.internal.v0.enums.queued_record_type'] = PropTypes.oneOf([
26705
+ 'capture',
26706
+ 'capture_deletion',
26707
+ 'channel_transaction',
26708
+ 'channel_organization',
26709
+ 'consumer_invoice',
26710
+ 'label_tracking_summary',
26711
+ 'order',
26712
+ 'order_identifier',
26713
+ 'refund',
26714
+ 'refund_deletion',
26715
+ 'statement_batch',
26716
+ 'statement_batch_email',
26717
+ 'statement_email',
26718
+ 'statement_summary_email',
26719
+ 'wash',
26720
+ ]);
26721
+
26465
26722
  T['io.flow.internal.v0.enums.report_interval'] = PropTypes.oneOf(['hourly', 'daily', 'weekly', 'monthly']);
26466
26723
  T['io.flow.internal.v0.enums.risk_check'] = PropTypes.oneOf(['three_d_secure']);
26467
26724
  T['io.flow.internal.v0.enums.serial_reservation_error'] = PropTypes.oneOf(['duration_too_long', 'items_not_found', 'reservation_expired']);
@@ -26697,6 +26954,15 @@ T['io.flow.internal.v0.models.classification_requeue_request'] = PropTypes.exact
26697
26954
  message: PropTypes.string.isRequired,
26698
26955
  });
26699
26956
 
26957
+ T['io.flow.internal.v0.models.classification_summary_report_payload'] = PropTypes.exact({
26958
+ organization_id: PropTypes.string,
26959
+ product_id: PropTypes.string,
26960
+ date_from: PropTypes.string,
26961
+ date_to: PropTypes.string,
26962
+ email: PropTypes.string.isRequired,
26963
+ limit: PropTypes.number.isRequired,
26964
+ });
26965
+
26700
26966
  T['io.flow.internal.v0.models.commercial_invoice_comparison'] = PropTypes.exact({
26701
26967
  urls: PropTypes.arrayOf(PropTypes.string).isRequired,
26702
26968
  });
@@ -26751,6 +27017,10 @@ T['io.flow.internal.v0.models.decrypted_cipher'] = PropTypes.exact({
26751
27017
  attributes: PropTypes.objectOf(PropTypes.string).isRequired,
26752
27018
  });
26753
27019
 
27020
+ T['io.flow.internal.v0.models.delete_transitions_put_form'] = PropTypes.exact({
27021
+ transition_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
27022
+ });
27023
+
26754
27024
  T['io.flow.internal.v0.models.discount'] = PropTypes.exact({
26755
27025
  amount: PropTypes.number.isRequired,
26756
27026
  description: PropTypes.string,
@@ -26808,11 +27078,6 @@ T['io.flow.internal.v0.models.feature_release_form'] = PropTypes.exact({
26808
27078
  released_at: PropTypes.string,
26809
27079
  });
26810
27080
 
26811
- T['io.flow.internal.v0.models.file_confirmation_form'] = PropTypes.exact({
26812
- count_transactions: PropTypes.number.isRequired,
26813
- count_statements: PropTypes.number.isRequired,
26814
- });
26815
-
26816
27081
  T['io.flow.internal.v0.models.financial_merchant_category'] = PropTypes.exact({
26817
27082
  id: PropTypes.string.isRequired,
26818
27083
  iso_18245_4: PropTypes.string.isRequired,
@@ -27050,6 +27315,11 @@ T['io.flow.internal.v0.models.organization_membership_copy_form'] = PropTypes.ex
27050
27315
  to: PropTypes.string.isRequired,
27051
27316
  });
27052
27317
 
27318
+ T['io.flow.internal.v0.models.organization_onboarding_state_audit_result'] = PropTypes.exact({
27319
+ organization: PropTypes.string.isRequired,
27320
+ validation_errors: PropTypes.arrayOf(PropTypes.string).isRequired,
27321
+ });
27322
+
27053
27323
  T['io.flow.internal.v0.models.partner_organization_authorization_form'] = PropTypes.exact({
27054
27324
  partner: PropTypes.string.isRequired,
27055
27325
  });
@@ -27147,6 +27417,10 @@ T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes
27147
27417
  margin: PropTypes.number.isRequired,
27148
27418
  });
27149
27419
 
27420
+ T['io.flow.internal.v0.models.report_summary'] = PropTypes.exact({
27421
+ task_id: PropTypes.string.isRequired,
27422
+ });
27423
+
27150
27424
  T['io.flow.internal.v0.models.requeue_request_form'] = PropTypes.exact({
27151
27425
  product_ids: PropTypes.arrayOf(PropTypes.string),
27152
27426
  hs6_codes: PropTypes.arrayOf(PropTypes.string),
@@ -27300,6 +27574,13 @@ T['io.flow.internal.v0.models.shopify_promotion_form'] = PropTypes.exact({
27300
27574
  code: PropTypes.string.isRequired,
27301
27575
  });
27302
27576
 
27577
+ T['io.flow.internal.v0.models.shopify_shop_statistics'] = PropTypes.exact({
27578
+ id: PropTypes.string.isRequired,
27579
+ initial_catalog_synced_at: PropTypes.string,
27580
+ catalog_sync_duration: PropTypes.number,
27581
+ catalog_products_count: PropTypes.number,
27582
+ });
27583
+
27303
27584
  T['io.flow.internal.v0.models.shopify_webhook_event'] = PropTypes.exact({
27304
27585
  placeholder: PropTypes.string.isRequired,
27305
27586
  });
@@ -27308,11 +27589,6 @@ T['io.flow.internal.v0.models.store_connection_form'] = PropTypes.exact({
27308
27589
  organization: PropTypes.string.isRequired,
27309
27590
  });
27310
27591
 
27311
- T['io.flow.internal.v0.models.stream'] = PropTypes.exact({
27312
- id: PropTypes.string.isRequired,
27313
- key: PropTypes.string.isRequired,
27314
- });
27315
-
27316
27592
  T['io.flow.internal.v0.models.subcatalog_item_count'] = PropTypes.exact({
27317
27593
  key: PropTypes.string.isRequired,
27318
27594
  count: PropTypes.number.isRequired,
@@ -27723,6 +27999,14 @@ T['io.flow.adyen.v0.models.payment_details'] = PropTypes.exact({
27723
27999
  paymentData: PropTypes.string,
27724
28000
  });
27725
28001
 
28002
+ T['io.flow.adyen.v0.models.payment_details_v66_3ds2_challenge'] = PropTypes.exact({
28003
+ 'threeds2.challengeResult': PropTypes.string.isRequired,
28004
+ });
28005
+
28006
+ T['io.flow.adyen.v0.models.payment_details_v66_3ds2_fingerprint'] = PropTypes.exact({
28007
+ 'threeds2.fingerprint': PropTypes.string.isRequired,
28008
+ });
28009
+
27726
28010
  T['io.flow.adyen.v0.models.request_for_information_additional_data'] = PropTypes.exact({
27727
28011
  rfiSchemeCode: PropTypes.string.isRequired,
27728
28012
  modificationMerchantReferences: PropTypes.string.isRequired,
@@ -28424,6 +28708,7 @@ export const authorizedChargeStatus = T['io.flow.internal.v0.models.authorized_c
28424
28708
  export const authorizedLineItemCharge = T['io.flow.internal.v0.models.authorized_line_item_charge'];
28425
28709
  export const authorizedOrderCharge = T['io.flow.internal.v0.unions.authorized_order_charge'];
28426
28710
  export const authorizedShippingCharge = T['io.flow.internal.v0.models.authorized_shipping_charge'];
28711
+ export const autoRestrictRule = T['io.flow.internal.v0.enums.auto_restrict_rule'];
28427
28712
  export const backfill = T['io.flow.internal.v0.models.backfill'];
28428
28713
  export const backfillForm = T['io.flow.internal.v0.models.backfill_form'];
28429
28714
  export const bankAccountReference = T['io.flow.internal.v0.models.bank_account_reference'];
@@ -28440,6 +28725,7 @@ export const billingAuthorizationReference = T['io.flow.internal.v0.models.billi
28440
28725
  export const billingInvoiceSummary = T['io.flow.internal.v0.models.billing_invoice_summary'];
28441
28726
  export const billingLabelSummary = T['io.flow.internal.v0.models.billing_label_summary'];
28442
28727
  export const billingLabelTrackingSummaryReference = T['io.flow.internal.v0.models.billing_label_tracking_summary_reference'];
28728
+ export const billingMetricKey = T['io.flow.internal.v0.enums.billing_metric_key'];
28443
28729
  export const billingOrderDestination = T['io.flow.internal.v0.models.billing_order_destination'];
28444
28730
  export const billingOrderSummary = T['io.flow.internal.v0.models.billing_order_summary'];
28445
28731
  export const billingOrderTransactionOrderReference = T['io.flow.internal.v0.models.billing_order_transaction_order_reference'];
@@ -29151,6 +29437,7 @@ export const classificationProductSummaryPage = T['io.flow.internal.v0.models.cl
29151
29437
  export const classificationRequeueRequest = T['io.flow.internal.v0.models.classification_requeue_request'];
29152
29438
  export const classificationResponse = T['io.flow.internal.v0.unions.classification_response'];
29153
29439
  export const classificationStatistics = T['io.flow.internal.v0.models.classification_statistics'];
29440
+ export const classificationSummaryReportPayload = T['io.flow.internal.v0.models.classification_summary_report_payload'];
29154
29441
  export const classificationTaxonomy = T['io.flow.internal.v0.unions.classification_taxonomy'];
29155
29442
  export const classificationWrapper = T['io.flow.internal.v0.models.classification_wrapper'];
29156
29443
  export const classifiedProduct = T['io.flow.internal.v0.models.classified_product'];
@@ -29219,6 +29506,9 @@ export const dailyExperimentEngineResults = T['io.flow.internal.v0.models.daily_
29219
29506
  export const dailyExperimentResults = T['io.flow.internal.v0.models.daily_experiment_results'];
29220
29507
  export const dailyExperimentResultsDeleted = T['io.flow.internal.v0.models.daily_experiment_results_deleted'];
29221
29508
  export const dailyExperimentResultsUpserted = T['io.flow.internal.v0.models.daily_experiment_results_upserted'];
29509
+ export const dailyValue = T['io.flow.internal.v0.models.daily_value'];
29510
+ export const dailyValueDeleted = T['io.flow.internal.v0.models.daily_value_deleted'];
29511
+ export const dailyValueUpserted = T['io.flow.internal.v0.models.daily_value_upserted'];
29222
29512
  export const debugDetails = T['io.flow.internal.v0.models.debug_details'];
29223
29513
  export const debugLabel = T['io.flow.internal.v0.models.debug_label'];
29224
29514
  export const debugLabelTransactionSummary = T['io.flow.internal.v0.models.debug_label_transaction_summary'];
@@ -29239,6 +29529,7 @@ export const declineReasonFraud = T['io.flow.internal.v0.models.decline_reason_f
29239
29529
  export const decryptCipherForm = T['io.flow.internal.v0.models.decrypt_cipher_form'];
29240
29530
  export const decryptedCipher = T['io.flow.internal.v0.models.decrypted_cipher'];
29241
29531
  export const deleteIndexTask = T['io.flow.internal.v0.models.delete_index_task'];
29532
+ export const deleteTransitionsPutForm = T['io.flow.internal.v0.models.delete_transitions_put_form'];
29242
29533
  export const deliveredDutyOption = T['io.flow.internal.v0.models.delivered_duty_option'];
29243
29534
  export const deliveredDutyOptionMessage = T['io.flow.internal.v0.models.delivered_duty_option_message'];
29244
29535
  export const deliveredDutyOptionMessageType = T['io.flow.internal.v0.enums.delivered_duty_option_message_type'];
@@ -29411,11 +29702,6 @@ export const feedUpserted = T['io.flow.internal.v0.models.feed_upserted'];
29411
29702
  export const feedsExport = T['io.flow.internal.v0.models.feeds_export'];
29412
29703
  export const fees = T['io.flow.internal.v0.models.fees'];
29413
29704
  export const feesSource = T['io.flow.internal.v0.enums.fees_source'];
29414
- export const file = T['io.flow.internal.v0.models.file'];
29415
- export const fileConfirmation = T['io.flow.internal.v0.models.file_confirmation'];
29416
- export const fileConfirmationForm = T['io.flow.internal.v0.models.file_confirmation_form'];
29417
- export const fileMetadata = T['io.flow.internal.v0.models.file_metadata'];
29418
- export const fileMetadataCounts = T['io.flow.internal.v0.models.file_metadata_counts'];
29419
29705
  export const financeBankAccount = T['io.flow.internal.v0.models.finance_bank_account'];
29420
29706
  export const financeBankAccountOwner = T['io.flow.internal.v0.models.finance_bank_account_owner'];
29421
29707
  export const financeBankPayment = T['io.flow.internal.v0.models.finance_bank_payment'];
@@ -29892,6 +30178,9 @@ export const organizationDebugTransaction = T['io.flow.internal.v0.models.organi
29892
30178
  export const organizationInvitationAcceptForm = T['io.flow.internal.v0.models.organization_invitation_accept_form'];
29893
30179
  export const organizationMembershipCopy = T['io.flow.internal.v0.models.organization_membership_copy'];
29894
30180
  export const organizationMembershipCopyForm = T['io.flow.internal.v0.models.organization_membership_copy_form'];
30181
+ export const organizationMetricType = T['io.flow.internal.v0.enums.organization_metric_type'];
30182
+ export const organizationOnboardingStateAdjustmentResult = T['io.flow.internal.v0.models.organization_onboarding_state_adjustment_result'];
30183
+ export const organizationOnboardingStateAuditResult = T['io.flow.internal.v0.models.organization_onboarding_state_audit_result'];
29895
30184
  export const organizationPaymentSetting = T['io.flow.internal.v0.models.organization_payment_setting'];
29896
30185
  export const organizationPaymentSettingDeleted = T['io.flow.internal.v0.models.organization_payment_setting_deleted'];
29897
30186
  export const organizationPaymentSettingForm = T['io.flow.internal.v0.models.organization_payment_setting_form'];
@@ -30022,6 +30311,7 @@ export const productHarmonizationForm = T['io.flow.internal.v0.models.product_ha
30022
30311
  export const productLabels = T['io.flow.internal.v0.models.product_labels'];
30023
30312
  export const productListSettingsForm = T['io.flow.internal.v0.models.product_list_settings_form'];
30024
30313
  export const productReviewHistory = T['io.flow.internal.v0.models.product_review_history'];
30314
+ export const productStatus = T['io.flow.internal.v0.enums.product_status'];
30025
30315
  export const promptAction = T['io.flow.internal.v0.enums.prompt_action'];
30026
30316
  export const promptCheckoutDisplayPosition = T['io.flow.internal.v0.enums.prompt_checkout_display_position'];
30027
30317
  export const promptOptions = T['io.flow.internal.v0.enums.prompt_options'];
@@ -30031,6 +30321,7 @@ export const proofOfPostingExternallyFulfilled = T['io.flow.internal.v0.models.p
30031
30321
  export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_posting_fulfilled'];
30032
30322
  export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
30033
30323
  export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
30324
+ export const queuedRecordType = T['io.flow.internal.v0.enums.queued_record_type'];
30034
30325
  export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
30035
30326
  export const quoteRequestType = T['io.flow.internal.v0.enums.quote_request_type'];
30036
30327
  export const rateAndRuleItem = T['io.flow.internal.v0.models.rate_and_rule_item'];
@@ -30097,6 +30388,8 @@ export const registeredExporterTariffEligibilityData = T['io.flow.internal.v0.mo
30097
30388
  export const registeredExporterTariffEligibilityForm = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_form'];
30098
30389
  export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
30099
30390
  export const reportInterval = T['io.flow.internal.v0.enums.report_interval'];
30391
+ export const reportRuleDecision = T['io.flow.internal.v0.models.report_rule_decision'];
30392
+ export const reportSummary = T['io.flow.internal.v0.models.report_summary'];
30100
30393
  export const reportingScheme = T['io.flow.internal.v0.enums.reporting_scheme'];
30101
30394
  export const requeueRequestForm = T['io.flow.internal.v0.models.requeue_request_form'];
30102
30395
  export const responsibleParty = T['io.flow.internal.v0.enums.responsible_party'];
@@ -30255,6 +30548,7 @@ export const shopifyPromotionRule = T['io.flow.internal.v0.models.shopify_promot
30255
30548
  export const shopifyPromotionStatus = T['io.flow.internal.v0.enums.shopify_promotion_status'];
30256
30549
  export const shopifyService = T['io.flow.internal.v0.enums.shopify_service'];
30257
30550
  export const shopifyShopDeleted = T['io.flow.internal.v0.models.shopify_shop_deleted'];
30551
+ export const shopifyShopStatistics = T['io.flow.internal.v0.models.shopify_shop_statistics'];
30258
30552
  export const shopifyShopUpserted = T['io.flow.internal.v0.models.shopify_shop_upserted'];
30259
30553
  export const shopifyWebhook = T['io.flow.internal.v0.models.shopify_webhook'];
30260
30554
  export const shopifyWebhookEvent = T['io.flow.internal.v0.models.shopify_webhook_event'];
@@ -30282,14 +30576,15 @@ export const spotRateMetadataIdentity = T['io.flow.internal.v0.models.spot_rate_
30282
30576
  export const spotRateMetadataRate = T['io.flow.internal.v0.models.spot_rate_metadata_rate'];
30283
30577
  export const spotRateUpserted = T['io.flow.internal.v0.models.spot_rate_upserted'];
30284
30578
  export const spotRateVersion = T['io.flow.internal.v0.models.spot_rate_version'];
30579
+ export const standaloneAttachment = T['io.flow.internal.v0.models.standalone_attachment'];
30580
+ export const standaloneAttachmentDeleted = T['io.flow.internal.v0.models.standalone_attachment_deleted'];
30581
+ export const standaloneAttachmentUpserted = T['io.flow.internal.v0.models.standalone_attachment_upserted'];
30285
30582
  export const statementStatus = T['io.flow.internal.v0.enums.statement_status'];
30286
30583
  export const statementTransferTransactionLocation = T['io.flow.internal.v0.enums.statement_transfer_transaction_location'];
30287
30584
  export const statisticType = T['io.flow.internal.v0.enums.statistic_type'];
30288
30585
  export const status = T['io.flow.internal.v0.enums.status'];
30289
30586
  export const storeConnection = T['io.flow.internal.v0.models.store_connection'];
30290
30587
  export const storeConnectionForm = T['io.flow.internal.v0.models.store_connection_form'];
30291
- export const stream = T['io.flow.internal.v0.models.stream'];
30292
- export const streamReference = T['io.flow.internal.v0.models.stream_reference'];
30293
30588
  export const stringFeatureDefaultValue = T['io.flow.internal.v0.models.string_feature_default_value'];
30294
30589
  export const stringFeatureRule = T['io.flow.internal.v0.models.string_feature_rule'];
30295
30590
  export const stringFeatureRuleForm = T['io.flow.internal.v0.models.string_feature_rule_form'];
@@ -30436,4 +30731,4 @@ export const washExportRequest = T['io.flow.internal.v0.models.wash_export_reque
30436
30731
  export const wasteElectricalAndElectronicEquipmentComplianceData = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'];
30437
30732
  export const wasteElectricalAndElectronicEquipmentComplianceForm = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'];
30438
30733
  export const webhook = T['io.flow.internal.v0.models.webhook'];
30439
- export const wholeOrderActionForm = T['io.flow.internal.v0.models.whole_order_action_form'];
30734
+ export const wholeOrderActionForm = T['io.flow.internal.v0.models.whole_order_action_form'];