@flowio/api-prop-types 10.16.92 → 10.16.93

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({
@@ -3127,6 +3140,122 @@ T['io.flow.stripe.v0.models.source_klarna_request'] = PropTypes.exact({
3127
3140
  });
3128
3141
 
3129
3142
  T['io.flow.stripe.v0.enums.three_d_secure_support'] = PropTypes.oneOf(['required', 'recommended', 'optional', 'not_supported']);
3143
+
3144
+ T['io.flow.stripe.v0.enums.shopify_payment_stripe_event_type'] = PropTypes.oneOf([
3145
+ 'charge.captured',
3146
+ 'charge.dispute.created',
3147
+ 'charge.dispute.closed',
3148
+ 'charge.dispute.funds_reinstated',
3149
+ 'charge.dispute.funds_withdrawn',
3150
+ 'charge.dispute.updated',
3151
+ 'charge.expired',
3152
+ 'charge.failed',
3153
+ 'charge.pending',
3154
+ 'charge.refund.updated',
3155
+ 'charge.refunded',
3156
+ 'charge.succeeded',
3157
+ 'charge.updated',
3158
+ 'payment_intent.amount_capturable_updated',
3159
+ 'payment_intent.canceled',
3160
+ 'payment_intent.created',
3161
+ 'payment_intent.partially_funded',
3162
+ 'payment_intent.payment_failed',
3163
+ 'payment_intent.processing',
3164
+ 'payment_intent.requires_action',
3165
+ 'payment_intent.succeeded',
3166
+ 'transfer.created',
3167
+ 'transfer.reversed',
3168
+ 'transfer.updated',
3169
+ 'reporting.report_run.succeeded',
3170
+ 'reporting.report_type.updated',
3171
+ 'reporting.report_type.failed',
3172
+ ]);
3173
+
3174
+ T['io.flow.stripe.v0.models.shopify_payment_stripe_event_data'] = PropTypes.exact({
3175
+ object: PropTypes.object,
3176
+ previous_attributes: PropTypes.object,
3177
+ });
3178
+
3179
+ T['io.flow.stripe.v0.models.shopify_payment_stripe_event'] = PropTypes.exact({
3180
+ id: PropTypes.string.isRequired,
3181
+ api_version: PropTypes.string,
3182
+ data: T['io.flow.stripe.v0.models.shopify_payment_stripe_event_data'].isRequired,
3183
+ request: PropTypes.object,
3184
+ type: T['io.flow.stripe.v0.enums.shopify_payment_stripe_event_type'].isRequired,
3185
+ object: PropTypes.string.isRequired,
3186
+ account: PropTypes.string,
3187
+ created: PropTypes.number.isRequired,
3188
+ livemode: PropTypes.bool.isRequired,
3189
+ pending_webhooks: PropTypes.number.isRequired,
3190
+ });
3191
+
3192
+ T['io.flow.stripe.v0.models.report_run_parameters'] = PropTypes.exact({
3193
+ interval_start: PropTypes.number.isRequired,
3194
+ interval_end: PropTypes.number.isRequired,
3195
+ columns: PropTypes.arrayOf(PropTypes.string),
3196
+ payout: PropTypes.string,
3197
+ connected_account: PropTypes.string,
3198
+ reporting_category: PropTypes.string,
3199
+ });
3200
+
3201
+ T['io.flow.stripe.v0.enums.reporting_report_type'] = PropTypes.oneOf([
3202
+ 'ending_balance_reconciliation.itemized.1',
3203
+ 'ending_balance_reconciliation.itemized.2',
3204
+ 'ending_balance_reconciliation.itemized.3',
3205
+ 'ending_balance_reconciliation.itemized.4',
3206
+ 'payout_reconciliation.itemized.5',
3207
+ 'payout_reconciliation.by_id.itemized.1',
3208
+ 'payout_reconciliation.by_id.itemized.2',
3209
+ 'payout_reconciliation.by_id.itemized.3',
3210
+ 'payout_reconciliation.by_id.itemized.4',
3211
+ 'payout_reconciliation.by_id.summary.1',
3212
+ 'ending_balance_reconciliation.summary.1',
3213
+ 'payout_reconciliation.itemized.1',
3214
+ 'payout_reconciliation.itemized.2',
3215
+ 'payout_reconciliation.itemized.3',
3216
+ 'payout_reconciliation.itemized.4',
3217
+ 'payout_reconciliation.summary.1',
3218
+ ]);
3219
+
3220
+ T['io.flow.stripe.v0.models.reporting_report_run_form'] = PropTypes.exact({
3221
+ report_type: T['io.flow.stripe.v0.enums.reporting_report_type'].isRequired,
3222
+ parameters: T['io.flow.stripe.v0.models.report_run_parameters'].isRequired,
3223
+ });
3224
+
3225
+ T['io.flow.stripe.v0.models.reporting_report_run_result'] = PropTypes.exact({
3226
+ id: PropTypes.string.isRequired,
3227
+ object: PropTypes.string.isRequired,
3228
+ created: PropTypes.number.isRequired,
3229
+ expires_at: PropTypes.number.isRequired,
3230
+ filename: PropTypes.string.isRequired,
3231
+ links: PropTypes.object.isRequired,
3232
+ purpose: PropTypes.string.isRequired,
3233
+ size: PropTypes.number.isRequired,
3234
+ title: PropTypes.string.isRequired,
3235
+ type: PropTypes.string.isRequired,
3236
+ url: PropTypes.string.isRequired,
3237
+ });
3238
+
3239
+ T['io.flow.stripe.v0.enums.reporting_report_run_status'] = PropTypes.oneOf(['pending', 'succeeded', 'failed']);
3240
+
3241
+ T['io.flow.stripe.v0.models.reporting_report_run'] = PropTypes.exact({
3242
+ id: PropTypes.string.isRequired,
3243
+ object: PropTypes.string.isRequired,
3244
+ created: PropTypes.number.isRequired,
3245
+ error: PropTypes.string,
3246
+ livemode: PropTypes.bool.isRequired,
3247
+ status: T['io.flow.stripe.v0.enums.reporting_report_run_status'].isRequired,
3248
+ result: T['io.flow.stripe.v0.models.reporting_report_run_result'],
3249
+ succeeded_at: PropTypes.number,
3250
+ });
3251
+
3252
+ T['io.flow.stripe.v0.models.reporting_report_runs'] = PropTypes.exact({
3253
+ object: PropTypes.string.isRequired,
3254
+ data: PropTypes.arrayOf(T['io.flow.stripe.v0.models.reporting_report_run']).isRequired,
3255
+ has_more: PropTypes.bool.isRequired,
3256
+ url: PropTypes.string,
3257
+ });
3258
+
3130
3259
  T['io.flow.stripe.v0.enums.refund_reason'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
3131
3260
 
3132
3261
  T['io.flow.stripe.v0.enums.refund_failure_reason'] = PropTypes.oneOf([
@@ -5111,6 +5240,14 @@ T['io.flow.v0.models.hs6_code_upserted'] = PropTypes.exact({
5111
5240
  code: PropTypes.string.isRequired,
5112
5241
  });
5113
5242
 
5243
+ T['io.flow.v0.models.ge_product_restriction_result_deleted'] = PropTypes.exact({
5244
+ discriminator: PropTypes.oneOf(['ge_product_restriction_result_deleted']).isRequired,
5245
+ event_id: PropTypes.string.isRequired,
5246
+ timestamp: PropTypes.string.isRequired,
5247
+ organization: PropTypes.string.isRequired,
5248
+ id: PropTypes.string.isRequired,
5249
+ });
5250
+
5114
5251
  T['io.flow.v0.models.shipping_configuration_deleted'] = PropTypes.exact({
5115
5252
  discriminator: PropTypes.oneOf(['shipping_configuration_deleted']).isRequired,
5116
5253
  event_id: PropTypes.string.isRequired,
@@ -5472,6 +5609,13 @@ T['io.flow.v0.models.organization_transaction_deleted'] = PropTypes.exact({
5472
5609
  id: PropTypes.string.isRequired,
5473
5610
  });
5474
5611
 
5612
+ T['io.flow.v0.models.ansh_item_deleted'] = PropTypes.exact({
5613
+ discriminator: PropTypes.oneOf(['ansh_item_deleted']).isRequired,
5614
+ event_id: PropTypes.string.isRequired,
5615
+ timestamp: PropTypes.string.isRequired,
5616
+ id: PropTypes.string.isRequired,
5617
+ });
5618
+
5475
5619
  T['io.flow.v0.models.aldo_item_deleted'] = PropTypes.exact({
5476
5620
  discriminator: PropTypes.oneOf(['aldo_item_deleted']).isRequired,
5477
5621
  event_id: PropTypes.string.isRequired,
@@ -5488,6 +5632,14 @@ T['io.flow.v0.models.generate_load'] = PropTypes.exact({
5488
5632
  num_tests: PropTypes.number.isRequired,
5489
5633
  });
5490
5634
 
5635
+ T['io.flow.v0.models.authorization_retry_deleted'] = PropTypes.exact({
5636
+ discriminator: PropTypes.oneOf(['authorization_retry_deleted']).isRequired,
5637
+ event_id: PropTypes.string.isRequired,
5638
+ timestamp: PropTypes.string.isRequired,
5639
+ organization: PropTypes.string.isRequired,
5640
+ id: PropTypes.string.isRequired,
5641
+ });
5642
+
5491
5643
  T['io.flow.v0.models.bank_account_form_simple'] = PropTypes.exact({
5492
5644
  discriminator: PropTypes.oneOf(['simple']).isRequired,
5493
5645
  routing_number: PropTypes.string.isRequired,
@@ -5669,6 +5821,8 @@ T['io.flow.v0.enums.tracking_status'] = PropTypes.oneOf([
5669
5821
  'exception',
5670
5822
  'returned',
5671
5823
  'expired',
5824
+ 'unknown',
5825
+ 'unmapped',
5672
5826
  ]);
5673
5827
 
5674
5828
  T['io.flow.v0.models.tracking_summary'] = PropTypes.exact({
@@ -5755,78 +5909,6 @@ T['io.flow.v0.models.repeat_hourly'] = PropTypes.exact({
5755
5909
  interval: PropTypes.number.isRequired,
5756
5910
  });
5757
5911
 
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
5912
  T['io.flow.v0.enums.surcharge_responsible_party'] = PropTypes.oneOf(['organization', 'customer']);
5831
5913
 
5832
5914
  T['io.flow.v0.models.surcharge_responsible_party_display'] = PropTypes.exact({
@@ -6286,90 +6368,8 @@ T['io.flow.v0.models.query_filter_structured'] = PropTypes.exact({
6286
6368
  values: PropTypes.arrayOf(PropTypes.string).isRequired,
6287
6369
  });
6288
6370
 
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
6371
  T['io.flow.v0.enums.restricted_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
6310
6372
 
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
6373
  T['io.flow.v0.models.product_taxonomy_data'] = PropTypes.exact({
6374
6374
  key: PropTypes.string.isRequired,
6375
6375
  value: PropTypes.arrayOf(PropTypes.string).isRequired,
@@ -6380,16 +6380,6 @@ T['io.flow.v0.models.product_taxonomy_category'] = PropTypes.exact({
6380
6380
  full_name: PropTypes.string.isRequired,
6381
6381
  });
6382
6382
 
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
6383
  T['io.flow.v0.models.product'] = PropTypes.exact({
6394
6384
  organization_id: PropTypes.string.isRequired,
6395
6385
  number: PropTypes.string.isRequired,
@@ -6464,11 +6454,6 @@ T['io.flow.v0.enums.price_detail_component_key'] = PropTypes.oneOf([
6464
6454
  ]);
6465
6455
 
6466
6456
  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
6457
  T['io.flow.v0.enums.price_book_status'] = PropTypes.oneOf(['draft', 'published', 'archived']);
6473
6458
  T['io.flow.v0.enums.preferred_service_selection_strategy'] = PropTypes.oneOf(['calculated_rate', 'flat_rate', 'custom_rate']);
6474
6459
 
@@ -7866,6 +7851,76 @@ T['io.flow.v0.models.harmonization_document'] = PropTypes.exact({
7866
7851
  origin: PropTypes.string,
7867
7852
  });
7868
7853
 
7854
+ T['io.flow.v0.enums.product_restriction_rule'] = PropTypes.oneOf([
7855
+ 'Adult Products',
7856
+ 'Alcohol',
7857
+ 'Anti Money Laundering',
7858
+ 'Collagen',
7859
+ 'Consumer Safety',
7860
+ 'Cosmetics',
7861
+ 'DG - Batteries',
7862
+ 'DG - Hazmat',
7863
+ 'Drugs',
7864
+ 'Dual Use',
7865
+ 'Fine Art',
7866
+ 'Fish & Wildlife - CITES',
7867
+ 'Fish & Wildlife - Plant',
7868
+ 'Fish & Wildlife - USFWS',
7869
+ 'Food',
7870
+ 'Gambling',
7871
+ 'Health',
7872
+ 'Human hair',
7873
+ 'Insufficient Details',
7874
+ 'Intangible',
7875
+ 'Jewelry',
7876
+ 'Jewelry & Watches Over 5000',
7877
+ 'Knives',
7878
+ 'Liquids',
7879
+ 'Oversized',
7880
+ 'Restrict by Default',
7881
+ 'Supplements',
7882
+ 'Tattoo Ink And PMU',
7883
+ 'Weapon',
7884
+ 'Wood',
7885
+ ]);
7886
+
7887
+ T['io.flow.v0.enums.review_status'] = PropTypes.oneOf(['high_risk_in_review', 'low_risk_in_review', 'reviewed']);
7888
+
7889
+ T['io.flow.v0.models.reasons_per_region'] = PropTypes.exact({
7890
+ region: PropTypes.string.isRequired,
7891
+ reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
7892
+ review_status: T['io.flow.v0.enums.restricted_review_status'].isRequired,
7893
+ });
7894
+
7895
+ T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
7896
+ id: PropTypes.string.isRequired,
7897
+ product_id: PropTypes.string.isRequired,
7898
+ item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
7899
+ prohibited_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
7900
+ reasons_per_region: PropTypes.arrayOf(T['io.flow.v0.models.reasons_per_region']),
7901
+ review_status: T['io.flow.v0.enums.review_status'],
7902
+ rules: PropTypes.arrayOf(T['io.flow.v0.enums.product_restriction_rule']),
7903
+ updated_by: PropTypes.string,
7904
+ product_restriction_id: PropTypes.string,
7905
+ hs_code: PropTypes.string,
7906
+ });
7907
+
7908
+ T['io.flow.v0.models.product_restriction_result_upserted'] = PropTypes.exact({
7909
+ discriminator: PropTypes.oneOf(['product_restriction_result_upserted']).isRequired,
7910
+ event_id: PropTypes.string.isRequired,
7911
+ timestamp: PropTypes.string.isRequired,
7912
+ organization: PropTypes.string.isRequired,
7913
+ product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
7914
+ });
7915
+
7916
+ T['io.flow.v0.models.ge_product_restriction_result_upserted'] = PropTypes.exact({
7917
+ discriminator: PropTypes.oneOf(['ge_product_restriction_result_upserted']).isRequired,
7918
+ event_id: PropTypes.string.isRequired,
7919
+ timestamp: PropTypes.string.isRequired,
7920
+ organization: PropTypes.string.isRequired,
7921
+ ge_product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
7922
+ });
7923
+
7869
7924
  T['io.flow.v0.enums.fulfillment_item_quantity_status'] = PropTypes.oneOf(['new', 'shipped', 'cancelled']);
7870
7925
 
7871
7926
  T['io.flow.v0.models.fulfillment_line_cancel_form'] = PropTypes.exact({
@@ -9106,6 +9161,7 @@ T['io.flow.v0.models.card_payment_source_form'] = PropTypes.exact({
9106
9161
  card_id: PropTypes.string.isRequired,
9107
9162
  });
9108
9163
 
9164
+ T['io.flow.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
9109
9165
  T['io.flow.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.v0.models.device_details_browser']]);
9110
9166
 
9111
9167
  T['io.flow.v0.models.order_options'] = PropTypes.exact({
@@ -9434,7 +9490,7 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
9434
9490
  'virtual_card_refund',
9435
9491
  'failed_payout',
9436
9492
  'tax_refund',
9437
- 'order_fx',
9493
+ 'non_l4l_tax_duty_fx',
9438
9494
  'ge_revenue_share',
9439
9495
  'tax_duty_delta',
9440
9496
  ]);
@@ -11256,6 +11312,25 @@ T['io.flow.v0.models.query_builder'] = PropTypes.exact({
11256
11312
  available: PropTypes.arrayOf(T['io.flow.v0.unions.available_filter']).isRequired,
11257
11313
  });
11258
11314
 
11315
+ T['io.flow.v0.models.authorization_retry'] = PropTypes.exact({
11316
+ id: PropTypes.string.isRequired,
11317
+ authorization_request_id: PropTypes.string.isRequired,
11318
+ authorization_id: PropTypes.string.isRequired,
11319
+ organization_id: PropTypes.string.isRequired,
11320
+ attempt: PropTypes.number.isRequired,
11321
+ last_failure_code: PropTypes.string.isRequired,
11322
+ created_at: PropTypes.string.isRequired,
11323
+ updated_at: PropTypes.string.isRequired,
11324
+ });
11325
+
11326
+ T['io.flow.v0.models.authorization_retry_upserted'] = PropTypes.exact({
11327
+ discriminator: PropTypes.oneOf(['authorization_retry_upserted']).isRequired,
11328
+ event_id: PropTypes.string.isRequired,
11329
+ timestamp: PropTypes.string.isRequired,
11330
+ organization: PropTypes.string.isRequired,
11331
+ authorization_retry: T['io.flow.v0.models.authorization_retry'].isRequired,
11332
+ });
11333
+
11259
11334
  T['io.flow.v0.models.select_issuer_option_action_details'] = PropTypes.exact({
11260
11335
  discriminator: PropTypes.oneOf(['select_issuer_option_action_details']).isRequired,
11261
11336
  issuer_options: PropTypes.arrayOf(T['io.flow.v0.models.issuer_reference']).isRequired,
@@ -11778,6 +11853,8 @@ T['io.flow.v0.models.channel_statement_deleted'] = PropTypes.exact({
11778
11853
  channel_statement: T['io.flow.v0.models.channel_statement'].isRequired,
11779
11854
  });
11780
11855
 
11856
+ T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
11857
+
11781
11858
  T['io.flow.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
11782
11859
  'adjustment',
11783
11860
  'subtotal',
@@ -12486,15 +12563,6 @@ T['io.flow.tech.onboarding.playground.v0.models.ansh_item_form'] = PropTypes.exa
12486
12563
  added_on: PropTypes.string.isRequired,
12487
12564
  });
12488
12565
 
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
12566
  T['io.flow.tech.onboarding.playground.v0.models.aldo_item_form'] = PropTypes.exact({
12499
12567
  number: PropTypes.string.isRequired,
12500
12568
  amount: T['io.flow.common.v0.models.price'].isRequired,
@@ -12819,6 +12887,22 @@ T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
12819
12887
  item: T['io.flow.catalog.v0.models.item'].isRequired,
12820
12888
  });
12821
12889
 
12890
+ T['io.flow.tech.onboarding.playground.v0.models.ansh_item'] = PropTypes.exact({
12891
+ id: PropTypes.string.isRequired,
12892
+ number: PropTypes.string.isRequired,
12893
+ amount: T['io.flow.common.v0.models.price'].isRequired,
12894
+ description: PropTypes.string,
12895
+ type: T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'].isRequired,
12896
+ added_on: PropTypes.string.isRequired,
12897
+ });
12898
+
12899
+ T['io.flow.v0.models.ansh_item_upserted'] = PropTypes.exact({
12900
+ discriminator: PropTypes.oneOf(['ansh_item_upserted']).isRequired,
12901
+ event_id: PropTypes.string.isRequired,
12902
+ timestamp: PropTypes.string.isRequired,
12903
+ item: T['io.flow.tech.onboarding.playground.v0.models.ansh_item'].isRequired,
12904
+ });
12905
+
12822
12906
  T['io.flow.tech.onboarding.playground.v0.models.aldo_item'] = PropTypes.exact({
12823
12907
  id: PropTypes.string.isRequired,
12824
12908
  number: PropTypes.string.isRequired,
@@ -14317,6 +14401,30 @@ T['io.flow.v0.models.item_deleted'] = PropTypes.exact({
14317
14401
  item: T['io.flow.v0.models.item'].isRequired,
14318
14402
  });
14319
14403
 
14404
+ T['io.flow.v0.models.ge_item_updated'] = PropTypes.exact({
14405
+ discriminator: PropTypes.oneOf(['ge_item_updated']).isRequired,
14406
+ event_id: PropTypes.string.isRequired,
14407
+ timestamp: PropTypes.string.isRequired,
14408
+ organization: PropTypes.string.isRequired,
14409
+ item: T['io.flow.v0.models.item'].isRequired,
14410
+ });
14411
+
14412
+ T['io.flow.v0.models.ge_item_inserted'] = PropTypes.exact({
14413
+ discriminator: PropTypes.oneOf(['ge_item_inserted']).isRequired,
14414
+ event_id: PropTypes.string.isRequired,
14415
+ timestamp: PropTypes.string.isRequired,
14416
+ organization: PropTypes.string.isRequired,
14417
+ item: T['io.flow.v0.models.item'].isRequired,
14418
+ });
14419
+
14420
+ T['io.flow.v0.models.ge_item_deleted'] = PropTypes.exact({
14421
+ discriminator: PropTypes.oneOf(['ge_item_deleted']).isRequired,
14422
+ event_id: PropTypes.string.isRequired,
14423
+ timestamp: PropTypes.string.isRequired,
14424
+ organization: PropTypes.string.isRequired,
14425
+ item: T['io.flow.v0.models.item'].isRequired,
14426
+ });
14427
+
14320
14428
  T['io.flow.v0.models.checkout_item_content'] = PropTypes.exact({
14321
14429
  item: T['io.flow.v0.models.item'].isRequired,
14322
14430
  name: PropTypes.string.isRequired,
@@ -14978,22 +15086,6 @@ T['io.flow.v0.models.local_item'] = PropTypes.exact({
14978
15086
  attributes: PropTypes.objectOf(PropTypes.string),
14979
15087
  });
14980
15088
 
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
15089
  T['io.flow.v0.models.fulfillment'] = PropTypes.exact({
14998
15090
  organization: PropTypes.string.isRequired,
14999
15091
  key: PropTypes.string.isRequired,
@@ -15500,6 +15592,7 @@ T['io.flow.v0.models.order'] = PropTypes.exact({
15500
15592
  device_details: T['io.flow.v0.unions.device_details'],
15501
15593
  destination_contact_details: PropTypes.arrayOf(T['io.flow.v0.models.destination_contact_detail']),
15502
15594
  incoterm_summary: T['io.flow.v0.models.incoterm_summary'],
15595
+ payment_source: T['io.flow.v0.enums.order_payment_source_type'],
15503
15596
  });
15504
15597
 
15505
15598
  T['io.flow.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
@@ -15669,6 +15762,7 @@ T['io.flow.v0.models.online_authorization'] = PropTypes.exact({
15669
15762
  processor: T['io.flow.v0.unions.expandable_payment_processor'],
15670
15763
  confirmation_details: T['io.flow.v0.unions.confirmation_details'],
15671
15764
  authorized_at: PropTypes.string,
15765
+ authorization_request_id: PropTypes.string,
15672
15766
  });
15673
15767
 
15674
15768
  T['io.flow.v0.models.online_authorization_upserted_v2'] = PropTypes.exact({
@@ -15772,6 +15866,7 @@ T['io.flow.v0.models.card_authorization'] = PropTypes.exact({
15772
15866
  processor: T['io.flow.v0.unions.expandable_payment_processor'],
15773
15867
  stored_method_usage_step: T['io.flow.v0.enums.stored_method_usage_step'],
15774
15868
  authorized_at: PropTypes.string,
15869
+ authorization_request_id: PropTypes.string,
15775
15870
  });
15776
15871
 
15777
15872
  T['io.flow.v0.models.card_authorization_upserted_v2'] = PropTypes.exact({
@@ -16032,6 +16127,7 @@ T['io.flow.v0.models.order_put_form'] = PropTypes.exact({
16032
16127
  authorization_keys: PropTypes.arrayOf(PropTypes.string),
16033
16128
  options: T['io.flow.v0.models.order_options'],
16034
16129
  device_details: T['io.flow.v0.unions.device_details'],
16130
+ payment_source: T['io.flow.v0.enums.order_payment_source_type'],
16035
16131
  });
16036
16132
 
16037
16133
  T['io.flow.v0.models.order_estimate_form'] = PropTypes.exact({
@@ -16064,6 +16160,7 @@ T['io.flow.v0.models.order_form'] = PropTypes.exact({
16064
16160
  authorization_keys: PropTypes.arrayOf(PropTypes.string),
16065
16161
  options: T['io.flow.v0.models.order_options'],
16066
16162
  device_details: T['io.flow.v0.unions.device_details'],
16163
+ payment_source: T['io.flow.v0.enums.order_payment_source_type'],
16067
16164
  });
16068
16165
 
16069
16166
  T['io.flow.v0.models.order_with_discounts_form'] = PropTypes.exact({
@@ -16273,10 +16370,14 @@ T['io.flow.v0.models.label_deleted_v2'] = PropTypes.exact({
16273
16370
  });
16274
16371
 
16275
16372
  T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16373
+ T['io.flow.v0.models.authorization_retry_upserted'],
16374
+ T['io.flow.v0.models.authorization_retry_deleted'],
16276
16375
  T['io.flow.v0.models.test_upserted'],
16277
16376
  T['io.flow.v0.models.generate_load'],
16278
16377
  T['io.flow.v0.models.aldo_item_upserted'],
16279
16378
  T['io.flow.v0.models.aldo_item_deleted'],
16379
+ T['io.flow.v0.models.ansh_item_upserted'],
16380
+ T['io.flow.v0.models.ansh_item_deleted'],
16280
16381
  T['io.flow.v0.models.transaction_upserted'],
16281
16382
  T['io.flow.v0.models.organization_transaction_upserted'],
16282
16383
  T['io.flow.v0.models.organization_transaction_deleted'],
@@ -16386,6 +16487,11 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16386
16487
  T['io.flow.v0.models.shipping_configuration_item_availability_deleted'],
16387
16488
  T['io.flow.v0.models.shipping_configuration_item_shipping_pricing_upserted'],
16388
16489
  T['io.flow.v0.models.shipping_configuration_item_shipping_pricing_deleted'],
16490
+ T['io.flow.v0.models.ge_item_inserted'],
16491
+ T['io.flow.v0.models.ge_item_updated'],
16492
+ T['io.flow.v0.models.ge_item_deleted'],
16493
+ T['io.flow.v0.models.ge_product_restriction_result_upserted'],
16494
+ T['io.flow.v0.models.ge_product_restriction_result_deleted'],
16389
16495
  T['io.flow.v0.models.hs6_code_upserted'],
16390
16496
  T['io.flow.v0.models.hs6_code_deleted'],
16391
16497
  T['io.flow.v0.models.hs10_code_upserted'],
@@ -16405,8 +16511,6 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16405
16511
  T['io.flow.v0.models.manifested_label_deleted'],
16406
16512
  T['io.flow.v0.models.label_processing_modification_upserted'],
16407
16513
  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
16514
  T['io.flow.v0.models.merchant_application_upserted'],
16411
16515
  T['io.flow.v0.models.merchant_application_deleted'],
16412
16516
  T['io.flow.v0.models.checkout_optin_responses_upserted'],
@@ -16662,10 +16766,14 @@ T['io.flow.v0.models.abandoned_order_settings'] = PropTypes.exact({
16662
16766
  T['io.flow.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
16663
16767
 
16664
16768
  T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16769
+ 'authorization_retry_upserted',
16770
+ 'authorization_retry_deleted',
16665
16771
  'test_upserted',
16666
16772
  'generate_load',
16667
16773
  'aldo_item_upserted',
16668
16774
  'aldo_item_deleted',
16775
+ 'ansh_item_upserted',
16776
+ 'ansh_item_deleted',
16669
16777
  'transaction_upserted',
16670
16778
  'organization_transaction_upserted',
16671
16779
  'organization_transaction_deleted',
@@ -16775,6 +16883,11 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16775
16883
  'shipping_configuration_item_availability_deleted',
16776
16884
  'shipping_configuration_item_shipping_pricing_upserted',
16777
16885
  'shipping_configuration_item_shipping_pricing_deleted',
16886
+ 'ge_item_inserted',
16887
+ 'ge_item_updated',
16888
+ 'ge_item_deleted',
16889
+ 'ge_product_restriction_result_upserted',
16890
+ 'ge_product_restriction_result_deleted',
16778
16891
  'hs6_code_upserted',
16779
16892
  'hs6_code_deleted',
16780
16893
  'hs10_code_upserted',
@@ -16794,8 +16907,6 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16794
16907
  'manifested_label_deleted',
16795
16908
  'label_processing_modification_upserted',
16796
16909
  'label_processing_modification_deleted',
16797
- 'local_item_upserted',
16798
- 'local_item_deleted',
16799
16910
  'merchant_application_upserted',
16800
16911
  'merchant_application_deleted',
16801
16912
  'checkout_optin_responses_upserted',
@@ -17567,12 +17678,6 @@ T['io.flow.v0.models.suggestion'] = PropTypes.exact({
17567
17678
  count: PropTypes.number.isRequired,
17568
17679
  });
17569
17680
 
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
17681
  T['io.flow.v0.models.tax_registration_form'] = PropTypes.exact({
17577
17682
  number: PropTypes.string.isRequired,
17578
17683
  company_name: PropTypes.string,
@@ -17766,6 +17871,11 @@ T['io.flow.shopify.external.v0.models.count'] = PropTypes.exact({
17766
17871
  count: PropTypes.number.isRequired,
17767
17872
  });
17768
17873
 
17874
+ T['io.flow.shopify.external.v0.models.graphql_metaobject'] = PropTypes.exact({
17875
+ id: PropTypes.string.isRequired,
17876
+ displayName: PropTypes.string.isRequired,
17877
+ });
17878
+
17769
17879
  T['io.flow.shopify.external.v0.models.product_delete'] = PropTypes.exact({
17770
17880
  id: PropTypes.number.isRequired,
17771
17881
  });
@@ -18015,13 +18125,6 @@ T['io.flow.tech.onboarding.playground.v0.models.jean_demo_item'] = PropTypes.exa
18015
18125
  name: PropTypes.string.isRequired,
18016
18126
  });
18017
18127
 
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
18128
  T['io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description'] = PropTypes.exact({
18026
18129
  description: PropTypes.string.isRequired,
18027
18130
  });
@@ -18153,6 +18256,8 @@ export const allocationV2 = T['io.flow.v0.models.allocation_v2'];
18153
18256
  export const amountMargin = T['io.flow.v0.models.amount_margin'];
18154
18257
  export const amountMarginForm = T['io.flow.v0.models.amount_margin_form'];
18155
18258
  export const analyticsExportType = T['io.flow.v0.models.analytics_export_type'];
18259
+ export const anshItemDeleted = T['io.flow.v0.models.ansh_item_deleted'];
18260
+ export const anshItemUpserted = T['io.flow.v0.models.ansh_item_upserted'];
18156
18261
  export const applePayMerchantValidationPayload = T['io.flow.v0.models.apple_pay_merchant_validation_payload'];
18157
18262
  export const applepaySdkCreateResultActionDetails = T['io.flow.v0.models.applepay_sdk_create_result_action_details'];
18158
18263
  export const applepaySdkValidateResultActionDetails = T['io.flow.v0.models.applepay_sdk_validate_result_action_details'];
@@ -18192,6 +18297,9 @@ export const authorizationResultActionPost = T['io.flow.v0.models.authorization_
18192
18297
  export const authorizationResultActionType = T['io.flow.v0.enums.authorization_result_action_type'];
18193
18298
  export const authorizationResultActionWait = T['io.flow.v0.models.authorization_result_action_wait'];
18194
18299
  export const authorizationResultDescription = T['io.flow.v0.models.authorization_result_description'];
18300
+ export const authorizationRetry = T['io.flow.v0.models.authorization_retry'];
18301
+ export const authorizationRetryDeleted = T['io.flow.v0.models.authorization_retry_deleted'];
18302
+ export const authorizationRetryUpserted = T['io.flow.v0.models.authorization_retry_upserted'];
18195
18303
  export const authorizationStatus = T['io.flow.v0.enums.authorization_status'];
18196
18304
  export const authorizationStatusChanged = T['io.flow.v0.models.authorization_status_changed'];
18197
18305
  export const authorizationVersion = T['io.flow.v0.models.authorization_version'];
@@ -18711,6 +18819,11 @@ export const fulfillmentRouting = T['io.flow.v0.enums.fulfillment_routing'];
18711
18819
  export const fullyHarmonizedItemUpserted = T['io.flow.v0.models.fully_harmonized_item_upserted'];
18712
18820
  export const gatewayAuthenticationData = T['io.flow.v0.unions.gateway_authentication_data'];
18713
18821
  export const gatewayAuthenticationDataForm = T['io.flow.v0.unions.gateway_authentication_data_form'];
18822
+ export const geItemDeleted = T['io.flow.v0.models.ge_item_deleted'];
18823
+ export const geItemInserted = T['io.flow.v0.models.ge_item_inserted'];
18824
+ export const geItemUpdated = T['io.flow.v0.models.ge_item_updated'];
18825
+ export const geProductRestrictionResultDeleted = T['io.flow.v0.models.ge_product_restriction_result_deleted'];
18826
+ export const geProductRestrictionResultUpserted = T['io.flow.v0.models.ge_product_restriction_result_upserted'];
18714
18827
  export const generateLoad = T['io.flow.v0.models.generate_load'];
18715
18828
  export const genericError = T['io.flow.v0.models.generic_error'];
18716
18829
  export const genericErrorCode = T['io.flow.v0.enums.generic_error_code'];
@@ -18872,9 +18985,7 @@ export const link = T['io.flow.v0.models.link'];
18872
18985
  export const local = T['io.flow.v0.models.local'];
18873
18986
  export const localItem = T['io.flow.v0.models.local_item'];
18874
18987
  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
18988
  export const localItemPricing = T['io.flow.v0.models.local_item_pricing'];
18877
- export const localItemUpserted = T['io.flow.v0.models.local_item_upserted'];
18878
18989
  export const localPriceDetails = T['io.flow.v0.models.local_price_details'];
18879
18990
  export const localSession = T['io.flow.v0.models.local_session'];
18880
18991
  export const locale = T['io.flow.v0.models.locale'];
@@ -19018,6 +19129,7 @@ export const orderNumberGeneratorUuid = T['io.flow.v0.models.order_number_genera
19018
19129
  export const orderNumberReference = T['io.flow.v0.models.order_number_reference'];
19019
19130
  export const orderOptions = T['io.flow.v0.models.order_options'];
19020
19131
  export const orderPayment = T['io.flow.v0.models.order_payment'];
19132
+ export const orderPaymentSourceType = T['io.flow.v0.enums.order_payment_source_type'];
19021
19133
  export const orderPaymentType = T['io.flow.v0.enums.order_payment_type'];
19022
19134
  export const orderPlaced = T['io.flow.v0.models.order_placed'];
19023
19135
  export const orderPlacedDetails = T['io.flow.v0.models.order_placed_details'];
@@ -19304,7 +19416,6 @@ export const priceBookDeleted = T['io.flow.v0.models.price_book_deleted'];
19304
19416
  export const priceBookForm = T['io.flow.v0.models.price_book_form'];
19305
19417
  export const priceBookItem = T['io.flow.v0.models.price_book_item'];
19306
19418
  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
19419
  export const priceBookItemExportType = T['io.flow.v0.models.price_book_item_export_type'];
19309
19420
  export const priceBookItemForm = T['io.flow.v0.models.price_book_item_form'];
19310
19421
  export const priceBookItemQueryForm = T['io.flow.v0.models.price_book_item_query_form'];
@@ -19343,9 +19454,6 @@ export const productRestrictionResult = T['io.flow.v0.models.product_restriction
19343
19454
  export const productRestrictionResultDeleted = T['io.flow.v0.models.product_restriction_result_deleted'];
19344
19455
  export const productRestrictionResultUpserted = T['io.flow.v0.models.product_restriction_result_upserted'];
19345
19456
  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
19457
  export const productTaxonomyCategory = T['io.flow.v0.models.product_taxonomy_category'];
19350
19458
  export const productTaxonomyData = T['io.flow.v0.models.product_taxonomy_data'];
19351
19459
  export const productUpdated = T['io.flow.v0.models.product_updated'];
@@ -19493,7 +19601,6 @@ export const rounding = T['io.flow.v0.models.rounding'];
19493
19601
  export const roundingMethod = T['io.flow.v0.enums.rounding_method'];
19494
19602
  export const roundingType = T['io.flow.v0.enums.rounding_type'];
19495
19603
  export const routeAudit = T['io.flow.v0.models.route_audit'];
19496
- export const ruleEffectType = T['io.flow.v0.enums.rule_effect_type'];
19497
19604
  export const schedule = T['io.flow.v0.models.schedule'];
19498
19605
  export const scheduleExceptionStatus = T['io.flow.v0.enums.schedule_exception_status'];
19499
19606
  export const scheduledExport = T['io.flow.v0.models.scheduled_export'];
@@ -19503,7 +19610,6 @@ export const sdkAdyenV3AuthenticationToken = T['io.flow.v0.unions.sdk_adyen_v3_a
19503
19610
  export const securityRatecardFee = T['io.flow.v0.models.security_ratecard_fee'];
19504
19611
  export const securityServiceFee = T['io.flow.v0.models.security_service_fee'];
19505
19612
  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
19613
  export const serviceDescription = T['io.flow.v0.unions.service_description'];
19508
19614
  export const serviceFee = T['io.flow.v0.unions.service_fee'];
19509
19615
  export const serviceReference = T['io.flow.v0.models.service_reference'];
@@ -19653,20 +19759,6 @@ export const surchargeResponsibleParty = T['io.flow.v0.enums.surcharge_responsib
19653
19759
  export const surchargeResponsiblePartyDisplay = T['io.flow.v0.models.surcharge_responsible_party_display'];
19654
19760
  export const surchargeSetting = T['io.flow.v0.models.surcharge_setting'];
19655
19761
  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
19762
  export const tax = T['io.flow.v0.models.tax'];
19671
19763
  export const taxApplicability = T['io.flow.v0.enums.tax_applicability'];
19672
19764
  export const taxRegistration = T['io.flow.v0.models.tax_registration'];