@flowio/api-internal-prop-types 9.24.111 → 9.24.112
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 +207 -184
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +207 -184
- package/src/api-internal.js +532 -500
package/src/api-internal.js
CHANGED
|
@@ -2882,6 +2882,37 @@ T['io.flow.shopify.external.v0.models.graphql_product'] = PropTypes.exact({
|
|
|
2882
2882
|
|
|
2883
2883
|
T['io.flow.order.management.v0.enums.fulfillment_item_quantity_status'] = PropTypes.oneOf(['new', 'shipped', 'cancelled']);
|
|
2884
2884
|
|
|
2885
|
+
T['io.flow.order.management.v0.models.fulfillment_line_cancel_form'] = PropTypes.exact({
|
|
2886
|
+
item_number: PropTypes.string,
|
|
2887
|
+
line_number: PropTypes.string,
|
|
2888
|
+
quantity: PropTypes.number.isRequired,
|
|
2889
|
+
});
|
|
2890
|
+
|
|
2891
|
+
T['io.flow.order.management.v0.enums.cancel_reason'] = PropTypes.oneOf(['out_of_stock', 'consumer_requested', 'flow_cancel']);
|
|
2892
|
+
T['io.flow.order.management.v0.enums.order_change_source'] = PropTypes.oneOf(['consumer', 'retailer', 'fulfillment', 'flow', 'carrier']);
|
|
2893
|
+
|
|
2894
|
+
T['io.flow.partner.v0.models.partner_fulfillment_complete_cancellation_form'] = PropTypes.exact({
|
|
2895
|
+
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
2896
|
+
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
2897
|
+
});
|
|
2898
|
+
|
|
2899
|
+
T['io.flow.partner.v0.models.partner_fulfillment_cancellation_form'] = PropTypes.exact({
|
|
2900
|
+
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
2901
|
+
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
2902
|
+
lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
2903
|
+
});
|
|
2904
|
+
|
|
2905
|
+
T['io.flow.order.management.v0.models.fulfillment_complete_cancellation_form'] = PropTypes.exact({
|
|
2906
|
+
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
2907
|
+
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
2908
|
+
});
|
|
2909
|
+
|
|
2910
|
+
T['io.flow.order.management.v0.models.fulfillment_cancellation_form'] = PropTypes.exact({
|
|
2911
|
+
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
2912
|
+
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
2913
|
+
lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
2914
|
+
});
|
|
2915
|
+
|
|
2885
2916
|
T['io.flow.adyen.v0.models.sdk_v3_on_complete_data'] = PropTypes.exact({
|
|
2886
2917
|
details: PropTypes.object.isRequired,
|
|
2887
2918
|
payment_data: PropTypes.string,
|
|
@@ -5622,23 +5653,6 @@ T['io.flow.stripe.v0.enums.dispute_status'] = PropTypes.oneOf([
|
|
|
5622
5653
|
'lost',
|
|
5623
5654
|
]);
|
|
5624
5655
|
|
|
5625
|
-
T['io.flow.stripe.v0.enums.dispute_reason'] = PropTypes.oneOf([
|
|
5626
|
-
'bank_cannot_process',
|
|
5627
|
-
'check_returned',
|
|
5628
|
-
'credit_not_processed',
|
|
5629
|
-
'customer_initiated',
|
|
5630
|
-
'debit_not_authorized',
|
|
5631
|
-
'duplicate',
|
|
5632
|
-
'fraudulent',
|
|
5633
|
-
'general',
|
|
5634
|
-
'incorrect_account_details',
|
|
5635
|
-
'insufficient_funds',
|
|
5636
|
-
'product_not_received',
|
|
5637
|
-
'product_unacceptable',
|
|
5638
|
-
'subscription_canceled',
|
|
5639
|
-
'unrecognized',
|
|
5640
|
-
]);
|
|
5641
|
-
|
|
5642
5656
|
T['io.flow.stripe.v0.models.dispute_evidence'] = PropTypes.exact({
|
|
5643
5657
|
access_activity_log: PropTypes.string,
|
|
5644
5658
|
billing_address: PropTypes.string,
|
|
@@ -5669,43 +5683,6 @@ T['io.flow.stripe.v0.models.dispute_evidence'] = PropTypes.exact({
|
|
|
5669
5683
|
uncategorized_text: PropTypes.string,
|
|
5670
5684
|
});
|
|
5671
5685
|
|
|
5672
|
-
T['io.flow.stripe.v0.models.dispute'] = PropTypes.exact({
|
|
5673
|
-
id: PropTypes.string.isRequired,
|
|
5674
|
-
amount: PropTypes.number.isRequired,
|
|
5675
|
-
charge: PropTypes.string.isRequired,
|
|
5676
|
-
currency: PropTypes.string.isRequired,
|
|
5677
|
-
evidence: T['io.flow.stripe.v0.models.dispute_evidence'].isRequired,
|
|
5678
|
-
metadata: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
5679
|
-
payment_intent: PropTypes.string,
|
|
5680
|
-
reason: T['io.flow.stripe.v0.enums.dispute_reason'].isRequired,
|
|
5681
|
-
status: T['io.flow.stripe.v0.enums.dispute_status'].isRequired,
|
|
5682
|
-
object: PropTypes.string.isRequired,
|
|
5683
|
-
balance_transactions: PropTypes.arrayOf(T['io.flow.stripe.v0.models.dispute_balance_transaction']).isRequired,
|
|
5684
|
-
created: PropTypes.number.isRequired,
|
|
5685
|
-
evidence_details: T['io.flow.stripe.v0.models.dispute_evidence_details'].isRequired,
|
|
5686
|
-
is_charge_refundable: PropTypes.bool.isRequired,
|
|
5687
|
-
livemode: PropTypes.bool.isRequired,
|
|
5688
|
-
payment_method_details: T['io.flow.stripe.v0.models.dispute_payment_method_details'],
|
|
5689
|
-
});
|
|
5690
|
-
|
|
5691
|
-
T['io.flow.stripe.v0.models.stripe_dispute_event_data'] = PropTypes.exact({
|
|
5692
|
-
object: T['io.flow.stripe.v0.models.dispute'].isRequired,
|
|
5693
|
-
previous_attributes: PropTypes.object,
|
|
5694
|
-
});
|
|
5695
|
-
|
|
5696
|
-
T['io.flow.stripe.v0.models.stripe_dispute_event'] = PropTypes.exact({
|
|
5697
|
-
id: PropTypes.string.isRequired,
|
|
5698
|
-
api_version: PropTypes.string,
|
|
5699
|
-
data: T['io.flow.stripe.v0.models.stripe_dispute_event_data'].isRequired,
|
|
5700
|
-
request: PropTypes.object,
|
|
5701
|
-
type: T['io.flow.stripe.v0.enums.dispute_event_type'].isRequired,
|
|
5702
|
-
object: PropTypes.string.isRequired,
|
|
5703
|
-
account: PropTypes.string,
|
|
5704
|
-
created: PropTypes.number.isRequired,
|
|
5705
|
-
livemode: PropTypes.bool.isRequired,
|
|
5706
|
-
pending_webhooks: PropTypes.number.isRequired,
|
|
5707
|
-
});
|
|
5708
|
-
|
|
5709
5686
|
T['io.flow.stripe.v0.enums.code_verification_status'] = PropTypes.oneOf(['pending', 'succeeded', 'failed']);
|
|
5710
5687
|
|
|
5711
5688
|
T['io.flow.stripe.v0.models.transfer_data'] = PropTypes.exact({
|
|
@@ -6646,6 +6623,8 @@ T['io.flow.payment.v0.models.capture_identifier'] = PropTypes.exact({
|
|
|
6646
6623
|
primary: PropTypes.bool.isRequired,
|
|
6647
6624
|
});
|
|
6648
6625
|
|
|
6626
|
+
T['io.flow.payment.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor']);
|
|
6627
|
+
|
|
6649
6628
|
T['io.flow.payment.v0.models.card_browser_action_configuration'] = PropTypes.exact({
|
|
6650
6629
|
discriminator: PropTypes.oneOf(['card_browser_action_configuration']).isRequired,
|
|
6651
6630
|
viewport: T['io.flow.payment.v0.enums.threeds_two_challenge_viewport'].isRequired,
|
|
@@ -8187,6 +8166,13 @@ T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.ex
|
|
|
8187
8166
|
id: PropTypes.string.isRequired,
|
|
8188
8167
|
});
|
|
8189
8168
|
|
|
8169
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'] = PropTypes.exact({
|
|
8170
|
+
discriminator: PropTypes.oneOf(['stripe_connect_report_record_deleted']).isRequired,
|
|
8171
|
+
event_id: PropTypes.string.isRequired,
|
|
8172
|
+
timestamp: PropTypes.string.isRequired,
|
|
8173
|
+
id: PropTypes.string.isRequired,
|
|
8174
|
+
});
|
|
8175
|
+
|
|
8190
8176
|
T['io.flow.internal.v0.models.stripe_dispute_deleted'] = PropTypes.exact({
|
|
8191
8177
|
discriminator: PropTypes.oneOf(['stripe_dispute_deleted']).isRequired,
|
|
8192
8178
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8194,6 +8180,13 @@ T['io.flow.internal.v0.models.stripe_dispute_deleted'] = PropTypes.exact({
|
|
|
8194
8180
|
id: PropTypes.string.isRequired,
|
|
8195
8181
|
});
|
|
8196
8182
|
|
|
8183
|
+
T['io.flow.internal.v0.models.shopify_merchant_plan_deleted'] = PropTypes.exact({
|
|
8184
|
+
discriminator: PropTypes.oneOf(['shopify_merchant_plan_deleted']).isRequired,
|
|
8185
|
+
event_id: PropTypes.string.isRequired,
|
|
8186
|
+
timestamp: PropTypes.string.isRequired,
|
|
8187
|
+
id: PropTypes.string.isRequired,
|
|
8188
|
+
});
|
|
8189
|
+
|
|
8197
8190
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'] = PropTypes.exact({
|
|
8198
8191
|
discriminator: PropTypes.oneOf(['shopify_order_fulfillments_snapshot_deleted']).isRequired,
|
|
8199
8192
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8505,6 +8498,14 @@ T['io.flow.internal.v0.models.label_tracking_summary_deleted'] = PropTypes.exact
|
|
|
8505
8498
|
id: PropTypes.string.isRequired,
|
|
8506
8499
|
});
|
|
8507
8500
|
|
|
8501
|
+
T['io.flow.internal.v0.models.label_creation_job_deleted'] = PropTypes.exact({
|
|
8502
|
+
discriminator: PropTypes.oneOf(['label_creation_job_deleted']).isRequired,
|
|
8503
|
+
event_id: PropTypes.string.isRequired,
|
|
8504
|
+
timestamp: PropTypes.string.isRequired,
|
|
8505
|
+
organization: PropTypes.string.isRequired,
|
|
8506
|
+
id: PropTypes.string.isRequired,
|
|
8507
|
+
});
|
|
8508
|
+
|
|
8508
8509
|
T['io.flow.internal.v0.models.order_validation_deleted'] = PropTypes.exact({
|
|
8509
8510
|
discriminator: PropTypes.oneOf(['order_validation_deleted']).isRequired,
|
|
8510
8511
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9129,22 +9130,6 @@ T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
|
|
|
9129
9130
|
id: PropTypes.string.isRequired,
|
|
9130
9131
|
});
|
|
9131
9132
|
|
|
9132
|
-
T['io.flow.internal.v0.models.shipping_estimate_deleted'] = PropTypes.exact({
|
|
9133
|
-
discriminator: PropTypes.oneOf(['shipping_estimate_deleted']).isRequired,
|
|
9134
|
-
event_id: PropTypes.string.isRequired,
|
|
9135
|
-
timestamp: PropTypes.string.isRequired,
|
|
9136
|
-
organization: PropTypes.string.isRequired,
|
|
9137
|
-
id: PropTypes.string.isRequired,
|
|
9138
|
-
});
|
|
9139
|
-
|
|
9140
|
-
T['io.flow.internal.v0.models.adjusted_estimates_deleted'] = PropTypes.exact({
|
|
9141
|
-
discriminator: PropTypes.oneOf(['adjusted_estimates_deleted']).isRequired,
|
|
9142
|
-
event_id: PropTypes.string.isRequired,
|
|
9143
|
-
timestamp: PropTypes.string.isRequired,
|
|
9144
|
-
organization: PropTypes.string.isRequired,
|
|
9145
|
-
id: PropTypes.string.isRequired,
|
|
9146
|
-
});
|
|
9147
|
-
|
|
9148
9133
|
T['io.flow.internal.v0.models.console_mark_unresolvable_form'] = PropTypes.exact({
|
|
9149
9134
|
discriminator: PropTypes.oneOf(['console_mark_unresolvable_form']).isRequired,
|
|
9150
9135
|
order_number: PropTypes.string.isRequired,
|
|
@@ -9623,6 +9608,143 @@ T['io.flow.internal.v0.models.stripe_dispute_upserted'] = PropTypes.exact({
|
|
|
9623
9608
|
dispute: T['io.flow.internal.v0.models.stripe_internal_dispute'].isRequired,
|
|
9624
9609
|
});
|
|
9625
9610
|
|
|
9611
|
+
T['io.flow.stripe.v0.enums.dispute_reason'] = PropTypes.oneOf([
|
|
9612
|
+
'bank_cannot_process',
|
|
9613
|
+
'check_returned',
|
|
9614
|
+
'credit_not_processed',
|
|
9615
|
+
'customer_initiated',
|
|
9616
|
+
'debit_not_authorized',
|
|
9617
|
+
'duplicate',
|
|
9618
|
+
'fraudulent',
|
|
9619
|
+
'general',
|
|
9620
|
+
'incorrect_account_details',
|
|
9621
|
+
'insufficient_funds',
|
|
9622
|
+
'product_not_received',
|
|
9623
|
+
'product_unacceptable',
|
|
9624
|
+
'subscription_canceled',
|
|
9625
|
+
'unrecognized',
|
|
9626
|
+
]);
|
|
9627
|
+
|
|
9628
|
+
T['io.flow.stripe.v0.models.dispute'] = PropTypes.exact({
|
|
9629
|
+
id: PropTypes.string.isRequired,
|
|
9630
|
+
amount: PropTypes.number.isRequired,
|
|
9631
|
+
charge: PropTypes.string.isRequired,
|
|
9632
|
+
currency: PropTypes.string.isRequired,
|
|
9633
|
+
evidence: T['io.flow.stripe.v0.models.dispute_evidence'].isRequired,
|
|
9634
|
+
metadata: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
9635
|
+
payment_intent: PropTypes.string,
|
|
9636
|
+
reason: T['io.flow.stripe.v0.enums.dispute_reason'].isRequired,
|
|
9637
|
+
status: T['io.flow.stripe.v0.enums.dispute_status'].isRequired,
|
|
9638
|
+
object: PropTypes.string.isRequired,
|
|
9639
|
+
balance_transactions: PropTypes.arrayOf(T['io.flow.stripe.v0.models.dispute_balance_transaction']).isRequired,
|
|
9640
|
+
created: PropTypes.number.isRequired,
|
|
9641
|
+
evidence_details: T['io.flow.stripe.v0.models.dispute_evidence_details'].isRequired,
|
|
9642
|
+
is_charge_refundable: PropTypes.bool.isRequired,
|
|
9643
|
+
livemode: PropTypes.bool.isRequired,
|
|
9644
|
+
payment_method_details: T['io.flow.stripe.v0.models.dispute_payment_method_details'],
|
|
9645
|
+
});
|
|
9646
|
+
|
|
9647
|
+
T['io.flow.stripe.v0.models.stripe_dispute_event_data'] = PropTypes.exact({
|
|
9648
|
+
object: T['io.flow.stripe.v0.models.dispute'].isRequired,
|
|
9649
|
+
previous_attributes: PropTypes.object,
|
|
9650
|
+
});
|
|
9651
|
+
|
|
9652
|
+
T['io.flow.stripe.v0.models.stripe_dispute_event'] = PropTypes.exact({
|
|
9653
|
+
id: PropTypes.string.isRequired,
|
|
9654
|
+
api_version: PropTypes.string,
|
|
9655
|
+
data: T['io.flow.stripe.v0.models.stripe_dispute_event_data'].isRequired,
|
|
9656
|
+
request: PropTypes.object,
|
|
9657
|
+
type: T['io.flow.stripe.v0.enums.dispute_event_type'].isRequired,
|
|
9658
|
+
object: PropTypes.string.isRequired,
|
|
9659
|
+
account: PropTypes.string,
|
|
9660
|
+
created: PropTypes.number.isRequired,
|
|
9661
|
+
livemode: PropTypes.bool.isRequired,
|
|
9662
|
+
pending_webhooks: PropTypes.number.isRequired,
|
|
9663
|
+
});
|
|
9664
|
+
|
|
9665
|
+
T['io.flow.stripe.v0.enums.connect_report_transfer_type'] = PropTypes.oneOf([
|
|
9666
|
+
'ManagedMarketsRefundDebit',
|
|
9667
|
+
'ManagedMarketsDutiesAndTaxesAdjustmentDebit',
|
|
9668
|
+
'ManagedMarketsDisputedAmountDebit',
|
|
9669
|
+
]);
|
|
9670
|
+
|
|
9671
|
+
T['io.flow.stripe.v0.enums.connect_report_shop_plan'] = PropTypes.oneOf(['shopify_plus', 'standard']);
|
|
9672
|
+
|
|
9673
|
+
T['io.flow.stripe.v0.models.connect_report_record_payment_metadata'] = PropTypes.exact({
|
|
9674
|
+
shop_id: PropTypes.number,
|
|
9675
|
+
shop_plan: T['io.flow.stripe.v0.enums.connect_report_shop_plan'],
|
|
9676
|
+
checkout_id: PropTypes.string,
|
|
9677
|
+
order_id: PropTypes.number,
|
|
9678
|
+
order_transaction_id: PropTypes.number,
|
|
9679
|
+
transfer_type: T['io.flow.stripe.v0.enums.connect_report_transfer_type'],
|
|
9680
|
+
transfer_exchange_rate: PropTypes.number,
|
|
9681
|
+
charge_total: PropTypes.number,
|
|
9682
|
+
charge_currency: PropTypes.string,
|
|
9683
|
+
charge_exchange_rate: PropTypes.number,
|
|
9684
|
+
duties: PropTypes.number,
|
|
9685
|
+
import_taxes: PropTypes.number,
|
|
9686
|
+
mor_fee: PropTypes.number,
|
|
9687
|
+
fx_fee: PropTypes.number,
|
|
9688
|
+
});
|
|
9689
|
+
|
|
9690
|
+
T['io.flow.stripe.v0.enums.connect_report_reporting_category'] = PropTypes.oneOf(['charge', 'refund', 'payout_reversal', 'transfer', 'transfer_reversal']);
|
|
9691
|
+
|
|
9692
|
+
T['io.flow.stripe.v0.models.connect_report_record'] = PropTypes.exact({
|
|
9693
|
+
created_utc: PropTypes.string.isRequired,
|
|
9694
|
+
charge_id: PropTypes.string,
|
|
9695
|
+
payment_intent_id: PropTypes.string,
|
|
9696
|
+
gross: PropTypes.number.isRequired,
|
|
9697
|
+
fee: PropTypes.number.isRequired,
|
|
9698
|
+
net: PropTypes.number.isRequired,
|
|
9699
|
+
currency: PropTypes.string.isRequired,
|
|
9700
|
+
connected_account: PropTypes.string.isRequired,
|
|
9701
|
+
reporting_category: T['io.flow.stripe.v0.enums.connect_report_reporting_category'].isRequired,
|
|
9702
|
+
dispute_reason: T['io.flow.stripe.v0.enums.dispute_reason'],
|
|
9703
|
+
available_on_utc: PropTypes.string.isRequired,
|
|
9704
|
+
automatic_payout_effective_at_utc: PropTypes.string,
|
|
9705
|
+
source_id: PropTypes.string,
|
|
9706
|
+
customer_facing_amount: PropTypes.number,
|
|
9707
|
+
customer_facing_currency: PropTypes.string,
|
|
9708
|
+
payment_method_type: PropTypes.string,
|
|
9709
|
+
card_brand: PropTypes.string,
|
|
9710
|
+
statement_descriptor: PropTypes.string,
|
|
9711
|
+
payment_metadata: T['io.flow.stripe.v0.models.connect_report_record_payment_metadata'],
|
|
9712
|
+
transfer_metadata: PropTypes.object,
|
|
9713
|
+
});
|
|
9714
|
+
|
|
9715
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'] = PropTypes.exact({
|
|
9716
|
+
discriminator: PropTypes.oneOf(['stripe_connect_report_record_upserted']).isRequired,
|
|
9717
|
+
event_id: PropTypes.string.isRequired,
|
|
9718
|
+
timestamp: PropTypes.string.isRequired,
|
|
9719
|
+
record: T['io.flow.stripe.v0.models.connect_report_record'].isRequired,
|
|
9720
|
+
});
|
|
9721
|
+
|
|
9722
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record'] = PropTypes.exact({
|
|
9723
|
+
id: PropTypes.string.isRequired,
|
|
9724
|
+
file_id: PropTypes.string.isRequired,
|
|
9725
|
+
line_number: PropTypes.number.isRequired,
|
|
9726
|
+
created_utc: PropTypes.string.isRequired,
|
|
9727
|
+
charge_id: PropTypes.string,
|
|
9728
|
+
payment_intent_id: PropTypes.string,
|
|
9729
|
+
gross: PropTypes.number.isRequired,
|
|
9730
|
+
fee: PropTypes.number.isRequired,
|
|
9731
|
+
net: PropTypes.number.isRequired,
|
|
9732
|
+
currency: PropTypes.string.isRequired,
|
|
9733
|
+
connected_account: PropTypes.string.isRequired,
|
|
9734
|
+
reporting_category: T['io.flow.stripe.v0.enums.connect_report_reporting_category'].isRequired,
|
|
9735
|
+
dispute_reason: PropTypes.string,
|
|
9736
|
+
available_on_utc: PropTypes.string.isRequired,
|
|
9737
|
+
automatic_payout_effective_at_utc: PropTypes.string,
|
|
9738
|
+
source_id: PropTypes.string,
|
|
9739
|
+
customer_facing_amount: PropTypes.number,
|
|
9740
|
+
customer_facing_currency: PropTypes.string,
|
|
9741
|
+
payment_method_type: PropTypes.string,
|
|
9742
|
+
card_brand: PropTypes.string,
|
|
9743
|
+
statement_descriptor: PropTypes.string,
|
|
9744
|
+
payment_metadata: T['io.flow.stripe.v0.models.connect_report_record_payment_metadata'],
|
|
9745
|
+
transfer_metadata: PropTypes.object,
|
|
9746
|
+
});
|
|
9747
|
+
|
|
9626
9748
|
T['io.flow.internal.v0.models.stripe_internal_capture'] = PropTypes.exact({
|
|
9627
9749
|
id: PropTypes.string.isRequired,
|
|
9628
9750
|
flow_capture_id: PropTypes.string.isRequired,
|
|
@@ -10623,9 +10745,6 @@ T['io.flow.internal.v0.models.shopify_check_inventory_error'] = PropTypes.exact(
|
|
|
10623
10745
|
numbers: PropTypes.arrayOf(PropTypes.string),
|
|
10624
10746
|
});
|
|
10625
10747
|
|
|
10626
|
-
T['io.flow.label.v0.enums.estimate_origin'] = PropTypes.oneOf(['Shopify', 'GlobalE', 'Aftership', 'Carrier']);
|
|
10627
|
-
T['io.flow.label.v0.enums.estimate_type'] = PropTypes.oneOf(['Estimated', 'Final']);
|
|
10628
|
-
|
|
10629
10748
|
T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
|
|
10630
10749
|
'street_address_is_blank_3pl',
|
|
10631
10750
|
'street_address_is_po_box_3pl',
|
|
@@ -10889,7 +11008,7 @@ T['io.flow.internal.v0.models.restrictions_dailyops'] = PropTypes.exact({
|
|
|
10889
11008
|
num_products_transacting_prs: PropTypes.number.isRequired,
|
|
10890
11009
|
oldest_pr_product_date_setup_complete: PropTypes.string.isRequired,
|
|
10891
11010
|
oldest_pr_date_transacting: PropTypes.string.isRequired,
|
|
10892
|
-
percent_products_reviewed_transacting: PropTypes.number
|
|
11011
|
+
percent_products_reviewed_transacting: PropTypes.number,
|
|
10893
11012
|
num_pv_inflow_net_new: PropTypes.number.isRequired,
|
|
10894
11013
|
num_pv_outflow_human_decisions: PropTypes.number.isRequired,
|
|
10895
11014
|
num_pv_outflow_auto_review_decisions: PropTypes.number.isRequired,
|
|
@@ -10899,6 +11018,9 @@ T['io.flow.internal.v0.models.restrictions_dailyops'] = PropTypes.exact({
|
|
|
10899
11018
|
num_pr_outflow_auto_review_decisions: PropTypes.number.isRequired,
|
|
10900
11019
|
num_pr_outflow_side_effect_decisions: PropTypes.number.isRequired,
|
|
10901
11020
|
num_pending_decisions_transacting: PropTypes.number.isRequired,
|
|
11021
|
+
oldest_insufficient_details_pv_onboarding: PropTypes.string,
|
|
11022
|
+
oldest_insufficient_details_pv_active: PropTypes.string,
|
|
11023
|
+
oldest_insufficient_details_pv_transacting: PropTypes.string,
|
|
10902
11024
|
});
|
|
10903
11025
|
|
|
10904
11026
|
T['io.flow.internal.v0.models.restrictions_dailyops_upserted'] = PropTypes.exact({
|
|
@@ -11055,6 +11177,8 @@ T['io.flow.internal.v0.models.reporting_debug'] = PropTypes.exact({
|
|
|
11055
11177
|
missing_shipping_subsidies: T['io.flow.internal.v0.models.reporting_debug_missing_subsidies'],
|
|
11056
11178
|
});
|
|
11057
11179
|
|
|
11180
|
+
T['io.flow.internal.v0.enums.internal_payment_entity_type'] = PropTypes.oneOf(['authorization', 'capture', 'refund', 'dispute']);
|
|
11181
|
+
|
|
11058
11182
|
T['io.flow.internal.v0.models.report_order_reference'] = PropTypes.exact({
|
|
11059
11183
|
organization_id: PropTypes.string.isRequired,
|
|
11060
11184
|
order_number: PropTypes.string.isRequired,
|
|
@@ -11070,6 +11194,26 @@ T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
|
|
|
11070
11194
|
source_type: T['io.flow.internal.v0.enums.source_type_filter'],
|
|
11071
11195
|
});
|
|
11072
11196
|
|
|
11197
|
+
T['io.flow.internal.v0.enums.report_file_status'] = PropTypes.oneOf(['processing', 'failed', 'succeeded']);
|
|
11198
|
+
T['io.flow.internal.v0.enums.report_file_type'] = PropTypes.oneOf(['stripe_connect_report']);
|
|
11199
|
+
|
|
11200
|
+
T['io.flow.internal.v0.models.report_record_retry_queue'] = PropTypes.exact({
|
|
11201
|
+
id: PropTypes.string.isRequired,
|
|
11202
|
+
report_file_type: T['io.flow.internal.v0.enums.report_file_type'].isRequired,
|
|
11203
|
+
type: T['io.flow.internal.v0.enums.internal_payment_entity_type'].isRequired,
|
|
11204
|
+
report_record_id: PropTypes.string.isRequired,
|
|
11205
|
+
dependent_source_id: PropTypes.string.isRequired,
|
|
11206
|
+
});
|
|
11207
|
+
|
|
11208
|
+
T['io.flow.internal.v0.models.report_file'] = PropTypes.exact({
|
|
11209
|
+
id: PropTypes.string.isRequired,
|
|
11210
|
+
processor: PropTypes.string.isRequired,
|
|
11211
|
+
report_file_type: T['io.flow.internal.v0.enums.report_file_type'].isRequired,
|
|
11212
|
+
file_name: PropTypes.string.isRequired,
|
|
11213
|
+
status: T['io.flow.internal.v0.enums.report_file_status'].isRequired,
|
|
11214
|
+
failure_reason: PropTypes.string,
|
|
11215
|
+
});
|
|
11216
|
+
|
|
11073
11217
|
T['io.flow.internal.v0.enums.report_payment_type'] = PropTypes.oneOf(['credit', 'debit']);
|
|
11074
11218
|
|
|
11075
11219
|
T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
@@ -12161,6 +12305,17 @@ T['io.flow.payment.v0.models.authorization_copy_form'] = PropTypes.exact({
|
|
|
12161
12305
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
12162
12306
|
});
|
|
12163
12307
|
|
|
12308
|
+
T['io.flow.order.management.v0.models.fulfillment_item_quantity'] = PropTypes.exact({
|
|
12309
|
+
status: T['io.flow.order.management.v0.enums.fulfillment_item_quantity_status'].isRequired,
|
|
12310
|
+
quantity: PropTypes.number.isRequired,
|
|
12311
|
+
});
|
|
12312
|
+
|
|
12313
|
+
T['io.flow.order.management.v0.models.fulfillment_item'] = PropTypes.exact({
|
|
12314
|
+
item_number: PropTypes.string.isRequired,
|
|
12315
|
+
line_number: PropTypes.number.isRequired,
|
|
12316
|
+
quantities: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_item_quantity']).isRequired,
|
|
12317
|
+
});
|
|
12318
|
+
|
|
12164
12319
|
T['io.flow.return.v0.models.return_line_item'] = PropTypes.exact({
|
|
12165
12320
|
item_number: PropTypes.string.isRequired,
|
|
12166
12321
|
order_number: PropTypes.string,
|
|
@@ -12506,6 +12661,21 @@ T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
|
12506
12661
|
shop_domain: PropTypes.string,
|
|
12507
12662
|
});
|
|
12508
12663
|
|
|
12664
|
+
T['io.flow.internal.v0.enums.merchant_override_status'] = PropTypes.oneOf(['in_review', 'accepted', 'rejected']);
|
|
12665
|
+
|
|
12666
|
+
T['io.flow.internal.v0.models.merchant_override_decision_form'] = PropTypes.exact({
|
|
12667
|
+
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
12668
|
+
});
|
|
12669
|
+
|
|
12670
|
+
T['io.flow.internal.v0.models.merchant_override'] = PropTypes.exact({
|
|
12671
|
+
id: PropTypes.string.isRequired,
|
|
12672
|
+
organization_id: PropTypes.string.isRequired,
|
|
12673
|
+
item_number: PropTypes.string.isRequired,
|
|
12674
|
+
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
12675
|
+
hs6_code: PropTypes.string.isRequired,
|
|
12676
|
+
merchant_hs6_code: PropTypes.string.isRequired,
|
|
12677
|
+
});
|
|
12678
|
+
|
|
12509
12679
|
T['io.flow.internal.v0.models.merchant_guid_assignment'] = PropTypes.exact({
|
|
12510
12680
|
id: PropTypes.string.isRequired,
|
|
12511
12681
|
merchant_guid: PropTypes.string.isRequired,
|
|
@@ -13112,47 +13282,23 @@ T['io.flow.internal.v0.enums.no_liability_reason_code'] = PropTypes.oneOf([
|
|
|
13112
13282
|
'duty_free_by_trade_agreement',
|
|
13113
13283
|
]);
|
|
13114
13284
|
|
|
13115
|
-
T['io.flow.
|
|
13116
|
-
eori_number: PropTypes.string,
|
|
13117
|
-
});
|
|
13285
|
+
T['io.flow.harmonization.v0.enums.tax_verification_result'] = PropTypes.oneOf(['valid', 'invalid', 'unable_to_validate']);
|
|
13118
13286
|
|
|
13119
|
-
T['io.flow.
|
|
13120
|
-
|
|
13121
|
-
|
|
13122
|
-
|
|
13123
|
-
|
|
13124
|
-
|
|
13125
|
-
|
|
13126
|
-
|
|
13127
|
-
|
|
13128
|
-
|
|
13129
|
-
|
|
13130
|
-
|
|
13131
|
-
'
|
|
13132
|
-
|
|
13133
|
-
|
|
13134
|
-
|
|
13135
|
-
T['io.flow.internal.v0.enums.liability_type'] = PropTypes.oneOf(
|
|
13136
|
-
['full_value_tax', 'low_value_goods_tax', 'high_value_goods_tax', 'duties'],
|
|
13137
|
-
);
|
|
13138
|
-
|
|
13139
|
-
T['io.flow.harmonization.v0.enums.tax_verification_result'] = PropTypes.oneOf(['valid', 'invalid', 'unable_to_validate']);
|
|
13140
|
-
|
|
13141
|
-
T['io.flow.harmonization.v0.models.detailed_tax_registration'] = PropTypes.exact({
|
|
13142
|
-
id: PropTypes.string.isRequired,
|
|
13143
|
-
key: PropTypes.string.isRequired,
|
|
13144
|
-
consumer_company_name: PropTypes.string,
|
|
13145
|
-
number: PropTypes.string.isRequired,
|
|
13146
|
-
country: PropTypes.string.isRequired,
|
|
13147
|
-
success: PropTypes.bool.isRequired,
|
|
13148
|
-
timestamp: PropTypes.string.isRequired,
|
|
13149
|
-
vies_result: T['io.flow.harmonization.v0.enums.tax_verification_result'].isRequired,
|
|
13150
|
-
vies_result_reason: PropTypes.string,
|
|
13151
|
-
vies_company_name: PropTypes.string,
|
|
13152
|
-
vies_company_address: PropTypes.string,
|
|
13153
|
-
company_name_match_result: T['io.flow.harmonization.v0.enums.tax_verification_result'].isRequired,
|
|
13154
|
-
company_name_match_result_reason: PropTypes.string,
|
|
13155
|
-
});
|
|
13287
|
+
T['io.flow.harmonization.v0.models.detailed_tax_registration'] = PropTypes.exact({
|
|
13288
|
+
id: PropTypes.string.isRequired,
|
|
13289
|
+
key: PropTypes.string.isRequired,
|
|
13290
|
+
consumer_company_name: PropTypes.string,
|
|
13291
|
+
number: PropTypes.string.isRequired,
|
|
13292
|
+
country: PropTypes.string.isRequired,
|
|
13293
|
+
success: PropTypes.bool.isRequired,
|
|
13294
|
+
timestamp: PropTypes.string.isRequired,
|
|
13295
|
+
vies_result: T['io.flow.harmonization.v0.enums.tax_verification_result'].isRequired,
|
|
13296
|
+
vies_result_reason: PropTypes.string,
|
|
13297
|
+
vies_company_name: PropTypes.string,
|
|
13298
|
+
vies_company_address: PropTypes.string,
|
|
13299
|
+
company_name_match_result: T['io.flow.harmonization.v0.enums.tax_verification_result'].isRequired,
|
|
13300
|
+
company_name_match_result_reason: PropTypes.string,
|
|
13301
|
+
});
|
|
13156
13302
|
|
|
13157
13303
|
T['io.flow.internal.v0.models.vies_result'] = PropTypes.exact({
|
|
13158
13304
|
country: PropTypes.string.isRequired,
|
|
@@ -13278,6 +13424,31 @@ T['io.flow.label.v0.models.shipping_label_document'] = PropTypes.exact({
|
|
|
13278
13424
|
});
|
|
13279
13425
|
|
|
13280
13426
|
T['io.flow.label.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
|
|
13427
|
+
|
|
13428
|
+
T['io.flow.internal.v0.models.liability_party_details'] = PropTypes.exact({
|
|
13429
|
+
eori_number: PropTypes.string,
|
|
13430
|
+
});
|
|
13431
|
+
|
|
13432
|
+
T['io.flow.internal.v0.enums.tax_party'] = PropTypes.oneOf(['consumer', 'organization', 'flow', 'carrier']);
|
|
13433
|
+
|
|
13434
|
+
T['io.flow.internal.v0.enums.nature_of_sale'] = PropTypes.oneOf([
|
|
13435
|
+
'consumer',
|
|
13436
|
+
'to_non_registered_business',
|
|
13437
|
+
'to_registered_business',
|
|
13438
|
+
'flash_title',
|
|
13439
|
+
]);
|
|
13440
|
+
|
|
13441
|
+
T['io.flow.internal.v0.enums.reporting_scheme'] = PropTypes.oneOf([
|
|
13442
|
+
'immediate_reporting_to_tax_authority',
|
|
13443
|
+
'periodic_reporting_to_tax_authority',
|
|
13444
|
+
'paid_at_border',
|
|
13445
|
+
'paid_on_delivery',
|
|
13446
|
+
]);
|
|
13447
|
+
|
|
13448
|
+
T['io.flow.internal.v0.enums.liability_type'] = PropTypes.oneOf(
|
|
13449
|
+
['full_value_tax', 'low_value_goods_tax', 'high_value_goods_tax', 'duties'],
|
|
13450
|
+
);
|
|
13451
|
+
|
|
13281
13452
|
T['io.flow.internal.v0.enums.label_request_result_state'] = PropTypes.oneOf(['success', 'failure']);
|
|
13282
13453
|
T['io.flow.label.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
|
|
13283
13454
|
|
|
@@ -13372,24 +13543,6 @@ T['io.flow.internal.v0.models.order_validation_upserted'] = PropTypes.exact({
|
|
|
13372
13543
|
order_validation: T['io.flow.internal.v0.models.order_validation'].isRequired,
|
|
13373
13544
|
});
|
|
13374
13545
|
|
|
13375
|
-
T['io.flow.internal.v0.models.label_request_result'] = PropTypes.exact({
|
|
13376
|
-
id: PropTypes.string.isRequired,
|
|
13377
|
-
created_at: PropTypes.string.isRequired,
|
|
13378
|
-
state: T['io.flow.internal.v0.enums.label_request_result_state'].isRequired,
|
|
13379
|
-
organization_id: PropTypes.string.isRequired,
|
|
13380
|
-
order_number: PropTypes.string.isRequired,
|
|
13381
|
-
label_request_method: T['io.flow.label.v0.enums.label_request_method'].isRequired,
|
|
13382
|
-
carrier_id: PropTypes.string,
|
|
13383
|
-
carrier_tracking_number: PropTypes.string,
|
|
13384
|
-
url: PropTypes.string,
|
|
13385
|
-
error: PropTypes.string,
|
|
13386
|
-
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'],
|
|
13387
|
-
origin_country: PropTypes.string,
|
|
13388
|
-
destination_country: PropTypes.string,
|
|
13389
|
-
reference_id: PropTypes.string,
|
|
13390
|
-
logistics_integration_provider: PropTypes.string,
|
|
13391
|
-
});
|
|
13392
|
-
|
|
13393
13546
|
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
13394
13547
|
id: PropTypes.string.isRequired,
|
|
13395
13548
|
order_number: PropTypes.string.isRequired,
|
|
@@ -13512,9 +13665,18 @@ T['io.flow.internal.v0.models.label_creation_job'] = PropTypes.exact({
|
|
|
13512
13665
|
service_id: PropTypes.string,
|
|
13513
13666
|
carrier_tracking_number: PropTypes.string,
|
|
13514
13667
|
flow_tracking_number: PropTypes.string,
|
|
13668
|
+
label_id: PropTypes.string,
|
|
13515
13669
|
errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
13516
13670
|
});
|
|
13517
13671
|
|
|
13672
|
+
T['io.flow.internal.v0.models.label_creation_job_upserted'] = PropTypes.exact({
|
|
13673
|
+
discriminator: PropTypes.oneOf(['label_creation_job_upserted']).isRequired,
|
|
13674
|
+
event_id: PropTypes.string.isRequired,
|
|
13675
|
+
timestamp: PropTypes.string.isRequired,
|
|
13676
|
+
organization: PropTypes.string.isRequired,
|
|
13677
|
+
label_creation_job: T['io.flow.internal.v0.models.label_creation_job'].isRequired,
|
|
13678
|
+
});
|
|
13679
|
+
|
|
13518
13680
|
T['io.flow.internal.v0.enums.label_cancellation_error_code'] = PropTypes.oneOf(['already_used', 'carrier_unsupported']);
|
|
13519
13681
|
|
|
13520
13682
|
T['io.flow.internal.v0.models.label_cancellation_error'] = PropTypes.exact({
|
|
@@ -13576,7 +13738,7 @@ T['io.flow.internal.v0.models.item_sales_margin'] = PropTypes.exact({
|
|
|
13576
13738
|
position: PropTypes.number.isRequired,
|
|
13577
13739
|
});
|
|
13578
13740
|
|
|
13579
|
-
T['io.flow.internal.v0.enums.harmonization_decision_source'] = PropTypes.oneOf(['human', 'legacy_model', 'enterprise_model']);
|
|
13741
|
+
T['io.flow.internal.v0.enums.harmonization_decision_source'] = PropTypes.oneOf(['human', 'legacy_model', 'enterprise_model', 'merchant']);
|
|
13580
13742
|
T['io.flow.internal.v0.enums.item_type'] = PropTypes.oneOf(['standard', 'multi_product']);
|
|
13581
13743
|
|
|
13582
13744
|
T['io.flow.common.v0.models.item_reference'] = PropTypes.exact({
|
|
@@ -13689,6 +13851,12 @@ T['io.flow.payment.v0.enums.card_type'] = PropTypes.oneOf([
|
|
|
13689
13851
|
'visa',
|
|
13690
13852
|
]);
|
|
13691
13853
|
|
|
13854
|
+
T['io.flow.payment.v0.models.external_card'] = PropTypes.exact({
|
|
13855
|
+
discriminator: PropTypes.oneOf(['external_card']).isRequired,
|
|
13856
|
+
id: PropTypes.string.isRequired,
|
|
13857
|
+
type: T['io.flow.payment.v0.enums.card_type'],
|
|
13858
|
+
});
|
|
13859
|
+
|
|
13692
13860
|
T['io.flow.payment.v0.models.card_confirmation_summary'] = PropTypes.exact({
|
|
13693
13861
|
discriminator: PropTypes.oneOf(['card_confirmation_summary']).isRequired,
|
|
13694
13862
|
type: T['io.flow.payment.v0.enums.card_type'],
|
|
@@ -14003,6 +14171,64 @@ T['io.flow.payment.gateway.v0.unions.action'] = PropTypes.oneOfType([
|
|
|
14003
14171
|
]);
|
|
14004
14172
|
|
|
14005
14173
|
T['io.flow.internal.v0.enums.rate_source'] = PropTypes.oneOf(['calculated', 'market']);
|
|
14174
|
+
T['io.flow.experience.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
14175
|
+
|
|
14176
|
+
T['io.flow.experience.v0.models.incoterm_summary'] = PropTypes.exact({
|
|
14177
|
+
configuration: T['io.flow.experience.v0.enums.incoterm_configuration'].isRequired,
|
|
14178
|
+
includes: T['io.flow.experience.v0.models.incoterm_includes'].isRequired,
|
|
14179
|
+
reason: PropTypes.string,
|
|
14180
|
+
});
|
|
14181
|
+
|
|
14182
|
+
T['io.flow.experience.v0.models.destination_contact_detail'] = PropTypes.exact({
|
|
14183
|
+
title: PropTypes.string.isRequired,
|
|
14184
|
+
country: PropTypes.string.isRequired,
|
|
14185
|
+
import_identifier: PropTypes.string.isRequired,
|
|
14186
|
+
});
|
|
14187
|
+
|
|
14188
|
+
T['io.flow.payment.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.device_details_browser']]);
|
|
14189
|
+
|
|
14190
|
+
T['io.flow.payment.gateway.v0.models.payment_request_form'] = PropTypes.exact({
|
|
14191
|
+
amount: PropTypes.number.isRequired,
|
|
14192
|
+
currency: PropTypes.string.isRequired,
|
|
14193
|
+
order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
|
|
14194
|
+
device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
|
|
14195
|
+
locale: PropTypes.string,
|
|
14196
|
+
return_url: PropTypes.string.isRequired,
|
|
14197
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
14198
|
+
reference: PropTypes.string,
|
|
14199
|
+
payment_method_data: T['io.flow.payment.gateway.v0.unions.payment_method_data'],
|
|
14200
|
+
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']),
|
|
14201
|
+
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
14202
|
+
});
|
|
14203
|
+
|
|
14204
|
+
T['io.flow.experience.v0.models.order_geo'] = PropTypes.exact({
|
|
14205
|
+
ip: PropTypes.string,
|
|
14206
|
+
country: PropTypes.string.isRequired,
|
|
14207
|
+
currency: PropTypes.string,
|
|
14208
|
+
language: PropTypes.string,
|
|
14209
|
+
});
|
|
14210
|
+
|
|
14211
|
+
T['io.flow.harmonization.v0.models.tax_registration'] = PropTypes.exact({
|
|
14212
|
+
id: PropTypes.string.isRequired,
|
|
14213
|
+
key: PropTypes.string.isRequired,
|
|
14214
|
+
number: PropTypes.string.isRequired,
|
|
14215
|
+
timestamp: PropTypes.string.isRequired,
|
|
14216
|
+
result: T['io.flow.harmonization.v0.enums.tax_verification_result'].isRequired,
|
|
14217
|
+
result_reason: PropTypes.string,
|
|
14218
|
+
name: PropTypes.string,
|
|
14219
|
+
address: PropTypes.string,
|
|
14220
|
+
company_name: PropTypes.string,
|
|
14221
|
+
});
|
|
14222
|
+
|
|
14223
|
+
T['io.flow.experience.v0.models.order_rules_summary'] = PropTypes.exact({
|
|
14224
|
+
applied: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_rule_reference']).isRequired,
|
|
14225
|
+
});
|
|
14226
|
+
|
|
14227
|
+
T['io.flow.common.v0.enums.order_merchant_of_record'] = PropTypes.oneOf(['flow', 'organization', 'mixed']);
|
|
14228
|
+
|
|
14229
|
+
T['io.flow.payment.v0.models.card_metadata'] = PropTypes.exact({
|
|
14230
|
+
merchant_of_record: T['io.flow.common.v0.enums.order_merchant_of_record'],
|
|
14231
|
+
});
|
|
14006
14232
|
|
|
14007
14233
|
T['io.flow.common.v0.models.session_reference'] = PropTypes.exact({
|
|
14008
14234
|
id: PropTypes.string.isRequired,
|
|
@@ -14359,115 +14585,6 @@ T['io.flow.internal.v0.models.fulfillment_shopper_breakdown'] = PropTypes.exact(
|
|
|
14359
14585
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14360
14586
|
});
|
|
14361
14587
|
|
|
14362
|
-
T['io.flow.order.management.v0.models.fulfillment_item_quantity'] = PropTypes.exact({
|
|
14363
|
-
status: T['io.flow.order.management.v0.enums.fulfillment_item_quantity_status'].isRequired,
|
|
14364
|
-
quantity: PropTypes.number.isRequired,
|
|
14365
|
-
});
|
|
14366
|
-
|
|
14367
|
-
T['io.flow.order.management.v0.models.fulfillment_item'] = PropTypes.exact({
|
|
14368
|
-
item_number: PropTypes.string.isRequired,
|
|
14369
|
-
line_number: PropTypes.number.isRequired,
|
|
14370
|
-
quantities: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_item_quantity']).isRequired,
|
|
14371
|
-
});
|
|
14372
|
-
|
|
14373
|
-
T['io.flow.internal.v0.models.fulfillment_shipment_tracking'] = PropTypes.exact({
|
|
14374
|
-
fulfillment_key: PropTypes.string.isRequired,
|
|
14375
|
-
flow_tracking_number: PropTypes.string.isRequired,
|
|
14376
|
-
carrier_tracking_number: PropTypes.string,
|
|
14377
|
-
carrier_tracking_url: PropTypes.string,
|
|
14378
|
-
items: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_item']).isRequired,
|
|
14379
|
-
});
|
|
14380
|
-
|
|
14381
|
-
T['io.flow.experience.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
14382
|
-
|
|
14383
|
-
T['io.flow.experience.v0.models.incoterm_summary'] = PropTypes.exact({
|
|
14384
|
-
configuration: T['io.flow.experience.v0.enums.incoterm_configuration'].isRequired,
|
|
14385
|
-
includes: T['io.flow.experience.v0.models.incoterm_includes'].isRequired,
|
|
14386
|
-
reason: PropTypes.string,
|
|
14387
|
-
});
|
|
14388
|
-
|
|
14389
|
-
T['io.flow.experience.v0.models.destination_contact_detail'] = PropTypes.exact({
|
|
14390
|
-
title: PropTypes.string.isRequired,
|
|
14391
|
-
country: PropTypes.string.isRequired,
|
|
14392
|
-
import_identifier: PropTypes.string.isRequired,
|
|
14393
|
-
});
|
|
14394
|
-
|
|
14395
|
-
T['io.flow.payment.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.device_details_browser']]);
|
|
14396
|
-
|
|
14397
|
-
T['io.flow.payment.gateway.v0.models.payment_request_form'] = PropTypes.exact({
|
|
14398
|
-
amount: PropTypes.number.isRequired,
|
|
14399
|
-
currency: PropTypes.string.isRequired,
|
|
14400
|
-
order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
|
|
14401
|
-
device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
|
|
14402
|
-
locale: PropTypes.string,
|
|
14403
|
-
return_url: PropTypes.string.isRequired,
|
|
14404
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
14405
|
-
reference: PropTypes.string,
|
|
14406
|
-
payment_method_data: T['io.flow.payment.gateway.v0.unions.payment_method_data'],
|
|
14407
|
-
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']),
|
|
14408
|
-
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
14409
|
-
});
|
|
14410
|
-
|
|
14411
|
-
T['io.flow.experience.v0.models.order_geo'] = PropTypes.exact({
|
|
14412
|
-
ip: PropTypes.string,
|
|
14413
|
-
country: PropTypes.string.isRequired,
|
|
14414
|
-
currency: PropTypes.string,
|
|
14415
|
-
language: PropTypes.string,
|
|
14416
|
-
});
|
|
14417
|
-
|
|
14418
|
-
T['io.flow.harmonization.v0.models.tax_registration'] = PropTypes.exact({
|
|
14419
|
-
id: PropTypes.string.isRequired,
|
|
14420
|
-
key: PropTypes.string.isRequired,
|
|
14421
|
-
number: PropTypes.string.isRequired,
|
|
14422
|
-
timestamp: PropTypes.string.isRequired,
|
|
14423
|
-
result: T['io.flow.harmonization.v0.enums.tax_verification_result'].isRequired,
|
|
14424
|
-
result_reason: PropTypes.string,
|
|
14425
|
-
name: PropTypes.string,
|
|
14426
|
-
address: PropTypes.string,
|
|
14427
|
-
company_name: PropTypes.string,
|
|
14428
|
-
});
|
|
14429
|
-
|
|
14430
|
-
T['io.flow.experience.v0.models.order_rules_summary'] = PropTypes.exact({
|
|
14431
|
-
applied: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_rule_reference']).isRequired,
|
|
14432
|
-
});
|
|
14433
|
-
|
|
14434
|
-
T['io.flow.common.v0.enums.order_merchant_of_record'] = PropTypes.oneOf(['flow', 'organization', 'mixed']);
|
|
14435
|
-
|
|
14436
|
-
T['io.flow.payment.v0.models.card_metadata'] = PropTypes.exact({
|
|
14437
|
-
merchant_of_record: T['io.flow.common.v0.enums.order_merchant_of_record'],
|
|
14438
|
-
});
|
|
14439
|
-
|
|
14440
|
-
T['io.flow.order.management.v0.models.fulfillment_line_cancel_form'] = PropTypes.exact({
|
|
14441
|
-
item_number: PropTypes.string,
|
|
14442
|
-
line_number: PropTypes.string,
|
|
14443
|
-
quantity: PropTypes.number.isRequired,
|
|
14444
|
-
});
|
|
14445
|
-
|
|
14446
|
-
T['io.flow.order.management.v0.enums.cancel_reason'] = PropTypes.oneOf(['out_of_stock', 'consumer_requested', 'flow_cancel']);
|
|
14447
|
-
T['io.flow.order.management.v0.enums.order_change_source'] = PropTypes.oneOf(['consumer', 'retailer', 'fulfillment', 'flow', 'carrier']);
|
|
14448
|
-
|
|
14449
|
-
T['io.flow.partner.v0.models.partner_fulfillment_complete_cancellation_form'] = PropTypes.exact({
|
|
14450
|
-
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
14451
|
-
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
14452
|
-
});
|
|
14453
|
-
|
|
14454
|
-
T['io.flow.partner.v0.models.partner_fulfillment_cancellation_form'] = PropTypes.exact({
|
|
14455
|
-
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
14456
|
-
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
14457
|
-
lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
14458
|
-
});
|
|
14459
|
-
|
|
14460
|
-
T['io.flow.order.management.v0.models.fulfillment_complete_cancellation_form'] = PropTypes.exact({
|
|
14461
|
-
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
14462
|
-
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
14463
|
-
});
|
|
14464
|
-
|
|
14465
|
-
T['io.flow.order.management.v0.models.fulfillment_cancellation_form'] = PropTypes.exact({
|
|
14466
|
-
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
14467
|
-
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
14468
|
-
lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
14469
|
-
});
|
|
14470
|
-
|
|
14471
14588
|
T['io.flow.internal.v0.models.fulfillment_trigger_time'] = PropTypes.exact({
|
|
14472
14589
|
discriminator: PropTypes.oneOf(['by_time']).isRequired,
|
|
14473
14590
|
placeholder: PropTypes.string,
|
|
@@ -14530,7 +14647,7 @@ T['io.flow.internal.v0.models.shopper_lines'] = PropTypes.exact({
|
|
|
14530
14647
|
total: PropTypes.number.isRequired,
|
|
14531
14648
|
});
|
|
14532
14649
|
|
|
14533
|
-
T['io.flow.experience.v0.enums.order_type'] = PropTypes.oneOf(['standard', 'replacement']);
|
|
14650
|
+
T['io.flow.experience.v0.enums.order_type'] = PropTypes.oneOf(['standard', 'replacement', 'edit']);
|
|
14534
14651
|
|
|
14535
14652
|
T['io.flow.internal.v0.models.fulfillment_business'] = PropTypes.exact({
|
|
14536
14653
|
vat_registration_number: PropTypes.string.isRequired,
|
|
@@ -15490,6 +15607,9 @@ T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
|
|
|
15490
15607
|
'inch',
|
|
15491
15608
|
'foot',
|
|
15492
15609
|
'cubic_inch',
|
|
15610
|
+
'cubic_foot',
|
|
15611
|
+
'cubic_millimeter',
|
|
15612
|
+
'cubic_centimeter',
|
|
15493
15613
|
'cubic_meter',
|
|
15494
15614
|
'gram',
|
|
15495
15615
|
'kilogram',
|
|
@@ -15839,6 +15959,12 @@ T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
|
|
|
15839
15959
|
'tip',
|
|
15840
15960
|
]);
|
|
15841
15961
|
|
|
15962
|
+
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
15963
|
+
id: PropTypes.string,
|
|
15964
|
+
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
15965
|
+
weight_break: PropTypes.number,
|
|
15966
|
+
});
|
|
15967
|
+
|
|
15842
15968
|
T['io.flow.experience.v0.models.allocation_order_summary'] = PropTypes.exact({
|
|
15843
15969
|
id: PropTypes.string.isRequired,
|
|
15844
15970
|
number: PropTypes.string.isRequired,
|
|
@@ -18370,6 +18496,12 @@ T['io.flow.trueup.v0.models.label_base'] = PropTypes.exact({
|
|
|
18370
18496
|
weight: PropTypes.number.isRequired,
|
|
18371
18497
|
});
|
|
18372
18498
|
|
|
18499
|
+
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
18500
|
+
units: T['io.flow.trueup.v0.models.label_units'].isRequired,
|
|
18501
|
+
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
18502
|
+
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']).isRequired,
|
|
18503
|
+
});
|
|
18504
|
+
|
|
18373
18505
|
T['io.flow.internal.v0.models.carrier_charge_units'] = PropTypes.exact({
|
|
18374
18506
|
currency: PropTypes.string.isRequired,
|
|
18375
18507
|
weight: T['io.flow.units.v0.enums.unit_of_weight'],
|
|
@@ -19219,7 +19351,6 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
19219
19351
|
'tax_refund',
|
|
19220
19352
|
'non_l4l_tax_duty_fx',
|
|
19221
19353
|
'ge_revenue_share',
|
|
19222
|
-
'tax_duty_delta',
|
|
19223
19354
|
]);
|
|
19224
19355
|
|
|
19225
19356
|
T['io.flow.internal.v0.models.debug_original_transaction_summary'] = PropTypes.exact({
|
|
@@ -19414,6 +19545,7 @@ T['io.flow.internal.v0.models.restriction_item_request_form'] = PropTypes.exact(
|
|
|
19414
19545
|
user_ids: PropTypes.arrayOf(PropTypes.string),
|
|
19415
19546
|
categories: PropTypes.arrayOf(PropTypes.string),
|
|
19416
19547
|
product_name_query: PropTypes.string,
|
|
19548
|
+
hs6: PropTypes.string,
|
|
19417
19549
|
positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
19418
19550
|
negative_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
19419
19551
|
product_id: PropTypes.string,
|
|
@@ -19853,21 +19985,21 @@ T['io.flow.partner.v0.models.partner_fulfillment'] = PropTypes.exact({
|
|
|
19853
19985
|
center: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.center_summary']),
|
|
19854
19986
|
});
|
|
19855
19987
|
|
|
19856
|
-
T['io.flow.
|
|
19857
|
-
discriminator: PropTypes.oneOf(['order_fulfillment_upserted']).isRequired,
|
|
19858
|
-
event_id: PropTypes.string.isRequired,
|
|
19859
|
-
timestamp: PropTypes.string.isRequired,
|
|
19988
|
+
T['io.flow.order.management.v0.models.fulfillment'] = PropTypes.exact({
|
|
19860
19989
|
organization: PropTypes.string.isRequired,
|
|
19861
19990
|
key: PropTypes.string.isRequired,
|
|
19862
|
-
|
|
19991
|
+
number: PropTypes.string.isRequired,
|
|
19863
19992
|
items: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_item']).isRequired,
|
|
19864
19993
|
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
19865
19994
|
});
|
|
19866
19995
|
|
|
19867
|
-
T['io.flow.
|
|
19996
|
+
T['io.flow.internal.v0.models.order_fulfillment_upserted'] = PropTypes.exact({
|
|
19997
|
+
discriminator: PropTypes.oneOf(['order_fulfillment_upserted']).isRequired,
|
|
19998
|
+
event_id: PropTypes.string.isRequired,
|
|
19999
|
+
timestamp: PropTypes.string.isRequired,
|
|
19868
20000
|
organization: PropTypes.string.isRequired,
|
|
19869
20001
|
key: PropTypes.string.isRequired,
|
|
19870
|
-
|
|
20002
|
+
order_number: PropTypes.string.isRequired,
|
|
19871
20003
|
items: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_item']).isRequired,
|
|
19872
20004
|
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
19873
20005
|
});
|
|
@@ -20027,6 +20159,7 @@ T['io.flow.payment.v0.unions.expandable_card'] = PropTypes.oneOfType([
|
|
|
20027
20159
|
T['io.flow.payment.v0.models.card'],
|
|
20028
20160
|
T['io.flow.payment.v0.models.card_reference'],
|
|
20029
20161
|
T['io.flow.payment.v0.models.card_summary'],
|
|
20162
|
+
T['io.flow.payment.v0.models.external_card'],
|
|
20030
20163
|
]);
|
|
20031
20164
|
|
|
20032
20165
|
T['io.flow.payment.v0.models.ach_authorization_form'] = PropTypes.exact({
|
|
@@ -20384,6 +20517,13 @@ T['io.flow.internal.v0.models.shopify_merchant_plan'] = PropTypes.exact({
|
|
|
20384
20517
|
plan: T['io.flow.internal.v0.enums.shopify_plan_type'].isRequired,
|
|
20385
20518
|
});
|
|
20386
20519
|
|
|
20520
|
+
T['io.flow.internal.v0.models.shopify_merchant_plan_upserted'] = PropTypes.exact({
|
|
20521
|
+
discriminator: PropTypes.oneOf(['shopify_merchant_plan_upserted']).isRequired,
|
|
20522
|
+
event_id: PropTypes.string.isRequired,
|
|
20523
|
+
timestamp: PropTypes.string.isRequired,
|
|
20524
|
+
shopify_merchant_plan: T['io.flow.internal.v0.models.shopify_merchant_plan'].isRequired,
|
|
20525
|
+
});
|
|
20526
|
+
|
|
20387
20527
|
T['io.flow.internal.v0.models.authorization_bundle'] = PropTypes.exact({
|
|
20388
20528
|
id: PropTypes.string.isRequired,
|
|
20389
20529
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -21508,22 +21648,10 @@ T['io.flow.billing.v0.models.transaction'] = PropTypes.exact({
|
|
|
21508
21648
|
created_at: PropTypes.string.isRequired,
|
|
21509
21649
|
updated_at: PropTypes.string.isRequired,
|
|
21510
21650
|
});
|
|
21511
|
-
|
|
21512
|
-
T['io.flow.internal.v0.models.debug_order_transaction_details'] = PropTypes.exact({
|
|
21513
|
-
transaction: T['io.flow.billing.v0.models.transaction'].isRequired,
|
|
21514
|
-
payout_details: T['io.flow.billing.v0.unions.payout_status'],
|
|
21515
|
-
});
|
|
21516
|
-
|
|
21517
|
-
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
21518
|
-
units: T['io.flow.trueup.v0.models.label_units'].isRequired,
|
|
21519
|
-
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
21520
|
-
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']).isRequired,
|
|
21521
|
-
});
|
|
21522
|
-
|
|
21523
|
-
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
21524
|
-
id: PropTypes.string,
|
|
21525
|
-
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
21526
|
-
weight_break: PropTypes.number,
|
|
21651
|
+
|
|
21652
|
+
T['io.flow.internal.v0.models.debug_order_transaction_details'] = PropTypes.exact({
|
|
21653
|
+
transaction: T['io.flow.billing.v0.models.transaction'].isRequired,
|
|
21654
|
+
payout_details: T['io.flow.billing.v0.unions.payout_status'],
|
|
21527
21655
|
});
|
|
21528
21656
|
|
|
21529
21657
|
T['io.flow.internal.v0.enums.address_configuration_setting_province_code'] = PropTypes.oneOf(['iso_3166_2', 'name']);
|
|
@@ -21856,6 +21984,7 @@ T['io.flow.ratecard.v0.models.eei_filing_ratecard_fee'] = PropTypes.exact({
|
|
|
21856
21984
|
T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee'] = PropTypes.exact({
|
|
21857
21985
|
discriminator: PropTypes.oneOf(['duties_taxes_paid_surcharge_service_fee']).isRequired,
|
|
21858
21986
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
21987
|
+
destination_countries: PropTypes.arrayOf(PropTypes.string),
|
|
21859
21988
|
starts_at: PropTypes.string,
|
|
21860
21989
|
ends_at: PropTypes.string,
|
|
21861
21990
|
});
|
|
@@ -22551,6 +22680,12 @@ T['io.flow.internal.v0.models.checkout_payment'] = PropTypes.exact({
|
|
|
22551
22680
|
authorization_parameters: PropTypes.arrayOf(T['io.flow.internal.v0.models.authorization_parameters']).isRequired,
|
|
22552
22681
|
});
|
|
22553
22682
|
|
|
22683
|
+
T['io.flow.payment.v0.models.payment_fee'] = PropTypes.exact({
|
|
22684
|
+
type: T['io.flow.payment.v0.enums.payment_fee_type'].isRequired,
|
|
22685
|
+
money: T['io.flow.common.v0.models.money'].isRequired,
|
|
22686
|
+
base: T['io.flow.common.v0.models.money'],
|
|
22687
|
+
});
|
|
22688
|
+
|
|
22554
22689
|
T['io.flow.payment.v0.models.capture'] = PropTypes.exact({
|
|
22555
22690
|
id: PropTypes.string.isRequired,
|
|
22556
22691
|
key: PropTypes.string.isRequired,
|
|
@@ -22562,6 +22697,7 @@ T['io.flow.payment.v0.models.capture'] = PropTypes.exact({
|
|
|
22562
22697
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22563
22698
|
status: T['io.flow.payment.v0.enums.capture_status'],
|
|
22564
22699
|
base: T['io.flow.common.v0.models.money'],
|
|
22700
|
+
fees: PropTypes.arrayOf(T['io.flow.payment.v0.models.payment_fee']),
|
|
22565
22701
|
});
|
|
22566
22702
|
|
|
22567
22703
|
T['io.flow.payment.v0.models.refund_capture_summary'] = PropTypes.exact({
|
|
@@ -22648,27 +22784,6 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
|
|
|
22648
22784
|
|
|
22649
22785
|
T['io.flow.merchant.onboarding.v0.unions.merchant_application'] = PropTypes.oneOfType([T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application']]);
|
|
22650
22786
|
|
|
22651
|
-
T['io.flow.internal.v0.models.tax_duty_delta_metadata_expected_processing'] = PropTypes.exact({
|
|
22652
|
-
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
22653
|
-
duty: T['io.flow.common.v0.models.money'].isRequired,
|
|
22654
|
-
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
22655
|
-
});
|
|
22656
|
-
|
|
22657
|
-
T['io.flow.internal.v0.models.tax_duty_delta_metadata_expected'] = PropTypes.exact({
|
|
22658
|
-
processing: T['io.flow.internal.v0.models.tax_duty_delta_metadata_expected_processing'].isRequired,
|
|
22659
|
-
});
|
|
22660
|
-
|
|
22661
|
-
T['io.flow.internal.v0.models.tax_duty_delta_metadata_actual_processing'] = PropTypes.exact({
|
|
22662
|
-
capture: T['io.flow.common.v0.models.money'].isRequired,
|
|
22663
|
-
fees: T['io.flow.common.v0.models.money'].isRequired,
|
|
22664
|
-
transfer: T['io.flow.common.v0.models.money'].isRequired,
|
|
22665
|
-
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
22666
|
-
});
|
|
22667
|
-
|
|
22668
|
-
T['io.flow.internal.v0.models.tax_duty_delta_metadata_actual'] = PropTypes.exact({
|
|
22669
|
-
processing: T['io.flow.internal.v0.models.tax_duty_delta_metadata_actual_processing'].isRequired,
|
|
22670
|
-
});
|
|
22671
|
-
|
|
22672
22787
|
T['io.flow.internal.v0.models.shopify_promotion_attribute_value'] = PropTypes.exact({
|
|
22673
22788
|
name: PropTypes.string.isRequired,
|
|
22674
22789
|
discount: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -22872,6 +22987,21 @@ T['io.flow.internal.v0.models.dispute_record'] = PropTypes.exact({
|
|
|
22872
22987
|
chargeback_amount: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
22873
22988
|
});
|
|
22874
22989
|
|
|
22990
|
+
T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
22991
|
+
lane: T['io.flow.label.v0.models.shipping_label_lane_summary'].isRequired,
|
|
22992
|
+
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
22993
|
+
itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
22994
|
+
});
|
|
22995
|
+
|
|
22996
|
+
T['io.flow.internal.v0.models.debug_label'] = PropTypes.exact({
|
|
22997
|
+
carrier_id: PropTypes.string.isRequired,
|
|
22998
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
22999
|
+
label_tracking_summary_id: PropTypes.string,
|
|
23000
|
+
label_id: PropTypes.string,
|
|
23001
|
+
cost_estimate: T['io.flow.label.v0.models.shipping_label_hop_summary'],
|
|
23002
|
+
transactions: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_label_transaction_summary']),
|
|
23003
|
+
});
|
|
23004
|
+
|
|
22875
23005
|
T['io.flow.internal.v0.models.chargeback'] = PropTypes.exact({
|
|
22876
23006
|
id: PropTypes.string.isRequired,
|
|
22877
23007
|
key: PropTypes.string.isRequired,
|
|
@@ -22997,53 +23127,6 @@ T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
|
|
|
22997
23127
|
details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
|
|
22998
23128
|
});
|
|
22999
23129
|
|
|
23000
|
-
T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
23001
|
-
lane: T['io.flow.label.v0.models.shipping_label_lane_summary'].isRequired,
|
|
23002
|
-
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
23003
|
-
itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
23004
|
-
});
|
|
23005
|
-
|
|
23006
|
-
T['io.flow.label.v0.models.estimate'] = PropTypes.exact({
|
|
23007
|
-
id: PropTypes.string.isRequired,
|
|
23008
|
-
organization_id: PropTypes.string.isRequired,
|
|
23009
|
-
label_id: PropTypes.string.isRequired,
|
|
23010
|
-
estimate: T['io.flow.label.v0.models.shipping_label_hop_summary'].isRequired,
|
|
23011
|
-
type: T['io.flow.label.v0.enums.estimate_type'].isRequired,
|
|
23012
|
-
origin: T['io.flow.label.v0.enums.estimate_origin'],
|
|
23013
|
-
});
|
|
23014
|
-
|
|
23015
|
-
T['io.flow.internal.v0.models.shipping_estimate_upserted'] = PropTypes.exact({
|
|
23016
|
-
discriminator: PropTypes.oneOf(['shipping_estimate_upserted']).isRequired,
|
|
23017
|
-
event_id: PropTypes.string.isRequired,
|
|
23018
|
-
timestamp: PropTypes.string.isRequired,
|
|
23019
|
-
organization: PropTypes.string.isRequired,
|
|
23020
|
-
estimate: T['io.flow.label.v0.models.estimate'].isRequired,
|
|
23021
|
-
});
|
|
23022
|
-
|
|
23023
|
-
T['io.flow.internal.v0.models.debug_label'] = PropTypes.exact({
|
|
23024
|
-
carrier_id: PropTypes.string.isRequired,
|
|
23025
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
23026
|
-
label_tracking_summary_id: PropTypes.string,
|
|
23027
|
-
label_id: PropTypes.string,
|
|
23028
|
-
cost_estimate: T['io.flow.label.v0.models.shipping_label_hop_summary'],
|
|
23029
|
-
transactions: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_label_transaction_summary']),
|
|
23030
|
-
});
|
|
23031
|
-
|
|
23032
|
-
T['io.flow.internal.v0.models.adjusted_estimates'] = PropTypes.exact({
|
|
23033
|
-
id: PropTypes.string.isRequired,
|
|
23034
|
-
organization_id: PropTypes.string.isRequired,
|
|
23035
|
-
label_id: PropTypes.string.isRequired,
|
|
23036
|
-
estimates: PropTypes.arrayOf(T['io.flow.label.v0.models.shipping_label_hop_summary']).isRequired,
|
|
23037
|
-
});
|
|
23038
|
-
|
|
23039
|
-
T['io.flow.internal.v0.models.adjusted_estimates_upserted'] = PropTypes.exact({
|
|
23040
|
-
discriminator: PropTypes.oneOf(['adjusted_estimates_upserted']).isRequired,
|
|
23041
|
-
event_id: PropTypes.string.isRequired,
|
|
23042
|
-
timestamp: PropTypes.string.isRequired,
|
|
23043
|
-
organization: PropTypes.string.isRequired,
|
|
23044
|
-
adjusted_estimates: T['io.flow.internal.v0.models.adjusted_estimates'].isRequired,
|
|
23045
|
-
});
|
|
23046
|
-
|
|
23047
23130
|
T['io.flow.internal.v0.models.additional_import_tax'] = PropTypes.exact({
|
|
23048
23131
|
name: PropTypes.string,
|
|
23049
23132
|
additional_import_tax_value: T['io.flow.common.v0.models.money'],
|
|
@@ -23573,6 +23656,25 @@ T['io.flow.internal.v0.models.liability_remittance_plan_deleted'] = PropTypes.ex
|
|
|
23573
23656
|
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
|
|
23574
23657
|
});
|
|
23575
23658
|
|
|
23659
|
+
T['io.flow.internal.v0.models.label_request_result'] = PropTypes.exact({
|
|
23660
|
+
id: PropTypes.string.isRequired,
|
|
23661
|
+
created_at: PropTypes.string.isRequired,
|
|
23662
|
+
state: T['io.flow.internal.v0.enums.label_request_result_state'].isRequired,
|
|
23663
|
+
organization_id: PropTypes.string.isRequired,
|
|
23664
|
+
order_number: PropTypes.string.isRequired,
|
|
23665
|
+
label_request_method: T['io.flow.label.v0.enums.label_request_method'].isRequired,
|
|
23666
|
+
carrier_id: PropTypes.string,
|
|
23667
|
+
carrier_tracking_number: PropTypes.string,
|
|
23668
|
+
url: PropTypes.string,
|
|
23669
|
+
error: PropTypes.string,
|
|
23670
|
+
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'],
|
|
23671
|
+
origin_country: PropTypes.string,
|
|
23672
|
+
destination_country: PropTypes.string,
|
|
23673
|
+
reference_id: PropTypes.string,
|
|
23674
|
+
logistics_integration_provider: PropTypes.string,
|
|
23675
|
+
tax_lrp_liabilities: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability']),
|
|
23676
|
+
});
|
|
23677
|
+
|
|
23576
23678
|
T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
|
|
23577
23679
|
id: PropTypes.string.isRequired,
|
|
23578
23680
|
label_id: PropTypes.string.isRequired,
|
|
@@ -24255,8 +24357,11 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
24255
24357
|
organization_id: PropTypes.string.isRequired,
|
|
24256
24358
|
restriction_product_id: PropTypes.string.isRequired,
|
|
24257
24359
|
product_id: PropTypes.string.isRequired,
|
|
24360
|
+
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24361
|
+
primary_item_number: PropTypes.string,
|
|
24258
24362
|
name: PropTypes.string.isRequired,
|
|
24259
24363
|
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
24364
|
+
hs_code: PropTypes.string,
|
|
24260
24365
|
description: PropTypes.string.isRequired,
|
|
24261
24366
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24262
24367
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
@@ -24958,6 +25063,13 @@ T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
|
|
|
24958
25063
|
banking: T['io.flow.internal.v0.models.debug_banking_details'].isRequired,
|
|
24959
25064
|
});
|
|
24960
25065
|
|
|
25066
|
+
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'] = PropTypes.exact({
|
|
25067
|
+
item_number: PropTypes.string.isRequired,
|
|
25068
|
+
line_number: PropTypes.number.isRequired,
|
|
25069
|
+
levies: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25070
|
+
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25071
|
+
});
|
|
25072
|
+
|
|
24961
25073
|
T['io.flow.experience.v0.models.order_payment'] = PropTypes.exact({
|
|
24962
25074
|
id: PropTypes.string.isRequired,
|
|
24963
25075
|
type: T['io.flow.experience.v0.enums.order_payment_type'].isRequired,
|
|
@@ -25077,6 +25189,39 @@ T['io.flow.experience.v0.models.credit_payment_version'] = PropTypes.exact({
|
|
|
25077
25189
|
credit_payment: T['io.flow.experience.v0.models.credit_payment'].isRequired,
|
|
25078
25190
|
});
|
|
25079
25191
|
|
|
25192
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill_details'] = PropTypes.exact({
|
|
25193
|
+
id: PropTypes.string.isRequired,
|
|
25194
|
+
order_number: PropTypes.string.isRequired,
|
|
25195
|
+
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25196
|
+
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']),
|
|
25197
|
+
|
|
25198
|
+
fulfillment_item_allocation_details: PropTypes.arrayOf(
|
|
25199
|
+
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'],
|
|
25200
|
+
),
|
|
25201
|
+
});
|
|
25202
|
+
|
|
25203
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'] = PropTypes.exact({
|
|
25204
|
+
discriminator: PropTypes.oneOf(['ready_to_fulfill_v2']).isRequired,
|
|
25205
|
+
event_id: PropTypes.string.isRequired,
|
|
25206
|
+
timestamp: PropTypes.string.isRequired,
|
|
25207
|
+
organization: PropTypes.string.isRequired,
|
|
25208
|
+
ready_to_fulfill: T['io.flow.order.management.event.v0.models.ready_to_fulfill_details'].isRequired,
|
|
25209
|
+
});
|
|
25210
|
+
|
|
25211
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill'] = PropTypes.exact({
|
|
25212
|
+
discriminator: PropTypes.oneOf(['ready_to_fulfill']).isRequired,
|
|
25213
|
+
event_id: PropTypes.string.isRequired,
|
|
25214
|
+
timestamp: PropTypes.string.isRequired,
|
|
25215
|
+
organization: PropTypes.string.isRequired,
|
|
25216
|
+
order_number: PropTypes.string.isRequired,
|
|
25217
|
+
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25218
|
+
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']),
|
|
25219
|
+
|
|
25220
|
+
fulfillment_item_allocation_details: PropTypes.arrayOf(
|
|
25221
|
+
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'],
|
|
25222
|
+
),
|
|
25223
|
+
});
|
|
25224
|
+
|
|
25080
25225
|
T['io.flow.order.management.event.v0.models.order_placed'] = PropTypes.exact({
|
|
25081
25226
|
discriminator: PropTypes.oneOf(['order_placed']).isRequired,
|
|
25082
25227
|
event_id: PropTypes.string.isRequired,
|
|
@@ -25101,6 +25246,13 @@ T['io.flow.order.management.event.v0.models.order_placed_v2'] = PropTypes.exact(
|
|
|
25101
25246
|
order_placed: T['io.flow.order.management.v0.models.order_placed_details'].isRequired,
|
|
25102
25247
|
});
|
|
25103
25248
|
|
|
25249
|
+
T['io.flow.order.management.event.v0.unions.order_management_event'] = PropTypes.oneOfType([
|
|
25250
|
+
T['io.flow.order.management.event.v0.models.order_placed'],
|
|
25251
|
+
T['io.flow.order.management.event.v0.models.order_placed_v2'],
|
|
25252
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill'],
|
|
25253
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'],
|
|
25254
|
+
]);
|
|
25255
|
+
|
|
25104
25256
|
T['io.flow.experience.v0.models.order_builder'] = PropTypes.exact({
|
|
25105
25257
|
order: T['io.flow.experience.v0.models.order'],
|
|
25106
25258
|
errors: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_error']),
|
|
@@ -25135,27 +25287,6 @@ T['io.flow.internal.v0.models.submitted_order_upserted'] = PropTypes.exact({
|
|
|
25135
25287
|
session: T['io.flow.internal.v0.models.experience_session_reference'],
|
|
25136
25288
|
});
|
|
25137
25289
|
|
|
25138
|
-
T['io.flow.internal.v0.models.order_shipped'] = PropTypes.exact({
|
|
25139
|
-
discriminator: PropTypes.oneOf(['order_shipped']).isRequired,
|
|
25140
|
-
event_id: PropTypes.string.isRequired,
|
|
25141
|
-
timestamp: PropTypes.string.isRequired,
|
|
25142
|
-
organization: PropTypes.string.isRequired,
|
|
25143
|
-
order_number: PropTypes.string.isRequired,
|
|
25144
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25145
|
-
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']).isRequired,
|
|
25146
|
-
shipment_trackings: PropTypes.arrayOf(T['io.flow.internal.v0.models.fulfillment_shipment_tracking']).isRequired,
|
|
25147
|
-
});
|
|
25148
|
-
|
|
25149
|
-
T['io.flow.internal.v0.models.order_placed'] = PropTypes.exact({
|
|
25150
|
-
discriminator: PropTypes.oneOf(['order_placed']).isRequired,
|
|
25151
|
-
event_id: PropTypes.string.isRequired,
|
|
25152
|
-
timestamp: PropTypes.string.isRequired,
|
|
25153
|
-
organization: PropTypes.string.isRequired,
|
|
25154
|
-
order_number: PropTypes.string.isRequired,
|
|
25155
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25156
|
-
allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
|
|
25157
|
-
});
|
|
25158
|
-
|
|
25159
25290
|
T['io.flow.internal.v0.models.internal_order'] = PropTypes.exact({
|
|
25160
25291
|
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25161
25292
|
session: T['io.flow.common.v0.models.session_reference'],
|
|
@@ -25164,19 +25295,6 @@ T['io.flow.internal.v0.models.internal_order'] = PropTypes.exact({
|
|
|
25164
25295
|
discount: T['io.flow.common.v0.models.money'],
|
|
25165
25296
|
});
|
|
25166
25297
|
|
|
25167
|
-
T['io.flow.internal.v0.models.fulfillment_cancel'] = PropTypes.exact({
|
|
25168
|
-
discriminator: PropTypes.oneOf(['fulfillment_cancel']).isRequired,
|
|
25169
|
-
event_id: PropTypes.string.isRequired,
|
|
25170
|
-
timestamp: PropTypes.string.isRequired,
|
|
25171
|
-
organization: PropTypes.string.isRequired,
|
|
25172
|
-
order_number: PropTypes.string.isRequired,
|
|
25173
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25174
|
-
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']).isRequired,
|
|
25175
|
-
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
25176
|
-
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
25177
|
-
cancelled_lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
25178
|
-
});
|
|
25179
|
-
|
|
25180
25298
|
T['io.flow.internal.v0.models.shopify_order_line_content'] = PropTypes.exact({
|
|
25181
25299
|
item_number: PropTypes.string.isRequired,
|
|
25182
25300
|
quantity: PropTypes.number.isRequired,
|
|
@@ -25207,67 +25325,6 @@ T['io.flow.internal.v0.models.shopify_order_authorization'] = PropTypes.exact({
|
|
|
25207
25325
|
redirect: PropTypes.string,
|
|
25208
25326
|
});
|
|
25209
25327
|
|
|
25210
|
-
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'] = PropTypes.exact({
|
|
25211
|
-
item_number: PropTypes.string.isRequired,
|
|
25212
|
-
line_number: PropTypes.number.isRequired,
|
|
25213
|
-
levies: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25214
|
-
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25215
|
-
});
|
|
25216
|
-
|
|
25217
|
-
T['io.flow.order.management.event.v0.models.ready_to_fulfill_details'] = PropTypes.exact({
|
|
25218
|
-
id: PropTypes.string.isRequired,
|
|
25219
|
-
order_number: PropTypes.string.isRequired,
|
|
25220
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25221
|
-
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']),
|
|
25222
|
-
|
|
25223
|
-
fulfillment_item_allocation_details: PropTypes.arrayOf(
|
|
25224
|
-
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'],
|
|
25225
|
-
),
|
|
25226
|
-
});
|
|
25227
|
-
|
|
25228
|
-
T['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'] = PropTypes.exact({
|
|
25229
|
-
discriminator: PropTypes.oneOf(['ready_to_fulfill_v2']).isRequired,
|
|
25230
|
-
event_id: PropTypes.string.isRequired,
|
|
25231
|
-
timestamp: PropTypes.string.isRequired,
|
|
25232
|
-
organization: PropTypes.string.isRequired,
|
|
25233
|
-
ready_to_fulfill: T['io.flow.order.management.event.v0.models.ready_to_fulfill_details'].isRequired,
|
|
25234
|
-
});
|
|
25235
|
-
|
|
25236
|
-
T['io.flow.order.management.event.v0.models.ready_to_fulfill'] = PropTypes.exact({
|
|
25237
|
-
discriminator: PropTypes.oneOf(['ready_to_fulfill']).isRequired,
|
|
25238
|
-
event_id: PropTypes.string.isRequired,
|
|
25239
|
-
timestamp: PropTypes.string.isRequired,
|
|
25240
|
-
organization: PropTypes.string.isRequired,
|
|
25241
|
-
order_number: PropTypes.string.isRequired,
|
|
25242
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25243
|
-
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']),
|
|
25244
|
-
|
|
25245
|
-
fulfillment_item_allocation_details: PropTypes.arrayOf(
|
|
25246
|
-
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'],
|
|
25247
|
-
),
|
|
25248
|
-
});
|
|
25249
|
-
|
|
25250
|
-
T['io.flow.order.management.event.v0.unions.order_management_event'] = PropTypes.oneOfType([
|
|
25251
|
-
T['io.flow.order.management.event.v0.models.order_placed'],
|
|
25252
|
-
T['io.flow.order.management.event.v0.models.order_placed_v2'],
|
|
25253
|
-
T['io.flow.order.management.event.v0.models.ready_to_fulfill'],
|
|
25254
|
-
T['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'],
|
|
25255
|
-
]);
|
|
25256
|
-
|
|
25257
|
-
T['io.flow.internal.v0.models.ready_to_fulfill'] = PropTypes.exact({
|
|
25258
|
-
discriminator: PropTypes.oneOf(['ready_to_fulfill']).isRequired,
|
|
25259
|
-
event_id: PropTypes.string.isRequired,
|
|
25260
|
-
timestamp: PropTypes.string.isRequired,
|
|
25261
|
-
organization: PropTypes.string.isRequired,
|
|
25262
|
-
order_number: PropTypes.string.isRequired,
|
|
25263
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25264
|
-
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']),
|
|
25265
|
-
|
|
25266
|
-
fulfillment_item_allocation_details: PropTypes.arrayOf(
|
|
25267
|
-
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'],
|
|
25268
|
-
),
|
|
25269
|
-
});
|
|
25270
|
-
|
|
25271
25328
|
T['io.flow.export.v0.models.export_localized_item_prices_detail'] = PropTypes.exact({
|
|
25272
25329
|
item: T['io.flow.catalog.v0.models.localized_item_price'].isRequired,
|
|
25273
25330
|
vat: T['io.flow.catalog.v0.models.localized_item_vat'],
|
|
@@ -25297,25 +25354,6 @@ T['io.flow.internal.v0.models.localized_price_book_item_data'] = PropTypes.exact
|
|
|
25297
25354
|
price_end_date: PropTypes.string,
|
|
25298
25355
|
});
|
|
25299
25356
|
|
|
25300
|
-
T['io.flow.internal.v0.models.shipped_item_value'] = PropTypes.exact({
|
|
25301
|
-
item: T['io.flow.common.v0.models.catalog_item_reference'].isRequired,
|
|
25302
|
-
taxes: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25303
|
-
duties: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25304
|
-
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25305
|
-
});
|
|
25306
|
-
|
|
25307
|
-
T['io.flow.internal.v0.models.items_shipped'] = PropTypes.exact({
|
|
25308
|
-
discriminator: PropTypes.oneOf(['items_shipped']).isRequired,
|
|
25309
|
-
event_id: PropTypes.string.isRequired,
|
|
25310
|
-
timestamp: PropTypes.string.isRequired,
|
|
25311
|
-
organization: PropTypes.string.isRequired,
|
|
25312
|
-
order_number: PropTypes.string.isRequired,
|
|
25313
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25314
|
-
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']).isRequired,
|
|
25315
|
-
flow_tracking_number: PropTypes.string.isRequired,
|
|
25316
|
-
shipped_item_values: PropTypes.arrayOf(T['io.flow.internal.v0.models.shipped_item_value']).isRequired,
|
|
25317
|
-
});
|
|
25318
|
-
|
|
25319
25357
|
T['io.flow.internal.v0.models.authorized_shipping_charge'] = PropTypes.exact({
|
|
25320
25358
|
discriminator: PropTypes.oneOf(['authorized_shipping_charge']).isRequired,
|
|
25321
25359
|
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
@@ -25861,7 +25899,6 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
25861
25899
|
'tax_refund',
|
|
25862
25900
|
'duty_refund',
|
|
25863
25901
|
'ge_revenue_share',
|
|
25864
|
-
'tax_duty_delta',
|
|
25865
25902
|
]);
|
|
25866
25903
|
|
|
25867
25904
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -25971,19 +26008,6 @@ T['io.flow.internal.v0.models.tax_remittance_transaction_upserted'] = PropTypes.
|
|
|
25971
26008
|
transaction: T['io.flow.internal.v0.models.tax_remittance_transaction'].isRequired,
|
|
25972
26009
|
});
|
|
25973
26010
|
|
|
25974
|
-
T['io.flow.internal.v0.models.tax_duty_delta_transaction'] = PropTypes.exact({
|
|
25975
|
-
discriminator: PropTypes.oneOf(['tax_duty_delta_transaction']).isRequired,
|
|
25976
|
-
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
25977
|
-
id: PropTypes.string.isRequired,
|
|
25978
|
-
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
25979
|
-
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
25980
|
-
posted_at: PropTypes.string,
|
|
25981
|
-
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
25982
|
-
description: PropTypes.string.isRequired,
|
|
25983
|
-
statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
25984
|
-
created_at: PropTypes.string.isRequired,
|
|
25985
|
-
});
|
|
25986
|
-
|
|
25987
26011
|
T['io.flow.internal.v0.models.subscription_transaction'] = PropTypes.exact({
|
|
25988
26012
|
discriminator: PropTypes.oneOf(['subscription_transaction']).isRequired,
|
|
25989
26013
|
period: T['io.flow.common.v0.models.datetime_range'].isRequired,
|
|
@@ -26131,6 +26155,7 @@ T['io.flow.internal.v0.models.main_transaction'] = PropTypes.exact({
|
|
|
26131
26155
|
paid_at: PropTypes.string,
|
|
26132
26156
|
posted_at: PropTypes.string,
|
|
26133
26157
|
statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
26158
|
+
channel_statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
26134
26159
|
created_at: PropTypes.string.isRequired,
|
|
26135
26160
|
original_at: PropTypes.string,
|
|
26136
26161
|
});
|
|
@@ -26317,7 +26342,6 @@ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
|
|
|
26317
26342
|
T['io.flow.internal.v0.models.carrier_charge_transaction'],
|
|
26318
26343
|
T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'],
|
|
26319
26344
|
T['io.flow.internal.v0.models.ge_revenue_share_transaction'],
|
|
26320
|
-
T['io.flow.internal.v0.models.tax_duty_delta_transaction'],
|
|
26321
26345
|
]);
|
|
26322
26346
|
|
|
26323
26347
|
T['io.flow.internal.v0.models.billing_transaction'] = PropTypes.exact({
|
|
@@ -26563,10 +26587,6 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
|
|
|
26563
26587
|
});
|
|
26564
26588
|
|
|
26565
26589
|
T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
26566
|
-
T['io.flow.internal.v0.models.adjusted_estimates_upserted'],
|
|
26567
|
-
T['io.flow.internal.v0.models.adjusted_estimates_deleted'],
|
|
26568
|
-
T['io.flow.internal.v0.models.shipping_estimate_upserted'],
|
|
26569
|
-
T['io.flow.internal.v0.models.shipping_estimate_deleted'],
|
|
26570
26590
|
T['io.flow.internal.v0.models.adyen_authorization_deleted'],
|
|
26571
26591
|
T['io.flow.internal.v0.models.adyen_authorization_upserted'],
|
|
26572
26592
|
T['io.flow.internal.v0.models.adyen_cancel_deleted'],
|
|
@@ -26765,6 +26785,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26765
26785
|
T['io.flow.internal.v0.models.order_validation_failure_deleted'],
|
|
26766
26786
|
T['io.flow.internal.v0.models.order_validation_upserted'],
|
|
26767
26787
|
T['io.flow.internal.v0.models.order_validation_deleted'],
|
|
26788
|
+
T['io.flow.internal.v0.models.label_creation_job_upserted'],
|
|
26789
|
+
T['io.flow.internal.v0.models.label_creation_job_deleted'],
|
|
26768
26790
|
T['io.flow.internal.v0.models.label_tracking_summary_upserted'],
|
|
26769
26791
|
T['io.flow.internal.v0.models.label_tracking_summary_deleted'],
|
|
26770
26792
|
T['io.flow.internal.v0.models.logistics_capabilities_upserted'],
|
|
@@ -26774,11 +26796,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26774
26796
|
T['io.flow.internal.v0.models.order_combined_shipment_deleted'],
|
|
26775
26797
|
T['io.flow.internal.v0.models.order_fulfillment_deleted'],
|
|
26776
26798
|
T['io.flow.internal.v0.models.order_fulfillment_upserted'],
|
|
26777
|
-
T['io.flow.internal.v0.models.order_placed'],
|
|
26778
|
-
T['io.flow.internal.v0.models.ready_to_fulfill'],
|
|
26779
|
-
T['io.flow.internal.v0.models.fulfillment_cancel'],
|
|
26780
|
-
T['io.flow.internal.v0.models.order_shipped'],
|
|
26781
|
-
T['io.flow.internal.v0.models.items_shipped'],
|
|
26782
26799
|
T['io.flow.internal.v0.models.organization_business_entity_deleted'],
|
|
26783
26800
|
T['io.flow.internal.v0.models.organization_business_entity_upserted'],
|
|
26784
26801
|
T['io.flow.internal.v0.models.organization_status_change_upserted'],
|
|
@@ -26894,6 +26911,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26894
26911
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
|
|
26895
26912
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'],
|
|
26896
26913
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'],
|
|
26914
|
+
T['io.flow.internal.v0.models.shopify_merchant_plan_upserted'],
|
|
26915
|
+
T['io.flow.internal.v0.models.shopify_merchant_plan_deleted'],
|
|
26897
26916
|
T['io.flow.internal.v0.models.stripe_authorization_deleted'],
|
|
26898
26917
|
T['io.flow.internal.v0.models.stripe_authorization_upserted'],
|
|
26899
26918
|
T['io.flow.internal.v0.models.stripe_reversal_deleted'],
|
|
@@ -26904,6 +26923,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26904
26923
|
T['io.flow.internal.v0.models.stripe_refund_upserted'],
|
|
26905
26924
|
T['io.flow.internal.v0.models.stripe_dispute_upserted'],
|
|
26906
26925
|
T['io.flow.internal.v0.models.stripe_dispute_deleted'],
|
|
26926
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'],
|
|
26927
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'],
|
|
26907
26928
|
T['io.flow.internal.v0.models.liability_remittance_plan_upserted'],
|
|
26908
26929
|
T['io.flow.internal.v0.models.liability_remittance_plan_deleted'],
|
|
26909
26930
|
T['io.flow.internal.v0.models.tracking_processing_error_upserted'],
|
|
@@ -27083,10 +27104,6 @@ T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_c
|
|
|
27083
27104
|
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty']);
|
|
27084
27105
|
|
|
27085
27106
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
27086
|
-
'adjusted_estimates_upserted',
|
|
27087
|
-
'adjusted_estimates_deleted',
|
|
27088
|
-
'shipping_estimate_upserted',
|
|
27089
|
-
'shipping_estimate_deleted',
|
|
27090
27107
|
'adyen_authorization_deleted',
|
|
27091
27108
|
'adyen_authorization_upserted',
|
|
27092
27109
|
'adyen_cancel_deleted',
|
|
@@ -27285,6 +27302,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27285
27302
|
'order_validation_failure_deleted',
|
|
27286
27303
|
'order_validation_upserted',
|
|
27287
27304
|
'order_validation_deleted',
|
|
27305
|
+
'label_creation_job_upserted',
|
|
27306
|
+
'label_creation_job_deleted',
|
|
27288
27307
|
'label_tracking_summary_upserted',
|
|
27289
27308
|
'label_tracking_summary_deleted',
|
|
27290
27309
|
'logistics_capabilities_upserted',
|
|
@@ -27294,11 +27313,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27294
27313
|
'order_combined_shipment_deleted',
|
|
27295
27314
|
'order_fulfillment_deleted',
|
|
27296
27315
|
'order_fulfillment_upserted',
|
|
27297
|
-
'order_placed',
|
|
27298
|
-
'ready_to_fulfill',
|
|
27299
|
-
'fulfillment_cancel',
|
|
27300
|
-
'order_shipped',
|
|
27301
|
-
'items_shipped',
|
|
27302
27316
|
'organization_business_entity_deleted',
|
|
27303
27317
|
'organization_business_entity_upserted',
|
|
27304
27318
|
'organization_status_change_upserted',
|
|
@@ -27414,6 +27428,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27414
27428
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
27415
27429
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
27416
27430
|
'shopify_order_fulfillments_snapshot_deleted',
|
|
27431
|
+
'shopify_merchant_plan_upserted',
|
|
27432
|
+
'shopify_merchant_plan_deleted',
|
|
27417
27433
|
'stripe_authorization_deleted',
|
|
27418
27434
|
'stripe_authorization_upserted',
|
|
27419
27435
|
'stripe_reversal_deleted',
|
|
@@ -27424,6 +27440,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27424
27440
|
'stripe_refund_upserted',
|
|
27425
27441
|
'stripe_dispute_upserted',
|
|
27426
27442
|
'stripe_dispute_deleted',
|
|
27443
|
+
'stripe_connect_report_record_upserted',
|
|
27444
|
+
'stripe_connect_report_record_deleted',
|
|
27427
27445
|
'liability_remittance_plan_upserted',
|
|
27428
27446
|
'liability_remittance_plan_deleted',
|
|
27429
27447
|
'tracking_processing_error_upserted',
|
|
@@ -28285,6 +28303,13 @@ T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes
|
|
|
28285
28303
|
margin: PropTypes.number.isRequired,
|
|
28286
28304
|
});
|
|
28287
28305
|
|
|
28306
|
+
T['io.flow.internal.v0.models.report_record_error'] = PropTypes.exact({
|
|
28307
|
+
id: PropTypes.string.isRequired,
|
|
28308
|
+
file_id: PropTypes.string.isRequired,
|
|
28309
|
+
line_number: PropTypes.number.isRequired,
|
|
28310
|
+
failure_reason: PropTypes.string.isRequired,
|
|
28311
|
+
});
|
|
28312
|
+
|
|
28288
28313
|
T['io.flow.internal.v0.models.report_summary'] = PropTypes.exact({
|
|
28289
28314
|
task_id: PropTypes.string.isRequired,
|
|
28290
28315
|
});
|
|
@@ -28313,6 +28338,7 @@ T['io.flow.internal.v0.models.restriction_product_request_form'] = PropTypes.exa
|
|
|
28313
28338
|
user_ids: PropTypes.arrayOf(PropTypes.string),
|
|
28314
28339
|
categories: PropTypes.arrayOf(PropTypes.string),
|
|
28315
28340
|
product_name_query: PropTypes.string,
|
|
28341
|
+
hs6: PropTypes.string,
|
|
28316
28342
|
product_id: PropTypes.string,
|
|
28317
28343
|
});
|
|
28318
28344
|
|
|
@@ -28937,7 +28963,14 @@ T['io.flow.brickftp.v0.models.file_upload_metadata'] = PropTypes.exact({
|
|
|
28937
28963
|
upload_uri: PropTypes.string.isRequired,
|
|
28938
28964
|
});
|
|
28939
28965
|
|
|
28940
|
-
T['io.flow.units.v0.enums.unit_of_volume'] = PropTypes.oneOf([
|
|
28966
|
+
T['io.flow.units.v0.enums.unit_of_volume'] = PropTypes.oneOf([
|
|
28967
|
+
'cubic_inch',
|
|
28968
|
+
'cubic_foot',
|
|
28969
|
+
'cubic_millimeter',
|
|
28970
|
+
'cubic_centimeter',
|
|
28971
|
+
'cubic_meter',
|
|
28972
|
+
]);
|
|
28973
|
+
|
|
28941
28974
|
T['io.flow.shopify.markets.internal.v0.enums.any_dangerous_goods'] = PropTypes.oneOf(['yes', 'no', 'i_dont_know']);
|
|
28942
28975
|
T['io.flow.shopify.markets.internal.v0.enums.api_call_reference_id'] = PropTypes.oneOf(['duty_rates_data_event', 'integration_test', 'unit_test']);
|
|
28943
28976
|
|
|
@@ -29878,9 +29911,6 @@ export const addressConfigurationProvinceSetting = T['io.flow.internal.v0.models
|
|
|
29878
29911
|
export const addressConfigurationSetting = T['io.flow.internal.v0.models.address_configuration_setting'];
|
|
29879
29912
|
export const addressConfigurationSettingForm = T['io.flow.internal.v0.models.address_configuration_setting_form'];
|
|
29880
29913
|
export const addressConfigurationSettingProvinceCode = T['io.flow.internal.v0.enums.address_configuration_setting_province_code'];
|
|
29881
|
-
export const adjustedEstimates = T['io.flow.internal.v0.models.adjusted_estimates'];
|
|
29882
|
-
export const adjustedEstimatesDeleted = T['io.flow.internal.v0.models.adjusted_estimates_deleted'];
|
|
29883
|
-
export const adjustedEstimatesUpserted = T['io.flow.internal.v0.models.adjusted_estimates_upserted'];
|
|
29884
29914
|
export const adjustmentAmount = T['io.flow.internal.v0.unions.adjustment_amount'];
|
|
29885
29915
|
export const adjustmentAmountFixed = T['io.flow.internal.v0.models.adjustment_amount_fixed'];
|
|
29886
29916
|
export const adjustmentAmountPercentage = T['io.flow.internal.v0.models.adjustment_amount_percentage'];
|
|
@@ -30540,7 +30570,6 @@ export const fuelSurchargeServiceFeePutForm = T['io.flow.internal.v0.unions.fuel
|
|
|
30540
30570
|
export const fulfillment = T['io.flow.internal.v0.models.fulfillment'];
|
|
30541
30571
|
export const fulfillmentActionForm = T['io.flow.internal.v0.models.fulfillment_action_form'];
|
|
30542
30572
|
export const fulfillmentBusiness = T['io.flow.internal.v0.models.fulfillment_business'];
|
|
30543
|
-
export const fulfillmentCancel = T['io.flow.internal.v0.models.fulfillment_cancel'];
|
|
30544
30573
|
export const fulfillmentCarrier = T['io.flow.internal.v0.models.fulfillment_carrier'];
|
|
30545
30574
|
export const fulfillmentDeleted = T['io.flow.internal.v0.models.fulfillment_deleted'];
|
|
30546
30575
|
export const fulfillmentFallbacks = T['io.flow.internal.v0.models.fulfillment_fallbacks'];
|
|
@@ -30553,7 +30582,6 @@ export const fulfillmentProofLabelTrackingReference = T['io.flow.internal.v0.mod
|
|
|
30553
30582
|
export const fulfillmentProofOrderCombinedShipmentReference = T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'];
|
|
30554
30583
|
export const fulfillmentProofShippingNotificationReference = T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'];
|
|
30555
30584
|
export const fulfillmentReference = T['io.flow.internal.v0.models.fulfillment_reference'];
|
|
30556
|
-
export const fulfillmentShipmentTracking = T['io.flow.internal.v0.models.fulfillment_shipment_tracking'];
|
|
30557
30585
|
export const fulfillmentShopperBreakdown = T['io.flow.internal.v0.models.fulfillment_shopper_breakdown'];
|
|
30558
30586
|
export const fulfillmentSnapshot = T['io.flow.internal.v0.models.fulfillment_snapshot'];
|
|
30559
30587
|
export const fulfillmentSubsidyBreakdown = T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'];
|
|
@@ -30626,6 +30654,7 @@ export const internalFiservAuthorizationDetails = T['io.flow.internal.v0.models.
|
|
|
30626
30654
|
export const internalHarmonizationStatistic = T['io.flow.internal.v0.unions.internal_harmonization_statistic'];
|
|
30627
30655
|
export const internalItemForm = T['io.flow.internal.v0.models.internal_item_form'];
|
|
30628
30656
|
export const internalOrder = T['io.flow.internal.v0.models.internal_order'];
|
|
30657
|
+
export const internalPaymentEntityType = T['io.flow.internal.v0.enums.internal_payment_entity_type'];
|
|
30629
30658
|
export const internalPaymentRequest = T['io.flow.internal.v0.models.internal_payment_request'];
|
|
30630
30659
|
export const internalPaymentRequestVerification = T['io.flow.internal.v0.models.internal_payment_request_verification'];
|
|
30631
30660
|
export const internalPaypalAuthorizationDetails = T['io.flow.internal.v0.models.internal_paypal_authorization_details'];
|
|
@@ -30674,7 +30703,6 @@ export const itemSalesMarginVersion = T['io.flow.internal.v0.models.item_sales_m
|
|
|
30674
30703
|
export const itemSummary = T['io.flow.internal.v0.models.item_summary'];
|
|
30675
30704
|
export const itemType = T['io.flow.internal.v0.enums.item_type'];
|
|
30676
30705
|
export const itemValuesForm = T['io.flow.internal.v0.models.item_values_form'];
|
|
30677
|
-
export const itemsShipped = T['io.flow.internal.v0.models.items_shipped'];
|
|
30678
30706
|
export const jeanDemoItem = T['io.flow.internal.v0.models.jean_demo_item'];
|
|
30679
30707
|
export const key = T['io.flow.internal.v0.models.key'];
|
|
30680
30708
|
export const keyReference = T['io.flow.internal.v0.models.key_reference'];
|
|
@@ -30690,7 +30718,9 @@ export const labelBillingStrategy = T['io.flow.internal.v0.enums.label_billing_s
|
|
|
30690
30718
|
export const labelCancellationError = T['io.flow.internal.v0.models.label_cancellation_error'];
|
|
30691
30719
|
export const labelCancellationErrorCode = T['io.flow.internal.v0.enums.label_cancellation_error_code'];
|
|
30692
30720
|
export const labelCreationJob = T['io.flow.internal.v0.models.label_creation_job'];
|
|
30721
|
+
export const labelCreationJobDeleted = T['io.flow.internal.v0.models.label_creation_job_deleted'];
|
|
30693
30722
|
export const labelCreationJobSummary = T['io.flow.internal.v0.models.label_creation_job_summary'];
|
|
30723
|
+
export const labelCreationJobUpserted = T['io.flow.internal.v0.models.label_creation_job_upserted'];
|
|
30694
30724
|
export const labelCreationRequestForm = T['io.flow.internal.v0.models.label_creation_request_form'];
|
|
30695
30725
|
export const labelCreationStatus = T['io.flow.internal.v0.enums.label_creation_status'];
|
|
30696
30726
|
export const labelDestination = T['io.flow.internal.v0.models.label_destination'];
|
|
@@ -30798,6 +30828,9 @@ export const merchantHubOverride = T['io.flow.internal.v0.models.merchant_hub_ov
|
|
|
30798
30828
|
export const merchantHubOverrideForm = T['io.flow.internal.v0.models.merchant_hub_override_form'];
|
|
30799
30829
|
export const merchantOfRecordEntitySettings = T['io.flow.internal.v0.models.merchant_of_record_entity_settings'];
|
|
30800
30830
|
export const merchantOfRecordEntitySettingsForm = T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'];
|
|
30831
|
+
export const merchantOverride = T['io.flow.internal.v0.models.merchant_override'];
|
|
30832
|
+
export const merchantOverrideDecisionForm = T['io.flow.internal.v0.models.merchant_override_decision_form'];
|
|
30833
|
+
export const merchantOverrideStatus = T['io.flow.internal.v0.enums.merchant_override_status'];
|
|
30801
30834
|
export const merchantSearchResult = T['io.flow.internal.v0.models.merchant_search_result'];
|
|
30802
30835
|
export const merchantSubsidies = T['io.flow.internal.v0.models.merchant_subsidies'];
|
|
30803
30836
|
export const merchantSummary = T['io.flow.internal.v0.models.merchant_summary'];
|
|
@@ -30868,7 +30901,6 @@ export const orderLifecycleEvent = T['io.flow.internal.v0.enums.order_lifecycle_
|
|
|
30868
30901
|
export const orderNote = T['io.flow.internal.v0.models.order_note'];
|
|
30869
30902
|
export const orderNoteForm = T['io.flow.internal.v0.models.order_note_form'];
|
|
30870
30903
|
export const orderPaymentAuthorization = T['io.flow.internal.v0.models.order_payment_authorization'];
|
|
30871
|
-
export const orderPlaced = T['io.flow.internal.v0.models.order_placed'];
|
|
30872
30904
|
export const orderRatesDataV3 = T['io.flow.internal.v0.models.order_rates_data_v3'];
|
|
30873
30905
|
export const orderRatesPublishedV3 = T['io.flow.internal.v0.models.order_rates_published_v3'];
|
|
30874
30906
|
export const orderReference = T['io.flow.internal.v0.models.order_reference'];
|
|
@@ -30877,7 +30909,6 @@ export const orderRevenueRegionDataPoint = T['io.flow.internal.v0.models.order_r
|
|
|
30877
30909
|
export const orderRevenueTimelineChart = T['io.flow.internal.v0.models.order_revenue_timeline_chart'];
|
|
30878
30910
|
export const orderRevenueTimelineDataPoint = T['io.flow.internal.v0.models.order_revenue_timeline_data_point'];
|
|
30879
30911
|
export const orderServiceChangeCsvForm = T['io.flow.internal.v0.models.order_service_change_csv_form'];
|
|
30880
|
-
export const orderShipped = T['io.flow.internal.v0.models.order_shipped'];
|
|
30881
30912
|
export const orderSubmissionForm = T['io.flow.internal.v0.models.order_submission_form'];
|
|
30882
30913
|
export const orderSummary = T['io.flow.internal.v0.models.order_summary'];
|
|
30883
30914
|
export const orderTaxAndDutyInclusivitySetting = T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'];
|
|
@@ -31159,7 +31190,6 @@ export const ratecardStandardConfigurationUpserted = T['io.flow.internal.v0.mode
|
|
|
31159
31190
|
export const ratecardStandardSettings = T['io.flow.internal.v0.models.ratecard_standard_settings'];
|
|
31160
31191
|
export const ratesChanged = T['io.flow.internal.v0.models.rates_changed'];
|
|
31161
31192
|
export const ratesNamesSummary = T['io.flow.internal.v0.models.rates_names_summary'];
|
|
31162
|
-
export const readyToFulfill = T['io.flow.internal.v0.models.ready_to_fulfill'];
|
|
31163
31193
|
export const reboundConfiguration = T['io.flow.internal.v0.models.rebound_configuration'];
|
|
31164
31194
|
export const reboundConfigurationForm = T['io.flow.internal.v0.models.rebound_configuration_form'];
|
|
31165
31195
|
export const reboundConfigurationStatus = T['io.flow.internal.v0.enums.rebound_configuration_status'];
|
|
@@ -31175,6 +31205,9 @@ export const report = T['io.flow.internal.v0.models.report'];
|
|
|
31175
31205
|
export const reportAccount = T['io.flow.internal.v0.models.report_account'];
|
|
31176
31206
|
export const reportBankAccount = T['io.flow.internal.v0.models.report_bank_account'];
|
|
31177
31207
|
export const reportBankAccountCleartext = T['io.flow.internal.v0.models.report_bank_account_cleartext'];
|
|
31208
|
+
export const reportFile = T['io.flow.internal.v0.models.report_file'];
|
|
31209
|
+
export const reportFileStatus = T['io.flow.internal.v0.enums.report_file_status'];
|
|
31210
|
+
export const reportFileType = T['io.flow.internal.v0.enums.report_file_type'];
|
|
31178
31211
|
export const reportFilter = T['io.flow.internal.v0.models.report_filter'];
|
|
31179
31212
|
export const reportForm = T['io.flow.internal.v0.models.report_form'];
|
|
31180
31213
|
export const reportInterval = T['io.flow.internal.v0.enums.report_interval'];
|
|
@@ -31184,6 +31217,8 @@ export const reportOrganizationReference = T['io.flow.internal.v0.models.report_
|
|
|
31184
31217
|
export const reportOwner = T['io.flow.internal.v0.models.report_owner'];
|
|
31185
31218
|
export const reportPayment = T['io.flow.internal.v0.models.report_payment'];
|
|
31186
31219
|
export const reportPaymentType = T['io.flow.internal.v0.enums.report_payment_type'];
|
|
31220
|
+
export const reportRecordError = T['io.flow.internal.v0.models.report_record_error'];
|
|
31221
|
+
export const reportRecordRetryQueue = T['io.flow.internal.v0.models.report_record_retry_queue'];
|
|
31187
31222
|
export const reportRuleDecision = T['io.flow.internal.v0.models.report_rule_decision'];
|
|
31188
31223
|
export const reportStatus = T['io.flow.internal.v0.enums.report_status'];
|
|
31189
31224
|
export const reportSummary = T['io.flow.internal.v0.models.report_summary'];
|
|
@@ -31310,9 +31345,6 @@ export const sessionRollout = T['io.flow.internal.v0.models.session_rollout'];
|
|
|
31310
31345
|
export const sessionRolloutForm = T['io.flow.internal.v0.models.session_rollout_form'];
|
|
31311
31346
|
export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
|
|
31312
31347
|
export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
|
|
31313
|
-
export const shippedItemValue = T['io.flow.internal.v0.models.shipped_item_value'];
|
|
31314
|
-
export const shippingEstimateDeleted = T['io.flow.internal.v0.models.shipping_estimate_deleted'];
|
|
31315
|
-
export const shippingEstimateUpserted = T['io.flow.internal.v0.models.shipping_estimate_upserted'];
|
|
31316
31348
|
export const shippingLane = T['io.flow.internal.v0.models.shipping_lane'];
|
|
31317
31349
|
export const shippingMethodReference = T['io.flow.internal.v0.models.shipping_method_reference'];
|
|
31318
31350
|
export const shop = T['io.flow.internal.v0.models.shop'];
|
|
@@ -31381,6 +31413,8 @@ export const shopifyMarketsWebhookRegistration = T['io.flow.internal.v0.models.s
|
|
|
31381
31413
|
export const shopifyMarketsWebhookRegistrationDeleted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'];
|
|
31382
31414
|
export const shopifyMarketsWebhookRegistrationUpserted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted'];
|
|
31383
31415
|
export const shopifyMerchantPlan = T['io.flow.internal.v0.models.shopify_merchant_plan'];
|
|
31416
|
+
export const shopifyMerchantPlanDeleted = T['io.flow.internal.v0.models.shopify_merchant_plan_deleted'];
|
|
31417
|
+
export const shopifyMerchantPlanUpserted = T['io.flow.internal.v0.models.shopify_merchant_plan_upserted'];
|
|
31384
31418
|
export const shopifyMetadata = T['io.flow.internal.v0.models.shopify_metadata'];
|
|
31385
31419
|
export const shopifyMonitoringCarrierService = T['io.flow.internal.v0.models.shopify_monitoring_carrier_service'];
|
|
31386
31420
|
export const shopifyMonitoringFulfillmentExternal = T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external'];
|
|
@@ -31512,6 +31546,9 @@ export const stripeAuthorizationDeleted = T['io.flow.internal.v0.models.stripe_a
|
|
|
31512
31546
|
export const stripeAuthorizationUpserted = T['io.flow.internal.v0.models.stripe_authorization_upserted'];
|
|
31513
31547
|
export const stripeCaptureDeleted = T['io.flow.internal.v0.models.stripe_capture_deleted'];
|
|
31514
31548
|
export const stripeCaptureUpserted = T['io.flow.internal.v0.models.stripe_capture_upserted'];
|
|
31549
|
+
export const stripeConnectReportRecord = T['io.flow.internal.v0.models.stripe_connect_report_record'];
|
|
31550
|
+
export const stripeConnectReportRecordDeleted = T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'];
|
|
31551
|
+
export const stripeConnectReportRecordUpserted = T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'];
|
|
31515
31552
|
export const stripeDisputeDeleted = T['io.flow.internal.v0.models.stripe_dispute_deleted'];
|
|
31516
31553
|
export const stripeDisputeUpserted = T['io.flow.internal.v0.models.stripe_dispute_upserted'];
|
|
31517
31554
|
export const stripeInternalAuthorization = T['io.flow.internal.v0.models.stripe_internal_authorization'];
|
|
@@ -31556,11 +31593,6 @@ export const taxCalculationErrorCode = T['io.flow.internal.v0.enums.tax_calculat
|
|
|
31556
31593
|
export const taxCalculationForm = T['io.flow.internal.v0.models.tax_calculation_form'];
|
|
31557
31594
|
export const taxCalculationLineItem = T['io.flow.internal.v0.models.tax_calculation_line_item'];
|
|
31558
31595
|
export const taxCalculationLineItemForm = T['io.flow.internal.v0.models.tax_calculation_line_item_form'];
|
|
31559
|
-
export const taxDutyDeltaMetadataActual = T['io.flow.internal.v0.models.tax_duty_delta_metadata_actual'];
|
|
31560
|
-
export const taxDutyDeltaMetadataActualProcessing = T['io.flow.internal.v0.models.tax_duty_delta_metadata_actual_processing'];
|
|
31561
|
-
export const taxDutyDeltaMetadataExpected = T['io.flow.internal.v0.models.tax_duty_delta_metadata_expected'];
|
|
31562
|
-
export const taxDutyDeltaMetadataExpectedProcessing = T['io.flow.internal.v0.models.tax_duty_delta_metadata_expected_processing'];
|
|
31563
|
-
export const taxDutyDeltaTransaction = T['io.flow.internal.v0.models.tax_duty_delta_transaction'];
|
|
31564
31596
|
export const taxParty = T['io.flow.internal.v0.enums.tax_party'];
|
|
31565
31597
|
export const taxRemittanceTransaction = T['io.flow.internal.v0.models.tax_remittance_transaction'];
|
|
31566
31598
|
export const taxRemittanceTransactionDeleted = T['io.flow.internal.v0.models.tax_remittance_transaction_deleted'];
|