@flowio/api-internal-prop-types 9.24.137 → 9.24.138
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 +365 -144
- package/lib/api-internal.js +1 -1
- package/package.json +1 -1
- package/src/api-internal.d.ts +365 -144
- package/src/api-internal.js +634 -375
package/src/api-internal.js
CHANGED
|
@@ -22,6 +22,7 @@ T['io.flow.organization.v0.models.tax_registration_detail'] = PropTypes.exact({
|
|
|
22
22
|
country: PropTypes.string.isRequired,
|
|
23
23
|
tax_code: PropTypes.string.isRequired,
|
|
24
24
|
province: PropTypes.string,
|
|
25
|
+
legal_name: PropTypes.string,
|
|
25
26
|
});
|
|
26
27
|
|
|
27
28
|
T['io.flow.organization.v0.enums.invitation_error_code'] = PropTypes.oneOf(['expired', 'invalid_email']);
|
|
@@ -138,13 +139,6 @@ T['io.flow.billing.v0.models.trueup_label_base_v2'] = PropTypes.exact({
|
|
|
138
139
|
amount: PropTypes.number.isRequired,
|
|
139
140
|
});
|
|
140
141
|
|
|
141
|
-
T['io.flow.billing.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
142
|
-
amount: PropTypes.number.isRequired,
|
|
143
|
-
weight: PropTypes.number.isRequired,
|
|
144
|
-
});
|
|
145
|
-
|
|
146
|
-
T['io.flow.billing.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups', 'fedex']);
|
|
147
|
-
|
|
148
142
|
T['io.flow.billing.v0.models.transaction_metadata_tax_duty_delta'] = PropTypes.exact({
|
|
149
143
|
base: PropTypes.number,
|
|
150
144
|
local: PropTypes.number,
|
|
@@ -160,6 +154,13 @@ T['io.flow.billing.v0.models.transaction_metadata_tax_duty_actual'] = PropTypes.
|
|
|
160
154
|
local: PropTypes.number,
|
|
161
155
|
});
|
|
162
156
|
|
|
157
|
+
T['io.flow.billing.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
158
|
+
amount: PropTypes.number.isRequired,
|
|
159
|
+
weight: PropTypes.number.isRequired,
|
|
160
|
+
});
|
|
161
|
+
|
|
162
|
+
T['io.flow.billing.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups', 'fedex']);
|
|
163
|
+
|
|
163
164
|
T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'] = PropTypes.exact({
|
|
164
165
|
id: PropTypes.string.isRequired,
|
|
165
166
|
service_id: PropTypes.string,
|
|
@@ -177,7 +178,7 @@ T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'] = PropT
|
|
|
177
178
|
transaction_id: PropTypes.string.isRequired,
|
|
178
179
|
});
|
|
179
180
|
|
|
180
|
-
T['io.flow.billing.v0.enums.statement_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
|
|
181
|
+
T['io.flow.billing.v0.enums.statement_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed', 'paid']);
|
|
181
182
|
|
|
182
183
|
T['io.flow.billing.v0.models.transaction_metadata_flat_rate_label'] = PropTypes.exact({
|
|
183
184
|
discriminator: PropTypes.oneOf(['flat_rate_label']).isRequired,
|
|
@@ -837,7 +838,6 @@ T['io.flow.ratecard.v0.models.ratecard_rate_form'] = PropTypes.exact({
|
|
|
837
838
|
});
|
|
838
839
|
|
|
839
840
|
T['io.flow.ratecard.v0.models.ratecard_rate'] = PropTypes.exact({
|
|
840
|
-
id: PropTypes.string.isRequired,
|
|
841
841
|
amount: PropTypes.number.isRequired,
|
|
842
842
|
weight: PropTypes.number.isRequired,
|
|
843
843
|
});
|
|
@@ -1286,14 +1286,6 @@ T['io.flow.shopify.markets.internal.event.v0.models.shopify_merchant_markets_del
|
|
|
1286
1286
|
id: PropTypes.string.isRequired,
|
|
1287
1287
|
});
|
|
1288
1288
|
|
|
1289
|
-
T['io.flow.shopify.markets.internal.event.v0.models.shopify_adaptive_pricing_coefficients_deleted'] = PropTypes.exact({
|
|
1290
|
-
discriminator: PropTypes.oneOf(['shopify_adaptive_pricing_coefficients_deleted']).isRequired,
|
|
1291
|
-
event_id: PropTypes.string.isRequired,
|
|
1292
|
-
timestamp: PropTypes.string.isRequired,
|
|
1293
|
-
organization: PropTypes.string.isRequired,
|
|
1294
|
-
id: PropTypes.string.isRequired,
|
|
1295
|
-
});
|
|
1296
|
-
|
|
1297
1289
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_deleted'] = PropTypes.exact({
|
|
1298
1290
|
discriminator: PropTypes.oneOf(['shopify_test_order_deleted']).isRequired,
|
|
1299
1291
|
event_id: PropTypes.string.isRequired,
|
|
@@ -1939,6 +1931,23 @@ T['io.flow.shopify.markets.v0.models.shopify_applied_discount'] = PropTypes.exac
|
|
|
1939
1931
|
amount: PropTypes.number,
|
|
1940
1932
|
});
|
|
1941
1933
|
|
|
1934
|
+
T['io.flow.shopify.markets.v0.models.shopify_adaptive_pricing_destination'] = PropTypes.exact({
|
|
1935
|
+
country_code: PropTypes.string.isRequired,
|
|
1936
|
+
updated_at: PropTypes.string.isRequired,
|
|
1937
|
+
tax_and_duty_coefficient: PropTypes.string.isRequired,
|
|
1938
|
+
fees_coefficient: PropTypes.string.isRequired,
|
|
1939
|
+
merchant_subsidy_amount: PropTypes.string.isRequired,
|
|
1940
|
+
merchant_subsidy_currency: PropTypes.string.isRequired,
|
|
1941
|
+
adaptive_pricing_enabled: PropTypes.bool.isRequired,
|
|
1942
|
+
adaptive_shipping_enabled: PropTypes.bool.isRequired,
|
|
1943
|
+
});
|
|
1944
|
+
|
|
1945
|
+
T['io.flow.shopify.markets.v0.models.shopify_adaptive_pricing_destinations_wrapper'] = PropTypes.exact({
|
|
1946
|
+
destinations: PropTypes.arrayOf(
|
|
1947
|
+
T['io.flow.shopify.markets.v0.models.shopify_adaptive_pricing_destination'],
|
|
1948
|
+
).isRequired,
|
|
1949
|
+
});
|
|
1950
|
+
|
|
1942
1951
|
T['io.flow.shopify.markets.v0.models.shop'] = PropTypes.exact({
|
|
1943
1952
|
id: PropTypes.number.isRequired,
|
|
1944
1953
|
name: PropTypes.string.isRequired,
|
|
@@ -3495,6 +3504,13 @@ T['io.flow.consumer.invoice.v0.models.credit_memo_form'] = PropTypes.exact({
|
|
|
3495
3504
|
|
|
3496
3505
|
T['io.flow.consumer.invoice.v0.enums.consumer_invoice_customer_type'] = PropTypes.oneOf(['business_eu_verified', 'business_non_verified', 'individual']);
|
|
3497
3506
|
T['io.flow.merchant.of.record.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
|
|
3507
|
+
|
|
3508
|
+
T['io.flow.consumer.invoice.v0.models.b2b_debit_note_reference'] = PropTypes.exact({
|
|
3509
|
+
id: PropTypes.string.isRequired,
|
|
3510
|
+
key: PropTypes.string.isRequired,
|
|
3511
|
+
number: PropTypes.string.isRequired,
|
|
3512
|
+
});
|
|
3513
|
+
|
|
3498
3514
|
T['io.flow.consumer.invoice.v0.enums.consumer_invoice_document_type'] = PropTypes.oneOf(['pdf']);
|
|
3499
3515
|
|
|
3500
3516
|
T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'] = PropTypes.exact({
|
|
@@ -3550,6 +3566,7 @@ T['io.flow.shopify.markets.internal.event.v0.models.shopify_product_bundle_upser
|
|
|
3550
3566
|
T['io.flow.shopify.markets.internal.v0.models.shopify_merchant_market_country'] = PropTypes.exact({
|
|
3551
3567
|
code: PropTypes.string.isRequired,
|
|
3552
3568
|
actively_managing: PropTypes.bool.isRequired,
|
|
3569
|
+
enabled: PropTypes.bool.isRequired,
|
|
3553
3570
|
});
|
|
3554
3571
|
|
|
3555
3572
|
T['io.flow.shopify.markets.internal.v0.models.shopify_merchant_markets'] = PropTypes.exact({
|
|
@@ -7450,6 +7467,21 @@ T['io.flow.fulfillment.v0.models.scheduled_pickup'] = PropTypes.exact({
|
|
|
7450
7467
|
minute_of_hour: PropTypes.string.isRequired,
|
|
7451
7468
|
});
|
|
7452
7469
|
|
|
7470
|
+
T['io.flow.restrictions.v0.enums.restriction_decision_reason'] = PropTypes.oneOf(['manual_dispute']);
|
|
7471
|
+
T['io.flow.restrictions.v0.enums.restriction_decision'] = PropTypes.oneOf(['accept', 'reject', 'escalate', 'review']);
|
|
7472
|
+
|
|
7473
|
+
T['io.flow.restrictions.v0.models.restriction_rule_decision_form'] = PropTypes.exact({
|
|
7474
|
+
product_id: PropTypes.string.isRequired,
|
|
7475
|
+
reason_code: PropTypes.string.isRequired,
|
|
7476
|
+
decision: T['io.flow.restrictions.v0.enums.restriction_decision'].isRequired,
|
|
7477
|
+
decision_reason: T['io.flow.restrictions.v0.enums.restriction_decision_reason'].isRequired,
|
|
7478
|
+
});
|
|
7479
|
+
|
|
7480
|
+
T['io.flow.restrictions.v0.models.restriction_decisions_form'] = PropTypes.exact({
|
|
7481
|
+
organization_id: PropTypes.string.isRequired,
|
|
7482
|
+
rule_decisions: PropTypes.arrayOf(T['io.flow.restrictions.v0.models.restriction_rule_decision_form']).isRequired,
|
|
7483
|
+
});
|
|
7484
|
+
|
|
7453
7485
|
T['io.flow.restrictions.v0.enums.restricted_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
|
|
7454
7486
|
|
|
7455
7487
|
T['io.flow.restrictions.v0.models.needs_action_attributes'] = PropTypes.exact({
|
|
@@ -8640,6 +8672,13 @@ T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.ex
|
|
|
8640
8672
|
id: PropTypes.string.isRequired,
|
|
8641
8673
|
});
|
|
8642
8674
|
|
|
8675
|
+
T['io.flow.internal.v0.models.mahesh_item_deleted'] = PropTypes.exact({
|
|
8676
|
+
discriminator: PropTypes.oneOf(['mahesh_item_deleted']).isRequired,
|
|
8677
|
+
event_id: PropTypes.string.isRequired,
|
|
8678
|
+
timestamp: PropTypes.string.isRequired,
|
|
8679
|
+
id: PropTypes.string.isRequired,
|
|
8680
|
+
});
|
|
8681
|
+
|
|
8643
8682
|
T['io.flow.internal.v0.models.raveena_item_deleted'] = PropTypes.exact({
|
|
8644
8683
|
discriminator: PropTypes.oneOf(['raveena_item_deleted']).isRequired,
|
|
8645
8684
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8775,14 +8814,6 @@ T['io.flow.internal.v0.models.shopify_merchant_markets_deleted'] = PropTypes.exa
|
|
|
8775
8814
|
id: PropTypes.string.isRequired,
|
|
8776
8815
|
});
|
|
8777
8816
|
|
|
8778
|
-
T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_deleted'] = PropTypes.exact({
|
|
8779
|
-
discriminator: PropTypes.oneOf(['shopify_adaptive_pricing_coefficients_deleted']).isRequired,
|
|
8780
|
-
event_id: PropTypes.string.isRequired,
|
|
8781
|
-
timestamp: PropTypes.string.isRequired,
|
|
8782
|
-
organization: PropTypes.string.isRequired,
|
|
8783
|
-
id: PropTypes.string.isRequired,
|
|
8784
|
-
});
|
|
8785
|
-
|
|
8786
8817
|
T['io.flow.internal.v0.models.shopify_test_order_deleted'] = PropTypes.exact({
|
|
8787
8818
|
discriminator: PropTypes.oneOf(['shopify_test_order_deleted']).isRequired,
|
|
8788
8819
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9248,6 +9279,14 @@ T['io.flow.internal.v0.models.all_items_export'] = PropTypes.exact({
|
|
|
9248
9279
|
export_id: PropTypes.string.isRequired,
|
|
9249
9280
|
});
|
|
9250
9281
|
|
|
9282
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_published_output_deleted'] = PropTypes.exact({
|
|
9283
|
+
discriminator: PropTypes.oneOf(['guaranteed_shipping_published_output_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
|
+
|
|
9251
9290
|
T['io.flow.internal.v0.models.quote_deleted'] = PropTypes.exact({
|
|
9252
9291
|
discriminator: PropTypes.oneOf(['quote_deleted']).isRequired,
|
|
9253
9292
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9625,6 +9664,14 @@ T['io.flow.internal.v0.models.calculator_organization_settings_deleted'] = PropT
|
|
|
9625
9664
|
id: PropTypes.string.isRequired,
|
|
9626
9665
|
});
|
|
9627
9666
|
|
|
9667
|
+
T['io.flow.internal.v0.models.sales_payment_record_deleted'] = PropTypes.exact({
|
|
9668
|
+
discriminator: PropTypes.oneOf(['sales_payment_record_deleted']).isRequired,
|
|
9669
|
+
event_id: PropTypes.string.isRequired,
|
|
9670
|
+
timestamp: PropTypes.string.isRequired,
|
|
9671
|
+
organization: PropTypes.string.isRequired,
|
|
9672
|
+
id: PropTypes.string.isRequired,
|
|
9673
|
+
});
|
|
9674
|
+
|
|
9628
9675
|
T['io.flow.internal.v0.models.other_record_deleted'] = PropTypes.exact({
|
|
9629
9676
|
discriminator: PropTypes.oneOf(['other_record_deleted']).isRequired,
|
|
9630
9677
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9798,6 +9845,24 @@ T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'] = PropTypes.exact
|
|
|
9798
9845
|
id: PropTypes.string.isRequired,
|
|
9799
9846
|
});
|
|
9800
9847
|
|
|
9848
|
+
T['io.flow.internal.v0.models.adaptive_pricing_update_deleted'] = PropTypes.exact({
|
|
9849
|
+
discriminator: PropTypes.oneOf(['adaptive_pricing_update_deleted']).isRequired,
|
|
9850
|
+
event_id: PropTypes.string.isRequired,
|
|
9851
|
+
timestamp: PropTypes.string.isRequired,
|
|
9852
|
+
organization: PropTypes.string.isRequired,
|
|
9853
|
+
channel_id: PropTypes.string.isRequired,
|
|
9854
|
+
id: PropTypes.string.isRequired,
|
|
9855
|
+
});
|
|
9856
|
+
|
|
9857
|
+
T['io.flow.internal.v0.models.adaptive_pricing_coefficient_deleted'] = PropTypes.exact({
|
|
9858
|
+
discriminator: PropTypes.oneOf(['adaptive_pricing_coefficient_deleted']).isRequired,
|
|
9859
|
+
event_id: PropTypes.string.isRequired,
|
|
9860
|
+
timestamp: PropTypes.string.isRequired,
|
|
9861
|
+
organization: PropTypes.string.isRequired,
|
|
9862
|
+
channel_id: PropTypes.string.isRequired,
|
|
9863
|
+
id: PropTypes.string.isRequired,
|
|
9864
|
+
});
|
|
9865
|
+
|
|
9801
9866
|
T['io.flow.internal.v0.models.console_mark_unresolvable_form'] = PropTypes.exact({
|
|
9802
9867
|
discriminator: PropTypes.oneOf(['console_mark_unresolvable_form']).isRequired,
|
|
9803
9868
|
order_number: PropTypes.string.isRequired,
|
|
@@ -10661,50 +10726,8 @@ T['io.flow.internal.v0.enums.shopify_charge_code'] = PropTypes.oneOf([
|
|
|
10661
10726
|
'incoterm_ddp',
|
|
10662
10727
|
]);
|
|
10663
10728
|
|
|
10664
|
-
T['io.flow.internal.v0.models.shopify_money'] = PropTypes.exact({
|
|
10665
|
-
amount: PropTypes.number.isRequired,
|
|
10666
|
-
currency_code: PropTypes.string.isRequired,
|
|
10667
|
-
});
|
|
10668
|
-
|
|
10669
|
-
T['io.flow.internal.v0.models.shopify_shipment_rate_option'] = PropTypes.exact({
|
|
10670
|
-
code: T['io.flow.internal.v0.enums.shopify_shipment_option_code'].isRequired,
|
|
10671
|
-
cost: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10672
|
-
optional: PropTypes.bool,
|
|
10673
|
-
});
|
|
10674
|
-
|
|
10675
|
-
T['io.flow.internal.v0.models.shopify_shipment_rate_charge'] = PropTypes.exact({
|
|
10676
|
-
code: T['io.flow.internal.v0.enums.shopify_charge_code'].isRequired,
|
|
10677
|
-
cost: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10678
|
-
});
|
|
10679
|
-
|
|
10680
|
-
T['io.flow.internal.v0.models.shopify_shipment_rate_total_charges'] = PropTypes.exact({
|
|
10681
|
-
subtotal: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10682
|
-
tax: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10683
|
-
total: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10684
|
-
});
|
|
10685
|
-
|
|
10686
10729
|
T['io.flow.internal.v0.enums.shopify_incoterm'] = PropTypes.oneOf(['DAP', 'DDP']);
|
|
10687
10730
|
|
|
10688
|
-
T['io.flow.internal.v0.models.shopify_shipment_rate_available'] = PropTypes.exact({
|
|
10689
|
-
carrier_service_id: PropTypes.string.isRequired,
|
|
10690
|
-
total_charges: T['io.flow.internal.v0.models.shopify_shipment_rate_total_charges'].isRequired,
|
|
10691
|
-
charges: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_charge']).isRequired,
|
|
10692
|
-
shipment_options: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_option']).isRequired,
|
|
10693
|
-
expected_delivery_date: PropTypes.string,
|
|
10694
|
-
guaranteed_delivery_date: PropTypes.string,
|
|
10695
|
-
incoterm: T['io.flow.internal.v0.enums.shopify_incoterm'],
|
|
10696
|
-
});
|
|
10697
|
-
|
|
10698
|
-
T['io.flow.internal.v0.models.shopify_shipment_rate_response'] = PropTypes.exact({
|
|
10699
|
-
rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_available']).isRequired,
|
|
10700
|
-
unavailable_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_unavailable']).isRequired,
|
|
10701
|
-
});
|
|
10702
|
-
|
|
10703
|
-
T['io.flow.internal.v0.models.shopify_rate_customs_detail'] = PropTypes.exact({
|
|
10704
|
-
incoterm: T['io.flow.internal.v0.enums.shopify_incoterm'].isRequired,
|
|
10705
|
-
net_value: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10706
|
-
});
|
|
10707
|
-
|
|
10708
10731
|
T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_value'] = PropTypes.exact({
|
|
10709
10732
|
id: PropTypes.string.isRequired,
|
|
10710
10733
|
attribute_id: PropTypes.string.isRequired,
|
|
@@ -10992,6 +11015,7 @@ T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'] = PropType
|
|
|
10992
11015
|
T['io.flow.internal.v0.models.shopify_merchant_market_country'] = PropTypes.exact({
|
|
10993
11016
|
code: PropTypes.string.isRequired,
|
|
10994
11017
|
actively_managing: PropTypes.bool.isRequired,
|
|
11018
|
+
enabled: PropTypes.bool.isRequired,
|
|
10995
11019
|
});
|
|
10996
11020
|
|
|
10997
11021
|
T['io.flow.internal.v0.models.shopify_merchant_markets'] = PropTypes.exact({
|
|
@@ -11025,26 +11049,6 @@ T['io.flow.internal.v0.models.shopify_shipment_rate_package'] = PropTypes.exact(
|
|
|
11025
11049
|
measurements: T['io.flow.internal.v0.models.shopify_measurements'].isRequired,
|
|
11026
11050
|
});
|
|
11027
11051
|
|
|
11028
|
-
T['io.flow.internal.v0.models.shopify_shipment_rate_shipment'] = PropTypes.exact({
|
|
11029
|
-
carrier_id: PropTypes.string.isRequired,
|
|
11030
|
-
delivery_method_type: T['io.flow.internal.v0.enums.shopify_delivery_method_type'].isRequired,
|
|
11031
|
-
shipping_date_time: PropTypes.string.isRequired,
|
|
11032
|
-
'return': PropTypes.bool.isRequired,
|
|
11033
|
-
origin: T['io.flow.internal.v0.models.shopify_shipping_location'].isRequired,
|
|
11034
|
-
destination: T['io.flow.internal.v0.models.shopify_shipping_location'].isRequired,
|
|
11035
|
-
'package': T['io.flow.internal.v0.models.shopify_shipment_rate_package'].isRequired,
|
|
11036
|
-
pickup_point: T['io.flow.internal.v0.models.shopify_rate_pickup_point'],
|
|
11037
|
-
customs_detail: T['io.flow.internal.v0.models.shopify_rate_customs_detail'],
|
|
11038
|
-
});
|
|
11039
|
-
|
|
11040
|
-
T['io.flow.internal.v0.models.shopify_shipment_rate_request'] = PropTypes.exact({
|
|
11041
|
-
idempotency_key: PropTypes.string.isRequired,
|
|
11042
|
-
webhook_id: PropTypes.string.isRequired,
|
|
11043
|
-
test: PropTypes.bool.isRequired,
|
|
11044
|
-
shipper: T['io.flow.internal.v0.models.shopify_shipment_rate_shipper'].isRequired,
|
|
11045
|
-
shipment: T['io.flow.internal.v0.models.shopify_shipment_rate_shipment'].isRequired,
|
|
11046
|
-
});
|
|
11047
|
-
|
|
11048
11052
|
T['io.flow.shopify.markets.v0.enums.shopify_webhook_format'] = PropTypes.oneOf(['json', 'xml']);
|
|
11049
11053
|
|
|
11050
11054
|
T['io.flow.shopify.markets.v0.enums.shopify_webhook_topic'] = PropTypes.oneOf([
|
|
@@ -11408,6 +11412,68 @@ T['io.flow.internal.v0.models.shopify_dispute_upserted'] = PropTypes.exact({
|
|
|
11408
11412
|
dispute: T['io.flow.internal.v0.models.shopify_dispute'].isRequired,
|
|
11409
11413
|
});
|
|
11410
11414
|
|
|
11415
|
+
T['io.flow.internal.v0.models.shopify_money'] = PropTypes.exact({
|
|
11416
|
+
amount: PropTypes.number.isRequired,
|
|
11417
|
+
currency_code: PropTypes.string.isRequired,
|
|
11418
|
+
});
|
|
11419
|
+
|
|
11420
|
+
T['io.flow.internal.v0.models.shopify_rate_customs_detail'] = PropTypes.exact({
|
|
11421
|
+
incoterm: T['io.flow.internal.v0.enums.shopify_incoterm'].isRequired,
|
|
11422
|
+
net_value: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
11423
|
+
});
|
|
11424
|
+
|
|
11425
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_shipment'] = PropTypes.exact({
|
|
11426
|
+
carrier_id: PropTypes.string.isRequired,
|
|
11427
|
+
delivery_method_type: T['io.flow.internal.v0.enums.shopify_delivery_method_type'].isRequired,
|
|
11428
|
+
shipping_date_time: PropTypes.string.isRequired,
|
|
11429
|
+
'return': PropTypes.bool.isRequired,
|
|
11430
|
+
origin: T['io.flow.internal.v0.models.shopify_shipping_location'].isRequired,
|
|
11431
|
+
destination: T['io.flow.internal.v0.models.shopify_shipping_location'].isRequired,
|
|
11432
|
+
'package': T['io.flow.internal.v0.models.shopify_shipment_rate_package'].isRequired,
|
|
11433
|
+
pickup_point: T['io.flow.internal.v0.models.shopify_rate_pickup_point'],
|
|
11434
|
+
customs_detail: T['io.flow.internal.v0.models.shopify_rate_customs_detail'],
|
|
11435
|
+
});
|
|
11436
|
+
|
|
11437
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_request'] = PropTypes.exact({
|
|
11438
|
+
idempotency_key: PropTypes.string.isRequired,
|
|
11439
|
+
webhook_id: PropTypes.string.isRequired,
|
|
11440
|
+
test: PropTypes.bool.isRequired,
|
|
11441
|
+
shipper: T['io.flow.internal.v0.models.shopify_shipment_rate_shipper'].isRequired,
|
|
11442
|
+
shipment: T['io.flow.internal.v0.models.shopify_shipment_rate_shipment'].isRequired,
|
|
11443
|
+
});
|
|
11444
|
+
|
|
11445
|
+
T['io.flow.internal.v0.models.shopify_cost'] = PropTypes.exact({
|
|
11446
|
+
subtotal: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
11447
|
+
tax: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
11448
|
+
total: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
11449
|
+
});
|
|
11450
|
+
|
|
11451
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_option'] = PropTypes.exact({
|
|
11452
|
+
code: T['io.flow.internal.v0.enums.shopify_shipment_option_code'].isRequired,
|
|
11453
|
+
cost: T['io.flow.internal.v0.models.shopify_cost'].isRequired,
|
|
11454
|
+
optional: PropTypes.bool,
|
|
11455
|
+
});
|
|
11456
|
+
|
|
11457
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_charge'] = PropTypes.exact({
|
|
11458
|
+
code: T['io.flow.internal.v0.enums.shopify_charge_code'].isRequired,
|
|
11459
|
+
cost: T['io.flow.internal.v0.models.shopify_cost'].isRequired,
|
|
11460
|
+
});
|
|
11461
|
+
|
|
11462
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_available'] = PropTypes.exact({
|
|
11463
|
+
carrier_service_id: PropTypes.string.isRequired,
|
|
11464
|
+
total_charges: T['io.flow.internal.v0.models.shopify_cost'].isRequired,
|
|
11465
|
+
charges: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_charge']).isRequired,
|
|
11466
|
+
shipment_options: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_option']).isRequired,
|
|
11467
|
+
expected_delivery_date: PropTypes.string,
|
|
11468
|
+
guaranteed_delivery_date: PropTypes.string,
|
|
11469
|
+
incoterm: T['io.flow.internal.v0.enums.shopify_incoterm'],
|
|
11470
|
+
});
|
|
11471
|
+
|
|
11472
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_response'] = PropTypes.exact({
|
|
11473
|
+
rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_available']).isRequired,
|
|
11474
|
+
unavailable_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_unavailable']).isRequired,
|
|
11475
|
+
});
|
|
11476
|
+
|
|
11411
11477
|
T['io.flow.internal.v0.enums.shopify_callback_error_code'] = PropTypes.oneOf([
|
|
11412
11478
|
'UNKNOWN',
|
|
11413
11479
|
'SYSTEM_ERROR',
|
|
@@ -11438,51 +11504,6 @@ T['io.flow.internal.v0.models.shopify_callback_error'] = PropTypes.exact({
|
|
|
11438
11504
|
errors: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_callback_error_item']).isRequired,
|
|
11439
11505
|
});
|
|
11440
11506
|
|
|
11441
|
-
T['io.flow.shopify.markets.v0.models.shopify_adaptive_pricing_destination_coefficients'] = PropTypes.exact({
|
|
11442
|
-
country: PropTypes.string.isRequired,
|
|
11443
|
-
updated_at: PropTypes.string.isRequired,
|
|
11444
|
-
tax_and_duty_coefficient: PropTypes.string.isRequired,
|
|
11445
|
-
fees_coefficient: PropTypes.string.isRequired,
|
|
11446
|
-
merchant_subsidy_amount: PropTypes.string.isRequired,
|
|
11447
|
-
merchant_subsidy_currency: PropTypes.string.isRequired,
|
|
11448
|
-
adaptive_pricing_enabled: PropTypes.bool.isRequired,
|
|
11449
|
-
adaptive_shipping_enabled: PropTypes.bool.isRequired,
|
|
11450
|
-
});
|
|
11451
|
-
|
|
11452
|
-
T['io.flow.shopify.markets.internal.v0.models.shopify_adaptive_pricing_coefficients'] = PropTypes.exact({
|
|
11453
|
-
id: PropTypes.string.isRequired,
|
|
11454
|
-
organization_id: PropTypes.string.isRequired,
|
|
11455
|
-
|
|
11456
|
-
destination_coefficients: PropTypes.arrayOf(
|
|
11457
|
-
T['io.flow.shopify.markets.v0.models.shopify_adaptive_pricing_destination_coefficients'],
|
|
11458
|
-
).isRequired,
|
|
11459
|
-
});
|
|
11460
|
-
|
|
11461
|
-
T['io.flow.shopify.markets.internal.event.v0.models.shopify_adaptive_pricing_coefficients_upserted'] = PropTypes.exact({
|
|
11462
|
-
discriminator: PropTypes.oneOf(['shopify_adaptive_pricing_coefficients_upserted']).isRequired,
|
|
11463
|
-
event_id: PropTypes.string.isRequired,
|
|
11464
|
-
timestamp: PropTypes.string.isRequired,
|
|
11465
|
-
organization: PropTypes.string.isRequired,
|
|
11466
|
-
shopify_adaptive_pricing_coefficients: T['io.flow.shopify.markets.internal.v0.models.shopify_adaptive_pricing_coefficients'].isRequired,
|
|
11467
|
-
});
|
|
11468
|
-
|
|
11469
|
-
T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients'] = PropTypes.exact({
|
|
11470
|
-
id: PropTypes.string.isRequired,
|
|
11471
|
-
organization_id: PropTypes.string.isRequired,
|
|
11472
|
-
|
|
11473
|
-
destination_coefficients: PropTypes.arrayOf(
|
|
11474
|
-
T['io.flow.shopify.markets.v0.models.shopify_adaptive_pricing_destination_coefficients'],
|
|
11475
|
-
).isRequired,
|
|
11476
|
-
});
|
|
11477
|
-
|
|
11478
|
-
T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_upserted'] = PropTypes.exact({
|
|
11479
|
-
discriminator: PropTypes.oneOf(['shopify_adaptive_pricing_coefficients_upserted']).isRequired,
|
|
11480
|
-
event_id: PropTypes.string.isRequired,
|
|
11481
|
-
timestamp: PropTypes.string.isRequired,
|
|
11482
|
-
organization: PropTypes.string.isRequired,
|
|
11483
|
-
shopify_adaptive_pricing_coefficients: T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients'].isRequired,
|
|
11484
|
-
});
|
|
11485
|
-
|
|
11486
11507
|
T['io.flow.ratecard.v0.models.ratecard_carrier_summary'] = PropTypes.exact({
|
|
11487
11508
|
id: PropTypes.string.isRequired,
|
|
11488
11509
|
name: PropTypes.string.isRequired,
|
|
@@ -11510,6 +11531,7 @@ T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
|
11510
11531
|
T['io.flow.ratecard.v0.models.lane_summary'] = PropTypes.exact({
|
|
11511
11532
|
id: PropTypes.string.isRequired,
|
|
11512
11533
|
ratecard: T['io.flow.ratecard.v0.models.ratecard_summary'].isRequired,
|
|
11534
|
+
dim_factor: PropTypes.number.isRequired,
|
|
11513
11535
|
});
|
|
11514
11536
|
|
|
11515
11537
|
T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
@@ -11962,8 +11984,9 @@ T['io.flow.internal.v0.models.reporting_vat_remittance'] = PropTypes.exact({
|
|
|
11962
11984
|
rate: T['io.flow.internal.v0.models.reporting_vat_remittance_rate'].isRequired,
|
|
11963
11985
|
});
|
|
11964
11986
|
|
|
11965
|
-
T['io.flow.internal.v0.models.
|
|
11987
|
+
T['io.flow.internal.v0.models.reporting_fx_value'] = PropTypes.exact({
|
|
11966
11988
|
usd: PropTypes.number.isRequired,
|
|
11989
|
+
merchant: PropTypes.number,
|
|
11967
11990
|
});
|
|
11968
11991
|
|
|
11969
11992
|
T['io.flow.internal.v0.enums.reporting_fulfillment_is_virtual'] = PropTypes.oneOf(['all', 'mixed', 'none']);
|
|
@@ -11974,13 +11997,13 @@ T['io.flow.internal.v0.models.reporting_business'] = PropTypes.exact({
|
|
|
11974
11997
|
});
|
|
11975
11998
|
|
|
11976
11999
|
T['io.flow.internal.v0.models.reporting_fx'] = PropTypes.exact({
|
|
11977
|
-
shipping: T['io.flow.internal.v0.models.
|
|
11978
|
-
fees: T['io.flow.internal.v0.models.
|
|
11979
|
-
product: T['io.flow.internal.v0.models.
|
|
11980
|
-
tax: T['io.flow.internal.v0.models.
|
|
11981
|
-
duty: T['io.flow.internal.v0.models.
|
|
11982
|
-
tips: T['io.flow.internal.v0.models.
|
|
11983
|
-
total: T['io.flow.internal.v0.models.
|
|
12000
|
+
shipping: T['io.flow.internal.v0.models.reporting_fx_value'].isRequired,
|
|
12001
|
+
fees: T['io.flow.internal.v0.models.reporting_fx_value'].isRequired,
|
|
12002
|
+
product: T['io.flow.internal.v0.models.reporting_fx_value'].isRequired,
|
|
12003
|
+
tax: T['io.flow.internal.v0.models.reporting_fx_value'].isRequired,
|
|
12004
|
+
duty: T['io.flow.internal.v0.models.reporting_fx_value'].isRequired,
|
|
12005
|
+
tips: T['io.flow.internal.v0.models.reporting_fx_value'],
|
|
12006
|
+
total: T['io.flow.internal.v0.models.reporting_fx_value'].isRequired,
|
|
11984
12007
|
});
|
|
11985
12008
|
|
|
11986
12009
|
T['io.flow.internal.v0.models.reporting_fulfillment_has'] = PropTypes.exact({
|
|
@@ -12281,20 +12304,6 @@ T['io.flow.internal.v0.models.ratecard_rate_level_deleted'] = PropTypes.exact({
|
|
|
12281
12304
|
rate_level: T['io.flow.internal.v0.models.rate_level'].isRequired,
|
|
12282
12305
|
});
|
|
12283
12306
|
|
|
12284
|
-
T['io.flow.ratecard.v0.models.ratecard_lanes_import_request_data'] = PropTypes.exact({
|
|
12285
|
-
id: PropTypes.string.isRequired,
|
|
12286
|
-
source_url: PropTypes.string.isRequired,
|
|
12287
|
-
filename: PropTypes.string,
|
|
12288
|
-
});
|
|
12289
|
-
|
|
12290
|
-
T['io.flow.internal.v0.models.ratecard_lanes_import_request'] = PropTypes.exact({
|
|
12291
|
-
discriminator: PropTypes.oneOf(['ratecard_lanes_import_request']).isRequired,
|
|
12292
|
-
event_id: PropTypes.string.isRequired,
|
|
12293
|
-
timestamp: PropTypes.string.isRequired,
|
|
12294
|
-
organization: PropTypes.string.isRequired,
|
|
12295
|
-
data: T['io.flow.ratecard.v0.models.ratecard_lanes_import_request_data'].isRequired,
|
|
12296
|
-
});
|
|
12297
|
-
|
|
12298
12307
|
T['io.flow.ratecard.v0.models.fuel_surcharge_service_fee'] = PropTypes.exact({
|
|
12299
12308
|
discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee']).isRequired,
|
|
12300
12309
|
percent: PropTypes.number.isRequired,
|
|
@@ -12685,6 +12694,7 @@ T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exa
|
|
|
12685
12694
|
effective_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12686
12695
|
fingerprint: PropTypes.string.isRequired,
|
|
12687
12696
|
screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
|
|
12697
|
+
created_at: PropTypes.string,
|
|
12688
12698
|
});
|
|
12689
12699
|
|
|
12690
12700
|
T['io.flow.internal.v0.models.preonboarding_sellability_result_updated'] = PropTypes.exact({
|
|
@@ -14500,6 +14510,7 @@ T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
|
|
|
14500
14510
|
glbe_shipping_method_id: PropTypes.string,
|
|
14501
14511
|
glbe_proposition_name: PropTypes.string,
|
|
14502
14512
|
channel_revenue_share_percentage: PropTypes.number,
|
|
14513
|
+
channel_id: PropTypes.string,
|
|
14503
14514
|
data: T['io.flow.ratecard.v0.models.ratecard_data'],
|
|
14504
14515
|
});
|
|
14505
14516
|
|
|
@@ -14517,6 +14528,7 @@ T['io.flow.ratecard.v0.models.ratecard'] = PropTypes.exact({
|
|
|
14517
14528
|
glbe_shipping_method_id: PropTypes.string,
|
|
14518
14529
|
glbe_proposition_name: PropTypes.string,
|
|
14519
14530
|
channel_revenue_share_percentage: PropTypes.number,
|
|
14531
|
+
channel_id: PropTypes.string,
|
|
14520
14532
|
});
|
|
14521
14533
|
|
|
14522
14534
|
T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'] = PropTypes.oneOf([
|
|
@@ -14545,13 +14557,6 @@ T['io.flow.label.v0.enums.label_request_method'] = PropTypes.oneOf([
|
|
|
14545
14557
|
'legacy_shopify_graphql_server',
|
|
14546
14558
|
]);
|
|
14547
14559
|
|
|
14548
|
-
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
14549
|
-
discriminator: PropTypes.oneOf(['shipping_label']).isRequired,
|
|
14550
|
-
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
14551
|
-
carrier: T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'].isRequired,
|
|
14552
|
-
revenue_share_percentage: PropTypes.number,
|
|
14553
|
-
});
|
|
14554
|
-
|
|
14555
14560
|
T['io.flow.internal.v0.models.last_failure_summary'] = PropTypes.exact({
|
|
14556
14561
|
label_request_method: T['io.flow.label.v0.enums.label_request_method'].isRequired,
|
|
14557
14562
|
label_trigger_method: T['io.flow.label.v0.enums.label_trigger_method'].isRequired,
|
|
@@ -15600,12 +15605,15 @@ T['io.flow.internal.v0.models.reporting_merchant_transactions'] = PropTypes.exac
|
|
|
15600
15605
|
freight_breakdown: T['io.flow.internal.v0.models.reporting_merchant_freight'],
|
|
15601
15606
|
freight_guaranteed: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15602
15607
|
freight_non_guaranteed: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15608
|
+
freight_subsidy: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15603
15609
|
discount: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15604
15610
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15605
15611
|
tax_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15606
15612
|
duty_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15607
15613
|
tax_reversal: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15608
15614
|
duty_reversal: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15615
|
+
flat_rate_reversal: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15616
|
+
flat_rate_subsidy_reversal: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15609
15617
|
tax_reversal_for_lvg_order: PropTypes.bool,
|
|
15610
15618
|
duty_reversal_for_lvg_order: PropTypes.bool,
|
|
15611
15619
|
});
|
|
@@ -15649,6 +15657,10 @@ T['io.flow.internal.v0.models.reporting_payment'] = PropTypes.exact({
|
|
|
15649
15657
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15650
15658
|
});
|
|
15651
15659
|
|
|
15660
|
+
T['io.flow.internal.v0.models.reporting_freight_subsidy'] = PropTypes.exact({
|
|
15661
|
+
amount: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15662
|
+
});
|
|
15663
|
+
|
|
15652
15664
|
T['io.flow.internal.v0.models.reporting_freight_guaranteed'] = PropTypes.exact({
|
|
15653
15665
|
amount: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15654
15666
|
coefficient: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
@@ -15656,6 +15668,7 @@ T['io.flow.internal.v0.models.reporting_freight_guaranteed'] = PropTypes.exact({
|
|
|
15656
15668
|
|
|
15657
15669
|
T['io.flow.internal.v0.models.reporting_freight'] = PropTypes.exact({
|
|
15658
15670
|
guaranteed: T['io.flow.internal.v0.models.reporting_freight_guaranteed'],
|
|
15671
|
+
subsidy: T['io.flow.internal.v0.models.reporting_freight_subsidy'],
|
|
15659
15672
|
});
|
|
15660
15673
|
|
|
15661
15674
|
T['io.flow.internal.v0.models.reporting_fees'] = PropTypes.exact({
|
|
@@ -15711,10 +15724,13 @@ T['io.flow.internal.v0.models.merchant_transactions'] = PropTypes.exact({
|
|
|
15711
15724
|
surcharges: PropTypes.arrayOf(T['io.flow.internal.v0.models.merchant_surcharge']),
|
|
15712
15725
|
freight_guaranteed: PropTypes.number,
|
|
15713
15726
|
freight_non_guaranteed: PropTypes.number,
|
|
15727
|
+
freight_subsidy: PropTypes.number,
|
|
15714
15728
|
total: PropTypes.number.isRequired,
|
|
15715
15729
|
tax_refund: PropTypes.number,
|
|
15716
15730
|
tax_reversal: PropTypes.number,
|
|
15717
15731
|
duty_reversal: PropTypes.number,
|
|
15732
|
+
flat_rate_reversal: PropTypes.number,
|
|
15733
|
+
flat_rate_subsidy_reversal: PropTypes.number,
|
|
15718
15734
|
tax_reversal_for_lvg_order: PropTypes.bool,
|
|
15719
15735
|
duty_reversal_for_lvg_order: PropTypes.bool,
|
|
15720
15736
|
});
|
|
@@ -15941,8 +15957,8 @@ T['io.flow.internal.v0.models.fiserv_authentication'] = PropTypes.exact({
|
|
|
15941
15957
|
secret_key_reference: PropTypes.string.isRequired,
|
|
15942
15958
|
});
|
|
15943
15959
|
|
|
15944
|
-
T['io.flow.billing.bank.account.v0.models.
|
|
15945
|
-
discriminator: PropTypes.oneOf(['
|
|
15960
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'] = PropTypes.exact({
|
|
15961
|
+
discriminator: PropTypes.oneOf(['kor']).isRequired,
|
|
15946
15962
|
name: PropTypes.string.isRequired,
|
|
15947
15963
|
bank_account_number: PropTypes.string.isRequired,
|
|
15948
15964
|
bank_routing_number: PropTypes.string.isRequired,
|
|
@@ -15983,6 +15999,25 @@ T['io.flow.internal.v0.models.finance_bank_account_owner'] = PropTypes.exact({
|
|
|
15983
15999
|
name: PropTypes.string.isRequired,
|
|
15984
16000
|
});
|
|
15985
16001
|
|
|
16002
|
+
T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([
|
|
16003
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'],
|
|
16004
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_can'],
|
|
16005
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'],
|
|
16006
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
|
|
16007
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
|
|
16008
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'],
|
|
16009
|
+
]);
|
|
16010
|
+
|
|
16011
|
+
T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
|
|
16012
|
+
discriminator: PropTypes.oneOf(['info']).isRequired,
|
|
16013
|
+
info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
|
|
16014
|
+
});
|
|
16015
|
+
|
|
16016
|
+
T['io.flow.billing.v0.unions.bank_account_form'] = PropTypes.oneOfType([
|
|
16017
|
+
T['io.flow.billing.v0.models.bank_account_form_info'],
|
|
16018
|
+
T['io.flow.billing.v0.models.bank_account_form_simple'],
|
|
16019
|
+
]);
|
|
16020
|
+
|
|
15986
16021
|
T['io.flow.internal.v0.models.string_feature_rule_form'] = PropTypes.exact({
|
|
15987
16022
|
discriminator: PropTypes.oneOf(['string']).isRequired,
|
|
15988
16023
|
query: PropTypes.string.isRequired,
|
|
@@ -17103,20 +17138,6 @@ T['io.flow.internal.v0.models.delivered_duty_option_message'] = PropTypes.exact(
|
|
|
17103
17138
|
|
|
17104
17139
|
T['io.flow.common.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
|
|
17105
17140
|
|
|
17106
|
-
T['io.flow.ratecard.v0.models.ratecard_lane_import_form'] = PropTypes.exact({
|
|
17107
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
17108
|
-
service: PropTypes.string.isRequired,
|
|
17109
|
-
currency: PropTypes.string.isRequired,
|
|
17110
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
17111
|
-
origin: T['io.flow.common.v0.models.zone'].isRequired,
|
|
17112
|
-
destination: T['io.flow.common.v0.models.zone'].isRequired,
|
|
17113
|
-
shipment_window: T['io.flow.ratecard.v0.models.shipment_window'].isRequired,
|
|
17114
|
-
dim_factor: PropTypes.number.isRequired,
|
|
17115
|
-
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
17116
|
-
distance_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
17117
|
-
rates: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.ratecard_rate_form']).isRequired,
|
|
17118
|
-
});
|
|
17119
|
-
|
|
17120
17141
|
T['io.flow.experience.v0.models.order_builder_delivered_duty_form'] = PropTypes.exact({
|
|
17121
17142
|
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
17122
17143
|
});
|
|
@@ -17313,7 +17334,7 @@ T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
|
|
|
17313
17334
|
source_type: T['io.flow.internal.v0.enums.source_type_filter'],
|
|
17314
17335
|
order_payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
17315
17336
|
amount_range: T['io.flow.internal.v0.models.report_amount_range'],
|
|
17316
|
-
|
|
17337
|
+
account_currencies: PropTypes.arrayOf(T['io.flow.internal.v0.enums.account_currency_filter']),
|
|
17317
17338
|
channel_id: PropTypes.string,
|
|
17318
17339
|
});
|
|
17319
17340
|
|
|
@@ -17352,16 +17373,26 @@ T['io.flow.internal.v0.models.sales_payment_record'] = PropTypes.exact({
|
|
|
17352
17373
|
payment_is: T['io.flow.internal.v0.models.payment_is'].isRequired,
|
|
17353
17374
|
price_inclusivity: T['io.flow.internal.v0.models.price_inclusivity'],
|
|
17354
17375
|
destination_country: PropTypes.string.isRequired,
|
|
17376
|
+
destination_province: PropTypes.string,
|
|
17355
17377
|
fulfilled_at: PropTypes.string,
|
|
17356
17378
|
reconciliation: T['io.flow.internal.v0.models.reporting_reconciliation'],
|
|
17357
17379
|
is_eu_destination: PropTypes.bool,
|
|
17358
17380
|
debug_url: PropTypes.string,
|
|
17359
17381
|
});
|
|
17360
17382
|
|
|
17383
|
+
T['io.flow.internal.v0.models.sales_payment_record_upserted'] = PropTypes.exact({
|
|
17384
|
+
discriminator: PropTypes.oneOf(['sales_payment_record_upserted']).isRequired,
|
|
17385
|
+
event_id: PropTypes.string.isRequired,
|
|
17386
|
+
timestamp: PropTypes.string.isRequired,
|
|
17387
|
+
organization: PropTypes.string.isRequired,
|
|
17388
|
+
sales_payment_record: T['io.flow.internal.v0.models.sales_payment_record'].isRequired,
|
|
17389
|
+
});
|
|
17390
|
+
|
|
17361
17391
|
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
17362
17392
|
id: PropTypes.string,
|
|
17363
17393
|
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
17364
17394
|
weight_break: PropTypes.number,
|
|
17395
|
+
dim_factor: PropTypes.number,
|
|
17365
17396
|
});
|
|
17366
17397
|
|
|
17367
17398
|
T['io.flow.experience.v0.models.allocation_order_summary'] = PropTypes.exact({
|
|
@@ -17763,6 +17794,111 @@ T['io.flow.internal.v0.models.crypto_authentication'] = PropTypes.exact({
|
|
|
17763
17794
|
signature_secret_reference: PropTypes.string.isRequired,
|
|
17764
17795
|
});
|
|
17765
17796
|
|
|
17797
|
+
T['io.flow.internal.v0.enums.cpsc_file_type'] = PropTypes.oneOf(['GeRegistered', 'PreRegistered']);
|
|
17798
|
+
|
|
17799
|
+
T['io.flow.internal.v0.models.cpsc_queue_message'] = PropTypes.exact({
|
|
17800
|
+
filePath: PropTypes.string.isRequired,
|
|
17801
|
+
merchantId: PropTypes.string.isRequired,
|
|
17802
|
+
fileType: T['io.flow.internal.v0.enums.cpsc_file_type'].isRequired,
|
|
17803
|
+
});
|
|
17804
|
+
|
|
17805
|
+
T['io.flow.internal.v0.models.cpsc_queue_envelope'] = PropTypes.exact({
|
|
17806
|
+
messageType: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
17807
|
+
message: T['io.flow.internal.v0.models.cpsc_queue_message'].isRequired,
|
|
17808
|
+
});
|
|
17809
|
+
|
|
17810
|
+
T['io.flow.internal.v0.enums.cpsc_point_of_contact_type'] = PropTypes.oneOf(['Importer', 'Manufacturer', 'Laboratory', 'Broker', 'Other']);
|
|
17811
|
+
T['io.flow.internal.v0.enums.cpsc_lab_type'] = PropTypes.oneOf(['ITL', 'LAB', 'NOL']);
|
|
17812
|
+
T['io.flow.internal.v0.enums.cpsc_lot_number_assigned_by'] = PropTypes.oneOf(['Seller', 'Manufacturer']);
|
|
17813
|
+
T['io.flow.internal.v0.enums.cpsc_yes_no'] = PropTypes.oneOf(['Y', 'N']);
|
|
17814
|
+
T['io.flow.internal.v0.enums.cpsc_certificate_type'] = PropTypes.oneOf(['GCC', 'CPC']);
|
|
17815
|
+
|
|
17816
|
+
T['io.flow.internal.v0.enums.cpsc_primary_product_id_type'] = PropTypes.oneOf([
|
|
17817
|
+
'GTIN',
|
|
17818
|
+
'UPC',
|
|
17819
|
+
'SKU',
|
|
17820
|
+
'Model Number',
|
|
17821
|
+
'Serial Number',
|
|
17822
|
+
'Registered Number',
|
|
17823
|
+
'Alternate Identifier',
|
|
17824
|
+
]);
|
|
17825
|
+
|
|
17826
|
+
T['io.flow.internal.v0.models.cpsc_product_registration'] = PropTypes.exact({
|
|
17827
|
+
product_update: PropTypes.bool.isRequired,
|
|
17828
|
+
current_version_id: PropTypes.string,
|
|
17829
|
+
new_version_id: PropTypes.string.isRequired,
|
|
17830
|
+
primary_product_id: PropTypes.string.isRequired,
|
|
17831
|
+
primary_product_id_type: T['io.flow.internal.v0.enums.cpsc_primary_product_id_type'].isRequired,
|
|
17832
|
+
gtin: PropTypes.string,
|
|
17833
|
+
upc: PropTypes.string,
|
|
17834
|
+
sku: PropTypes.string,
|
|
17835
|
+
model_number: PropTypes.string,
|
|
17836
|
+
serial_number: PropTypes.string,
|
|
17837
|
+
registered_number: PropTypes.string,
|
|
17838
|
+
alternate_identifier: PropTypes.string,
|
|
17839
|
+
certificate_type: T['io.flow.internal.v0.enums.cpsc_certificate_type'].isRequired,
|
|
17840
|
+
product_name: PropTypes.string.isRequired,
|
|
17841
|
+
trade_brand_name: PropTypes.string,
|
|
17842
|
+
product_description: PropTypes.string,
|
|
17843
|
+
product_color: PropTypes.string,
|
|
17844
|
+
product_style: PropTypes.string,
|
|
17845
|
+
manufacturer_is_new: T['io.flow.internal.v0.enums.cpsc_yes_no'],
|
|
17846
|
+
manufacturer_gln: PropTypes.string,
|
|
17847
|
+
manufacturer_alternate_id: PropTypes.string,
|
|
17848
|
+
manufacturer_name: PropTypes.string,
|
|
17849
|
+
small_batch_manufacturer_cpsc_id: PropTypes.string,
|
|
17850
|
+
manufacturer_address_line_1: PropTypes.string,
|
|
17851
|
+
manufacturer_address_line_2: PropTypes.string,
|
|
17852
|
+
manufacturer_apt_suite_number: PropTypes.string,
|
|
17853
|
+
manufacturer_city: PropTypes.string,
|
|
17854
|
+
manufacturer_state_province: PropTypes.string,
|
|
17855
|
+
manufacturer_country: PropTypes.string,
|
|
17856
|
+
manufacturer_zip_postal_code: PropTypes.string,
|
|
17857
|
+
manufacturer_phone: PropTypes.string,
|
|
17858
|
+
manufacturer_email: PropTypes.string,
|
|
17859
|
+
manufacture_date: PropTypes.string.isRequired,
|
|
17860
|
+
production_start_date: PropTypes.string,
|
|
17861
|
+
production_end_date: PropTypes.string,
|
|
17862
|
+
lot_number: PropTypes.string,
|
|
17863
|
+
lot_number_assigned_by: T['io.flow.internal.v0.enums.cpsc_lot_number_assigned_by'],
|
|
17864
|
+
lab_1_type: T['io.flow.internal.v0.enums.cpsc_lab_type'].isRequired,
|
|
17865
|
+
lab_1_is_new: T['io.flow.internal.v0.enums.cpsc_yes_no'],
|
|
17866
|
+
lab_1_cpsc_id: PropTypes.string,
|
|
17867
|
+
lab_1_alternate_id: PropTypes.string,
|
|
17868
|
+
lab_1_gln: PropTypes.string,
|
|
17869
|
+
lab_1_name: PropTypes.string,
|
|
17870
|
+
lab_1_address_line_1: PropTypes.string,
|
|
17871
|
+
lab_1_address_line_2: PropTypes.string,
|
|
17872
|
+
lab_1_apt_suite_number: PropTypes.string,
|
|
17873
|
+
lab_1_city: PropTypes.string,
|
|
17874
|
+
lab_1_state_province: PropTypes.string,
|
|
17875
|
+
lab_1_country: PropTypes.string,
|
|
17876
|
+
lab_1_zip_postal_code: PropTypes.string,
|
|
17877
|
+
lab_1_phone: PropTypes.string,
|
|
17878
|
+
lab_1_email: PropTypes.string,
|
|
17879
|
+
lab_1_citation_codes: PropTypes.string.isRequired,
|
|
17880
|
+
lab_1_test_report_id: PropTypes.string,
|
|
17881
|
+
lab_1_test_url: PropTypes.string,
|
|
17882
|
+
lab_1_test_report_access_key: PropTypes.string,
|
|
17883
|
+
lab_1_is_component: PropTypes.bool,
|
|
17884
|
+
lab_1_component_description: PropTypes.string,
|
|
17885
|
+
last_test_date: PropTypes.string,
|
|
17886
|
+
poc_for_test_records: T['io.flow.internal.v0.enums.cpsc_point_of_contact_type'].isRequired,
|
|
17887
|
+
poc_is_new: T['io.flow.internal.v0.enums.cpsc_yes_no'],
|
|
17888
|
+
poc_alternate_id: PropTypes.string,
|
|
17889
|
+
poc_gln: PropTypes.string,
|
|
17890
|
+
poc_name: PropTypes.string,
|
|
17891
|
+
poc_address_line_1: PropTypes.string,
|
|
17892
|
+
poc_address_line_2: PropTypes.string,
|
|
17893
|
+
poc_apt_suite_number: PropTypes.string,
|
|
17894
|
+
poc_city: PropTypes.string,
|
|
17895
|
+
poc_state_province: PropTypes.string,
|
|
17896
|
+
poc_country: PropTypes.string,
|
|
17897
|
+
poc_zip_postal_code: PropTypes.string,
|
|
17898
|
+
poc_phone: PropTypes.string,
|
|
17899
|
+
poc_email: PropTypes.string,
|
|
17900
|
+
});
|
|
17901
|
+
|
|
17766
17902
|
T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'] = PropTypes.exact({
|
|
17767
17903
|
discriminator: PropTypes.oneOf(['weee']).isRequired,
|
|
17768
17904
|
label: PropTypes.string.isRequired,
|
|
@@ -18216,13 +18352,6 @@ T['io.flow.ratecard.v0.models.ratecard_version'] = PropTypes.exact({
|
|
|
18216
18352
|
ratecard: T['io.flow.ratecard.v0.models.ratecard'].isRequired,
|
|
18217
18353
|
});
|
|
18218
18354
|
|
|
18219
|
-
T['io.flow.ratecard.v0.models.ratecard_rate_version'] = PropTypes.exact({
|
|
18220
|
-
id: PropTypes.string.isRequired,
|
|
18221
|
-
timestamp: PropTypes.string.isRequired,
|
|
18222
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
18223
|
-
ratecard_rate: T['io.flow.ratecard.v0.models.ratecard_rate'].isRequired,
|
|
18224
|
-
});
|
|
18225
|
-
|
|
18226
18355
|
T['io.flow.ratecard.v0.models.dimension_estimate_version'] = PropTypes.exact({
|
|
18227
18356
|
id: PropTypes.string.isRequired,
|
|
18228
18357
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -19162,122 +19291,6 @@ T['io.flow.common.v0.models.repeat_hourly'] = PropTypes.exact({
|
|
|
19162
19291
|
interval: PropTypes.number.isRequired,
|
|
19163
19292
|
});
|
|
19164
19293
|
|
|
19165
|
-
T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
|
|
19166
|
-
id: PropTypes.string.isRequired,
|
|
19167
|
-
});
|
|
19168
|
-
|
|
19169
|
-
T['io.flow.channel.internal.v0.models.channel_shop_statistics'] = PropTypes.exact({
|
|
19170
|
-
id: PropTypes.string.isRequired,
|
|
19171
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19172
|
-
initial_catalog_synced_at: PropTypes.string,
|
|
19173
|
-
catalog_sync_duration: PropTypes.number,
|
|
19174
|
-
catalog_products_count: PropTypes.number,
|
|
19175
|
-
});
|
|
19176
|
-
|
|
19177
|
-
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_summary'] = PropTypes.exact({
|
|
19178
|
-
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
19179
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19180
|
-
});
|
|
19181
|
-
|
|
19182
|
-
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
19183
|
-
id: PropTypes.string.isRequired,
|
|
19184
|
-
shopify_shop_id: PropTypes.string,
|
|
19185
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19186
|
-
domain: PropTypes.string.isRequired,
|
|
19187
|
-
myshopify_domain: PropTypes.string.isRequired,
|
|
19188
|
-
organization_id: PropTypes.string.isRequired,
|
|
19189
|
-
shop: PropTypes.string.isRequired,
|
|
19190
|
-
created_at: PropTypes.string.isRequired,
|
|
19191
|
-
shared_secret_masked: PropTypes.string.isRequired,
|
|
19192
|
-
api_key_masked: PropTypes.string,
|
|
19193
|
-
api_password_masked: PropTypes.string,
|
|
19194
|
-
access_token_masked: PropTypes.string,
|
|
19195
|
-
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
19196
|
-
catalog_publication_owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'],
|
|
19197
|
-
fast_sellability_completed_at: PropTypes.string,
|
|
19198
|
-
});
|
|
19199
|
-
|
|
19200
|
-
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
19201
|
-
discriminator: PropTypes.oneOf(['shopify_markets_shop_upserted']).isRequired,
|
|
19202
|
-
event_id: PropTypes.string.isRequired,
|
|
19203
|
-
timestamp: PropTypes.string.isRequired,
|
|
19204
|
-
organization: PropTypes.string.isRequired,
|
|
19205
|
-
shopify_markets_shop: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop'].isRequired,
|
|
19206
|
-
});
|
|
19207
|
-
|
|
19208
|
-
T['io.flow.channel.v0.models.channel_currency'] = PropTypes.exact({
|
|
19209
|
-
id: PropTypes.string.isRequired,
|
|
19210
|
-
currency: PropTypes.string.isRequired,
|
|
19211
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19212
|
-
capabilities: PropTypes.arrayOf(T['io.flow.channel.v0.enums.channel_currency_capability']).isRequired,
|
|
19213
|
-
});
|
|
19214
|
-
|
|
19215
|
-
T['io.flow.internal.v0.models.shopify_markets_shop_summary'] = PropTypes.exact({
|
|
19216
|
-
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
19217
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19218
|
-
});
|
|
19219
|
-
|
|
19220
|
-
T['io.flow.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
19221
|
-
id: PropTypes.string.isRequired,
|
|
19222
|
-
shopify_shop_id: PropTypes.string,
|
|
19223
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19224
|
-
domain: PropTypes.string.isRequired,
|
|
19225
|
-
myshopify_domain: PropTypes.string.isRequired,
|
|
19226
|
-
organization_id: PropTypes.string.isRequired,
|
|
19227
|
-
shop: PropTypes.string.isRequired,
|
|
19228
|
-
created_at: PropTypes.string.isRequired,
|
|
19229
|
-
shared_secret_masked: PropTypes.string.isRequired,
|
|
19230
|
-
api_key_masked: PropTypes.string,
|
|
19231
|
-
api_password_masked: PropTypes.string,
|
|
19232
|
-
access_token_masked: PropTypes.string,
|
|
19233
|
-
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
19234
|
-
catalog_publication_owner: T['io.flow.internal.v0.enums.catalog_publication_owner'],
|
|
19235
|
-
fast_sellability_completed_at: PropTypes.string,
|
|
19236
|
-
});
|
|
19237
|
-
|
|
19238
|
-
T['io.flow.internal.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
19239
|
-
discriminator: PropTypes.oneOf(['shopify_markets_shop_upserted']).isRequired,
|
|
19240
|
-
event_id: PropTypes.string.isRequired,
|
|
19241
|
-
timestamp: PropTypes.string.isRequired,
|
|
19242
|
-
organization: PropTypes.string.isRequired,
|
|
19243
|
-
shopify_markets_shop: T['io.flow.internal.v0.models.shopify_markets_shop'].isRequired,
|
|
19244
|
-
});
|
|
19245
|
-
|
|
19246
|
-
T['io.flow.internal.v0.models.internal_channel_rate'] = PropTypes.exact({
|
|
19247
|
-
id: PropTypes.string.isRequired,
|
|
19248
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19249
|
-
base: PropTypes.string.isRequired,
|
|
19250
|
-
target: PropTypes.string.isRequired,
|
|
19251
|
-
effective_at: PropTypes.string.isRequired,
|
|
19252
|
-
spot_rate: PropTypes.number.isRequired,
|
|
19253
|
-
flow_margin: PropTypes.number.isRequired,
|
|
19254
|
-
flow_rate: PropTypes.number.isRequired,
|
|
19255
|
-
rate_lock: T['io.flow.common.v0.models.duration'].isRequired,
|
|
19256
|
-
});
|
|
19257
|
-
|
|
19258
|
-
T['io.flow.internal.v0.models.internal_channel_rate_upserted'] = PropTypes.exact({
|
|
19259
|
-
discriminator: PropTypes.oneOf(['internal_channel_rate_upserted']).isRequired,
|
|
19260
|
-
event_id: PropTypes.string.isRequired,
|
|
19261
|
-
timestamp: PropTypes.string.isRequired,
|
|
19262
|
-
rate: T['io.flow.internal.v0.models.internal_channel_rate'].isRequired,
|
|
19263
|
-
});
|
|
19264
|
-
|
|
19265
|
-
T['io.flow.internal.v0.models.channel_shop_statistics'] = PropTypes.exact({
|
|
19266
|
-
id: PropTypes.string.isRequired,
|
|
19267
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19268
|
-
initial_catalog_synced_at: PropTypes.string,
|
|
19269
|
-
catalog_sync_duration: PropTypes.number,
|
|
19270
|
-
catalog_products_count: PropTypes.number,
|
|
19271
|
-
});
|
|
19272
|
-
|
|
19273
|
-
T['io.flow.internal.v0.models.channel_shop_statistics_upserted'] = PropTypes.exact({
|
|
19274
|
-
discriminator: PropTypes.oneOf(['channel_shop_statistics_upserted']).isRequired,
|
|
19275
|
-
event_id: PropTypes.string.isRequired,
|
|
19276
|
-
timestamp: PropTypes.string.isRequired,
|
|
19277
|
-
organization: PropTypes.string.isRequired,
|
|
19278
|
-
channel_shop_statistics: T['io.flow.internal.v0.models.channel_shop_statistics'].isRequired,
|
|
19279
|
-
});
|
|
19280
|
-
|
|
19281
19294
|
T['io.flow.common.v0.models.dimensions'] = PropTypes.exact({
|
|
19282
19295
|
product: T['io.flow.common.v0.models.dimension'],
|
|
19283
19296
|
packaging: T['io.flow.common.v0.models.dimension'],
|
|
@@ -19352,38 +19365,6 @@ T['io.flow.common.v0.models.address'] = PropTypes.exact({
|
|
|
19352
19365
|
longitude: PropTypes.string,
|
|
19353
19366
|
});
|
|
19354
19367
|
|
|
19355
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'] = PropTypes.exact({
|
|
19356
|
-
discriminator: PropTypes.oneOf(['kor']).isRequired,
|
|
19357
|
-
name: PropTypes.string,
|
|
19358
|
-
address: T['io.flow.common.v0.models.address'],
|
|
19359
|
-
phone: PropTypes.string,
|
|
19360
|
-
email: PropTypes.string,
|
|
19361
|
-
bank_account_number: PropTypes.string.isRequired,
|
|
19362
|
-
bank_routing_number: PropTypes.string,
|
|
19363
|
-
bank_name: PropTypes.string,
|
|
19364
|
-
bank_address: T['io.flow.common.v0.models.address'],
|
|
19365
|
-
});
|
|
19366
|
-
|
|
19367
|
-
T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([
|
|
19368
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'],
|
|
19369
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_can'],
|
|
19370
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'],
|
|
19371
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
|
|
19372
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
|
|
19373
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'],
|
|
19374
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor_v2'],
|
|
19375
|
-
]);
|
|
19376
|
-
|
|
19377
|
-
T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
|
|
19378
|
-
discriminator: PropTypes.oneOf(['info']).isRequired,
|
|
19379
|
-
info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
|
|
19380
|
-
});
|
|
19381
|
-
|
|
19382
|
-
T['io.flow.billing.v0.unions.bank_account_form'] = PropTypes.oneOfType([
|
|
19383
|
-
T['io.flow.billing.v0.models.bank_account_form_info'],
|
|
19384
|
-
T['io.flow.billing.v0.models.bank_account_form_simple'],
|
|
19385
|
-
]);
|
|
19386
|
-
|
|
19387
19368
|
T['io.flow.merchant.onboarding.v0.models.operations_contact'] = PropTypes.exact({
|
|
19388
19369
|
company: PropTypes.string,
|
|
19389
19370
|
email: PropTypes.string,
|
|
@@ -19884,6 +19865,14 @@ T['io.flow.billing.v0.models.transaction_metadata_trueup'] = PropTypes.exact({
|
|
|
19884
19865
|
actual: T['io.flow.billing.v0.models.transaction_metadata_trueup_data'].isRequired,
|
|
19885
19866
|
});
|
|
19886
19867
|
|
|
19868
|
+
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
19869
|
+
discriminator: PropTypes.oneOf(['shipping_label']).isRequired,
|
|
19870
|
+
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
19871
|
+
carrier: T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'].isRequired,
|
|
19872
|
+
revenue_share_percentage: PropTypes.number,
|
|
19873
|
+
actual: T['io.flow.billing.v0.models.transaction_metadata_trueup_data'],
|
|
19874
|
+
});
|
|
19875
|
+
|
|
19887
19876
|
T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
19888
19877
|
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'],
|
|
19889
19878
|
T['io.flow.billing.v0.models.transaction_metadata_channel'],
|
|
@@ -20675,6 +20664,122 @@ T['io.flow.internal.v0.models.billing_organization_processing_rates_upserted'] =
|
|
|
20675
20664
|
rates: T['io.flow.internal.v0.models.billing_organization_processing_rates'].isRequired,
|
|
20676
20665
|
});
|
|
20677
20666
|
|
|
20667
|
+
T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
|
|
20668
|
+
id: PropTypes.string.isRequired,
|
|
20669
|
+
});
|
|
20670
|
+
|
|
20671
|
+
T['io.flow.channel.internal.v0.models.channel_shop_statistics'] = PropTypes.exact({
|
|
20672
|
+
id: PropTypes.string.isRequired,
|
|
20673
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
20674
|
+
initial_catalog_synced_at: PropTypes.string,
|
|
20675
|
+
catalog_sync_duration: PropTypes.number,
|
|
20676
|
+
catalog_products_count: PropTypes.number,
|
|
20677
|
+
});
|
|
20678
|
+
|
|
20679
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_summary'] = PropTypes.exact({
|
|
20680
|
+
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
20681
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
20682
|
+
});
|
|
20683
|
+
|
|
20684
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
20685
|
+
id: PropTypes.string.isRequired,
|
|
20686
|
+
shopify_shop_id: PropTypes.string,
|
|
20687
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
20688
|
+
domain: PropTypes.string.isRequired,
|
|
20689
|
+
myshopify_domain: PropTypes.string.isRequired,
|
|
20690
|
+
organization_id: PropTypes.string.isRequired,
|
|
20691
|
+
shop: PropTypes.string.isRequired,
|
|
20692
|
+
created_at: PropTypes.string.isRequired,
|
|
20693
|
+
shared_secret_masked: PropTypes.string.isRequired,
|
|
20694
|
+
api_key_masked: PropTypes.string,
|
|
20695
|
+
api_password_masked: PropTypes.string,
|
|
20696
|
+
access_token_masked: PropTypes.string,
|
|
20697
|
+
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
20698
|
+
catalog_publication_owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'],
|
|
20699
|
+
fast_sellability_completed_at: PropTypes.string,
|
|
20700
|
+
});
|
|
20701
|
+
|
|
20702
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
20703
|
+
discriminator: PropTypes.oneOf(['shopify_markets_shop_upserted']).isRequired,
|
|
20704
|
+
event_id: PropTypes.string.isRequired,
|
|
20705
|
+
timestamp: PropTypes.string.isRequired,
|
|
20706
|
+
organization: PropTypes.string.isRequired,
|
|
20707
|
+
shopify_markets_shop: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop'].isRequired,
|
|
20708
|
+
});
|
|
20709
|
+
|
|
20710
|
+
T['io.flow.channel.v0.models.channel_currency'] = PropTypes.exact({
|
|
20711
|
+
id: PropTypes.string.isRequired,
|
|
20712
|
+
currency: PropTypes.string.isRequired,
|
|
20713
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
20714
|
+
capabilities: PropTypes.arrayOf(T['io.flow.channel.v0.enums.channel_currency_capability']).isRequired,
|
|
20715
|
+
});
|
|
20716
|
+
|
|
20717
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_summary'] = PropTypes.exact({
|
|
20718
|
+
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
20719
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
20720
|
+
});
|
|
20721
|
+
|
|
20722
|
+
T['io.flow.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
20723
|
+
id: PropTypes.string.isRequired,
|
|
20724
|
+
shopify_shop_id: PropTypes.string,
|
|
20725
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
20726
|
+
domain: PropTypes.string.isRequired,
|
|
20727
|
+
myshopify_domain: PropTypes.string.isRequired,
|
|
20728
|
+
organization_id: PropTypes.string.isRequired,
|
|
20729
|
+
shop: PropTypes.string.isRequired,
|
|
20730
|
+
created_at: PropTypes.string.isRequired,
|
|
20731
|
+
shared_secret_masked: PropTypes.string.isRequired,
|
|
20732
|
+
api_key_masked: PropTypes.string,
|
|
20733
|
+
api_password_masked: PropTypes.string,
|
|
20734
|
+
access_token_masked: PropTypes.string,
|
|
20735
|
+
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
20736
|
+
catalog_publication_owner: T['io.flow.internal.v0.enums.catalog_publication_owner'],
|
|
20737
|
+
fast_sellability_completed_at: PropTypes.string,
|
|
20738
|
+
});
|
|
20739
|
+
|
|
20740
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
20741
|
+
discriminator: PropTypes.oneOf(['shopify_markets_shop_upserted']).isRequired,
|
|
20742
|
+
event_id: PropTypes.string.isRequired,
|
|
20743
|
+
timestamp: PropTypes.string.isRequired,
|
|
20744
|
+
organization: PropTypes.string.isRequired,
|
|
20745
|
+
shopify_markets_shop: T['io.flow.internal.v0.models.shopify_markets_shop'].isRequired,
|
|
20746
|
+
});
|
|
20747
|
+
|
|
20748
|
+
T['io.flow.internal.v0.models.internal_channel_rate'] = PropTypes.exact({
|
|
20749
|
+
id: PropTypes.string.isRequired,
|
|
20750
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
20751
|
+
base: PropTypes.string.isRequired,
|
|
20752
|
+
target: PropTypes.string.isRequired,
|
|
20753
|
+
effective_at: PropTypes.string.isRequired,
|
|
20754
|
+
spot_rate: PropTypes.number.isRequired,
|
|
20755
|
+
flow_margin: PropTypes.number.isRequired,
|
|
20756
|
+
flow_rate: PropTypes.number.isRequired,
|
|
20757
|
+
rate_lock: T['io.flow.common.v0.models.duration'].isRequired,
|
|
20758
|
+
});
|
|
20759
|
+
|
|
20760
|
+
T['io.flow.internal.v0.models.internal_channel_rate_upserted'] = PropTypes.exact({
|
|
20761
|
+
discriminator: PropTypes.oneOf(['internal_channel_rate_upserted']).isRequired,
|
|
20762
|
+
event_id: PropTypes.string.isRequired,
|
|
20763
|
+
timestamp: PropTypes.string.isRequired,
|
|
20764
|
+
rate: T['io.flow.internal.v0.models.internal_channel_rate'].isRequired,
|
|
20765
|
+
});
|
|
20766
|
+
|
|
20767
|
+
T['io.flow.internal.v0.models.channel_shop_statistics'] = PropTypes.exact({
|
|
20768
|
+
id: PropTypes.string.isRequired,
|
|
20769
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
20770
|
+
initial_catalog_synced_at: PropTypes.string,
|
|
20771
|
+
catalog_sync_duration: PropTypes.number,
|
|
20772
|
+
catalog_products_count: PropTypes.number,
|
|
20773
|
+
});
|
|
20774
|
+
|
|
20775
|
+
T['io.flow.internal.v0.models.channel_shop_statistics_upserted'] = PropTypes.exact({
|
|
20776
|
+
discriminator: PropTypes.oneOf(['channel_shop_statistics_upserted']).isRequired,
|
|
20777
|
+
event_id: PropTypes.string.isRequired,
|
|
20778
|
+
timestamp: PropTypes.string.isRequired,
|
|
20779
|
+
organization: PropTypes.string.isRequired,
|
|
20780
|
+
channel_shop_statistics: T['io.flow.internal.v0.models.channel_shop_statistics'].isRequired,
|
|
20781
|
+
});
|
|
20782
|
+
|
|
20678
20783
|
T['io.flow.internal.v0.models.billing_order_destination'] = PropTypes.exact({
|
|
20679
20784
|
city: PropTypes.string,
|
|
20680
20785
|
province: PropTypes.string,
|
|
@@ -20755,6 +20860,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
20755
20860
|
'b2b_fee_mor_tax',
|
|
20756
20861
|
'b2b_fee_shipping_tax',
|
|
20757
20862
|
'flat_rate_label',
|
|
20863
|
+
'flat_rate_label_subsidy',
|
|
20758
20864
|
]);
|
|
20759
20865
|
|
|
20760
20866
|
T['io.flow.internal.v0.models.debug_original_transaction_summary'] = PropTypes.exact({
|
|
@@ -20777,6 +20883,7 @@ T['io.flow.internal.v0.models.other_record_order_summary'] = PropTypes.exact({
|
|
|
20777
20883
|
organization: T['io.flow.internal.v0.models.other_record_organization_summary'].isRequired,
|
|
20778
20884
|
number: PropTypes.string.isRequired,
|
|
20779
20885
|
identifiers: T['io.flow.internal.v0.models.other_record_order_summary_identifiers'].isRequired,
|
|
20886
|
+
destination_province: PropTypes.string,
|
|
20780
20887
|
});
|
|
20781
20888
|
|
|
20782
20889
|
T['io.flow.internal.v0.models.other_record_metadata'] = PropTypes.exact({
|
|
@@ -20871,7 +20978,7 @@ T['io.flow.internal.v0.models.bank_payment_detail_attachment'] = PropTypes.exact
|
|
|
20871
20978
|
statement_transactions_url: PropTypes.string,
|
|
20872
20979
|
});
|
|
20873
20980
|
|
|
20874
|
-
T['io.flow.internal.v0.enums.bank_payment_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
|
|
20981
|
+
T['io.flow.internal.v0.enums.bank_payment_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed', 'paid']);
|
|
20875
20982
|
|
|
20876
20983
|
T['io.flow.internal.v0.models.bank_payment_status_single_form'] = PropTypes.exact({
|
|
20877
20984
|
payment_id: PropTypes.string.isRequired,
|
|
@@ -20888,6 +20995,11 @@ T['io.flow.internal.v0.models.bank_payment_status_form'] = PropTypes.exact({
|
|
|
20888
20995
|
failure_reason: T['io.flow.billing.v0.enums.payout_status_failure_code'],
|
|
20889
20996
|
});
|
|
20890
20997
|
|
|
20998
|
+
T['io.flow.billing.v0.models.payout_status_paid'] = PropTypes.exact({
|
|
20999
|
+
code: PropTypes.oneOf(['paid']).isRequired,
|
|
21000
|
+
timestamp: PropTypes.string.isRequired,
|
|
21001
|
+
});
|
|
21002
|
+
|
|
20891
21003
|
T['io.flow.billing.v0.models.payout_status_failed'] = PropTypes.exact({
|
|
20892
21004
|
code: PropTypes.oneOf(['failed']).isRequired,
|
|
20893
21005
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -20908,6 +21020,7 @@ T['io.flow.billing.v0.unions.payout_status'] = PropTypes.oneOfType([
|
|
|
20908
21020
|
T['io.flow.billing.v0.models.payout_status_scheduled'],
|
|
20909
21021
|
T['io.flow.billing.v0.models.payout_status_sent'],
|
|
20910
21022
|
T['io.flow.billing.v0.models.payout_status_failed'],
|
|
21023
|
+
T['io.flow.billing.v0.models.payout_status_paid'],
|
|
20911
21024
|
]);
|
|
20912
21025
|
|
|
20913
21026
|
T['io.flow.billing.v0.models.settlement_payout'] = PropTypes.exact({
|
|
@@ -21028,7 +21141,7 @@ T['io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata'] = PropType
|
|
|
21028
21141
|
trigger_type: T['io.flow.internal.v0.enums.b2b_fee_shipping_tax_trigger_type'].isRequired,
|
|
21029
21142
|
});
|
|
21030
21143
|
|
|
21031
|
-
T['io.flow.internal.v0.enums.b2b_fee_mor_tax_trigger_type'] = PropTypes.oneOf(['capture', 'order']);
|
|
21144
|
+
T['io.flow.internal.v0.enums.b2b_fee_mor_tax_trigger_type'] = PropTypes.oneOf(['capture', 'order', 'settings']);
|
|
21032
21145
|
|
|
21033
21146
|
T['io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata'] = PropTypes.exact({
|
|
21034
21147
|
discriminator: PropTypes.oneOf(['b2b_fee_mor_tax_trigger_metadata']).isRequired,
|
|
@@ -23042,6 +23155,26 @@ T['io.flow.internal.v0.models.debug_order_transaction_details'] = PropTypes.exac
|
|
|
23042
23155
|
payout_details: T['io.flow.billing.v0.unions.payout_status'],
|
|
23043
23156
|
});
|
|
23044
23157
|
|
|
23158
|
+
T['io.flow.internal.v0.enums.mail_class'] = PropTypes.oneOf(['standard', 'express']);
|
|
23159
|
+
T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'] = PropTypes.oneOf(['confirmed', 'voided']);
|
|
23160
|
+
|
|
23161
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'] = PropTypes.exact({
|
|
23162
|
+
id: PropTypes.string.isRequired,
|
|
23163
|
+
organization_id: PropTypes.string.isRequired,
|
|
23164
|
+
order_number: PropTypes.string.isRequired,
|
|
23165
|
+
guarantee_state: T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'].isRequired,
|
|
23166
|
+
label_id: PropTypes.string,
|
|
23167
|
+
notification_id: PropTypes.string,
|
|
23168
|
+
});
|
|
23169
|
+
|
|
23170
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'] = PropTypes.exact({
|
|
23171
|
+
discriminator: PropTypes.oneOf(['adaptive_shipping_order_guarantee_upserted']).isRequired,
|
|
23172
|
+
event_id: PropTypes.string.isRequired,
|
|
23173
|
+
timestamp: PropTypes.string.isRequired,
|
|
23174
|
+
organization: PropTypes.string.isRequired,
|
|
23175
|
+
adaptive_shipping_order_guarantee: T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'].isRequired,
|
|
23176
|
+
});
|
|
23177
|
+
|
|
23045
23178
|
T['io.flow.common.v0.models.money'] = PropTypes.exact({
|
|
23046
23179
|
amount: PropTypes.number.isRequired,
|
|
23047
23180
|
currency: PropTypes.string.isRequired,
|
|
@@ -23055,6 +23188,7 @@ T['io.flow.sellability.v0.models.sellability_screening_form'] = PropTypes.exact(
|
|
|
23055
23188
|
price: T['io.flow.common.v0.models.money'].isRequired,
|
|
23056
23189
|
description: PropTypes.string.isRequired,
|
|
23057
23190
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'].isRequired,
|
|
23191
|
+
inferred_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
23058
23192
|
mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'].isRequired,
|
|
23059
23193
|
catalog_size: PropTypes.number,
|
|
23060
23194
|
relative_ranking: PropTypes.number,
|
|
@@ -23509,7 +23643,7 @@ T['io.flow.ratecard.v0.unions.service_fee'] = PropTypes.oneOfType([
|
|
|
23509
23643
|
T['io.flow.ratecard.v0.models.eei_filing_service_fee'],
|
|
23510
23644
|
]);
|
|
23511
23645
|
|
|
23512
|
-
T['io.flow.internal.v0.models.
|
|
23646
|
+
T['io.flow.internal.v0.models.service_fees_form'] = PropTypes.exact({
|
|
23513
23647
|
service_fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
|
|
23514
23648
|
});
|
|
23515
23649
|
|
|
@@ -24055,6 +24189,7 @@ T['io.flow.internal.v0.models.shipment_cost_summary'] = PropTypes.exact({
|
|
|
24055
24189
|
rate_level_key: PropTypes.string,
|
|
24056
24190
|
cost_estimate_source: T['io.flow.label.v0.enums.cost_estimate_source'].isRequired,
|
|
24057
24191
|
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
24192
|
+
dim_factor: PropTypes.number.isRequired,
|
|
24058
24193
|
});
|
|
24059
24194
|
|
|
24060
24195
|
T['io.flow.internal.v0.models.restriction_organization'] = PropTypes.exact({
|
|
@@ -24896,8 +25031,6 @@ T['io.flow.internal.v0.unions.calculator_stamp'] = PropTypes.oneOfType([
|
|
|
24896
25031
|
T['io.flow.internal.v0.models.calculation_step'],
|
|
24897
25032
|
]);
|
|
24898
25033
|
|
|
24899
|
-
T['io.flow.internal.v0.enums.mail_class'] = PropTypes.oneOf(['standard', 'express']);
|
|
24900
|
-
|
|
24901
25034
|
T['io.flow.internal.v0.models.flat_rate'] = PropTypes.exact({
|
|
24902
25035
|
mail_class: T['io.flow.internal.v0.enums.mail_class'].isRequired,
|
|
24903
25036
|
carrier_id: PropTypes.string.isRequired,
|
|
@@ -24908,6 +25041,24 @@ T['io.flow.internal.v0.models.flat_rate'] = PropTypes.exact({
|
|
|
24908
25041
|
max_delivery_days: PropTypes.number,
|
|
24909
25042
|
});
|
|
24910
25043
|
|
|
25044
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_published_output'] = PropTypes.exact({
|
|
25045
|
+
id: PropTypes.string.isRequired,
|
|
25046
|
+
organization_id: PropTypes.string.isRequired,
|
|
25047
|
+
channel_id: PropTypes.string.isRequired,
|
|
25048
|
+
destination_country: PropTypes.string.isRequired,
|
|
25049
|
+
coefficient: PropTypes.number.isRequired,
|
|
25050
|
+
flat_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.flat_rate']).isRequired,
|
|
25051
|
+
inputs_updated_at: PropTypes.number.isRequired,
|
|
25052
|
+
});
|
|
25053
|
+
|
|
25054
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'] = PropTypes.exact({
|
|
25055
|
+
discriminator: PropTypes.oneOf(['guaranteed_shipping_published_output_upserted']).isRequired,
|
|
25056
|
+
event_id: PropTypes.string.isRequired,
|
|
25057
|
+
timestamp: PropTypes.string.isRequired,
|
|
25058
|
+
organization: PropTypes.string.isRequired,
|
|
25059
|
+
guaranteed_shipping_published_output: T['io.flow.internal.v0.models.guaranteed_shipping_published_output'].isRequired,
|
|
25060
|
+
});
|
|
25061
|
+
|
|
24911
25062
|
T['io.flow.internal.v0.models.adaptive_shipping_rate'] = PropTypes.exact({
|
|
24912
25063
|
id: PropTypes.string.isRequired,
|
|
24913
25064
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -24927,38 +25078,47 @@ T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'] = PropTypes.exac
|
|
|
24927
25078
|
adaptive_shipping_rate: T['io.flow.internal.v0.models.adaptive_shipping_rate'].isRequired,
|
|
24928
25079
|
});
|
|
24929
25080
|
|
|
24930
|
-
T['io.flow.internal.v0.
|
|
25081
|
+
T['io.flow.internal.v0.models.adaptive_pricing_destination_update'] = PropTypes.exact({
|
|
25082
|
+
country: PropTypes.string.isRequired,
|
|
25083
|
+
updated_at: PropTypes.string.isRequired,
|
|
25084
|
+
tax_and_duty_coefficient: PropTypes.number.isRequired,
|
|
25085
|
+
fees_coefficient: PropTypes.number.isRequired,
|
|
25086
|
+
merchant_subsidy: T['io.flow.common.v0.models.money'].isRequired,
|
|
25087
|
+
});
|
|
24931
25088
|
|
|
24932
|
-
T['io.flow.internal.v0.models.
|
|
24933
|
-
|
|
25089
|
+
T['io.flow.internal.v0.models.adaptive_pricing_update'] = PropTypes.exact({
|
|
25090
|
+
channel_id: PropTypes.string.isRequired,
|
|
24934
25091
|
organization_id: PropTypes.string.isRequired,
|
|
24935
|
-
|
|
24936
|
-
guarantee_state: T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'].isRequired,
|
|
24937
|
-
label_id: PropTypes.string,
|
|
24938
|
-
notification_id: PropTypes.string,
|
|
25092
|
+
destination_updates: PropTypes.arrayOf(T['io.flow.internal.v0.models.adaptive_pricing_destination_update']).isRequired,
|
|
24939
25093
|
});
|
|
24940
25094
|
|
|
24941
|
-
T['io.flow.internal.v0.models.
|
|
24942
|
-
discriminator: PropTypes.oneOf(['
|
|
25095
|
+
T['io.flow.internal.v0.models.adaptive_pricing_update_upserted'] = PropTypes.exact({
|
|
25096
|
+
discriminator: PropTypes.oneOf(['adaptive_pricing_update_upserted']).isRequired,
|
|
24943
25097
|
event_id: PropTypes.string.isRequired,
|
|
24944
25098
|
timestamp: PropTypes.string.isRequired,
|
|
24945
25099
|
organization: PropTypes.string.isRequired,
|
|
24946
|
-
|
|
25100
|
+
channel_id: PropTypes.string.isRequired,
|
|
25101
|
+
adaptive_pricing_update: T['io.flow.internal.v0.models.adaptive_pricing_update'].isRequired,
|
|
24947
25102
|
});
|
|
24948
25103
|
|
|
24949
|
-
T['io.flow.internal.v0.models.
|
|
24950
|
-
|
|
24951
|
-
|
|
25104
|
+
T['io.flow.internal.v0.models.adaptive_pricing_coefficient'] = PropTypes.exact({
|
|
25105
|
+
coefficients_updated_at: PropTypes.number.isRequired,
|
|
25106
|
+
channel_id: PropTypes.string.isRequired,
|
|
25107
|
+
organization_id: PropTypes.string.isRequired,
|
|
25108
|
+
destination_country: PropTypes.string.isRequired,
|
|
24952
25109
|
tax_and_duty_coefficient: PropTypes.number.isRequired,
|
|
24953
25110
|
fees_coefficient: PropTypes.number.isRequired,
|
|
24954
|
-
|
|
24955
|
-
|
|
25111
|
+
merchant_subsidy: T['io.flow.common.v0.models.money'].isRequired,
|
|
25112
|
+
created_at: PropTypes.number.isRequired,
|
|
24956
25113
|
});
|
|
24957
25114
|
|
|
24958
|
-
T['io.flow.internal.v0.models.
|
|
25115
|
+
T['io.flow.internal.v0.models.adaptive_pricing_coefficient_upserted'] = PropTypes.exact({
|
|
25116
|
+
discriminator: PropTypes.oneOf(['adaptive_pricing_coefficient_upserted']).isRequired,
|
|
25117
|
+
event_id: PropTypes.string.isRequired,
|
|
25118
|
+
timestamp: PropTypes.string.isRequired,
|
|
25119
|
+
organization: PropTypes.string.isRequired,
|
|
24959
25120
|
channel_id: PropTypes.string.isRequired,
|
|
24960
|
-
|
|
24961
|
-
destination_updates: PropTypes.arrayOf(T['io.flow.internal.v0.models.adaptive_pricing_destination_update']).isRequired,
|
|
25121
|
+
adaptive_pricing_coefficient: T['io.flow.internal.v0.models.adaptive_pricing_coefficient'].isRequired,
|
|
24962
25122
|
});
|
|
24963
25123
|
|
|
24964
25124
|
T['io.flow.internal.v0.enums.item_quantity_action'] = PropTypes.oneOf(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']);
|
|
@@ -25091,6 +25251,7 @@ T['io.flow.internal.v0.models.account_origin'] = PropTypes.exact({
|
|
|
25091
25251
|
T['io.flow.common.v0.models.organization_reference'] = PropTypes.exact({
|
|
25092
25252
|
discriminator: PropTypes.oneOf(['organization_reference']).isRequired,
|
|
25093
25253
|
id: PropTypes.string.isRequired,
|
|
25254
|
+
channel: T['io.flow.common.v0.models.channel_reference'],
|
|
25094
25255
|
});
|
|
25095
25256
|
|
|
25096
25257
|
T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
|
|
@@ -25161,8 +25322,6 @@ T['io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_eve
|
|
|
25161
25322
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_deleted'],
|
|
25162
25323
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_upserted'],
|
|
25163
25324
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_deleted'],
|
|
25164
|
-
T['io.flow.shopify.markets.internal.event.v0.models.shopify_adaptive_pricing_coefficients_upserted'],
|
|
25165
|
-
T['io.flow.shopify.markets.internal.event.v0.models.shopify_adaptive_pricing_coefficients_deleted'],
|
|
25166
25325
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_merchant_markets_upserted'],
|
|
25167
25326
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_merchant_markets_deleted'],
|
|
25168
25327
|
]);
|
|
@@ -25256,7 +25415,7 @@ T['io.flow.internal.v0.models.ratecard_internal_summary'] = PropTypes.exact({
|
|
|
25256
25415
|
number: PropTypes.string.isRequired,
|
|
25257
25416
|
});
|
|
25258
25417
|
|
|
25259
|
-
T['io.flow.internal.v0.models.
|
|
25418
|
+
T['io.flow.internal.v0.models.service_fees'] = PropTypes.exact({
|
|
25260
25419
|
ratecard: T['io.flow.internal.v0.models.ratecard_internal_summary'].isRequired,
|
|
25261
25420
|
service_fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
|
|
25262
25421
|
});
|
|
@@ -25292,6 +25451,7 @@ T['io.flow.common.v0.models.organization'] = PropTypes.exact({
|
|
|
25292
25451
|
created_at: PropTypes.string,
|
|
25293
25452
|
status: T['io.flow.common.v0.enums.organization_status'],
|
|
25294
25453
|
type: T['io.flow.common.v0.enums.organization_type'],
|
|
25454
|
+
channel: T['io.flow.common.v0.models.channel_reference'],
|
|
25295
25455
|
});
|
|
25296
25456
|
|
|
25297
25457
|
T['io.flow.organization.v0.models.organization_version'] = PropTypes.exact({
|
|
@@ -26030,6 +26190,36 @@ T['io.flow.consumer.invoice.v0.models.b2b_invoice'] = PropTypes.exact({
|
|
|
26030
26190
|
b2b_invoice_type: T['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'].isRequired,
|
|
26031
26191
|
});
|
|
26032
26192
|
|
|
26193
|
+
T['io.flow.consumer.invoice.v0.models.b2b_debit_note'] = PropTypes.exact({
|
|
26194
|
+
id: PropTypes.string.isRequired,
|
|
26195
|
+
number: PropTypes.string.isRequired,
|
|
26196
|
+
buyer: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
26197
|
+
seller: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
26198
|
+
status: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'].isRequired,
|
|
26199
|
+
date: PropTypes.string.isRequired,
|
|
26200
|
+
key: PropTypes.string.isRequired,
|
|
26201
|
+
order: T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'].isRequired,
|
|
26202
|
+
center: T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'],
|
|
26203
|
+
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
26204
|
+
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
26205
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
26206
|
+
});
|
|
26207
|
+
|
|
26208
|
+
T['io.flow.consumer.invoice.v0.models.b2b_credit_note'] = PropTypes.exact({
|
|
26209
|
+
id: PropTypes.string.isRequired,
|
|
26210
|
+
number: PropTypes.string.isRequired,
|
|
26211
|
+
status: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'].isRequired,
|
|
26212
|
+
date: PropTypes.string.isRequired,
|
|
26213
|
+
key: PropTypes.string.isRequired,
|
|
26214
|
+
debit_note: T['io.flow.consumer.invoice.v0.models.b2b_debit_note_reference'].isRequired,
|
|
26215
|
+
order: T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'],
|
|
26216
|
+
center: T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'],
|
|
26217
|
+
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
26218
|
+
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
26219
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
26220
|
+
voids_b2b_debit_note: PropTypes.bool,
|
|
26221
|
+
});
|
|
26222
|
+
|
|
26033
26223
|
T['io.flow.consumer.invoice.v0.models.b2b_credit_memo'] = PropTypes.exact({
|
|
26034
26224
|
id: PropTypes.string.isRequired,
|
|
26035
26225
|
number: PropTypes.string.isRequired,
|
|
@@ -26404,7 +26594,6 @@ T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
|
26404
26594
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
26405
26595
|
taxonomy_data: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_data']),
|
|
26406
26596
|
channel: PropTypes.string,
|
|
26407
|
-
is_deleted: PropTypes.bool,
|
|
26408
26597
|
});
|
|
26409
26598
|
|
|
26410
26599
|
T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
@@ -26429,7 +26618,6 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
26429
26618
|
created_at: PropTypes.string.isRequired,
|
|
26430
26619
|
updated_at: PropTypes.string.isRequired,
|
|
26431
26620
|
channel: PropTypes.string,
|
|
26432
|
-
is_deleted: PropTypes.bool,
|
|
26433
26621
|
});
|
|
26434
26622
|
|
|
26435
26623
|
T['io.flow.internal.v0.models.raveena_item_form'] = PropTypes.exact({
|
|
@@ -26511,6 +26699,13 @@ T['io.flow.internal.v0.models.mahesh_item'] = PropTypes.exact({
|
|
|
26511
26699
|
added_on: PropTypes.string.isRequired,
|
|
26512
26700
|
});
|
|
26513
26701
|
|
|
26702
|
+
T['io.flow.internal.v0.models.mahesh_item_upserted'] = PropTypes.exact({
|
|
26703
|
+
discriminator: PropTypes.oneOf(['mahesh_item_upserted']).isRequired,
|
|
26704
|
+
event_id: PropTypes.string.isRequired,
|
|
26705
|
+
timestamp: PropTypes.string.isRequired,
|
|
26706
|
+
item: T['io.flow.internal.v0.models.mahesh_item'].isRequired,
|
|
26707
|
+
});
|
|
26708
|
+
|
|
26514
26709
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
26515
26710
|
id: PropTypes.string.isRequired,
|
|
26516
26711
|
description: PropTypes.string.isRequired,
|
|
@@ -26612,6 +26807,7 @@ T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
|
|
|
26612
26807
|
transfer: T['io.flow.internal.v0.models.fee'],
|
|
26613
26808
|
negative_balance: T['io.flow.internal.v0.models.fee'],
|
|
26614
26809
|
sp: T['io.flow.internal.v0.models.fee'],
|
|
26810
|
+
revenue_share: T['io.flow.internal.v0.models.fee'],
|
|
26615
26811
|
});
|
|
26616
26812
|
|
|
26617
26813
|
T['io.flow.internal.v0.models.next_billing_statement'] = PropTypes.exact({
|
|
@@ -26679,6 +26875,7 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
26679
26875
|
b2b_fee_mor_tax: T['io.flow.common.v0.models.price'].isRequired,
|
|
26680
26876
|
b2b_fee_shipping_tax: T['io.flow.common.v0.models.price'].isRequired,
|
|
26681
26877
|
flat_rate_label: T['io.flow.common.v0.models.price'].isRequired,
|
|
26878
|
+
flat_rate_label_subsidy: T['io.flow.common.v0.models.price'].isRequired,
|
|
26682
26879
|
});
|
|
26683
26880
|
|
|
26684
26881
|
T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact({
|
|
@@ -26730,6 +26927,8 @@ T['io.flow.internal.v0.models.bank_payment'] = PropTypes.exact({
|
|
|
26730
26927
|
expected_delivery_by: PropTypes.string,
|
|
26731
26928
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
26732
26929
|
total: T['io.flow.common.v0.models.price'].isRequired,
|
|
26930
|
+
created_at: PropTypes.string,
|
|
26931
|
+
failed_on: PropTypes.string,
|
|
26733
26932
|
});
|
|
26734
26933
|
|
|
26735
26934
|
T['io.flow.internal.v0.models.bank_payment_upserted_v2'] = PropTypes.exact({
|
|
@@ -27903,6 +28102,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
27903
28102
|
'b2b_fee_mor_tax',
|
|
27904
28103
|
'b2b_fee_shipping_tax',
|
|
27905
28104
|
'flat_rate_label',
|
|
28105
|
+
'flat_rate_label_subsidy',
|
|
27906
28106
|
]);
|
|
27907
28107
|
|
|
27908
28108
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -28178,6 +28378,7 @@ T['io.flow.internal.v0.models.main_transaction'] = PropTypes.exact({
|
|
|
28178
28378
|
channel_statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
28179
28379
|
created_at: PropTypes.string.isRequired,
|
|
28180
28380
|
original_at: PropTypes.string,
|
|
28381
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
28181
28382
|
});
|
|
28182
28383
|
|
|
28183
28384
|
T['io.flow.internal.v0.models.main_transaction_upserted_v2'] = PropTypes.exact({
|
|
@@ -28624,6 +28825,10 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
|
|
|
28624
28825
|
});
|
|
28625
28826
|
|
|
28626
28827
|
T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
28828
|
+
T['io.flow.internal.v0.models.adaptive_pricing_coefficient_upserted'],
|
|
28829
|
+
T['io.flow.internal.v0.models.adaptive_pricing_coefficient_deleted'],
|
|
28830
|
+
T['io.flow.internal.v0.models.adaptive_pricing_update_upserted'],
|
|
28831
|
+
T['io.flow.internal.v0.models.adaptive_pricing_update_deleted'],
|
|
28627
28832
|
T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'],
|
|
28628
28833
|
T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'],
|
|
28629
28834
|
T['io.flow.internal.v0.models.adyen_authorization_deleted'],
|
|
@@ -28690,6 +28895,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28690
28895
|
T['io.flow.internal.v0.models.revenue_record_deleted'],
|
|
28691
28896
|
T['io.flow.internal.v0.models.other_record_upserted'],
|
|
28692
28897
|
T['io.flow.internal.v0.models.other_record_deleted'],
|
|
28898
|
+
T['io.flow.internal.v0.models.sales_payment_record_upserted'],
|
|
28899
|
+
T['io.flow.internal.v0.models.sales_payment_record_deleted'],
|
|
28693
28900
|
T['io.flow.internal.v0.models.calculator_organization_settings_upserted'],
|
|
28694
28901
|
T['io.flow.internal.v0.models.calculator_organization_settings_deleted'],
|
|
28695
28902
|
T['io.flow.internal.v0.models.carrier_account_upserted_v2'],
|
|
@@ -28796,6 +29003,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28796
29003
|
T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'],
|
|
28797
29004
|
T['io.flow.internal.v0.models.quote_upserted'],
|
|
28798
29005
|
T['io.flow.internal.v0.models.quote_deleted'],
|
|
29006
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'],
|
|
29007
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_published_output_deleted'],
|
|
28799
29008
|
T['io.flow.internal.v0.models.all_items_export'],
|
|
28800
29009
|
T['io.flow.internal.v0.models.harmonized_items_hs6_export'],
|
|
28801
29010
|
T['io.flow.internal.v0.models.unharmonized_items_export'],
|
|
@@ -28900,7 +29109,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28900
29109
|
T['io.flow.internal.v0.models.order_rates_published_v3'],
|
|
28901
29110
|
T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'],
|
|
28902
29111
|
T['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'],
|
|
28903
|
-
T['io.flow.internal.v0.models.ratecard_lanes_import_request'],
|
|
28904
29112
|
T['io.flow.internal.v0.models.ratecard_service_fee_upserted'],
|
|
28905
29113
|
T['io.flow.internal.v0.models.ratecard_service_fee_deleted'],
|
|
28906
29114
|
T['io.flow.internal.v0.models.ratecard_rate_level_upserted'],
|
|
@@ -28962,8 +29170,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28962
29170
|
T['io.flow.internal.v0.models.shopify_order_transaction_deleted'],
|
|
28963
29171
|
T['io.flow.internal.v0.models.shopify_test_order_upserted'],
|
|
28964
29172
|
T['io.flow.internal.v0.models.shopify_test_order_deleted'],
|
|
28965
|
-
T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_upserted'],
|
|
28966
|
-
T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_deleted'],
|
|
28967
29173
|
T['io.flow.internal.v0.models.shopify_merchant_markets_upserted'],
|
|
28968
29174
|
T['io.flow.internal.v0.models.shopify_merchant_markets_deleted'],
|
|
28969
29175
|
T['io.flow.internal.v0.models.shopify_product_create_upserted'],
|
|
@@ -29012,6 +29218,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29012
29218
|
T['io.flow.internal.v0.models.bojana_item_deleted'],
|
|
29013
29219
|
T['io.flow.internal.v0.models.raveena_item_upserted'],
|
|
29014
29220
|
T['io.flow.internal.v0.models.raveena_item_deleted'],
|
|
29221
|
+
T['io.flow.internal.v0.models.mahesh_item_upserted'],
|
|
29222
|
+
T['io.flow.internal.v0.models.mahesh_item_deleted'],
|
|
29015
29223
|
T['io.flow.internal.v0.models.tracking_processing_error_upserted'],
|
|
29016
29224
|
T['io.flow.internal.v0.models.tracking_processing_error_deleted'],
|
|
29017
29225
|
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'],
|
|
@@ -29198,6 +29406,10 @@ T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_c
|
|
|
29198
29406
|
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty', 'refund']);
|
|
29199
29407
|
|
|
29200
29408
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
29409
|
+
'adaptive_pricing_coefficient_upserted',
|
|
29410
|
+
'adaptive_pricing_coefficient_deleted',
|
|
29411
|
+
'adaptive_pricing_update_upserted',
|
|
29412
|
+
'adaptive_pricing_update_deleted',
|
|
29201
29413
|
'adaptive_shipping_rate_upserted',
|
|
29202
29414
|
'adaptive_shipping_rate_deleted',
|
|
29203
29415
|
'adyen_authorization_deleted',
|
|
@@ -29264,6 +29476,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29264
29476
|
'revenue_record_deleted',
|
|
29265
29477
|
'other_record_upserted',
|
|
29266
29478
|
'other_record_deleted',
|
|
29479
|
+
'sales_payment_record_upserted',
|
|
29480
|
+
'sales_payment_record_deleted',
|
|
29267
29481
|
'calculator_organization_settings_upserted',
|
|
29268
29482
|
'calculator_organization_settings_deleted',
|
|
29269
29483
|
'carrier_account_upserted_v2',
|
|
@@ -29370,6 +29584,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29370
29584
|
'fulfillment_fallbacks_deleted',
|
|
29371
29585
|
'quote_upserted',
|
|
29372
29586
|
'quote_deleted',
|
|
29587
|
+
'guaranteed_shipping_published_output_upserted',
|
|
29588
|
+
'guaranteed_shipping_published_output_deleted',
|
|
29373
29589
|
'all_items_export',
|
|
29374
29590
|
'harmonized_items_hs6_export',
|
|
29375
29591
|
'unharmonized_items_export',
|
|
@@ -29474,7 +29690,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29474
29690
|
'order_rates_published_v3',
|
|
29475
29691
|
'ratecard_dimension_estimate_upserted',
|
|
29476
29692
|
'ratecard_dimension_estimate_deleted',
|
|
29477
|
-
'ratecard_lanes_import_request',
|
|
29478
29693
|
'ratecard_service_fee_upserted',
|
|
29479
29694
|
'ratecard_service_fee_deleted',
|
|
29480
29695
|
'ratecard_rate_level_upserted',
|
|
@@ -29536,8 +29751,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29536
29751
|
'shopify_order_transaction_deleted',
|
|
29537
29752
|
'shopify_test_order_upserted',
|
|
29538
29753
|
'shopify_test_order_deleted',
|
|
29539
|
-
'shopify_adaptive_pricing_coefficients_upserted',
|
|
29540
|
-
'shopify_adaptive_pricing_coefficients_deleted',
|
|
29541
29754
|
'shopify_merchant_markets_upserted',
|
|
29542
29755
|
'shopify_merchant_markets_deleted',
|
|
29543
29756
|
'shopify_product_create_upserted',
|
|
@@ -29586,6 +29799,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29586
29799
|
'bojana_item_deleted',
|
|
29587
29800
|
'raveena_item_upserted',
|
|
29588
29801
|
'raveena_item_deleted',
|
|
29802
|
+
'mahesh_item_upserted',
|
|
29803
|
+
'mahesh_item_deleted',
|
|
29589
29804
|
'tracking_processing_error_upserted',
|
|
29590
29805
|
'tracking_processing_error_deleted',
|
|
29591
29806
|
'tracking_label_event_upserted_v2',
|
|
@@ -29608,7 +29823,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29608
29823
|
'user_deleted_v2',
|
|
29609
29824
|
]);
|
|
29610
29825
|
|
|
29611
|
-
T['io.flow.internal.v0.enums.
|
|
29826
|
+
T['io.flow.internal.v0.enums.flat_rate_label_guarantee_status'] = PropTypes.oneOf(['active', 'void']);
|
|
29827
|
+
T['io.flow.internal.v0.enums.flat_rate_label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'fee', 'subsidy']);
|
|
29612
29828
|
T['io.flow.internal.v0.enums.ge_ingestion_file_status'] = PropTypes.oneOf(['pending', 'processed']);
|
|
29613
29829
|
T['io.flow.internal.v0.enums.ge_revenue_share_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'revenue_share']);
|
|
29614
29830
|
|
|
@@ -29687,6 +29903,8 @@ T['io.flow.internal.v0.enums.restriction_organization_channel'] = PropTypes.oneO
|
|
|
29687
29903
|
'shopify-sandbox',
|
|
29688
29904
|
'enterprise-sandbox',
|
|
29689
29905
|
'enterprise-qa',
|
|
29906
|
+
'globale',
|
|
29907
|
+
'globale-sandbox',
|
|
29690
29908
|
'cafe24',
|
|
29691
29909
|
'cafe24-sandbox',
|
|
29692
29910
|
]);
|
|
@@ -30442,6 +30660,10 @@ T['io.flow.internal.v0.models.report_summary'] = PropTypes.exact({
|
|
|
30442
30660
|
task_id: PropTypes.string.isRequired,
|
|
30443
30661
|
});
|
|
30444
30662
|
|
|
30663
|
+
T['io.flow.internal.v0.models.reporting_usd'] = PropTypes.exact({
|
|
30664
|
+
usd: PropTypes.number.isRequired,
|
|
30665
|
+
});
|
|
30666
|
+
|
|
30445
30667
|
T['io.flow.internal.v0.models.requeue_request_form'] = PropTypes.exact({
|
|
30446
30668
|
product_ids: PropTypes.arrayOf(PropTypes.string),
|
|
30447
30669
|
hs6_codes: PropTypes.arrayOf(PropTypes.string),
|
|
@@ -31781,6 +32003,21 @@ T['io.flow.merchant.onboarding.v0.enums.onboarding_trade_sector'] = PropTypes.on
|
|
|
31781
32003
|
'other',
|
|
31782
32004
|
]);
|
|
31783
32005
|
|
|
32006
|
+
T['io.flow.catalog.v0.enums.cpsc_attribute'] = PropTypes.oneOf([
|
|
32007
|
+
'certification_id',
|
|
32008
|
+
'citation_codes',
|
|
32009
|
+
'manufactured_date',
|
|
32010
|
+
'manufactured_location',
|
|
32011
|
+
'product_test_date',
|
|
32012
|
+
'test_lab_name',
|
|
32013
|
+
'point_of_contact',
|
|
32014
|
+
'certification_version',
|
|
32015
|
+
'certification_product_id',
|
|
32016
|
+
'certificate_type',
|
|
32017
|
+
'lab_type',
|
|
32018
|
+
'taxonomy_reference',
|
|
32019
|
+
]);
|
|
32020
|
+
|
|
31784
32021
|
T['io.flow.catalog.v0.enums.fulfillment_method_type'] = PropTypes.oneOf(['fulfillment_method']);
|
|
31785
32022
|
T['io.flow.catalog.v0.enums.taxability_type'] = PropTypes.oneOf(['tax_rule']);
|
|
31786
32023
|
T['io.flow.catalog.v0.enums.taxability_value'] = PropTypes.oneOf(['exempt']);
|
|
@@ -31913,6 +32150,7 @@ T['io.flow.organization.v0.models.organization_tax_registration_form'] = PropTyp
|
|
|
31913
32150
|
province: PropTypes.string,
|
|
31914
32151
|
self_billing_agreement_effective_at: PropTypes.string.isRequired,
|
|
31915
32152
|
self_billing_agreement_expires_at: PropTypes.string,
|
|
32153
|
+
legal_name: PropTypes.string,
|
|
31916
32154
|
});
|
|
31917
32155
|
|
|
31918
32156
|
export const acceptance = T['io.flow.internal.v0.models.acceptance'];
|
|
@@ -31951,8 +32189,13 @@ export const accountUpsertedV2 = T['io.flow.internal.v0.models.account_upserted_
|
|
|
31951
32189
|
export const accountingPendingOrderMetadata = T['io.flow.internal.v0.models.accounting_pending_order_metadata'];
|
|
31952
32190
|
export const accountingReturnMetadata = T['io.flow.internal.v0.models.accounting_return_metadata'];
|
|
31953
32191
|
export const actionQuantity = T['io.flow.internal.v0.models.action_quantity'];
|
|
32192
|
+
export const adaptivePricingCoefficient = T['io.flow.internal.v0.models.adaptive_pricing_coefficient'];
|
|
32193
|
+
export const adaptivePricingCoefficientDeleted = T['io.flow.internal.v0.models.adaptive_pricing_coefficient_deleted'];
|
|
32194
|
+
export const adaptivePricingCoefficientUpserted = T['io.flow.internal.v0.models.adaptive_pricing_coefficient_upserted'];
|
|
31954
32195
|
export const adaptivePricingDestinationUpdate = T['io.flow.internal.v0.models.adaptive_pricing_destination_update'];
|
|
31955
32196
|
export const adaptivePricingUpdate = T['io.flow.internal.v0.models.adaptive_pricing_update'];
|
|
32197
|
+
export const adaptivePricingUpdateDeleted = T['io.flow.internal.v0.models.adaptive_pricing_update_deleted'];
|
|
32198
|
+
export const adaptivePricingUpdateUpserted = T['io.flow.internal.v0.models.adaptive_pricing_update_upserted'];
|
|
31956
32199
|
export const adaptiveShippingOrderGuarantee = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'];
|
|
31957
32200
|
export const adaptiveShippingOrderGuaranteeDeleted = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_deleted'];
|
|
31958
32201
|
export const adaptiveShippingOrderGuaranteeState = T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'];
|
|
@@ -32363,6 +32606,16 @@ export const consoleLabelRequestForm = T['io.flow.internal.v0.models.console_lab
|
|
|
32363
32606
|
export const consoleLabelValidationForm = T['io.flow.internal.v0.unions.console_label_validation_form'];
|
|
32364
32607
|
export const consoleMarkUnresolvableForm = T['io.flow.internal.v0.models.console_mark_unresolvable_form'];
|
|
32365
32608
|
export const courthouseProductSummary = T['io.flow.internal.v0.models.courthouse_product_summary'];
|
|
32609
|
+
export const cpscCertificateType = T['io.flow.internal.v0.enums.cpsc_certificate_type'];
|
|
32610
|
+
export const cpscFileType = T['io.flow.internal.v0.enums.cpsc_file_type'];
|
|
32611
|
+
export const cpscLabType = T['io.flow.internal.v0.enums.cpsc_lab_type'];
|
|
32612
|
+
export const cpscLotNumberAssignedBy = T['io.flow.internal.v0.enums.cpsc_lot_number_assigned_by'];
|
|
32613
|
+
export const cpscPointOfContactType = T['io.flow.internal.v0.enums.cpsc_point_of_contact_type'];
|
|
32614
|
+
export const cpscPrimaryProductIdType = T['io.flow.internal.v0.enums.cpsc_primary_product_id_type'];
|
|
32615
|
+
export const cpscProductRegistration = T['io.flow.internal.v0.models.cpsc_product_registration'];
|
|
32616
|
+
export const cpscQueueEnvelope = T['io.flow.internal.v0.models.cpsc_queue_envelope'];
|
|
32617
|
+
export const cpscQueueMessage = T['io.flow.internal.v0.models.cpsc_queue_message'];
|
|
32618
|
+
export const cpscYesNo = T['io.flow.internal.v0.enums.cpsc_yes_no'];
|
|
32366
32619
|
export const crossdockTrackingStatus = T['io.flow.internal.v0.enums.crossdock_tracking_status'];
|
|
32367
32620
|
export const cryptoAccount = T['io.flow.internal.v0.models.crypto_account'];
|
|
32368
32621
|
export const cryptoAccountModificationForm = T['io.flow.internal.v0.models.crypto_account_modification_form'];
|
|
@@ -32588,6 +32841,7 @@ export const fiservMerchant = T['io.flow.internal.v0.models.fiserv_merchant'];
|
|
|
32588
32841
|
export const fiservMerchantModificationForm = T['io.flow.internal.v0.models.fiserv_merchant_modification_form'];
|
|
32589
32842
|
export const fiservMerchantPutForm = T['io.flow.internal.v0.models.fiserv_merchant_put_form'];
|
|
32590
32843
|
export const flatRate = T['io.flow.internal.v0.models.flat_rate'];
|
|
32844
|
+
export const flatRateLabelGuaranteeStatus = T['io.flow.internal.v0.enums.flat_rate_label_guarantee_status'];
|
|
32591
32845
|
export const flatRateLabelReversal = T['io.flow.internal.v0.models.flat_rate_label_reversal'];
|
|
32592
32846
|
export const flatRateLabelReversalDeleted = T['io.flow.internal.v0.models.flat_rate_label_reversal_deleted'];
|
|
32593
32847
|
export const flatRateLabelReversalUpserted = T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'];
|
|
@@ -32697,6 +32951,9 @@ export const googleShoppingAccountParameters = T['io.flow.internal.v0.models.goo
|
|
|
32697
32951
|
export const googleShoppingSetting = T['io.flow.internal.v0.models.google_shopping_setting'];
|
|
32698
32952
|
export const googleTagManager = T['io.flow.internal.v0.models.google_tag_manager'];
|
|
32699
32953
|
export const graphqlServiceTypes = T['io.flow.internal.v0.enums.graphql_service_types'];
|
|
32954
|
+
export const guaranteedShippingPublishedOutput = T['io.flow.internal.v0.models.guaranteed_shipping_published_output'];
|
|
32955
|
+
export const guaranteedShippingPublishedOutputDeleted = T['io.flow.internal.v0.models.guaranteed_shipping_published_output_deleted'];
|
|
32956
|
+
export const guaranteedShippingPublishedOutputUpserted = T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'];
|
|
32700
32957
|
export const harmonizationClassificationStatisticsData = T['io.flow.internal.v0.models.harmonization_classification_statistics_data'];
|
|
32701
32958
|
export const harmonizationClassificationStatisticsPublished = T['io.flow.internal.v0.models.harmonization_classification_statistics_published'];
|
|
32702
32959
|
export const harmonizationCodesImport = T['io.flow.internal.v0.models.harmonization_codes_import'];
|
|
@@ -32866,8 +33123,10 @@ export const loyaltyProgramMessage = T['io.flow.internal.v0.models.loyalty_progr
|
|
|
32866
33123
|
export const loyaltyProgramReward = T['io.flow.internal.v0.models.loyalty_program_reward'];
|
|
32867
33124
|
export const loyaltyProgramRewards = T['io.flow.internal.v0.models.loyalty_program_rewards'];
|
|
32868
33125
|
export const maheshItem = T['io.flow.internal.v0.models.mahesh_item'];
|
|
33126
|
+
export const maheshItemDeleted = T['io.flow.internal.v0.models.mahesh_item_deleted'];
|
|
32869
33127
|
export const maheshItemForm = T['io.flow.internal.v0.models.mahesh_item_form'];
|
|
32870
33128
|
export const maheshItemType = T['io.flow.internal.v0.enums.mahesh_item_type'];
|
|
33129
|
+
export const maheshItemUpserted = T['io.flow.internal.v0.models.mahesh_item_upserted'];
|
|
32871
33130
|
export const mailClass = T['io.flow.internal.v0.enums.mail_class'];
|
|
32872
33131
|
export const mainTransaction = T['io.flow.internal.v0.models.main_transaction'];
|
|
32873
33132
|
export const mainTransactionDeleted = T['io.flow.internal.v0.models.main_transaction_deleted'];
|
|
@@ -33280,7 +33539,6 @@ export const ratecardDimensionEstimateDeleted = T['io.flow.internal.v0.models.ra
|
|
|
33280
33539
|
export const ratecardDimensionEstimateUpserted = T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'];
|
|
33281
33540
|
export const ratecardInternalServiceFee = T['io.flow.internal.v0.models.ratecard_internal_service_fee'];
|
|
33282
33541
|
export const ratecardInternalSummary = T['io.flow.internal.v0.models.ratecard_internal_summary'];
|
|
33283
|
-
export const ratecardLanesImportRequest = T['io.flow.internal.v0.models.ratecard_lanes_import_request'];
|
|
33284
33542
|
export const ratecardRateLevelDeleted = T['io.flow.internal.v0.models.ratecard_rate_level_deleted'];
|
|
33285
33543
|
export const ratecardRateLevelOrganizationDeleted = T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'];
|
|
33286
33544
|
export const ratecardRateLevelOrganizationUpserted = T['io.flow.internal.v0.models.ratecard_rate_level_organization_upserted'];
|
|
@@ -33289,8 +33547,6 @@ export const ratecardRateLevelRatecardUpserted = T['io.flow.internal.v0.models.r
|
|
|
33289
33547
|
export const ratecardRateLevelUpserted = T['io.flow.internal.v0.models.ratecard_rate_level_upserted'];
|
|
33290
33548
|
export const ratecardServiceFeeDeleted = T['io.flow.internal.v0.models.ratecard_service_fee_deleted'];
|
|
33291
33549
|
export const ratecardServiceFeeUpserted = T['io.flow.internal.v0.models.ratecard_service_fee_upserted'];
|
|
33292
|
-
export const ratecardServiceFeesOverride = T['io.flow.internal.v0.models.ratecard_service_fees_override'];
|
|
33293
|
-
export const ratecardServiceFeesOverrideForm = T['io.flow.internal.v0.models.ratecard_service_fees_override_form'];
|
|
33294
33550
|
export const ratesChanged = T['io.flow.internal.v0.models.rates_changed'];
|
|
33295
33551
|
export const ratesNamesSummary = T['io.flow.internal.v0.models.rates_names_summary'];
|
|
33296
33552
|
export const raveenaItem = T['io.flow.internal.v0.models.raveena_item'];
|
|
@@ -33341,11 +33597,13 @@ export const reportingDetails = T['io.flow.internal.v0.models.reporting_details'
|
|
|
33341
33597
|
export const reportingFees = T['io.flow.internal.v0.models.reporting_fees'];
|
|
33342
33598
|
export const reportingFreight = T['io.flow.internal.v0.models.reporting_freight'];
|
|
33343
33599
|
export const reportingFreightGuaranteed = T['io.flow.internal.v0.models.reporting_freight_guaranteed'];
|
|
33600
|
+
export const reportingFreightSubsidy = T['io.flow.internal.v0.models.reporting_freight_subsidy'];
|
|
33344
33601
|
export const reportingFulfillment = T['io.flow.internal.v0.models.reporting_fulfillment'];
|
|
33345
33602
|
export const reportingFulfillmentHas = T['io.flow.internal.v0.models.reporting_fulfillment_has'];
|
|
33346
33603
|
export const reportingFulfillmentIs = T['io.flow.internal.v0.models.reporting_fulfillment_is'];
|
|
33347
33604
|
export const reportingFulfillmentIsVirtual = T['io.flow.internal.v0.enums.reporting_fulfillment_is_virtual'];
|
|
33348
33605
|
export const reportingFx = T['io.flow.internal.v0.models.reporting_fx'];
|
|
33606
|
+
export const reportingFxValue = T['io.flow.internal.v0.models.reporting_fx_value'];
|
|
33349
33607
|
export const reportingMerchantBreakdown = T['io.flow.internal.v0.models.reporting_merchant_breakdown'];
|
|
33350
33608
|
export const reportingMerchantFees = T['io.flow.internal.v0.models.reporting_merchant_fees'];
|
|
33351
33609
|
export const reportingMerchantFreight = T['io.flow.internal.v0.models.reporting_merchant_freight'];
|
|
@@ -33456,6 +33714,8 @@ export const routingEntity = T['io.flow.internal.v0.unions.routing_entity'];
|
|
|
33456
33714
|
export const routingMerchant = T['io.flow.internal.v0.models.routing_merchant'];
|
|
33457
33715
|
export const routingProcessor = T['io.flow.internal.v0.models.routing_processor'];
|
|
33458
33716
|
export const salesPaymentRecord = T['io.flow.internal.v0.models.sales_payment_record'];
|
|
33717
|
+
export const salesPaymentRecordDeleted = T['io.flow.internal.v0.models.sales_payment_record_deleted'];
|
|
33718
|
+
export const salesPaymentRecordUpserted = T['io.flow.internal.v0.models.sales_payment_record_upserted'];
|
|
33459
33719
|
export const sandboxSetup = T['io.flow.internal.v0.models.sandbox_setup'];
|
|
33460
33720
|
export const sandboxSetupForm = T['io.flow.internal.v0.models.sandbox_setup_form'];
|
|
33461
33721
|
export const scheduledPayment = T['io.flow.internal.v0.models.scheduled_payment'];
|
|
@@ -33475,6 +33735,8 @@ export const sellabilityCheckResult = T['io.flow.internal.v0.models.sellability_
|
|
|
33475
33735
|
export const sellabilityCheckStatus = T['io.flow.internal.v0.enums.sellability_check_status'];
|
|
33476
33736
|
export const sellabilityInternalMatchType = T['io.flow.internal.v0.enums.sellability_internal_match_type'];
|
|
33477
33737
|
export const sellabilityStatus = T['io.flow.internal.v0.enums.sellability_status'];
|
|
33738
|
+
export const serviceFees = T['io.flow.internal.v0.models.service_fees'];
|
|
33739
|
+
export const serviceFeesForm = T['io.flow.internal.v0.models.service_fees_form'];
|
|
33478
33740
|
export const sessionOrderData = T['io.flow.internal.v0.models.session_order_data'];
|
|
33479
33741
|
export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
|
|
33480
33742
|
export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
|
|
@@ -33488,9 +33750,6 @@ export const shippingPricing = T['io.flow.internal.v0.models.shipping_pricing'];
|
|
|
33488
33750
|
export const shippingRateEstimateAvailableInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_available_internal'];
|
|
33489
33751
|
export const shippingRateEstimateInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_internal'];
|
|
33490
33752
|
export const shippingRateEstimateRequestInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_request_internal'];
|
|
33491
|
-
export const shopifyAdaptivePricingCoefficients = T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients'];
|
|
33492
|
-
export const shopifyAdaptivePricingCoefficientsDeleted = T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_deleted'];
|
|
33493
|
-
export const shopifyAdaptivePricingCoefficientsUpserted = T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_upserted'];
|
|
33494
33753
|
export const shopifyAddress = T['io.flow.internal.v0.models.shopify_address'];
|
|
33495
33754
|
export const shopifyCallbackError = T['io.flow.internal.v0.models.shopify_callback_error'];
|
|
33496
33755
|
export const shopifyCallbackErrorCode = T['io.flow.internal.v0.enums.shopify_callback_error_code'];
|
|
@@ -33500,6 +33759,7 @@ export const shopifyChannelOrganizationToken = T['io.flow.internal.v0.models.sho
|
|
|
33500
33759
|
export const shopifyChannelOrganizationTokens = T['io.flow.internal.v0.models.shopify_channel_organization_tokens'];
|
|
33501
33760
|
export const shopifyChargeCode = T['io.flow.internal.v0.enums.shopify_charge_code'];
|
|
33502
33761
|
export const shopifyContactDetails = T['io.flow.internal.v0.models.shopify_contact_details'];
|
|
33762
|
+
export const shopifyCost = T['io.flow.internal.v0.models.shopify_cost'];
|
|
33503
33763
|
export const shopifyDeliveryMethodType = T['io.flow.internal.v0.enums.shopify_delivery_method_type'];
|
|
33504
33764
|
export const shopifyDimensionUnit = T['io.flow.internal.v0.enums.shopify_dimension_unit'];
|
|
33505
33765
|
export const shopifyDispute = T['io.flow.internal.v0.models.shopify_dispute'];
|
|
@@ -33628,7 +33888,6 @@ export const shopifyShipmentRateRequest = T['io.flow.internal.v0.models.shopify_
|
|
|
33628
33888
|
export const shopifyShipmentRateResponse = T['io.flow.internal.v0.models.shopify_shipment_rate_response'];
|
|
33629
33889
|
export const shopifyShipmentRateShipment = T['io.flow.internal.v0.models.shopify_shipment_rate_shipment'];
|
|
33630
33890
|
export const shopifyShipmentRateShipper = T['io.flow.internal.v0.models.shopify_shipment_rate_shipper'];
|
|
33631
|
-
export const shopifyShipmentRateTotalCharges = T['io.flow.internal.v0.models.shopify_shipment_rate_total_charges'];
|
|
33632
33891
|
export const shopifyShipmentRateUnavailable = T['io.flow.internal.v0.models.shopify_shipment_rate_unavailable'];
|
|
33633
33892
|
export const shopifyShippingLocation = T['io.flow.internal.v0.models.shopify_shipping_location'];
|
|
33634
33893
|
export const shopifyShopStatistics = T['io.flow.internal.v0.models.shopify_shop_statistics'];
|