@flowio/api-prop-types 10.16.92 → 10.16.94

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/api.js CHANGED
@@ -590,7 +590,6 @@ T['io.flow.currency.v0.models.rate'] = PropTypes.exact({
590
590
  value: PropTypes.number.isRequired,
591
591
  });
592
592
 
593
- T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
594
593
  T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
595
594
 
596
595
  T['io.flow.fulfillment.v0.models.service_unknown'] = PropTypes.exact({
@@ -2758,6 +2757,17 @@ T['io.flow.shopify.external.v0.enums.weight_unit'] = PropTypes.oneOf(['g', 'kg',
2758
2757
  T['io.flow.shopify.external.v0.enums.inventory_management'] = PropTypes.oneOf(['blank', 'shopify']);
2759
2758
  T['io.flow.shopify.external.v0.enums.fulfillment_service'] = PropTypes.oneOf(['manual', 'gift_card']);
2760
2759
 
2760
+ T['io.flow.shopify.external.v0.models.product_metafield'] = PropTypes.exact({
2761
+ id: PropTypes.number.isRequired,
2762
+ namespace: PropTypes.string.isRequired,
2763
+ key: PropTypes.string.isRequired,
2764
+ value: PropTypes.string.isRequired,
2765
+ created_at: PropTypes.string.isRequired,
2766
+ updated_at: PropTypes.string.isRequired,
2767
+ type: PropTypes.string.isRequired,
2768
+ admin_graphql_api_id: PropTypes.string.isRequired,
2769
+ });
2770
+
2761
2771
  T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
2762
2772
  name: PropTypes.string.isRequired,
2763
2773
  full_name: PropTypes.string.isRequired,
@@ -2943,6 +2953,7 @@ T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
2943
2953
  updated_at: PropTypes.string.isRequired,
2944
2954
  has_variants_that_requires_components: PropTypes.bool,
2945
2955
  category: T['io.flow.product.v0.models.product_taxonomy_category'],
2956
+ metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_metafield']),
2946
2957
  });
2947
2958
 
2948
2959
  T['io.flow.shopify.external.v0.models.response_products'] = PropTypes.exact({
@@ -2954,8 +2965,10 @@ T['io.flow.shopify.external.v0.models.response_product'] = PropTypes.exact({
2954
2965
  });
2955
2966
 
2956
2967
  T['io.flow.shopify.external.v0.models.graphql_metafield'] = PropTypes.exact({
2968
+ id: PropTypes.string.isRequired,
2957
2969
  key: PropTypes.string.isRequired,
2958
2970
  value: PropTypes.string.isRequired,
2971
+ type: PropTypes.string,
2959
2972
  });
2960
2973
 
2961
2974
  T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'] = PropTypes.exact({
@@ -2976,6 +2989,17 @@ T['io.flow.shopify.external.v0.models.graphql_product_image'] = PropTypes.exact(
2976
2989
  altText: PropTypes.string,
2977
2990
  });
2978
2991
 
2992
+ T['io.flow.shopify.external.v0.models.graphql_metaobject_field'] = PropTypes.exact({
2993
+ key: PropTypes.string.isRequired,
2994
+ value: PropTypes.string,
2995
+ });
2996
+
2997
+ T['io.flow.shopify.external.v0.models.graphql_metaobject'] = PropTypes.exact({
2998
+ id: PropTypes.string.isRequired,
2999
+ displayName: PropTypes.string.isRequired,
3000
+ fields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_metaobject_field']).isRequired,
3001
+ });
3002
+
2979
3003
  T['io.flow.shopify.external.v0.enums.graphql_weight_unit'] = PropTypes.oneOf(['GRAMS', 'KILOGRAMS', 'OUNCES', 'POUNDS']);
2980
3004
 
2981
3005
  T['io.flow.shopify.external.v0.models.graphql_weight'] = PropTypes.exact({
@@ -3127,6 +3151,122 @@ T['io.flow.stripe.v0.models.source_klarna_request'] = PropTypes.exact({
3127
3151
  });
3128
3152
 
3129
3153
  T['io.flow.stripe.v0.enums.three_d_secure_support'] = PropTypes.oneOf(['required', 'recommended', 'optional', 'not_supported']);
3154
+
3155
+ T['io.flow.stripe.v0.enums.shopify_payment_stripe_event_type'] = PropTypes.oneOf([
3156
+ 'charge.captured',
3157
+ 'charge.dispute.created',
3158
+ 'charge.dispute.closed',
3159
+ 'charge.dispute.funds_reinstated',
3160
+ 'charge.dispute.funds_withdrawn',
3161
+ 'charge.dispute.updated',
3162
+ 'charge.expired',
3163
+ 'charge.failed',
3164
+ 'charge.pending',
3165
+ 'charge.refund.updated',
3166
+ 'charge.refunded',
3167
+ 'charge.succeeded',
3168
+ 'charge.updated',
3169
+ 'payment_intent.amount_capturable_updated',
3170
+ 'payment_intent.canceled',
3171
+ 'payment_intent.created',
3172
+ 'payment_intent.partially_funded',
3173
+ 'payment_intent.payment_failed',
3174
+ 'payment_intent.processing',
3175
+ 'payment_intent.requires_action',
3176
+ 'payment_intent.succeeded',
3177
+ 'transfer.created',
3178
+ 'transfer.reversed',
3179
+ 'transfer.updated',
3180
+ 'reporting.report_run.succeeded',
3181
+ 'reporting.report_type.updated',
3182
+ 'reporting.report_type.failed',
3183
+ ]);
3184
+
3185
+ T['io.flow.stripe.v0.models.shopify_payment_stripe_event_data'] = PropTypes.exact({
3186
+ object: PropTypes.object,
3187
+ previous_attributes: PropTypes.object,
3188
+ });
3189
+
3190
+ T['io.flow.stripe.v0.models.shopify_payment_stripe_event'] = PropTypes.exact({
3191
+ id: PropTypes.string.isRequired,
3192
+ api_version: PropTypes.string,
3193
+ data: T['io.flow.stripe.v0.models.shopify_payment_stripe_event_data'].isRequired,
3194
+ request: PropTypes.object,
3195
+ type: T['io.flow.stripe.v0.enums.shopify_payment_stripe_event_type'].isRequired,
3196
+ object: PropTypes.string.isRequired,
3197
+ account: PropTypes.string,
3198
+ created: PropTypes.number.isRequired,
3199
+ livemode: PropTypes.bool.isRequired,
3200
+ pending_webhooks: PropTypes.number.isRequired,
3201
+ });
3202
+
3203
+ T['io.flow.stripe.v0.models.report_run_parameters'] = PropTypes.exact({
3204
+ interval_start: PropTypes.number.isRequired,
3205
+ interval_end: PropTypes.number.isRequired,
3206
+ columns: PropTypes.arrayOf(PropTypes.string),
3207
+ payout: PropTypes.string,
3208
+ connected_account: PropTypes.string,
3209
+ reporting_category: PropTypes.string,
3210
+ });
3211
+
3212
+ T['io.flow.stripe.v0.enums.reporting_report_type'] = PropTypes.oneOf([
3213
+ 'ending_balance_reconciliation.itemized.1',
3214
+ 'ending_balance_reconciliation.itemized.2',
3215
+ 'ending_balance_reconciliation.itemized.3',
3216
+ 'ending_balance_reconciliation.itemized.4',
3217
+ 'payout_reconciliation.itemized.5',
3218
+ 'payout_reconciliation.by_id.itemized.1',
3219
+ 'payout_reconciliation.by_id.itemized.2',
3220
+ 'payout_reconciliation.by_id.itemized.3',
3221
+ 'payout_reconciliation.by_id.itemized.4',
3222
+ 'payout_reconciliation.by_id.summary.1',
3223
+ 'ending_balance_reconciliation.summary.1',
3224
+ 'payout_reconciliation.itemized.1',
3225
+ 'payout_reconciliation.itemized.2',
3226
+ 'payout_reconciliation.itemized.3',
3227
+ 'payout_reconciliation.itemized.4',
3228
+ 'payout_reconciliation.summary.1',
3229
+ ]);
3230
+
3231
+ T['io.flow.stripe.v0.models.reporting_report_run_form'] = PropTypes.exact({
3232
+ report_type: T['io.flow.stripe.v0.enums.reporting_report_type'].isRequired,
3233
+ parameters: T['io.flow.stripe.v0.models.report_run_parameters'].isRequired,
3234
+ });
3235
+
3236
+ T['io.flow.stripe.v0.models.reporting_report_run_result'] = PropTypes.exact({
3237
+ id: PropTypes.string.isRequired,
3238
+ object: PropTypes.string.isRequired,
3239
+ created: PropTypes.number.isRequired,
3240
+ expires_at: PropTypes.number.isRequired,
3241
+ filename: PropTypes.string.isRequired,
3242
+ links: PropTypes.object.isRequired,
3243
+ purpose: PropTypes.string.isRequired,
3244
+ size: PropTypes.number.isRequired,
3245
+ title: PropTypes.string.isRequired,
3246
+ type: PropTypes.string.isRequired,
3247
+ url: PropTypes.string.isRequired,
3248
+ });
3249
+
3250
+ T['io.flow.stripe.v0.enums.reporting_report_run_status'] = PropTypes.oneOf(['pending', 'succeeded', 'failed']);
3251
+
3252
+ T['io.flow.stripe.v0.models.reporting_report_run'] = PropTypes.exact({
3253
+ id: PropTypes.string.isRequired,
3254
+ object: PropTypes.string.isRequired,
3255
+ created: PropTypes.number.isRequired,
3256
+ error: PropTypes.string,
3257
+ livemode: PropTypes.bool.isRequired,
3258
+ status: T['io.flow.stripe.v0.enums.reporting_report_run_status'].isRequired,
3259
+ result: T['io.flow.stripe.v0.models.reporting_report_run_result'],
3260
+ succeeded_at: PropTypes.number,
3261
+ });
3262
+
3263
+ T['io.flow.stripe.v0.models.reporting_report_runs'] = PropTypes.exact({
3264
+ object: PropTypes.string.isRequired,
3265
+ data: PropTypes.arrayOf(T['io.flow.stripe.v0.models.reporting_report_run']).isRequired,
3266
+ has_more: PropTypes.bool.isRequired,
3267
+ url: PropTypes.string,
3268
+ });
3269
+
3130
3270
  T['io.flow.stripe.v0.enums.refund_reason'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
3131
3271
 
3132
3272
  T['io.flow.stripe.v0.enums.refund_failure_reason'] = PropTypes.oneOf([
@@ -4947,6 +5087,14 @@ T['io.flow.v0.models.payment_request_deleted'] = PropTypes.exact({
4947
5087
  id: PropTypes.string.isRequired,
4948
5088
  });
4949
5089
 
5090
+ T['io.flow.v0.models.authorization_retry_deleted'] = PropTypes.exact({
5091
+ discriminator: PropTypes.oneOf(['authorization_retry_deleted']).isRequired,
5092
+ event_id: PropTypes.string.isRequired,
5093
+ timestamp: PropTypes.string.isRequired,
5094
+ organization: PropTypes.string.isRequired,
5095
+ id: PropTypes.string.isRequired,
5096
+ });
5097
+
4950
5098
  T['io.flow.v0.models.virtual_card_refund_deleted'] = PropTypes.exact({
4951
5099
  discriminator: PropTypes.oneOf(['virtual_card_refund_deleted']).isRequired,
4952
5100
  event_id: PropTypes.string.isRequired,
@@ -5010,22 +5158,6 @@ T['io.flow.v0.models.organization_upserted'] = PropTypes.exact({
5010
5158
  default_timezone: PropTypes.string,
5011
5159
  });
5012
5160
 
5013
- T['io.flow.v0.models.browse_optin_responses_deleted'] = PropTypes.exact({
5014
- discriminator: PropTypes.oneOf(['browse_optin_responses_deleted']).isRequired,
5015
- event_id: PropTypes.string.isRequired,
5016
- timestamp: PropTypes.string.isRequired,
5017
- organization: PropTypes.string.isRequired,
5018
- id: PropTypes.string.isRequired,
5019
- });
5020
-
5021
- T['io.flow.v0.models.checkout_optin_responses_deleted'] = PropTypes.exact({
5022
- discriminator: PropTypes.oneOf(['checkout_optin_responses_deleted']).isRequired,
5023
- event_id: PropTypes.string.isRequired,
5024
- timestamp: PropTypes.string.isRequired,
5025
- organization: PropTypes.string.isRequired,
5026
- id: PropTypes.string.isRequired,
5027
- });
5028
-
5029
5161
  T['io.flow.v0.models.label_processing_modification_deleted'] = PropTypes.exact({
5030
5162
  discriminator: PropTypes.oneOf(['label_processing_modification_deleted']).isRequired,
5031
5163
  event_id: PropTypes.string.isRequired,
@@ -5111,6 +5243,14 @@ T['io.flow.v0.models.hs6_code_upserted'] = PropTypes.exact({
5111
5243
  code: PropTypes.string.isRequired,
5112
5244
  });
5113
5245
 
5246
+ T['io.flow.v0.models.ge_product_restriction_result_deleted'] = PropTypes.exact({
5247
+ discriminator: PropTypes.oneOf(['ge_product_restriction_result_deleted']).isRequired,
5248
+ event_id: PropTypes.string.isRequired,
5249
+ timestamp: PropTypes.string.isRequired,
5250
+ organization: PropTypes.string.isRequired,
5251
+ id: PropTypes.string.isRequired,
5252
+ });
5253
+
5114
5254
  T['io.flow.v0.models.shipping_configuration_deleted'] = PropTypes.exact({
5115
5255
  discriminator: PropTypes.oneOf(['shipping_configuration_deleted']).isRequired,
5116
5256
  event_id: PropTypes.string.isRequired,
@@ -5472,6 +5612,13 @@ T['io.flow.v0.models.organization_transaction_deleted'] = PropTypes.exact({
5472
5612
  id: PropTypes.string.isRequired,
5473
5613
  });
5474
5614
 
5615
+ T['io.flow.v0.models.ansh_item_deleted'] = PropTypes.exact({
5616
+ discriminator: PropTypes.oneOf(['ansh_item_deleted']).isRequired,
5617
+ event_id: PropTypes.string.isRequired,
5618
+ timestamp: PropTypes.string.isRequired,
5619
+ id: PropTypes.string.isRequired,
5620
+ });
5621
+
5475
5622
  T['io.flow.v0.models.aldo_item_deleted'] = PropTypes.exact({
5476
5623
  discriminator: PropTypes.oneOf(['aldo_item_deleted']).isRequired,
5477
5624
  event_id: PropTypes.string.isRequired,
@@ -5669,6 +5816,8 @@ T['io.flow.v0.enums.tracking_status'] = PropTypes.oneOf([
5669
5816
  'exception',
5670
5817
  'returned',
5671
5818
  'expired',
5819
+ 'unknown',
5820
+ 'unmapped',
5672
5821
  ]);
5673
5822
 
5674
5823
  T['io.flow.v0.models.tracking_summary'] = PropTypes.exact({
@@ -5755,78 +5904,6 @@ T['io.flow.v0.models.repeat_hourly'] = PropTypes.exact({
5755
5904
  interval: PropTypes.number.isRequired,
5756
5905
  });
5757
5906
 
5758
- T['io.flow.v0.enums.sync_stream_type'] = PropTypes.oneOf(['submitted_order', 'placed_order']);
5759
- T['io.flow.v0.enums.sync_record_failure_reason'] = PropTypes.oneOf(['inventory', 'address', 'promotion', 'other']);
5760
-
5761
- T['io.flow.v0.models.sync_record_failure_form'] = PropTypes.exact({
5762
- stream_key: PropTypes.string.isRequired,
5763
- value: PropTypes.string.isRequired,
5764
- system: PropTypes.string.isRequired,
5765
- reason: T['io.flow.v0.enums.sync_record_failure_reason'].isRequired,
5766
- attributes: PropTypes.objectOf(PropTypes.string),
5767
- });
5768
-
5769
- T['io.flow.v0.models.sync_stream_reference'] = PropTypes.exact({
5770
- id: PropTypes.string.isRequired,
5771
- key: PropTypes.string.isRequired,
5772
- });
5773
-
5774
- T['io.flow.v0.models.sync_record_failure'] = PropTypes.exact({
5775
- id: PropTypes.string.isRequired,
5776
- stream: T['io.flow.v0.models.sync_stream_reference'].isRequired,
5777
- value: PropTypes.string.isRequired,
5778
- system: PropTypes.string.isRequired,
5779
- reason: T['io.flow.v0.enums.sync_record_failure_reason'].isRequired,
5780
- attributes: PropTypes.objectOf(PropTypes.string),
5781
- });
5782
-
5783
- T['io.flow.v0.models.sync_record'] = PropTypes.exact({
5784
- id: PropTypes.string.isRequired,
5785
- system: PropTypes.string.isRequired,
5786
- value: PropTypes.string.isRequired,
5787
- stream: T['io.flow.v0.models.sync_stream_reference'].isRequired,
5788
- });
5789
-
5790
- T['io.flow.v0.models.sync_pending_record'] = PropTypes.exact({
5791
- id: PropTypes.string.isRequired,
5792
- stream: T['io.flow.v0.models.sync_stream_reference'].isRequired,
5793
- value: PropTypes.string.isRequired,
5794
- system: PropTypes.string.isRequired,
5795
- });
5796
-
5797
- T['io.flow.v0.enums.sync_unit_of_time'] = PropTypes.oneOf(['day', 'hour', 'minute', 'second']);
5798
-
5799
- T['io.flow.v0.models.sync_duration'] = PropTypes.exact({
5800
- unit: T['io.flow.v0.enums.sync_unit_of_time'].isRequired,
5801
- value: PropTypes.number.isRequired,
5802
- });
5803
-
5804
- T['io.flow.v0.models.sync_stream_settings_form'] = PropTypes.exact({
5805
- pending_record_after: T['io.flow.v0.models.sync_duration'].isRequired,
5806
- warn_after: T['io.flow.v0.models.sync_duration'].isRequired,
5807
- error_after: T['io.flow.v0.models.sync_duration'].isRequired,
5808
- });
5809
-
5810
- T['io.flow.v0.models.sync_stream_form'] = PropTypes.exact({
5811
- type: T['io.flow.v0.enums.sync_stream_type'].isRequired,
5812
- systems: PropTypes.arrayOf(PropTypes.string).isRequired,
5813
- settings: T['io.flow.v0.models.sync_stream_settings_form'],
5814
- });
5815
-
5816
- T['io.flow.v0.models.sync_stream_settings'] = PropTypes.exact({
5817
- pending_record_after: T['io.flow.v0.models.sync_duration'].isRequired,
5818
- warn_after: T['io.flow.v0.models.sync_duration'].isRequired,
5819
- error_after: T['io.flow.v0.models.sync_duration'].isRequired,
5820
- });
5821
-
5822
- T['io.flow.v0.models.sync_stream'] = PropTypes.exact({
5823
- id: PropTypes.string.isRequired,
5824
- key: PropTypes.string.isRequired,
5825
- type: T['io.flow.v0.enums.sync_stream_type'].isRequired,
5826
- systems: PropTypes.arrayOf(PropTypes.string).isRequired,
5827
- settings: T['io.flow.v0.models.sync_stream_settings'].isRequired,
5828
- });
5829
-
5830
5907
  T['io.flow.v0.enums.surcharge_responsible_party'] = PropTypes.oneOf(['organization', 'customer']);
5831
5908
 
5832
5909
  T['io.flow.v0.models.surcharge_responsible_party_display'] = PropTypes.exact({
@@ -6286,90 +6363,8 @@ T['io.flow.v0.models.query_filter_structured'] = PropTypes.exact({
6286
6363
  values: PropTypes.arrayOf(PropTypes.string).isRequired,
6287
6364
  });
6288
6365
 
6289
- T['io.flow.v0.models.product_sellability_price'] = PropTypes.exact({
6290
- currency: PropTypes.string.isRequired,
6291
- amount: PropTypes.number.isRequired,
6292
- });
6293
-
6294
- T['io.flow.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
6295
-
6296
- T['io.flow.v0.models.sellablility_region_result'] = PropTypes.exact({
6297
- type: T['io.flow.v0.enums.rule_effect_type'].isRequired,
6298
- regions: PropTypes.arrayOf(PropTypes.string).isRequired,
6299
- });
6300
-
6301
- T['io.flow.v0.models.product_sellability'] = PropTypes.exact({
6302
- organization_id: PropTypes.string.isRequired,
6303
- product_id: PropTypes.string,
6304
- product_correlation_id: PropTypes.string.isRequired,
6305
- restricted_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellablility_region_result']).isRequired,
6306
- in_review_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellablility_region_result']).isRequired,
6307
- });
6308
-
6309
6366
  T['io.flow.v0.enums.restricted_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
6310
6367
 
6311
- T['io.flow.v0.enums.product_restriction_rule'] = PropTypes.oneOf([
6312
- 'Adult Products',
6313
- 'Alcohol',
6314
- 'Anti Money Laundering',
6315
- 'Collagen',
6316
- 'Consumer Safety',
6317
- 'Cosmetics',
6318
- 'DG - Batteries',
6319
- 'DG - Hazmat',
6320
- 'Drugs',
6321
- 'Dual Use',
6322
- 'Fine Art',
6323
- 'Fish & Wildlife - CITES',
6324
- 'Fish & Wildlife - Plant',
6325
- 'Fish & Wildlife - USFWS',
6326
- 'Food',
6327
- 'Gambling',
6328
- 'Health',
6329
- 'Human hair',
6330
- 'Insufficient Details',
6331
- 'Intangible',
6332
- 'Jewelry',
6333
- 'Jewelry & Watches Over 5000',
6334
- 'Knives',
6335
- 'Liquids',
6336
- 'Oversized',
6337
- 'Restrict by Default',
6338
- 'Supplements',
6339
- 'Tattoo Ink And PMU',
6340
- 'Weapon',
6341
- 'Wood',
6342
- ]);
6343
-
6344
- T['io.flow.v0.enums.review_status'] = PropTypes.oneOf(['high_risk_in_review', 'low_risk_in_review', 'reviewed']);
6345
-
6346
- T['io.flow.v0.models.reasons_per_region'] = PropTypes.exact({
6347
- region: PropTypes.string.isRequired,
6348
- reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
6349
- review_status: T['io.flow.v0.enums.restricted_review_status'].isRequired,
6350
- });
6351
-
6352
- T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
6353
- id: PropTypes.string.isRequired,
6354
- product_id: PropTypes.string.isRequired,
6355
- item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
6356
- prohibited_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
6357
- reasons_per_region: PropTypes.arrayOf(T['io.flow.v0.models.reasons_per_region']),
6358
- review_status: T['io.flow.v0.enums.review_status'],
6359
- rules: PropTypes.arrayOf(T['io.flow.v0.enums.product_restriction_rule']),
6360
- updated_by: PropTypes.string,
6361
- product_restriction_id: PropTypes.string,
6362
- hs_code: PropTypes.string,
6363
- });
6364
-
6365
- T['io.flow.v0.models.product_restriction_result_upserted'] = PropTypes.exact({
6366
- discriminator: PropTypes.oneOf(['product_restriction_result_upserted']).isRequired,
6367
- event_id: PropTypes.string.isRequired,
6368
- timestamp: PropTypes.string.isRequired,
6369
- organization: PropTypes.string.isRequired,
6370
- product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
6371
- });
6372
-
6373
6368
  T['io.flow.v0.models.product_taxonomy_data'] = PropTypes.exact({
6374
6369
  key: PropTypes.string.isRequired,
6375
6370
  value: PropTypes.arrayOf(PropTypes.string).isRequired,
@@ -6380,16 +6375,6 @@ T['io.flow.v0.models.product_taxonomy_category'] = PropTypes.exact({
6380
6375
  full_name: PropTypes.string.isRequired,
6381
6376
  });
6382
6377
 
6383
- T['io.flow.v0.models.product_sellability_form'] = PropTypes.exact({
6384
- organization_id: PropTypes.string.isRequired,
6385
- product_id: PropTypes.string,
6386
- product_correlation_id: PropTypes.string.isRequired,
6387
- name: PropTypes.string.isRequired,
6388
- price: T['io.flow.v0.models.product_sellability_price'].isRequired,
6389
- description: PropTypes.string.isRequired,
6390
- taxonomy_category: T['io.flow.v0.models.product_taxonomy_category'].isRequired,
6391
- });
6392
-
6393
6378
  T['io.flow.v0.models.product'] = PropTypes.exact({
6394
6379
  organization_id: PropTypes.string.isRequired,
6395
6380
  number: PropTypes.string.isRequired,
@@ -6464,11 +6449,6 @@ T['io.flow.v0.enums.price_detail_component_key'] = PropTypes.oneOf([
6464
6449
  ]);
6465
6450
 
6466
6451
  T['io.flow.v0.enums.item_identifier'] = PropTypes.oneOf(['item_number', 'sku']);
6467
-
6468
- T['io.flow.v0.models.price_book_item_export_options'] = PropTypes.exact({
6469
- available_identifiers: PropTypes.arrayOf(T['io.flow.v0.enums.item_identifier']).isRequired,
6470
- });
6471
-
6472
6452
  T['io.flow.v0.enums.price_book_status'] = PropTypes.oneOf(['draft', 'published', 'archived']);
6473
6453
  T['io.flow.v0.enums.preferred_service_selection_strategy'] = PropTypes.oneOf(['calculated_rate', 'flat_rate', 'custom_rate']);
6474
6454
 
@@ -7640,12 +7620,6 @@ T['io.flow.v0.models.label_surcharge'] = PropTypes.exact({
7640
7620
  detail: T['io.flow.v0.unions.label_surcharge_detail'].isRequired,
7641
7621
  });
7642
7622
 
7643
- T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
7644
- units: T['io.flow.v0.models.label_units'].isRequired,
7645
- base: T['io.flow.v0.models.label_base'].isRequired,
7646
- surcharges: PropTypes.arrayOf(T['io.flow.v0.models.label_surcharge']).isRequired,
7647
- });
7648
-
7649
7623
  T['io.flow.v0.models.additional_services_requested'] = PropTypes.exact({
7650
7624
  name: PropTypes.string.isRequired,
7651
7625
  description: PropTypes.string,
@@ -7866,6 +7840,76 @@ T['io.flow.v0.models.harmonization_document'] = PropTypes.exact({
7866
7840
  origin: PropTypes.string,
7867
7841
  });
7868
7842
 
7843
+ T['io.flow.v0.enums.product_restriction_rule'] = PropTypes.oneOf([
7844
+ 'Adult Products',
7845
+ 'Alcohol',
7846
+ 'Anti Money Laundering',
7847
+ 'Collagen',
7848
+ 'Consumer Safety',
7849
+ 'Cosmetics',
7850
+ 'DG - Batteries',
7851
+ 'DG - Hazmat',
7852
+ 'Drugs',
7853
+ 'Dual Use',
7854
+ 'Fine Art',
7855
+ 'Fish & Wildlife - CITES',
7856
+ 'Fish & Wildlife - Plant',
7857
+ 'Fish & Wildlife - USFWS',
7858
+ 'Food',
7859
+ 'Gambling',
7860
+ 'Health',
7861
+ 'Human hair',
7862
+ 'Insufficient Details',
7863
+ 'Intangible',
7864
+ 'Jewelry',
7865
+ 'Jewelry & Watches Over 5000',
7866
+ 'Knives',
7867
+ 'Liquids',
7868
+ 'Oversized',
7869
+ 'Restrict by Default',
7870
+ 'Supplements',
7871
+ 'Tattoo Ink And PMU',
7872
+ 'Weapon',
7873
+ 'Wood',
7874
+ ]);
7875
+
7876
+ T['io.flow.v0.enums.review_status'] = PropTypes.oneOf(['high_risk_in_review', 'low_risk_in_review', 'reviewed']);
7877
+
7878
+ T['io.flow.v0.models.reasons_per_region'] = PropTypes.exact({
7879
+ region: PropTypes.string.isRequired,
7880
+ reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
7881
+ review_status: T['io.flow.v0.enums.restricted_review_status'].isRequired,
7882
+ });
7883
+
7884
+ T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
7885
+ id: PropTypes.string.isRequired,
7886
+ product_id: PropTypes.string.isRequired,
7887
+ item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
7888
+ prohibited_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
7889
+ reasons_per_region: PropTypes.arrayOf(T['io.flow.v0.models.reasons_per_region']),
7890
+ review_status: T['io.flow.v0.enums.review_status'],
7891
+ rules: PropTypes.arrayOf(T['io.flow.v0.enums.product_restriction_rule']),
7892
+ updated_by: PropTypes.string,
7893
+ product_restriction_id: PropTypes.string,
7894
+ hs_code: PropTypes.string,
7895
+ });
7896
+
7897
+ T['io.flow.v0.models.product_restriction_result_upserted'] = PropTypes.exact({
7898
+ discriminator: PropTypes.oneOf(['product_restriction_result_upserted']).isRequired,
7899
+ event_id: PropTypes.string.isRequired,
7900
+ timestamp: PropTypes.string.isRequired,
7901
+ organization: PropTypes.string.isRequired,
7902
+ product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
7903
+ });
7904
+
7905
+ T['io.flow.v0.models.ge_product_restriction_result_upserted'] = PropTypes.exact({
7906
+ discriminator: PropTypes.oneOf(['ge_product_restriction_result_upserted']).isRequired,
7907
+ event_id: PropTypes.string.isRequired,
7908
+ timestamp: PropTypes.string.isRequired,
7909
+ organization: PropTypes.string.isRequired,
7910
+ ge_product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
7911
+ });
7912
+
7869
7913
  T['io.flow.v0.enums.fulfillment_item_quantity_status'] = PropTypes.oneOf(['new', 'shipped', 'cancelled']);
7870
7914
 
7871
7915
  T['io.flow.v0.models.fulfillment_line_cancel_form'] = PropTypes.exact({
@@ -8364,6 +8408,15 @@ T['io.flow.v0.models.exclusion_rule'] = PropTypes.exact({
8364
8408
  });
8365
8409
 
8366
8410
  T['io.flow.v0.enums.exception_type'] = PropTypes.oneOf(['open', 'closed']);
8411
+
8412
+ T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
8413
+ units: T['io.flow.v0.models.label_units'].isRequired,
8414
+ base: T['io.flow.v0.models.label_base'].isRequired,
8415
+ surcharges: PropTypes.arrayOf(T['io.flow.v0.models.label_surcharge']).isRequired,
8416
+ });
8417
+
8418
+ T['io.flow.v0.enums.estimate_origin'] = PropTypes.oneOf(['Shopify', 'GlobalE', 'Aftership', 'Carrier']);
8419
+ T['io.flow.v0.enums.estimate_type'] = PropTypes.oneOf(['Estimated', 'Final']);
8367
8420
  T['io.flow.v0.enums.entity_identifier_type'] = PropTypes.oneOf(['ioss', 'voec', 'zaz']);
8368
8421
 
8369
8422
  T['io.flow.v0.models.ratecard_region_reference'] = PropTypes.exact({
@@ -9106,6 +9159,7 @@ T['io.flow.v0.models.card_payment_source_form'] = PropTypes.exact({
9106
9159
  card_id: PropTypes.string.isRequired,
9107
9160
  });
9108
9161
 
9162
+ T['io.flow.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
9109
9163
  T['io.flow.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.v0.models.device_details_browser']]);
9110
9164
 
9111
9165
  T['io.flow.v0.models.order_options'] = PropTypes.exact({
@@ -9434,7 +9488,7 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
9434
9488
  'virtual_card_refund',
9435
9489
  'failed_payout',
9436
9490
  'tax_refund',
9437
- 'order_fx',
9491
+ 'non_l4l_tax_duty_fx',
9438
9492
  'ge_revenue_share',
9439
9493
  'tax_duty_delta',
9440
9494
  ]);
@@ -10405,42 +10459,6 @@ T['io.flow.v0.models.card_payment_source_authorization_form'] = PropTypes.exact(
10405
10459
  inline_action_configuration: T['io.flow.v0.unions.inline_action_configuration'],
10406
10460
  });
10407
10461
 
10408
- T['io.flow.v0.enums.optin_response_type'] = PropTypes.oneOf(['not_shown', 'opted_in', 'opted_out']);
10409
-
10410
- T['io.flow.v0.models.optin_response'] = PropTypes.exact({
10411
- key: PropTypes.string.isRequired,
10412
- value: T['io.flow.v0.enums.optin_response_type'].isRequired,
10413
- });
10414
-
10415
- T['io.flow.v0.models.checkout_optin_responses'] = PropTypes.exact({
10416
- id: PropTypes.string.isRequired,
10417
- order_number: PropTypes.string.isRequired,
10418
- session_id: PropTypes.string.isRequired,
10419
- optin_responses: PropTypes.arrayOf(T['io.flow.v0.models.optin_response']).isRequired,
10420
- });
10421
-
10422
- T['io.flow.v0.models.checkout_optin_responses_upserted'] = PropTypes.exact({
10423
- discriminator: PropTypes.oneOf(['checkout_optin_responses_upserted']).isRequired,
10424
- event_id: PropTypes.string.isRequired,
10425
- timestamp: PropTypes.string.isRequired,
10426
- organization: PropTypes.string.isRequired,
10427
- checkout_optin_responses: T['io.flow.v0.models.checkout_optin_responses'].isRequired,
10428
- });
10429
-
10430
- T['io.flow.v0.models.browse_optin_responses'] = PropTypes.exact({
10431
- id: PropTypes.string.isRequired,
10432
- session_id: PropTypes.string.isRequired,
10433
- optin_responses: PropTypes.arrayOf(T['io.flow.v0.models.optin_response']).isRequired,
10434
- });
10435
-
10436
- T['io.flow.v0.models.browse_optin_responses_upserted'] = PropTypes.exact({
10437
- discriminator: PropTypes.oneOf(['browse_optin_responses_upserted']).isRequired,
10438
- event_id: PropTypes.string.isRequired,
10439
- timestamp: PropTypes.string.isRequired,
10440
- organization: PropTypes.string.isRequired,
10441
- browse_optin_responses: T['io.flow.v0.models.browse_optin_responses'].isRequired,
10442
- });
10443
-
10444
10462
  T['io.flow.v0.models.center_reference'] = PropTypes.exact({
10445
10463
  discriminator: PropTypes.oneOf(['center_reference']).isRequired,
10446
10464
  organization_id: PropTypes.string.isRequired,
@@ -11256,6 +11274,25 @@ T['io.flow.v0.models.query_builder'] = PropTypes.exact({
11256
11274
  available: PropTypes.arrayOf(T['io.flow.v0.unions.available_filter']).isRequired,
11257
11275
  });
11258
11276
 
11277
+ T['io.flow.v0.models.authorization_retry'] = PropTypes.exact({
11278
+ id: PropTypes.string.isRequired,
11279
+ authorization_request_id: PropTypes.string.isRequired,
11280
+ authorization_id: PropTypes.string.isRequired,
11281
+ organization_id: PropTypes.string.isRequired,
11282
+ attempt: PropTypes.number.isRequired,
11283
+ last_failure_code: PropTypes.string.isRequired,
11284
+ created_at: PropTypes.string.isRequired,
11285
+ updated_at: PropTypes.string.isRequired,
11286
+ });
11287
+
11288
+ T['io.flow.v0.models.authorization_retry_upserted'] = PropTypes.exact({
11289
+ discriminator: PropTypes.oneOf(['authorization_retry_upserted']).isRequired,
11290
+ event_id: PropTypes.string.isRequired,
11291
+ timestamp: PropTypes.string.isRequired,
11292
+ organization: PropTypes.string.isRequired,
11293
+ authorization_retry: T['io.flow.v0.models.authorization_retry'].isRequired,
11294
+ });
11295
+
11259
11296
  T['io.flow.v0.models.select_issuer_option_action_details'] = PropTypes.exact({
11260
11297
  discriminator: PropTypes.oneOf(['select_issuer_option_action_details']).isRequired,
11261
11298
  issuer_options: PropTypes.arrayOf(T['io.flow.v0.models.issuer_reference']).isRequired,
@@ -11778,6 +11815,8 @@ T['io.flow.v0.models.channel_statement_deleted'] = PropTypes.exact({
11778
11815
  channel_statement: T['io.flow.v0.models.channel_statement'].isRequired,
11779
11816
  });
11780
11817
 
11818
+ T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
11819
+
11781
11820
  T['io.flow.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
11782
11821
  'adjustment',
11783
11822
  'subtotal',
@@ -12486,15 +12525,6 @@ T['io.flow.tech.onboarding.playground.v0.models.ansh_item_form'] = PropTypes.exa
12486
12525
  added_on: PropTypes.string.isRequired,
12487
12526
  });
12488
12527
 
12489
- T['io.flow.tech.onboarding.playground.v0.models.ansh_item'] = PropTypes.exact({
12490
- id: PropTypes.string.isRequired,
12491
- number: PropTypes.string.isRequired,
12492
- amount: T['io.flow.common.v0.models.price'].isRequired,
12493
- description: PropTypes.string,
12494
- type: T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'].isRequired,
12495
- added_on: PropTypes.string.isRequired,
12496
- });
12497
-
12498
12528
  T['io.flow.tech.onboarding.playground.v0.models.aldo_item_form'] = PropTypes.exact({
12499
12529
  number: PropTypes.string.isRequired,
12500
12530
  amount: T['io.flow.common.v0.models.price'].isRequired,
@@ -12819,6 +12849,22 @@ T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
12819
12849
  item: T['io.flow.catalog.v0.models.item'].isRequired,
12820
12850
  });
12821
12851
 
12852
+ T['io.flow.tech.onboarding.playground.v0.models.ansh_item'] = PropTypes.exact({
12853
+ id: PropTypes.string.isRequired,
12854
+ number: PropTypes.string.isRequired,
12855
+ amount: T['io.flow.common.v0.models.price'].isRequired,
12856
+ description: PropTypes.string,
12857
+ type: T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'].isRequired,
12858
+ added_on: PropTypes.string.isRequired,
12859
+ });
12860
+
12861
+ T['io.flow.v0.models.ansh_item_upserted'] = PropTypes.exact({
12862
+ discriminator: PropTypes.oneOf(['ansh_item_upserted']).isRequired,
12863
+ event_id: PropTypes.string.isRequired,
12864
+ timestamp: PropTypes.string.isRequired,
12865
+ item: T['io.flow.tech.onboarding.playground.v0.models.ansh_item'].isRequired,
12866
+ });
12867
+
12822
12868
  T['io.flow.tech.onboarding.playground.v0.models.aldo_item'] = PropTypes.exact({
12823
12869
  id: PropTypes.string.isRequired,
12824
12870
  number: PropTypes.string.isRequired,
@@ -13265,12 +13311,6 @@ T['io.flow.v0.models.tracking_label_form'] = PropTypes.exact({
13265
13311
  ratecard_owner: T['io.flow.v0.enums.ratecard_owner'],
13266
13312
  });
13267
13313
 
13268
- T['io.flow.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
13269
- lane: T['io.flow.v0.models.shipping_label_lane_summary'].isRequired,
13270
- cost: T['io.flow.v0.models.money'].isRequired,
13271
- itemized_estimate: T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'],
13272
- });
13273
-
13274
13314
  T['io.flow.v0.models.security_service_fee'] = PropTypes.exact({
13275
13315
  discriminator: PropTypes.oneOf(['security_service_fee']).isRequired,
13276
13316
  amount: T['io.flow.v0.models.money'].isRequired,
@@ -13433,6 +13473,21 @@ T['io.flow.v0.models.fixed_currency_conversion_ratecard_fee'] = PropTypes.exact(
13433
13473
  amount: T['io.flow.v0.models.money'].isRequired,
13434
13474
  });
13435
13475
 
13476
+ T['io.flow.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
13477
+ lane: T['io.flow.v0.models.shipping_label_lane_summary'].isRequired,
13478
+ cost: T['io.flow.v0.models.money'].isRequired,
13479
+ itemized_estimate: T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'],
13480
+ });
13481
+
13482
+ T['io.flow.v0.models.estimate'] = PropTypes.exact({
13483
+ id: PropTypes.string.isRequired,
13484
+ organization_id: PropTypes.string.isRequired,
13485
+ label_id: PropTypes.string.isRequired,
13486
+ estimate: T['io.flow.v0.models.shipping_label_hop_summary'].isRequired,
13487
+ type: T['io.flow.v0.enums.estimate_type'].isRequired,
13488
+ origin: T['io.flow.v0.enums.estimate_origin'],
13489
+ });
13490
+
13436
13491
  T['io.flow.v0.models.emergency_situation_surcharge_ratecard_fee'] = PropTypes.exact({
13437
13492
  discriminator: PropTypes.oneOf(['emergency_situation_surcharge_ratecard_fee']).isRequired,
13438
13493
  amount: T['io.flow.v0.models.money'].isRequired,
@@ -14317,6 +14372,30 @@ T['io.flow.v0.models.item_deleted'] = PropTypes.exact({
14317
14372
  item: T['io.flow.v0.models.item'].isRequired,
14318
14373
  });
14319
14374
 
14375
+ T['io.flow.v0.models.ge_item_updated'] = PropTypes.exact({
14376
+ discriminator: PropTypes.oneOf(['ge_item_updated']).isRequired,
14377
+ event_id: PropTypes.string.isRequired,
14378
+ timestamp: PropTypes.string.isRequired,
14379
+ organization: PropTypes.string.isRequired,
14380
+ item: T['io.flow.v0.models.item'].isRequired,
14381
+ });
14382
+
14383
+ T['io.flow.v0.models.ge_item_inserted'] = PropTypes.exact({
14384
+ discriminator: PropTypes.oneOf(['ge_item_inserted']).isRequired,
14385
+ event_id: PropTypes.string.isRequired,
14386
+ timestamp: PropTypes.string.isRequired,
14387
+ organization: PropTypes.string.isRequired,
14388
+ item: T['io.flow.v0.models.item'].isRequired,
14389
+ });
14390
+
14391
+ T['io.flow.v0.models.ge_item_deleted'] = PropTypes.exact({
14392
+ discriminator: PropTypes.oneOf(['ge_item_deleted']).isRequired,
14393
+ event_id: PropTypes.string.isRequired,
14394
+ timestamp: PropTypes.string.isRequired,
14395
+ organization: PropTypes.string.isRequired,
14396
+ item: T['io.flow.v0.models.item'].isRequired,
14397
+ });
14398
+
14320
14399
  T['io.flow.v0.models.checkout_item_content'] = PropTypes.exact({
14321
14400
  item: T['io.flow.v0.models.item'].isRequired,
14322
14401
  name: PropTypes.string.isRequired,
@@ -14978,22 +15057,6 @@ T['io.flow.v0.models.local_item'] = PropTypes.exact({
14978
15057
  attributes: PropTypes.objectOf(PropTypes.string),
14979
15058
  });
14980
15059
 
14981
- T['io.flow.v0.models.local_item_upserted'] = PropTypes.exact({
14982
- discriminator: PropTypes.oneOf(['local_item_upserted']).isRequired,
14983
- event_id: PropTypes.string.isRequired,
14984
- timestamp: PropTypes.string.isRequired,
14985
- organization: PropTypes.string.isRequired,
14986
- local_item: T['io.flow.v0.models.local_item'].isRequired,
14987
- });
14988
-
14989
- T['io.flow.v0.models.local_item_deleted'] = PropTypes.exact({
14990
- discriminator: PropTypes.oneOf(['local_item_deleted']).isRequired,
14991
- event_id: PropTypes.string.isRequired,
14992
- timestamp: PropTypes.string.isRequired,
14993
- organization: PropTypes.string.isRequired,
14994
- local_item: T['io.flow.v0.models.local_item'].isRequired,
14995
- });
14996
-
14997
15060
  T['io.flow.v0.models.fulfillment'] = PropTypes.exact({
14998
15061
  organization: PropTypes.string.isRequired,
14999
15062
  key: PropTypes.string.isRequired,
@@ -15500,6 +15563,7 @@ T['io.flow.v0.models.order'] = PropTypes.exact({
15500
15563
  device_details: T['io.flow.v0.unions.device_details'],
15501
15564
  destination_contact_details: PropTypes.arrayOf(T['io.flow.v0.models.destination_contact_detail']),
15502
15565
  incoterm_summary: T['io.flow.v0.models.incoterm_summary'],
15566
+ payment_source: T['io.flow.v0.enums.order_payment_source_type'],
15503
15567
  });
15504
15568
 
15505
15569
  T['io.flow.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
@@ -15669,6 +15733,7 @@ T['io.flow.v0.models.online_authorization'] = PropTypes.exact({
15669
15733
  processor: T['io.flow.v0.unions.expandable_payment_processor'],
15670
15734
  confirmation_details: T['io.flow.v0.unions.confirmation_details'],
15671
15735
  authorized_at: PropTypes.string,
15736
+ authorization_request_id: PropTypes.string,
15672
15737
  });
15673
15738
 
15674
15739
  T['io.flow.v0.models.online_authorization_upserted_v2'] = PropTypes.exact({
@@ -15772,6 +15837,7 @@ T['io.flow.v0.models.card_authorization'] = PropTypes.exact({
15772
15837
  processor: T['io.flow.v0.unions.expandable_payment_processor'],
15773
15838
  stored_method_usage_step: T['io.flow.v0.enums.stored_method_usage_step'],
15774
15839
  authorized_at: PropTypes.string,
15840
+ authorization_request_id: PropTypes.string,
15775
15841
  });
15776
15842
 
15777
15843
  T['io.flow.v0.models.card_authorization_upserted_v2'] = PropTypes.exact({
@@ -16032,6 +16098,7 @@ T['io.flow.v0.models.order_put_form'] = PropTypes.exact({
16032
16098
  authorization_keys: PropTypes.arrayOf(PropTypes.string),
16033
16099
  options: T['io.flow.v0.models.order_options'],
16034
16100
  device_details: T['io.flow.v0.unions.device_details'],
16101
+ payment_source: T['io.flow.v0.enums.order_payment_source_type'],
16035
16102
  });
16036
16103
 
16037
16104
  T['io.flow.v0.models.order_estimate_form'] = PropTypes.exact({
@@ -16064,6 +16131,7 @@ T['io.flow.v0.models.order_form'] = PropTypes.exact({
16064
16131
  authorization_keys: PropTypes.arrayOf(PropTypes.string),
16065
16132
  options: T['io.flow.v0.models.order_options'],
16066
16133
  device_details: T['io.flow.v0.unions.device_details'],
16134
+ payment_source: T['io.flow.v0.enums.order_payment_source_type'],
16067
16135
  });
16068
16136
 
16069
16137
  T['io.flow.v0.models.order_with_discounts_form'] = PropTypes.exact({
@@ -16277,6 +16345,8 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16277
16345
  T['io.flow.v0.models.generate_load'],
16278
16346
  T['io.flow.v0.models.aldo_item_upserted'],
16279
16347
  T['io.flow.v0.models.aldo_item_deleted'],
16348
+ T['io.flow.v0.models.ansh_item_upserted'],
16349
+ T['io.flow.v0.models.ansh_item_deleted'],
16280
16350
  T['io.flow.v0.models.transaction_upserted'],
16281
16351
  T['io.flow.v0.models.organization_transaction_upserted'],
16282
16352
  T['io.flow.v0.models.organization_transaction_deleted'],
@@ -16386,6 +16456,11 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16386
16456
  T['io.flow.v0.models.shipping_configuration_item_availability_deleted'],
16387
16457
  T['io.flow.v0.models.shipping_configuration_item_shipping_pricing_upserted'],
16388
16458
  T['io.flow.v0.models.shipping_configuration_item_shipping_pricing_deleted'],
16459
+ T['io.flow.v0.models.ge_item_inserted'],
16460
+ T['io.flow.v0.models.ge_item_updated'],
16461
+ T['io.flow.v0.models.ge_item_deleted'],
16462
+ T['io.flow.v0.models.ge_product_restriction_result_upserted'],
16463
+ T['io.flow.v0.models.ge_product_restriction_result_deleted'],
16389
16464
  T['io.flow.v0.models.hs6_code_upserted'],
16390
16465
  T['io.flow.v0.models.hs6_code_deleted'],
16391
16466
  T['io.flow.v0.models.hs10_code_upserted'],
@@ -16405,14 +16480,8 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16405
16480
  T['io.flow.v0.models.manifested_label_deleted'],
16406
16481
  T['io.flow.v0.models.label_processing_modification_upserted'],
16407
16482
  T['io.flow.v0.models.label_processing_modification_deleted'],
16408
- T['io.flow.v0.models.local_item_upserted'],
16409
- T['io.flow.v0.models.local_item_deleted'],
16410
16483
  T['io.flow.v0.models.merchant_application_upserted'],
16411
16484
  T['io.flow.v0.models.merchant_application_deleted'],
16412
- T['io.flow.v0.models.checkout_optin_responses_upserted'],
16413
- T['io.flow.v0.models.checkout_optin_responses_deleted'],
16414
- T['io.flow.v0.models.browse_optin_responses_upserted'],
16415
- T['io.flow.v0.models.browse_optin_responses_deleted'],
16416
16485
  T['io.flow.v0.models.order_placed'],
16417
16486
  T['io.flow.v0.models.order_placed_v2'],
16418
16487
  T['io.flow.v0.models.ready_to_fulfill'],
@@ -16454,6 +16523,8 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16454
16523
  T['io.flow.v0.models.virtual_card_capture_deleted'],
16455
16524
  T['io.flow.v0.models.virtual_card_refund_upserted'],
16456
16525
  T['io.flow.v0.models.virtual_card_refund_deleted'],
16526
+ T['io.flow.v0.models.authorization_retry_upserted'],
16527
+ T['io.flow.v0.models.authorization_retry_deleted'],
16457
16528
  T['io.flow.v0.models.payment_request_upserted'],
16458
16529
  T['io.flow.v0.models.payment_request_deleted'],
16459
16530
  T['io.flow.v0.models.price_book_upserted'],
@@ -16666,6 +16737,8 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16666
16737
  'generate_load',
16667
16738
  'aldo_item_upserted',
16668
16739
  'aldo_item_deleted',
16740
+ 'ansh_item_upserted',
16741
+ 'ansh_item_deleted',
16669
16742
  'transaction_upserted',
16670
16743
  'organization_transaction_upserted',
16671
16744
  'organization_transaction_deleted',
@@ -16775,6 +16848,11 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16775
16848
  'shipping_configuration_item_availability_deleted',
16776
16849
  'shipping_configuration_item_shipping_pricing_upserted',
16777
16850
  'shipping_configuration_item_shipping_pricing_deleted',
16851
+ 'ge_item_inserted',
16852
+ 'ge_item_updated',
16853
+ 'ge_item_deleted',
16854
+ 'ge_product_restriction_result_upserted',
16855
+ 'ge_product_restriction_result_deleted',
16778
16856
  'hs6_code_upserted',
16779
16857
  'hs6_code_deleted',
16780
16858
  'hs10_code_upserted',
@@ -16794,14 +16872,8 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16794
16872
  'manifested_label_deleted',
16795
16873
  'label_processing_modification_upserted',
16796
16874
  'label_processing_modification_deleted',
16797
- 'local_item_upserted',
16798
- 'local_item_deleted',
16799
16875
  'merchant_application_upserted',
16800
16876
  'merchant_application_deleted',
16801
- 'checkout_optin_responses_upserted',
16802
- 'checkout_optin_responses_deleted',
16803
- 'browse_optin_responses_upserted',
16804
- 'browse_optin_responses_deleted',
16805
16877
  'order_placed',
16806
16878
  'order_placed_v2',
16807
16879
  'ready_to_fulfill',
@@ -16843,6 +16915,8 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16843
16915
  'virtual_card_capture_deleted',
16844
16916
  'virtual_card_refund_upserted',
16845
16917
  'virtual_card_refund_deleted',
16918
+ 'authorization_retry_upserted',
16919
+ 'authorization_retry_deleted',
16846
16920
  'payment_request_upserted',
16847
16921
  'payment_request_deleted',
16848
16922
  'price_book_upserted',
@@ -17567,12 +17641,6 @@ T['io.flow.v0.models.suggestion'] = PropTypes.exact({
17567
17641
  count: PropTypes.number.isRequired,
17568
17642
  });
17569
17643
 
17570
- T['io.flow.v0.models.sync_record_form'] = PropTypes.exact({
17571
- stream_key: PropTypes.string.isRequired,
17572
- system: PropTypes.string.isRequired,
17573
- value: PropTypes.string.isRequired,
17574
- });
17575
-
17576
17644
  T['io.flow.v0.models.tax_registration_form'] = PropTypes.exact({
17577
17645
  number: PropTypes.string.isRequired,
17578
17646
  company_name: PropTypes.string,
@@ -18015,13 +18083,6 @@ T['io.flow.tech.onboarding.playground.v0.models.jean_demo_item'] = PropTypes.exa
18015
18083
  name: PropTypes.string.isRequired,
18016
18084
  });
18017
18085
 
18018
- T['io.flow.tech.onboarding.playground.v0.models.shawn_roundtable_workshop_rate'] = PropTypes.exact({
18019
- origin_country: PropTypes.string.isRequired,
18020
- destination_country: PropTypes.string.isRequired,
18021
- weight: PropTypes.number.isRequired,
18022
- amount: PropTypes.number.isRequired,
18023
- });
18024
-
18025
18086
  T['io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description'] = PropTypes.exact({
18026
18087
  description: PropTypes.string.isRequired,
18027
18088
  });
@@ -18153,6 +18214,8 @@ export const allocationV2 = T['io.flow.v0.models.allocation_v2'];
18153
18214
  export const amountMargin = T['io.flow.v0.models.amount_margin'];
18154
18215
  export const amountMarginForm = T['io.flow.v0.models.amount_margin_form'];
18155
18216
  export const analyticsExportType = T['io.flow.v0.models.analytics_export_type'];
18217
+ export const anshItemDeleted = T['io.flow.v0.models.ansh_item_deleted'];
18218
+ export const anshItemUpserted = T['io.flow.v0.models.ansh_item_upserted'];
18156
18219
  export const applePayMerchantValidationPayload = T['io.flow.v0.models.apple_pay_merchant_validation_payload'];
18157
18220
  export const applepaySdkCreateResultActionDetails = T['io.flow.v0.models.applepay_sdk_create_result_action_details'];
18158
18221
  export const applepaySdkValidateResultActionDetails = T['io.flow.v0.models.applepay_sdk_validate_result_action_details'];
@@ -18192,6 +18255,9 @@ export const authorizationResultActionPost = T['io.flow.v0.models.authorization_
18192
18255
  export const authorizationResultActionType = T['io.flow.v0.enums.authorization_result_action_type'];
18193
18256
  export const authorizationResultActionWait = T['io.flow.v0.models.authorization_result_action_wait'];
18194
18257
  export const authorizationResultDescription = T['io.flow.v0.models.authorization_result_description'];
18258
+ export const authorizationRetry = T['io.flow.v0.models.authorization_retry'];
18259
+ export const authorizationRetryDeleted = T['io.flow.v0.models.authorization_retry_deleted'];
18260
+ export const authorizationRetryUpserted = T['io.flow.v0.models.authorization_retry_upserted'];
18195
18261
  export const authorizationStatus = T['io.flow.v0.enums.authorization_status'];
18196
18262
  export const authorizationStatusChanged = T['io.flow.v0.models.authorization_status_changed'];
18197
18263
  export const authorizationVersion = T['io.flow.v0.models.authorization_version'];
@@ -18239,9 +18305,6 @@ export const billingDiscount = T['io.flow.v0.models.billing_discount'];
18239
18305
  export const bridgeManifest = T['io.flow.v0.models.bridge_manifest'];
18240
18306
  export const bridgeManifestForm = T['io.flow.v0.models.bridge_manifest_form'];
18241
18307
  export const bridgeShippingLabelForm = T['io.flow.v0.models.bridge_shipping_label_form'];
18242
- export const browseOptinResponses = T['io.flow.v0.models.browse_optin_responses'];
18243
- export const browseOptinResponsesDeleted = T['io.flow.v0.models.browse_optin_responses_deleted'];
18244
- export const browseOptinResponsesUpserted = T['io.flow.v0.models.browse_optin_responses_upserted'];
18245
18308
  export const browserActionConfiguration = T['io.flow.v0.unions.browser_action_configuration'];
18246
18309
  export const browserInfo = T['io.flow.v0.models.browser_info'];
18247
18310
  export const browserInlineActionConfiguration = T['io.flow.v0.models.browser_inline_action_configuration'];
@@ -18366,9 +18429,6 @@ export const checkoutAttribute = T['io.flow.v0.models.checkout_attribute'];
18366
18429
  export const checkoutAttributeForm = T['io.flow.v0.models.checkout_attribute_form'];
18367
18430
  export const checkoutItemContent = T['io.flow.v0.models.checkout_item_content'];
18368
18431
  export const checkoutItemContentAttribute = T['io.flow.v0.models.checkout_item_content_attribute'];
18369
- export const checkoutOptinResponses = T['io.flow.v0.models.checkout_optin_responses'];
18370
- export const checkoutOptinResponsesDeleted = T['io.flow.v0.models.checkout_optin_responses_deleted'];
18371
- export const checkoutOptinResponsesUpserted = T['io.flow.v0.models.checkout_optin_responses_upserted'];
18372
18432
  export const checkoutReference = T['io.flow.v0.models.checkout_reference'];
18373
18433
  export const checkoutToken = T['io.flow.v0.models.checkout_token'];
18374
18434
  export const checkoutTokenForm = T['io.flow.v0.unions.checkout_token_form'];
@@ -18568,6 +18628,9 @@ export const entity = T['io.flow.v0.unions.entity'];
18568
18628
  export const entityIdentifier = T['io.flow.v0.models.entity_identifier'];
18569
18629
  export const entityIdentifierType = T['io.flow.v0.enums.entity_identifier_type'];
18570
18630
  export const environment = T['io.flow.v0.enums.environment'];
18631
+ export const estimate = T['io.flow.v0.models.estimate'];
18632
+ export const estimateOrigin = T['io.flow.v0.enums.estimate_origin'];
18633
+ export const estimateType = T['io.flow.v0.enums.estimate_type'];
18571
18634
  export const estimatedDimensions = T['io.flow.v0.models.estimated_dimensions'];
18572
18635
  export const estimatedWindow = T['io.flow.v0.models.estimated_window'];
18573
18636
  export const event = T['io.flow.v0.unions.event'];
@@ -18711,6 +18774,11 @@ export const fulfillmentRouting = T['io.flow.v0.enums.fulfillment_routing'];
18711
18774
  export const fullyHarmonizedItemUpserted = T['io.flow.v0.models.fully_harmonized_item_upserted'];
18712
18775
  export const gatewayAuthenticationData = T['io.flow.v0.unions.gateway_authentication_data'];
18713
18776
  export const gatewayAuthenticationDataForm = T['io.flow.v0.unions.gateway_authentication_data_form'];
18777
+ export const geItemDeleted = T['io.flow.v0.models.ge_item_deleted'];
18778
+ export const geItemInserted = T['io.flow.v0.models.ge_item_inserted'];
18779
+ export const geItemUpdated = T['io.flow.v0.models.ge_item_updated'];
18780
+ export const geProductRestrictionResultDeleted = T['io.flow.v0.models.ge_product_restriction_result_deleted'];
18781
+ export const geProductRestrictionResultUpserted = T['io.flow.v0.models.ge_product_restriction_result_upserted'];
18714
18782
  export const generateLoad = T['io.flow.v0.models.generate_load'];
18715
18783
  export const genericError = T['io.flow.v0.models.generic_error'];
18716
18784
  export const genericErrorCode = T['io.flow.v0.enums.generic_error_code'];
@@ -18872,9 +18940,7 @@ export const link = T['io.flow.v0.models.link'];
18872
18940
  export const local = T['io.flow.v0.models.local'];
18873
18941
  export const localItem = T['io.flow.v0.models.local_item'];
18874
18942
  export const localItemAttributePricing = T['io.flow.v0.models.local_item_attribute_pricing'];
18875
- export const localItemDeleted = T['io.flow.v0.models.local_item_deleted'];
18876
18943
  export const localItemPricing = T['io.flow.v0.models.local_item_pricing'];
18877
- export const localItemUpserted = T['io.flow.v0.models.local_item_upserted'];
18878
18944
  export const localPriceDetails = T['io.flow.v0.models.local_price_details'];
18879
18945
  export const localSession = T['io.flow.v0.models.local_session'];
18880
18946
  export const locale = T['io.flow.v0.models.locale'];
@@ -18966,8 +19032,6 @@ export const onlineAuthorizationDetails = T['io.flow.v0.unions.online_authorizat
18966
19032
  export const onlineAuthorizationUpsertedV2 = T['io.flow.v0.models.online_authorization_upserted_v2'];
18967
19033
  export const onlinePaymentAuthorizationForm = T['io.flow.v0.models.online_payment_authorization_form'];
18968
19034
  export const operationsContact = T['io.flow.v0.models.operations_contact'];
18969
- export const optinResponse = T['io.flow.v0.models.optin_response'];
18970
- export const optinResponseType = T['io.flow.v0.enums.optin_response_type'];
18971
19035
  export const optionWeightEstimates = T['io.flow.v0.models.option_weight_estimates'];
18972
19036
  export const options = T['io.flow.v0.models.options'];
18973
19037
  export const order = T['io.flow.v0.models.order'];
@@ -19018,6 +19082,7 @@ export const orderNumberGeneratorUuid = T['io.flow.v0.models.order_number_genera
19018
19082
  export const orderNumberReference = T['io.flow.v0.models.order_number_reference'];
19019
19083
  export const orderOptions = T['io.flow.v0.models.order_options'];
19020
19084
  export const orderPayment = T['io.flow.v0.models.order_payment'];
19085
+ export const orderPaymentSourceType = T['io.flow.v0.enums.order_payment_source_type'];
19021
19086
  export const orderPaymentType = T['io.flow.v0.enums.order_payment_type'];
19022
19087
  export const orderPlaced = T['io.flow.v0.models.order_placed'];
19023
19088
  export const orderPlacedDetails = T['io.flow.v0.models.order_placed_details'];
@@ -19304,7 +19369,6 @@ export const priceBookDeleted = T['io.flow.v0.models.price_book_deleted'];
19304
19369
  export const priceBookForm = T['io.flow.v0.models.price_book_form'];
19305
19370
  export const priceBookItem = T['io.flow.v0.models.price_book_item'];
19306
19371
  export const priceBookItemDeleted = T['io.flow.v0.models.price_book_item_deleted'];
19307
- export const priceBookItemExportOptions = T['io.flow.v0.models.price_book_item_export_options'];
19308
19372
  export const priceBookItemExportType = T['io.flow.v0.models.price_book_item_export_type'];
19309
19373
  export const priceBookItemForm = T['io.flow.v0.models.price_book_item_form'];
19310
19374
  export const priceBookItemQueryForm = T['io.flow.v0.models.price_book_item_query_form'];
@@ -19343,9 +19407,6 @@ export const productRestrictionResult = T['io.flow.v0.models.product_restriction
19343
19407
  export const productRestrictionResultDeleted = T['io.flow.v0.models.product_restriction_result_deleted'];
19344
19408
  export const productRestrictionResultUpserted = T['io.flow.v0.models.product_restriction_result_upserted'];
19345
19409
  export const productRestrictionRule = T['io.flow.v0.enums.product_restriction_rule'];
19346
- export const productSellability = T['io.flow.v0.models.product_sellability'];
19347
- export const productSellabilityForm = T['io.flow.v0.models.product_sellability_form'];
19348
- export const productSellabilityPrice = T['io.flow.v0.models.product_sellability_price'];
19349
19410
  export const productTaxonomyCategory = T['io.flow.v0.models.product_taxonomy_category'];
19350
19411
  export const productTaxonomyData = T['io.flow.v0.models.product_taxonomy_data'];
19351
19412
  export const productUpdated = T['io.flow.v0.models.product_updated'];
@@ -19493,7 +19554,6 @@ export const rounding = T['io.flow.v0.models.rounding'];
19493
19554
  export const roundingMethod = T['io.flow.v0.enums.rounding_method'];
19494
19555
  export const roundingType = T['io.flow.v0.enums.rounding_type'];
19495
19556
  export const routeAudit = T['io.flow.v0.models.route_audit'];
19496
- export const ruleEffectType = T['io.flow.v0.enums.rule_effect_type'];
19497
19557
  export const schedule = T['io.flow.v0.models.schedule'];
19498
19558
  export const scheduleExceptionStatus = T['io.flow.v0.enums.schedule_exception_status'];
19499
19559
  export const scheduledExport = T['io.flow.v0.models.scheduled_export'];
@@ -19503,7 +19563,6 @@ export const sdkAdyenV3AuthenticationToken = T['io.flow.v0.unions.sdk_adyen_v3_a
19503
19563
  export const securityRatecardFee = T['io.flow.v0.models.security_ratecard_fee'];
19504
19564
  export const securityServiceFee = T['io.flow.v0.models.security_service_fee'];
19505
19565
  export const selectIssuerOptionActionDetails = T['io.flow.v0.models.select_issuer_option_action_details'];
19506
- export const sellablilityRegionResult = T['io.flow.v0.models.sellablility_region_result'];
19507
19566
  export const serviceDescription = T['io.flow.v0.unions.service_description'];
19508
19567
  export const serviceFee = T['io.flow.v0.unions.service_fee'];
19509
19568
  export const serviceReference = T['io.flow.v0.models.service_reference'];
@@ -19653,20 +19712,6 @@ export const surchargeResponsibleParty = T['io.flow.v0.enums.surcharge_responsib
19653
19712
  export const surchargeResponsiblePartyDisplay = T['io.flow.v0.models.surcharge_responsible_party_display'];
19654
19713
  export const surchargeSetting = T['io.flow.v0.models.surcharge_setting'];
19655
19714
  export const surchargeSettingDisplay = T['io.flow.v0.models.surcharge_setting_display'];
19656
- export const syncDuration = T['io.flow.v0.models.sync_duration'];
19657
- export const syncPendingRecord = T['io.flow.v0.models.sync_pending_record'];
19658
- export const syncRecord = T['io.flow.v0.models.sync_record'];
19659
- export const syncRecordFailure = T['io.flow.v0.models.sync_record_failure'];
19660
- export const syncRecordFailureForm = T['io.flow.v0.models.sync_record_failure_form'];
19661
- export const syncRecordFailureReason = T['io.flow.v0.enums.sync_record_failure_reason'];
19662
- export const syncRecordForm = T['io.flow.v0.models.sync_record_form'];
19663
- export const syncStream = T['io.flow.v0.models.sync_stream'];
19664
- export const syncStreamForm = T['io.flow.v0.models.sync_stream_form'];
19665
- export const syncStreamReference = T['io.flow.v0.models.sync_stream_reference'];
19666
- export const syncStreamSettings = T['io.flow.v0.models.sync_stream_settings'];
19667
- export const syncStreamSettingsForm = T['io.flow.v0.models.sync_stream_settings_form'];
19668
- export const syncStreamType = T['io.flow.v0.enums.sync_stream_type'];
19669
- export const syncUnitOfTime = T['io.flow.v0.enums.sync_unit_of_time'];
19670
19715
  export const tax = T['io.flow.v0.models.tax'];
19671
19716
  export const taxApplicability = T['io.flow.v0.enums.tax_applicability'];
19672
19717
  export const taxRegistration = T['io.flow.v0.models.tax_registration'];