@flowio/api-internal-prop-types 9.24.134 → 9.24.136
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/lib/api-internal.d.ts +535 -95
- package/lib/api-internal.js +1 -1
- package/package.json +1 -1
- package/src/api-internal.d.ts +535 -95
- package/src/api-internal.js +857 -357
package/src/api-internal.js
CHANGED
|
@@ -65,8 +65,6 @@ T['io.flow.organization.v0.models.country_picker'] = PropTypes.exact({
|
|
|
65
65
|
source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
|
|
66
66
|
});
|
|
67
67
|
|
|
68
|
-
T['io.flow.sellability.v0.enums.sellability_screening_mode'] = PropTypes.oneOf(['pre_onboarding', 'default_on', 'active']);
|
|
69
|
-
|
|
70
68
|
T['io.flow.sellability.v0.models.sellability_reason_with_regions'] = PropTypes.exact({
|
|
71
69
|
reason: PropTypes.string.isRequired,
|
|
72
70
|
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -181,6 +179,12 @@ T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'] = PropT
|
|
|
181
179
|
|
|
182
180
|
T['io.flow.billing.v0.enums.statement_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
|
|
183
181
|
|
|
182
|
+
T['io.flow.billing.v0.models.transaction_metadata_flat_rate_label'] = PropTypes.exact({
|
|
183
|
+
discriminator: PropTypes.oneOf(['flat_rate_label']).isRequired,
|
|
184
|
+
flat_rate: PropTypes.number,
|
|
185
|
+
coefficient: PropTypes.number,
|
|
186
|
+
});
|
|
187
|
+
|
|
184
188
|
T['io.flow.billing.v0.models.transaction_metadata_merchant_fee'] = PropTypes.exact({
|
|
185
189
|
discriminator: PropTypes.oneOf(['merchant_fee']).isRequired,
|
|
186
190
|
items: PropTypes.arrayOf(T['io.flow.billing.v0.models.transaction_metadata_merchant_fee_item']).isRequired,
|
|
@@ -2836,11 +2840,6 @@ T['io.flow.shopify.external.v0.models.graphql_metafield'] = PropTypes.exact({
|
|
|
2836
2840
|
type: PropTypes.string,
|
|
2837
2841
|
});
|
|
2838
2842
|
|
|
2839
|
-
T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'] = PropTypes.exact({
|
|
2840
|
-
name: PropTypes.string.isRequired,
|
|
2841
|
-
fullName: PropTypes.string.isRequired,
|
|
2842
|
-
});
|
|
2843
|
-
|
|
2844
2843
|
T['io.flow.shopify.external.v0.models.graphql_option'] = PropTypes.exact({
|
|
2845
2844
|
id: PropTypes.string.isRequired,
|
|
2846
2845
|
values: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -2899,6 +2898,15 @@ T['io.flow.shopify.external.v0.models.graphql_product_variant'] = PropTypes.exac
|
|
|
2899
2898
|
inventoryItem: T['io.flow.shopify.external.v0.models.graphql_inventory_item'].isRequired,
|
|
2900
2899
|
});
|
|
2901
2900
|
|
|
2901
|
+
T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'] = PropTypes.exact({
|
|
2902
|
+
name: PropTypes.string.isRequired,
|
|
2903
|
+
fullName: PropTypes.string.isRequired,
|
|
2904
|
+
});
|
|
2905
|
+
|
|
2906
|
+
T['io.flow.shopify.external.v0.models.graphql_inferred_product_category'] = PropTypes.exact({
|
|
2907
|
+
category: T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'],
|
|
2908
|
+
});
|
|
2909
|
+
|
|
2902
2910
|
T['io.flow.shopify.external.v0.models.graphql_product'] = PropTypes.exact({
|
|
2903
2911
|
id: PropTypes.string.isRequired,
|
|
2904
2912
|
legacyResourceId: PropTypes.string.isRequired,
|
|
@@ -2918,6 +2926,7 @@ T['io.flow.shopify.external.v0.models.graphql_product'] = PropTypes.exact({
|
|
|
2918
2926
|
updatedAt: PropTypes.string.isRequired,
|
|
2919
2927
|
hasVariantsThatRequiresComponents: PropTypes.bool,
|
|
2920
2928
|
category: T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'],
|
|
2929
|
+
inferredProductCategory: T['io.flow.shopify.external.v0.models.graphql_inferred_product_category'],
|
|
2921
2930
|
metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_metafield']),
|
|
2922
2931
|
});
|
|
2923
2932
|
|
|
@@ -3411,6 +3420,7 @@ T['io.flow.adyen.v0.models.adyen_dispute_event'] = PropTypes.exact({
|
|
|
3411
3420
|
});
|
|
3412
3421
|
|
|
3413
3422
|
T['io.flow.consumer.invoice.v0.enums.tax_jurisdiction_type'] = PropTypes.oneOf(['country', 'province']);
|
|
3423
|
+
T['io.flow.consumer.invoice.v0.enums.fee_invoice_type'] = PropTypes.oneOf(['mor_invoice', 'label_invoice', 'mor_credit_memo', 'label_credit_memo']);
|
|
3414
3424
|
|
|
3415
3425
|
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount_form'] = PropTypes.exact({
|
|
3416
3426
|
discriminator: PropTypes.oneOf(['discount']).isRequired,
|
|
@@ -3594,6 +3604,7 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason']
|
|
|
3594
3604
|
'unsupported_order_edit',
|
|
3595
3605
|
'order_allocation_duties_mismatch',
|
|
3596
3606
|
'order_missing',
|
|
3607
|
+
'organization_deactivated',
|
|
3597
3608
|
]);
|
|
3598
3609
|
|
|
3599
3610
|
T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
|
|
@@ -3601,28 +3612,6 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason'] = PropTy
|
|
|
3601
3612
|
rejection_reason: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'],
|
|
3602
3613
|
});
|
|
3603
3614
|
|
|
3604
|
-
T['io.flow.shopify.markets.internal.v0.enums.tax_and_duty_inclusivity_setting'] = PropTypes.oneOf([
|
|
3605
|
-
'duty_exclusive_tax_exclusive',
|
|
3606
|
-
'duty_inclusive_tax_exclusive',
|
|
3607
|
-
'duty_exclusive_tax_inclusive',
|
|
3608
|
-
'duty_inclusive_tax_inclusive',
|
|
3609
|
-
]);
|
|
3610
|
-
|
|
3611
|
-
T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
3612
|
-
id: PropTypes.string.isRequired,
|
|
3613
|
-
organization_id: PropTypes.string.isRequired,
|
|
3614
|
-
shopify_order_id: PropTypes.string.isRequired,
|
|
3615
|
-
order_number: PropTypes.string.isRequired,
|
|
3616
|
-
tax_and_duty_inclusivity_setting: T['io.flow.shopify.markets.internal.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
|
|
3617
|
-
});
|
|
3618
|
-
|
|
3619
|
-
T['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_upserted'] = PropTypes.exact({
|
|
3620
|
-
discriminator: PropTypes.oneOf(['order_tax_and_duty_inclusivity_setting_upserted']).isRequired,
|
|
3621
|
-
event_id: PropTypes.string.isRequired,
|
|
3622
|
-
timestamp: PropTypes.string.isRequired,
|
|
3623
|
-
order_tax_and_duty_inclusivity_setting: T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
3624
|
-
});
|
|
3625
|
-
|
|
3626
3615
|
T['io.flow.shopify.markets.internal.v0.enums.sellability_status'] = PropTypes.oneOf(['complete', 'incomplete']);
|
|
3627
3616
|
|
|
3628
3617
|
T['io.flow.shopify.markets.internal.v0.models.channel_organization_sellability_status_put_form'] = PropTypes.exact({
|
|
@@ -7236,9 +7225,16 @@ T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'] = PropTyp
|
|
|
7236
7225
|
selection_stratey: T['io.flow.fulfillment.v0.enums.preferred_service_selection_strategy'].isRequired,
|
|
7237
7226
|
});
|
|
7238
7227
|
|
|
7239
|
-
T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf(
|
|
7240
|
-
|
|
7241
|
-
|
|
7228
|
+
T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf([
|
|
7229
|
+
'flow-usa',
|
|
7230
|
+
'flow-irl',
|
|
7231
|
+
'flow-can',
|
|
7232
|
+
'ge-usa',
|
|
7233
|
+
'ge-can',
|
|
7234
|
+
'ge-can-ship',
|
|
7235
|
+
'ge-gbr',
|
|
7236
|
+
'ge-irl',
|
|
7237
|
+
]);
|
|
7242
7238
|
|
|
7243
7239
|
T['io.flow.common.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_community', 'local']);
|
|
7244
7240
|
T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
|
|
@@ -8026,6 +8022,8 @@ T['io.flow.return.v0.models.return_source_flow'] = PropTypes.exact({
|
|
|
8026
8022
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
8027
8023
|
});
|
|
8028
8024
|
|
|
8025
|
+
T['io.flow.label.v0.enums.shipping_cost_guarantee'] = PropTypes.oneOf(['guaranteed', 'non_guaranteed']);
|
|
8026
|
+
|
|
8029
8027
|
T['io.flow.label.v0.models.label_order_summary'] = PropTypes.exact({
|
|
8030
8028
|
id: PropTypes.string.isRequired,
|
|
8031
8029
|
number: PropTypes.string.isRequired,
|
|
@@ -8526,11 +8524,6 @@ T['io.flow.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
|
|
|
8526
8524
|
T['io.flow.internal.v0.models.generate_load_multiple_orgs'],
|
|
8527
8525
|
]);
|
|
8528
8526
|
|
|
8529
|
-
T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'] = PropTypes.exact({
|
|
8530
|
-
discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee_percent_put_form']).isRequired,
|
|
8531
|
-
percent: PropTypes.number.isRequired,
|
|
8532
|
-
});
|
|
8533
|
-
|
|
8534
8527
|
T['io.flow.internal.v0.models.feature_task_data_sync_organization'] = PropTypes.exact({
|
|
8535
8528
|
discriminator: PropTypes.oneOf(['feature_task_data_sync_organization']).isRequired,
|
|
8536
8529
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -8608,6 +8601,20 @@ T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.ex
|
|
|
8608
8601
|
id: PropTypes.string.isRequired,
|
|
8609
8602
|
});
|
|
8610
8603
|
|
|
8604
|
+
T['io.flow.internal.v0.models.raveena_item_deleted'] = PropTypes.exact({
|
|
8605
|
+
discriminator: PropTypes.oneOf(['raveena_item_deleted']).isRequired,
|
|
8606
|
+
event_id: PropTypes.string.isRequired,
|
|
8607
|
+
timestamp: PropTypes.string.isRequired,
|
|
8608
|
+
id: PropTypes.string.isRequired,
|
|
8609
|
+
});
|
|
8610
|
+
|
|
8611
|
+
T['io.flow.internal.v0.models.bojana_item_deleted'] = PropTypes.exact({
|
|
8612
|
+
discriminator: PropTypes.oneOf(['bojana_item_deleted']).isRequired,
|
|
8613
|
+
event_id: PropTypes.string.isRequired,
|
|
8614
|
+
timestamp: PropTypes.string.isRequired,
|
|
8615
|
+
id: PropTypes.string.isRequired,
|
|
8616
|
+
});
|
|
8617
|
+
|
|
8611
8618
|
T['io.flow.internal.v0.models.chenglin_item_deleted'] = PropTypes.exact({
|
|
8612
8619
|
discriminator: PropTypes.oneOf(['chenglin_item_deleted']).isRequired,
|
|
8613
8620
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8622,6 +8629,14 @@ T['io.flow.internal.v0.models.gabriel_item_deleted'] = PropTypes.exact({
|
|
|
8622
8629
|
id: PropTypes.string.isRequired,
|
|
8623
8630
|
});
|
|
8624
8631
|
|
|
8632
|
+
T['io.flow.internal.v0.models.b2b_tax_transaction_deleted'] = PropTypes.exact({
|
|
8633
|
+
discriminator: PropTypes.oneOf(['b2b_tax_transaction_deleted']).isRequired,
|
|
8634
|
+
event_id: PropTypes.string.isRequired,
|
|
8635
|
+
timestamp: PropTypes.string.isRequired,
|
|
8636
|
+
organization: PropTypes.string.isRequired,
|
|
8637
|
+
id: PropTypes.string.isRequired,
|
|
8638
|
+
});
|
|
8639
|
+
|
|
8625
8640
|
T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'] = PropTypes.exact({
|
|
8626
8641
|
discriminator: PropTypes.oneOf(['stripe_connect_report_record_deleted']).isRequired,
|
|
8627
8642
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8830,6 +8845,13 @@ T['io.flow.internal.v0.models.shopify_hs10_codes_deleted'] = PropTypes.exact({
|
|
|
8830
8845
|
id: PropTypes.string.isRequired,
|
|
8831
8846
|
});
|
|
8832
8847
|
|
|
8848
|
+
T['io.flow.internal.v0.models.preonboarding_merchant_deleted'] = PropTypes.exact({
|
|
8849
|
+
discriminator: PropTypes.oneOf(['preonboarding_merchant_deleted']).isRequired,
|
|
8850
|
+
event_id: PropTypes.string.isRequired,
|
|
8851
|
+
timestamp: PropTypes.string.isRequired,
|
|
8852
|
+
id: PropTypes.string.isRequired,
|
|
8853
|
+
});
|
|
8854
|
+
|
|
8833
8855
|
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'] = PropTypes.exact({
|
|
8834
8856
|
discriminator: PropTypes.oneOf(['taxonomy_category_hs6_ref_deleted']).isRequired,
|
|
8835
8857
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8851,6 +8873,20 @@ T['io.flow.internal.v0.models.restriction_rule_deleted'] = PropTypes.exact({
|
|
|
8851
8873
|
id: PropTypes.string.isRequired,
|
|
8852
8874
|
});
|
|
8853
8875
|
|
|
8876
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_deleted'] = PropTypes.exact({
|
|
8877
|
+
discriminator: PropTypes.oneOf(['restrictions_athena_dailyops_fs_deleted']).isRequired,
|
|
8878
|
+
event_id: PropTypes.string.isRequired,
|
|
8879
|
+
timestamp: PropTypes.string.isRequired,
|
|
8880
|
+
id: PropTypes.string.isRequired,
|
|
8881
|
+
});
|
|
8882
|
+
|
|
8883
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_deleted'] = PropTypes.exact({
|
|
8884
|
+
discriminator: PropTypes.oneOf(['restrictions_athena_dailyops_pc_pv_deleted']).isRequired,
|
|
8885
|
+
event_id: PropTypes.string.isRequired,
|
|
8886
|
+
timestamp: PropTypes.string.isRequired,
|
|
8887
|
+
id: PropTypes.string.isRequired,
|
|
8888
|
+
});
|
|
8889
|
+
|
|
8854
8890
|
T['io.flow.internal.v0.models.restrictions_dailyops_deleted'] = PropTypes.exact({
|
|
8855
8891
|
discriminator: PropTypes.oneOf(['restrictions_dailyops_deleted']).isRequired,
|
|
8856
8892
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8874,14 +8910,6 @@ T['io.flow.internal.v0.models.organization_restriction_status_deleted'] = PropTy
|
|
|
8874
8910
|
id: PropTypes.string.isRequired,
|
|
8875
8911
|
});
|
|
8876
8912
|
|
|
8877
|
-
T['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'] = PropTypes.exact({
|
|
8878
|
-
discriminator: PropTypes.oneOf(['ratecard_standard_configuration_deleted']).isRequired,
|
|
8879
|
-
event_id: PropTypes.string.isRequired,
|
|
8880
|
-
timestamp: PropTypes.string.isRequired,
|
|
8881
|
-
organization: PropTypes.string.isRequired,
|
|
8882
|
-
id: PropTypes.string.isRequired,
|
|
8883
|
-
});
|
|
8884
|
-
|
|
8885
8913
|
T['io.flow.internal.v0.models.product_sellability_result_deleted'] = PropTypes.exact({
|
|
8886
8914
|
discriminator: PropTypes.oneOf(['product_sellability_result_deleted']).isRequired,
|
|
8887
8915
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9037,6 +9065,14 @@ T['io.flow.internal.v0.models.label_tracking_summary_deleted'] = PropTypes.exact
|
|
|
9037
9065
|
id: PropTypes.string.isRequired,
|
|
9038
9066
|
});
|
|
9039
9067
|
|
|
9068
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_deleted'] = PropTypes.exact({
|
|
9069
|
+
discriminator: PropTypes.oneOf(['adaptive_shipping_order_guarantee_deleted']).isRequired,
|
|
9070
|
+
event_id: PropTypes.string.isRequired,
|
|
9071
|
+
timestamp: PropTypes.string.isRequired,
|
|
9072
|
+
organization: PropTypes.string.isRequired,
|
|
9073
|
+
id: PropTypes.string.isRequired,
|
|
9074
|
+
});
|
|
9075
|
+
|
|
9040
9076
|
T['io.flow.internal.v0.models.label_creation_job_deleted'] = PropTypes.exact({
|
|
9041
9077
|
discriminator: PropTypes.oneOf(['label_creation_job_deleted']).isRequired,
|
|
9042
9078
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9243,6 +9279,22 @@ T['io.flow.internal.v0.models.fraud_review_deleted'] = PropTypes.exact({
|
|
|
9243
9279
|
id: PropTypes.string.isRequired,
|
|
9244
9280
|
});
|
|
9245
9281
|
|
|
9282
|
+
T['io.flow.internal.v0.models.flat_rate_label_reversal_deleted'] = PropTypes.exact({
|
|
9283
|
+
discriminator: PropTypes.oneOf(['flat_rate_label_reversal_deleted']).isRequired,
|
|
9284
|
+
event_id: PropTypes.string.isRequired,
|
|
9285
|
+
timestamp: PropTypes.string.isRequired,
|
|
9286
|
+
organization: PropTypes.string.isRequired,
|
|
9287
|
+
id: PropTypes.string.isRequired,
|
|
9288
|
+
});
|
|
9289
|
+
|
|
9290
|
+
T['io.flow.internal.v0.models.mor_cost_deleted'] = PropTypes.exact({
|
|
9291
|
+
discriminator: PropTypes.oneOf(['mor_cost_deleted']).isRequired,
|
|
9292
|
+
event_id: PropTypes.string.isRequired,
|
|
9293
|
+
timestamp: PropTypes.string.isRequired,
|
|
9294
|
+
organization: PropTypes.string.isRequired,
|
|
9295
|
+
id: PropTypes.string.isRequired,
|
|
9296
|
+
});
|
|
9297
|
+
|
|
9246
9298
|
T['io.flow.internal.v0.models.shipping_cost_deleted'] = PropTypes.exact({
|
|
9247
9299
|
discriminator: PropTypes.oneOf(['shipping_cost_deleted']).isRequired,
|
|
9248
9300
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9486,6 +9538,14 @@ T['io.flow.internal.v0.models.commercial_invoice_internal_deleted'] = PropTypes.
|
|
|
9486
9538
|
id: PropTypes.string.isRequired,
|
|
9487
9539
|
});
|
|
9488
9540
|
|
|
9541
|
+
T['io.flow.internal.v0.models.channel_shop_statistics_deleted'] = PropTypes.exact({
|
|
9542
|
+
discriminator: PropTypes.oneOf(['channel_shop_statistics_deleted']).isRequired,
|
|
9543
|
+
event_id: PropTypes.string.isRequired,
|
|
9544
|
+
timestamp: PropTypes.string.isRequired,
|
|
9545
|
+
organization: PropTypes.string.isRequired,
|
|
9546
|
+
id: PropTypes.string.isRequired,
|
|
9547
|
+
});
|
|
9548
|
+
|
|
9489
9549
|
T['io.flow.internal.v0.models.catalog_settings_deleted'] = PropTypes.exact({
|
|
9490
9550
|
discriminator: PropTypes.oneOf(['catalog_settings_deleted']).isRequired,
|
|
9491
9551
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9675,6 +9735,14 @@ T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
|
|
|
9675
9735
|
id: PropTypes.string.isRequired,
|
|
9676
9736
|
});
|
|
9677
9737
|
|
|
9738
|
+
T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'] = PropTypes.exact({
|
|
9739
|
+
discriminator: PropTypes.oneOf(['adaptive_shipping_rate_deleted']).isRequired,
|
|
9740
|
+
event_id: PropTypes.string.isRequired,
|
|
9741
|
+
timestamp: PropTypes.string.isRequired,
|
|
9742
|
+
organization: PropTypes.string.isRequired,
|
|
9743
|
+
id: PropTypes.string.isRequired,
|
|
9744
|
+
});
|
|
9745
|
+
|
|
9678
9746
|
T['io.flow.internal.v0.models.console_mark_unresolvable_form'] = PropTypes.exact({
|
|
9679
9747
|
discriminator: PropTypes.oneOf(['console_mark_unresolvable_form']).isRequired,
|
|
9680
9748
|
order_number: PropTypes.string.isRequired,
|
|
@@ -11481,6 +11549,7 @@ T['io.flow.internal.v0.models.report_bank_account_cleartext'] = PropTypes.exact(
|
|
|
11481
11549
|
type: PropTypes.string.isRequired,
|
|
11482
11550
|
routing_number: PropTypes.string.isRequired,
|
|
11483
11551
|
account_number: PropTypes.string.isRequired,
|
|
11552
|
+
bank_name: PropTypes.string,
|
|
11484
11553
|
});
|
|
11485
11554
|
|
|
11486
11555
|
T['io.flow.internal.v0.models.price_inclusivity'] = PropTypes.exact({
|
|
@@ -11609,6 +11678,63 @@ T['io.flow.internal.v0.models.restrictions_dailyops_upserted'] = PropTypes.exact
|
|
|
11609
11678
|
restrictions_dailyops: T['io.flow.internal.v0.models.restrictions_dailyops'].isRequired,
|
|
11610
11679
|
});
|
|
11611
11680
|
|
|
11681
|
+
T['io.flow.internal.v0.enums.athena_dailyops_intent_level'] = PropTypes.oneOf(['low_intent', 'high_intent']);
|
|
11682
|
+
|
|
11683
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv'] = PropTypes.exact({
|
|
11684
|
+
id: PropTypes.string.isRequired,
|
|
11685
|
+
report_date: PropTypes.string.isRequired,
|
|
11686
|
+
intent_level: T['io.flow.internal.v0.enums.athena_dailyops_intent_level'].isRequired,
|
|
11687
|
+
num_orgs_setup_complete_with_pvs: PropTypes.number.isRequired,
|
|
11688
|
+
num_products_setup_complete_with_pvs: PropTypes.number.isRequired,
|
|
11689
|
+
num_orgs_transacting_with_pvs: PropTypes.number.isRequired,
|
|
11690
|
+
num_products_transacting_with_pvs: PropTypes.number.isRequired,
|
|
11691
|
+
num_orgs_setup_complete_with_pcs: PropTypes.number.isRequired,
|
|
11692
|
+
num_products_setup_complete_with_pcs: PropTypes.number.isRequired,
|
|
11693
|
+
num_orgs_transacting_with_pcs: PropTypes.number.isRequired,
|
|
11694
|
+
num_products_transacting_with_pcs: PropTypes.number.isRequired,
|
|
11695
|
+
oldest_pv_product_date_setup_complete: PropTypes.string,
|
|
11696
|
+
oldest_pv_product_date_transacting: PropTypes.string,
|
|
11697
|
+
oldest_pc_product_date_setup_complete: PropTypes.string,
|
|
11698
|
+
oldest_pc_product_date_transacting: PropTypes.string,
|
|
11699
|
+
oldest_insufficient_details_pv_active: PropTypes.string,
|
|
11700
|
+
oldest_insufficient_details_pv_transacting: PropTypes.string,
|
|
11701
|
+
num_pv_inflow_net_new: PropTypes.number.isRequired,
|
|
11702
|
+
num_pv_outflow_human_decisions: PropTypes.number.isRequired,
|
|
11703
|
+
num_pv_outflow_auto_review_decisions: PropTypes.number.isRequired,
|
|
11704
|
+
num_pv_outflow_side_effect_decisions: PropTypes.number.isRequired,
|
|
11705
|
+
num_pending_decisions_transacting: PropTypes.number.isRequired,
|
|
11706
|
+
pv_decisions_setup_complete: PropTypes.number.isRequired,
|
|
11707
|
+
});
|
|
11708
|
+
|
|
11709
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_upserted'] = PropTypes.exact({
|
|
11710
|
+
discriminator: PropTypes.oneOf(['restrictions_athena_dailyops_pc_pv_upserted']).isRequired,
|
|
11711
|
+
event_id: PropTypes.string.isRequired,
|
|
11712
|
+
timestamp: PropTypes.string.isRequired,
|
|
11713
|
+
restrictions_athena_dailyops_pc_pv: T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv'].isRequired,
|
|
11714
|
+
});
|
|
11715
|
+
|
|
11716
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs'] = PropTypes.exact({
|
|
11717
|
+
id: PropTypes.string.isRequired,
|
|
11718
|
+
report_date: PropTypes.string.isRequired,
|
|
11719
|
+
num_products_with_fs_result: PropTypes.number,
|
|
11720
|
+
num_products_sellable_somewhere_by_fs: PropTypes.number,
|
|
11721
|
+
num_products_restricted_somewhere_by_fs: PropTypes.number,
|
|
11722
|
+
num_products_with_false_allows_by_fs: PropTypes.number,
|
|
11723
|
+
num_products_with_false_restricts_by_fs: PropTypes.number,
|
|
11724
|
+
daily_num_products_with_fs_result: PropTypes.number,
|
|
11725
|
+
daily_num_products_sellable_somewhere_by_fs: PropTypes.number,
|
|
11726
|
+
daily_num_products_restricted_somewhere_by_fs: PropTypes.number,
|
|
11727
|
+
daily_num_products_with_false_allows_by_fs: PropTypes.number,
|
|
11728
|
+
daily_num_products_with_false_restricts_by_fs: PropTypes.number,
|
|
11729
|
+
});
|
|
11730
|
+
|
|
11731
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_upserted'] = PropTypes.exact({
|
|
11732
|
+
discriminator: PropTypes.oneOf(['restrictions_athena_dailyops_fs_upserted']).isRequired,
|
|
11733
|
+
event_id: PropTypes.string.isRequired,
|
|
11734
|
+
timestamp: PropTypes.string.isRequired,
|
|
11735
|
+
restrictions_athena_dailyops_fs: T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs'].isRequired,
|
|
11736
|
+
});
|
|
11737
|
+
|
|
11612
11738
|
T['io.flow.internal.v0.enums.restriction_rule_activation_status'] = PropTypes.oneOf(['draft', 'active', 'inactive']);
|
|
11613
11739
|
|
|
11614
11740
|
T['io.flow.internal.v0.models.keyword_cancelling'] = PropTypes.exact({
|
|
@@ -11618,6 +11744,17 @@ T['io.flow.internal.v0.models.keyword_cancelling'] = PropTypes.exact({
|
|
|
11618
11744
|
|
|
11619
11745
|
T['io.flow.internal.v0.enums.restriction_rule_community_exemption'] = PropTypes.oneOf(['domestic_exemption', 'intra_eu_exemption']);
|
|
11620
11746
|
|
|
11747
|
+
T['io.flow.internal.v0.models.restriction_rule_organization_exemption_form'] = PropTypes.exact({
|
|
11748
|
+
organization_id: PropTypes.string.isRequired,
|
|
11749
|
+
rule_id: PropTypes.string.isRequired,
|
|
11750
|
+
description: PropTypes.string.isRequired,
|
|
11751
|
+
exempt_regions: PropTypes.arrayOf(PropTypes.string),
|
|
11752
|
+
ignored_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
11753
|
+
additional_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
11754
|
+
community_exemption_override: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_rule_community_exemption']),
|
|
11755
|
+
is_rule_active: PropTypes.bool,
|
|
11756
|
+
});
|
|
11757
|
+
|
|
11621
11758
|
T['io.flow.internal.v0.models.restriction_rule_organization_exemption'] = PropTypes.exact({
|
|
11622
11759
|
id: PropTypes.string.isRequired,
|
|
11623
11760
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -11792,7 +11929,7 @@ T['io.flow.internal.v0.models.report_organization_reference'] = PropTypes.exact(
|
|
|
11792
11929
|
organization_id: PropTypes.string.isRequired,
|
|
11793
11930
|
});
|
|
11794
11931
|
|
|
11795
|
-
T['io.flow.internal.v0.enums.account_currency_filter'] = PropTypes.oneOf(['GBP', 'CAD', 'USD']);
|
|
11932
|
+
T['io.flow.internal.v0.enums.account_currency_filter'] = PropTypes.oneOf(['GBP', 'CAD', 'USD', 'KRW']);
|
|
11796
11933
|
|
|
11797
11934
|
T['io.flow.internal.v0.models.report_amount_range'] = PropTypes.exact({
|
|
11798
11935
|
min: PropTypes.number,
|
|
@@ -11853,6 +11990,8 @@ T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
|
11853
11990
|
'non_channel_payment_bank_account',
|
|
11854
11991
|
'scheduled_payment',
|
|
11855
11992
|
'scheduled_payment_citi',
|
|
11993
|
+
'scheduled_payment_citi_krw',
|
|
11994
|
+
'scheduled_payment_citi_krw_txt',
|
|
11856
11995
|
'account_quarterly_balances',
|
|
11857
11996
|
'invariants',
|
|
11858
11997
|
'payments',
|
|
@@ -11951,16 +12090,14 @@ T['io.flow.internal.v0.models.redirect'] = PropTypes.exact({
|
|
|
11951
12090
|
reason: T['io.flow.internal.v0.enums.redirect_reason'].isRequired,
|
|
11952
12091
|
});
|
|
11953
12092
|
|
|
12093
|
+
T['io.flow.internal.v0.enums.raveena_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
12094
|
+
|
|
11954
12095
|
T['io.flow.internal.v0.models.rate_name_summary'] = PropTypes.exact({
|
|
11955
12096
|
name: PropTypes.string.isRequired,
|
|
11956
12097
|
long_name: PropTypes.string,
|
|
11957
12098
|
matching_rates_percentage: PropTypes.number.isRequired,
|
|
11958
12099
|
});
|
|
11959
12100
|
|
|
11960
|
-
T['io.flow.internal.v0.models.ratecard_standard_settings'] = PropTypes.exact({
|
|
11961
|
-
margin: PropTypes.number.isRequired,
|
|
11962
|
-
});
|
|
11963
|
-
|
|
11964
12101
|
T['io.flow.internal.v0.models.rate_level_ratecard'] = PropTypes.exact({
|
|
11965
12102
|
id: PropTypes.string.isRequired,
|
|
11966
12103
|
ratecard_id: PropTypes.string.isRequired,
|
|
@@ -12289,6 +12426,23 @@ T['io.flow.sellability.v0.models.sellability_screening'] = PropTypes.exact({
|
|
|
12289
12426
|
error_message: PropTypes.string,
|
|
12290
12427
|
});
|
|
12291
12428
|
|
|
12429
|
+
T['io.flow.internal.v0.models.preonboarding_merchant'] = PropTypes.exact({
|
|
12430
|
+
id: PropTypes.string.isRequired,
|
|
12431
|
+
merchant_id: PropTypes.string.isRequired,
|
|
12432
|
+
channel: PropTypes.string.isRequired,
|
|
12433
|
+
catalog_size: PropTypes.number.isRequired,
|
|
12434
|
+
processed_product_count: PropTypes.number.isRequired,
|
|
12435
|
+
last_request: PropTypes.string.isRequired,
|
|
12436
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
12437
|
+
});
|
|
12438
|
+
|
|
12439
|
+
T['io.flow.internal.v0.models.preonboarding_merchant_upserted'] = PropTypes.exact({
|
|
12440
|
+
discriminator: PropTypes.oneOf(['preonboarding_merchant_upserted']).isRequired,
|
|
12441
|
+
event_id: PropTypes.string.isRequired,
|
|
12442
|
+
timestamp: PropTypes.string.isRequired,
|
|
12443
|
+
preonboarding_merchant: T['io.flow.internal.v0.models.preonboarding_merchant'].isRequired,
|
|
12444
|
+
});
|
|
12445
|
+
|
|
12292
12446
|
T['io.flow.internal.v0.enums.preonboarding_classification_type'] = PropTypes.oneOf(['None', 'Manual', 'ML', 'System']);
|
|
12293
12447
|
T['io.flow.internal.v0.enums.preonboarding_classification_decision'] = PropTypes.oneOf(['Accept', 'Reject']);
|
|
12294
12448
|
|
|
@@ -12301,8 +12455,11 @@ T['io.flow.internal.v0.models.preonboarding_classification_result'] = PropTypes.
|
|
|
12301
12455
|
probability: PropTypes.number,
|
|
12302
12456
|
classification_decision: T['io.flow.internal.v0.enums.preonboarding_classification_decision'].isRequired,
|
|
12303
12457
|
classification_type: T['io.flow.internal.v0.enums.preonboarding_classification_type'].isRequired,
|
|
12458
|
+
model_id: PropTypes.string,
|
|
12304
12459
|
});
|
|
12305
12460
|
|
|
12461
|
+
T['io.flow.sellability.v0.enums.sellability_screening_mode'] = PropTypes.oneOf(['pre_onboarding', 'default_on', 'active']);
|
|
12462
|
+
|
|
12306
12463
|
T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
|
|
12307
12464
|
name: PropTypes.string.isRequired,
|
|
12308
12465
|
full_name: PropTypes.string.isRequired,
|
|
@@ -12312,6 +12469,7 @@ T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
|
12312
12469
|
organization_id: PropTypes.string.isRequired,
|
|
12313
12470
|
number: PropTypes.string.isRequired,
|
|
12314
12471
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12472
|
+
inferred_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12315
12473
|
taxonomy_data: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_data']),
|
|
12316
12474
|
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12317
12475
|
highest_value_item_number: PropTypes.string,
|
|
@@ -12400,9 +12558,11 @@ T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exa
|
|
|
12400
12558
|
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_restricted_region']),
|
|
12401
12559
|
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
12402
12560
|
matching_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
12561
|
+
matching_sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
12403
12562
|
classification_failure_reason: T['io.flow.internal.v0.enums.classification_failure_reason'],
|
|
12404
12563
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12405
12564
|
fingerprint: PropTypes.string.isRequired,
|
|
12565
|
+
screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
|
|
12406
12566
|
});
|
|
12407
12567
|
|
|
12408
12568
|
T['io.flow.internal.v0.models.preonboarding_sellability_result_updated'] = PropTypes.exact({
|
|
@@ -13035,19 +13195,34 @@ T['io.flow.internal.v0.enums.order_validation_status'] = PropTypes.oneOf([
|
|
|
13035
13195
|
'breached',
|
|
13036
13196
|
]);
|
|
13037
13197
|
|
|
13038
|
-
T['io.flow.
|
|
13198
|
+
T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'] = PropTypes.oneOf([
|
|
13039
13199
|
'duty_exclusive_tax_exclusive',
|
|
13040
13200
|
'duty_inclusive_tax_exclusive',
|
|
13041
13201
|
'duty_exclusive_tax_inclusive',
|
|
13042
13202
|
'duty_inclusive_tax_inclusive',
|
|
13043
13203
|
]);
|
|
13044
13204
|
|
|
13205
|
+
T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
13206
|
+
id: PropTypes.string.isRequired,
|
|
13207
|
+
organization_id: PropTypes.string.isRequired,
|
|
13208
|
+
shopify_order_id: PropTypes.string.isRequired,
|
|
13209
|
+
order_number: PropTypes.string.isRequired,
|
|
13210
|
+
tax_and_duty_inclusivity_setting: T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
|
|
13211
|
+
});
|
|
13212
|
+
|
|
13213
|
+
T['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_upserted'] = PropTypes.exact({
|
|
13214
|
+
discriminator: PropTypes.oneOf(['order_tax_and_duty_inclusivity_setting_upserted']).isRequired,
|
|
13215
|
+
event_id: PropTypes.string.isRequired,
|
|
13216
|
+
timestamp: PropTypes.string.isRequired,
|
|
13217
|
+
order_tax_and_duty_inclusivity_setting: T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
13218
|
+
});
|
|
13219
|
+
|
|
13045
13220
|
T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
13046
13221
|
id: PropTypes.string.isRequired,
|
|
13047
13222
|
organization_id: PropTypes.string.isRequired,
|
|
13048
13223
|
shopify_order_id: PropTypes.string.isRequired,
|
|
13049
13224
|
order_number: PropTypes.string.isRequired,
|
|
13050
|
-
tax_and_duty_inclusivity_setting: T['io.flow.
|
|
13225
|
+
tax_and_duty_inclusivity_setting: T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
|
|
13051
13226
|
});
|
|
13052
13227
|
|
|
13053
13228
|
T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted'] = PropTypes.exact({
|
|
@@ -13927,6 +14102,7 @@ T['io.flow.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
|
13927
14102
|
});
|
|
13928
14103
|
|
|
13929
14104
|
T['io.flow.internal.v0.enums.manual_review_rule_status'] = PropTypes.oneOf(['active', 'archived']);
|
|
14105
|
+
T['io.flow.internal.v0.enums.mahesh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
13930
14106
|
|
|
13931
14107
|
T['io.flow.internal.v0.models.loyalty_program_reward'] = PropTypes.exact({
|
|
13932
14108
|
id: PropTypes.string.isRequired,
|
|
@@ -14211,6 +14387,7 @@ T['io.flow.ratecard.v0.models.ratecard'] = PropTypes.exact({
|
|
|
14211
14387
|
rate_level_key: PropTypes.string,
|
|
14212
14388
|
direction: T['io.flow.label.v0.enums.direction'].isRequired,
|
|
14213
14389
|
effective_at: PropTypes.string.isRequired,
|
|
14390
|
+
effective_until: PropTypes.string,
|
|
14214
14391
|
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
14215
14392
|
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
14216
14393
|
published_at: PropTypes.string,
|
|
@@ -14340,6 +14517,11 @@ T['io.flow.billing.v0.models.transaction_metadata_trueup_surcharge'] = PropTypes
|
|
|
14340
14517
|
actual: T['io.flow.billing.v0.models.transaction_metadata_trueup_surcharge_data'].isRequired,
|
|
14341
14518
|
});
|
|
14342
14519
|
|
|
14520
|
+
T['io.flow.internal.v0.models.merchant_surcharge'] = PropTypes.exact({
|
|
14521
|
+
type: T['io.flow.trueup.v0.enums.trueup_surcharge_type'].isRequired,
|
|
14522
|
+
amount: PropTypes.number.isRequired,
|
|
14523
|
+
});
|
|
14524
|
+
|
|
14343
14525
|
T['io.flow.label.v0.enums.cost_estimate_source'] = PropTypes.oneOf(['flow', 'channel']);
|
|
14344
14526
|
|
|
14345
14527
|
T['io.flow.internal.v0.models.label_destination'] = PropTypes.exact({
|
|
@@ -14381,13 +14563,6 @@ T['io.flow.internal.v0.models.label_creation_job_upserted'] = PropTypes.exact({
|
|
|
14381
14563
|
label_creation_job: T['io.flow.internal.v0.models.label_creation_job'].isRequired,
|
|
14382
14564
|
});
|
|
14383
14565
|
|
|
14384
|
-
T['io.flow.internal.v0.enums.label_cancellation_error_code'] = PropTypes.oneOf(['already_used', 'carrier_unsupported']);
|
|
14385
|
-
|
|
14386
|
-
T['io.flow.internal.v0.models.label_cancellation_error'] = PropTypes.exact({
|
|
14387
|
-
code: T['io.flow.internal.v0.enums.label_cancellation_error_code'].isRequired,
|
|
14388
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
14389
|
-
});
|
|
14390
|
-
|
|
14391
14566
|
T['io.flow.internal.v0.models.lab_project_settings_form_acceptance'] = PropTypes.exact({
|
|
14392
14567
|
accepted: PropTypes.bool.isRequired,
|
|
14393
14568
|
});
|
|
@@ -15283,12 +15458,26 @@ T['io.flow.internal.v0.models.shopper_breakdown'] = PropTypes.exact({
|
|
|
15283
15458
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15284
15459
|
});
|
|
15285
15460
|
|
|
15461
|
+
T['io.flow.internal.v0.models.reporting_merchant_freight_surcharges'] = PropTypes.exact({
|
|
15462
|
+
duties_paid: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15463
|
+
fixed_ddp: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15464
|
+
fixed_currency_conversion: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15465
|
+
});
|
|
15466
|
+
|
|
15467
|
+
T['io.flow.internal.v0.models.reporting_merchant_freight'] = PropTypes.exact({
|
|
15468
|
+
base_amount: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15469
|
+
surcharges: T['io.flow.internal.v0.models.reporting_merchant_freight_surcharges'],
|
|
15470
|
+
});
|
|
15471
|
+
|
|
15286
15472
|
T['io.flow.internal.v0.models.reporting_merchant_transactions'] = PropTypes.exact({
|
|
15287
15473
|
adjustment: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15288
15474
|
reversal: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15289
15475
|
tax: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15290
15476
|
duty: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15291
15477
|
freight: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15478
|
+
freight_breakdown: T['io.flow.internal.v0.models.reporting_merchant_freight'],
|
|
15479
|
+
freight_guaranteed: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15480
|
+
freight_non_guaranteed: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15292
15481
|
discount: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15293
15482
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15294
15483
|
tax_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
@@ -15387,6 +15576,10 @@ T['io.flow.internal.v0.models.merchant_transactions'] = PropTypes.exact({
|
|
|
15387
15576
|
tax: PropTypes.number.isRequired,
|
|
15388
15577
|
duty: PropTypes.number.isRequired,
|
|
15389
15578
|
freight: PropTypes.number.isRequired,
|
|
15579
|
+
base_amount: PropTypes.number,
|
|
15580
|
+
surcharges: PropTypes.arrayOf(T['io.flow.internal.v0.models.merchant_surcharge']),
|
|
15581
|
+
freight_guaranteed: PropTypes.number,
|
|
15582
|
+
freight_non_guaranteed: PropTypes.number,
|
|
15390
15583
|
total: PropTypes.number.isRequired,
|
|
15391
15584
|
tax_refund: PropTypes.number,
|
|
15392
15585
|
tax_reversal: PropTypes.number,
|
|
@@ -15617,8 +15810,8 @@ T['io.flow.internal.v0.models.fiserv_authentication'] = PropTypes.exact({
|
|
|
15617
15810
|
secret_key_reference: PropTypes.string.isRequired,
|
|
15618
15811
|
});
|
|
15619
15812
|
|
|
15620
|
-
T['io.flow.billing.bank.account.v0.models.
|
|
15621
|
-
discriminator: PropTypes.oneOf(['
|
|
15813
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor_v2'] = PropTypes.exact({
|
|
15814
|
+
discriminator: PropTypes.oneOf(['kor_v2']).isRequired,
|
|
15622
15815
|
name: PropTypes.string.isRequired,
|
|
15623
15816
|
bank_account_number: PropTypes.string.isRequired,
|
|
15624
15817
|
bank_routing_number: PropTypes.string.isRequired,
|
|
@@ -15659,25 +15852,6 @@ T['io.flow.internal.v0.models.finance_bank_account_owner'] = PropTypes.exact({
|
|
|
15659
15852
|
name: PropTypes.string.isRequired,
|
|
15660
15853
|
});
|
|
15661
15854
|
|
|
15662
|
-
T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([
|
|
15663
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'],
|
|
15664
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_can'],
|
|
15665
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'],
|
|
15666
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
|
|
15667
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
|
|
15668
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'],
|
|
15669
|
-
]);
|
|
15670
|
-
|
|
15671
|
-
T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
|
|
15672
|
-
discriminator: PropTypes.oneOf(['info']).isRequired,
|
|
15673
|
-
info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
|
|
15674
|
-
});
|
|
15675
|
-
|
|
15676
|
-
T['io.flow.billing.v0.unions.bank_account_form'] = PropTypes.oneOfType([
|
|
15677
|
-
T['io.flow.billing.v0.models.bank_account_form_info'],
|
|
15678
|
-
T['io.flow.billing.v0.models.bank_account_form_simple'],
|
|
15679
|
-
]);
|
|
15680
|
-
|
|
15681
15855
|
T['io.flow.internal.v0.models.string_feature_rule_form'] = PropTypes.exact({
|
|
15682
15856
|
discriminator: PropTypes.oneOf(['string']).isRequired,
|
|
15683
15857
|
query: PropTypes.string.isRequired,
|
|
@@ -16035,6 +16209,7 @@ T['io.flow.internal.v0.models.product_sellability_internal_result'] = PropTypes.
|
|
|
16035
16209
|
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']).isRequired,
|
|
16036
16210
|
rule_matches: PropTypes.arrayOf(T['io.flow.internal.v0.models.product_sellability_internal_rule_match']).isRequired,
|
|
16037
16211
|
matching_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
16212
|
+
matching_sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
16038
16213
|
});
|
|
16039
16214
|
|
|
16040
16215
|
T['io.flow.internal.v0.models.product_sellability_internal'] = PropTypes.exact({
|
|
@@ -16671,6 +16846,11 @@ T['io.flow.ratecard.v0.unions.fuel_surcharge_rate'] = PropTypes.oneOfType([
|
|
|
16671
16846
|
T['io.flow.ratecard.v0.models.fuel_surcharge_by_weight'],
|
|
16672
16847
|
]);
|
|
16673
16848
|
|
|
16849
|
+
T['io.flow.ratecard.v0.models.fee_weight'] = PropTypes.exact({
|
|
16850
|
+
weight: PropTypes.number.isRequired,
|
|
16851
|
+
unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
16852
|
+
});
|
|
16853
|
+
|
|
16674
16854
|
T['io.flow.common.v0.models.measurement'] = PropTypes.exact({
|
|
16675
16855
|
value: PropTypes.string.isRequired,
|
|
16676
16856
|
units: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
@@ -16751,11 +16931,6 @@ T['io.flow.label.v0.models.single_package_shipping_notification_form'] = PropTyp
|
|
|
16751
16931
|
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
16752
16932
|
});
|
|
16753
16933
|
|
|
16754
|
-
T['io.flow.ratecard.v0.models.fee_weight'] = PropTypes.exact({
|
|
16755
|
-
weight: PropTypes.number.isRequired,
|
|
16756
|
-
unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
16757
|
-
});
|
|
16758
|
-
|
|
16759
16934
|
T['io.flow.internal.v0.models.failed_dimension_estimate_ops_input_with_reason'] = PropTypes.exact({
|
|
16760
16935
|
organization_id: PropTypes.string.isRequired,
|
|
16761
16936
|
length_units: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
@@ -17008,6 +17183,7 @@ T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
|
|
|
17008
17183
|
order_payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
17009
17184
|
amount_range: T['io.flow.internal.v0.models.report_amount_range'],
|
|
17010
17185
|
account_currency: T['io.flow.internal.v0.enums.account_currency_filter'],
|
|
17186
|
+
channel_id: PropTypes.string,
|
|
17011
17187
|
});
|
|
17012
17188
|
|
|
17013
17189
|
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
@@ -17477,35 +17653,6 @@ T['io.flow.internal.v0.models.compliance'] = PropTypes.exact({
|
|
|
17477
17653
|
data: T['io.flow.internal.v0.unions.compliance_data'].isRequired,
|
|
17478
17654
|
});
|
|
17479
17655
|
|
|
17480
|
-
T['io.flow.common.v0.models.entity_identifier'] = PropTypes.exact({
|
|
17481
|
-
name: T['io.flow.common.v0.enums.entity_identifier_type'].isRequired,
|
|
17482
|
-
number: PropTypes.string.isRequired,
|
|
17483
|
-
issuing_country: PropTypes.string,
|
|
17484
|
-
});
|
|
17485
|
-
|
|
17486
|
-
T['io.flow.common.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
|
|
17487
|
-
number: PropTypes.string.isRequired,
|
|
17488
|
-
country: PropTypes.string.isRequired,
|
|
17489
|
-
province_number: PropTypes.string,
|
|
17490
|
-
province: PropTypes.string,
|
|
17491
|
-
});
|
|
17492
|
-
|
|
17493
|
-
T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'] = PropTypes.exact({
|
|
17494
|
-
name: PropTypes.string.isRequired,
|
|
17495
|
-
vat: T['io.flow.common.v0.models.merchant_of_record_entity_registration'],
|
|
17496
|
-
streets: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
17497
|
-
city: PropTypes.string.isRequired,
|
|
17498
|
-
province: PropTypes.string,
|
|
17499
|
-
postal: PropTypes.string,
|
|
17500
|
-
country: PropTypes.string.isRequired,
|
|
17501
|
-
phone: PropTypes.string,
|
|
17502
|
-
email: PropTypes.string,
|
|
17503
|
-
starts_at: PropTypes.string.isRequired,
|
|
17504
|
-
ends_at: PropTypes.string,
|
|
17505
|
-
center: PropTypes.string,
|
|
17506
|
-
currency: PropTypes.string,
|
|
17507
|
-
});
|
|
17508
|
-
|
|
17509
17656
|
T['io.flow.fulfillment.v0.models.center_reference'] = PropTypes.exact({
|
|
17510
17657
|
discriminator: PropTypes.oneOf(['center_reference']).isRequired,
|
|
17511
17658
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -18306,6 +18453,7 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
18306
18453
|
'unsupported_order_edit',
|
|
18307
18454
|
'order_allocation_duties_mismatch',
|
|
18308
18455
|
'order_missing',
|
|
18456
|
+
'organization_deactivated',
|
|
18309
18457
|
]);
|
|
18310
18458
|
|
|
18311
18459
|
T['io.flow.channel.shopify.v0.models.external_order_summary'] = PropTypes.exact({
|
|
@@ -18372,6 +18520,49 @@ T['io.flow.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact(
|
|
|
18372
18520
|
status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
18373
18521
|
});
|
|
18374
18522
|
|
|
18523
|
+
T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
|
|
18524
|
+
|
|
18525
|
+
T['io.flow.organization.v0.models.membership_put_form'] = PropTypes.exact({
|
|
18526
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
18527
|
+
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
18528
|
+
});
|
|
18529
|
+
|
|
18530
|
+
T['io.flow.organization.v0.models.membership_form'] = PropTypes.exact({
|
|
18531
|
+
organization: PropTypes.string.isRequired,
|
|
18532
|
+
user: PropTypes.string.isRequired,
|
|
18533
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
18534
|
+
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
18535
|
+
});
|
|
18536
|
+
|
|
18537
|
+
T['io.flow.channel.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
|
|
18538
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
18539
|
+
});
|
|
18540
|
+
|
|
18541
|
+
T['io.flow.channel.internal.v0.models.channel_membership_form'] = PropTypes.exact({
|
|
18542
|
+
channel_id: PropTypes.string.isRequired,
|
|
18543
|
+
user_id: PropTypes.string.isRequired,
|
|
18544
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
18545
|
+
});
|
|
18546
|
+
|
|
18547
|
+
T['io.flow.internal.v0.models.partner_membership_put_form'] = PropTypes.exact({
|
|
18548
|
+
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
18549
|
+
});
|
|
18550
|
+
|
|
18551
|
+
T['io.flow.internal.v0.models.partner_membership_form'] = PropTypes.exact({
|
|
18552
|
+
user: PropTypes.string.isRequired,
|
|
18553
|
+
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
18554
|
+
});
|
|
18555
|
+
|
|
18556
|
+
T['io.flow.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
|
|
18557
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
18558
|
+
});
|
|
18559
|
+
|
|
18560
|
+
T['io.flow.internal.v0.models.channel_membership_form'] = PropTypes.exact({
|
|
18561
|
+
channel_id: PropTypes.string.isRequired,
|
|
18562
|
+
user_id: PropTypes.string.isRequired,
|
|
18563
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
18564
|
+
});
|
|
18565
|
+
|
|
18375
18566
|
T['io.flow.reference.v0.models.carrier'] = PropTypes.exact({
|
|
18376
18567
|
id: PropTypes.string.isRequired,
|
|
18377
18568
|
name: PropTypes.string.isRequired,
|
|
@@ -18522,6 +18713,11 @@ T['io.flow.organization.v0.models.organization_authorization_form'] = PropTypes.
|
|
|
18522
18713
|
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
18523
18714
|
});
|
|
18524
18715
|
|
|
18716
|
+
T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact({
|
|
18717
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
18718
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
18719
|
+
});
|
|
18720
|
+
|
|
18525
18721
|
T['io.flow.token.v0.models.partner_token_form'] = PropTypes.exact({
|
|
18526
18722
|
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
18527
18723
|
description: PropTypes.string,
|
|
@@ -18571,6 +18767,11 @@ T['io.flow.internal.v0.models.partner_authorization_form'] = PropTypes.exact({
|
|
|
18571
18767
|
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
18572
18768
|
});
|
|
18573
18769
|
|
|
18770
|
+
T['io.flow.internal.v0.models.partner_authorization'] = PropTypes.exact({
|
|
18771
|
+
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
18772
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
18773
|
+
});
|
|
18774
|
+
|
|
18574
18775
|
T['io.flow.internal.v0.models.partner'] = PropTypes.exact({
|
|
18575
18776
|
id: PropTypes.string.isRequired,
|
|
18576
18777
|
name: PropTypes.string.isRequired,
|
|
@@ -18832,6 +19033,14 @@ T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
|
|
|
18832
19033
|
id: PropTypes.string.isRequired,
|
|
18833
19034
|
});
|
|
18834
19035
|
|
|
19036
|
+
T['io.flow.channel.internal.v0.models.channel_shop_statistics'] = PropTypes.exact({
|
|
19037
|
+
id: PropTypes.string.isRequired,
|
|
19038
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19039
|
+
initial_catalog_synced_at: PropTypes.string,
|
|
19040
|
+
catalog_sync_duration: PropTypes.number,
|
|
19041
|
+
catalog_products_count: PropTypes.number,
|
|
19042
|
+
});
|
|
19043
|
+
|
|
18835
19044
|
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_summary'] = PropTypes.exact({
|
|
18836
19045
|
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
18837
19046
|
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
@@ -18852,6 +19061,7 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop'] = PropTypes
|
|
|
18852
19061
|
access_token_masked: PropTypes.string,
|
|
18853
19062
|
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
18854
19063
|
catalog_publication_owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'],
|
|
19064
|
+
fast_sellability_completed_at: PropTypes.string,
|
|
18855
19065
|
});
|
|
18856
19066
|
|
|
18857
19067
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
@@ -18889,6 +19099,7 @@ T['io.flow.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
|
18889
19099
|
access_token_masked: PropTypes.string,
|
|
18890
19100
|
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
18891
19101
|
catalog_publication_owner: T['io.flow.internal.v0.enums.catalog_publication_owner'],
|
|
19102
|
+
fast_sellability_completed_at: PropTypes.string,
|
|
18892
19103
|
});
|
|
18893
19104
|
|
|
18894
19105
|
T['io.flow.internal.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
@@ -18918,6 +19129,22 @@ T['io.flow.internal.v0.models.internal_channel_rate_upserted'] = PropTypes.exact
|
|
|
18918
19129
|
rate: T['io.flow.internal.v0.models.internal_channel_rate'].isRequired,
|
|
18919
19130
|
});
|
|
18920
19131
|
|
|
19132
|
+
T['io.flow.internal.v0.models.channel_shop_statistics'] = PropTypes.exact({
|
|
19133
|
+
id: PropTypes.string.isRequired,
|
|
19134
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19135
|
+
initial_catalog_synced_at: PropTypes.string,
|
|
19136
|
+
catalog_sync_duration: PropTypes.number,
|
|
19137
|
+
catalog_products_count: PropTypes.number,
|
|
19138
|
+
});
|
|
19139
|
+
|
|
19140
|
+
T['io.flow.internal.v0.models.channel_shop_statistics_upserted'] = PropTypes.exact({
|
|
19141
|
+
discriminator: PropTypes.oneOf(['channel_shop_statistics_upserted']).isRequired,
|
|
19142
|
+
event_id: PropTypes.string.isRequired,
|
|
19143
|
+
timestamp: PropTypes.string.isRequired,
|
|
19144
|
+
organization: PropTypes.string.isRequired,
|
|
19145
|
+
channel_shop_statistics: T['io.flow.internal.v0.models.channel_shop_statistics'].isRequired,
|
|
19146
|
+
});
|
|
19147
|
+
|
|
18921
19148
|
T['io.flow.common.v0.models.dimensions'] = PropTypes.exact({
|
|
18922
19149
|
product: T['io.flow.common.v0.models.dimension'],
|
|
18923
19150
|
packaging: T['io.flow.common.v0.models.dimension'],
|
|
@@ -18992,6 +19219,38 @@ T['io.flow.common.v0.models.address'] = PropTypes.exact({
|
|
|
18992
19219
|
longitude: PropTypes.string,
|
|
18993
19220
|
});
|
|
18994
19221
|
|
|
19222
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'] = PropTypes.exact({
|
|
19223
|
+
discriminator: PropTypes.oneOf(['kor']).isRequired,
|
|
19224
|
+
name: PropTypes.string,
|
|
19225
|
+
address: T['io.flow.common.v0.models.address'],
|
|
19226
|
+
phone: PropTypes.string,
|
|
19227
|
+
email: PropTypes.string,
|
|
19228
|
+
bank_account_number: PropTypes.string.isRequired,
|
|
19229
|
+
bank_routing_number: PropTypes.string,
|
|
19230
|
+
bank_name: PropTypes.string,
|
|
19231
|
+
bank_address: T['io.flow.common.v0.models.address'],
|
|
19232
|
+
});
|
|
19233
|
+
|
|
19234
|
+
T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([
|
|
19235
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'],
|
|
19236
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_can'],
|
|
19237
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'],
|
|
19238
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
|
|
19239
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
|
|
19240
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'],
|
|
19241
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor_v2'],
|
|
19242
|
+
]);
|
|
19243
|
+
|
|
19244
|
+
T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
|
|
19245
|
+
discriminator: PropTypes.oneOf(['info']).isRequired,
|
|
19246
|
+
info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
|
|
19247
|
+
});
|
|
19248
|
+
|
|
19249
|
+
T['io.flow.billing.v0.unions.bank_account_form'] = PropTypes.oneOfType([
|
|
19250
|
+
T['io.flow.billing.v0.models.bank_account_form_info'],
|
|
19251
|
+
T['io.flow.billing.v0.models.bank_account_form_simple'],
|
|
19252
|
+
]);
|
|
19253
|
+
|
|
18995
19254
|
T['io.flow.merchant.onboarding.v0.models.operations_contact'] = PropTypes.exact({
|
|
18996
19255
|
company: PropTypes.string,
|
|
18997
19256
|
email: PropTypes.string,
|
|
@@ -19504,6 +19763,7 @@ T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
|
19504
19763
|
T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'],
|
|
19505
19764
|
T['io.flow.billing.v0.models.transaction_metadata_tax_duty'],
|
|
19506
19765
|
T['io.flow.billing.v0.models.transaction_metadata_merchant_fee'],
|
|
19766
|
+
T['io.flow.billing.v0.models.transaction_metadata_flat_rate_label'],
|
|
19507
19767
|
]);
|
|
19508
19768
|
|
|
19509
19769
|
T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
|
|
@@ -20361,6 +20621,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
20361
20621
|
'b2b_tax_refund',
|
|
20362
20622
|
'b2b_fee_mor_tax',
|
|
20363
20623
|
'b2b_fee_shipping_tax',
|
|
20624
|
+
'flat_rate_label',
|
|
20364
20625
|
]);
|
|
20365
20626
|
|
|
20366
20627
|
T['io.flow.internal.v0.models.debug_original_transaction_summary'] = PropTypes.exact({
|
|
@@ -20587,7 +20848,44 @@ T['io.flow.internal.v0.models.debug_banking_details'] = PropTypes.exact({
|
|
|
20587
20848
|
account: T['io.flow.internal.v0.models.bank_account'].isRequired,
|
|
20588
20849
|
});
|
|
20589
20850
|
|
|
20590
|
-
T['io.flow.
|
|
20851
|
+
T['io.flow.common.v0.models.entity_identifier'] = PropTypes.exact({
|
|
20852
|
+
name: T['io.flow.common.v0.enums.entity_identifier_type'].isRequired,
|
|
20853
|
+
number: PropTypes.string.isRequired,
|
|
20854
|
+
issuing_country: PropTypes.string,
|
|
20855
|
+
});
|
|
20856
|
+
|
|
20857
|
+
T['io.flow.common.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
|
|
20858
|
+
number: PropTypes.string.isRequired,
|
|
20859
|
+
country: PropTypes.string.isRequired,
|
|
20860
|
+
province_number: PropTypes.string,
|
|
20861
|
+
province: PropTypes.string,
|
|
20862
|
+
});
|
|
20863
|
+
|
|
20864
|
+
T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'] = PropTypes.exact({
|
|
20865
|
+
name: PropTypes.string.isRequired,
|
|
20866
|
+
vat: T['io.flow.common.v0.models.merchant_of_record_entity_registration'],
|
|
20867
|
+
streets: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20868
|
+
city: PropTypes.string.isRequired,
|
|
20869
|
+
province: PropTypes.string,
|
|
20870
|
+
postal: PropTypes.string,
|
|
20871
|
+
country: PropTypes.string.isRequired,
|
|
20872
|
+
phone: PropTypes.string,
|
|
20873
|
+
email: PropTypes.string,
|
|
20874
|
+
starts_at: PropTypes.string.isRequired,
|
|
20875
|
+
ends_at: PropTypes.string,
|
|
20876
|
+
center: PropTypes.string,
|
|
20877
|
+
currency: PropTypes.string,
|
|
20878
|
+
});
|
|
20879
|
+
|
|
20880
|
+
T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'] = PropTypes.oneOf([
|
|
20881
|
+
'b2b_invoice',
|
|
20882
|
+
'b2b_credit_memo',
|
|
20883
|
+
'mor_invoice',
|
|
20884
|
+
'mor_credit_memo',
|
|
20885
|
+
'label_invoice',
|
|
20886
|
+
'label_credit_memo',
|
|
20887
|
+
]);
|
|
20888
|
+
|
|
20591
20889
|
T['io.flow.internal.v0.enums.b2b_tax_rate_type'] = PropTypes.oneOf(['basic', 'preferential', 'exempt']);
|
|
20592
20890
|
T['io.flow.consumer.invoice.v0.enums.tax_type'] = PropTypes.oneOf(['vat', 'gst', 'hst', 'pst', 'qst', 'sales_tax']);
|
|
20593
20891
|
T['io.flow.internal.v0.enums.b2b_fee_shipping_tax_trigger_type'] = PropTypes.oneOf(['label', 'trueup']);
|
|
@@ -20683,6 +20981,14 @@ T['io.flow.common.v0.models.name'] = PropTypes.exact({
|
|
|
20683
20981
|
last: PropTypes.string,
|
|
20684
20982
|
});
|
|
20685
20983
|
|
|
20984
|
+
T['io.flow.organization.v0.models.invitation_form'] = PropTypes.exact({
|
|
20985
|
+
organization: PropTypes.string.isRequired,
|
|
20986
|
+
email: PropTypes.string.isRequired,
|
|
20987
|
+
name: T['io.flow.common.v0.models.name'],
|
|
20988
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
20989
|
+
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
20990
|
+
});
|
|
20991
|
+
|
|
20686
20992
|
T['io.flow.internal.v0.models.search_customer_summary'] = PropTypes.exact({
|
|
20687
20993
|
name: T['io.flow.common.v0.models.name'].isRequired,
|
|
20688
20994
|
email: PropTypes.string,
|
|
@@ -21628,71 +21934,6 @@ T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
|
21628
21934
|
});
|
|
21629
21935
|
|
|
21630
21936
|
T['io.flow.internal.v0.enums.amrutha_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
21631
|
-
T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
|
|
21632
|
-
|
|
21633
|
-
T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact({
|
|
21634
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
21635
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
21636
|
-
});
|
|
21637
|
-
|
|
21638
|
-
T['io.flow.organization.v0.models.membership_put_form'] = PropTypes.exact({
|
|
21639
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
21640
|
-
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
21641
|
-
});
|
|
21642
|
-
|
|
21643
|
-
T['io.flow.organization.v0.models.membership_form'] = PropTypes.exact({
|
|
21644
|
-
organization: PropTypes.string.isRequired,
|
|
21645
|
-
user: PropTypes.string.isRequired,
|
|
21646
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
21647
|
-
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
21648
|
-
});
|
|
21649
|
-
|
|
21650
|
-
T['io.flow.organization.v0.models.invitation_form'] = PropTypes.exact({
|
|
21651
|
-
organization: PropTypes.string.isRequired,
|
|
21652
|
-
email: PropTypes.string.isRequired,
|
|
21653
|
-
name: T['io.flow.common.v0.models.name'],
|
|
21654
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
21655
|
-
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
21656
|
-
});
|
|
21657
|
-
|
|
21658
|
-
T['io.flow.channel.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
|
|
21659
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
21660
|
-
});
|
|
21661
|
-
|
|
21662
|
-
T['io.flow.channel.internal.v0.models.channel_membership_form'] = PropTypes.exact({
|
|
21663
|
-
channel_id: PropTypes.string.isRequired,
|
|
21664
|
-
user_id: PropTypes.string.isRequired,
|
|
21665
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
21666
|
-
});
|
|
21667
|
-
|
|
21668
|
-
T['io.flow.internal.v0.models.partner_membership_put_form'] = PropTypes.exact({
|
|
21669
|
-
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
21670
|
-
});
|
|
21671
|
-
|
|
21672
|
-
T['io.flow.internal.v0.models.partner_membership_form'] = PropTypes.exact({
|
|
21673
|
-
user: PropTypes.string.isRequired,
|
|
21674
|
-
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
21675
|
-
});
|
|
21676
|
-
|
|
21677
|
-
T['io.flow.internal.v0.models.partner_authorization'] = PropTypes.exact({
|
|
21678
|
-
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
21679
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
21680
|
-
});
|
|
21681
|
-
|
|
21682
|
-
T['io.flow.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
|
|
21683
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
21684
|
-
});
|
|
21685
|
-
|
|
21686
|
-
T['io.flow.internal.v0.models.channel_membership_form'] = PropTypes.exact({
|
|
21687
|
-
channel_id: PropTypes.string.isRequired,
|
|
21688
|
-
user_id: PropTypes.string.isRequired,
|
|
21689
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
21690
|
-
});
|
|
21691
|
-
|
|
21692
|
-
T['io.flow.internal.v0.models.all_organizations_membership'] = PropTypes.exact({
|
|
21693
|
-
user_id: PropTypes.string.isRequired,
|
|
21694
|
-
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
21695
|
-
});
|
|
21696
21937
|
|
|
21697
21938
|
T['io.flow.internal.v0.models.afterpay_refund'] = PropTypes.exact({
|
|
21698
21939
|
id: PropTypes.string.isRequired,
|
|
@@ -23244,7 +23485,7 @@ T['io.flow.experience.v0.models.discount_rule_settings'] = PropTypes.exact({
|
|
|
23244
23485
|
|
|
23245
23486
|
T['io.flow.common.v0.models.discount_form'] = PropTypes.exact({
|
|
23246
23487
|
offer: T['io.flow.common.v0.unions.discount_offer'].isRequired,
|
|
23247
|
-
target: T['io.flow.common.v0.enums.discount_target']
|
|
23488
|
+
target: T['io.flow.common.v0.enums.discount_target'],
|
|
23248
23489
|
label: PropTypes.string,
|
|
23249
23490
|
});
|
|
23250
23491
|
|
|
@@ -23727,6 +23968,23 @@ T['io.flow.internal.v0.models.preonboarding_classification_request'] = PropTypes
|
|
|
23727
23968
|
relative_ranking: PropTypes.number.isRequired,
|
|
23728
23969
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
23729
23970
|
fingerprint: PropTypes.string.isRequired,
|
|
23971
|
+
screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
|
|
23972
|
+
});
|
|
23973
|
+
|
|
23974
|
+
T['io.flow.internal.v0.models.mor_cost_summary'] = PropTypes.exact({
|
|
23975
|
+
id: PropTypes.string.isRequired,
|
|
23976
|
+
organization_id: PropTypes.string.isRequired,
|
|
23977
|
+
order_number: PropTypes.string.isRequired,
|
|
23978
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
23979
|
+
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
23980
|
+
});
|
|
23981
|
+
|
|
23982
|
+
T['io.flow.internal.v0.models.mor_cost_upserted'] = PropTypes.exact({
|
|
23983
|
+
discriminator: PropTypes.oneOf(['mor_cost_upserted']).isRequired,
|
|
23984
|
+
event_id: PropTypes.string.isRequired,
|
|
23985
|
+
timestamp: PropTypes.string.isRequired,
|
|
23986
|
+
organization: PropTypes.string.isRequired,
|
|
23987
|
+
mor_cost: T['io.flow.internal.v0.models.mor_cost_summary'].isRequired,
|
|
23730
23988
|
});
|
|
23731
23989
|
|
|
23732
23990
|
T['io.flow.internal.v0.models.liability_money'] = PropTypes.exact({
|
|
@@ -23776,16 +24034,21 @@ T['io.flow.internal.v0.models.fx_revenue_recognition'] = PropTypes.exact({
|
|
|
23776
24034
|
reporting_date: PropTypes.string,
|
|
23777
24035
|
});
|
|
23778
24036
|
|
|
23779
|
-
T['io.flow.internal.v0.models.
|
|
23780
|
-
|
|
24037
|
+
T['io.flow.internal.v0.models.flat_rate_label_reversal'] = PropTypes.exact({
|
|
24038
|
+
id: PropTypes.string.isRequired,
|
|
24039
|
+
organization_id: PropTypes.string.isRequired,
|
|
24040
|
+
order_number: PropTypes.string.isRequired,
|
|
23781
24041
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
23782
|
-
|
|
24042
|
+
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
23783
24043
|
});
|
|
23784
24044
|
|
|
23785
|
-
T['io.flow.internal.v0.
|
|
23786
|
-
|
|
23787
|
-
|
|
23788
|
-
|
|
24045
|
+
T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'] = PropTypes.exact({
|
|
24046
|
+
discriminator: PropTypes.oneOf(['flat_rate_label_reversal_upserted']).isRequired,
|
|
24047
|
+
event_id: PropTypes.string.isRequired,
|
|
24048
|
+
timestamp: PropTypes.string.isRequired,
|
|
24049
|
+
organization: PropTypes.string.isRequired,
|
|
24050
|
+
flat_rate_label_reversal: T['io.flow.internal.v0.models.flat_rate_label_reversal'].isRequired,
|
|
24051
|
+
});
|
|
23789
24052
|
|
|
23790
24053
|
T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
23791
24054
|
number: PropTypes.string.isRequired,
|
|
@@ -23800,6 +24063,7 @@ T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
|
23800
24063
|
});
|
|
23801
24064
|
|
|
23802
24065
|
T['io.flow.ratecard.v0.models.shipping_rate_estimate_request'] = PropTypes.exact({
|
|
24066
|
+
carrier_id: PropTypes.string.isRequired,
|
|
23803
24067
|
origin_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
23804
24068
|
destination_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
23805
24069
|
package_dimensions: T['io.flow.common.v0.models.dimension'].isRequired,
|
|
@@ -24351,9 +24615,26 @@ T['io.flow.internal.v0.models.calculation_stamping_line_item'] = PropTypes.exact
|
|
|
24351
24615
|
sales_tax_rate: PropTypes.number.isRequired,
|
|
24352
24616
|
additional_tax: T['io.flow.common.v0.models.money'],
|
|
24353
24617
|
additional_tax_rate: PropTypes.number,
|
|
24618
|
+
fixed_fee: T['io.flow.common.v0.models.money'],
|
|
24619
|
+
fixed_fee_tax: T['io.flow.common.v0.models.money'],
|
|
24354
24620
|
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
24355
24621
|
});
|
|
24356
24622
|
|
|
24623
|
+
T['io.flow.internal.v0.models.b2b_transaction_tax_line'] = PropTypes.exact({
|
|
24624
|
+
tax_type: T['io.flow.consumer.invoice.v0.enums.tax_type'].isRequired,
|
|
24625
|
+
tax_rate: PropTypes.number.isRequired,
|
|
24626
|
+
tax_amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
24627
|
+
tax_rate_type: T['io.flow.internal.v0.enums.b2b_tax_rate_type'].isRequired,
|
|
24628
|
+
});
|
|
24629
|
+
|
|
24630
|
+
T['io.flow.internal.v0.models.b2b_transaction_taxable_item'] = PropTypes.exact({
|
|
24631
|
+
line_item_reference: PropTypes.string.isRequired,
|
|
24632
|
+
label: PropTypes.string.isRequired,
|
|
24633
|
+
taxable_amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
24634
|
+
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
24635
|
+
taxes: PropTypes.arrayOf(T['io.flow.internal.v0.models.b2b_transaction_tax_line']).isRequired,
|
|
24636
|
+
});
|
|
24637
|
+
|
|
24357
24638
|
T['io.flow.internal.v0.models.tax_type_total'] = PropTypes.exact({
|
|
24358
24639
|
value: T['io.flow.common.v0.models.money'].isRequired,
|
|
24359
24640
|
});
|
|
@@ -24464,6 +24745,8 @@ T['io.flow.internal.v0.models.calculation_total'] = PropTypes.exact({
|
|
|
24464
24745
|
additional_tax_import_included: PropTypes.bool.isRequired,
|
|
24465
24746
|
additional_tax: T['io.flow.common.v0.models.money'],
|
|
24466
24747
|
additional_import_tax: PropTypes.arrayOf(T['io.flow.internal.v0.models.additional_import_tax']),
|
|
24748
|
+
fixed_fee: T['io.flow.common.v0.models.money'],
|
|
24749
|
+
fixed_fee_tax: T['io.flow.common.v0.models.money'],
|
|
24467
24750
|
});
|
|
24468
24751
|
|
|
24469
24752
|
T['io.flow.internal.v0.models.calculation_step'] = PropTypes.exact({
|
|
@@ -24480,6 +24763,55 @@ T['io.flow.internal.v0.unions.calculator_stamp'] = PropTypes.oneOfType([
|
|
|
24480
24763
|
T['io.flow.internal.v0.models.calculation_step'],
|
|
24481
24764
|
]);
|
|
24482
24765
|
|
|
24766
|
+
T['io.flow.internal.v0.enums.mail_class'] = PropTypes.oneOf(['standard', 'express']);
|
|
24767
|
+
|
|
24768
|
+
T['io.flow.internal.v0.models.flat_rate'] = PropTypes.exact({
|
|
24769
|
+
mail_class: T['io.flow.internal.v0.enums.mail_class'].isRequired,
|
|
24770
|
+
carrier_id: PropTypes.string.isRequired,
|
|
24771
|
+
service_id: PropTypes.string.isRequired,
|
|
24772
|
+
price: T['io.flow.common.v0.models.money'].isRequired,
|
|
24773
|
+
free_shipping_threshold: T['io.flow.common.v0.models.money'],
|
|
24774
|
+
min_delivery_days: PropTypes.number,
|
|
24775
|
+
max_delivery_days: PropTypes.number,
|
|
24776
|
+
});
|
|
24777
|
+
|
|
24778
|
+
T['io.flow.internal.v0.models.adaptive_shipping_rate'] = PropTypes.exact({
|
|
24779
|
+
id: PropTypes.string.isRequired,
|
|
24780
|
+
organization_id: PropTypes.string.isRequired,
|
|
24781
|
+
destination_country: PropTypes.string.isRequired,
|
|
24782
|
+
coefficient: PropTypes.number.isRequired,
|
|
24783
|
+
flat_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.flat_rate']).isRequired,
|
|
24784
|
+
effective_at: PropTypes.string.isRequired,
|
|
24785
|
+
effective_until: PropTypes.string,
|
|
24786
|
+
});
|
|
24787
|
+
|
|
24788
|
+
T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'] = PropTypes.exact({
|
|
24789
|
+
discriminator: PropTypes.oneOf(['adaptive_shipping_rate_upserted']).isRequired,
|
|
24790
|
+
event_id: PropTypes.string.isRequired,
|
|
24791
|
+
timestamp: PropTypes.string.isRequired,
|
|
24792
|
+
organization: PropTypes.string.isRequired,
|
|
24793
|
+
adaptive_shipping_rate: T['io.flow.internal.v0.models.adaptive_shipping_rate'].isRequired,
|
|
24794
|
+
});
|
|
24795
|
+
|
|
24796
|
+
T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'] = PropTypes.oneOf(['confirmed', 'voided']);
|
|
24797
|
+
|
|
24798
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'] = PropTypes.exact({
|
|
24799
|
+
id: PropTypes.string.isRequired,
|
|
24800
|
+
organization_id: PropTypes.string.isRequired,
|
|
24801
|
+
order_number: PropTypes.string.isRequired,
|
|
24802
|
+
guarantee_state: T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'].isRequired,
|
|
24803
|
+
label_id: PropTypes.string,
|
|
24804
|
+
notification_id: PropTypes.string,
|
|
24805
|
+
});
|
|
24806
|
+
|
|
24807
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'] = PropTypes.exact({
|
|
24808
|
+
discriminator: PropTypes.oneOf(['adaptive_shipping_order_guarantee_upserted']).isRequired,
|
|
24809
|
+
event_id: PropTypes.string.isRequired,
|
|
24810
|
+
timestamp: PropTypes.string.isRequired,
|
|
24811
|
+
organization: PropTypes.string.isRequired,
|
|
24812
|
+
adaptive_shipping_order_guarantee: T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'].isRequired,
|
|
24813
|
+
});
|
|
24814
|
+
|
|
24483
24815
|
T['io.flow.internal.v0.enums.item_quantity_action'] = PropTypes.oneOf(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']);
|
|
24484
24816
|
|
|
24485
24817
|
T['io.flow.internal.v0.models.action_quantity'] = PropTypes.exact({
|
|
@@ -24771,21 +25103,6 @@ T['io.flow.internal.v0.models.ratecard_internal_summary'] = PropTypes.exact({
|
|
|
24771
25103
|
number: PropTypes.string.isRequired,
|
|
24772
25104
|
});
|
|
24773
25105
|
|
|
24774
|
-
T['io.flow.internal.v0.models.ratecard_standard_configuration'] = PropTypes.exact({
|
|
24775
|
-
id: PropTypes.string.isRequired,
|
|
24776
|
-
key: PropTypes.string.isRequired,
|
|
24777
|
-
source_ratecard: T['io.flow.internal.v0.models.ratecard_internal_summary'].isRequired,
|
|
24778
|
-
settings: T['io.flow.internal.v0.models.ratecard_standard_settings'].isRequired,
|
|
24779
|
-
});
|
|
24780
|
-
|
|
24781
|
-
T['io.flow.internal.v0.models.ratecard_standard_configuration_upserted'] = PropTypes.exact({
|
|
24782
|
-
discriminator: PropTypes.oneOf(['ratecard_standard_configuration_upserted']).isRequired,
|
|
24783
|
-
event_id: PropTypes.string.isRequired,
|
|
24784
|
-
timestamp: PropTypes.string.isRequired,
|
|
24785
|
-
organization: PropTypes.string.isRequired,
|
|
24786
|
-
configuration: T['io.flow.internal.v0.models.ratecard_standard_configuration'].isRequired,
|
|
24787
|
-
});
|
|
24788
|
-
|
|
24789
25106
|
T['io.flow.internal.v0.models.ratecard_service_fees_override'] = PropTypes.exact({
|
|
24790
25107
|
ratecard: T['io.flow.internal.v0.models.ratecard_internal_summary'].isRequired,
|
|
24791
25108
|
service_fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
|
|
@@ -24820,7 +25137,7 @@ T['io.flow.common.v0.models.organization'] = PropTypes.exact({
|
|
|
24820
25137
|
parent: T['io.flow.common.v0.models.organization_reference'],
|
|
24821
25138
|
defaults: T['io.flow.common.v0.models.organization_defaults'],
|
|
24822
25139
|
created_at: PropTypes.string,
|
|
24823
|
-
status: T['io.flow.common.v0.enums.organization_status']
|
|
25140
|
+
status: T['io.flow.common.v0.enums.organization_status'],
|
|
24824
25141
|
type: T['io.flow.common.v0.enums.organization_type'],
|
|
24825
25142
|
});
|
|
24826
25143
|
|
|
@@ -24911,6 +25228,130 @@ T['io.flow.internal.v0.models.order_summary'] = PropTypes.exact({
|
|
|
24911
25228
|
currency: PropTypes.string.isRequired,
|
|
24912
25229
|
});
|
|
24913
25230
|
|
|
25231
|
+
T['io.flow.internal.v0.models.channel_shop'] = PropTypes.exact({
|
|
25232
|
+
id: PropTypes.string.isRequired,
|
|
25233
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25234
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
25235
|
+
external_id: PropTypes.string.isRequired,
|
|
25236
|
+
name: PropTypes.string.isRequired,
|
|
25237
|
+
domains: T['io.flow.internal.v0.models.channel_organization_domains'].isRequired,
|
|
25238
|
+
});
|
|
25239
|
+
|
|
25240
|
+
T['io.flow.channel.v0.models.channel_organization'] = PropTypes.exact({
|
|
25241
|
+
id: PropTypes.string.isRequired,
|
|
25242
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25243
|
+
key: PropTypes.string.isRequired,
|
|
25244
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
25245
|
+
name: PropTypes.string.isRequired,
|
|
25246
|
+
slug: PropTypes.string,
|
|
25247
|
+
defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
|
|
25248
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
25249
|
+
});
|
|
25250
|
+
|
|
25251
|
+
T['io.flow.channel.internal.v0.models.channel_organization_installation'] = PropTypes.exact({
|
|
25252
|
+
organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
|
|
25253
|
+
tokens: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_organization_token']).isRequired,
|
|
25254
|
+
});
|
|
25255
|
+
|
|
25256
|
+
T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
|
|
25257
|
+
organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
|
|
25258
|
+
|
|
25259
|
+
tokens: PropTypes.arrayOf(
|
|
25260
|
+
T['io.flow.channel.shopify.internal.v0.models.shopify_channel_organization_tokens'],
|
|
25261
|
+
).isRequired,
|
|
25262
|
+
});
|
|
25263
|
+
|
|
25264
|
+
T['io.flow.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
|
|
25265
|
+
organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
|
|
25266
|
+
tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_channel_organization_tokens']).isRequired,
|
|
25267
|
+
});
|
|
25268
|
+
|
|
25269
|
+
T['io.flow.internal.v0.models.channel_organization_installation'] = PropTypes.exact({
|
|
25270
|
+
organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
|
|
25271
|
+
tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_organization_token']).isRequired,
|
|
25272
|
+
});
|
|
25273
|
+
|
|
25274
|
+
T['io.flow.internal.v0.models.channel_organization_identifier'] = PropTypes.exact({
|
|
25275
|
+
id: PropTypes.string.isRequired,
|
|
25276
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25277
|
+
identifier: PropTypes.string.isRequired,
|
|
25278
|
+
});
|
|
25279
|
+
|
|
25280
|
+
T['io.flow.internal.v0.models.channel_organization_identifier_upserted'] = PropTypes.exact({
|
|
25281
|
+
discriminator: PropTypes.oneOf(['channel_organization_identifier_upserted']).isRequired,
|
|
25282
|
+
event_id: PropTypes.string.isRequired,
|
|
25283
|
+
timestamp: PropTypes.string.isRequired,
|
|
25284
|
+
channel_id: PropTypes.string.isRequired,
|
|
25285
|
+
channel_organization_identifier: T['io.flow.internal.v0.models.channel_organization_identifier'].isRequired,
|
|
25286
|
+
});
|
|
25287
|
+
|
|
25288
|
+
T['io.flow.internal.v0.models.channel_order_summary'] = PropTypes.exact({
|
|
25289
|
+
id: PropTypes.string.isRequired,
|
|
25290
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25291
|
+
external_order_reference: PropTypes.string.isRequired,
|
|
25292
|
+
order_number: PropTypes.string.isRequired,
|
|
25293
|
+
fulfullment_details: T['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'].isRequired,
|
|
25294
|
+
});
|
|
25295
|
+
|
|
25296
|
+
T['io.flow.internal.v0.models.channel_order_summary_upserted'] = PropTypes.exact({
|
|
25297
|
+
discriminator: PropTypes.oneOf(['channel_order_summary_upserted']).isRequired,
|
|
25298
|
+
event_id: PropTypes.string.isRequired,
|
|
25299
|
+
timestamp: PropTypes.string.isRequired,
|
|
25300
|
+
channel_id: PropTypes.string.isRequired,
|
|
25301
|
+
channel_order_summary: T['io.flow.internal.v0.models.channel_order_summary'].isRequired,
|
|
25302
|
+
});
|
|
25303
|
+
|
|
25304
|
+
T['io.flow.internal.v0.models.billing_order_transaction_order_reference'] = PropTypes.exact({
|
|
25305
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25306
|
+
number: PropTypes.string.isRequired,
|
|
25307
|
+
});
|
|
25308
|
+
|
|
25309
|
+
T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'] = PropTypes.exact({
|
|
25310
|
+
discriminator: PropTypes.oneOf(['time_elapsed']).isRequired,
|
|
25311
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
25312
|
+
created_at: PropTypes.string.isRequired,
|
|
25313
|
+
});
|
|
25314
|
+
|
|
25315
|
+
T['io.flow.internal.v0.models.proof_of_posting_synthetic'] = PropTypes.exact({
|
|
25316
|
+
discriminator: PropTypes.oneOf(['synthetic']).isRequired,
|
|
25317
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
25318
|
+
created_at: PropTypes.string.isRequired,
|
|
25319
|
+
});
|
|
25320
|
+
|
|
25321
|
+
T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
|
|
25322
|
+
T['io.flow.internal.v0.models.proof_of_posting_fulfilled'],
|
|
25323
|
+
T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'],
|
|
25324
|
+
T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'],
|
|
25325
|
+
T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'],
|
|
25326
|
+
T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'],
|
|
25327
|
+
T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'],
|
|
25328
|
+
T['io.flow.internal.v0.models.proof_of_posting_synthetic'],
|
|
25329
|
+
]);
|
|
25330
|
+
|
|
25331
|
+
T['io.flow.internal.v0.models.order_cancellation'] = PropTypes.exact({
|
|
25332
|
+
id: PropTypes.string.isRequired,
|
|
25333
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
25334
|
+
evidence: T['io.flow.internal.v0.unions.order_cancellation_evidence'].isRequired,
|
|
25335
|
+
});
|
|
25336
|
+
|
|
25337
|
+
T['io.flow.internal.v0.models.lost_chargeback'] = PropTypes.exact({
|
|
25338
|
+
id: PropTypes.string.isRequired,
|
|
25339
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
25340
|
+
});
|
|
25341
|
+
|
|
25342
|
+
T['io.flow.internal.v0.models.bank_payment_order'] = PropTypes.exact({
|
|
25343
|
+
id: PropTypes.string.isRequired,
|
|
25344
|
+
payment: T['io.flow.internal.v0.models.bank_payment_reference'].isRequired,
|
|
25345
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
25346
|
+
});
|
|
25347
|
+
|
|
25348
|
+
T['io.flow.internal.v0.models.bank_payment_order_upserted'] = PropTypes.exact({
|
|
25349
|
+
discriminator: PropTypes.oneOf(['bank_payment_order_upserted']).isRequired,
|
|
25350
|
+
event_id: PropTypes.string.isRequired,
|
|
25351
|
+
timestamp: PropTypes.string.isRequired,
|
|
25352
|
+
bank_payment_order: T['io.flow.internal.v0.models.bank_payment_order'].isRequired,
|
|
25353
|
+
});
|
|
25354
|
+
|
|
24914
25355
|
T['io.flow.common.v0.models.merchant_of_record_entity'] = PropTypes.exact({
|
|
24915
25356
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
24916
25357
|
name: PropTypes.string.isRequired,
|
|
@@ -25101,128 +25542,29 @@ T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'] = PropTypes
|
|
|
25101
25542
|
invoice: T['io.flow.internal.v0.models.commercial_invoice_internal'].isRequired,
|
|
25102
25543
|
});
|
|
25103
25544
|
|
|
25104
|
-
T['io.flow.internal.v0.models.
|
|
25105
|
-
id: PropTypes.string.isRequired,
|
|
25106
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25107
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
25108
|
-
external_id: PropTypes.string.isRequired,
|
|
25109
|
-
name: PropTypes.string.isRequired,
|
|
25110
|
-
domains: T['io.flow.internal.v0.models.channel_organization_domains'].isRequired,
|
|
25111
|
-
});
|
|
25112
|
-
|
|
25113
|
-
T['io.flow.channel.v0.models.channel_organization'] = PropTypes.exact({
|
|
25114
|
-
id: PropTypes.string.isRequired,
|
|
25115
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25116
|
-
key: PropTypes.string.isRequired,
|
|
25117
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
25118
|
-
name: PropTypes.string.isRequired,
|
|
25119
|
-
slug: PropTypes.string,
|
|
25120
|
-
defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
|
|
25121
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
25122
|
-
});
|
|
25123
|
-
|
|
25124
|
-
T['io.flow.channel.internal.v0.models.channel_organization_installation'] = PropTypes.exact({
|
|
25125
|
-
organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
|
|
25126
|
-
tokens: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_organization_token']).isRequired,
|
|
25127
|
-
});
|
|
25128
|
-
|
|
25129
|
-
T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
|
|
25130
|
-
organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
|
|
25131
|
-
|
|
25132
|
-
tokens: PropTypes.arrayOf(
|
|
25133
|
-
T['io.flow.channel.shopify.internal.v0.models.shopify_channel_organization_tokens'],
|
|
25134
|
-
).isRequired,
|
|
25135
|
-
});
|
|
25136
|
-
|
|
25137
|
-
T['io.flow.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
|
|
25138
|
-
organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
|
|
25139
|
-
tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_channel_organization_tokens']).isRequired,
|
|
25140
|
-
});
|
|
25141
|
-
|
|
25142
|
-
T['io.flow.internal.v0.models.channel_organization_installation'] = PropTypes.exact({
|
|
25143
|
-
organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
|
|
25144
|
-
tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_organization_token']).isRequired,
|
|
25145
|
-
});
|
|
25146
|
-
|
|
25147
|
-
T['io.flow.internal.v0.models.channel_organization_identifier'] = PropTypes.exact({
|
|
25148
|
-
id: PropTypes.string.isRequired,
|
|
25149
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25150
|
-
identifier: PropTypes.string.isRequired,
|
|
25151
|
-
});
|
|
25152
|
-
|
|
25153
|
-
T['io.flow.internal.v0.models.channel_organization_identifier_upserted'] = PropTypes.exact({
|
|
25154
|
-
discriminator: PropTypes.oneOf(['channel_organization_identifier_upserted']).isRequired,
|
|
25155
|
-
event_id: PropTypes.string.isRequired,
|
|
25156
|
-
timestamp: PropTypes.string.isRequired,
|
|
25157
|
-
channel_id: PropTypes.string.isRequired,
|
|
25158
|
-
channel_organization_identifier: T['io.flow.internal.v0.models.channel_organization_identifier'].isRequired,
|
|
25159
|
-
});
|
|
25160
|
-
|
|
25161
|
-
T['io.flow.internal.v0.models.channel_order_summary'] = PropTypes.exact({
|
|
25545
|
+
T['io.flow.internal.v0.models.b2b_tax_transaction'] = PropTypes.exact({
|
|
25162
25546
|
id: PropTypes.string.isRequired,
|
|
25163
|
-
|
|
25164
|
-
external_order_reference: PropTypes.string.isRequired,
|
|
25547
|
+
organization_id: PropTypes.string.isRequired,
|
|
25165
25548
|
order_number: PropTypes.string.isRequired,
|
|
25166
|
-
|
|
25167
|
-
|
|
25168
|
-
|
|
25169
|
-
|
|
25170
|
-
|
|
25171
|
-
|
|
25172
|
-
|
|
25173
|
-
|
|
25174
|
-
|
|
25175
|
-
|
|
25176
|
-
|
|
25177
|
-
T['io.flow.internal.v0.models.billing_order_transaction_order_reference'] = PropTypes.exact({
|
|
25178
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25179
|
-
number: PropTypes.string.isRequired,
|
|
25180
|
-
});
|
|
25181
|
-
|
|
25182
|
-
T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'] = PropTypes.exact({
|
|
25183
|
-
discriminator: PropTypes.oneOf(['time_elapsed']).isRequired,
|
|
25184
|
-
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
25185
|
-
created_at: PropTypes.string.isRequired,
|
|
25186
|
-
});
|
|
25187
|
-
|
|
25188
|
-
T['io.flow.internal.v0.models.proof_of_posting_synthetic'] = PropTypes.exact({
|
|
25189
|
-
discriminator: PropTypes.oneOf(['synthetic']).isRequired,
|
|
25190
|
-
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
25191
|
-
created_at: PropTypes.string.isRequired,
|
|
25192
|
-
});
|
|
25193
|
-
|
|
25194
|
-
T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
|
|
25195
|
-
T['io.flow.internal.v0.models.proof_of_posting_fulfilled'],
|
|
25196
|
-
T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'],
|
|
25197
|
-
T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'],
|
|
25198
|
-
T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'],
|
|
25199
|
-
T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'],
|
|
25200
|
-
T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'],
|
|
25201
|
-
T['io.flow.internal.v0.models.proof_of_posting_synthetic'],
|
|
25202
|
-
]);
|
|
25203
|
-
|
|
25204
|
-
T['io.flow.internal.v0.models.order_cancellation'] = PropTypes.exact({
|
|
25205
|
-
id: PropTypes.string.isRequired,
|
|
25206
|
-
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
25207
|
-
evidence: T['io.flow.internal.v0.unions.order_cancellation_evidence'].isRequired,
|
|
25208
|
-
});
|
|
25209
|
-
|
|
25210
|
-
T['io.flow.internal.v0.models.lost_chargeback'] = PropTypes.exact({
|
|
25211
|
-
id: PropTypes.string.isRequired,
|
|
25212
|
-
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
25213
|
-
});
|
|
25214
|
-
|
|
25215
|
-
T['io.flow.internal.v0.models.bank_payment_order'] = PropTypes.exact({
|
|
25216
|
-
id: PropTypes.string.isRequired,
|
|
25217
|
-
payment: T['io.flow.internal.v0.models.bank_payment_reference'].isRequired,
|
|
25218
|
-
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
25549
|
+
transaction_source_id: PropTypes.string.isRequired,
|
|
25550
|
+
transaction_type: T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'].isRequired,
|
|
25551
|
+
transaction_date: PropTypes.string.isRequired,
|
|
25552
|
+
currency: PropTypes.string.isRequired,
|
|
25553
|
+
buyer: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25554
|
+
seller: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25555
|
+
taxable_items: PropTypes.arrayOf(T['io.flow.internal.v0.models.b2b_transaction_taxable_item']).isRequired,
|
|
25556
|
+
taxable_amount_total: T['io.flow.common.v0.models.money'].isRequired,
|
|
25557
|
+
tax_total: T['io.flow.common.v0.models.money'].isRequired,
|
|
25558
|
+
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
25559
|
+
document_number: PropTypes.string,
|
|
25219
25560
|
});
|
|
25220
25561
|
|
|
25221
|
-
T['io.flow.internal.v0.models.
|
|
25222
|
-
discriminator: PropTypes.oneOf(['
|
|
25562
|
+
T['io.flow.internal.v0.models.b2b_tax_transaction_upserted'] = PropTypes.exact({
|
|
25563
|
+
discriminator: PropTypes.oneOf(['b2b_tax_transaction_upserted']).isRequired,
|
|
25223
25564
|
event_id: PropTypes.string.isRequired,
|
|
25224
25565
|
timestamp: PropTypes.string.isRequired,
|
|
25225
|
-
|
|
25566
|
+
organization: PropTypes.string.isRequired,
|
|
25567
|
+
b2b_tax_transaction: T['io.flow.internal.v0.models.b2b_tax_transaction'].isRequired,
|
|
25226
25568
|
});
|
|
25227
25569
|
|
|
25228
25570
|
T['io.flow.internal.v0.models.order_reference'] = PropTypes.exact({
|
|
@@ -25499,6 +25841,21 @@ T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line'] = PropTypes.oneOfT
|
|
|
25499
25841
|
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_tip'],
|
|
25500
25842
|
]);
|
|
25501
25843
|
|
|
25844
|
+
T['io.flow.consumer.invoice.v0.models.fee_invoice'] = PropTypes.exact({
|
|
25845
|
+
id: PropTypes.string.isRequired,
|
|
25846
|
+
number: PropTypes.string.isRequired,
|
|
25847
|
+
invoice_type: T['io.flow.consumer.invoice.v0.enums.fee_invoice_type'].isRequired,
|
|
25848
|
+
buyer: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25849
|
+
seller: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25850
|
+
date: PropTypes.string.isRequired,
|
|
25851
|
+
b2b_tax_transaction_id: PropTypes.string.isRequired,
|
|
25852
|
+
order_number: PropTypes.string.isRequired,
|
|
25853
|
+
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
25854
|
+
tax_lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.invoice_tax_line']),
|
|
25855
|
+
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
25856
|
+
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
25857
|
+
});
|
|
25858
|
+
|
|
25502
25859
|
T['io.flow.consumer.invoice.v0.models.b2b_invoice'] = PropTypes.exact({
|
|
25503
25860
|
id: PropTypes.string.isRequired,
|
|
25504
25861
|
number: PropTypes.string.isRequired,
|
|
@@ -25830,6 +26187,7 @@ T['io.flow.label.v0.models.shipping_label'] = PropTypes.exact({
|
|
|
25830
26187
|
created_at: PropTypes.string,
|
|
25831
26188
|
updated_at: PropTypes.string,
|
|
25832
26189
|
direction: T['io.flow.label.v0.enums.direction'],
|
|
26190
|
+
shipping_cost_guarantee: T['io.flow.label.v0.enums.shipping_cost_guarantee'],
|
|
25833
26191
|
});
|
|
25834
26192
|
|
|
25835
26193
|
T['io.flow.label.v0.models.shipping_label_version'] = PropTypes.exact({
|
|
@@ -25919,6 +26277,30 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
25919
26277
|
channel: PropTypes.string,
|
|
25920
26278
|
});
|
|
25921
26279
|
|
|
26280
|
+
T['io.flow.internal.v0.models.raveena_item_form'] = PropTypes.exact({
|
|
26281
|
+
number: PropTypes.string.isRequired,
|
|
26282
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26283
|
+
description: PropTypes.string,
|
|
26284
|
+
type: T['io.flow.internal.v0.enums.raveena_item_type'].isRequired,
|
|
26285
|
+
added_on: PropTypes.string.isRequired,
|
|
26286
|
+
});
|
|
26287
|
+
|
|
26288
|
+
T['io.flow.internal.v0.models.raveena_item'] = PropTypes.exact({
|
|
26289
|
+
id: PropTypes.string.isRequired,
|
|
26290
|
+
number: PropTypes.string.isRequired,
|
|
26291
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26292
|
+
description: PropTypes.string,
|
|
26293
|
+
type: T['io.flow.internal.v0.enums.raveena_item_type'].isRequired,
|
|
26294
|
+
added_on: PropTypes.string.isRequired,
|
|
26295
|
+
});
|
|
26296
|
+
|
|
26297
|
+
T['io.flow.internal.v0.models.raveena_item_upserted'] = PropTypes.exact({
|
|
26298
|
+
discriminator: PropTypes.oneOf(['raveena_item_upserted']).isRequired,
|
|
26299
|
+
event_id: PropTypes.string.isRequired,
|
|
26300
|
+
timestamp: PropTypes.string.isRequired,
|
|
26301
|
+
item: T['io.flow.internal.v0.models.raveena_item'].isRequired,
|
|
26302
|
+
});
|
|
26303
|
+
|
|
25922
26304
|
T['io.flow.internal.v0.models.payment_summary_v2'] = PropTypes.exact({
|
|
25923
26305
|
discriminator: PropTypes.oneOf(['payment_summary_v2']).isRequired,
|
|
25924
26306
|
id: PropTypes.string.isRequired,
|
|
@@ -25957,6 +26339,23 @@ T['io.flow.internal.v0.models.order_revenue_region_chart'] = PropTypes.exact({
|
|
|
25957
26339
|
data: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_revenue_region_data_point']).isRequired,
|
|
25958
26340
|
});
|
|
25959
26341
|
|
|
26342
|
+
T['io.flow.internal.v0.models.mahesh_item_form'] = PropTypes.exact({
|
|
26343
|
+
number: PropTypes.string.isRequired,
|
|
26344
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26345
|
+
description: PropTypes.string,
|
|
26346
|
+
type: T['io.flow.internal.v0.enums.mahesh_item_type'].isRequired,
|
|
26347
|
+
added_on: PropTypes.string.isRequired,
|
|
26348
|
+
});
|
|
26349
|
+
|
|
26350
|
+
T['io.flow.internal.v0.models.mahesh_item'] = PropTypes.exact({
|
|
26351
|
+
id: PropTypes.string.isRequired,
|
|
26352
|
+
number: PropTypes.string.isRequired,
|
|
26353
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26354
|
+
description: PropTypes.string,
|
|
26355
|
+
type: T['io.flow.internal.v0.enums.mahesh_item_type'].isRequired,
|
|
26356
|
+
added_on: PropTypes.string.isRequired,
|
|
26357
|
+
});
|
|
26358
|
+
|
|
25960
26359
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
25961
26360
|
id: PropTypes.string.isRequired,
|
|
25962
26361
|
description: PropTypes.string.isRequired,
|
|
@@ -26083,6 +26482,13 @@ T['io.flow.internal.v0.models.bojana_item'] = PropTypes.exact({
|
|
|
26083
26482
|
added_on: PropTypes.string.isRequired,
|
|
26084
26483
|
});
|
|
26085
26484
|
|
|
26485
|
+
T['io.flow.internal.v0.models.bojana_item_upserted'] = PropTypes.exact({
|
|
26486
|
+
discriminator: PropTypes.oneOf(['bojana_item_upserted']).isRequired,
|
|
26487
|
+
event_id: PropTypes.string.isRequired,
|
|
26488
|
+
timestamp: PropTypes.string.isRequired,
|
|
26489
|
+
item: T['io.flow.internal.v0.models.bojana_item'].isRequired,
|
|
26490
|
+
});
|
|
26491
|
+
|
|
26086
26492
|
T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
26087
26493
|
starting_balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
26088
26494
|
subscription: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -26117,6 +26523,7 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
26117
26523
|
merchant_fee: T['io.flow.common.v0.models.price'].isRequired,
|
|
26118
26524
|
b2b_fee_mor_tax: T['io.flow.common.v0.models.price'].isRequired,
|
|
26119
26525
|
b2b_fee_shipping_tax: T['io.flow.common.v0.models.price'].isRequired,
|
|
26526
|
+
flat_rate_label: T['io.flow.common.v0.models.price'].isRequired,
|
|
26120
26527
|
});
|
|
26121
26528
|
|
|
26122
26529
|
T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact({
|
|
@@ -27340,6 +27747,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
27340
27747
|
'b2b_tax_refund',
|
|
27341
27748
|
'b2b_fee_mor_tax',
|
|
27342
27749
|
'b2b_fee_shipping_tax',
|
|
27750
|
+
'flat_rate_label',
|
|
27343
27751
|
]);
|
|
27344
27752
|
|
|
27345
27753
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -27691,6 +28099,19 @@ T['io.flow.internal.v0.models.ge_revenue_share_transaction'] = PropTypes.exact({
|
|
|
27691
28099
|
created_at: PropTypes.string.isRequired,
|
|
27692
28100
|
});
|
|
27693
28101
|
|
|
28102
|
+
T['io.flow.internal.v0.models.flat_rate_label_transaction'] = PropTypes.exact({
|
|
28103
|
+
discriminator: PropTypes.oneOf(['flat_rate_label_transaction']).isRequired,
|
|
28104
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
|
|
28105
|
+
id: PropTypes.string.isRequired,
|
|
28106
|
+
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
28107
|
+
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
28108
|
+
posted_at: PropTypes.string,
|
|
28109
|
+
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
28110
|
+
description: PropTypes.string.isRequired,
|
|
28111
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
28112
|
+
created_at: PropTypes.string.isRequired,
|
|
28113
|
+
});
|
|
28114
|
+
|
|
27694
28115
|
T['io.flow.internal.v0.models.duty_transaction'] = PropTypes.exact({
|
|
27695
28116
|
discriminator: PropTypes.oneOf(['duty_transaction']).isRequired,
|
|
27696
28117
|
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
|
|
@@ -27800,6 +28221,7 @@ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
|
|
|
27800
28221
|
T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'],
|
|
27801
28222
|
T['io.flow.internal.v0.models.ge_revenue_share_transaction'],
|
|
27802
28223
|
T['io.flow.internal.v0.models.merchant_fee_transaction'],
|
|
28224
|
+
T['io.flow.internal.v0.models.flat_rate_label_transaction'],
|
|
27803
28225
|
]);
|
|
27804
28226
|
|
|
27805
28227
|
T['io.flow.internal.v0.models.billing_transaction'] = PropTypes.exact({
|
|
@@ -28047,6 +28469,8 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
|
|
|
28047
28469
|
});
|
|
28048
28470
|
|
|
28049
28471
|
T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
28472
|
+
T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'],
|
|
28473
|
+
T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'],
|
|
28050
28474
|
T['io.flow.internal.v0.models.adyen_authorization_deleted'],
|
|
28051
28475
|
T['io.flow.internal.v0.models.adyen_authorization_upserted'],
|
|
28052
28476
|
T['io.flow.internal.v0.models.adyen_cancel_deleted'],
|
|
@@ -28129,6 +28553,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28129
28553
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'],
|
|
28130
28554
|
T['io.flow.internal.v0.models.channel_order_acceptance_deleted'],
|
|
28131
28555
|
T['io.flow.internal.v0.models.channel_order_acceptance_failed'],
|
|
28556
|
+
T['io.flow.internal.v0.models.channel_shop_statistics_upserted'],
|
|
28557
|
+
T['io.flow.internal.v0.models.channel_shop_statistics_deleted'],
|
|
28132
28558
|
T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'],
|
|
28133
28559
|
T['io.flow.internal.v0.models.commercial_invoice_internal_deleted'],
|
|
28134
28560
|
T['io.flow.internal.v0.models.internal_channel_rate_deleted'],
|
|
@@ -28186,6 +28612,10 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28186
28612
|
T['io.flow.internal.v0.models.bank_payment_order_deleted'],
|
|
28187
28613
|
T['io.flow.internal.v0.models.shipping_cost_upserted'],
|
|
28188
28614
|
T['io.flow.internal.v0.models.shipping_cost_deleted'],
|
|
28615
|
+
T['io.flow.internal.v0.models.mor_cost_upserted'],
|
|
28616
|
+
T['io.flow.internal.v0.models.mor_cost_deleted'],
|
|
28617
|
+
T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'],
|
|
28618
|
+
T['io.flow.internal.v0.models.flat_rate_label_reversal_deleted'],
|
|
28189
28619
|
T['io.flow.internal.v0.models.fraud_review_upserted'],
|
|
28190
28620
|
T['io.flow.internal.v0.models.fraud_review_deleted'],
|
|
28191
28621
|
T['io.flow.internal.v0.models.fraud_pending_review_upserted'],
|
|
@@ -28242,6 +28672,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28242
28672
|
T['io.flow.internal.v0.models.order_validation_deleted'],
|
|
28243
28673
|
T['io.flow.internal.v0.models.label_creation_job_upserted'],
|
|
28244
28674
|
T['io.flow.internal.v0.models.label_creation_job_deleted'],
|
|
28675
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'],
|
|
28676
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_deleted'],
|
|
28245
28677
|
T['io.flow.internal.v0.models.label_tracking_summary_upserted'],
|
|
28246
28678
|
T['io.flow.internal.v0.models.label_tracking_summary_deleted'],
|
|
28247
28679
|
T['io.flow.internal.v0.models.logistics_capabilities_upserted'],
|
|
@@ -28314,8 +28746,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28314
28746
|
T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'],
|
|
28315
28747
|
T['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'],
|
|
28316
28748
|
T['io.flow.internal.v0.models.ratecard_lanes_import_request'],
|
|
28317
|
-
T['io.flow.internal.v0.models.ratecard_standard_configuration_upserted'],
|
|
28318
|
-
T['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'],
|
|
28319
28749
|
T['io.flow.internal.v0.models.ratecard_service_fee_upserted'],
|
|
28320
28750
|
T['io.flow.internal.v0.models.ratecard_service_fee_deleted'],
|
|
28321
28751
|
T['io.flow.internal.v0.models.ratecard_rate_level_upserted'],
|
|
@@ -28332,12 +28762,18 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28332
28762
|
T['io.flow.internal.v0.models.screening_status_change_deleted'],
|
|
28333
28763
|
T['io.flow.internal.v0.models.restrictions_dailyops_upserted'],
|
|
28334
28764
|
T['io.flow.internal.v0.models.restrictions_dailyops_deleted'],
|
|
28765
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_upserted'],
|
|
28766
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_deleted'],
|
|
28767
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_upserted'],
|
|
28768
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_deleted'],
|
|
28335
28769
|
T['io.flow.internal.v0.models.restriction_rule_upserted'],
|
|
28336
28770
|
T['io.flow.internal.v0.models.restriction_rule_deleted'],
|
|
28337
28771
|
T['io.flow.internal.v0.models.restriction_rule_effect_upserted'],
|
|
28338
28772
|
T['io.flow.internal.v0.models.restriction_rule_effect_deleted'],
|
|
28339
28773
|
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'],
|
|
28340
28774
|
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'],
|
|
28775
|
+
T['io.flow.internal.v0.models.preonboarding_merchant_upserted'],
|
|
28776
|
+
T['io.flow.internal.v0.models.preonboarding_merchant_deleted'],
|
|
28341
28777
|
T['io.flow.internal.v0.models.shopify_hs10_codes_upserted'],
|
|
28342
28778
|
T['io.flow.internal.v0.models.shopify_hs10_codes_deleted'],
|
|
28343
28779
|
T['io.flow.internal.v0.models.shopify_markets_order_upserted'],
|
|
@@ -28407,10 +28843,16 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28407
28843
|
T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'],
|
|
28408
28844
|
T['io.flow.internal.v0.models.liability_remittance_plan_upserted'],
|
|
28409
28845
|
T['io.flow.internal.v0.models.liability_remittance_plan_deleted'],
|
|
28846
|
+
T['io.flow.internal.v0.models.b2b_tax_transaction_upserted'],
|
|
28847
|
+
T['io.flow.internal.v0.models.b2b_tax_transaction_deleted'],
|
|
28410
28848
|
T['io.flow.internal.v0.models.gabriel_item_upserted'],
|
|
28411
28849
|
T['io.flow.internal.v0.models.gabriel_item_deleted'],
|
|
28412
28850
|
T['io.flow.internal.v0.models.chenglin_item_upserted'],
|
|
28413
28851
|
T['io.flow.internal.v0.models.chenglin_item_deleted'],
|
|
28852
|
+
T['io.flow.internal.v0.models.bojana_item_upserted'],
|
|
28853
|
+
T['io.flow.internal.v0.models.bojana_item_deleted'],
|
|
28854
|
+
T['io.flow.internal.v0.models.raveena_item_upserted'],
|
|
28855
|
+
T['io.flow.internal.v0.models.raveena_item_deleted'],
|
|
28414
28856
|
T['io.flow.internal.v0.models.tracking_processing_error_upserted'],
|
|
28415
28857
|
T['io.flow.internal.v0.models.tracking_processing_error_deleted'],
|
|
28416
28858
|
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'],
|
|
@@ -28597,6 +29039,8 @@ T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_c
|
|
|
28597
29039
|
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty', 'refund']);
|
|
28598
29040
|
|
|
28599
29041
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
29042
|
+
'adaptive_shipping_rate_upserted',
|
|
29043
|
+
'adaptive_shipping_rate_deleted',
|
|
28600
29044
|
'adyen_authorization_deleted',
|
|
28601
29045
|
'adyen_authorization_upserted',
|
|
28602
29046
|
'adyen_cancel_deleted',
|
|
@@ -28679,6 +29123,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28679
29123
|
'channel_order_acceptance_upserted',
|
|
28680
29124
|
'channel_order_acceptance_deleted',
|
|
28681
29125
|
'channel_order_acceptance_failed',
|
|
29126
|
+
'channel_shop_statistics_upserted',
|
|
29127
|
+
'channel_shop_statistics_deleted',
|
|
28682
29128
|
'commercial_invoice_internal_upserted',
|
|
28683
29129
|
'commercial_invoice_internal_deleted',
|
|
28684
29130
|
'internal_channel_rate_deleted',
|
|
@@ -28736,6 +29182,10 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28736
29182
|
'bank_payment_order_deleted',
|
|
28737
29183
|
'shipping_cost_upserted',
|
|
28738
29184
|
'shipping_cost_deleted',
|
|
29185
|
+
'mor_cost_upserted',
|
|
29186
|
+
'mor_cost_deleted',
|
|
29187
|
+
'flat_rate_label_reversal_upserted',
|
|
29188
|
+
'flat_rate_label_reversal_deleted',
|
|
28739
29189
|
'fraud_review_upserted',
|
|
28740
29190
|
'fraud_review_deleted',
|
|
28741
29191
|
'fraud_pending_review_upserted',
|
|
@@ -28792,6 +29242,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28792
29242
|
'order_validation_deleted',
|
|
28793
29243
|
'label_creation_job_upserted',
|
|
28794
29244
|
'label_creation_job_deleted',
|
|
29245
|
+
'adaptive_shipping_order_guarantee_upserted',
|
|
29246
|
+
'adaptive_shipping_order_guarantee_deleted',
|
|
28795
29247
|
'label_tracking_summary_upserted',
|
|
28796
29248
|
'label_tracking_summary_deleted',
|
|
28797
29249
|
'logistics_capabilities_upserted',
|
|
@@ -28864,8 +29316,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28864
29316
|
'ratecard_dimension_estimate_upserted',
|
|
28865
29317
|
'ratecard_dimension_estimate_deleted',
|
|
28866
29318
|
'ratecard_lanes_import_request',
|
|
28867
|
-
'ratecard_standard_configuration_upserted',
|
|
28868
|
-
'ratecard_standard_configuration_deleted',
|
|
28869
29319
|
'ratecard_service_fee_upserted',
|
|
28870
29320
|
'ratecard_service_fee_deleted',
|
|
28871
29321
|
'ratecard_rate_level_upserted',
|
|
@@ -28882,12 +29332,18 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28882
29332
|
'screening_status_change_deleted',
|
|
28883
29333
|
'restrictions_dailyops_upserted',
|
|
28884
29334
|
'restrictions_dailyops_deleted',
|
|
29335
|
+
'restrictions_athena_dailyops_pc_pv_upserted',
|
|
29336
|
+
'restrictions_athena_dailyops_pc_pv_deleted',
|
|
29337
|
+
'restrictions_athena_dailyops_fs_upserted',
|
|
29338
|
+
'restrictions_athena_dailyops_fs_deleted',
|
|
28885
29339
|
'restriction_rule_upserted',
|
|
28886
29340
|
'restriction_rule_deleted',
|
|
28887
29341
|
'restriction_rule_effect_upserted',
|
|
28888
29342
|
'restriction_rule_effect_deleted',
|
|
28889
29343
|
'taxonomy_category_hs6_ref_upserted',
|
|
28890
29344
|
'taxonomy_category_hs6_ref_deleted',
|
|
29345
|
+
'preonboarding_merchant_upserted',
|
|
29346
|
+
'preonboarding_merchant_deleted',
|
|
28891
29347
|
'shopify_hs10_codes_upserted',
|
|
28892
29348
|
'shopify_hs10_codes_deleted',
|
|
28893
29349
|
'shopify_markets_order_upserted',
|
|
@@ -28957,10 +29413,16 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28957
29413
|
'stripe_connect_report_record_deleted',
|
|
28958
29414
|
'liability_remittance_plan_upserted',
|
|
28959
29415
|
'liability_remittance_plan_deleted',
|
|
29416
|
+
'b2b_tax_transaction_upserted',
|
|
29417
|
+
'b2b_tax_transaction_deleted',
|
|
28960
29418
|
'gabriel_item_upserted',
|
|
28961
29419
|
'gabriel_item_deleted',
|
|
28962
29420
|
'chenglin_item_upserted',
|
|
28963
29421
|
'chenglin_item_deleted',
|
|
29422
|
+
'bojana_item_upserted',
|
|
29423
|
+
'bojana_item_deleted',
|
|
29424
|
+
'raveena_item_upserted',
|
|
29425
|
+
'raveena_item_deleted',
|
|
28964
29426
|
'tracking_processing_error_upserted',
|
|
28965
29427
|
'tracking_processing_error_deleted',
|
|
28966
29428
|
'tracking_label_event_upserted_v2',
|
|
@@ -28983,6 +29445,7 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28983
29445
|
'user_deleted_v2',
|
|
28984
29446
|
]);
|
|
28985
29447
|
|
|
29448
|
+
T['io.flow.internal.v0.enums.flat_rate_label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'fee']);
|
|
28986
29449
|
T['io.flow.internal.v0.enums.ge_ingestion_file_status'] = PropTypes.oneOf(['pending', 'processed']);
|
|
28987
29450
|
T['io.flow.internal.v0.enums.ge_revenue_share_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'revenue_share']);
|
|
28988
29451
|
|
|
@@ -29144,6 +29607,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
|
|
|
29144
29607
|
'rate_levels',
|
|
29145
29608
|
'center_defaults',
|
|
29146
29609
|
'item_dimensions',
|
|
29610
|
+
'center',
|
|
29147
29611
|
]);
|
|
29148
29612
|
|
|
29149
29613
|
T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax', 'refund']);
|
|
@@ -29757,14 +30221,6 @@ T['io.flow.internal.v0.models.phrase_propagated'] = PropTypes.exact({
|
|
|
29757
30221
|
phrase_id: PropTypes.string.isRequired,
|
|
29758
30222
|
});
|
|
29759
30223
|
|
|
29760
|
-
T['io.flow.internal.v0.models.preonboarding_merchant'] = PropTypes.exact({
|
|
29761
|
-
merchant_id: PropTypes.string.isRequired,
|
|
29762
|
-
channel: PropTypes.string.isRequired,
|
|
29763
|
-
catalog_size: PropTypes.number.isRequired,
|
|
29764
|
-
processed_product_count: PropTypes.number.isRequired,
|
|
29765
|
-
last_request: PropTypes.string.isRequired,
|
|
29766
|
-
});
|
|
29767
|
-
|
|
29768
30224
|
T['io.flow.internal.v0.models.prioritized_center_reference'] = PropTypes.exact({
|
|
29769
30225
|
center_key: PropTypes.string.isRequired,
|
|
29770
30226
|
position: PropTypes.number.isRequired,
|
|
@@ -29812,12 +30268,6 @@ T['io.flow.internal.v0.models.rate_level_with_effective'] = PropTypes.exact({
|
|
|
29812
30268
|
key: PropTypes.string.isRequired,
|
|
29813
30269
|
});
|
|
29814
30270
|
|
|
29815
|
-
T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes.exact({
|
|
29816
|
-
source_ratecard_organization: PropTypes.string.isRequired,
|
|
29817
|
-
source_ratecard_number: PropTypes.string.isRequired,
|
|
29818
|
-
margin: PropTypes.number.isRequired,
|
|
29819
|
-
});
|
|
29820
|
-
|
|
29821
30271
|
T['io.flow.internal.v0.models.report_record_error'] = PropTypes.exact({
|
|
29822
30272
|
id: PropTypes.string.isRequired,
|
|
29823
30273
|
file_id: PropTypes.string.isRequired,
|
|
@@ -29850,6 +30300,14 @@ T['io.flow.internal.v0.models.restriction_blanket_organization_exemption'] = Pro
|
|
|
29850
30300
|
excluded_rules: PropTypes.arrayOf(PropTypes.string),
|
|
29851
30301
|
});
|
|
29852
30302
|
|
|
30303
|
+
T['io.flow.internal.v0.models.restriction_blanket_organization_exemption_form'] = PropTypes.exact({
|
|
30304
|
+
organization_id: PropTypes.string.isRequired,
|
|
30305
|
+
description: PropTypes.string.isRequired,
|
|
30306
|
+
is_all_rules_exempt: PropTypes.bool.isRequired,
|
|
30307
|
+
exempt_regions: PropTypes.arrayOf(PropTypes.string),
|
|
30308
|
+
excluded_rules: PropTypes.arrayOf(PropTypes.string),
|
|
30309
|
+
});
|
|
30310
|
+
|
|
29853
30311
|
T['io.flow.internal.v0.models.restriction_category'] = PropTypes.exact({
|
|
29854
30312
|
category: PropTypes.string.isRequired,
|
|
29855
30313
|
});
|
|
@@ -29870,8 +30328,15 @@ T['io.flow.internal.v0.models.restriction_rule_lane_exemption'] = PropTypes.exac
|
|
|
29870
30328
|
id: PropTypes.string.isRequired,
|
|
29871
30329
|
rule_id: PropTypes.string.isRequired,
|
|
29872
30330
|
description: PropTypes.string.isRequired,
|
|
29873
|
-
|
|
29874
|
-
|
|
30331
|
+
origin_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
30332
|
+
destination_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
30333
|
+
});
|
|
30334
|
+
|
|
30335
|
+
T['io.flow.internal.v0.models.restriction_rule_lane_exemption_form'] = PropTypes.exact({
|
|
30336
|
+
rule_id: PropTypes.string.isRequired,
|
|
30337
|
+
description: PropTypes.string.isRequired,
|
|
30338
|
+
origin_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
30339
|
+
destination_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
29875
30340
|
});
|
|
29876
30341
|
|
|
29877
30342
|
T['io.flow.internal.v0.models.restriction_rule_override'] = PropTypes.exact({
|
|
@@ -31010,11 +31475,8 @@ T['io.flow.experience.v0.models.order_service_change_request_data'] = PropTypes.
|
|
|
31010
31475
|
filename: PropTypes.string,
|
|
31011
31476
|
});
|
|
31012
31477
|
|
|
31013
|
-
T['io.flow.ratecard.v0.models.
|
|
31014
|
-
|
|
31015
|
-
destination: PropTypes.string,
|
|
31016
|
-
service: PropTypes.string,
|
|
31017
|
-
center_key: PropTypes.string,
|
|
31478
|
+
T['io.flow.ratecard.v0.models.ratecard_effective_until_form'] = PropTypes.exact({
|
|
31479
|
+
effective_until: PropTypes.string,
|
|
31018
31480
|
});
|
|
31019
31481
|
|
|
31020
31482
|
T['io.flow.token.v0.models.channel_token_form'] = PropTypes.exact({
|
|
@@ -31326,6 +31788,13 @@ export const accountUpsertedV2 = T['io.flow.internal.v0.models.account_upserted_
|
|
|
31326
31788
|
export const accountingPendingOrderMetadata = T['io.flow.internal.v0.models.accounting_pending_order_metadata'];
|
|
31327
31789
|
export const accountingReturnMetadata = T['io.flow.internal.v0.models.accounting_return_metadata'];
|
|
31328
31790
|
export const actionQuantity = T['io.flow.internal.v0.models.action_quantity'];
|
|
31791
|
+
export const adaptiveShippingOrderGuarantee = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'];
|
|
31792
|
+
export const adaptiveShippingOrderGuaranteeDeleted = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_deleted'];
|
|
31793
|
+
export const adaptiveShippingOrderGuaranteeState = T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'];
|
|
31794
|
+
export const adaptiveShippingOrderGuaranteeUpserted = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'];
|
|
31795
|
+
export const adaptiveShippingRate = T['io.flow.internal.v0.models.adaptive_shipping_rate'];
|
|
31796
|
+
export const adaptiveShippingRateDeleted = T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'];
|
|
31797
|
+
export const adaptiveShippingRateUpserted = T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'];
|
|
31329
31798
|
export const additionalImportTax = T['io.flow.internal.v0.models.additional_import_tax'];
|
|
31330
31799
|
export const adjustmentAmount = T['io.flow.internal.v0.unions.adjustment_amount'];
|
|
31331
31800
|
export const adjustmentAmountFixed = T['io.flow.internal.v0.models.adjustment_amount_fixed'];
|
|
@@ -31384,7 +31853,6 @@ export const afterpayRefundDeleted = T['io.flow.internal.v0.models.afterpay_refu
|
|
|
31384
31853
|
export const afterpayRefundUpserted = T['io.flow.internal.v0.models.afterpay_refund_upserted'];
|
|
31385
31854
|
export const aftershipWebhook = T['io.flow.internal.v0.models.aftership_webhook'];
|
|
31386
31855
|
export const allItemsExport = T['io.flow.internal.v0.models.all_items_export'];
|
|
31387
|
-
export const allOrganizationsMembership = T['io.flow.internal.v0.models.all_organizations_membership'];
|
|
31388
31856
|
export const allocationItemReference = T['io.flow.internal.v0.models.allocation_item_reference'];
|
|
31389
31857
|
export const allowedLabels = T['io.flow.internal.v0.models.allowed_labels'];
|
|
31390
31858
|
export const amruthaItem = T['io.flow.internal.v0.models.amrutha_item'];
|
|
@@ -31395,6 +31863,7 @@ export const apiCallReferenceId = T['io.flow.internal.v0.enums.api_call_referenc
|
|
|
31395
31863
|
export const applePayAuthorizationPayload = T['io.flow.internal.v0.models.apple_pay_authorization_payload'];
|
|
31396
31864
|
export const applicablePreferentialRate = T['io.flow.internal.v0.enums.applicable_preferential_rate'];
|
|
31397
31865
|
export const applyAtValueForm = T['io.flow.internal.v0.models.apply_at_value_form'];
|
|
31866
|
+
export const athenaDailyopsIntentLevel = T['io.flow.internal.v0.enums.athena_dailyops_intent_level'];
|
|
31398
31867
|
export const attemptStatistics = T['io.flow.internal.v0.models.attempt_statistics'];
|
|
31399
31868
|
export const attributeLabel = T['io.flow.internal.v0.models.attribute_label'];
|
|
31400
31869
|
export const attributeRule = T['io.flow.internal.v0.models.attribute_rule'];
|
|
@@ -31420,6 +31889,11 @@ export const b2BTaxLedger = T['io.flow.internal.v0.models.b2b_tax_ledger'];
|
|
|
31420
31889
|
export const b2BTaxLedgerDocumentType = T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'];
|
|
31421
31890
|
export const b2BTaxLedgerForm = T['io.flow.internal.v0.models.b2b_tax_ledger_form'];
|
|
31422
31891
|
export const b2BTaxRateType = T['io.flow.internal.v0.enums.b2b_tax_rate_type'];
|
|
31892
|
+
export const b2BTaxTransaction = T['io.flow.internal.v0.models.b2b_tax_transaction'];
|
|
31893
|
+
export const b2BTaxTransactionDeleted = T['io.flow.internal.v0.models.b2b_tax_transaction_deleted'];
|
|
31894
|
+
export const b2BTaxTransactionUpserted = T['io.flow.internal.v0.models.b2b_tax_transaction_upserted'];
|
|
31895
|
+
export const b2BTransactionTaxLine = T['io.flow.internal.v0.models.b2b_transaction_tax_line'];
|
|
31896
|
+
export const b2BTransactionTaxableItem = T['io.flow.internal.v0.models.b2b_transaction_taxable_item'];
|
|
31423
31897
|
export const bankAccount = T['io.flow.internal.v0.models.bank_account'];
|
|
31424
31898
|
export const bankAccountReference = T['io.flow.internal.v0.models.bank_account_reference'];
|
|
31425
31899
|
export const bankAccountStatus = T['io.flow.internal.v0.enums.bank_account_status'];
|
|
@@ -31478,8 +31952,10 @@ export const bitpayAuthentication = T['io.flow.internal.v0.models.bitpay_authent
|
|
|
31478
31952
|
export const bitpayAuthenticationDataReference = T['io.flow.internal.v0.models.bitpay_authentication_data_reference'];
|
|
31479
31953
|
export const bitpayAuthenticationForm = T['io.flow.internal.v0.models.bitpay_authentication_form'];
|
|
31480
31954
|
export const bojanaItem = T['io.flow.internal.v0.models.bojana_item'];
|
|
31955
|
+
export const bojanaItemDeleted = T['io.flow.internal.v0.models.bojana_item_deleted'];
|
|
31481
31956
|
export const bojanaItemForm = T['io.flow.internal.v0.models.bojana_item_form'];
|
|
31482
31957
|
export const bojanaItemType = T['io.flow.internal.v0.enums.bojana_item_type'];
|
|
31958
|
+
export const bojanaItemUpserted = T['io.flow.internal.v0.models.bojana_item_upserted'];
|
|
31483
31959
|
export const booleanFeatureDefaultValue = T['io.flow.internal.v0.models.boolean_feature_default_value'];
|
|
31484
31960
|
export const booleanFeatureRule = T['io.flow.internal.v0.models.boolean_feature_rule'];
|
|
31485
31961
|
export const booleanFeatureRuleForm = T['io.flow.internal.v0.models.boolean_feature_rule_form'];
|
|
@@ -31617,6 +32093,9 @@ export const channelRateMetadataRate = T['io.flow.internal.v0.models.channel_rat
|
|
|
31617
32093
|
export const channelService = T['io.flow.internal.v0.enums.channel_service'];
|
|
31618
32094
|
export const channelShop = T['io.flow.internal.v0.models.channel_shop'];
|
|
31619
32095
|
export const channelShopForm = T['io.flow.internal.v0.models.channel_shop_form'];
|
|
32096
|
+
export const channelShopStatistics = T['io.flow.internal.v0.models.channel_shop_statistics'];
|
|
32097
|
+
export const channelShopStatisticsDeleted = T['io.flow.internal.v0.models.channel_shop_statistics_deleted'];
|
|
32098
|
+
export const channelShopStatisticsUpserted = T['io.flow.internal.v0.models.channel_shop_statistics_upserted'];
|
|
31620
32099
|
export const channelTransaction = T['io.flow.internal.v0.models.channel_transaction'];
|
|
31621
32100
|
export const channelTransactionDeleted = T['io.flow.internal.v0.models.channel_transaction_deleted'];
|
|
31622
32101
|
export const channelTransactionRate = T['io.flow.internal.v0.models.channel_transaction_rate'];
|
|
@@ -31943,6 +32422,12 @@ export const fiservAuthenticationForm = T['io.flow.internal.v0.models.fiserv_aut
|
|
|
31943
32422
|
export const fiservMerchant = T['io.flow.internal.v0.models.fiserv_merchant'];
|
|
31944
32423
|
export const fiservMerchantModificationForm = T['io.flow.internal.v0.models.fiserv_merchant_modification_form'];
|
|
31945
32424
|
export const fiservMerchantPutForm = T['io.flow.internal.v0.models.fiserv_merchant_put_form'];
|
|
32425
|
+
export const flatRate = T['io.flow.internal.v0.models.flat_rate'];
|
|
32426
|
+
export const flatRateLabelReversal = T['io.flow.internal.v0.models.flat_rate_label_reversal'];
|
|
32427
|
+
export const flatRateLabelReversalDeleted = T['io.flow.internal.v0.models.flat_rate_label_reversal_deleted'];
|
|
32428
|
+
export const flatRateLabelReversalUpserted = T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'];
|
|
32429
|
+
export const flatRateLabelTransaction = T['io.flow.internal.v0.models.flat_rate_label_transaction'];
|
|
32430
|
+
export const flatRateLabelTransactionType = T['io.flow.internal.v0.enums.flat_rate_label_transaction_type'];
|
|
31946
32431
|
export const flexeWebhook = T['io.flow.internal.v0.models.flexe_webhook'];
|
|
31947
32432
|
export const flowAccount = T['io.flow.internal.v0.models.flow_account'];
|
|
31948
32433
|
export const flowBillingStatement = T['io.flow.internal.v0.models.flow_billing_statement'];
|
|
@@ -31988,9 +32473,6 @@ export const fraudSummary = T['io.flow.internal.v0.models.fraud_summary'];
|
|
|
31988
32473
|
export const ftpFileDeleted = T['io.flow.internal.v0.models.ftp_file_deleted'];
|
|
31989
32474
|
export const ftpFileToProcessUploaded = T['io.flow.internal.v0.models.ftp_file_to_process_uploaded'];
|
|
31990
32475
|
export const ftpFileUpserted = T['io.flow.internal.v0.models.ftp_file_upserted'];
|
|
31991
|
-
export const fuelSurchargeServiceFeeAmountByWeightPutForm = T['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form'];
|
|
31992
|
-
export const fuelSurchargeServiceFeePercentPutForm = T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'];
|
|
31993
|
-
export const fuelSurchargeServiceFeePutForm = T['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form'];
|
|
31994
32476
|
export const fulfillment = T['io.flow.internal.v0.models.fulfillment'];
|
|
31995
32477
|
export const fulfillmentActionForm = T['io.flow.internal.v0.models.fulfillment_action_form'];
|
|
31996
32478
|
export const fulfillmentBusiness = T['io.flow.internal.v0.models.fulfillment_business'];
|
|
@@ -32152,8 +32634,6 @@ export const labProjectSettingsFormAcceptance = T['io.flow.internal.v0.models.la
|
|
|
32152
32634
|
export const labelAliases = T['io.flow.internal.v0.models.label_aliases'];
|
|
32153
32635
|
export const labelAssociation = T['io.flow.internal.v0.models.label_association'];
|
|
32154
32636
|
export const labelBillingStrategy = T['io.flow.internal.v0.enums.label_billing_strategy'];
|
|
32155
|
-
export const labelCancellationError = T['io.flow.internal.v0.models.label_cancellation_error'];
|
|
32156
|
-
export const labelCancellationErrorCode = T['io.flow.internal.v0.enums.label_cancellation_error_code'];
|
|
32157
32637
|
export const labelCreationJob = T['io.flow.internal.v0.models.label_creation_job'];
|
|
32158
32638
|
export const labelCreationJobDeleted = T['io.flow.internal.v0.models.label_creation_job_deleted'];
|
|
32159
32639
|
export const labelCreationJobSummary = T['io.flow.internal.v0.models.label_creation_job_summary'];
|
|
@@ -32220,6 +32700,10 @@ export const loyaltyProgram = T['io.flow.internal.v0.models.loyalty_program'];
|
|
|
32220
32700
|
export const loyaltyProgramMessage = T['io.flow.internal.v0.models.loyalty_program_message'];
|
|
32221
32701
|
export const loyaltyProgramReward = T['io.flow.internal.v0.models.loyalty_program_reward'];
|
|
32222
32702
|
export const loyaltyProgramRewards = T['io.flow.internal.v0.models.loyalty_program_rewards'];
|
|
32703
|
+
export const maheshItem = T['io.flow.internal.v0.models.mahesh_item'];
|
|
32704
|
+
export const maheshItemForm = T['io.flow.internal.v0.models.mahesh_item_form'];
|
|
32705
|
+
export const maheshItemType = T['io.flow.internal.v0.enums.mahesh_item_type'];
|
|
32706
|
+
export const mailClass = T['io.flow.internal.v0.enums.mail_class'];
|
|
32223
32707
|
export const mainTransaction = T['io.flow.internal.v0.models.main_transaction'];
|
|
32224
32708
|
export const mainTransactionDeleted = T['io.flow.internal.v0.models.main_transaction_deleted'];
|
|
32225
32709
|
export const mainTransactionDeletedV2 = T['io.flow.internal.v0.models.main_transaction_deleted_v2'];
|
|
@@ -32261,12 +32745,16 @@ export const merchantOverrideUpserted = T['io.flow.internal.v0.models.merchant_o
|
|
|
32261
32745
|
export const merchantSearchResult = T['io.flow.internal.v0.models.merchant_search_result'];
|
|
32262
32746
|
export const merchantSubsidies = T['io.flow.internal.v0.models.merchant_subsidies'];
|
|
32263
32747
|
export const merchantSummary = T['io.flow.internal.v0.models.merchant_summary'];
|
|
32748
|
+
export const merchantSurcharge = T['io.flow.internal.v0.models.merchant_surcharge'];
|
|
32264
32749
|
export const merchantTransactions = T['io.flow.internal.v0.models.merchant_transactions'];
|
|
32265
32750
|
export const merchantUpserted = T['io.flow.internal.v0.models.merchant_upserted'];
|
|
32266
32751
|
export const messageStamp = T['io.flow.internal.v0.models.message_stamp'];
|
|
32267
32752
|
export const metadataProposition = T['io.flow.internal.v0.models.metadata_proposition'];
|
|
32268
32753
|
export const metadataRatecard = T['io.flow.internal.v0.models.metadata_ratecard'];
|
|
32269
32754
|
export const mixedBagWeight = T['io.flow.internal.v0.enums.mixed_bag_weight'];
|
|
32755
|
+
export const morCostDeleted = T['io.flow.internal.v0.models.mor_cost_deleted'];
|
|
32756
|
+
export const morCostSummary = T['io.flow.internal.v0.models.mor_cost_summary'];
|
|
32757
|
+
export const morCostUpserted = T['io.flow.internal.v0.models.mor_cost_upserted'];
|
|
32270
32758
|
export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
|
|
32271
32759
|
export const negativeDebitMetrics = T['io.flow.internal.v0.models.negative_debit_metrics'];
|
|
32272
32760
|
export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
|
|
@@ -32520,6 +33008,8 @@ export const preonboardingClassificationRequest = T['io.flow.internal.v0.models.
|
|
|
32520
33008
|
export const preonboardingClassificationResult = T['io.flow.internal.v0.models.preonboarding_classification_result'];
|
|
32521
33009
|
export const preonboardingClassificationType = T['io.flow.internal.v0.enums.preonboarding_classification_type'];
|
|
32522
33010
|
export const preonboardingMerchant = T['io.flow.internal.v0.models.preonboarding_merchant'];
|
|
33011
|
+
export const preonboardingMerchantDeleted = T['io.flow.internal.v0.models.preonboarding_merchant_deleted'];
|
|
33012
|
+
export const preonboardingMerchantUpserted = T['io.flow.internal.v0.models.preonboarding_merchant_upserted'];
|
|
32523
33013
|
export const preonboardingRequestStatus = T['io.flow.internal.v0.enums.preonboarding_request_status'];
|
|
32524
33014
|
export const preonboardingSellabilityResult = T['io.flow.internal.v0.models.preonboarding_sellability_result'];
|
|
32525
33015
|
export const preonboardingSellabilityResultDeleted = T['io.flow.internal.v0.models.preonboarding_sellability_result_deleted'];
|
|
@@ -32636,13 +33126,13 @@ export const ratecardServiceFeeDeleted = T['io.flow.internal.v0.models.ratecard_
|
|
|
32636
33126
|
export const ratecardServiceFeeUpserted = T['io.flow.internal.v0.models.ratecard_service_fee_upserted'];
|
|
32637
33127
|
export const ratecardServiceFeesOverride = T['io.flow.internal.v0.models.ratecard_service_fees_override'];
|
|
32638
33128
|
export const ratecardServiceFeesOverrideForm = T['io.flow.internal.v0.models.ratecard_service_fees_override_form'];
|
|
32639
|
-
export const ratecardStandardConfiguration = T['io.flow.internal.v0.models.ratecard_standard_configuration'];
|
|
32640
|
-
export const ratecardStandardConfigurationDeleted = T['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'];
|
|
32641
|
-
export const ratecardStandardConfigurationForm = T['io.flow.internal.v0.models.ratecard_standard_configuration_form'];
|
|
32642
|
-
export const ratecardStandardConfigurationUpserted = T['io.flow.internal.v0.models.ratecard_standard_configuration_upserted'];
|
|
32643
|
-
export const ratecardStandardSettings = T['io.flow.internal.v0.models.ratecard_standard_settings'];
|
|
32644
33129
|
export const ratesChanged = T['io.flow.internal.v0.models.rates_changed'];
|
|
32645
33130
|
export const ratesNamesSummary = T['io.flow.internal.v0.models.rates_names_summary'];
|
|
33131
|
+
export const raveenaItem = T['io.flow.internal.v0.models.raveena_item'];
|
|
33132
|
+
export const raveenaItemDeleted = T['io.flow.internal.v0.models.raveena_item_deleted'];
|
|
33133
|
+
export const raveenaItemForm = T['io.flow.internal.v0.models.raveena_item_form'];
|
|
33134
|
+
export const raveenaItemType = T['io.flow.internal.v0.enums.raveena_item_type'];
|
|
33135
|
+
export const raveenaItemUpserted = T['io.flow.internal.v0.models.raveena_item_upserted'];
|
|
32646
33136
|
export const recordReference = T['io.flow.internal.v0.models.record_reference'];
|
|
32647
33137
|
export const redirect = T['io.flow.internal.v0.models.redirect'];
|
|
32648
33138
|
export const redirectActionCompleted = T['io.flow.internal.v0.models.redirect_action_completed'];
|
|
@@ -32691,6 +33181,8 @@ export const reportingFulfillmentIsVirtual = T['io.flow.internal.v0.enums.report
|
|
|
32691
33181
|
export const reportingFx = T['io.flow.internal.v0.models.reporting_fx'];
|
|
32692
33182
|
export const reportingMerchantBreakdown = T['io.flow.internal.v0.models.reporting_merchant_breakdown'];
|
|
32693
33183
|
export const reportingMerchantFees = T['io.flow.internal.v0.models.reporting_merchant_fees'];
|
|
33184
|
+
export const reportingMerchantFreight = T['io.flow.internal.v0.models.reporting_merchant_freight'];
|
|
33185
|
+
export const reportingMerchantFreightSurcharges = T['io.flow.internal.v0.models.reporting_merchant_freight_surcharges'];
|
|
32694
33186
|
export const reportingMerchantSubsidies = T['io.flow.internal.v0.models.reporting_merchant_subsidies'];
|
|
32695
33187
|
export const reportingMerchantTransactions = T['io.flow.internal.v0.models.reporting_merchant_transactions'];
|
|
32696
33188
|
export const reportingMonetaryValue = T['io.flow.internal.v0.models.reporting_monetary_value'];
|
|
@@ -32720,6 +33212,7 @@ export const restrictionAttributeResult = T['io.flow.internal.v0.enums.restricti
|
|
|
32720
33212
|
export const restrictionAttributeRule = T['io.flow.internal.v0.models.restriction_attribute_rule'];
|
|
32721
33213
|
export const restrictionAttributeRuleCondition = T['io.flow.internal.v0.unions.restriction_attribute_rule_condition'];
|
|
32722
33214
|
export const restrictionBlanketOrganizationExemption = T['io.flow.internal.v0.models.restriction_blanket_organization_exemption'];
|
|
33215
|
+
export const restrictionBlanketOrganizationExemptionForm = T['io.flow.internal.v0.models.restriction_blanket_organization_exemption_form'];
|
|
32723
33216
|
export const restrictionCategory = T['io.flow.internal.v0.models.restriction_category'];
|
|
32724
33217
|
export const restrictionDecision = T['io.flow.internal.v0.enums.restriction_decision'];
|
|
32725
33218
|
export const restrictionFilter = T['io.flow.internal.v0.models.restriction_filter'];
|
|
@@ -32754,13 +33247,21 @@ export const restrictionRuleEffectUpserted = T['io.flow.internal.v0.models.restr
|
|
|
32754
33247
|
export const restrictionRuleExceptionAction = T['io.flow.internal.v0.enums.restriction_rule_exception_action'];
|
|
32755
33248
|
export const restrictionRuleForm = T['io.flow.internal.v0.models.restriction_rule_form'];
|
|
32756
33249
|
export const restrictionRuleLaneExemption = T['io.flow.internal.v0.models.restriction_rule_lane_exemption'];
|
|
33250
|
+
export const restrictionRuleLaneExemptionForm = T['io.flow.internal.v0.models.restriction_rule_lane_exemption_form'];
|
|
32757
33251
|
export const restrictionRuleOrganizationExemption = T['io.flow.internal.v0.models.restriction_rule_organization_exemption'];
|
|
33252
|
+
export const restrictionRuleOrganizationExemptionForm = T['io.flow.internal.v0.models.restriction_rule_organization_exemption_form'];
|
|
32758
33253
|
export const restrictionRuleOverride = T['io.flow.internal.v0.models.restriction_rule_override'];
|
|
32759
33254
|
export const restrictionRuleSummary = T['io.flow.internal.v0.models.restriction_rule_summary'];
|
|
32760
33255
|
export const restrictionRuleUpserted = T['io.flow.internal.v0.models.restriction_rule_upserted'];
|
|
32761
33256
|
export const restrictionStateReviewStatus = T['io.flow.internal.v0.enums.restriction_state_review_status'];
|
|
32762
33257
|
export const restrictionStatus = T['io.flow.internal.v0.enums.restriction_status'];
|
|
32763
33258
|
export const restrictionSummaryCounts = T['io.flow.internal.v0.models.restriction_summary_counts'];
|
|
33259
|
+
export const restrictionsAthenaDailyopsFs = T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs'];
|
|
33260
|
+
export const restrictionsAthenaDailyopsFsDeleted = T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_deleted'];
|
|
33261
|
+
export const restrictionsAthenaDailyopsFsUpserted = T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_upserted'];
|
|
33262
|
+
export const restrictionsAthenaDailyopsPcPv = T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv'];
|
|
33263
|
+
export const restrictionsAthenaDailyopsPcPvDeleted = T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_deleted'];
|
|
33264
|
+
export const restrictionsAthenaDailyopsPcPvUpserted = T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_upserted'];
|
|
32764
33265
|
export const restrictionsDailyops = T['io.flow.internal.v0.models.restrictions_dailyops'];
|
|
32765
33266
|
export const restrictionsDailyopsDeleted = T['io.flow.internal.v0.models.restrictions_dailyops_deleted'];
|
|
32766
33267
|
export const restrictionsDailyopsUpserted = T['io.flow.internal.v0.models.restrictions_dailyops_upserted'];
|
|
@@ -33056,7 +33557,6 @@ export const taskProcessQueuedEvent = T['io.flow.internal.v0.models.task_process
|
|
|
33056
33557
|
export const taskProcessorKey = T['io.flow.internal.v0.enums.task_processor_key'];
|
|
33057
33558
|
export const taskSummarizeCode = T['io.flow.internal.v0.models.task_summarize_code'];
|
|
33058
33559
|
export const taxAmount = T['io.flow.internal.v0.unions.tax_amount'];
|
|
33059
|
-
export const taxAndDutyInclusivitySetting = T['io.flow.internal.v0.enums.tax_and_duty_inclusivity_setting'];
|
|
33060
33560
|
export const taxCalculation = T['io.flow.internal.v0.models.tax_calculation'];
|
|
33061
33561
|
export const taxCalculationError = T['io.flow.internal.v0.models.tax_calculation_error'];
|
|
33062
33562
|
export const taxCalculationErrorCode = T['io.flow.internal.v0.enums.tax_calculation_error_code'];
|