@flowio/api-internal-prop-types 9.24.134 → 9.24.135
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 +273 -85
- package/lib/api-internal.js +1 -1
- package/package.json +1 -1
- package/src/api-internal.d.ts +273 -85
- package/src/api-internal.js +605 -391
package/src/api-internal.js
CHANGED
|
@@ -181,6 +181,12 @@ T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'] = PropT
|
|
|
181
181
|
|
|
182
182
|
T['io.flow.billing.v0.enums.statement_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
|
|
183
183
|
|
|
184
|
+
T['io.flow.billing.v0.models.transaction_metadata_flat_rate_label'] = PropTypes.exact({
|
|
185
|
+
discriminator: PropTypes.oneOf(['flat_rate_label']).isRequired,
|
|
186
|
+
flat_rate: PropTypes.number,
|
|
187
|
+
coefficient: PropTypes.number,
|
|
188
|
+
});
|
|
189
|
+
|
|
184
190
|
T['io.flow.billing.v0.models.transaction_metadata_merchant_fee'] = PropTypes.exact({
|
|
185
191
|
discriminator: PropTypes.oneOf(['merchant_fee']).isRequired,
|
|
186
192
|
items: PropTypes.arrayOf(T['io.flow.billing.v0.models.transaction_metadata_merchant_fee_item']).isRequired,
|
|
@@ -3411,6 +3417,7 @@ T['io.flow.adyen.v0.models.adyen_dispute_event'] = PropTypes.exact({
|
|
|
3411
3417
|
});
|
|
3412
3418
|
|
|
3413
3419
|
T['io.flow.consumer.invoice.v0.enums.tax_jurisdiction_type'] = PropTypes.oneOf(['country', 'province']);
|
|
3420
|
+
T['io.flow.consumer.invoice.v0.enums.fee_invoice_type'] = PropTypes.oneOf(['mor_invoice', 'label_invoice', 'mor_credit_memo', 'label_credit_memo']);
|
|
3414
3421
|
|
|
3415
3422
|
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount_form'] = PropTypes.exact({
|
|
3416
3423
|
discriminator: PropTypes.oneOf(['discount']).isRequired,
|
|
@@ -3594,6 +3601,7 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason']
|
|
|
3594
3601
|
'unsupported_order_edit',
|
|
3595
3602
|
'order_allocation_duties_mismatch',
|
|
3596
3603
|
'order_missing',
|
|
3604
|
+
'organization_deactivated',
|
|
3597
3605
|
]);
|
|
3598
3606
|
|
|
3599
3607
|
T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
|
|
@@ -3601,28 +3609,6 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason'] = PropTy
|
|
|
3601
3609
|
rejection_reason: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'],
|
|
3602
3610
|
});
|
|
3603
3611
|
|
|
3604
|
-
T['io.flow.shopify.markets.internal.v0.enums.tax_and_duty_inclusivity_setting'] = PropTypes.oneOf([
|
|
3605
|
-
'duty_exclusive_tax_exclusive',
|
|
3606
|
-
'duty_inclusive_tax_exclusive',
|
|
3607
|
-
'duty_exclusive_tax_inclusive',
|
|
3608
|
-
'duty_inclusive_tax_inclusive',
|
|
3609
|
-
]);
|
|
3610
|
-
|
|
3611
|
-
T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
3612
|
-
id: PropTypes.string.isRequired,
|
|
3613
|
-
organization_id: PropTypes.string.isRequired,
|
|
3614
|
-
shopify_order_id: PropTypes.string.isRequired,
|
|
3615
|
-
order_number: PropTypes.string.isRequired,
|
|
3616
|
-
tax_and_duty_inclusivity_setting: T['io.flow.shopify.markets.internal.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
|
|
3617
|
-
});
|
|
3618
|
-
|
|
3619
|
-
T['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_upserted'] = PropTypes.exact({
|
|
3620
|
-
discriminator: PropTypes.oneOf(['order_tax_and_duty_inclusivity_setting_upserted']).isRequired,
|
|
3621
|
-
event_id: PropTypes.string.isRequired,
|
|
3622
|
-
timestamp: PropTypes.string.isRequired,
|
|
3623
|
-
order_tax_and_duty_inclusivity_setting: T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
3624
|
-
});
|
|
3625
|
-
|
|
3626
3612
|
T['io.flow.shopify.markets.internal.v0.enums.sellability_status'] = PropTypes.oneOf(['complete', 'incomplete']);
|
|
3627
3613
|
|
|
3628
3614
|
T['io.flow.shopify.markets.internal.v0.models.channel_organization_sellability_status_put_form'] = PropTypes.exact({
|
|
@@ -7236,9 +7222,16 @@ T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'] = PropTyp
|
|
|
7236
7222
|
selection_stratey: T['io.flow.fulfillment.v0.enums.preferred_service_selection_strategy'].isRequired,
|
|
7237
7223
|
});
|
|
7238
7224
|
|
|
7239
|
-
T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf(
|
|
7240
|
-
|
|
7241
|
-
|
|
7225
|
+
T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf([
|
|
7226
|
+
'flow-usa',
|
|
7227
|
+
'flow-irl',
|
|
7228
|
+
'flow-can',
|
|
7229
|
+
'ge-usa',
|
|
7230
|
+
'ge-can',
|
|
7231
|
+
'ge-can-ship',
|
|
7232
|
+
'ge-gbr',
|
|
7233
|
+
'ge-irl',
|
|
7234
|
+
]);
|
|
7242
7235
|
|
|
7243
7236
|
T['io.flow.common.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_community', 'local']);
|
|
7244
7237
|
T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
|
|
@@ -8526,11 +8519,6 @@ T['io.flow.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
|
|
|
8526
8519
|
T['io.flow.internal.v0.models.generate_load_multiple_orgs'],
|
|
8527
8520
|
]);
|
|
8528
8521
|
|
|
8529
|
-
T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'] = PropTypes.exact({
|
|
8530
|
-
discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee_percent_put_form']).isRequired,
|
|
8531
|
-
percent: PropTypes.number.isRequired,
|
|
8532
|
-
});
|
|
8533
|
-
|
|
8534
8522
|
T['io.flow.internal.v0.models.feature_task_data_sync_organization'] = PropTypes.exact({
|
|
8535
8523
|
discriminator: PropTypes.oneOf(['feature_task_data_sync_organization']).isRequired,
|
|
8536
8524
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -8608,6 +8596,13 @@ T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.ex
|
|
|
8608
8596
|
id: PropTypes.string.isRequired,
|
|
8609
8597
|
});
|
|
8610
8598
|
|
|
8599
|
+
T['io.flow.internal.v0.models.bojana_item_deleted'] = PropTypes.exact({
|
|
8600
|
+
discriminator: PropTypes.oneOf(['bojana_item_deleted']).isRequired,
|
|
8601
|
+
event_id: PropTypes.string.isRequired,
|
|
8602
|
+
timestamp: PropTypes.string.isRequired,
|
|
8603
|
+
id: PropTypes.string.isRequired,
|
|
8604
|
+
});
|
|
8605
|
+
|
|
8611
8606
|
T['io.flow.internal.v0.models.chenglin_item_deleted'] = PropTypes.exact({
|
|
8612
8607
|
discriminator: PropTypes.oneOf(['chenglin_item_deleted']).isRequired,
|
|
8613
8608
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8622,6 +8617,14 @@ T['io.flow.internal.v0.models.gabriel_item_deleted'] = PropTypes.exact({
|
|
|
8622
8617
|
id: PropTypes.string.isRequired,
|
|
8623
8618
|
});
|
|
8624
8619
|
|
|
8620
|
+
T['io.flow.internal.v0.models.b2b_tax_transaction_deleted'] = PropTypes.exact({
|
|
8621
|
+
discriminator: PropTypes.oneOf(['b2b_tax_transaction_deleted']).isRequired,
|
|
8622
|
+
event_id: PropTypes.string.isRequired,
|
|
8623
|
+
timestamp: PropTypes.string.isRequired,
|
|
8624
|
+
organization: PropTypes.string.isRequired,
|
|
8625
|
+
id: PropTypes.string.isRequired,
|
|
8626
|
+
});
|
|
8627
|
+
|
|
8625
8628
|
T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'] = PropTypes.exact({
|
|
8626
8629
|
discriminator: PropTypes.oneOf(['stripe_connect_report_record_deleted']).isRequired,
|
|
8627
8630
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8874,14 +8877,6 @@ T['io.flow.internal.v0.models.organization_restriction_status_deleted'] = PropTy
|
|
|
8874
8877
|
id: PropTypes.string.isRequired,
|
|
8875
8878
|
});
|
|
8876
8879
|
|
|
8877
|
-
T['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'] = PropTypes.exact({
|
|
8878
|
-
discriminator: PropTypes.oneOf(['ratecard_standard_configuration_deleted']).isRequired,
|
|
8879
|
-
event_id: PropTypes.string.isRequired,
|
|
8880
|
-
timestamp: PropTypes.string.isRequired,
|
|
8881
|
-
organization: PropTypes.string.isRequired,
|
|
8882
|
-
id: PropTypes.string.isRequired,
|
|
8883
|
-
});
|
|
8884
|
-
|
|
8885
8880
|
T['io.flow.internal.v0.models.product_sellability_result_deleted'] = PropTypes.exact({
|
|
8886
8881
|
discriminator: PropTypes.oneOf(['product_sellability_result_deleted']).isRequired,
|
|
8887
8882
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9243,6 +9238,14 @@ T['io.flow.internal.v0.models.fraud_review_deleted'] = PropTypes.exact({
|
|
|
9243
9238
|
id: PropTypes.string.isRequired,
|
|
9244
9239
|
});
|
|
9245
9240
|
|
|
9241
|
+
T['io.flow.internal.v0.models.mor_cost_deleted'] = PropTypes.exact({
|
|
9242
|
+
discriminator: PropTypes.oneOf(['mor_cost_deleted']).isRequired,
|
|
9243
|
+
event_id: PropTypes.string.isRequired,
|
|
9244
|
+
timestamp: PropTypes.string.isRequired,
|
|
9245
|
+
organization: PropTypes.string.isRequired,
|
|
9246
|
+
id: PropTypes.string.isRequired,
|
|
9247
|
+
});
|
|
9248
|
+
|
|
9246
9249
|
T['io.flow.internal.v0.models.shipping_cost_deleted'] = PropTypes.exact({
|
|
9247
9250
|
discriminator: PropTypes.oneOf(['shipping_cost_deleted']).isRequired,
|
|
9248
9251
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9675,6 +9678,14 @@ T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
|
|
|
9675
9678
|
id: PropTypes.string.isRequired,
|
|
9676
9679
|
});
|
|
9677
9680
|
|
|
9681
|
+
T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'] = PropTypes.exact({
|
|
9682
|
+
discriminator: PropTypes.oneOf(['adaptive_shipping_rate_deleted']).isRequired,
|
|
9683
|
+
event_id: PropTypes.string.isRequired,
|
|
9684
|
+
timestamp: PropTypes.string.isRequired,
|
|
9685
|
+
organization: PropTypes.string.isRequired,
|
|
9686
|
+
id: PropTypes.string.isRequired,
|
|
9687
|
+
});
|
|
9688
|
+
|
|
9678
9689
|
T['io.flow.internal.v0.models.console_mark_unresolvable_form'] = PropTypes.exact({
|
|
9679
9690
|
discriminator: PropTypes.oneOf(['console_mark_unresolvable_form']).isRequired,
|
|
9680
9691
|
order_number: PropTypes.string.isRequired,
|
|
@@ -11618,6 +11629,17 @@ T['io.flow.internal.v0.models.keyword_cancelling'] = PropTypes.exact({
|
|
|
11618
11629
|
|
|
11619
11630
|
T['io.flow.internal.v0.enums.restriction_rule_community_exemption'] = PropTypes.oneOf(['domestic_exemption', 'intra_eu_exemption']);
|
|
11620
11631
|
|
|
11632
|
+
T['io.flow.internal.v0.models.restriction_rule_organization_exemption_form'] = PropTypes.exact({
|
|
11633
|
+
organization_id: PropTypes.string.isRequired,
|
|
11634
|
+
rule_id: PropTypes.string.isRequired,
|
|
11635
|
+
description: PropTypes.string.isRequired,
|
|
11636
|
+
exempt_regions: PropTypes.arrayOf(PropTypes.string),
|
|
11637
|
+
ignored_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
11638
|
+
additional_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
11639
|
+
community_exemption_override: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_rule_community_exemption']),
|
|
11640
|
+
is_rule_active: PropTypes.bool,
|
|
11641
|
+
});
|
|
11642
|
+
|
|
11621
11643
|
T['io.flow.internal.v0.models.restriction_rule_organization_exemption'] = PropTypes.exact({
|
|
11622
11644
|
id: PropTypes.string.isRequired,
|
|
11623
11645
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -11951,16 +11973,14 @@ T['io.flow.internal.v0.models.redirect'] = PropTypes.exact({
|
|
|
11951
11973
|
reason: T['io.flow.internal.v0.enums.redirect_reason'].isRequired,
|
|
11952
11974
|
});
|
|
11953
11975
|
|
|
11976
|
+
T['io.flow.internal.v0.enums.raveena_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
11977
|
+
|
|
11954
11978
|
T['io.flow.internal.v0.models.rate_name_summary'] = PropTypes.exact({
|
|
11955
11979
|
name: PropTypes.string.isRequired,
|
|
11956
11980
|
long_name: PropTypes.string,
|
|
11957
11981
|
matching_rates_percentage: PropTypes.number.isRequired,
|
|
11958
11982
|
});
|
|
11959
11983
|
|
|
11960
|
-
T['io.flow.internal.v0.models.ratecard_standard_settings'] = PropTypes.exact({
|
|
11961
|
-
margin: PropTypes.number.isRequired,
|
|
11962
|
-
});
|
|
11963
|
-
|
|
11964
11984
|
T['io.flow.internal.v0.models.rate_level_ratecard'] = PropTypes.exact({
|
|
11965
11985
|
id: PropTypes.string.isRequired,
|
|
11966
11986
|
ratecard_id: PropTypes.string.isRequired,
|
|
@@ -12400,6 +12420,7 @@ T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exa
|
|
|
12400
12420
|
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_restricted_region']),
|
|
12401
12421
|
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
12402
12422
|
matching_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
12423
|
+
matching_sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
12403
12424
|
classification_failure_reason: T['io.flow.internal.v0.enums.classification_failure_reason'],
|
|
12404
12425
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12405
12426
|
fingerprint: PropTypes.string.isRequired,
|
|
@@ -13035,19 +13056,34 @@ T['io.flow.internal.v0.enums.order_validation_status'] = PropTypes.oneOf([
|
|
|
13035
13056
|
'breached',
|
|
13036
13057
|
]);
|
|
13037
13058
|
|
|
13038
|
-
T['io.flow.
|
|
13059
|
+
T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'] = PropTypes.oneOf([
|
|
13039
13060
|
'duty_exclusive_tax_exclusive',
|
|
13040
13061
|
'duty_inclusive_tax_exclusive',
|
|
13041
13062
|
'duty_exclusive_tax_inclusive',
|
|
13042
13063
|
'duty_inclusive_tax_inclusive',
|
|
13043
13064
|
]);
|
|
13044
13065
|
|
|
13066
|
+
T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
13067
|
+
id: PropTypes.string.isRequired,
|
|
13068
|
+
organization_id: PropTypes.string.isRequired,
|
|
13069
|
+
shopify_order_id: PropTypes.string.isRequired,
|
|
13070
|
+
order_number: PropTypes.string.isRequired,
|
|
13071
|
+
tax_and_duty_inclusivity_setting: T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
|
|
13072
|
+
});
|
|
13073
|
+
|
|
13074
|
+
T['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_upserted'] = PropTypes.exact({
|
|
13075
|
+
discriminator: PropTypes.oneOf(['order_tax_and_duty_inclusivity_setting_upserted']).isRequired,
|
|
13076
|
+
event_id: PropTypes.string.isRequired,
|
|
13077
|
+
timestamp: PropTypes.string.isRequired,
|
|
13078
|
+
order_tax_and_duty_inclusivity_setting: T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
13079
|
+
});
|
|
13080
|
+
|
|
13045
13081
|
T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
13046
13082
|
id: PropTypes.string.isRequired,
|
|
13047
13083
|
organization_id: PropTypes.string.isRequired,
|
|
13048
13084
|
shopify_order_id: PropTypes.string.isRequired,
|
|
13049
13085
|
order_number: PropTypes.string.isRequired,
|
|
13050
|
-
tax_and_duty_inclusivity_setting: T['io.flow.
|
|
13086
|
+
tax_and_duty_inclusivity_setting: T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
|
|
13051
13087
|
});
|
|
13052
13088
|
|
|
13053
13089
|
T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted'] = PropTypes.exact({
|
|
@@ -14340,6 +14376,11 @@ T['io.flow.billing.v0.models.transaction_metadata_trueup_surcharge'] = PropTypes
|
|
|
14340
14376
|
actual: T['io.flow.billing.v0.models.transaction_metadata_trueup_surcharge_data'].isRequired,
|
|
14341
14377
|
});
|
|
14342
14378
|
|
|
14379
|
+
T['io.flow.internal.v0.models.merchant_surcharge'] = PropTypes.exact({
|
|
14380
|
+
type: T['io.flow.trueup.v0.enums.trueup_surcharge_type'].isRequired,
|
|
14381
|
+
amount: PropTypes.number.isRequired,
|
|
14382
|
+
});
|
|
14383
|
+
|
|
14343
14384
|
T['io.flow.label.v0.enums.cost_estimate_source'] = PropTypes.oneOf(['flow', 'channel']);
|
|
14344
14385
|
|
|
14345
14386
|
T['io.flow.internal.v0.models.label_destination'] = PropTypes.exact({
|
|
@@ -15283,12 +15324,24 @@ T['io.flow.internal.v0.models.shopper_breakdown'] = PropTypes.exact({
|
|
|
15283
15324
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15284
15325
|
});
|
|
15285
15326
|
|
|
15327
|
+
T['io.flow.internal.v0.models.reporting_merchant_freight_surcharges'] = PropTypes.exact({
|
|
15328
|
+
duties_paid: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15329
|
+
fixed_ddp: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15330
|
+
fixed_currency_conversion: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15331
|
+
});
|
|
15332
|
+
|
|
15333
|
+
T['io.flow.internal.v0.models.reporting_merchant_freight'] = PropTypes.exact({
|
|
15334
|
+
base_amount: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15335
|
+
surcharges: T['io.flow.internal.v0.models.reporting_merchant_freight_surcharges'],
|
|
15336
|
+
});
|
|
15337
|
+
|
|
15286
15338
|
T['io.flow.internal.v0.models.reporting_merchant_transactions'] = PropTypes.exact({
|
|
15287
15339
|
adjustment: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15288
15340
|
reversal: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15289
15341
|
tax: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15290
15342
|
duty: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15291
15343
|
freight: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15344
|
+
freight_breakdown: T['io.flow.internal.v0.models.reporting_merchant_freight'],
|
|
15292
15345
|
discount: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15293
15346
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15294
15347
|
tax_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
@@ -15387,6 +15440,8 @@ T['io.flow.internal.v0.models.merchant_transactions'] = PropTypes.exact({
|
|
|
15387
15440
|
tax: PropTypes.number.isRequired,
|
|
15388
15441
|
duty: PropTypes.number.isRequired,
|
|
15389
15442
|
freight: PropTypes.number.isRequired,
|
|
15443
|
+
base_amount: PropTypes.number,
|
|
15444
|
+
surcharges: PropTypes.arrayOf(T['io.flow.internal.v0.models.merchant_surcharge']),
|
|
15390
15445
|
total: PropTypes.number.isRequired,
|
|
15391
15446
|
tax_refund: PropTypes.number,
|
|
15392
15447
|
tax_reversal: PropTypes.number,
|
|
@@ -16035,6 +16090,7 @@ T['io.flow.internal.v0.models.product_sellability_internal_result'] = PropTypes.
|
|
|
16035
16090
|
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']).isRequired,
|
|
16036
16091
|
rule_matches: PropTypes.arrayOf(T['io.flow.internal.v0.models.product_sellability_internal_rule_match']).isRequired,
|
|
16037
16092
|
matching_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
16093
|
+
matching_sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
16038
16094
|
});
|
|
16039
16095
|
|
|
16040
16096
|
T['io.flow.internal.v0.models.product_sellability_internal'] = PropTypes.exact({
|
|
@@ -16671,6 +16727,11 @@ T['io.flow.ratecard.v0.unions.fuel_surcharge_rate'] = PropTypes.oneOfType([
|
|
|
16671
16727
|
T['io.flow.ratecard.v0.models.fuel_surcharge_by_weight'],
|
|
16672
16728
|
]);
|
|
16673
16729
|
|
|
16730
|
+
T['io.flow.ratecard.v0.models.fee_weight'] = PropTypes.exact({
|
|
16731
|
+
weight: PropTypes.number.isRequired,
|
|
16732
|
+
unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
16733
|
+
});
|
|
16734
|
+
|
|
16674
16735
|
T['io.flow.common.v0.models.measurement'] = PropTypes.exact({
|
|
16675
16736
|
value: PropTypes.string.isRequired,
|
|
16676
16737
|
units: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
@@ -16751,11 +16812,6 @@ T['io.flow.label.v0.models.single_package_shipping_notification_form'] = PropTyp
|
|
|
16751
16812
|
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
16752
16813
|
});
|
|
16753
16814
|
|
|
16754
|
-
T['io.flow.ratecard.v0.models.fee_weight'] = PropTypes.exact({
|
|
16755
|
-
weight: PropTypes.number.isRequired,
|
|
16756
|
-
unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
16757
|
-
});
|
|
16758
|
-
|
|
16759
16815
|
T['io.flow.internal.v0.models.failed_dimension_estimate_ops_input_with_reason'] = PropTypes.exact({
|
|
16760
16816
|
organization_id: PropTypes.string.isRequired,
|
|
16761
16817
|
length_units: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
@@ -17008,6 +17064,7 @@ T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
|
|
|
17008
17064
|
order_payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
17009
17065
|
amount_range: T['io.flow.internal.v0.models.report_amount_range'],
|
|
17010
17066
|
account_currency: T['io.flow.internal.v0.enums.account_currency_filter'],
|
|
17067
|
+
channel_id: PropTypes.string,
|
|
17011
17068
|
});
|
|
17012
17069
|
|
|
17013
17070
|
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
@@ -17477,35 +17534,6 @@ T['io.flow.internal.v0.models.compliance'] = PropTypes.exact({
|
|
|
17477
17534
|
data: T['io.flow.internal.v0.unions.compliance_data'].isRequired,
|
|
17478
17535
|
});
|
|
17479
17536
|
|
|
17480
|
-
T['io.flow.common.v0.models.entity_identifier'] = PropTypes.exact({
|
|
17481
|
-
name: T['io.flow.common.v0.enums.entity_identifier_type'].isRequired,
|
|
17482
|
-
number: PropTypes.string.isRequired,
|
|
17483
|
-
issuing_country: PropTypes.string,
|
|
17484
|
-
});
|
|
17485
|
-
|
|
17486
|
-
T['io.flow.common.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
|
|
17487
|
-
number: PropTypes.string.isRequired,
|
|
17488
|
-
country: PropTypes.string.isRequired,
|
|
17489
|
-
province_number: PropTypes.string,
|
|
17490
|
-
province: PropTypes.string,
|
|
17491
|
-
});
|
|
17492
|
-
|
|
17493
|
-
T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'] = PropTypes.exact({
|
|
17494
|
-
name: PropTypes.string.isRequired,
|
|
17495
|
-
vat: T['io.flow.common.v0.models.merchant_of_record_entity_registration'],
|
|
17496
|
-
streets: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
17497
|
-
city: PropTypes.string.isRequired,
|
|
17498
|
-
province: PropTypes.string,
|
|
17499
|
-
postal: PropTypes.string,
|
|
17500
|
-
country: PropTypes.string.isRequired,
|
|
17501
|
-
phone: PropTypes.string,
|
|
17502
|
-
email: PropTypes.string,
|
|
17503
|
-
starts_at: PropTypes.string.isRequired,
|
|
17504
|
-
ends_at: PropTypes.string,
|
|
17505
|
-
center: PropTypes.string,
|
|
17506
|
-
currency: PropTypes.string,
|
|
17507
|
-
});
|
|
17508
|
-
|
|
17509
17537
|
T['io.flow.fulfillment.v0.models.center_reference'] = PropTypes.exact({
|
|
17510
17538
|
discriminator: PropTypes.oneOf(['center_reference']).isRequired,
|
|
17511
17539
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -18306,6 +18334,7 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
18306
18334
|
'unsupported_order_edit',
|
|
18307
18335
|
'order_allocation_duties_mismatch',
|
|
18308
18336
|
'order_missing',
|
|
18337
|
+
'organization_deactivated',
|
|
18309
18338
|
]);
|
|
18310
18339
|
|
|
18311
18340
|
T['io.flow.channel.shopify.v0.models.external_order_summary'] = PropTypes.exact({
|
|
@@ -18372,6 +18401,49 @@ T['io.flow.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact(
|
|
|
18372
18401
|
status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
18373
18402
|
});
|
|
18374
18403
|
|
|
18404
|
+
T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
|
|
18405
|
+
|
|
18406
|
+
T['io.flow.organization.v0.models.membership_put_form'] = PropTypes.exact({
|
|
18407
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
18408
|
+
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
18409
|
+
});
|
|
18410
|
+
|
|
18411
|
+
T['io.flow.organization.v0.models.membership_form'] = PropTypes.exact({
|
|
18412
|
+
organization: PropTypes.string.isRequired,
|
|
18413
|
+
user: PropTypes.string.isRequired,
|
|
18414
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
18415
|
+
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
18416
|
+
});
|
|
18417
|
+
|
|
18418
|
+
T['io.flow.channel.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
|
|
18419
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
18420
|
+
});
|
|
18421
|
+
|
|
18422
|
+
T['io.flow.channel.internal.v0.models.channel_membership_form'] = PropTypes.exact({
|
|
18423
|
+
channel_id: PropTypes.string.isRequired,
|
|
18424
|
+
user_id: PropTypes.string.isRequired,
|
|
18425
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
18426
|
+
});
|
|
18427
|
+
|
|
18428
|
+
T['io.flow.internal.v0.models.partner_membership_put_form'] = PropTypes.exact({
|
|
18429
|
+
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
18430
|
+
});
|
|
18431
|
+
|
|
18432
|
+
T['io.flow.internal.v0.models.partner_membership_form'] = PropTypes.exact({
|
|
18433
|
+
user: PropTypes.string.isRequired,
|
|
18434
|
+
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
18435
|
+
});
|
|
18436
|
+
|
|
18437
|
+
T['io.flow.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
|
|
18438
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
18439
|
+
});
|
|
18440
|
+
|
|
18441
|
+
T['io.flow.internal.v0.models.channel_membership_form'] = PropTypes.exact({
|
|
18442
|
+
channel_id: PropTypes.string.isRequired,
|
|
18443
|
+
user_id: PropTypes.string.isRequired,
|
|
18444
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
18445
|
+
});
|
|
18446
|
+
|
|
18375
18447
|
T['io.flow.reference.v0.models.carrier'] = PropTypes.exact({
|
|
18376
18448
|
id: PropTypes.string.isRequired,
|
|
18377
18449
|
name: PropTypes.string.isRequired,
|
|
@@ -18522,6 +18594,11 @@ T['io.flow.organization.v0.models.organization_authorization_form'] = PropTypes.
|
|
|
18522
18594
|
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
18523
18595
|
});
|
|
18524
18596
|
|
|
18597
|
+
T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact({
|
|
18598
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
18599
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
18600
|
+
});
|
|
18601
|
+
|
|
18525
18602
|
T['io.flow.token.v0.models.partner_token_form'] = PropTypes.exact({
|
|
18526
18603
|
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
18527
18604
|
description: PropTypes.string,
|
|
@@ -18571,6 +18648,11 @@ T['io.flow.internal.v0.models.partner_authorization_form'] = PropTypes.exact({
|
|
|
18571
18648
|
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
18572
18649
|
});
|
|
18573
18650
|
|
|
18651
|
+
T['io.flow.internal.v0.models.partner_authorization'] = PropTypes.exact({
|
|
18652
|
+
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
18653
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
18654
|
+
});
|
|
18655
|
+
|
|
18574
18656
|
T['io.flow.internal.v0.models.partner'] = PropTypes.exact({
|
|
18575
18657
|
id: PropTypes.string.isRequired,
|
|
18576
18658
|
name: PropTypes.string.isRequired,
|
|
@@ -18852,6 +18934,7 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop'] = PropTypes
|
|
|
18852
18934
|
access_token_masked: PropTypes.string,
|
|
18853
18935
|
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
18854
18936
|
catalog_publication_owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'],
|
|
18937
|
+
fast_sellability_completed_at: PropTypes.string,
|
|
18855
18938
|
});
|
|
18856
18939
|
|
|
18857
18940
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
@@ -18889,6 +18972,7 @@ T['io.flow.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
|
18889
18972
|
access_token_masked: PropTypes.string,
|
|
18890
18973
|
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
18891
18974
|
catalog_publication_owner: T['io.flow.internal.v0.enums.catalog_publication_owner'],
|
|
18975
|
+
fast_sellability_completed_at: PropTypes.string,
|
|
18892
18976
|
});
|
|
18893
18977
|
|
|
18894
18978
|
T['io.flow.internal.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
@@ -19504,6 +19588,7 @@ T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
|
19504
19588
|
T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'],
|
|
19505
19589
|
T['io.flow.billing.v0.models.transaction_metadata_tax_duty'],
|
|
19506
19590
|
T['io.flow.billing.v0.models.transaction_metadata_merchant_fee'],
|
|
19591
|
+
T['io.flow.billing.v0.models.transaction_metadata_flat_rate_label'],
|
|
19507
19592
|
]);
|
|
19508
19593
|
|
|
19509
19594
|
T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
|
|
@@ -20361,6 +20446,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
20361
20446
|
'b2b_tax_refund',
|
|
20362
20447
|
'b2b_fee_mor_tax',
|
|
20363
20448
|
'b2b_fee_shipping_tax',
|
|
20449
|
+
'flat_rate_label',
|
|
20364
20450
|
]);
|
|
20365
20451
|
|
|
20366
20452
|
T['io.flow.internal.v0.models.debug_original_transaction_summary'] = PropTypes.exact({
|
|
@@ -20587,7 +20673,44 @@ T['io.flow.internal.v0.models.debug_banking_details'] = PropTypes.exact({
|
|
|
20587
20673
|
account: T['io.flow.internal.v0.models.bank_account'].isRequired,
|
|
20588
20674
|
});
|
|
20589
20675
|
|
|
20590
|
-
T['io.flow.
|
|
20676
|
+
T['io.flow.common.v0.models.entity_identifier'] = PropTypes.exact({
|
|
20677
|
+
name: T['io.flow.common.v0.enums.entity_identifier_type'].isRequired,
|
|
20678
|
+
number: PropTypes.string.isRequired,
|
|
20679
|
+
issuing_country: PropTypes.string,
|
|
20680
|
+
});
|
|
20681
|
+
|
|
20682
|
+
T['io.flow.common.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
|
|
20683
|
+
number: PropTypes.string.isRequired,
|
|
20684
|
+
country: PropTypes.string.isRequired,
|
|
20685
|
+
province_number: PropTypes.string,
|
|
20686
|
+
province: PropTypes.string,
|
|
20687
|
+
});
|
|
20688
|
+
|
|
20689
|
+
T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'] = PropTypes.exact({
|
|
20690
|
+
name: PropTypes.string.isRequired,
|
|
20691
|
+
vat: T['io.flow.common.v0.models.merchant_of_record_entity_registration'],
|
|
20692
|
+
streets: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20693
|
+
city: PropTypes.string.isRequired,
|
|
20694
|
+
province: PropTypes.string,
|
|
20695
|
+
postal: PropTypes.string,
|
|
20696
|
+
country: PropTypes.string.isRequired,
|
|
20697
|
+
phone: PropTypes.string,
|
|
20698
|
+
email: PropTypes.string,
|
|
20699
|
+
starts_at: PropTypes.string.isRequired,
|
|
20700
|
+
ends_at: PropTypes.string,
|
|
20701
|
+
center: PropTypes.string,
|
|
20702
|
+
currency: PropTypes.string,
|
|
20703
|
+
});
|
|
20704
|
+
|
|
20705
|
+
T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'] = PropTypes.oneOf([
|
|
20706
|
+
'b2b_invoice',
|
|
20707
|
+
'b2b_credit_memo',
|
|
20708
|
+
'mor_invoice',
|
|
20709
|
+
'mor_credit_memo',
|
|
20710
|
+
'label_invoice',
|
|
20711
|
+
'label_credit_memo',
|
|
20712
|
+
]);
|
|
20713
|
+
|
|
20591
20714
|
T['io.flow.internal.v0.enums.b2b_tax_rate_type'] = PropTypes.oneOf(['basic', 'preferential', 'exempt']);
|
|
20592
20715
|
T['io.flow.consumer.invoice.v0.enums.tax_type'] = PropTypes.oneOf(['vat', 'gst', 'hst', 'pst', 'qst', 'sales_tax']);
|
|
20593
20716
|
T['io.flow.internal.v0.enums.b2b_fee_shipping_tax_trigger_type'] = PropTypes.oneOf(['label', 'trueup']);
|
|
@@ -20683,6 +20806,14 @@ T['io.flow.common.v0.models.name'] = PropTypes.exact({
|
|
|
20683
20806
|
last: PropTypes.string,
|
|
20684
20807
|
});
|
|
20685
20808
|
|
|
20809
|
+
T['io.flow.organization.v0.models.invitation_form'] = PropTypes.exact({
|
|
20810
|
+
organization: PropTypes.string.isRequired,
|
|
20811
|
+
email: PropTypes.string.isRequired,
|
|
20812
|
+
name: T['io.flow.common.v0.models.name'],
|
|
20813
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
20814
|
+
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
20815
|
+
});
|
|
20816
|
+
|
|
20686
20817
|
T['io.flow.internal.v0.models.search_customer_summary'] = PropTypes.exact({
|
|
20687
20818
|
name: T['io.flow.common.v0.models.name'].isRequired,
|
|
20688
20819
|
email: PropTypes.string,
|
|
@@ -21628,71 +21759,6 @@ T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
|
21628
21759
|
});
|
|
21629
21760
|
|
|
21630
21761
|
T['io.flow.internal.v0.enums.amrutha_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
21631
|
-
T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
|
|
21632
|
-
|
|
21633
|
-
T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact({
|
|
21634
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
21635
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
21636
|
-
});
|
|
21637
|
-
|
|
21638
|
-
T['io.flow.organization.v0.models.membership_put_form'] = PropTypes.exact({
|
|
21639
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
21640
|
-
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
21641
|
-
});
|
|
21642
|
-
|
|
21643
|
-
T['io.flow.organization.v0.models.membership_form'] = PropTypes.exact({
|
|
21644
|
-
organization: PropTypes.string.isRequired,
|
|
21645
|
-
user: PropTypes.string.isRequired,
|
|
21646
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
21647
|
-
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
21648
|
-
});
|
|
21649
|
-
|
|
21650
|
-
T['io.flow.organization.v0.models.invitation_form'] = PropTypes.exact({
|
|
21651
|
-
organization: PropTypes.string.isRequired,
|
|
21652
|
-
email: PropTypes.string.isRequired,
|
|
21653
|
-
name: T['io.flow.common.v0.models.name'],
|
|
21654
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
21655
|
-
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
21656
|
-
});
|
|
21657
|
-
|
|
21658
|
-
T['io.flow.channel.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
|
|
21659
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
21660
|
-
});
|
|
21661
|
-
|
|
21662
|
-
T['io.flow.channel.internal.v0.models.channel_membership_form'] = PropTypes.exact({
|
|
21663
|
-
channel_id: PropTypes.string.isRequired,
|
|
21664
|
-
user_id: PropTypes.string.isRequired,
|
|
21665
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
21666
|
-
});
|
|
21667
|
-
|
|
21668
|
-
T['io.flow.internal.v0.models.partner_membership_put_form'] = PropTypes.exact({
|
|
21669
|
-
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
21670
|
-
});
|
|
21671
|
-
|
|
21672
|
-
T['io.flow.internal.v0.models.partner_membership_form'] = PropTypes.exact({
|
|
21673
|
-
user: PropTypes.string.isRequired,
|
|
21674
|
-
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
21675
|
-
});
|
|
21676
|
-
|
|
21677
|
-
T['io.flow.internal.v0.models.partner_authorization'] = PropTypes.exact({
|
|
21678
|
-
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
21679
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
21680
|
-
});
|
|
21681
|
-
|
|
21682
|
-
T['io.flow.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
|
|
21683
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
21684
|
-
});
|
|
21685
|
-
|
|
21686
|
-
T['io.flow.internal.v0.models.channel_membership_form'] = PropTypes.exact({
|
|
21687
|
-
channel_id: PropTypes.string.isRequired,
|
|
21688
|
-
user_id: PropTypes.string.isRequired,
|
|
21689
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
21690
|
-
});
|
|
21691
|
-
|
|
21692
|
-
T['io.flow.internal.v0.models.all_organizations_membership'] = PropTypes.exact({
|
|
21693
|
-
user_id: PropTypes.string.isRequired,
|
|
21694
|
-
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
21695
|
-
});
|
|
21696
21762
|
|
|
21697
21763
|
T['io.flow.internal.v0.models.afterpay_refund'] = PropTypes.exact({
|
|
21698
21764
|
id: PropTypes.string.isRequired,
|
|
@@ -23244,7 +23310,7 @@ T['io.flow.experience.v0.models.discount_rule_settings'] = PropTypes.exact({
|
|
|
23244
23310
|
|
|
23245
23311
|
T['io.flow.common.v0.models.discount_form'] = PropTypes.exact({
|
|
23246
23312
|
offer: T['io.flow.common.v0.unions.discount_offer'].isRequired,
|
|
23247
|
-
target: T['io.flow.common.v0.enums.discount_target']
|
|
23313
|
+
target: T['io.flow.common.v0.enums.discount_target'],
|
|
23248
23314
|
label: PropTypes.string,
|
|
23249
23315
|
});
|
|
23250
23316
|
|
|
@@ -23729,6 +23795,22 @@ T['io.flow.internal.v0.models.preonboarding_classification_request'] = PropTypes
|
|
|
23729
23795
|
fingerprint: PropTypes.string.isRequired,
|
|
23730
23796
|
});
|
|
23731
23797
|
|
|
23798
|
+
T['io.flow.internal.v0.models.mor_cost_summary'] = PropTypes.exact({
|
|
23799
|
+
id: PropTypes.string.isRequired,
|
|
23800
|
+
organization_id: PropTypes.string.isRequired,
|
|
23801
|
+
order_number: PropTypes.string.isRequired,
|
|
23802
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
23803
|
+
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
23804
|
+
});
|
|
23805
|
+
|
|
23806
|
+
T['io.flow.internal.v0.models.mor_cost_upserted'] = PropTypes.exact({
|
|
23807
|
+
discriminator: PropTypes.oneOf(['mor_cost_upserted']).isRequired,
|
|
23808
|
+
event_id: PropTypes.string.isRequired,
|
|
23809
|
+
timestamp: PropTypes.string.isRequired,
|
|
23810
|
+
organization: PropTypes.string.isRequired,
|
|
23811
|
+
mor_cost: T['io.flow.internal.v0.models.mor_cost_summary'].isRequired,
|
|
23812
|
+
});
|
|
23813
|
+
|
|
23732
23814
|
T['io.flow.internal.v0.models.liability_money'] = PropTypes.exact({
|
|
23733
23815
|
local: T['io.flow.common.v0.models.money'].isRequired,
|
|
23734
23816
|
base: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -23776,17 +23858,6 @@ T['io.flow.internal.v0.models.fx_revenue_recognition'] = PropTypes.exact({
|
|
|
23776
23858
|
reporting_date: PropTypes.string,
|
|
23777
23859
|
});
|
|
23778
23860
|
|
|
23779
|
-
T['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form'] = PropTypes.exact({
|
|
23780
|
-
discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee_amount_by_weight_put_form']).isRequired,
|
|
23781
|
-
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
23782
|
-
weight: T['io.flow.ratecard.v0.models.fee_weight'].isRequired,
|
|
23783
|
-
});
|
|
23784
|
-
|
|
23785
|
-
T['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form'] = PropTypes.oneOfType([
|
|
23786
|
-
T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'],
|
|
23787
|
-
T['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form'],
|
|
23788
|
-
]);
|
|
23789
|
-
|
|
23790
23861
|
T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
23791
23862
|
number: PropTypes.string.isRequired,
|
|
23792
23863
|
quantity: PropTypes.number.isRequired,
|
|
@@ -23800,6 +23871,7 @@ T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
|
23800
23871
|
});
|
|
23801
23872
|
|
|
23802
23873
|
T['io.flow.ratecard.v0.models.shipping_rate_estimate_request'] = PropTypes.exact({
|
|
23874
|
+
carrier_id: PropTypes.string.isRequired,
|
|
23803
23875
|
origin_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
23804
23876
|
destination_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
23805
23877
|
package_dimensions: T['io.flow.common.v0.models.dimension'].isRequired,
|
|
@@ -24354,6 +24426,21 @@ T['io.flow.internal.v0.models.calculation_stamping_line_item'] = PropTypes.exact
|
|
|
24354
24426
|
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
24355
24427
|
});
|
|
24356
24428
|
|
|
24429
|
+
T['io.flow.internal.v0.models.b2b_transaction_tax_line'] = PropTypes.exact({
|
|
24430
|
+
tax_type: T['io.flow.consumer.invoice.v0.enums.tax_type'].isRequired,
|
|
24431
|
+
tax_rate: PropTypes.number.isRequired,
|
|
24432
|
+
tax_amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
24433
|
+
tax_rate_type: T['io.flow.internal.v0.enums.b2b_tax_rate_type'].isRequired,
|
|
24434
|
+
});
|
|
24435
|
+
|
|
24436
|
+
T['io.flow.internal.v0.models.b2b_transaction_taxable_item'] = PropTypes.exact({
|
|
24437
|
+
line_item_reference: PropTypes.string.isRequired,
|
|
24438
|
+
label: PropTypes.string.isRequired,
|
|
24439
|
+
taxable_amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
24440
|
+
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
24441
|
+
taxes: PropTypes.arrayOf(T['io.flow.internal.v0.models.b2b_transaction_tax_line']).isRequired,
|
|
24442
|
+
});
|
|
24443
|
+
|
|
24357
24444
|
T['io.flow.internal.v0.models.tax_type_total'] = PropTypes.exact({
|
|
24358
24445
|
value: T['io.flow.common.v0.models.money'].isRequired,
|
|
24359
24446
|
});
|
|
@@ -24480,6 +24567,37 @@ T['io.flow.internal.v0.unions.calculator_stamp'] = PropTypes.oneOfType([
|
|
|
24480
24567
|
T['io.flow.internal.v0.models.calculation_step'],
|
|
24481
24568
|
]);
|
|
24482
24569
|
|
|
24570
|
+
T['io.flow.internal.v0.enums.mail_class'] = PropTypes.oneOf(['standard', 'express']);
|
|
24571
|
+
|
|
24572
|
+
T['io.flow.internal.v0.models.flat_rate'] = PropTypes.exact({
|
|
24573
|
+
mail_class: T['io.flow.internal.v0.enums.mail_class'].isRequired,
|
|
24574
|
+
carrier_id: PropTypes.string.isRequired,
|
|
24575
|
+
service_id: PropTypes.string.isRequired,
|
|
24576
|
+
price: T['io.flow.common.v0.models.money'].isRequired,
|
|
24577
|
+
free_shipping_threshold: T['io.flow.common.v0.models.money'],
|
|
24578
|
+
min_delivery_days: PropTypes.number,
|
|
24579
|
+
max_delivery_days: PropTypes.number,
|
|
24580
|
+
});
|
|
24581
|
+
|
|
24582
|
+
T['io.flow.internal.v0.models.adaptive_shipping_rate'] = PropTypes.exact({
|
|
24583
|
+
id: PropTypes.string.isRequired,
|
|
24584
|
+
organization_id: PropTypes.string.isRequired,
|
|
24585
|
+
destination_country: PropTypes.string.isRequired,
|
|
24586
|
+
coefficient: PropTypes.number.isRequired,
|
|
24587
|
+
flat_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.flat_rate']).isRequired,
|
|
24588
|
+
version_id: PropTypes.string,
|
|
24589
|
+
effective_at: PropTypes.string.isRequired,
|
|
24590
|
+
effective_until: PropTypes.string,
|
|
24591
|
+
});
|
|
24592
|
+
|
|
24593
|
+
T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'] = PropTypes.exact({
|
|
24594
|
+
discriminator: PropTypes.oneOf(['adaptive_shipping_rate_upserted']).isRequired,
|
|
24595
|
+
event_id: PropTypes.string.isRequired,
|
|
24596
|
+
timestamp: PropTypes.string.isRequired,
|
|
24597
|
+
organization: PropTypes.string.isRequired,
|
|
24598
|
+
adaptive_shipping_rate: T['io.flow.internal.v0.models.adaptive_shipping_rate'].isRequired,
|
|
24599
|
+
});
|
|
24600
|
+
|
|
24483
24601
|
T['io.flow.internal.v0.enums.item_quantity_action'] = PropTypes.oneOf(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']);
|
|
24484
24602
|
|
|
24485
24603
|
T['io.flow.internal.v0.models.action_quantity'] = PropTypes.exact({
|
|
@@ -24771,21 +24889,6 @@ T['io.flow.internal.v0.models.ratecard_internal_summary'] = PropTypes.exact({
|
|
|
24771
24889
|
number: PropTypes.string.isRequired,
|
|
24772
24890
|
});
|
|
24773
24891
|
|
|
24774
|
-
T['io.flow.internal.v0.models.ratecard_standard_configuration'] = PropTypes.exact({
|
|
24775
|
-
id: PropTypes.string.isRequired,
|
|
24776
|
-
key: PropTypes.string.isRequired,
|
|
24777
|
-
source_ratecard: T['io.flow.internal.v0.models.ratecard_internal_summary'].isRequired,
|
|
24778
|
-
settings: T['io.flow.internal.v0.models.ratecard_standard_settings'].isRequired,
|
|
24779
|
-
});
|
|
24780
|
-
|
|
24781
|
-
T['io.flow.internal.v0.models.ratecard_standard_configuration_upserted'] = PropTypes.exact({
|
|
24782
|
-
discriminator: PropTypes.oneOf(['ratecard_standard_configuration_upserted']).isRequired,
|
|
24783
|
-
event_id: PropTypes.string.isRequired,
|
|
24784
|
-
timestamp: PropTypes.string.isRequired,
|
|
24785
|
-
organization: PropTypes.string.isRequired,
|
|
24786
|
-
configuration: T['io.flow.internal.v0.models.ratecard_standard_configuration'].isRequired,
|
|
24787
|
-
});
|
|
24788
|
-
|
|
24789
24892
|
T['io.flow.internal.v0.models.ratecard_service_fees_override'] = PropTypes.exact({
|
|
24790
24893
|
ratecard: T['io.flow.internal.v0.models.ratecard_internal_summary'].isRequired,
|
|
24791
24894
|
service_fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
|
|
@@ -24820,7 +24923,7 @@ T['io.flow.common.v0.models.organization'] = PropTypes.exact({
|
|
|
24820
24923
|
parent: T['io.flow.common.v0.models.organization_reference'],
|
|
24821
24924
|
defaults: T['io.flow.common.v0.models.organization_defaults'],
|
|
24822
24925
|
created_at: PropTypes.string,
|
|
24823
|
-
status: T['io.flow.common.v0.enums.organization_status']
|
|
24926
|
+
status: T['io.flow.common.v0.enums.organization_status'],
|
|
24824
24927
|
type: T['io.flow.common.v0.enums.organization_type'],
|
|
24825
24928
|
});
|
|
24826
24929
|
|
|
@@ -24911,196 +25014,6 @@ T['io.flow.internal.v0.models.order_summary'] = PropTypes.exact({
|
|
|
24911
25014
|
currency: PropTypes.string.isRequired,
|
|
24912
25015
|
});
|
|
24913
25016
|
|
|
24914
|
-
T['io.flow.common.v0.models.merchant_of_record_entity'] = PropTypes.exact({
|
|
24915
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
24916
|
-
name: PropTypes.string.isRequired,
|
|
24917
|
-
vat: T['io.flow.common.v0.models.merchant_of_record_entity_registration'],
|
|
24918
|
-
identifiers: PropTypes.arrayOf(T['io.flow.common.v0.models.entity_identifier']),
|
|
24919
|
-
streets: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24920
|
-
city: PropTypes.string.isRequired,
|
|
24921
|
-
province: PropTypes.string,
|
|
24922
|
-
postal: PropTypes.string,
|
|
24923
|
-
country: PropTypes.string.isRequired,
|
|
24924
|
-
phone: PropTypes.string,
|
|
24925
|
-
email: PropTypes.string,
|
|
24926
|
-
});
|
|
24927
|
-
|
|
24928
|
-
T['io.flow.internal.v0.models.merchant_of_record_entity_settings'] = PropTypes.exact({
|
|
24929
|
-
id: PropTypes.string.isRequired,
|
|
24930
|
-
merchant_of_record_entity: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
24931
|
-
starts_at: PropTypes.string.isRequired,
|
|
24932
|
-
ends_at: PropTypes.string,
|
|
24933
|
-
center: PropTypes.string,
|
|
24934
|
-
currency: PropTypes.string,
|
|
24935
|
-
});
|
|
24936
|
-
|
|
24937
|
-
T['io.flow.internal.v0.models.liability'] = PropTypes.exact({
|
|
24938
|
-
delivery_key: PropTypes.string.isRequired,
|
|
24939
|
-
tax_jurisdiction: PropTypes.string.isRequired,
|
|
24940
|
-
liability_type: T['io.flow.internal.v0.enums.liability_type'].isRequired,
|
|
24941
|
-
reporting_scheme: T['io.flow.internal.v0.enums.reporting_scheme'].isRequired,
|
|
24942
|
-
nature_of_sale: T['io.flow.internal.v0.enums.nature_of_sale'].isRequired,
|
|
24943
|
-
liable_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
|
|
24944
|
-
funding_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
|
|
24945
|
-
reporting_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
|
|
24946
|
-
remitting_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
|
|
24947
|
-
seller: T['io.flow.common.v0.models.merchant_of_record_entity'],
|
|
24948
|
-
buyer: T['io.flow.common.v0.models.merchant_of_record_entity'],
|
|
24949
|
-
importer: T['io.flow.internal.v0.models.liability_party_details'],
|
|
24950
|
-
exporter: T['io.flow.internal.v0.models.liability_party_details'],
|
|
24951
|
-
amount: T['io.flow.internal.v0.models.liability_money'].isRequired,
|
|
24952
|
-
rate: PropTypes.number.isRequired,
|
|
24953
|
-
name: PropTypes.string.isRequired,
|
|
24954
|
-
basis: T['io.flow.internal.v0.models.liability_money'].isRequired,
|
|
24955
|
-
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability_item']).isRequired,
|
|
24956
|
-
tax_number_short_name: PropTypes.string.isRequired,
|
|
24957
|
-
});
|
|
24958
|
-
|
|
24959
|
-
T['io.flow.internal.v0.models.liability_remittance_plan'] = PropTypes.exact({
|
|
24960
|
-
id: PropTypes.string.isRequired,
|
|
24961
|
-
organization: PropTypes.string.isRequired,
|
|
24962
|
-
order_number: PropTypes.string.isRequired,
|
|
24963
|
-
liabilities: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability']).isRequired,
|
|
24964
|
-
total_tax: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24965
|
-
});
|
|
24966
|
-
|
|
24967
|
-
T['io.flow.internal.v0.models.liability_remittance_plan_upserted'] = PropTypes.exact({
|
|
24968
|
-
discriminator: PropTypes.oneOf(['liability_remittance_plan_upserted']).isRequired,
|
|
24969
|
-
event_id: PropTypes.string.isRequired,
|
|
24970
|
-
timestamp: PropTypes.string.isRequired,
|
|
24971
|
-
organization: PropTypes.string.isRequired,
|
|
24972
|
-
order_number: PropTypes.string.isRequired,
|
|
24973
|
-
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
|
|
24974
|
-
});
|
|
24975
|
-
|
|
24976
|
-
T['io.flow.internal.v0.models.liability_remittance_plan_deleted'] = PropTypes.exact({
|
|
24977
|
-
discriminator: PropTypes.oneOf(['liability_remittance_plan_deleted']).isRequired,
|
|
24978
|
-
event_id: PropTypes.string.isRequired,
|
|
24979
|
-
timestamp: PropTypes.string.isRequired,
|
|
24980
|
-
organization: PropTypes.string.isRequired,
|
|
24981
|
-
order_number: PropTypes.string.isRequired,
|
|
24982
|
-
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
|
|
24983
|
-
});
|
|
24984
|
-
|
|
24985
|
-
T['io.flow.internal.v0.models.label_request_result'] = PropTypes.exact({
|
|
24986
|
-
id: PropTypes.string.isRequired,
|
|
24987
|
-
created_at: PropTypes.string.isRequired,
|
|
24988
|
-
state: T['io.flow.internal.v0.enums.label_request_result_state'].isRequired,
|
|
24989
|
-
organization_id: PropTypes.string.isRequired,
|
|
24990
|
-
order_number: PropTypes.string.isRequired,
|
|
24991
|
-
label_request_method: T['io.flow.label.v0.enums.label_request_method'].isRequired,
|
|
24992
|
-
carrier_id: PropTypes.string,
|
|
24993
|
-
carrier_tracking_number: PropTypes.string,
|
|
24994
|
-
url: PropTypes.string,
|
|
24995
|
-
error: PropTypes.string,
|
|
24996
|
-
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'],
|
|
24997
|
-
origin_country: PropTypes.string,
|
|
24998
|
-
destination_country: PropTypes.string,
|
|
24999
|
-
reference_id: PropTypes.string,
|
|
25000
|
-
logistics_integration_provider: PropTypes.string,
|
|
25001
|
-
tax_lrp_liabilities: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability']),
|
|
25002
|
-
channel_id: PropTypes.string,
|
|
25003
|
-
});
|
|
25004
|
-
|
|
25005
|
-
T['io.flow.internal.v0.models.invoice_data'] = PropTypes.exact({
|
|
25006
|
-
organization_id: PropTypes.string.isRequired,
|
|
25007
|
-
order_number: PropTypes.string.isRequired,
|
|
25008
|
-
invoice_reference: PropTypes.string.isRequired,
|
|
25009
|
-
signature_url: PropTypes.string.isRequired,
|
|
25010
|
-
signature_date: PropTypes.string.isRequired,
|
|
25011
|
-
signature_name: PropTypes.string.isRequired,
|
|
25012
|
-
line_items: PropTypes.arrayOf(T['io.flow.internal.v0.models.invoice_data_line_item']).isRequired,
|
|
25013
|
-
currency: T['io.flow.reference.v0.models.currency'].isRequired,
|
|
25014
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
25015
|
-
delivered_duty_text: PropTypes.string.isRequired,
|
|
25016
|
-
transaction_date: PropTypes.string.isRequired,
|
|
25017
|
-
origin: T['io.flow.internal.v0.models.validated_address'].isRequired,
|
|
25018
|
-
destination: T['io.flow.internal.v0.models.validated_address'].isRequired,
|
|
25019
|
-
billing_address: T['io.flow.internal.v0.models.validated_address'],
|
|
25020
|
-
service: T['io.flow.reference.v0.models.carrier_service'].isRequired,
|
|
25021
|
-
flow_tracking_number: PropTypes.string.isRequired,
|
|
25022
|
-
rex_number: PropTypes.string,
|
|
25023
|
-
weee_number: PropTypes.string,
|
|
25024
|
-
business_gst_numbers: PropTypes.arrayOf(T['io.flow.internal.v0.models.entity_reference_number']).isRequired,
|
|
25025
|
-
destination_identification_numbers: PropTypes.arrayOf(T['io.flow.internal.v0.models.entity_reference_number']),
|
|
25026
|
-
vat_name: PropTypes.string.isRequired,
|
|
25027
|
-
item_identifier_column_name: PropTypes.string.isRequired,
|
|
25028
|
-
feature_show_merchant_id: PropTypes.bool.isRequired,
|
|
25029
|
-
shipping_pricing: T['io.flow.internal.v0.models.shipping_pricing'].isRequired,
|
|
25030
|
-
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
25031
|
-
eu_preferential_origin: PropTypes.string,
|
|
25032
|
-
customs_master_file_number: PropTypes.string,
|
|
25033
|
-
merchant_of_record_entity: T['io.flow.common.v0.models.merchant_of_record_entity'],
|
|
25034
|
-
weight_measured: PropTypes.string,
|
|
25035
|
-
notes_export_declaration: PropTypes.string,
|
|
25036
|
-
notes_import_duty_taxes_due: PropTypes.string,
|
|
25037
|
-
invoice_id: PropTypes.string.isRequired,
|
|
25038
|
-
invoice_date: PropTypes.string.isRequired,
|
|
25039
|
-
invoice_number: PropTypes.string,
|
|
25040
|
-
invoice_version: T['io.flow.internal.v0.enums.commercial_invoice_version'].isRequired,
|
|
25041
|
-
shipping_price: PropTypes.number.isRequired,
|
|
25042
|
-
goods_value: PropTypes.number.isRequired,
|
|
25043
|
-
total_taxes: PropTypes.number.isRequired,
|
|
25044
|
-
total_duties: PropTypes.number.isRequired,
|
|
25045
|
-
customs_value: PropTypes.number.isRequired,
|
|
25046
|
-
total_value: PropTypes.number.isRequired,
|
|
25047
|
-
usa_exporter_identifier_number_if_value_over_threshold: PropTypes.string,
|
|
25048
|
-
});
|
|
25049
|
-
|
|
25050
|
-
T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
|
|
25051
|
-
id: PropTypes.string.isRequired,
|
|
25052
|
-
label_id: PropTypes.string.isRequired,
|
|
25053
|
-
organization_id: PropTypes.string.isRequired,
|
|
25054
|
-
order_number: PropTypes.string.isRequired,
|
|
25055
|
-
invoice_reference: PropTypes.string.isRequired,
|
|
25056
|
-
signature_url: PropTypes.string.isRequired,
|
|
25057
|
-
signature_date: PropTypes.string.isRequired,
|
|
25058
|
-
signature_name: PropTypes.string,
|
|
25059
|
-
line_items: PropTypes.arrayOf(T['io.flow.internal.v0.models.invoice_line_item']).isRequired,
|
|
25060
|
-
currency: PropTypes.string.isRequired,
|
|
25061
|
-
delivered_duty: PropTypes.string.isRequired,
|
|
25062
|
-
transaction_date: PropTypes.string.isRequired,
|
|
25063
|
-
origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
25064
|
-
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
25065
|
-
billing_address: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
25066
|
-
service: PropTypes.string.isRequired,
|
|
25067
|
-
flow_tracking_number: PropTypes.string.isRequired,
|
|
25068
|
-
rex_number: PropTypes.string,
|
|
25069
|
-
wee_number: PropTypes.string,
|
|
25070
|
-
business_gst_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
25071
|
-
destination_gst_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
25072
|
-
vat_name: PropTypes.string.isRequired,
|
|
25073
|
-
shipping_price: PropTypes.string.isRequired,
|
|
25074
|
-
shipment_recipient: PropTypes.string,
|
|
25075
|
-
eu_preferential_origin: PropTypes.string,
|
|
25076
|
-
customs_master_file_number: PropTypes.string,
|
|
25077
|
-
merchant_of_record_entity: T['io.flow.common.v0.models.merchant_of_record_entity'],
|
|
25078
|
-
notes_export_declaration: PropTypes.string,
|
|
25079
|
-
notes_import_duty_taxes_due: PropTypes.string,
|
|
25080
|
-
invoice_date: PropTypes.string.isRequired,
|
|
25081
|
-
goods_value: PropTypes.number.isRequired,
|
|
25082
|
-
total_taxes: PropTypes.number.isRequired,
|
|
25083
|
-
total_duties: PropTypes.number.isRequired,
|
|
25084
|
-
customs_value: PropTypes.number.isRequired,
|
|
25085
|
-
total_value: PropTypes.number.isRequired,
|
|
25086
|
-
show_gst_exemption_column: PropTypes.bool.isRequired,
|
|
25087
|
-
show_eccn: PropTypes.bool.isRequired,
|
|
25088
|
-
show_manufacturer_id: PropTypes.bool.isRequired,
|
|
25089
|
-
show_us_out_verbiage: PropTypes.bool.isRequired,
|
|
25090
|
-
commercial_invoice_mode: PropTypes.string.isRequired,
|
|
25091
|
-
show_us_outbound_signature: PropTypes.bool.isRequired,
|
|
25092
|
-
show_us_outbound_stamp: PropTypes.bool.isRequired,
|
|
25093
|
-
invoice_url: PropTypes.string,
|
|
25094
|
-
invoice_number: PropTypes.string,
|
|
25095
|
-
});
|
|
25096
|
-
|
|
25097
|
-
T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'] = PropTypes.exact({
|
|
25098
|
-
discriminator: PropTypes.oneOf(['commercial_invoice_internal_upserted']).isRequired,
|
|
25099
|
-
event_id: PropTypes.string.isRequired,
|
|
25100
|
-
timestamp: PropTypes.string.isRequired,
|
|
25101
|
-
invoice: T['io.flow.internal.v0.models.commercial_invoice_internal'].isRequired,
|
|
25102
|
-
});
|
|
25103
|
-
|
|
25104
25017
|
T['io.flow.internal.v0.models.channel_shop'] = PropTypes.exact({
|
|
25105
25018
|
id: PropTypes.string.isRequired,
|
|
25106
25019
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
@@ -25225,6 +25138,221 @@ T['io.flow.internal.v0.models.bank_payment_order_upserted'] = PropTypes.exact({
|
|
|
25225
25138
|
bank_payment_order: T['io.flow.internal.v0.models.bank_payment_order'].isRequired,
|
|
25226
25139
|
});
|
|
25227
25140
|
|
|
25141
|
+
T['io.flow.common.v0.models.merchant_of_record_entity'] = PropTypes.exact({
|
|
25142
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25143
|
+
name: PropTypes.string.isRequired,
|
|
25144
|
+
vat: T['io.flow.common.v0.models.merchant_of_record_entity_registration'],
|
|
25145
|
+
identifiers: PropTypes.arrayOf(T['io.flow.common.v0.models.entity_identifier']),
|
|
25146
|
+
streets: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
25147
|
+
city: PropTypes.string.isRequired,
|
|
25148
|
+
province: PropTypes.string,
|
|
25149
|
+
postal: PropTypes.string,
|
|
25150
|
+
country: PropTypes.string.isRequired,
|
|
25151
|
+
phone: PropTypes.string,
|
|
25152
|
+
email: PropTypes.string,
|
|
25153
|
+
});
|
|
25154
|
+
|
|
25155
|
+
T['io.flow.internal.v0.models.merchant_of_record_entity_settings'] = PropTypes.exact({
|
|
25156
|
+
id: PropTypes.string.isRequired,
|
|
25157
|
+
merchant_of_record_entity: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25158
|
+
starts_at: PropTypes.string.isRequired,
|
|
25159
|
+
ends_at: PropTypes.string,
|
|
25160
|
+
center: PropTypes.string,
|
|
25161
|
+
currency: PropTypes.string,
|
|
25162
|
+
});
|
|
25163
|
+
|
|
25164
|
+
T['io.flow.internal.v0.models.liability'] = PropTypes.exact({
|
|
25165
|
+
delivery_key: PropTypes.string.isRequired,
|
|
25166
|
+
tax_jurisdiction: PropTypes.string.isRequired,
|
|
25167
|
+
liability_type: T['io.flow.internal.v0.enums.liability_type'].isRequired,
|
|
25168
|
+
reporting_scheme: T['io.flow.internal.v0.enums.reporting_scheme'].isRequired,
|
|
25169
|
+
nature_of_sale: T['io.flow.internal.v0.enums.nature_of_sale'].isRequired,
|
|
25170
|
+
liable_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
|
|
25171
|
+
funding_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
|
|
25172
|
+
reporting_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
|
|
25173
|
+
remitting_party: T['io.flow.internal.v0.enums.tax_party'].isRequired,
|
|
25174
|
+
seller: T['io.flow.common.v0.models.merchant_of_record_entity'],
|
|
25175
|
+
buyer: T['io.flow.common.v0.models.merchant_of_record_entity'],
|
|
25176
|
+
importer: T['io.flow.internal.v0.models.liability_party_details'],
|
|
25177
|
+
exporter: T['io.flow.internal.v0.models.liability_party_details'],
|
|
25178
|
+
amount: T['io.flow.internal.v0.models.liability_money'].isRequired,
|
|
25179
|
+
rate: PropTypes.number.isRequired,
|
|
25180
|
+
name: PropTypes.string.isRequired,
|
|
25181
|
+
basis: T['io.flow.internal.v0.models.liability_money'].isRequired,
|
|
25182
|
+
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability_item']).isRequired,
|
|
25183
|
+
tax_number_short_name: PropTypes.string.isRequired,
|
|
25184
|
+
});
|
|
25185
|
+
|
|
25186
|
+
T['io.flow.internal.v0.models.liability_remittance_plan'] = PropTypes.exact({
|
|
25187
|
+
id: PropTypes.string.isRequired,
|
|
25188
|
+
organization: PropTypes.string.isRequired,
|
|
25189
|
+
order_number: PropTypes.string.isRequired,
|
|
25190
|
+
liabilities: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability']).isRequired,
|
|
25191
|
+
total_tax: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
25192
|
+
});
|
|
25193
|
+
|
|
25194
|
+
T['io.flow.internal.v0.models.liability_remittance_plan_upserted'] = PropTypes.exact({
|
|
25195
|
+
discriminator: PropTypes.oneOf(['liability_remittance_plan_upserted']).isRequired,
|
|
25196
|
+
event_id: PropTypes.string.isRequired,
|
|
25197
|
+
timestamp: PropTypes.string.isRequired,
|
|
25198
|
+
organization: PropTypes.string.isRequired,
|
|
25199
|
+
order_number: PropTypes.string.isRequired,
|
|
25200
|
+
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
|
|
25201
|
+
});
|
|
25202
|
+
|
|
25203
|
+
T['io.flow.internal.v0.models.liability_remittance_plan_deleted'] = PropTypes.exact({
|
|
25204
|
+
discriminator: PropTypes.oneOf(['liability_remittance_plan_deleted']).isRequired,
|
|
25205
|
+
event_id: PropTypes.string.isRequired,
|
|
25206
|
+
timestamp: PropTypes.string.isRequired,
|
|
25207
|
+
organization: PropTypes.string.isRequired,
|
|
25208
|
+
order_number: PropTypes.string.isRequired,
|
|
25209
|
+
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
|
|
25210
|
+
});
|
|
25211
|
+
|
|
25212
|
+
T['io.flow.internal.v0.models.label_request_result'] = PropTypes.exact({
|
|
25213
|
+
id: PropTypes.string.isRequired,
|
|
25214
|
+
created_at: PropTypes.string.isRequired,
|
|
25215
|
+
state: T['io.flow.internal.v0.enums.label_request_result_state'].isRequired,
|
|
25216
|
+
organization_id: PropTypes.string.isRequired,
|
|
25217
|
+
order_number: PropTypes.string.isRequired,
|
|
25218
|
+
label_request_method: T['io.flow.label.v0.enums.label_request_method'].isRequired,
|
|
25219
|
+
carrier_id: PropTypes.string,
|
|
25220
|
+
carrier_tracking_number: PropTypes.string,
|
|
25221
|
+
url: PropTypes.string,
|
|
25222
|
+
error: PropTypes.string,
|
|
25223
|
+
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'],
|
|
25224
|
+
origin_country: PropTypes.string,
|
|
25225
|
+
destination_country: PropTypes.string,
|
|
25226
|
+
reference_id: PropTypes.string,
|
|
25227
|
+
logistics_integration_provider: PropTypes.string,
|
|
25228
|
+
tax_lrp_liabilities: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability']),
|
|
25229
|
+
channel_id: PropTypes.string,
|
|
25230
|
+
});
|
|
25231
|
+
|
|
25232
|
+
T['io.flow.internal.v0.models.invoice_data'] = PropTypes.exact({
|
|
25233
|
+
organization_id: PropTypes.string.isRequired,
|
|
25234
|
+
order_number: PropTypes.string.isRequired,
|
|
25235
|
+
invoice_reference: PropTypes.string.isRequired,
|
|
25236
|
+
signature_url: PropTypes.string.isRequired,
|
|
25237
|
+
signature_date: PropTypes.string.isRequired,
|
|
25238
|
+
signature_name: PropTypes.string.isRequired,
|
|
25239
|
+
line_items: PropTypes.arrayOf(T['io.flow.internal.v0.models.invoice_data_line_item']).isRequired,
|
|
25240
|
+
currency: T['io.flow.reference.v0.models.currency'].isRequired,
|
|
25241
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
25242
|
+
delivered_duty_text: PropTypes.string.isRequired,
|
|
25243
|
+
transaction_date: PropTypes.string.isRequired,
|
|
25244
|
+
origin: T['io.flow.internal.v0.models.validated_address'].isRequired,
|
|
25245
|
+
destination: T['io.flow.internal.v0.models.validated_address'].isRequired,
|
|
25246
|
+
billing_address: T['io.flow.internal.v0.models.validated_address'],
|
|
25247
|
+
service: T['io.flow.reference.v0.models.carrier_service'].isRequired,
|
|
25248
|
+
flow_tracking_number: PropTypes.string.isRequired,
|
|
25249
|
+
rex_number: PropTypes.string,
|
|
25250
|
+
weee_number: PropTypes.string,
|
|
25251
|
+
business_gst_numbers: PropTypes.arrayOf(T['io.flow.internal.v0.models.entity_reference_number']).isRequired,
|
|
25252
|
+
destination_identification_numbers: PropTypes.arrayOf(T['io.flow.internal.v0.models.entity_reference_number']),
|
|
25253
|
+
vat_name: PropTypes.string.isRequired,
|
|
25254
|
+
item_identifier_column_name: PropTypes.string.isRequired,
|
|
25255
|
+
feature_show_merchant_id: PropTypes.bool.isRequired,
|
|
25256
|
+
shipping_pricing: T['io.flow.internal.v0.models.shipping_pricing'].isRequired,
|
|
25257
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
25258
|
+
eu_preferential_origin: PropTypes.string,
|
|
25259
|
+
customs_master_file_number: PropTypes.string,
|
|
25260
|
+
merchant_of_record_entity: T['io.flow.common.v0.models.merchant_of_record_entity'],
|
|
25261
|
+
weight_measured: PropTypes.string,
|
|
25262
|
+
notes_export_declaration: PropTypes.string,
|
|
25263
|
+
notes_import_duty_taxes_due: PropTypes.string,
|
|
25264
|
+
invoice_id: PropTypes.string.isRequired,
|
|
25265
|
+
invoice_date: PropTypes.string.isRequired,
|
|
25266
|
+
invoice_number: PropTypes.string,
|
|
25267
|
+
invoice_version: T['io.flow.internal.v0.enums.commercial_invoice_version'].isRequired,
|
|
25268
|
+
shipping_price: PropTypes.number.isRequired,
|
|
25269
|
+
goods_value: PropTypes.number.isRequired,
|
|
25270
|
+
total_taxes: PropTypes.number.isRequired,
|
|
25271
|
+
total_duties: PropTypes.number.isRequired,
|
|
25272
|
+
customs_value: PropTypes.number.isRequired,
|
|
25273
|
+
total_value: PropTypes.number.isRequired,
|
|
25274
|
+
usa_exporter_identifier_number_if_value_over_threshold: PropTypes.string,
|
|
25275
|
+
});
|
|
25276
|
+
|
|
25277
|
+
T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
|
|
25278
|
+
id: PropTypes.string.isRequired,
|
|
25279
|
+
label_id: PropTypes.string.isRequired,
|
|
25280
|
+
organization_id: PropTypes.string.isRequired,
|
|
25281
|
+
order_number: PropTypes.string.isRequired,
|
|
25282
|
+
invoice_reference: PropTypes.string.isRequired,
|
|
25283
|
+
signature_url: PropTypes.string.isRequired,
|
|
25284
|
+
signature_date: PropTypes.string.isRequired,
|
|
25285
|
+
signature_name: PropTypes.string,
|
|
25286
|
+
line_items: PropTypes.arrayOf(T['io.flow.internal.v0.models.invoice_line_item']).isRequired,
|
|
25287
|
+
currency: PropTypes.string.isRequired,
|
|
25288
|
+
delivered_duty: PropTypes.string.isRequired,
|
|
25289
|
+
transaction_date: PropTypes.string.isRequired,
|
|
25290
|
+
origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
25291
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
25292
|
+
billing_address: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
25293
|
+
service: PropTypes.string.isRequired,
|
|
25294
|
+
flow_tracking_number: PropTypes.string.isRequired,
|
|
25295
|
+
rex_number: PropTypes.string,
|
|
25296
|
+
wee_number: PropTypes.string,
|
|
25297
|
+
business_gst_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
25298
|
+
destination_gst_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
25299
|
+
vat_name: PropTypes.string.isRequired,
|
|
25300
|
+
shipping_price: PropTypes.string.isRequired,
|
|
25301
|
+
shipment_recipient: PropTypes.string,
|
|
25302
|
+
eu_preferential_origin: PropTypes.string,
|
|
25303
|
+
customs_master_file_number: PropTypes.string,
|
|
25304
|
+
merchant_of_record_entity: T['io.flow.common.v0.models.merchant_of_record_entity'],
|
|
25305
|
+
notes_export_declaration: PropTypes.string,
|
|
25306
|
+
notes_import_duty_taxes_due: PropTypes.string,
|
|
25307
|
+
invoice_date: PropTypes.string.isRequired,
|
|
25308
|
+
goods_value: PropTypes.number.isRequired,
|
|
25309
|
+
total_taxes: PropTypes.number.isRequired,
|
|
25310
|
+
total_duties: PropTypes.number.isRequired,
|
|
25311
|
+
customs_value: PropTypes.number.isRequired,
|
|
25312
|
+
total_value: PropTypes.number.isRequired,
|
|
25313
|
+
show_gst_exemption_column: PropTypes.bool.isRequired,
|
|
25314
|
+
show_eccn: PropTypes.bool.isRequired,
|
|
25315
|
+
show_manufacturer_id: PropTypes.bool.isRequired,
|
|
25316
|
+
show_us_out_verbiage: PropTypes.bool.isRequired,
|
|
25317
|
+
commercial_invoice_mode: PropTypes.string.isRequired,
|
|
25318
|
+
show_us_outbound_signature: PropTypes.bool.isRequired,
|
|
25319
|
+
show_us_outbound_stamp: PropTypes.bool.isRequired,
|
|
25320
|
+
invoice_url: PropTypes.string,
|
|
25321
|
+
invoice_number: PropTypes.string,
|
|
25322
|
+
});
|
|
25323
|
+
|
|
25324
|
+
T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'] = PropTypes.exact({
|
|
25325
|
+
discriminator: PropTypes.oneOf(['commercial_invoice_internal_upserted']).isRequired,
|
|
25326
|
+
event_id: PropTypes.string.isRequired,
|
|
25327
|
+
timestamp: PropTypes.string.isRequired,
|
|
25328
|
+
invoice: T['io.flow.internal.v0.models.commercial_invoice_internal'].isRequired,
|
|
25329
|
+
});
|
|
25330
|
+
|
|
25331
|
+
T['io.flow.internal.v0.models.b2b_tax_transaction'] = PropTypes.exact({
|
|
25332
|
+
id: PropTypes.string.isRequired,
|
|
25333
|
+
organization_id: PropTypes.string.isRequired,
|
|
25334
|
+
order_number: PropTypes.string.isRequired,
|
|
25335
|
+
transaction_source_id: PropTypes.string.isRequired,
|
|
25336
|
+
transaction_type: T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'].isRequired,
|
|
25337
|
+
transaction_date: PropTypes.string.isRequired,
|
|
25338
|
+
currency: PropTypes.string.isRequired,
|
|
25339
|
+
buyer: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25340
|
+
seller: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25341
|
+
taxable_items: PropTypes.arrayOf(T['io.flow.internal.v0.models.b2b_transaction_taxable_item']).isRequired,
|
|
25342
|
+
taxable_amount_total: T['io.flow.common.v0.models.money'].isRequired,
|
|
25343
|
+
tax_total: T['io.flow.common.v0.models.money'].isRequired,
|
|
25344
|
+
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
25345
|
+
document_number: PropTypes.string,
|
|
25346
|
+
});
|
|
25347
|
+
|
|
25348
|
+
T['io.flow.internal.v0.models.b2b_tax_transaction_upserted'] = PropTypes.exact({
|
|
25349
|
+
discriminator: PropTypes.oneOf(['b2b_tax_transaction_upserted']).isRequired,
|
|
25350
|
+
event_id: PropTypes.string.isRequired,
|
|
25351
|
+
timestamp: PropTypes.string.isRequired,
|
|
25352
|
+
organization: PropTypes.string.isRequired,
|
|
25353
|
+
b2b_tax_transaction: T['io.flow.internal.v0.models.b2b_tax_transaction'].isRequired,
|
|
25354
|
+
});
|
|
25355
|
+
|
|
25228
25356
|
T['io.flow.internal.v0.models.order_reference'] = PropTypes.exact({
|
|
25229
25357
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25230
25358
|
number: PropTypes.string.isRequired,
|
|
@@ -25499,6 +25627,21 @@ T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line'] = PropTypes.oneOfT
|
|
|
25499
25627
|
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_tip'],
|
|
25500
25628
|
]);
|
|
25501
25629
|
|
|
25630
|
+
T['io.flow.consumer.invoice.v0.models.fee_invoice'] = PropTypes.exact({
|
|
25631
|
+
id: PropTypes.string.isRequired,
|
|
25632
|
+
number: PropTypes.string.isRequired,
|
|
25633
|
+
invoice_type: T['io.flow.consumer.invoice.v0.enums.fee_invoice_type'].isRequired,
|
|
25634
|
+
buyer: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25635
|
+
seller: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
25636
|
+
date: PropTypes.string.isRequired,
|
|
25637
|
+
b2b_tax_transaction_id: PropTypes.string.isRequired,
|
|
25638
|
+
order_number: PropTypes.string.isRequired,
|
|
25639
|
+
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
25640
|
+
tax_lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.invoice_tax_line']),
|
|
25641
|
+
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
25642
|
+
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
25643
|
+
});
|
|
25644
|
+
|
|
25502
25645
|
T['io.flow.consumer.invoice.v0.models.b2b_invoice'] = PropTypes.exact({
|
|
25503
25646
|
id: PropTypes.string.isRequired,
|
|
25504
25647
|
number: PropTypes.string.isRequired,
|
|
@@ -25919,6 +26062,23 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
25919
26062
|
channel: PropTypes.string,
|
|
25920
26063
|
});
|
|
25921
26064
|
|
|
26065
|
+
T['io.flow.internal.v0.models.raveena_item_form'] = PropTypes.exact({
|
|
26066
|
+
number: PropTypes.string.isRequired,
|
|
26067
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26068
|
+
description: PropTypes.string,
|
|
26069
|
+
type: T['io.flow.internal.v0.enums.raveena_item_type'].isRequired,
|
|
26070
|
+
added_on: PropTypes.string.isRequired,
|
|
26071
|
+
});
|
|
26072
|
+
|
|
26073
|
+
T['io.flow.internal.v0.models.raveena_item'] = PropTypes.exact({
|
|
26074
|
+
id: PropTypes.string.isRequired,
|
|
26075
|
+
number: PropTypes.string.isRequired,
|
|
26076
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26077
|
+
description: PropTypes.string,
|
|
26078
|
+
type: T['io.flow.internal.v0.enums.raveena_item_type'].isRequired,
|
|
26079
|
+
added_on: PropTypes.string.isRequired,
|
|
26080
|
+
});
|
|
26081
|
+
|
|
25922
26082
|
T['io.flow.internal.v0.models.payment_summary_v2'] = PropTypes.exact({
|
|
25923
26083
|
discriminator: PropTypes.oneOf(['payment_summary_v2']).isRequired,
|
|
25924
26084
|
id: PropTypes.string.isRequired,
|
|
@@ -26083,6 +26243,13 @@ T['io.flow.internal.v0.models.bojana_item'] = PropTypes.exact({
|
|
|
26083
26243
|
added_on: PropTypes.string.isRequired,
|
|
26084
26244
|
});
|
|
26085
26245
|
|
|
26246
|
+
T['io.flow.internal.v0.models.bojana_item_upserted'] = PropTypes.exact({
|
|
26247
|
+
discriminator: PropTypes.oneOf(['bojana_item_upserted']).isRequired,
|
|
26248
|
+
event_id: PropTypes.string.isRequired,
|
|
26249
|
+
timestamp: PropTypes.string.isRequired,
|
|
26250
|
+
item: T['io.flow.internal.v0.models.bojana_item'].isRequired,
|
|
26251
|
+
});
|
|
26252
|
+
|
|
26086
26253
|
T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
26087
26254
|
starting_balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
26088
26255
|
subscription: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -26117,6 +26284,7 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
26117
26284
|
merchant_fee: T['io.flow.common.v0.models.price'].isRequired,
|
|
26118
26285
|
b2b_fee_mor_tax: T['io.flow.common.v0.models.price'].isRequired,
|
|
26119
26286
|
b2b_fee_shipping_tax: T['io.flow.common.v0.models.price'].isRequired,
|
|
26287
|
+
flat_rate_label: T['io.flow.common.v0.models.price'].isRequired,
|
|
26120
26288
|
});
|
|
26121
26289
|
|
|
26122
26290
|
T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact({
|
|
@@ -27340,6 +27508,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
27340
27508
|
'b2b_tax_refund',
|
|
27341
27509
|
'b2b_fee_mor_tax',
|
|
27342
27510
|
'b2b_fee_shipping_tax',
|
|
27511
|
+
'flat_rate_label',
|
|
27343
27512
|
]);
|
|
27344
27513
|
|
|
27345
27514
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -27691,6 +27860,19 @@ T['io.flow.internal.v0.models.ge_revenue_share_transaction'] = PropTypes.exact({
|
|
|
27691
27860
|
created_at: PropTypes.string.isRequired,
|
|
27692
27861
|
});
|
|
27693
27862
|
|
|
27863
|
+
T['io.flow.internal.v0.models.flat_rate_label_transaction'] = PropTypes.exact({
|
|
27864
|
+
discriminator: PropTypes.oneOf(['flat_rate_label_transaction']).isRequired,
|
|
27865
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
|
|
27866
|
+
id: PropTypes.string.isRequired,
|
|
27867
|
+
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
27868
|
+
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
27869
|
+
posted_at: PropTypes.string,
|
|
27870
|
+
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
27871
|
+
description: PropTypes.string.isRequired,
|
|
27872
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
27873
|
+
created_at: PropTypes.string.isRequired,
|
|
27874
|
+
});
|
|
27875
|
+
|
|
27694
27876
|
T['io.flow.internal.v0.models.duty_transaction'] = PropTypes.exact({
|
|
27695
27877
|
discriminator: PropTypes.oneOf(['duty_transaction']).isRequired,
|
|
27696
27878
|
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
|
|
@@ -27800,6 +27982,7 @@ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
|
|
|
27800
27982
|
T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'],
|
|
27801
27983
|
T['io.flow.internal.v0.models.ge_revenue_share_transaction'],
|
|
27802
27984
|
T['io.flow.internal.v0.models.merchant_fee_transaction'],
|
|
27985
|
+
T['io.flow.internal.v0.models.flat_rate_label_transaction'],
|
|
27803
27986
|
]);
|
|
27804
27987
|
|
|
27805
27988
|
T['io.flow.internal.v0.models.billing_transaction'] = PropTypes.exact({
|
|
@@ -28047,6 +28230,8 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
|
|
|
28047
28230
|
});
|
|
28048
28231
|
|
|
28049
28232
|
T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
28233
|
+
T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'],
|
|
28234
|
+
T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'],
|
|
28050
28235
|
T['io.flow.internal.v0.models.adyen_authorization_deleted'],
|
|
28051
28236
|
T['io.flow.internal.v0.models.adyen_authorization_upserted'],
|
|
28052
28237
|
T['io.flow.internal.v0.models.adyen_cancel_deleted'],
|
|
@@ -28186,6 +28371,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28186
28371
|
T['io.flow.internal.v0.models.bank_payment_order_deleted'],
|
|
28187
28372
|
T['io.flow.internal.v0.models.shipping_cost_upserted'],
|
|
28188
28373
|
T['io.flow.internal.v0.models.shipping_cost_deleted'],
|
|
28374
|
+
T['io.flow.internal.v0.models.mor_cost_upserted'],
|
|
28375
|
+
T['io.flow.internal.v0.models.mor_cost_deleted'],
|
|
28189
28376
|
T['io.flow.internal.v0.models.fraud_review_upserted'],
|
|
28190
28377
|
T['io.flow.internal.v0.models.fraud_review_deleted'],
|
|
28191
28378
|
T['io.flow.internal.v0.models.fraud_pending_review_upserted'],
|
|
@@ -28314,8 +28501,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28314
28501
|
T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'],
|
|
28315
28502
|
T['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'],
|
|
28316
28503
|
T['io.flow.internal.v0.models.ratecard_lanes_import_request'],
|
|
28317
|
-
T['io.flow.internal.v0.models.ratecard_standard_configuration_upserted'],
|
|
28318
|
-
T['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'],
|
|
28319
28504
|
T['io.flow.internal.v0.models.ratecard_service_fee_upserted'],
|
|
28320
28505
|
T['io.flow.internal.v0.models.ratecard_service_fee_deleted'],
|
|
28321
28506
|
T['io.flow.internal.v0.models.ratecard_rate_level_upserted'],
|
|
@@ -28407,10 +28592,14 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28407
28592
|
T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'],
|
|
28408
28593
|
T['io.flow.internal.v0.models.liability_remittance_plan_upserted'],
|
|
28409
28594
|
T['io.flow.internal.v0.models.liability_remittance_plan_deleted'],
|
|
28595
|
+
T['io.flow.internal.v0.models.b2b_tax_transaction_upserted'],
|
|
28596
|
+
T['io.flow.internal.v0.models.b2b_tax_transaction_deleted'],
|
|
28410
28597
|
T['io.flow.internal.v0.models.gabriel_item_upserted'],
|
|
28411
28598
|
T['io.flow.internal.v0.models.gabriel_item_deleted'],
|
|
28412
28599
|
T['io.flow.internal.v0.models.chenglin_item_upserted'],
|
|
28413
28600
|
T['io.flow.internal.v0.models.chenglin_item_deleted'],
|
|
28601
|
+
T['io.flow.internal.v0.models.bojana_item_upserted'],
|
|
28602
|
+
T['io.flow.internal.v0.models.bojana_item_deleted'],
|
|
28414
28603
|
T['io.flow.internal.v0.models.tracking_processing_error_upserted'],
|
|
28415
28604
|
T['io.flow.internal.v0.models.tracking_processing_error_deleted'],
|
|
28416
28605
|
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'],
|
|
@@ -28597,6 +28786,8 @@ T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_c
|
|
|
28597
28786
|
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty', 'refund']);
|
|
28598
28787
|
|
|
28599
28788
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
28789
|
+
'adaptive_shipping_rate_upserted',
|
|
28790
|
+
'adaptive_shipping_rate_deleted',
|
|
28600
28791
|
'adyen_authorization_deleted',
|
|
28601
28792
|
'adyen_authorization_upserted',
|
|
28602
28793
|
'adyen_cancel_deleted',
|
|
@@ -28736,6 +28927,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28736
28927
|
'bank_payment_order_deleted',
|
|
28737
28928
|
'shipping_cost_upserted',
|
|
28738
28929
|
'shipping_cost_deleted',
|
|
28930
|
+
'mor_cost_upserted',
|
|
28931
|
+
'mor_cost_deleted',
|
|
28739
28932
|
'fraud_review_upserted',
|
|
28740
28933
|
'fraud_review_deleted',
|
|
28741
28934
|
'fraud_pending_review_upserted',
|
|
@@ -28864,8 +29057,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28864
29057
|
'ratecard_dimension_estimate_upserted',
|
|
28865
29058
|
'ratecard_dimension_estimate_deleted',
|
|
28866
29059
|
'ratecard_lanes_import_request',
|
|
28867
|
-
'ratecard_standard_configuration_upserted',
|
|
28868
|
-
'ratecard_standard_configuration_deleted',
|
|
28869
29060
|
'ratecard_service_fee_upserted',
|
|
28870
29061
|
'ratecard_service_fee_deleted',
|
|
28871
29062
|
'ratecard_rate_level_upserted',
|
|
@@ -28957,10 +29148,14 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28957
29148
|
'stripe_connect_report_record_deleted',
|
|
28958
29149
|
'liability_remittance_plan_upserted',
|
|
28959
29150
|
'liability_remittance_plan_deleted',
|
|
29151
|
+
'b2b_tax_transaction_upserted',
|
|
29152
|
+
'b2b_tax_transaction_deleted',
|
|
28960
29153
|
'gabriel_item_upserted',
|
|
28961
29154
|
'gabriel_item_deleted',
|
|
28962
29155
|
'chenglin_item_upserted',
|
|
28963
29156
|
'chenglin_item_deleted',
|
|
29157
|
+
'bojana_item_upserted',
|
|
29158
|
+
'bojana_item_deleted',
|
|
28964
29159
|
'tracking_processing_error_upserted',
|
|
28965
29160
|
'tracking_processing_error_deleted',
|
|
28966
29161
|
'tracking_label_event_upserted_v2',
|
|
@@ -28983,6 +29178,7 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28983
29178
|
'user_deleted_v2',
|
|
28984
29179
|
]);
|
|
28985
29180
|
|
|
29181
|
+
T['io.flow.internal.v0.enums.flat_rate_label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'fee']);
|
|
28986
29182
|
T['io.flow.internal.v0.enums.ge_ingestion_file_status'] = PropTypes.oneOf(['pending', 'processed']);
|
|
28987
29183
|
T['io.flow.internal.v0.enums.ge_revenue_share_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'revenue_share']);
|
|
28988
29184
|
|
|
@@ -29812,12 +30008,6 @@ T['io.flow.internal.v0.models.rate_level_with_effective'] = PropTypes.exact({
|
|
|
29812
30008
|
key: PropTypes.string.isRequired,
|
|
29813
30009
|
});
|
|
29814
30010
|
|
|
29815
|
-
T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes.exact({
|
|
29816
|
-
source_ratecard_organization: PropTypes.string.isRequired,
|
|
29817
|
-
source_ratecard_number: PropTypes.string.isRequired,
|
|
29818
|
-
margin: PropTypes.number.isRequired,
|
|
29819
|
-
});
|
|
29820
|
-
|
|
29821
30011
|
T['io.flow.internal.v0.models.report_record_error'] = PropTypes.exact({
|
|
29822
30012
|
id: PropTypes.string.isRequired,
|
|
29823
30013
|
file_id: PropTypes.string.isRequired,
|
|
@@ -29850,6 +30040,14 @@ T['io.flow.internal.v0.models.restriction_blanket_organization_exemption'] = Pro
|
|
|
29850
30040
|
excluded_rules: PropTypes.arrayOf(PropTypes.string),
|
|
29851
30041
|
});
|
|
29852
30042
|
|
|
30043
|
+
T['io.flow.internal.v0.models.restriction_blanket_organization_exemption_form'] = PropTypes.exact({
|
|
30044
|
+
organization_id: PropTypes.string.isRequired,
|
|
30045
|
+
description: PropTypes.string.isRequired,
|
|
30046
|
+
is_all_rules_exempt: PropTypes.bool.isRequired,
|
|
30047
|
+
exempt_regions: PropTypes.arrayOf(PropTypes.string),
|
|
30048
|
+
excluded_rules: PropTypes.arrayOf(PropTypes.string),
|
|
30049
|
+
});
|
|
30050
|
+
|
|
29853
30051
|
T['io.flow.internal.v0.models.restriction_category'] = PropTypes.exact({
|
|
29854
30052
|
category: PropTypes.string.isRequired,
|
|
29855
30053
|
});
|
|
@@ -29870,8 +30068,15 @@ T['io.flow.internal.v0.models.restriction_rule_lane_exemption'] = PropTypes.exac
|
|
|
29870
30068
|
id: PropTypes.string.isRequired,
|
|
29871
30069
|
rule_id: PropTypes.string.isRequired,
|
|
29872
30070
|
description: PropTypes.string.isRequired,
|
|
29873
|
-
|
|
29874
|
-
|
|
30071
|
+
origin_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
30072
|
+
destination_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
30073
|
+
});
|
|
30074
|
+
|
|
30075
|
+
T['io.flow.internal.v0.models.restriction_rule_lane_exemption_form'] = PropTypes.exact({
|
|
30076
|
+
rule_id: PropTypes.string.isRequired,
|
|
30077
|
+
description: PropTypes.string.isRequired,
|
|
30078
|
+
origin_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
30079
|
+
destination_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
29875
30080
|
});
|
|
29876
30081
|
|
|
29877
30082
|
T['io.flow.internal.v0.models.restriction_rule_override'] = PropTypes.exact({
|
|
@@ -31010,13 +31215,6 @@ T['io.flow.experience.v0.models.order_service_change_request_data'] = PropTypes.
|
|
|
31010
31215
|
filename: PropTypes.string,
|
|
31011
31216
|
});
|
|
31012
31217
|
|
|
31013
|
-
T['io.flow.ratecard.v0.models.ratecard_estimate_summary_form'] = PropTypes.exact({
|
|
31014
|
-
origin: PropTypes.string,
|
|
31015
|
-
destination: PropTypes.string,
|
|
31016
|
-
service: PropTypes.string,
|
|
31017
|
-
center_key: PropTypes.string,
|
|
31018
|
-
});
|
|
31019
|
-
|
|
31020
31218
|
T['io.flow.token.v0.models.channel_token_form'] = PropTypes.exact({
|
|
31021
31219
|
channel_id: PropTypes.string.isRequired,
|
|
31022
31220
|
description: PropTypes.string,
|
|
@@ -31326,6 +31524,9 @@ export const accountUpsertedV2 = T['io.flow.internal.v0.models.account_upserted_
|
|
|
31326
31524
|
export const accountingPendingOrderMetadata = T['io.flow.internal.v0.models.accounting_pending_order_metadata'];
|
|
31327
31525
|
export const accountingReturnMetadata = T['io.flow.internal.v0.models.accounting_return_metadata'];
|
|
31328
31526
|
export const actionQuantity = T['io.flow.internal.v0.models.action_quantity'];
|
|
31527
|
+
export const adaptiveShippingRate = T['io.flow.internal.v0.models.adaptive_shipping_rate'];
|
|
31528
|
+
export const adaptiveShippingRateDeleted = T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'];
|
|
31529
|
+
export const adaptiveShippingRateUpserted = T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'];
|
|
31329
31530
|
export const additionalImportTax = T['io.flow.internal.v0.models.additional_import_tax'];
|
|
31330
31531
|
export const adjustmentAmount = T['io.flow.internal.v0.unions.adjustment_amount'];
|
|
31331
31532
|
export const adjustmentAmountFixed = T['io.flow.internal.v0.models.adjustment_amount_fixed'];
|
|
@@ -31384,7 +31585,6 @@ export const afterpayRefundDeleted = T['io.flow.internal.v0.models.afterpay_refu
|
|
|
31384
31585
|
export const afterpayRefundUpserted = T['io.flow.internal.v0.models.afterpay_refund_upserted'];
|
|
31385
31586
|
export const aftershipWebhook = T['io.flow.internal.v0.models.aftership_webhook'];
|
|
31386
31587
|
export const allItemsExport = T['io.flow.internal.v0.models.all_items_export'];
|
|
31387
|
-
export const allOrganizationsMembership = T['io.flow.internal.v0.models.all_organizations_membership'];
|
|
31388
31588
|
export const allocationItemReference = T['io.flow.internal.v0.models.allocation_item_reference'];
|
|
31389
31589
|
export const allowedLabels = T['io.flow.internal.v0.models.allowed_labels'];
|
|
31390
31590
|
export const amruthaItem = T['io.flow.internal.v0.models.amrutha_item'];
|
|
@@ -31420,6 +31620,11 @@ export const b2BTaxLedger = T['io.flow.internal.v0.models.b2b_tax_ledger'];
|
|
|
31420
31620
|
export const b2BTaxLedgerDocumentType = T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'];
|
|
31421
31621
|
export const b2BTaxLedgerForm = T['io.flow.internal.v0.models.b2b_tax_ledger_form'];
|
|
31422
31622
|
export const b2BTaxRateType = T['io.flow.internal.v0.enums.b2b_tax_rate_type'];
|
|
31623
|
+
export const b2BTaxTransaction = T['io.flow.internal.v0.models.b2b_tax_transaction'];
|
|
31624
|
+
export const b2BTaxTransactionDeleted = T['io.flow.internal.v0.models.b2b_tax_transaction_deleted'];
|
|
31625
|
+
export const b2BTaxTransactionUpserted = T['io.flow.internal.v0.models.b2b_tax_transaction_upserted'];
|
|
31626
|
+
export const b2BTransactionTaxLine = T['io.flow.internal.v0.models.b2b_transaction_tax_line'];
|
|
31627
|
+
export const b2BTransactionTaxableItem = T['io.flow.internal.v0.models.b2b_transaction_taxable_item'];
|
|
31423
31628
|
export const bankAccount = T['io.flow.internal.v0.models.bank_account'];
|
|
31424
31629
|
export const bankAccountReference = T['io.flow.internal.v0.models.bank_account_reference'];
|
|
31425
31630
|
export const bankAccountStatus = T['io.flow.internal.v0.enums.bank_account_status'];
|
|
@@ -31478,8 +31683,10 @@ export const bitpayAuthentication = T['io.flow.internal.v0.models.bitpay_authent
|
|
|
31478
31683
|
export const bitpayAuthenticationDataReference = T['io.flow.internal.v0.models.bitpay_authentication_data_reference'];
|
|
31479
31684
|
export const bitpayAuthenticationForm = T['io.flow.internal.v0.models.bitpay_authentication_form'];
|
|
31480
31685
|
export const bojanaItem = T['io.flow.internal.v0.models.bojana_item'];
|
|
31686
|
+
export const bojanaItemDeleted = T['io.flow.internal.v0.models.bojana_item_deleted'];
|
|
31481
31687
|
export const bojanaItemForm = T['io.flow.internal.v0.models.bojana_item_form'];
|
|
31482
31688
|
export const bojanaItemType = T['io.flow.internal.v0.enums.bojana_item_type'];
|
|
31689
|
+
export const bojanaItemUpserted = T['io.flow.internal.v0.models.bojana_item_upserted'];
|
|
31483
31690
|
export const booleanFeatureDefaultValue = T['io.flow.internal.v0.models.boolean_feature_default_value'];
|
|
31484
31691
|
export const booleanFeatureRule = T['io.flow.internal.v0.models.boolean_feature_rule'];
|
|
31485
31692
|
export const booleanFeatureRuleForm = T['io.flow.internal.v0.models.boolean_feature_rule_form'];
|
|
@@ -31943,6 +32150,9 @@ export const fiservAuthenticationForm = T['io.flow.internal.v0.models.fiserv_aut
|
|
|
31943
32150
|
export const fiservMerchant = T['io.flow.internal.v0.models.fiserv_merchant'];
|
|
31944
32151
|
export const fiservMerchantModificationForm = T['io.flow.internal.v0.models.fiserv_merchant_modification_form'];
|
|
31945
32152
|
export const fiservMerchantPutForm = T['io.flow.internal.v0.models.fiserv_merchant_put_form'];
|
|
32153
|
+
export const flatRate = T['io.flow.internal.v0.models.flat_rate'];
|
|
32154
|
+
export const flatRateLabelTransaction = T['io.flow.internal.v0.models.flat_rate_label_transaction'];
|
|
32155
|
+
export const flatRateLabelTransactionType = T['io.flow.internal.v0.enums.flat_rate_label_transaction_type'];
|
|
31946
32156
|
export const flexeWebhook = T['io.flow.internal.v0.models.flexe_webhook'];
|
|
31947
32157
|
export const flowAccount = T['io.flow.internal.v0.models.flow_account'];
|
|
31948
32158
|
export const flowBillingStatement = T['io.flow.internal.v0.models.flow_billing_statement'];
|
|
@@ -31988,9 +32198,6 @@ export const fraudSummary = T['io.flow.internal.v0.models.fraud_summary'];
|
|
|
31988
32198
|
export const ftpFileDeleted = T['io.flow.internal.v0.models.ftp_file_deleted'];
|
|
31989
32199
|
export const ftpFileToProcessUploaded = T['io.flow.internal.v0.models.ftp_file_to_process_uploaded'];
|
|
31990
32200
|
export const ftpFileUpserted = T['io.flow.internal.v0.models.ftp_file_upserted'];
|
|
31991
|
-
export const fuelSurchargeServiceFeeAmountByWeightPutForm = T['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form'];
|
|
31992
|
-
export const fuelSurchargeServiceFeePercentPutForm = T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'];
|
|
31993
|
-
export const fuelSurchargeServiceFeePutForm = T['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form'];
|
|
31994
32201
|
export const fulfillment = T['io.flow.internal.v0.models.fulfillment'];
|
|
31995
32202
|
export const fulfillmentActionForm = T['io.flow.internal.v0.models.fulfillment_action_form'];
|
|
31996
32203
|
export const fulfillmentBusiness = T['io.flow.internal.v0.models.fulfillment_business'];
|
|
@@ -32220,6 +32427,7 @@ export const loyaltyProgram = T['io.flow.internal.v0.models.loyalty_program'];
|
|
|
32220
32427
|
export const loyaltyProgramMessage = T['io.flow.internal.v0.models.loyalty_program_message'];
|
|
32221
32428
|
export const loyaltyProgramReward = T['io.flow.internal.v0.models.loyalty_program_reward'];
|
|
32222
32429
|
export const loyaltyProgramRewards = T['io.flow.internal.v0.models.loyalty_program_rewards'];
|
|
32430
|
+
export const mailClass = T['io.flow.internal.v0.enums.mail_class'];
|
|
32223
32431
|
export const mainTransaction = T['io.flow.internal.v0.models.main_transaction'];
|
|
32224
32432
|
export const mainTransactionDeleted = T['io.flow.internal.v0.models.main_transaction_deleted'];
|
|
32225
32433
|
export const mainTransactionDeletedV2 = T['io.flow.internal.v0.models.main_transaction_deleted_v2'];
|
|
@@ -32261,12 +32469,16 @@ export const merchantOverrideUpserted = T['io.flow.internal.v0.models.merchant_o
|
|
|
32261
32469
|
export const merchantSearchResult = T['io.flow.internal.v0.models.merchant_search_result'];
|
|
32262
32470
|
export const merchantSubsidies = T['io.flow.internal.v0.models.merchant_subsidies'];
|
|
32263
32471
|
export const merchantSummary = T['io.flow.internal.v0.models.merchant_summary'];
|
|
32472
|
+
export const merchantSurcharge = T['io.flow.internal.v0.models.merchant_surcharge'];
|
|
32264
32473
|
export const merchantTransactions = T['io.flow.internal.v0.models.merchant_transactions'];
|
|
32265
32474
|
export const merchantUpserted = T['io.flow.internal.v0.models.merchant_upserted'];
|
|
32266
32475
|
export const messageStamp = T['io.flow.internal.v0.models.message_stamp'];
|
|
32267
32476
|
export const metadataProposition = T['io.flow.internal.v0.models.metadata_proposition'];
|
|
32268
32477
|
export const metadataRatecard = T['io.flow.internal.v0.models.metadata_ratecard'];
|
|
32269
32478
|
export const mixedBagWeight = T['io.flow.internal.v0.enums.mixed_bag_weight'];
|
|
32479
|
+
export const morCostDeleted = T['io.flow.internal.v0.models.mor_cost_deleted'];
|
|
32480
|
+
export const morCostSummary = T['io.flow.internal.v0.models.mor_cost_summary'];
|
|
32481
|
+
export const morCostUpserted = T['io.flow.internal.v0.models.mor_cost_upserted'];
|
|
32270
32482
|
export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
|
|
32271
32483
|
export const negativeDebitMetrics = T['io.flow.internal.v0.models.negative_debit_metrics'];
|
|
32272
32484
|
export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
|
|
@@ -32636,13 +32848,11 @@ export const ratecardServiceFeeDeleted = T['io.flow.internal.v0.models.ratecard_
|
|
|
32636
32848
|
export const ratecardServiceFeeUpserted = T['io.flow.internal.v0.models.ratecard_service_fee_upserted'];
|
|
32637
32849
|
export const ratecardServiceFeesOverride = T['io.flow.internal.v0.models.ratecard_service_fees_override'];
|
|
32638
32850
|
export const ratecardServiceFeesOverrideForm = T['io.flow.internal.v0.models.ratecard_service_fees_override_form'];
|
|
32639
|
-
export const ratecardStandardConfiguration = T['io.flow.internal.v0.models.ratecard_standard_configuration'];
|
|
32640
|
-
export const ratecardStandardConfigurationDeleted = T['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'];
|
|
32641
|
-
export const ratecardStandardConfigurationForm = T['io.flow.internal.v0.models.ratecard_standard_configuration_form'];
|
|
32642
|
-
export const ratecardStandardConfigurationUpserted = T['io.flow.internal.v0.models.ratecard_standard_configuration_upserted'];
|
|
32643
|
-
export const ratecardStandardSettings = T['io.flow.internal.v0.models.ratecard_standard_settings'];
|
|
32644
32851
|
export const ratesChanged = T['io.flow.internal.v0.models.rates_changed'];
|
|
32645
32852
|
export const ratesNamesSummary = T['io.flow.internal.v0.models.rates_names_summary'];
|
|
32853
|
+
export const raveenaItem = T['io.flow.internal.v0.models.raveena_item'];
|
|
32854
|
+
export const raveenaItemForm = T['io.flow.internal.v0.models.raveena_item_form'];
|
|
32855
|
+
export const raveenaItemType = T['io.flow.internal.v0.enums.raveena_item_type'];
|
|
32646
32856
|
export const recordReference = T['io.flow.internal.v0.models.record_reference'];
|
|
32647
32857
|
export const redirect = T['io.flow.internal.v0.models.redirect'];
|
|
32648
32858
|
export const redirectActionCompleted = T['io.flow.internal.v0.models.redirect_action_completed'];
|
|
@@ -32691,6 +32901,8 @@ export const reportingFulfillmentIsVirtual = T['io.flow.internal.v0.enums.report
|
|
|
32691
32901
|
export const reportingFx = T['io.flow.internal.v0.models.reporting_fx'];
|
|
32692
32902
|
export const reportingMerchantBreakdown = T['io.flow.internal.v0.models.reporting_merchant_breakdown'];
|
|
32693
32903
|
export const reportingMerchantFees = T['io.flow.internal.v0.models.reporting_merchant_fees'];
|
|
32904
|
+
export const reportingMerchantFreight = T['io.flow.internal.v0.models.reporting_merchant_freight'];
|
|
32905
|
+
export const reportingMerchantFreightSurcharges = T['io.flow.internal.v0.models.reporting_merchant_freight_surcharges'];
|
|
32694
32906
|
export const reportingMerchantSubsidies = T['io.flow.internal.v0.models.reporting_merchant_subsidies'];
|
|
32695
32907
|
export const reportingMerchantTransactions = T['io.flow.internal.v0.models.reporting_merchant_transactions'];
|
|
32696
32908
|
export const reportingMonetaryValue = T['io.flow.internal.v0.models.reporting_monetary_value'];
|
|
@@ -32720,6 +32932,7 @@ export const restrictionAttributeResult = T['io.flow.internal.v0.enums.restricti
|
|
|
32720
32932
|
export const restrictionAttributeRule = T['io.flow.internal.v0.models.restriction_attribute_rule'];
|
|
32721
32933
|
export const restrictionAttributeRuleCondition = T['io.flow.internal.v0.unions.restriction_attribute_rule_condition'];
|
|
32722
32934
|
export const restrictionBlanketOrganizationExemption = T['io.flow.internal.v0.models.restriction_blanket_organization_exemption'];
|
|
32935
|
+
export const restrictionBlanketOrganizationExemptionForm = T['io.flow.internal.v0.models.restriction_blanket_organization_exemption_form'];
|
|
32723
32936
|
export const restrictionCategory = T['io.flow.internal.v0.models.restriction_category'];
|
|
32724
32937
|
export const restrictionDecision = T['io.flow.internal.v0.enums.restriction_decision'];
|
|
32725
32938
|
export const restrictionFilter = T['io.flow.internal.v0.models.restriction_filter'];
|
|
@@ -32754,7 +32967,9 @@ export const restrictionRuleEffectUpserted = T['io.flow.internal.v0.models.restr
|
|
|
32754
32967
|
export const restrictionRuleExceptionAction = T['io.flow.internal.v0.enums.restriction_rule_exception_action'];
|
|
32755
32968
|
export const restrictionRuleForm = T['io.flow.internal.v0.models.restriction_rule_form'];
|
|
32756
32969
|
export const restrictionRuleLaneExemption = T['io.flow.internal.v0.models.restriction_rule_lane_exemption'];
|
|
32970
|
+
export const restrictionRuleLaneExemptionForm = T['io.flow.internal.v0.models.restriction_rule_lane_exemption_form'];
|
|
32757
32971
|
export const restrictionRuleOrganizationExemption = T['io.flow.internal.v0.models.restriction_rule_organization_exemption'];
|
|
32972
|
+
export const restrictionRuleOrganizationExemptionForm = T['io.flow.internal.v0.models.restriction_rule_organization_exemption_form'];
|
|
32758
32973
|
export const restrictionRuleOverride = T['io.flow.internal.v0.models.restriction_rule_override'];
|
|
32759
32974
|
export const restrictionRuleSummary = T['io.flow.internal.v0.models.restriction_rule_summary'];
|
|
32760
32975
|
export const restrictionRuleUpserted = T['io.flow.internal.v0.models.restriction_rule_upserted'];
|
|
@@ -33056,7 +33271,6 @@ export const taskProcessQueuedEvent = T['io.flow.internal.v0.models.task_process
|
|
|
33056
33271
|
export const taskProcessorKey = T['io.flow.internal.v0.enums.task_processor_key'];
|
|
33057
33272
|
export const taskSummarizeCode = T['io.flow.internal.v0.models.task_summarize_code'];
|
|
33058
33273
|
export const taxAmount = T['io.flow.internal.v0.unions.tax_amount'];
|
|
33059
|
-
export const taxAndDutyInclusivitySetting = T['io.flow.internal.v0.enums.tax_and_duty_inclusivity_setting'];
|
|
33060
33274
|
export const taxCalculation = T['io.flow.internal.v0.models.tax_calculation'];
|
|
33061
33275
|
export const taxCalculationError = T['io.flow.internal.v0.models.tax_calculation_error'];
|
|
33062
33276
|
export const taxCalculationErrorCode = T['io.flow.internal.v0.enums.tax_calculation_error_code'];
|