@flowio/api-internal-prop-types 9.24.111 → 9.24.113
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 +308 -187
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +308 -187
- package/src/api-internal.js +661 -451
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,
|
|
@@ -6422,6 +6453,23 @@ T['io.flow.payment.v0.models.issuer_v1'] = PropTypes.exact({
|
|
|
6422
6453
|
country: PropTypes.string,
|
|
6423
6454
|
});
|
|
6424
6455
|
|
|
6456
|
+
T['io.flow.payment.v0.models.dispute_reference'] = PropTypes.exact({
|
|
6457
|
+
discriminator: PropTypes.oneOf(['dispute_reference']).isRequired,
|
|
6458
|
+
id: PropTypes.string.isRequired,
|
|
6459
|
+
key: PropTypes.string.isRequired,
|
|
6460
|
+
});
|
|
6461
|
+
|
|
6462
|
+
T['io.flow.payment.v0.enums.transfer_status'] = PropTypes.oneOf(['succeeded', 'canceled']);
|
|
6463
|
+
|
|
6464
|
+
T['io.flow.payment.v0.enums.transfer_type'] = PropTypes.oneOf([
|
|
6465
|
+
'payout_to_merchant',
|
|
6466
|
+
'disputed_amount_to_merchant',
|
|
6467
|
+
'duties_and_taxes_adjustment_to_merchant',
|
|
6468
|
+
'disputed_amount_from_merchant',
|
|
6469
|
+
'duties_and_taxes_adjustment_from_merchant',
|
|
6470
|
+
'refund_from_merchant',
|
|
6471
|
+
]);
|
|
6472
|
+
|
|
6425
6473
|
T['io.flow.payment.v0.models.threeds_two_method'] = PropTypes.exact({
|
|
6426
6474
|
discriminator: PropTypes.oneOf(['threeds_two_method']).isRequired,
|
|
6427
6475
|
method: PropTypes.string.isRequired,
|
|
@@ -6634,6 +6682,7 @@ T['io.flow.payment.v0.models.expiration'] = PropTypes.exact({
|
|
|
6634
6682
|
});
|
|
6635
6683
|
|
|
6636
6684
|
T['io.flow.payment.v0.models.capture_reference'] = PropTypes.exact({
|
|
6685
|
+
discriminator: PropTypes.oneOf(['capture_reference']).isRequired,
|
|
6637
6686
|
id: PropTypes.string.isRequired,
|
|
6638
6687
|
key: PropTypes.string.isRequired,
|
|
6639
6688
|
});
|
|
@@ -6646,6 +6695,8 @@ T['io.flow.payment.v0.models.capture_identifier'] = PropTypes.exact({
|
|
|
6646
6695
|
primary: PropTypes.bool.isRequired,
|
|
6647
6696
|
});
|
|
6648
6697
|
|
|
6698
|
+
T['io.flow.payment.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor']);
|
|
6699
|
+
|
|
6649
6700
|
T['io.flow.payment.v0.models.card_browser_action_configuration'] = PropTypes.exact({
|
|
6650
6701
|
discriminator: PropTypes.oneOf(['card_browser_action_configuration']).isRequired,
|
|
6651
6702
|
viewport: T['io.flow.payment.v0.enums.threeds_two_challenge_viewport'].isRequired,
|
|
@@ -8187,6 +8238,13 @@ T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.ex
|
|
|
8187
8238
|
id: PropTypes.string.isRequired,
|
|
8188
8239
|
});
|
|
8189
8240
|
|
|
8241
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'] = PropTypes.exact({
|
|
8242
|
+
discriminator: PropTypes.oneOf(['stripe_connect_report_record_deleted']).isRequired,
|
|
8243
|
+
event_id: PropTypes.string.isRequired,
|
|
8244
|
+
timestamp: PropTypes.string.isRequired,
|
|
8245
|
+
id: PropTypes.string.isRequired,
|
|
8246
|
+
});
|
|
8247
|
+
|
|
8190
8248
|
T['io.flow.internal.v0.models.stripe_dispute_deleted'] = PropTypes.exact({
|
|
8191
8249
|
discriminator: PropTypes.oneOf(['stripe_dispute_deleted']).isRequired,
|
|
8192
8250
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8194,6 +8252,21 @@ T['io.flow.internal.v0.models.stripe_dispute_deleted'] = PropTypes.exact({
|
|
|
8194
8252
|
id: PropTypes.string.isRequired,
|
|
8195
8253
|
});
|
|
8196
8254
|
|
|
8255
|
+
T['io.flow.internal.v0.models.shopify_dispute_deleted'] = PropTypes.exact({
|
|
8256
|
+
discriminator: PropTypes.oneOf(['shopify_dispute_deleted']).isRequired,
|
|
8257
|
+
event_id: PropTypes.string.isRequired,
|
|
8258
|
+
timestamp: PropTypes.string.isRequired,
|
|
8259
|
+
organization: PropTypes.string.isRequired,
|
|
8260
|
+
id: PropTypes.string.isRequired,
|
|
8261
|
+
});
|
|
8262
|
+
|
|
8263
|
+
T['io.flow.internal.v0.models.shopify_merchant_plan_deleted'] = PropTypes.exact({
|
|
8264
|
+
discriminator: PropTypes.oneOf(['shopify_merchant_plan_deleted']).isRequired,
|
|
8265
|
+
event_id: PropTypes.string.isRequired,
|
|
8266
|
+
timestamp: PropTypes.string.isRequired,
|
|
8267
|
+
id: PropTypes.string.isRequired,
|
|
8268
|
+
});
|
|
8269
|
+
|
|
8197
8270
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'] = PropTypes.exact({
|
|
8198
8271
|
discriminator: PropTypes.oneOf(['shopify_order_fulfillments_snapshot_deleted']).isRequired,
|
|
8199
8272
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8403,6 +8476,13 @@ T['io.flow.internal.v0.models.authorization_bundle_deleted'] = PropTypes.exact({
|
|
|
8403
8476
|
id: PropTypes.string.isRequired,
|
|
8404
8477
|
});
|
|
8405
8478
|
|
|
8479
|
+
T['io.flow.internal.v0.models.partner_request_deleted'] = PropTypes.exact({
|
|
8480
|
+
discriminator: PropTypes.oneOf(['partner_request_deleted']).isRequired,
|
|
8481
|
+
event_id: PropTypes.string.isRequired,
|
|
8482
|
+
timestamp: PropTypes.string.isRequired,
|
|
8483
|
+
id: PropTypes.string.isRequired,
|
|
8484
|
+
});
|
|
8485
|
+
|
|
8406
8486
|
T['io.flow.internal.v0.models.spp_tracker_update_request_deleted'] = PropTypes.exact({
|
|
8407
8487
|
discriminator: PropTypes.oneOf(['spp_tracker_update_request_deleted']).isRequired,
|
|
8408
8488
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8505,6 +8585,14 @@ T['io.flow.internal.v0.models.label_tracking_summary_deleted'] = PropTypes.exact
|
|
|
8505
8585
|
id: PropTypes.string.isRequired,
|
|
8506
8586
|
});
|
|
8507
8587
|
|
|
8588
|
+
T['io.flow.internal.v0.models.label_creation_job_deleted'] = PropTypes.exact({
|
|
8589
|
+
discriminator: PropTypes.oneOf(['label_creation_job_deleted']).isRequired,
|
|
8590
|
+
event_id: PropTypes.string.isRequired,
|
|
8591
|
+
timestamp: PropTypes.string.isRequired,
|
|
8592
|
+
organization: PropTypes.string.isRequired,
|
|
8593
|
+
id: PropTypes.string.isRequired,
|
|
8594
|
+
});
|
|
8595
|
+
|
|
8508
8596
|
T['io.flow.internal.v0.models.order_validation_deleted'] = PropTypes.exact({
|
|
8509
8597
|
discriminator: PropTypes.oneOf(['order_validation_deleted']).isRequired,
|
|
8510
8598
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9129,22 +9217,6 @@ T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
|
|
|
9129
9217
|
id: PropTypes.string.isRequired,
|
|
9130
9218
|
});
|
|
9131
9219
|
|
|
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
9220
|
T['io.flow.internal.v0.models.console_mark_unresolvable_form'] = PropTypes.exact({
|
|
9149
9221
|
discriminator: PropTypes.oneOf(['console_mark_unresolvable_form']).isRequired,
|
|
9150
9222
|
order_number: PropTypes.string.isRequired,
|
|
@@ -9623,6 +9695,83 @@ T['io.flow.internal.v0.models.stripe_dispute_upserted'] = PropTypes.exact({
|
|
|
9623
9695
|
dispute: T['io.flow.internal.v0.models.stripe_internal_dispute'].isRequired,
|
|
9624
9696
|
});
|
|
9625
9697
|
|
|
9698
|
+
T['io.flow.internal.v0.enums.connect_report_transfer_type'] = PropTypes.oneOf([
|
|
9699
|
+
'ManagedMarketsRefundDebit',
|
|
9700
|
+
'ManagedMarketsDutiesAndTaxesAdjustmentDebit',
|
|
9701
|
+
'ManagedMarketsDisputedAmountDebit',
|
|
9702
|
+
'ManagedMarketsChargeCredit',
|
|
9703
|
+
'ManagedMarketsDisputeWonAmountCredit',
|
|
9704
|
+
'ManagedMarketsDutiesAndTaxesAdjustmentCredit',
|
|
9705
|
+
]);
|
|
9706
|
+
|
|
9707
|
+
T['io.flow.stripe.v0.enums.connect_report_connect_reporting_category'] = PropTypes.oneOf([
|
|
9708
|
+
'advance',
|
|
9709
|
+
'advance_funding',
|
|
9710
|
+
'connect_collection_transfer',
|
|
9711
|
+
'connect_reserved_funds',
|
|
9712
|
+
'platform_earning',
|
|
9713
|
+
'platform_earning_refund',
|
|
9714
|
+
'transfer',
|
|
9715
|
+
'transfer_reversal',
|
|
9716
|
+
]);
|
|
9717
|
+
|
|
9718
|
+
T['io.flow.stripe.v0.enums.connect_report_issuing_reporting_category'] = PropTypes.oneOf([
|
|
9719
|
+
'issuing_authorization_hold',
|
|
9720
|
+
'issuing_authorization_release',
|
|
9721
|
+
'issuing_disbursement',
|
|
9722
|
+
'issuing_dispute',
|
|
9723
|
+
'issuing_dispute_fraud_liability_debit',
|
|
9724
|
+
'issuing_dispute_provisional_credit',
|
|
9725
|
+
'issuing_dispute_provisional_credit_reversal',
|
|
9726
|
+
'issuing_transaction',
|
|
9727
|
+
]);
|
|
9728
|
+
|
|
9729
|
+
T['io.flow.stripe.v0.enums.connect_report_balance_reporting_category'] = PropTypes.oneOf([
|
|
9730
|
+
'anticipation_repayment',
|
|
9731
|
+
'climate_order_purchase',
|
|
9732
|
+
'climate_order_refund',
|
|
9733
|
+
'contribution',
|
|
9734
|
+
'currency_conversion',
|
|
9735
|
+
'fee',
|
|
9736
|
+
'other_adjustment',
|
|
9737
|
+
'payment_network_reserve_hold',
|
|
9738
|
+
'payment_network_reserve_release',
|
|
9739
|
+
'payout',
|
|
9740
|
+
'payout_minimum_balance_hold',
|
|
9741
|
+
'payout_minimum_balance_release',
|
|
9742
|
+
'payout_reversal',
|
|
9743
|
+
'risk_reserved_funds',
|
|
9744
|
+
'stripe_balance_payment_debit',
|
|
9745
|
+
'stripe_balance_payment_debit_reversal',
|
|
9746
|
+
'topup',
|
|
9747
|
+
'topup_reversal',
|
|
9748
|
+
'unreconciled_customer_funds',
|
|
9749
|
+
]);
|
|
9750
|
+
|
|
9751
|
+
T['io.flow.stripe.v0.enums.connect_report_payment_reporting_category'] = PropTypes.oneOf([
|
|
9752
|
+
'charge',
|
|
9753
|
+
'charge_failure',
|
|
9754
|
+
'dispute',
|
|
9755
|
+
'dispute_reversal',
|
|
9756
|
+
'partial_capture_reversal',
|
|
9757
|
+
'refund',
|
|
9758
|
+
'refund_failure',
|
|
9759
|
+
]);
|
|
9760
|
+
|
|
9761
|
+
T['io.flow.stripe.v0.unions.connect_report_reporting_category'] = PropTypes.oneOfType([PropTypes.exact({
|
|
9762
|
+
discriminator: PropTypes.oneOf(['connect_report_payment_reporting_category']).isRequired,
|
|
9763
|
+
value: T['io.flow.stripe.v0.enums.connect_report_payment_reporting_category'],
|
|
9764
|
+
}), PropTypes.exact({
|
|
9765
|
+
discriminator: PropTypes.oneOf(['connect_report_balance_reporting_category']).isRequired,
|
|
9766
|
+
value: T['io.flow.stripe.v0.enums.connect_report_balance_reporting_category'],
|
|
9767
|
+
}), PropTypes.exact({
|
|
9768
|
+
discriminator: PropTypes.oneOf(['connect_report_issuing_reporting_category']).isRequired,
|
|
9769
|
+
value: T['io.flow.stripe.v0.enums.connect_report_issuing_reporting_category'],
|
|
9770
|
+
}), PropTypes.exact({
|
|
9771
|
+
discriminator: PropTypes.oneOf(['connect_report_connect_reporting_category']).isRequired,
|
|
9772
|
+
value: T['io.flow.stripe.v0.enums.connect_report_connect_reporting_category'],
|
|
9773
|
+
})]);
|
|
9774
|
+
|
|
9626
9775
|
T['io.flow.internal.v0.models.stripe_internal_capture'] = PropTypes.exact({
|
|
9627
9776
|
id: PropTypes.string.isRequired,
|
|
9628
9777
|
flow_capture_id: PropTypes.string.isRequired,
|
|
@@ -10226,6 +10375,57 @@ T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'] = PropType
|
|
|
10226
10375
|
]);
|
|
10227
10376
|
|
|
10228
10377
|
T['io.flow.internal.v0.enums.shopify_plan_type'] = PropTypes.oneOf(['standard', 'shopify_plus']);
|
|
10378
|
+
|
|
10379
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata'] = PropTypes.exact({
|
|
10380
|
+
shop_id: PropTypes.number,
|
|
10381
|
+
shop_plan: T['io.flow.internal.v0.enums.shopify_plan_type'],
|
|
10382
|
+
checkout_id: PropTypes.string,
|
|
10383
|
+
order_id: PropTypes.number,
|
|
10384
|
+
order_transaction_id: PropTypes.number,
|
|
10385
|
+
transfer_type: T['io.flow.internal.v0.enums.connect_report_transfer_type'],
|
|
10386
|
+
transfer_exchange_rate: PropTypes.number,
|
|
10387
|
+
charge_total: PropTypes.number,
|
|
10388
|
+
charge_currency: PropTypes.string,
|
|
10389
|
+
charge_exchange_rate: PropTypes.number,
|
|
10390
|
+
duties: PropTypes.number,
|
|
10391
|
+
import_taxes: PropTypes.number,
|
|
10392
|
+
mor_fee: PropTypes.number,
|
|
10393
|
+
fx_fee: PropTypes.number,
|
|
10394
|
+
});
|
|
10395
|
+
|
|
10396
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record'] = PropTypes.exact({
|
|
10397
|
+
id: PropTypes.string.isRequired,
|
|
10398
|
+
file_id: PropTypes.string.isRequired,
|
|
10399
|
+
line_number: PropTypes.number.isRequired,
|
|
10400
|
+
created_utc: PropTypes.string.isRequired,
|
|
10401
|
+
charge_id: PropTypes.string,
|
|
10402
|
+
payment_intent_id: PropTypes.string,
|
|
10403
|
+
gross: PropTypes.number.isRequired,
|
|
10404
|
+
fee: PropTypes.number.isRequired,
|
|
10405
|
+
net: PropTypes.number.isRequired,
|
|
10406
|
+
currency: PropTypes.string.isRequired,
|
|
10407
|
+
connected_account: PropTypes.string.isRequired,
|
|
10408
|
+
reporting_category: T['io.flow.stripe.v0.unions.connect_report_reporting_category'].isRequired,
|
|
10409
|
+
dispute_reason: PropTypes.string,
|
|
10410
|
+
available_on_utc: PropTypes.string.isRequired,
|
|
10411
|
+
automatic_payout_effective_at_utc: PropTypes.string,
|
|
10412
|
+
source_id: PropTypes.string,
|
|
10413
|
+
customer_facing_amount: PropTypes.number,
|
|
10414
|
+
customer_facing_currency: PropTypes.string,
|
|
10415
|
+
payment_method_type: PropTypes.string,
|
|
10416
|
+
card_brand: PropTypes.string,
|
|
10417
|
+
statement_descriptor: PropTypes.string,
|
|
10418
|
+
payment_metadata: T['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata'],
|
|
10419
|
+
transfer_metadata: PropTypes.object,
|
|
10420
|
+
});
|
|
10421
|
+
|
|
10422
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'] = PropTypes.exact({
|
|
10423
|
+
discriminator: PropTypes.oneOf(['stripe_connect_report_record_upserted']).isRequired,
|
|
10424
|
+
event_id: PropTypes.string.isRequired,
|
|
10425
|
+
timestamp: PropTypes.string.isRequired,
|
|
10426
|
+
record: T['io.flow.internal.v0.models.stripe_connect_report_record'].isRequired,
|
|
10427
|
+
});
|
|
10428
|
+
|
|
10229
10429
|
T['io.flow.shopify.markets.v0.enums.shopify_webhook_format'] = PropTypes.oneOf(['json', 'xml']);
|
|
10230
10430
|
|
|
10231
10431
|
T['io.flow.shopify.markets.v0.enums.shopify_webhook_topic'] = PropTypes.oneOf([
|
|
@@ -10615,6 +10815,28 @@ T['io.flow.internal.v0.models.shopify_experience_short_id_deleted'] = PropTypes.
|
|
|
10615
10815
|
short_id: T['io.flow.internal.v0.models.shopify_experience_short_id'].isRequired,
|
|
10616
10816
|
});
|
|
10617
10817
|
|
|
10818
|
+
T['io.flow.internal.v0.models.shopify_dispute'] = PropTypes.exact({
|
|
10819
|
+
id: PropTypes.string.isRequired,
|
|
10820
|
+
organization_id: PropTypes.string.isRequired,
|
|
10821
|
+
authorization_id: PropTypes.string.isRequired,
|
|
10822
|
+
amount: PropTypes.number.isRequired,
|
|
10823
|
+
currency: PropTypes.string.isRequired,
|
|
10824
|
+
status: PropTypes.string.isRequired,
|
|
10825
|
+
category: PropTypes.string.isRequired,
|
|
10826
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
10827
|
+
external_reference_id: PropTypes.string.isRequired,
|
|
10828
|
+
issued_at: PropTypes.string.isRequired,
|
|
10829
|
+
updated_at: PropTypes.string.isRequired,
|
|
10830
|
+
});
|
|
10831
|
+
|
|
10832
|
+
T['io.flow.internal.v0.models.shopify_dispute_upserted'] = PropTypes.exact({
|
|
10833
|
+
discriminator: PropTypes.oneOf(['shopify_dispute_upserted']).isRequired,
|
|
10834
|
+
event_id: PropTypes.string.isRequired,
|
|
10835
|
+
timestamp: PropTypes.string.isRequired,
|
|
10836
|
+
organization: PropTypes.string.isRequired,
|
|
10837
|
+
dispute: T['io.flow.internal.v0.models.shopify_dispute'].isRequired,
|
|
10838
|
+
});
|
|
10839
|
+
|
|
10618
10840
|
T['io.flow.internal.v0.enums.shopify_check_inventory_error_code'] = PropTypes.oneOf(['inventory_out_of_stock']);
|
|
10619
10841
|
|
|
10620
10842
|
T['io.flow.internal.v0.models.shopify_check_inventory_error'] = PropTypes.exact({
|
|
@@ -10623,9 +10845,6 @@ T['io.flow.internal.v0.models.shopify_check_inventory_error'] = PropTypes.exact(
|
|
|
10623
10845
|
numbers: PropTypes.arrayOf(PropTypes.string),
|
|
10624
10846
|
});
|
|
10625
10847
|
|
|
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
10848
|
T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
|
|
10630
10849
|
'street_address_is_blank_3pl',
|
|
10631
10850
|
'street_address_is_po_box_3pl',
|
|
@@ -10820,10 +11039,17 @@ T['io.flow.internal.v0.models.record_reference'] = PropTypes.exact({
|
|
|
10820
11039
|
});
|
|
10821
11040
|
|
|
10822
11041
|
T['io.flow.payment.v0.models.refund_reference'] = PropTypes.exact({
|
|
11042
|
+
discriminator: PropTypes.oneOf(['refund_reference']).isRequired,
|
|
10823
11043
|
id: PropTypes.string.isRequired,
|
|
10824
11044
|
key: PropTypes.string.isRequired,
|
|
10825
11045
|
});
|
|
10826
11046
|
|
|
11047
|
+
T['io.flow.payment.v0.unions.transfer_reference'] = PropTypes.oneOfType([
|
|
11048
|
+
T['io.flow.payment.v0.models.capture_reference'],
|
|
11049
|
+
T['io.flow.payment.v0.models.refund_reference'],
|
|
11050
|
+
T['io.flow.payment.v0.models.dispute_reference'],
|
|
11051
|
+
]);
|
|
11052
|
+
|
|
10827
11053
|
T['io.flow.payment.v0.models.refund_identifier'] = PropTypes.exact({
|
|
10828
11054
|
id: PropTypes.string.isRequired,
|
|
10829
11055
|
refund: T['io.flow.payment.v0.models.refund_reference'].isRequired,
|
|
@@ -10889,7 +11115,7 @@ T['io.flow.internal.v0.models.restrictions_dailyops'] = PropTypes.exact({
|
|
|
10889
11115
|
num_products_transacting_prs: PropTypes.number.isRequired,
|
|
10890
11116
|
oldest_pr_product_date_setup_complete: PropTypes.string.isRequired,
|
|
10891
11117
|
oldest_pr_date_transacting: PropTypes.string.isRequired,
|
|
10892
|
-
percent_products_reviewed_transacting: PropTypes.number
|
|
11118
|
+
percent_products_reviewed_transacting: PropTypes.number,
|
|
10893
11119
|
num_pv_inflow_net_new: PropTypes.number.isRequired,
|
|
10894
11120
|
num_pv_outflow_human_decisions: PropTypes.number.isRequired,
|
|
10895
11121
|
num_pv_outflow_auto_review_decisions: PropTypes.number.isRequired,
|
|
@@ -10899,6 +11125,9 @@ T['io.flow.internal.v0.models.restrictions_dailyops'] = PropTypes.exact({
|
|
|
10899
11125
|
num_pr_outflow_auto_review_decisions: PropTypes.number.isRequired,
|
|
10900
11126
|
num_pr_outflow_side_effect_decisions: PropTypes.number.isRequired,
|
|
10901
11127
|
num_pending_decisions_transacting: PropTypes.number.isRequired,
|
|
11128
|
+
oldest_insufficient_details_pv_onboarding: PropTypes.string,
|
|
11129
|
+
oldest_insufficient_details_pv_active: PropTypes.string,
|
|
11130
|
+
oldest_insufficient_details_pv_transacting: PropTypes.string,
|
|
10902
11131
|
});
|
|
10903
11132
|
|
|
10904
11133
|
T['io.flow.internal.v0.models.restrictions_dailyops_upserted'] = PropTypes.exact({
|
|
@@ -11055,6 +11284,8 @@ T['io.flow.internal.v0.models.reporting_debug'] = PropTypes.exact({
|
|
|
11055
11284
|
missing_shipping_subsidies: T['io.flow.internal.v0.models.reporting_debug_missing_subsidies'],
|
|
11056
11285
|
});
|
|
11057
11286
|
|
|
11287
|
+
T['io.flow.internal.v0.enums.internal_payment_entity_type'] = PropTypes.oneOf(['authorization', 'capture', 'refund', 'dispute']);
|
|
11288
|
+
|
|
11058
11289
|
T['io.flow.internal.v0.models.report_order_reference'] = PropTypes.exact({
|
|
11059
11290
|
organization_id: PropTypes.string.isRequired,
|
|
11060
11291
|
order_number: PropTypes.string.isRequired,
|
|
@@ -11070,6 +11301,35 @@ T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
|
|
|
11070
11301
|
source_type: T['io.flow.internal.v0.enums.source_type_filter'],
|
|
11071
11302
|
});
|
|
11072
11303
|
|
|
11304
|
+
T['io.flow.internal.v0.enums.report_file_status'] = PropTypes.oneOf(['processing', 'failed', 'succeeded']);
|
|
11305
|
+
|
|
11306
|
+
T['io.flow.internal.v0.enums.merchant_of_record'] = PropTypes.oneOf([
|
|
11307
|
+
'global_e_united_states',
|
|
11308
|
+
'global_e_united_kingdom',
|
|
11309
|
+
'global_e_canada',
|
|
11310
|
+
'global_e_netherlands',
|
|
11311
|
+
]);
|
|
11312
|
+
|
|
11313
|
+
T['io.flow.internal.v0.enums.report_file_type'] = PropTypes.oneOf(['stripe_connect_report']);
|
|
11314
|
+
|
|
11315
|
+
T['io.flow.internal.v0.models.report_record_retry_queue'] = PropTypes.exact({
|
|
11316
|
+
id: PropTypes.string.isRequired,
|
|
11317
|
+
report_file_type: T['io.flow.internal.v0.enums.report_file_type'].isRequired,
|
|
11318
|
+
type: T['io.flow.internal.v0.enums.internal_payment_entity_type'].isRequired,
|
|
11319
|
+
report_record_id: PropTypes.string.isRequired,
|
|
11320
|
+
dependent_source_id: PropTypes.string.isRequired,
|
|
11321
|
+
});
|
|
11322
|
+
|
|
11323
|
+
T['io.flow.internal.v0.models.report_file'] = PropTypes.exact({
|
|
11324
|
+
id: PropTypes.string.isRequired,
|
|
11325
|
+
processor: PropTypes.string.isRequired,
|
|
11326
|
+
report_file_type: T['io.flow.internal.v0.enums.report_file_type'].isRequired,
|
|
11327
|
+
merchant_of_record_identifier: T['io.flow.internal.v0.enums.merchant_of_record'].isRequired,
|
|
11328
|
+
file_name: PropTypes.string.isRequired,
|
|
11329
|
+
status: T['io.flow.internal.v0.enums.report_file_status'].isRequired,
|
|
11330
|
+
failure_reason: PropTypes.string,
|
|
11331
|
+
});
|
|
11332
|
+
|
|
11073
11333
|
T['io.flow.internal.v0.enums.report_payment_type'] = PropTypes.oneOf(['credit', 'debit']);
|
|
11074
11334
|
|
|
11075
11335
|
T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
@@ -11803,6 +12063,26 @@ T['io.flow.internal.v0.models.partner_tracking_subscription_upserted'] = PropTyp
|
|
|
11803
12063
|
partner_tracking_subscription: T['io.flow.partner.v0.models.partner_tracking_subscription'].isRequired,
|
|
11804
12064
|
});
|
|
11805
12065
|
|
|
12066
|
+
T['io.flow.internal.v0.models.partner_request'] = PropTypes.exact({
|
|
12067
|
+
id: PropTypes.string.isRequired,
|
|
12068
|
+
partner_id: PropTypes.string.isRequired,
|
|
12069
|
+
organization_id: PropTypes.string.isRequired,
|
|
12070
|
+
method: PropTypes.string.isRequired,
|
|
12071
|
+
path: PropTypes.string.isRequired,
|
|
12072
|
+
request_id: PropTypes.string.isRequired,
|
|
12073
|
+
parameters: PropTypes.objectOf(PropTypes.string),
|
|
12074
|
+
request_body: PropTypes.object,
|
|
12075
|
+
response_body: PropTypes.object,
|
|
12076
|
+
reference_id: PropTypes.string,
|
|
12077
|
+
});
|
|
12078
|
+
|
|
12079
|
+
T['io.flow.internal.v0.models.partner_request_upserted'] = PropTypes.exact({
|
|
12080
|
+
discriminator: PropTypes.oneOf(['partner_request_upserted']).isRequired,
|
|
12081
|
+
event_id: PropTypes.string.isRequired,
|
|
12082
|
+
timestamp: PropTypes.string.isRequired,
|
|
12083
|
+
partner_request: T['io.flow.internal.v0.models.partner_request'].isRequired,
|
|
12084
|
+
});
|
|
12085
|
+
|
|
11806
12086
|
T['io.flow.partner.v0.enums.label_format'] = PropTypes.oneOf(['pdf', 'zpl', 'all']);
|
|
11807
12087
|
|
|
11808
12088
|
T['io.flow.internal.v0.models.partner_organization_settings_form'] = PropTypes.exact({
|
|
@@ -11994,6 +12274,9 @@ T['io.flow.internal.v0.models.organization_metadata'] = PropTypes.exact({
|
|
|
11994
12274
|
last_order_submitted_at: PropTypes.string,
|
|
11995
12275
|
matching_positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11996
12276
|
product_categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12277
|
+
matching_negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12278
|
+
decisions_user_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12279
|
+
restriction_rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11997
12280
|
});
|
|
11998
12281
|
|
|
11999
12282
|
T['io.flow.internal.v0.models.organization_metadata_upserted'] = PropTypes.exact({
|
|
@@ -12161,6 +12444,17 @@ T['io.flow.payment.v0.models.authorization_copy_form'] = PropTypes.exact({
|
|
|
12161
12444
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
12162
12445
|
});
|
|
12163
12446
|
|
|
12447
|
+
T['io.flow.order.management.v0.models.fulfillment_item_quantity'] = PropTypes.exact({
|
|
12448
|
+
status: T['io.flow.order.management.v0.enums.fulfillment_item_quantity_status'].isRequired,
|
|
12449
|
+
quantity: PropTypes.number.isRequired,
|
|
12450
|
+
});
|
|
12451
|
+
|
|
12452
|
+
T['io.flow.order.management.v0.models.fulfillment_item'] = PropTypes.exact({
|
|
12453
|
+
item_number: PropTypes.string.isRequired,
|
|
12454
|
+
line_number: PropTypes.number.isRequired,
|
|
12455
|
+
quantities: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_item_quantity']).isRequired,
|
|
12456
|
+
});
|
|
12457
|
+
|
|
12164
12458
|
T['io.flow.return.v0.models.return_line_item'] = PropTypes.exact({
|
|
12165
12459
|
item_number: PropTypes.string.isRequired,
|
|
12166
12460
|
order_number: PropTypes.string,
|
|
@@ -12341,7 +12635,6 @@ T['io.flow.internal.v0.enums.onboarding_audit_theme_key'] = PropTypes.oneOf([
|
|
|
12341
12635
|
'dtce',
|
|
12342
12636
|
'restrictions',
|
|
12343
12637
|
'organization_status',
|
|
12344
|
-
'category_constraints',
|
|
12345
12638
|
'miscellaneous',
|
|
12346
12639
|
]);
|
|
12347
12640
|
|
|
@@ -12506,6 +12799,25 @@ T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
|
12506
12799
|
shop_domain: PropTypes.string,
|
|
12507
12800
|
});
|
|
12508
12801
|
|
|
12802
|
+
T['io.flow.internal.v0.enums.merchant_override_status'] = PropTypes.oneOf(['in_review', 'accepted', 'rejected']);
|
|
12803
|
+
|
|
12804
|
+
T['io.flow.internal.v0.models.merchant_override_decision_form'] = PropTypes.exact({
|
|
12805
|
+
id: PropTypes.string.isRequired,
|
|
12806
|
+
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
12807
|
+
});
|
|
12808
|
+
|
|
12809
|
+
T['io.flow.internal.v0.models.merchant_override'] = PropTypes.exact({
|
|
12810
|
+
id: PropTypes.string.isRequired,
|
|
12811
|
+
organization_id: PropTypes.string.isRequired,
|
|
12812
|
+
item_number: PropTypes.string.isRequired,
|
|
12813
|
+
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
12814
|
+
hs6_code: PropTypes.string.isRequired,
|
|
12815
|
+
merchant_hs6_code: PropTypes.string.isRequired,
|
|
12816
|
+
created_at: PropTypes.string.isRequired,
|
|
12817
|
+
updated_at: PropTypes.string.isRequired,
|
|
12818
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
12819
|
+
});
|
|
12820
|
+
|
|
12509
12821
|
T['io.flow.internal.v0.models.merchant_guid_assignment'] = PropTypes.exact({
|
|
12510
12822
|
id: PropTypes.string.isRequired,
|
|
12511
12823
|
merchant_guid: PropTypes.string.isRequired,
|
|
@@ -13112,30 +13424,6 @@ T['io.flow.internal.v0.enums.no_liability_reason_code'] = PropTypes.oneOf([
|
|
|
13112
13424
|
'duty_free_by_trade_agreement',
|
|
13113
13425
|
]);
|
|
13114
13426
|
|
|
13115
|
-
T['io.flow.internal.v0.models.liability_party_details'] = PropTypes.exact({
|
|
13116
|
-
eori_number: PropTypes.string,
|
|
13117
|
-
});
|
|
13118
|
-
|
|
13119
|
-
T['io.flow.internal.v0.enums.tax_party'] = PropTypes.oneOf(['consumer', 'organization', 'flow', 'carrier']);
|
|
13120
|
-
|
|
13121
|
-
T['io.flow.internal.v0.enums.nature_of_sale'] = PropTypes.oneOf([
|
|
13122
|
-
'consumer',
|
|
13123
|
-
'to_non_registered_business',
|
|
13124
|
-
'to_registered_business',
|
|
13125
|
-
'flash_title',
|
|
13126
|
-
]);
|
|
13127
|
-
|
|
13128
|
-
T['io.flow.internal.v0.enums.reporting_scheme'] = PropTypes.oneOf([
|
|
13129
|
-
'immediate_reporting_to_tax_authority',
|
|
13130
|
-
'periodic_reporting_to_tax_authority',
|
|
13131
|
-
'paid_at_border',
|
|
13132
|
-
'paid_on_delivery',
|
|
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
13427
|
T['io.flow.harmonization.v0.enums.tax_verification_result'] = PropTypes.oneOf(['valid', 'invalid', 'unable_to_validate']);
|
|
13140
13428
|
|
|
13141
13429
|
T['io.flow.harmonization.v0.models.detailed_tax_registration'] = PropTypes.exact({
|
|
@@ -13278,31 +13566,56 @@ T['io.flow.label.v0.models.shipping_label_document'] = PropTypes.exact({
|
|
|
13278
13566
|
});
|
|
13279
13567
|
|
|
13280
13568
|
T['io.flow.label.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
|
|
13281
|
-
T['io.flow.internal.v0.enums.label_request_result_state'] = PropTypes.oneOf(['success', 'failure']);
|
|
13282
|
-
T['io.flow.label.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
|
|
13283
13569
|
|
|
13284
|
-
T['io.flow.
|
|
13285
|
-
|
|
13286
|
-
effective_at: PropTypes.string.isRequired,
|
|
13287
|
-
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
13288
|
-
service: PropTypes.string.isRequired,
|
|
13289
|
-
number: PropTypes.string,
|
|
13290
|
-
rate_level_key: PropTypes.string,
|
|
13291
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
|
|
13292
|
-
glbe_shipping_method_id: PropTypes.string,
|
|
13293
|
-
glbe_proposition_name: PropTypes.string,
|
|
13294
|
-
channel_revenue_share_percentage: PropTypes.number,
|
|
13295
|
-
data: PropTypes.objectOf(PropTypes.string),
|
|
13570
|
+
T['io.flow.internal.v0.models.liability_party_details'] = PropTypes.exact({
|
|
13571
|
+
eori_number: PropTypes.string,
|
|
13296
13572
|
});
|
|
13297
13573
|
|
|
13298
|
-
T['io.flow.
|
|
13299
|
-
|
|
13300
|
-
|
|
13301
|
-
|
|
13302
|
-
|
|
13303
|
-
|
|
13304
|
-
|
|
13305
|
-
|
|
13574
|
+
T['io.flow.internal.v0.enums.tax_party'] = PropTypes.oneOf(['consumer', 'organization', 'flow', 'carrier']);
|
|
13575
|
+
|
|
13576
|
+
T['io.flow.internal.v0.enums.nature_of_sale'] = PropTypes.oneOf([
|
|
13577
|
+
'consumer',
|
|
13578
|
+
'to_non_registered_business',
|
|
13579
|
+
'to_registered_business',
|
|
13580
|
+
'flash_title',
|
|
13581
|
+
]);
|
|
13582
|
+
|
|
13583
|
+
T['io.flow.internal.v0.enums.reporting_scheme'] = PropTypes.oneOf([
|
|
13584
|
+
'immediate_reporting_to_tax_authority',
|
|
13585
|
+
'periodic_reporting_to_tax_authority',
|
|
13586
|
+
'paid_at_border',
|
|
13587
|
+
'paid_on_delivery',
|
|
13588
|
+
]);
|
|
13589
|
+
|
|
13590
|
+
T['io.flow.internal.v0.enums.liability_type'] = PropTypes.oneOf(
|
|
13591
|
+
['full_value_tax', 'low_value_goods_tax', 'high_value_goods_tax', 'duties'],
|
|
13592
|
+
);
|
|
13593
|
+
|
|
13594
|
+
T['io.flow.internal.v0.enums.label_request_result_state'] = PropTypes.oneOf(['success', 'failure']);
|
|
13595
|
+
T['io.flow.label.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
|
|
13596
|
+
|
|
13597
|
+
T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
|
|
13598
|
+
direction: T['io.flow.label.v0.enums.direction'].isRequired,
|
|
13599
|
+
effective_at: PropTypes.string.isRequired,
|
|
13600
|
+
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
13601
|
+
service: PropTypes.string.isRequired,
|
|
13602
|
+
number: PropTypes.string,
|
|
13603
|
+
rate_level_key: PropTypes.string,
|
|
13604
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
|
|
13605
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
13606
|
+
glbe_proposition_name: PropTypes.string,
|
|
13607
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
13608
|
+
data: PropTypes.objectOf(PropTypes.string),
|
|
13609
|
+
});
|
|
13610
|
+
|
|
13611
|
+
T['io.flow.ratecard.v0.models.ratecard'] = PropTypes.exact({
|
|
13612
|
+
id: PropTypes.string.isRequired,
|
|
13613
|
+
number: PropTypes.string.isRequired,
|
|
13614
|
+
rate_level_key: PropTypes.string,
|
|
13615
|
+
direction: T['io.flow.label.v0.enums.direction'].isRequired,
|
|
13616
|
+
effective_at: PropTypes.string.isRequired,
|
|
13617
|
+
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
13618
|
+
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
13306
13619
|
published_at: PropTypes.string,
|
|
13307
13620
|
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
13308
13621
|
glbe_shipping_method_id: PropTypes.string,
|
|
@@ -13372,24 +13685,6 @@ T['io.flow.internal.v0.models.order_validation_upserted'] = PropTypes.exact({
|
|
|
13372
13685
|
order_validation: T['io.flow.internal.v0.models.order_validation'].isRequired,
|
|
13373
13686
|
});
|
|
13374
13687
|
|
|
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
13688
|
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
13394
13689
|
id: PropTypes.string.isRequired,
|
|
13395
13690
|
order_number: PropTypes.string.isRequired,
|
|
@@ -13512,9 +13807,18 @@ T['io.flow.internal.v0.models.label_creation_job'] = PropTypes.exact({
|
|
|
13512
13807
|
service_id: PropTypes.string,
|
|
13513
13808
|
carrier_tracking_number: PropTypes.string,
|
|
13514
13809
|
flow_tracking_number: PropTypes.string,
|
|
13810
|
+
label_id: PropTypes.string,
|
|
13515
13811
|
errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
13516
13812
|
});
|
|
13517
13813
|
|
|
13814
|
+
T['io.flow.internal.v0.models.label_creation_job_upserted'] = PropTypes.exact({
|
|
13815
|
+
discriminator: PropTypes.oneOf(['label_creation_job_upserted']).isRequired,
|
|
13816
|
+
event_id: PropTypes.string.isRequired,
|
|
13817
|
+
timestamp: PropTypes.string.isRequired,
|
|
13818
|
+
organization: PropTypes.string.isRequired,
|
|
13819
|
+
label_creation_job: T['io.flow.internal.v0.models.label_creation_job'].isRequired,
|
|
13820
|
+
});
|
|
13821
|
+
|
|
13518
13822
|
T['io.flow.internal.v0.enums.label_cancellation_error_code'] = PropTypes.oneOf(['already_used', 'carrier_unsupported']);
|
|
13519
13823
|
|
|
13520
13824
|
T['io.flow.internal.v0.models.label_cancellation_error'] = PropTypes.exact({
|
|
@@ -13576,7 +13880,7 @@ T['io.flow.internal.v0.models.item_sales_margin'] = PropTypes.exact({
|
|
|
13576
13880
|
position: PropTypes.number.isRequired,
|
|
13577
13881
|
});
|
|
13578
13882
|
|
|
13579
|
-
T['io.flow.internal.v0.enums.harmonization_decision_source'] = PropTypes.oneOf(['human', 'legacy_model', 'enterprise_model']);
|
|
13883
|
+
T['io.flow.internal.v0.enums.harmonization_decision_source'] = PropTypes.oneOf(['human', 'legacy_model', 'enterprise_model', 'merchant']);
|
|
13580
13884
|
T['io.flow.internal.v0.enums.item_type'] = PropTypes.oneOf(['standard', 'multi_product']);
|
|
13581
13885
|
|
|
13582
13886
|
T['io.flow.common.v0.models.item_reference'] = PropTypes.exact({
|
|
@@ -13689,6 +13993,12 @@ T['io.flow.payment.v0.enums.card_type'] = PropTypes.oneOf([
|
|
|
13689
13993
|
'visa',
|
|
13690
13994
|
]);
|
|
13691
13995
|
|
|
13996
|
+
T['io.flow.payment.v0.models.external_card'] = PropTypes.exact({
|
|
13997
|
+
discriminator: PropTypes.oneOf(['external_card']).isRequired,
|
|
13998
|
+
id: PropTypes.string.isRequired,
|
|
13999
|
+
type: T['io.flow.payment.v0.enums.card_type'],
|
|
14000
|
+
});
|
|
14001
|
+
|
|
13692
14002
|
T['io.flow.payment.v0.models.card_confirmation_summary'] = PropTypes.exact({
|
|
13693
14003
|
discriminator: PropTypes.oneOf(['card_confirmation_summary']).isRequired,
|
|
13694
14004
|
type: T['io.flow.payment.v0.enums.card_type'],
|
|
@@ -14003,6 +14313,64 @@ T['io.flow.payment.gateway.v0.unions.action'] = PropTypes.oneOfType([
|
|
|
14003
14313
|
]);
|
|
14004
14314
|
|
|
14005
14315
|
T['io.flow.internal.v0.enums.rate_source'] = PropTypes.oneOf(['calculated', 'market']);
|
|
14316
|
+
T['io.flow.experience.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
14317
|
+
|
|
14318
|
+
T['io.flow.experience.v0.models.incoterm_summary'] = PropTypes.exact({
|
|
14319
|
+
configuration: T['io.flow.experience.v0.enums.incoterm_configuration'].isRequired,
|
|
14320
|
+
includes: T['io.flow.experience.v0.models.incoterm_includes'].isRequired,
|
|
14321
|
+
reason: PropTypes.string,
|
|
14322
|
+
});
|
|
14323
|
+
|
|
14324
|
+
T['io.flow.experience.v0.models.destination_contact_detail'] = PropTypes.exact({
|
|
14325
|
+
title: PropTypes.string.isRequired,
|
|
14326
|
+
country: PropTypes.string.isRequired,
|
|
14327
|
+
import_identifier: PropTypes.string.isRequired,
|
|
14328
|
+
});
|
|
14329
|
+
|
|
14330
|
+
T['io.flow.payment.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.device_details_browser']]);
|
|
14331
|
+
|
|
14332
|
+
T['io.flow.payment.gateway.v0.models.payment_request_form'] = PropTypes.exact({
|
|
14333
|
+
amount: PropTypes.number.isRequired,
|
|
14334
|
+
currency: PropTypes.string.isRequired,
|
|
14335
|
+
order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
|
|
14336
|
+
device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
|
|
14337
|
+
locale: PropTypes.string,
|
|
14338
|
+
return_url: PropTypes.string.isRequired,
|
|
14339
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
14340
|
+
reference: PropTypes.string,
|
|
14341
|
+
payment_method_data: T['io.flow.payment.gateway.v0.unions.payment_method_data'],
|
|
14342
|
+
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']),
|
|
14343
|
+
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
14344
|
+
});
|
|
14345
|
+
|
|
14346
|
+
T['io.flow.experience.v0.models.order_geo'] = PropTypes.exact({
|
|
14347
|
+
ip: PropTypes.string,
|
|
14348
|
+
country: PropTypes.string.isRequired,
|
|
14349
|
+
currency: PropTypes.string,
|
|
14350
|
+
language: PropTypes.string,
|
|
14351
|
+
});
|
|
14352
|
+
|
|
14353
|
+
T['io.flow.harmonization.v0.models.tax_registration'] = PropTypes.exact({
|
|
14354
|
+
id: PropTypes.string.isRequired,
|
|
14355
|
+
key: PropTypes.string.isRequired,
|
|
14356
|
+
number: PropTypes.string.isRequired,
|
|
14357
|
+
timestamp: PropTypes.string.isRequired,
|
|
14358
|
+
result: T['io.flow.harmonization.v0.enums.tax_verification_result'].isRequired,
|
|
14359
|
+
result_reason: PropTypes.string,
|
|
14360
|
+
name: PropTypes.string,
|
|
14361
|
+
address: PropTypes.string,
|
|
14362
|
+
company_name: PropTypes.string,
|
|
14363
|
+
});
|
|
14364
|
+
|
|
14365
|
+
T['io.flow.experience.v0.models.order_rules_summary'] = PropTypes.exact({
|
|
14366
|
+
applied: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_rule_reference']).isRequired,
|
|
14367
|
+
});
|
|
14368
|
+
|
|
14369
|
+
T['io.flow.common.v0.enums.order_merchant_of_record'] = PropTypes.oneOf(['flow', 'organization', 'mixed']);
|
|
14370
|
+
|
|
14371
|
+
T['io.flow.payment.v0.models.card_metadata'] = PropTypes.exact({
|
|
14372
|
+
merchant_of_record: T['io.flow.common.v0.enums.order_merchant_of_record'],
|
|
14373
|
+
});
|
|
14006
14374
|
|
|
14007
14375
|
T['io.flow.common.v0.models.session_reference'] = PropTypes.exact({
|
|
14008
14376
|
id: PropTypes.string.isRequired,
|
|
@@ -14359,115 +14727,6 @@ T['io.flow.internal.v0.models.fulfillment_shopper_breakdown'] = PropTypes.exact(
|
|
|
14359
14727
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14360
14728
|
});
|
|
14361
14729
|
|
|
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
14730
|
T['io.flow.internal.v0.models.fulfillment_trigger_time'] = PropTypes.exact({
|
|
14472
14731
|
discriminator: PropTypes.oneOf(['by_time']).isRequired,
|
|
14473
14732
|
placeholder: PropTypes.string,
|
|
@@ -14530,7 +14789,7 @@ T['io.flow.internal.v0.models.shopper_lines'] = PropTypes.exact({
|
|
|
14530
14789
|
total: PropTypes.number.isRequired,
|
|
14531
14790
|
});
|
|
14532
14791
|
|
|
14533
|
-
T['io.flow.experience.v0.enums.order_type'] = PropTypes.oneOf(['standard', 'replacement']);
|
|
14792
|
+
T['io.flow.experience.v0.enums.order_type'] = PropTypes.oneOf(['standard', 'replacement', 'edit']);
|
|
14534
14793
|
|
|
14535
14794
|
T['io.flow.internal.v0.models.fulfillment_business'] = PropTypes.exact({
|
|
14536
14795
|
vat_registration_number: PropTypes.string.isRequired,
|
|
@@ -15490,6 +15749,9 @@ T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
|
|
|
15490
15749
|
'inch',
|
|
15491
15750
|
'foot',
|
|
15492
15751
|
'cubic_inch',
|
|
15752
|
+
'cubic_foot',
|
|
15753
|
+
'cubic_millimeter',
|
|
15754
|
+
'cubic_centimeter',
|
|
15493
15755
|
'cubic_meter',
|
|
15494
15756
|
'gram',
|
|
15495
15757
|
'kilogram',
|
|
@@ -15839,6 +16101,12 @@ T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
|
|
|
15839
16101
|
'tip',
|
|
15840
16102
|
]);
|
|
15841
16103
|
|
|
16104
|
+
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
16105
|
+
id: PropTypes.string,
|
|
16106
|
+
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
16107
|
+
weight_break: PropTypes.number,
|
|
16108
|
+
});
|
|
16109
|
+
|
|
15842
16110
|
T['io.flow.experience.v0.models.allocation_order_summary'] = PropTypes.exact({
|
|
15843
16111
|
id: PropTypes.string.isRequired,
|
|
15844
16112
|
number: PropTypes.string.isRequired,
|
|
@@ -16407,7 +16675,7 @@ T['io.flow.internal.v0.enums.item_classification_status'] = PropTypes.oneOf([
|
|
|
16407
16675
|
]);
|
|
16408
16676
|
|
|
16409
16677
|
T['io.flow.internal.v0.enums.clothing_age_classification'] = PropTypes.oneOf(['None', 'AgeKidsGeneral', 'Age0_10', 'Age10_13', 'Age13_14']);
|
|
16410
|
-
T['io.flow.internal.v0.enums.classification_type'] = PropTypes.oneOf(['None', 'Manual', 'ML']);
|
|
16678
|
+
T['io.flow.internal.v0.enums.classification_type'] = PropTypes.oneOf(['None', 'Manual', 'ML', 'System']);
|
|
16411
16679
|
T['io.flow.internal.v0.enums.classification_decision'] = PropTypes.oneOf(['Accept', 'Reject']);
|
|
16412
16680
|
|
|
16413
16681
|
T['io.flow.internal.v0.models.attribute_label'] = PropTypes.exact({
|
|
@@ -18370,6 +18638,12 @@ T['io.flow.trueup.v0.models.label_base'] = PropTypes.exact({
|
|
|
18370
18638
|
weight: PropTypes.number.isRequired,
|
|
18371
18639
|
});
|
|
18372
18640
|
|
|
18641
|
+
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
18642
|
+
units: T['io.flow.trueup.v0.models.label_units'].isRequired,
|
|
18643
|
+
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
18644
|
+
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']).isRequired,
|
|
18645
|
+
});
|
|
18646
|
+
|
|
18373
18647
|
T['io.flow.internal.v0.models.carrier_charge_units'] = PropTypes.exact({
|
|
18374
18648
|
currency: PropTypes.string.isRequired,
|
|
18375
18649
|
weight: T['io.flow.units.v0.enums.unit_of_weight'],
|
|
@@ -19217,9 +19491,9 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
19217
19491
|
'virtual_card_refund',
|
|
19218
19492
|
'failed_payout',
|
|
19219
19493
|
'tax_refund',
|
|
19494
|
+
'duty_refund',
|
|
19220
19495
|
'non_l4l_tax_duty_fx',
|
|
19221
19496
|
'ge_revenue_share',
|
|
19222
|
-
'tax_duty_delta',
|
|
19223
19497
|
]);
|
|
19224
19498
|
|
|
19225
19499
|
T['io.flow.internal.v0.models.debug_original_transaction_summary'] = PropTypes.exact({
|
|
@@ -19414,6 +19688,7 @@ T['io.flow.internal.v0.models.restriction_item_request_form'] = PropTypes.exact(
|
|
|
19414
19688
|
user_ids: PropTypes.arrayOf(PropTypes.string),
|
|
19415
19689
|
categories: PropTypes.arrayOf(PropTypes.string),
|
|
19416
19690
|
product_name_query: PropTypes.string,
|
|
19691
|
+
hs6: PropTypes.string,
|
|
19417
19692
|
positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
19418
19693
|
negative_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
19419
19694
|
product_id: PropTypes.string,
|
|
@@ -19853,21 +20128,21 @@ T['io.flow.partner.v0.models.partner_fulfillment'] = PropTypes.exact({
|
|
|
19853
20128
|
center: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.center_summary']),
|
|
19854
20129
|
});
|
|
19855
20130
|
|
|
19856
|
-
T['io.flow.
|
|
19857
|
-
discriminator: PropTypes.oneOf(['order_fulfillment_upserted']).isRequired,
|
|
19858
|
-
event_id: PropTypes.string.isRequired,
|
|
19859
|
-
timestamp: PropTypes.string.isRequired,
|
|
20131
|
+
T['io.flow.order.management.v0.models.fulfillment'] = PropTypes.exact({
|
|
19860
20132
|
organization: PropTypes.string.isRequired,
|
|
19861
20133
|
key: PropTypes.string.isRequired,
|
|
19862
|
-
|
|
20134
|
+
number: PropTypes.string.isRequired,
|
|
19863
20135
|
items: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_item']).isRequired,
|
|
19864
20136
|
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
19865
20137
|
});
|
|
19866
20138
|
|
|
19867
|
-
T['io.flow.
|
|
20139
|
+
T['io.flow.internal.v0.models.order_fulfillment_upserted'] = PropTypes.exact({
|
|
20140
|
+
discriminator: PropTypes.oneOf(['order_fulfillment_upserted']).isRequired,
|
|
20141
|
+
event_id: PropTypes.string.isRequired,
|
|
20142
|
+
timestamp: PropTypes.string.isRequired,
|
|
19868
20143
|
organization: PropTypes.string.isRequired,
|
|
19869
20144
|
key: PropTypes.string.isRequired,
|
|
19870
|
-
|
|
20145
|
+
order_number: PropTypes.string.isRequired,
|
|
19871
20146
|
items: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_item']).isRequired,
|
|
19872
20147
|
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
19873
20148
|
});
|
|
@@ -20027,6 +20302,7 @@ T['io.flow.payment.v0.unions.expandable_card'] = PropTypes.oneOfType([
|
|
|
20027
20302
|
T['io.flow.payment.v0.models.card'],
|
|
20028
20303
|
T['io.flow.payment.v0.models.card_reference'],
|
|
20029
20304
|
T['io.flow.payment.v0.models.card_summary'],
|
|
20305
|
+
T['io.flow.payment.v0.models.external_card'],
|
|
20030
20306
|
]);
|
|
20031
20307
|
|
|
20032
20308
|
T['io.flow.payment.v0.models.ach_authorization_form'] = PropTypes.exact({
|
|
@@ -20384,6 +20660,13 @@ T['io.flow.internal.v0.models.shopify_merchant_plan'] = PropTypes.exact({
|
|
|
20384
20660
|
plan: T['io.flow.internal.v0.enums.shopify_plan_type'].isRequired,
|
|
20385
20661
|
});
|
|
20386
20662
|
|
|
20663
|
+
T['io.flow.internal.v0.models.shopify_merchant_plan_upserted'] = PropTypes.exact({
|
|
20664
|
+
discriminator: PropTypes.oneOf(['shopify_merchant_plan_upserted']).isRequired,
|
|
20665
|
+
event_id: PropTypes.string.isRequired,
|
|
20666
|
+
timestamp: PropTypes.string.isRequired,
|
|
20667
|
+
shopify_merchant_plan: T['io.flow.internal.v0.models.shopify_merchant_plan'].isRequired,
|
|
20668
|
+
});
|
|
20669
|
+
|
|
20387
20670
|
T['io.flow.internal.v0.models.authorization_bundle'] = PropTypes.exact({
|
|
20388
20671
|
id: PropTypes.string.isRequired,
|
|
20389
20672
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -21514,18 +21797,6 @@ T['io.flow.internal.v0.models.debug_order_transaction_details'] = PropTypes.exac
|
|
|
21514
21797
|
payout_details: T['io.flow.billing.v0.unions.payout_status'],
|
|
21515
21798
|
});
|
|
21516
21799
|
|
|
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,
|
|
21527
|
-
});
|
|
21528
|
-
|
|
21529
21800
|
T['io.flow.internal.v0.enums.address_configuration_setting_province_code'] = PropTypes.oneOf(['iso_3166_2', 'name']);
|
|
21530
21801
|
|
|
21531
21802
|
T['io.flow.internal.v0.models.address_configuration_setting_form'] = PropTypes.exact({
|
|
@@ -21856,6 +22127,7 @@ T['io.flow.ratecard.v0.models.eei_filing_ratecard_fee'] = PropTypes.exact({
|
|
|
21856
22127
|
T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee'] = PropTypes.exact({
|
|
21857
22128
|
discriminator: PropTypes.oneOf(['duties_taxes_paid_surcharge_service_fee']).isRequired,
|
|
21858
22129
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22130
|
+
destination_countries: PropTypes.arrayOf(PropTypes.string),
|
|
21859
22131
|
starts_at: PropTypes.string,
|
|
21860
22132
|
ends_at: PropTypes.string,
|
|
21861
22133
|
});
|
|
@@ -22157,6 +22429,8 @@ T['io.flow.ratecard.v0.models.ratecard_estimate_v4'] = PropTypes.exact({
|
|
|
22157
22429
|
discriminator: PropTypes.oneOf(['ratecard_estimate_v4']).isRequired,
|
|
22158
22430
|
hops: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.hop_v2']).isRequired,
|
|
22159
22431
|
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
22432
|
+
distance_unit_of_measurement: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22433
|
+
weight_unit_of_measurement: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22160
22434
|
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
22161
22435
|
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
22162
22436
|
ratecard_id: PropTypes.string,
|
|
@@ -22493,6 +22767,22 @@ T['io.flow.payment.v0.models.online_authorization'] = PropTypes.exact({
|
|
|
22493
22767
|
authorization_request_id: PropTypes.string,
|
|
22494
22768
|
});
|
|
22495
22769
|
|
|
22770
|
+
T['io.flow.payment.v0.models.exchanged_money'] = PropTypes.exact({
|
|
22771
|
+
fx_rate: PropTypes.number.isRequired,
|
|
22772
|
+
money: T['io.flow.common.v0.models.money'].isRequired,
|
|
22773
|
+
});
|
|
22774
|
+
|
|
22775
|
+
T['io.flow.payment.v0.models.transfer'] = PropTypes.exact({
|
|
22776
|
+
id: PropTypes.string.isRequired,
|
|
22777
|
+
type: T['io.flow.payment.v0.enums.transfer_type'].isRequired,
|
|
22778
|
+
money: T['io.flow.common.v0.models.money'].isRequired,
|
|
22779
|
+
transferred_money: T['io.flow.payment.v0.models.exchanged_money'].isRequired,
|
|
22780
|
+
status: T['io.flow.payment.v0.enums.transfer_status'].isRequired,
|
|
22781
|
+
created_at: PropTypes.string.isRequired,
|
|
22782
|
+
reference: T['io.flow.payment.v0.unions.transfer_reference'].isRequired,
|
|
22783
|
+
transferred_at: PropTypes.string.isRequired,
|
|
22784
|
+
});
|
|
22785
|
+
|
|
22496
22786
|
T['io.flow.payment.v0.models.card_authorization'] = PropTypes.exact({
|
|
22497
22787
|
discriminator: PropTypes.oneOf(['card_authorization']).isRequired,
|
|
22498
22788
|
id: PropTypes.string.isRequired,
|
|
@@ -22551,6 +22841,12 @@ T['io.flow.internal.v0.models.checkout_payment'] = PropTypes.exact({
|
|
|
22551
22841
|
authorization_parameters: PropTypes.arrayOf(T['io.flow.internal.v0.models.authorization_parameters']).isRequired,
|
|
22552
22842
|
});
|
|
22553
22843
|
|
|
22844
|
+
T['io.flow.payment.v0.models.payment_fee'] = PropTypes.exact({
|
|
22845
|
+
type: T['io.flow.payment.v0.enums.payment_fee_type'].isRequired,
|
|
22846
|
+
money: T['io.flow.common.v0.models.money'].isRequired,
|
|
22847
|
+
base: T['io.flow.common.v0.models.money'],
|
|
22848
|
+
});
|
|
22849
|
+
|
|
22554
22850
|
T['io.flow.payment.v0.models.capture'] = PropTypes.exact({
|
|
22555
22851
|
id: PropTypes.string.isRequired,
|
|
22556
22852
|
key: PropTypes.string.isRequired,
|
|
@@ -22562,6 +22858,7 @@ T['io.flow.payment.v0.models.capture'] = PropTypes.exact({
|
|
|
22562
22858
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22563
22859
|
status: T['io.flow.payment.v0.enums.capture_status'],
|
|
22564
22860
|
base: T['io.flow.common.v0.models.money'],
|
|
22861
|
+
fees: PropTypes.arrayOf(T['io.flow.payment.v0.models.payment_fee']),
|
|
22565
22862
|
});
|
|
22566
22863
|
|
|
22567
22864
|
T['io.flow.payment.v0.models.refund_capture_summary'] = PropTypes.exact({
|
|
@@ -22648,27 +22945,6 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
|
|
|
22648
22945
|
|
|
22649
22946
|
T['io.flow.merchant.onboarding.v0.unions.merchant_application'] = PropTypes.oneOfType([T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application']]);
|
|
22650
22947
|
|
|
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
22948
|
T['io.flow.internal.v0.models.shopify_promotion_attribute_value'] = PropTypes.exact({
|
|
22673
22949
|
name: PropTypes.string.isRequired,
|
|
22674
22950
|
discount: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -22872,6 +23148,21 @@ T['io.flow.internal.v0.models.dispute_record'] = PropTypes.exact({
|
|
|
22872
23148
|
chargeback_amount: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
22873
23149
|
});
|
|
22874
23150
|
|
|
23151
|
+
T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
23152
|
+
lane: T['io.flow.label.v0.models.shipping_label_lane_summary'].isRequired,
|
|
23153
|
+
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
23154
|
+
itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
23155
|
+
});
|
|
23156
|
+
|
|
23157
|
+
T['io.flow.internal.v0.models.debug_label'] = PropTypes.exact({
|
|
23158
|
+
carrier_id: PropTypes.string.isRequired,
|
|
23159
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
23160
|
+
label_tracking_summary_id: PropTypes.string,
|
|
23161
|
+
label_id: PropTypes.string,
|
|
23162
|
+
cost_estimate: T['io.flow.label.v0.models.shipping_label_hop_summary'],
|
|
23163
|
+
transactions: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_label_transaction_summary']),
|
|
23164
|
+
});
|
|
23165
|
+
|
|
22875
23166
|
T['io.flow.internal.v0.models.chargeback'] = PropTypes.exact({
|
|
22876
23167
|
id: PropTypes.string.isRequired,
|
|
22877
23168
|
key: PropTypes.string.isRequired,
|
|
@@ -22997,53 +23288,6 @@ T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
|
|
|
22997
23288
|
details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
|
|
22998
23289
|
});
|
|
22999
23290
|
|
|
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
23291
|
T['io.flow.internal.v0.models.additional_import_tax'] = PropTypes.exact({
|
|
23048
23292
|
name: PropTypes.string,
|
|
23049
23293
|
additional_import_tax_value: T['io.flow.common.v0.models.money'],
|
|
@@ -23573,6 +23817,25 @@ T['io.flow.internal.v0.models.liability_remittance_plan_deleted'] = PropTypes.ex
|
|
|
23573
23817
|
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
|
|
23574
23818
|
});
|
|
23575
23819
|
|
|
23820
|
+
T['io.flow.internal.v0.models.label_request_result'] = PropTypes.exact({
|
|
23821
|
+
id: PropTypes.string.isRequired,
|
|
23822
|
+
created_at: PropTypes.string.isRequired,
|
|
23823
|
+
state: T['io.flow.internal.v0.enums.label_request_result_state'].isRequired,
|
|
23824
|
+
organization_id: PropTypes.string.isRequired,
|
|
23825
|
+
order_number: PropTypes.string.isRequired,
|
|
23826
|
+
label_request_method: T['io.flow.label.v0.enums.label_request_method'].isRequired,
|
|
23827
|
+
carrier_id: PropTypes.string,
|
|
23828
|
+
carrier_tracking_number: PropTypes.string,
|
|
23829
|
+
url: PropTypes.string,
|
|
23830
|
+
error: PropTypes.string,
|
|
23831
|
+
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'],
|
|
23832
|
+
origin_country: PropTypes.string,
|
|
23833
|
+
destination_country: PropTypes.string,
|
|
23834
|
+
reference_id: PropTypes.string,
|
|
23835
|
+
logistics_integration_provider: PropTypes.string,
|
|
23836
|
+
tax_lrp_liabilities: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability']),
|
|
23837
|
+
});
|
|
23838
|
+
|
|
23576
23839
|
T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
|
|
23577
23840
|
id: PropTypes.string.isRequired,
|
|
23578
23841
|
label_id: PropTypes.string.isRequired,
|
|
@@ -24255,8 +24518,11 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
24255
24518
|
organization_id: PropTypes.string.isRequired,
|
|
24256
24519
|
restriction_product_id: PropTypes.string.isRequired,
|
|
24257
24520
|
product_id: PropTypes.string.isRequired,
|
|
24521
|
+
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24522
|
+
primary_item_number: PropTypes.string,
|
|
24258
24523
|
name: PropTypes.string.isRequired,
|
|
24259
24524
|
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
24525
|
+
hs_code: PropTypes.string,
|
|
24260
24526
|
description: PropTypes.string.isRequired,
|
|
24261
24527
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24262
24528
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
@@ -24958,6 +25224,13 @@ T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
|
|
|
24958
25224
|
banking: T['io.flow.internal.v0.models.debug_banking_details'].isRequired,
|
|
24959
25225
|
});
|
|
24960
25226
|
|
|
25227
|
+
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'] = PropTypes.exact({
|
|
25228
|
+
item_number: PropTypes.string.isRequired,
|
|
25229
|
+
line_number: PropTypes.number.isRequired,
|
|
25230
|
+
levies: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25231
|
+
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25232
|
+
});
|
|
25233
|
+
|
|
24961
25234
|
T['io.flow.experience.v0.models.order_payment'] = PropTypes.exact({
|
|
24962
25235
|
id: PropTypes.string.isRequired,
|
|
24963
25236
|
type: T['io.flow.experience.v0.enums.order_payment_type'].isRequired,
|
|
@@ -25077,6 +25350,39 @@ T['io.flow.experience.v0.models.credit_payment_version'] = PropTypes.exact({
|
|
|
25077
25350
|
credit_payment: T['io.flow.experience.v0.models.credit_payment'].isRequired,
|
|
25078
25351
|
});
|
|
25079
25352
|
|
|
25353
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill_details'] = PropTypes.exact({
|
|
25354
|
+
id: PropTypes.string.isRequired,
|
|
25355
|
+
order_number: PropTypes.string.isRequired,
|
|
25356
|
+
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25357
|
+
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']),
|
|
25358
|
+
|
|
25359
|
+
fulfillment_item_allocation_details: PropTypes.arrayOf(
|
|
25360
|
+
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'],
|
|
25361
|
+
),
|
|
25362
|
+
});
|
|
25363
|
+
|
|
25364
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'] = PropTypes.exact({
|
|
25365
|
+
discriminator: PropTypes.oneOf(['ready_to_fulfill_v2']).isRequired,
|
|
25366
|
+
event_id: PropTypes.string.isRequired,
|
|
25367
|
+
timestamp: PropTypes.string.isRequired,
|
|
25368
|
+
organization: PropTypes.string.isRequired,
|
|
25369
|
+
ready_to_fulfill: T['io.flow.order.management.event.v0.models.ready_to_fulfill_details'].isRequired,
|
|
25370
|
+
});
|
|
25371
|
+
|
|
25372
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill'] = PropTypes.exact({
|
|
25373
|
+
discriminator: PropTypes.oneOf(['ready_to_fulfill']).isRequired,
|
|
25374
|
+
event_id: PropTypes.string.isRequired,
|
|
25375
|
+
timestamp: PropTypes.string.isRequired,
|
|
25376
|
+
organization: PropTypes.string.isRequired,
|
|
25377
|
+
order_number: PropTypes.string.isRequired,
|
|
25378
|
+
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25379
|
+
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']),
|
|
25380
|
+
|
|
25381
|
+
fulfillment_item_allocation_details: PropTypes.arrayOf(
|
|
25382
|
+
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'],
|
|
25383
|
+
),
|
|
25384
|
+
});
|
|
25385
|
+
|
|
25080
25386
|
T['io.flow.order.management.event.v0.models.order_placed'] = PropTypes.exact({
|
|
25081
25387
|
discriminator: PropTypes.oneOf(['order_placed']).isRequired,
|
|
25082
25388
|
event_id: PropTypes.string.isRequired,
|
|
@@ -25101,6 +25407,13 @@ T['io.flow.order.management.event.v0.models.order_placed_v2'] = PropTypes.exact(
|
|
|
25101
25407
|
order_placed: T['io.flow.order.management.v0.models.order_placed_details'].isRequired,
|
|
25102
25408
|
});
|
|
25103
25409
|
|
|
25410
|
+
T['io.flow.order.management.event.v0.unions.order_management_event'] = PropTypes.oneOfType([
|
|
25411
|
+
T['io.flow.order.management.event.v0.models.order_placed'],
|
|
25412
|
+
T['io.flow.order.management.event.v0.models.order_placed_v2'],
|
|
25413
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill'],
|
|
25414
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'],
|
|
25415
|
+
]);
|
|
25416
|
+
|
|
25104
25417
|
T['io.flow.experience.v0.models.order_builder'] = PropTypes.exact({
|
|
25105
25418
|
order: T['io.flow.experience.v0.models.order'],
|
|
25106
25419
|
errors: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_error']),
|
|
@@ -25135,27 +25448,6 @@ T['io.flow.internal.v0.models.submitted_order_upserted'] = PropTypes.exact({
|
|
|
25135
25448
|
session: T['io.flow.internal.v0.models.experience_session_reference'],
|
|
25136
25449
|
});
|
|
25137
25450
|
|
|
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
25451
|
T['io.flow.internal.v0.models.internal_order'] = PropTypes.exact({
|
|
25160
25452
|
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25161
25453
|
session: T['io.flow.common.v0.models.session_reference'],
|
|
@@ -25164,19 +25456,6 @@ T['io.flow.internal.v0.models.internal_order'] = PropTypes.exact({
|
|
|
25164
25456
|
discount: T['io.flow.common.v0.models.money'],
|
|
25165
25457
|
});
|
|
25166
25458
|
|
|
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
25459
|
T['io.flow.internal.v0.models.shopify_order_line_content'] = PropTypes.exact({
|
|
25181
25460
|
item_number: PropTypes.string.isRequired,
|
|
25182
25461
|
quantity: PropTypes.number.isRequired,
|
|
@@ -25207,67 +25486,6 @@ T['io.flow.internal.v0.models.shopify_order_authorization'] = PropTypes.exact({
|
|
|
25207
25486
|
redirect: PropTypes.string,
|
|
25208
25487
|
});
|
|
25209
25488
|
|
|
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
25489
|
T['io.flow.export.v0.models.export_localized_item_prices_detail'] = PropTypes.exact({
|
|
25272
25490
|
item: T['io.flow.catalog.v0.models.localized_item_price'].isRequired,
|
|
25273
25491
|
vat: T['io.flow.catalog.v0.models.localized_item_vat'],
|
|
@@ -25297,25 +25515,6 @@ T['io.flow.internal.v0.models.localized_price_book_item_data'] = PropTypes.exact
|
|
|
25297
25515
|
price_end_date: PropTypes.string,
|
|
25298
25516
|
});
|
|
25299
25517
|
|
|
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
25518
|
T['io.flow.internal.v0.models.authorized_shipping_charge'] = PropTypes.exact({
|
|
25320
25519
|
discriminator: PropTypes.oneOf(['authorized_shipping_charge']).isRequired,
|
|
25321
25520
|
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
@@ -25861,7 +26060,6 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
25861
26060
|
'tax_refund',
|
|
25862
26061
|
'duty_refund',
|
|
25863
26062
|
'ge_revenue_share',
|
|
25864
|
-
'tax_duty_delta',
|
|
25865
26063
|
]);
|
|
25866
26064
|
|
|
25867
26065
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -25971,19 +26169,6 @@ T['io.flow.internal.v0.models.tax_remittance_transaction_upserted'] = PropTypes.
|
|
|
25971
26169
|
transaction: T['io.flow.internal.v0.models.tax_remittance_transaction'].isRequired,
|
|
25972
26170
|
});
|
|
25973
26171
|
|
|
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
26172
|
T['io.flow.internal.v0.models.subscription_transaction'] = PropTypes.exact({
|
|
25988
26173
|
discriminator: PropTypes.oneOf(['subscription_transaction']).isRequired,
|
|
25989
26174
|
period: T['io.flow.common.v0.models.datetime_range'].isRequired,
|
|
@@ -26131,6 +26316,7 @@ T['io.flow.internal.v0.models.main_transaction'] = PropTypes.exact({
|
|
|
26131
26316
|
paid_at: PropTypes.string,
|
|
26132
26317
|
posted_at: PropTypes.string,
|
|
26133
26318
|
statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
26319
|
+
channel_statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
26134
26320
|
created_at: PropTypes.string.isRequired,
|
|
26135
26321
|
original_at: PropTypes.string,
|
|
26136
26322
|
});
|
|
@@ -26317,7 +26503,6 @@ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
|
|
|
26317
26503
|
T['io.flow.internal.v0.models.carrier_charge_transaction'],
|
|
26318
26504
|
T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'],
|
|
26319
26505
|
T['io.flow.internal.v0.models.ge_revenue_share_transaction'],
|
|
26320
|
-
T['io.flow.internal.v0.models.tax_duty_delta_transaction'],
|
|
26321
26506
|
]);
|
|
26322
26507
|
|
|
26323
26508
|
T['io.flow.internal.v0.models.billing_transaction'] = PropTypes.exact({
|
|
@@ -26563,10 +26748,6 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
|
|
|
26563
26748
|
});
|
|
26564
26749
|
|
|
26565
26750
|
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
26751
|
T['io.flow.internal.v0.models.adyen_authorization_deleted'],
|
|
26571
26752
|
T['io.flow.internal.v0.models.adyen_authorization_upserted'],
|
|
26572
26753
|
T['io.flow.internal.v0.models.adyen_cancel_deleted'],
|
|
@@ -26765,6 +26946,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26765
26946
|
T['io.flow.internal.v0.models.order_validation_failure_deleted'],
|
|
26766
26947
|
T['io.flow.internal.v0.models.order_validation_upserted'],
|
|
26767
26948
|
T['io.flow.internal.v0.models.order_validation_deleted'],
|
|
26949
|
+
T['io.flow.internal.v0.models.label_creation_job_upserted'],
|
|
26950
|
+
T['io.flow.internal.v0.models.label_creation_job_deleted'],
|
|
26768
26951
|
T['io.flow.internal.v0.models.label_tracking_summary_upserted'],
|
|
26769
26952
|
T['io.flow.internal.v0.models.label_tracking_summary_deleted'],
|
|
26770
26953
|
T['io.flow.internal.v0.models.logistics_capabilities_upserted'],
|
|
@@ -26774,11 +26957,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26774
26957
|
T['io.flow.internal.v0.models.order_combined_shipment_deleted'],
|
|
26775
26958
|
T['io.flow.internal.v0.models.order_fulfillment_deleted'],
|
|
26776
26959
|
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
26960
|
T['io.flow.internal.v0.models.organization_business_entity_deleted'],
|
|
26783
26961
|
T['io.flow.internal.v0.models.organization_business_entity_upserted'],
|
|
26784
26962
|
T['io.flow.internal.v0.models.organization_status_change_upserted'],
|
|
@@ -26797,6 +26975,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26797
26975
|
T['io.flow.internal.v0.models.partner_tracking_subscription_deleted'],
|
|
26798
26976
|
T['io.flow.internal.v0.models.spp_tracker_update_request_upserted'],
|
|
26799
26977
|
T['io.flow.internal.v0.models.spp_tracker_update_request_deleted'],
|
|
26978
|
+
T['io.flow.internal.v0.models.partner_request_upserted'],
|
|
26979
|
+
T['io.flow.internal.v0.models.partner_request_deleted'],
|
|
26800
26980
|
T['io.flow.internal.v0.models.internal_authorization_upserted'],
|
|
26801
26981
|
T['io.flow.internal.v0.models.internal_authorization_deleted'],
|
|
26802
26982
|
T['io.flow.internal.v0.models.afterpay_authorization_upserted'],
|
|
@@ -26894,6 +27074,10 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26894
27074
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
|
|
26895
27075
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'],
|
|
26896
27076
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'],
|
|
27077
|
+
T['io.flow.internal.v0.models.shopify_merchant_plan_upserted'],
|
|
27078
|
+
T['io.flow.internal.v0.models.shopify_merchant_plan_deleted'],
|
|
27079
|
+
T['io.flow.internal.v0.models.shopify_dispute_upserted'],
|
|
27080
|
+
T['io.flow.internal.v0.models.shopify_dispute_deleted'],
|
|
26897
27081
|
T['io.flow.internal.v0.models.stripe_authorization_deleted'],
|
|
26898
27082
|
T['io.flow.internal.v0.models.stripe_authorization_upserted'],
|
|
26899
27083
|
T['io.flow.internal.v0.models.stripe_reversal_deleted'],
|
|
@@ -26904,6 +27088,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26904
27088
|
T['io.flow.internal.v0.models.stripe_refund_upserted'],
|
|
26905
27089
|
T['io.flow.internal.v0.models.stripe_dispute_upserted'],
|
|
26906
27090
|
T['io.flow.internal.v0.models.stripe_dispute_deleted'],
|
|
27091
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'],
|
|
27092
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'],
|
|
26907
27093
|
T['io.flow.internal.v0.models.liability_remittance_plan_upserted'],
|
|
26908
27094
|
T['io.flow.internal.v0.models.liability_remittance_plan_deleted'],
|
|
26909
27095
|
T['io.flow.internal.v0.models.tracking_processing_error_upserted'],
|
|
@@ -27080,13 +27266,9 @@ T['io.flow.internal.v0.enums.deminimis_adjustment_type'] = PropTypes.oneOf(['non
|
|
|
27080
27266
|
T['io.flow.internal.v0.enums.dispute_evidence'] = PropTypes.oneOf(['proof_of_delivery', 'proof_of_fulfillment', 'other']);
|
|
27081
27267
|
T['io.flow.internal.v0.enums.dispute_transaction_type'] = PropTypes.oneOf(['adjustment', 'dispute']);
|
|
27082
27268
|
T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_card', 'service', 'digital_item', 'personalization']);
|
|
27083
|
-
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty']);
|
|
27269
|
+
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty', 'refund']);
|
|
27084
27270
|
|
|
27085
27271
|
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
27272
|
'adyen_authorization_deleted',
|
|
27091
27273
|
'adyen_authorization_upserted',
|
|
27092
27274
|
'adyen_cancel_deleted',
|
|
@@ -27285,6 +27467,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27285
27467
|
'order_validation_failure_deleted',
|
|
27286
27468
|
'order_validation_upserted',
|
|
27287
27469
|
'order_validation_deleted',
|
|
27470
|
+
'label_creation_job_upserted',
|
|
27471
|
+
'label_creation_job_deleted',
|
|
27288
27472
|
'label_tracking_summary_upserted',
|
|
27289
27473
|
'label_tracking_summary_deleted',
|
|
27290
27474
|
'logistics_capabilities_upserted',
|
|
@@ -27294,11 +27478,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27294
27478
|
'order_combined_shipment_deleted',
|
|
27295
27479
|
'order_fulfillment_deleted',
|
|
27296
27480
|
'order_fulfillment_upserted',
|
|
27297
|
-
'order_placed',
|
|
27298
|
-
'ready_to_fulfill',
|
|
27299
|
-
'fulfillment_cancel',
|
|
27300
|
-
'order_shipped',
|
|
27301
|
-
'items_shipped',
|
|
27302
27481
|
'organization_business_entity_deleted',
|
|
27303
27482
|
'organization_business_entity_upserted',
|
|
27304
27483
|
'organization_status_change_upserted',
|
|
@@ -27317,6 +27496,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27317
27496
|
'partner_tracking_subscription_deleted',
|
|
27318
27497
|
'spp_tracker_update_request_upserted',
|
|
27319
27498
|
'spp_tracker_update_request_deleted',
|
|
27499
|
+
'partner_request_upserted',
|
|
27500
|
+
'partner_request_deleted',
|
|
27320
27501
|
'internal_authorization_upserted',
|
|
27321
27502
|
'internal_authorization_deleted',
|
|
27322
27503
|
'afterpay_authorization_upserted',
|
|
@@ -27414,6 +27595,10 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27414
27595
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
27415
27596
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
27416
27597
|
'shopify_order_fulfillments_snapshot_deleted',
|
|
27598
|
+
'shopify_merchant_plan_upserted',
|
|
27599
|
+
'shopify_merchant_plan_deleted',
|
|
27600
|
+
'shopify_dispute_upserted',
|
|
27601
|
+
'shopify_dispute_deleted',
|
|
27417
27602
|
'stripe_authorization_deleted',
|
|
27418
27603
|
'stripe_authorization_upserted',
|
|
27419
27604
|
'stripe_reversal_deleted',
|
|
@@ -27424,6 +27609,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27424
27609
|
'stripe_refund_upserted',
|
|
27425
27610
|
'stripe_dispute_upserted',
|
|
27426
27611
|
'stripe_dispute_deleted',
|
|
27612
|
+
'stripe_connect_report_record_upserted',
|
|
27613
|
+
'stripe_connect_report_record_deleted',
|
|
27427
27614
|
'liability_remittance_plan_upserted',
|
|
27428
27615
|
'liability_remittance_plan_deleted',
|
|
27429
27616
|
'tracking_processing_error_upserted',
|
|
@@ -28285,6 +28472,13 @@ T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes
|
|
|
28285
28472
|
margin: PropTypes.number.isRequired,
|
|
28286
28473
|
});
|
|
28287
28474
|
|
|
28475
|
+
T['io.flow.internal.v0.models.report_record_error'] = PropTypes.exact({
|
|
28476
|
+
id: PropTypes.string.isRequired,
|
|
28477
|
+
file_id: PropTypes.string.isRequired,
|
|
28478
|
+
line_number: PropTypes.number.isRequired,
|
|
28479
|
+
failure_reason: PropTypes.string.isRequired,
|
|
28480
|
+
});
|
|
28481
|
+
|
|
28288
28482
|
T['io.flow.internal.v0.models.report_summary'] = PropTypes.exact({
|
|
28289
28483
|
task_id: PropTypes.string.isRequired,
|
|
28290
28484
|
});
|
|
@@ -28313,6 +28507,7 @@ T['io.flow.internal.v0.models.restriction_product_request_form'] = PropTypes.exa
|
|
|
28313
28507
|
user_ids: PropTypes.arrayOf(PropTypes.string),
|
|
28314
28508
|
categories: PropTypes.arrayOf(PropTypes.string),
|
|
28315
28509
|
product_name_query: PropTypes.string,
|
|
28510
|
+
hs6: PropTypes.string,
|
|
28316
28511
|
product_id: PropTypes.string,
|
|
28317
28512
|
});
|
|
28318
28513
|
|
|
@@ -28937,7 +29132,14 @@ T['io.flow.brickftp.v0.models.file_upload_metadata'] = PropTypes.exact({
|
|
|
28937
29132
|
upload_uri: PropTypes.string.isRequired,
|
|
28938
29133
|
});
|
|
28939
29134
|
|
|
28940
|
-
T['io.flow.units.v0.enums.unit_of_volume'] = PropTypes.oneOf([
|
|
29135
|
+
T['io.flow.units.v0.enums.unit_of_volume'] = PropTypes.oneOf([
|
|
29136
|
+
'cubic_inch',
|
|
29137
|
+
'cubic_foot',
|
|
29138
|
+
'cubic_millimeter',
|
|
29139
|
+
'cubic_centimeter',
|
|
29140
|
+
'cubic_meter',
|
|
29141
|
+
]);
|
|
29142
|
+
|
|
28941
29143
|
T['io.flow.shopify.markets.internal.v0.enums.any_dangerous_goods'] = PropTypes.oneOf(['yes', 'no', 'i_dont_know']);
|
|
28942
29144
|
T['io.flow.shopify.markets.internal.v0.enums.api_call_reference_id'] = PropTypes.oneOf(['duty_rates_data_event', 'integration_test', 'unit_test']);
|
|
28943
29145
|
|
|
@@ -29878,9 +30080,6 @@ export const addressConfigurationProvinceSetting = T['io.flow.internal.v0.models
|
|
|
29878
30080
|
export const addressConfigurationSetting = T['io.flow.internal.v0.models.address_configuration_setting'];
|
|
29879
30081
|
export const addressConfigurationSettingForm = T['io.flow.internal.v0.models.address_configuration_setting_form'];
|
|
29880
30082
|
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
30083
|
export const adjustmentAmount = T['io.flow.internal.v0.unions.adjustment_amount'];
|
|
29885
30084
|
export const adjustmentAmountFixed = T['io.flow.internal.v0.models.adjustment_amount_fixed'];
|
|
29886
30085
|
export const adjustmentAmountPercentage = T['io.flow.internal.v0.models.adjustment_amount_percentage'];
|
|
@@ -30242,6 +30441,7 @@ export const complianceData = T['io.flow.internal.v0.unions.compliance_data'];
|
|
|
30242
30441
|
export const complianceForm = T['io.flow.internal.v0.unions.compliance_form'];
|
|
30243
30442
|
export const complianceType = T['io.flow.internal.v0.enums.compliance_type'];
|
|
30244
30443
|
export const components = T['io.flow.internal.v0.models.components'];
|
|
30444
|
+
export const connectReportTransferType = T['io.flow.internal.v0.enums.connect_report_transfer_type'];
|
|
30245
30445
|
export const consoleLabelRequestForm = T['io.flow.internal.v0.models.console_label_request_form'];
|
|
30246
30446
|
export const consoleLabelValidationForm = T['io.flow.internal.v0.unions.console_label_validation_form'];
|
|
30247
30447
|
export const consoleMarkUnresolvableForm = T['io.flow.internal.v0.models.console_mark_unresolvable_form'];
|
|
@@ -30540,7 +30740,6 @@ export const fuelSurchargeServiceFeePutForm = T['io.flow.internal.v0.unions.fuel
|
|
|
30540
30740
|
export const fulfillment = T['io.flow.internal.v0.models.fulfillment'];
|
|
30541
30741
|
export const fulfillmentActionForm = T['io.flow.internal.v0.models.fulfillment_action_form'];
|
|
30542
30742
|
export const fulfillmentBusiness = T['io.flow.internal.v0.models.fulfillment_business'];
|
|
30543
|
-
export const fulfillmentCancel = T['io.flow.internal.v0.models.fulfillment_cancel'];
|
|
30544
30743
|
export const fulfillmentCarrier = T['io.flow.internal.v0.models.fulfillment_carrier'];
|
|
30545
30744
|
export const fulfillmentDeleted = T['io.flow.internal.v0.models.fulfillment_deleted'];
|
|
30546
30745
|
export const fulfillmentFallbacks = T['io.flow.internal.v0.models.fulfillment_fallbacks'];
|
|
@@ -30553,7 +30752,6 @@ export const fulfillmentProofLabelTrackingReference = T['io.flow.internal.v0.mod
|
|
|
30553
30752
|
export const fulfillmentProofOrderCombinedShipmentReference = T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'];
|
|
30554
30753
|
export const fulfillmentProofShippingNotificationReference = T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'];
|
|
30555
30754
|
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
30755
|
export const fulfillmentShopperBreakdown = T['io.flow.internal.v0.models.fulfillment_shopper_breakdown'];
|
|
30558
30756
|
export const fulfillmentSnapshot = T['io.flow.internal.v0.models.fulfillment_snapshot'];
|
|
30559
30757
|
export const fulfillmentSubsidyBreakdown = T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'];
|
|
@@ -30626,6 +30824,7 @@ export const internalFiservAuthorizationDetails = T['io.flow.internal.v0.models.
|
|
|
30626
30824
|
export const internalHarmonizationStatistic = T['io.flow.internal.v0.unions.internal_harmonization_statistic'];
|
|
30627
30825
|
export const internalItemForm = T['io.flow.internal.v0.models.internal_item_form'];
|
|
30628
30826
|
export const internalOrder = T['io.flow.internal.v0.models.internal_order'];
|
|
30827
|
+
export const internalPaymentEntityType = T['io.flow.internal.v0.enums.internal_payment_entity_type'];
|
|
30629
30828
|
export const internalPaymentRequest = T['io.flow.internal.v0.models.internal_payment_request'];
|
|
30630
30829
|
export const internalPaymentRequestVerification = T['io.flow.internal.v0.models.internal_payment_request_verification'];
|
|
30631
30830
|
export const internalPaypalAuthorizationDetails = T['io.flow.internal.v0.models.internal_paypal_authorization_details'];
|
|
@@ -30674,7 +30873,6 @@ export const itemSalesMarginVersion = T['io.flow.internal.v0.models.item_sales_m
|
|
|
30674
30873
|
export const itemSummary = T['io.flow.internal.v0.models.item_summary'];
|
|
30675
30874
|
export const itemType = T['io.flow.internal.v0.enums.item_type'];
|
|
30676
30875
|
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
30876
|
export const jeanDemoItem = T['io.flow.internal.v0.models.jean_demo_item'];
|
|
30679
30877
|
export const key = T['io.flow.internal.v0.models.key'];
|
|
30680
30878
|
export const keyReference = T['io.flow.internal.v0.models.key_reference'];
|
|
@@ -30690,7 +30888,9 @@ export const labelBillingStrategy = T['io.flow.internal.v0.enums.label_billing_s
|
|
|
30690
30888
|
export const labelCancellationError = T['io.flow.internal.v0.models.label_cancellation_error'];
|
|
30691
30889
|
export const labelCancellationErrorCode = T['io.flow.internal.v0.enums.label_cancellation_error_code'];
|
|
30692
30890
|
export const labelCreationJob = T['io.flow.internal.v0.models.label_creation_job'];
|
|
30891
|
+
export const labelCreationJobDeleted = T['io.flow.internal.v0.models.label_creation_job_deleted'];
|
|
30693
30892
|
export const labelCreationJobSummary = T['io.flow.internal.v0.models.label_creation_job_summary'];
|
|
30893
|
+
export const labelCreationJobUpserted = T['io.flow.internal.v0.models.label_creation_job_upserted'];
|
|
30694
30894
|
export const labelCreationRequestForm = T['io.flow.internal.v0.models.label_creation_request_form'];
|
|
30695
30895
|
export const labelCreationStatus = T['io.flow.internal.v0.enums.label_creation_status'];
|
|
30696
30896
|
export const labelDestination = T['io.flow.internal.v0.models.label_destination'];
|
|
@@ -30796,8 +30996,12 @@ export const merchantGuidAssignmentDeleted = T['io.flow.internal.v0.models.merch
|
|
|
30796
30996
|
export const merchantGuidAssignmentUpserted = T['io.flow.internal.v0.models.merchant_guid_assignment_upserted'];
|
|
30797
30997
|
export const merchantHubOverride = T['io.flow.internal.v0.models.merchant_hub_override'];
|
|
30798
30998
|
export const merchantHubOverrideForm = T['io.flow.internal.v0.models.merchant_hub_override_form'];
|
|
30999
|
+
export const merchantOfRecord = T['io.flow.internal.v0.enums.merchant_of_record'];
|
|
30799
31000
|
export const merchantOfRecordEntitySettings = T['io.flow.internal.v0.models.merchant_of_record_entity_settings'];
|
|
30800
31001
|
export const merchantOfRecordEntitySettingsForm = T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'];
|
|
31002
|
+
export const merchantOverride = T['io.flow.internal.v0.models.merchant_override'];
|
|
31003
|
+
export const merchantOverrideDecisionForm = T['io.flow.internal.v0.models.merchant_override_decision_form'];
|
|
31004
|
+
export const merchantOverrideStatus = T['io.flow.internal.v0.enums.merchant_override_status'];
|
|
30801
31005
|
export const merchantSearchResult = T['io.flow.internal.v0.models.merchant_search_result'];
|
|
30802
31006
|
export const merchantSubsidies = T['io.flow.internal.v0.models.merchant_subsidies'];
|
|
30803
31007
|
export const merchantSummary = T['io.flow.internal.v0.models.merchant_summary'];
|
|
@@ -30868,7 +31072,6 @@ export const orderLifecycleEvent = T['io.flow.internal.v0.enums.order_lifecycle_
|
|
|
30868
31072
|
export const orderNote = T['io.flow.internal.v0.models.order_note'];
|
|
30869
31073
|
export const orderNoteForm = T['io.flow.internal.v0.models.order_note_form'];
|
|
30870
31074
|
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
31075
|
export const orderRatesDataV3 = T['io.flow.internal.v0.models.order_rates_data_v3'];
|
|
30873
31076
|
export const orderRatesPublishedV3 = T['io.flow.internal.v0.models.order_rates_published_v3'];
|
|
30874
31077
|
export const orderReference = T['io.flow.internal.v0.models.order_reference'];
|
|
@@ -30877,7 +31080,6 @@ export const orderRevenueRegionDataPoint = T['io.flow.internal.v0.models.order_r
|
|
|
30877
31080
|
export const orderRevenueTimelineChart = T['io.flow.internal.v0.models.order_revenue_timeline_chart'];
|
|
30878
31081
|
export const orderRevenueTimelineDataPoint = T['io.flow.internal.v0.models.order_revenue_timeline_data_point'];
|
|
30879
31082
|
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
31083
|
export const orderSubmissionForm = T['io.flow.internal.v0.models.order_submission_form'];
|
|
30882
31084
|
export const orderSummary = T['io.flow.internal.v0.models.order_summary'];
|
|
30883
31085
|
export const orderTaxAndDutyInclusivitySetting = T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'];
|
|
@@ -30989,6 +31191,9 @@ export const partnerOrganizationSettings = T['io.flow.internal.v0.models.partner
|
|
|
30989
31191
|
export const partnerOrganizationSettingsDeleted = T['io.flow.internal.v0.models.partner_organization_settings_deleted'];
|
|
30990
31192
|
export const partnerOrganizationSettingsForm = T['io.flow.internal.v0.models.partner_organization_settings_form'];
|
|
30991
31193
|
export const partnerOrganizationSettingsUpserted = T['io.flow.internal.v0.models.partner_organization_settings_upserted'];
|
|
31194
|
+
export const partnerRequest = T['io.flow.internal.v0.models.partner_request'];
|
|
31195
|
+
export const partnerRequestDeleted = T['io.flow.internal.v0.models.partner_request_deleted'];
|
|
31196
|
+
export const partnerRequestUpserted = T['io.flow.internal.v0.models.partner_request_upserted'];
|
|
30992
31197
|
export const partnerTrackingSubscriptionDeleted = T['io.flow.internal.v0.models.partner_tracking_subscription_deleted'];
|
|
30993
31198
|
export const partnerTrackingSubscriptionUpserted = T['io.flow.internal.v0.models.partner_tracking_subscription_upserted'];
|
|
30994
31199
|
export const passphrase = T['io.flow.internal.v0.models.passphrase'];
|
|
@@ -31159,7 +31364,6 @@ export const ratecardStandardConfigurationUpserted = T['io.flow.internal.v0.mode
|
|
|
31159
31364
|
export const ratecardStandardSettings = T['io.flow.internal.v0.models.ratecard_standard_settings'];
|
|
31160
31365
|
export const ratesChanged = T['io.flow.internal.v0.models.rates_changed'];
|
|
31161
31366
|
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
31367
|
export const reboundConfiguration = T['io.flow.internal.v0.models.rebound_configuration'];
|
|
31164
31368
|
export const reboundConfigurationForm = T['io.flow.internal.v0.models.rebound_configuration_form'];
|
|
31165
31369
|
export const reboundConfigurationStatus = T['io.flow.internal.v0.enums.rebound_configuration_status'];
|
|
@@ -31175,6 +31379,9 @@ export const report = T['io.flow.internal.v0.models.report'];
|
|
|
31175
31379
|
export const reportAccount = T['io.flow.internal.v0.models.report_account'];
|
|
31176
31380
|
export const reportBankAccount = T['io.flow.internal.v0.models.report_bank_account'];
|
|
31177
31381
|
export const reportBankAccountCleartext = T['io.flow.internal.v0.models.report_bank_account_cleartext'];
|
|
31382
|
+
export const reportFile = T['io.flow.internal.v0.models.report_file'];
|
|
31383
|
+
export const reportFileStatus = T['io.flow.internal.v0.enums.report_file_status'];
|
|
31384
|
+
export const reportFileType = T['io.flow.internal.v0.enums.report_file_type'];
|
|
31178
31385
|
export const reportFilter = T['io.flow.internal.v0.models.report_filter'];
|
|
31179
31386
|
export const reportForm = T['io.flow.internal.v0.models.report_form'];
|
|
31180
31387
|
export const reportInterval = T['io.flow.internal.v0.enums.report_interval'];
|
|
@@ -31184,6 +31391,8 @@ export const reportOrganizationReference = T['io.flow.internal.v0.models.report_
|
|
|
31184
31391
|
export const reportOwner = T['io.flow.internal.v0.models.report_owner'];
|
|
31185
31392
|
export const reportPayment = T['io.flow.internal.v0.models.report_payment'];
|
|
31186
31393
|
export const reportPaymentType = T['io.flow.internal.v0.enums.report_payment_type'];
|
|
31394
|
+
export const reportRecordError = T['io.flow.internal.v0.models.report_record_error'];
|
|
31395
|
+
export const reportRecordRetryQueue = T['io.flow.internal.v0.models.report_record_retry_queue'];
|
|
31187
31396
|
export const reportRuleDecision = T['io.flow.internal.v0.models.report_rule_decision'];
|
|
31188
31397
|
export const reportStatus = T['io.flow.internal.v0.enums.report_status'];
|
|
31189
31398
|
export const reportSummary = T['io.flow.internal.v0.models.report_summary'];
|
|
@@ -31310,9 +31519,6 @@ export const sessionRollout = T['io.flow.internal.v0.models.session_rollout'];
|
|
|
31310
31519
|
export const sessionRolloutForm = T['io.flow.internal.v0.models.session_rollout_form'];
|
|
31311
31520
|
export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
|
|
31312
31521
|
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
31522
|
export const shippingLane = T['io.flow.internal.v0.models.shipping_lane'];
|
|
31317
31523
|
export const shippingMethodReference = T['io.flow.internal.v0.models.shipping_method_reference'];
|
|
31318
31524
|
export const shop = T['io.flow.internal.v0.models.shop'];
|
|
@@ -31323,6 +31529,9 @@ export const shopifyChannelOrganizationTokens = T['io.flow.internal.v0.models.sh
|
|
|
31323
31529
|
export const shopifyCheckInventoryError = T['io.flow.internal.v0.models.shopify_check_inventory_error'];
|
|
31324
31530
|
export const shopifyCheckInventoryErrorCode = T['io.flow.internal.v0.enums.shopify_check_inventory_error_code'];
|
|
31325
31531
|
export const shopifyCodeForm = T['io.flow.internal.v0.models.shopify_code_form'];
|
|
31532
|
+
export const shopifyDispute = T['io.flow.internal.v0.models.shopify_dispute'];
|
|
31533
|
+
export const shopifyDisputeDeleted = T['io.flow.internal.v0.models.shopify_dispute_deleted'];
|
|
31534
|
+
export const shopifyDisputeUpserted = T['io.flow.internal.v0.models.shopify_dispute_upserted'];
|
|
31326
31535
|
export const shopifyExperienceShortId = T['io.flow.internal.v0.models.shopify_experience_short_id'];
|
|
31327
31536
|
export const shopifyExperienceShortIdDeleted = T['io.flow.internal.v0.models.shopify_experience_short_id_deleted'];
|
|
31328
31537
|
export const shopifyExperienceShortIdUpserted = T['io.flow.internal.v0.models.shopify_experience_short_id_upserted'];
|
|
@@ -31381,6 +31590,8 @@ export const shopifyMarketsWebhookRegistration = T['io.flow.internal.v0.models.s
|
|
|
31381
31590
|
export const shopifyMarketsWebhookRegistrationDeleted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'];
|
|
31382
31591
|
export const shopifyMarketsWebhookRegistrationUpserted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted'];
|
|
31383
31592
|
export const shopifyMerchantPlan = T['io.flow.internal.v0.models.shopify_merchant_plan'];
|
|
31593
|
+
export const shopifyMerchantPlanDeleted = T['io.flow.internal.v0.models.shopify_merchant_plan_deleted'];
|
|
31594
|
+
export const shopifyMerchantPlanUpserted = T['io.flow.internal.v0.models.shopify_merchant_plan_upserted'];
|
|
31384
31595
|
export const shopifyMetadata = T['io.flow.internal.v0.models.shopify_metadata'];
|
|
31385
31596
|
export const shopifyMonitoringCarrierService = T['io.flow.internal.v0.models.shopify_monitoring_carrier_service'];
|
|
31386
31597
|
export const shopifyMonitoringFulfillmentExternal = T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external'];
|
|
@@ -31512,6 +31723,10 @@ export const stripeAuthorizationDeleted = T['io.flow.internal.v0.models.stripe_a
|
|
|
31512
31723
|
export const stripeAuthorizationUpserted = T['io.flow.internal.v0.models.stripe_authorization_upserted'];
|
|
31513
31724
|
export const stripeCaptureDeleted = T['io.flow.internal.v0.models.stripe_capture_deleted'];
|
|
31514
31725
|
export const stripeCaptureUpserted = T['io.flow.internal.v0.models.stripe_capture_upserted'];
|
|
31726
|
+
export const stripeConnectReportRecord = T['io.flow.internal.v0.models.stripe_connect_report_record'];
|
|
31727
|
+
export const stripeConnectReportRecordDeleted = T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'];
|
|
31728
|
+
export const stripeConnectReportRecordPaymentMetadata = T['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata'];
|
|
31729
|
+
export const stripeConnectReportRecordUpserted = T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'];
|
|
31515
31730
|
export const stripeDisputeDeleted = T['io.flow.internal.v0.models.stripe_dispute_deleted'];
|
|
31516
31731
|
export const stripeDisputeUpserted = T['io.flow.internal.v0.models.stripe_dispute_upserted'];
|
|
31517
31732
|
export const stripeInternalAuthorization = T['io.flow.internal.v0.models.stripe_internal_authorization'];
|
|
@@ -31556,11 +31771,6 @@ export const taxCalculationErrorCode = T['io.flow.internal.v0.enums.tax_calculat
|
|
|
31556
31771
|
export const taxCalculationForm = T['io.flow.internal.v0.models.tax_calculation_form'];
|
|
31557
31772
|
export const taxCalculationLineItem = T['io.flow.internal.v0.models.tax_calculation_line_item'];
|
|
31558
31773
|
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
31774
|
export const taxParty = T['io.flow.internal.v0.enums.tax_party'];
|
|
31565
31775
|
export const taxRemittanceTransaction = T['io.flow.internal.v0.models.tax_remittance_transaction'];
|
|
31566
31776
|
export const taxRemittanceTransactionDeleted = T['io.flow.internal.v0.models.tax_remittance_transaction_deleted'];
|