@flowio/api-internal-prop-types 9.24.45 → 9.24.47
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 +103 -16
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +103 -16
- package/src/api-internal.js +163 -56
package/src/api-internal.js
CHANGED
|
@@ -96,51 +96,12 @@ T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'] =
|
|
|
96
96
|
'business_street_address_is_po_box',
|
|
97
97
|
]);
|
|
98
98
|
|
|
99
|
-
T['io.flow.organization.onboarding.state.v0.models.merchant_activated'] = PropTypes.exact({
|
|
100
|
-
discriminator: PropTypes.oneOf(['merchant_activated']).isRequired,
|
|
101
|
-
placeholder: PropTypes.bool,
|
|
102
|
-
});
|
|
103
|
-
|
|
104
|
-
T['io.flow.organization.onboarding.state.v0.models.setup_completed'] = PropTypes.exact({
|
|
105
|
-
discriminator: PropTypes.oneOf(['setup_completed']).isRequired,
|
|
106
|
-
placeholder: PropTypes.bool,
|
|
107
|
-
});
|
|
108
|
-
|
|
109
|
-
T['io.flow.organization.onboarding.state.v0.models.setup_blocked'] = PropTypes.exact({
|
|
110
|
-
discriminator: PropTypes.oneOf(['setup_blocked']).isRequired,
|
|
111
|
-
|
|
112
|
-
reasons: PropTypes.arrayOf(
|
|
113
|
-
T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'],
|
|
114
|
-
).isRequired,
|
|
115
|
-
});
|
|
116
|
-
|
|
117
|
-
T['io.flow.organization.onboarding.state.v0.models.setup_in_progress'] = PropTypes.exact({
|
|
118
|
-
discriminator: PropTypes.oneOf(['setup_in_progress']).isRequired,
|
|
119
|
-
placeholder: PropTypes.bool,
|
|
120
|
-
});
|
|
121
|
-
|
|
122
|
-
T['io.flow.organization.onboarding.state.v0.models.in_compliance_review'] = PropTypes.exact({
|
|
123
|
-
discriminator: PropTypes.oneOf(['in_compliance_review']).isRequired,
|
|
124
|
-
placeholder: PropTypes.bool,
|
|
125
|
-
});
|
|
126
|
-
|
|
127
|
-
T['io.flow.organization.onboarding.state.v0.models.application_received'] = PropTypes.exact({
|
|
128
|
-
discriminator: PropTypes.oneOf(['application_received']).isRequired,
|
|
129
|
-
placeholder: PropTypes.bool,
|
|
130
|
-
});
|
|
131
|
-
|
|
132
99
|
T['io.flow.organization.onboarding.state.v0.enums.merchant_rejected_reason'] = PropTypes.oneOf([
|
|
133
100
|
'merchant_ubo_is_pep',
|
|
134
101
|
'merchant_catalog_is_unsupportable',
|
|
135
102
|
'merchant_failed_kyb_review',
|
|
136
103
|
]);
|
|
137
104
|
|
|
138
|
-
T['io.flow.organization.onboarding.state.v0.models.merchant_rejected'] = PropTypes.exact({
|
|
139
|
-
discriminator: PropTypes.oneOf(['merchant_rejected']).isRequired,
|
|
140
|
-
reason: T['io.flow.organization.onboarding.state.v0.enums.merchant_rejected_reason'].isRequired,
|
|
141
|
-
description: PropTypes.string,
|
|
142
|
-
});
|
|
143
|
-
|
|
144
105
|
T['io.flow.checkout.v0.models.checkout_urls'] = PropTypes.exact({
|
|
145
106
|
continue_shopping: PropTypes.string,
|
|
146
107
|
confirmation: PropTypes.string,
|
|
@@ -2731,7 +2692,6 @@ T['io.flow.shopify.external.v0.models.option'] = PropTypes.exact({
|
|
|
2731
2692
|
product_id: PropTypes.number.isRequired,
|
|
2732
2693
|
name: PropTypes.string.isRequired,
|
|
2733
2694
|
position: PropTypes.number.isRequired,
|
|
2734
|
-
values: PropTypes.arrayOf(PropTypes.string),
|
|
2735
2695
|
});
|
|
2736
2696
|
|
|
2737
2697
|
T['io.flow.shopify.external.v0.models.product_image'] = PropTypes.exact({
|
|
@@ -6225,6 +6185,7 @@ T['io.flow.label.v0.enums.label_request_method'] = PropTypes.oneOf([
|
|
|
6225
6185
|
'direct_api_async',
|
|
6226
6186
|
'bridge_api_sync',
|
|
6227
6187
|
'partner_api_sync',
|
|
6188
|
+
'notification_requiring_crossdock',
|
|
6228
6189
|
'autogenerated',
|
|
6229
6190
|
]);
|
|
6230
6191
|
|
|
@@ -6632,6 +6593,11 @@ T['io.flow.internal.v0.unions.spot_rate_metadata'] = PropTypes.oneOfType([
|
|
|
6632
6593
|
T['io.flow.internal.v0.models.spot_rate_metadata_rate'],
|
|
6633
6594
|
]);
|
|
6634
6595
|
|
|
6596
|
+
T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'] = PropTypes.exact({
|
|
6597
|
+
discriminator: PropTypes.oneOf(['order_cancellation']).isRequired,
|
|
6598
|
+
order_cancellation_id: PropTypes.string.isRequired,
|
|
6599
|
+
});
|
|
6600
|
+
|
|
6635
6601
|
T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'] = PropTypes.exact({
|
|
6636
6602
|
discriminator: PropTypes.oneOf(['shipping_notification']).isRequired,
|
|
6637
6603
|
shipping_notification_id: PropTypes.string.isRequired,
|
|
@@ -6658,6 +6624,7 @@ T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
|
|
|
6658
6624
|
T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'],
|
|
6659
6625
|
T['io.flow.internal.v0.models.proof_of_posting_fully_refunded'],
|
|
6660
6626
|
T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'],
|
|
6627
|
+
T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'],
|
|
6661
6628
|
]);
|
|
6662
6629
|
|
|
6663
6630
|
T['io.flow.internal.v0.models.online_authorization_completed'] = PropTypes.exact({
|
|
@@ -7845,6 +7812,13 @@ T['io.flow.internal.v0.models.calculator_organization_settings_deleted'] = PropT
|
|
|
7845
7812
|
id: PropTypes.string.isRequired,
|
|
7846
7813
|
});
|
|
7847
7814
|
|
|
7815
|
+
T['io.flow.internal.v0.models.duty_transaction_deleted'] = PropTypes.exact({
|
|
7816
|
+
discriminator: PropTypes.oneOf(['duty_transaction_deleted']).isRequired,
|
|
7817
|
+
event_id: PropTypes.string.isRequired,
|
|
7818
|
+
timestamp: PropTypes.string.isRequired,
|
|
7819
|
+
id: PropTypes.string.isRequired,
|
|
7820
|
+
});
|
|
7821
|
+
|
|
7848
7822
|
T['io.flow.internal.v0.models.tax_transaction_deleted'] = PropTypes.exact({
|
|
7849
7823
|
discriminator: PropTypes.oneOf(['tax_transaction_deleted']).isRequired,
|
|
7850
7824
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9589,8 +9563,6 @@ T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'] = Prop
|
|
|
9589
9563
|
organization_restriction_snapshot: T['io.flow.internal.v0.models.organization_restriction_snapshot'].isRequired,
|
|
9590
9564
|
});
|
|
9591
9565
|
|
|
9592
|
-
T['io.flow.internal.v0.enums.organization_restriction_risk_level'] = PropTypes.oneOf(['5', '15']);
|
|
9593
|
-
T['io.flow.internal.v0.enums.organization_restriction_screening_status'] = PropTypes.oneOf(['in_review', 'fully_reviewed', 'rejected', 'unscreened']);
|
|
9594
9566
|
T['io.flow.internal.v0.enums.organization_restriction_note_type'] = PropTypes.oneOf(['internal', 'rejection_reason', 'additional_rejection_info']);
|
|
9595
9567
|
|
|
9596
9568
|
T['io.flow.internal.v0.models.organization_restriction_note_form'] = PropTypes.exact({
|
|
@@ -9598,8 +9570,20 @@ T['io.flow.internal.v0.models.organization_restriction_note_form'] = PropTypes.e
|
|
|
9598
9570
|
note_type: T['io.flow.internal.v0.enums.organization_restriction_note_type'].isRequired,
|
|
9599
9571
|
});
|
|
9600
9572
|
|
|
9573
|
+
T['io.flow.internal.v0.enums.organization_restriction_risk_level'] = PropTypes.oneOf(['5', '15']);
|
|
9574
|
+
T['io.flow.internal.v0.enums.organization_restriction_screening_status'] = PropTypes.oneOf(['in_review', 'fully_reviewed', 'rejected', 'unscreened']);
|
|
9601
9575
|
T['io.flow.internal.v0.enums.organization_restriction_approval_status'] = PropTypes.oneOf(['ready', 'not-ready']);
|
|
9602
9576
|
|
|
9577
|
+
T['io.flow.internal.v0.models.organization_restriction_screening_decision_form'] = PropTypes.exact({
|
|
9578
|
+
organization_id: PropTypes.string.isRequired,
|
|
9579
|
+
approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'].isRequired,
|
|
9580
|
+
screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'].isRequired,
|
|
9581
|
+
risk_level: T['io.flow.internal.v0.enums.organization_restriction_risk_level'],
|
|
9582
|
+
hs_code: PropTypes.string,
|
|
9583
|
+
merchant_category_code: PropTypes.string,
|
|
9584
|
+
notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.organization_restriction_note_form']),
|
|
9585
|
+
});
|
|
9586
|
+
|
|
9603
9587
|
T['io.flow.internal.v0.models.organization_restriction_status'] = PropTypes.exact({
|
|
9604
9588
|
id: PropTypes.string.isRequired,
|
|
9605
9589
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -9626,19 +9610,9 @@ T['io.flow.internal.v0.models.organization_restriction_status_deleted'] = PropTy
|
|
|
9626
9610
|
organization_restriction_status: T['io.flow.internal.v0.models.organization_restriction_status'].isRequired,
|
|
9627
9611
|
});
|
|
9628
9612
|
|
|
9629
|
-
T['io.flow.internal.v0.models.organization_restriction_screening_decision_form'] = PropTypes.exact({
|
|
9630
|
-
organization_id: PropTypes.string.isRequired,
|
|
9631
|
-
approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'].isRequired,
|
|
9632
|
-
screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'].isRequired,
|
|
9633
|
-
risk_level: T['io.flow.internal.v0.enums.organization_restriction_risk_level'],
|
|
9634
|
-
hs_code: PropTypes.string,
|
|
9635
|
-
merchant_category_code: PropTypes.string,
|
|
9636
|
-
notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.organization_restriction_note_form']),
|
|
9637
|
-
});
|
|
9638
|
-
|
|
9639
9613
|
T['io.flow.internal.v0.models.organization_restriction_approval'] = PropTypes.exact({
|
|
9640
9614
|
id: PropTypes.string.isRequired,
|
|
9641
|
-
status: T['io.flow.internal.v0.
|
|
9615
|
+
status: T['io.flow.internal.v0.models.organization_restriction_status'].isRequired,
|
|
9642
9616
|
reason: PropTypes.string,
|
|
9643
9617
|
updated_at: PropTypes.string.isRequired,
|
|
9644
9618
|
});
|
|
@@ -9703,6 +9677,25 @@ T['io.flow.export.v0.models.order_export_type'] = PropTypes.exact({
|
|
|
9703
9677
|
sort: PropTypes.string,
|
|
9704
9678
|
});
|
|
9705
9679
|
|
|
9680
|
+
T['io.flow.internal.v0.models.order_cancellation_evidence_fully_refunded_not_fulfilled'] = PropTypes.exact({
|
|
9681
|
+
discriminator: PropTypes.oneOf(['fully_refunded_not_fulfilled']).isRequired,
|
|
9682
|
+
placeholder: PropTypes.string,
|
|
9683
|
+
});
|
|
9684
|
+
|
|
9685
|
+
T['io.flow.internal.v0.models.order_cancellation_evidence_manual'] = PropTypes.exact({
|
|
9686
|
+
discriminator: PropTypes.oneOf(['manual']).isRequired,
|
|
9687
|
+
description: PropTypes.string.isRequired,
|
|
9688
|
+
});
|
|
9689
|
+
|
|
9690
|
+
T['io.flow.internal.v0.models.order_cancellation_form'] = PropTypes.exact({
|
|
9691
|
+
evidence: T['io.flow.internal.v0.models.order_cancellation_evidence_manual'].isRequired,
|
|
9692
|
+
});
|
|
9693
|
+
|
|
9694
|
+
T['io.flow.internal.v0.unions.order_cancellation_evidence'] = PropTypes.oneOfType([
|
|
9695
|
+
T['io.flow.internal.v0.models.order_cancellation_evidence_manual'],
|
|
9696
|
+
T['io.flow.internal.v0.models.order_cancellation_evidence_fully_refunded_not_fulfilled'],
|
|
9697
|
+
]);
|
|
9698
|
+
|
|
9706
9699
|
T['io.flow.internal.v0.enums.order_attribute_intent'] = PropTypes.oneOf(['discount_code']);
|
|
9707
9700
|
T['io.flow.common.v0.enums.attribute_data_type'] = PropTypes.oneOf(['boolean', 'integer', 'decimal', 'string', 'json_array']);
|
|
9708
9701
|
|
|
@@ -9768,8 +9761,41 @@ T['io.flow.internal.v0.models.localizable_content_reference'] = PropTypes.exact(
|
|
|
9768
9761
|
|
|
9769
9762
|
T['io.flow.internal.v0.enums.prompt_target'] = PropTypes.oneOf(['browse', 'checkout']);
|
|
9770
9763
|
|
|
9764
|
+
T['io.flow.organization.onboarding.state.v0.models.merchant_activated'] = PropTypes.exact({
|
|
9765
|
+
discriminator: PropTypes.oneOf(['merchant_activated']).isRequired,
|
|
9766
|
+
placeholder: PropTypes.bool,
|
|
9767
|
+
});
|
|
9768
|
+
|
|
9769
|
+
T['io.flow.organization.onboarding.state.v0.models.setup_completed'] = PropTypes.exact({
|
|
9770
|
+
discriminator: PropTypes.oneOf(['setup_completed']).isRequired,
|
|
9771
|
+
placeholder: PropTypes.bool,
|
|
9772
|
+
});
|
|
9773
|
+
|
|
9774
|
+
T['io.flow.organization.onboarding.state.v0.models.setup_blocked'] = PropTypes.exact({
|
|
9775
|
+
discriminator: PropTypes.oneOf(['setup_blocked']).isRequired,
|
|
9776
|
+
|
|
9777
|
+
reasons: PropTypes.arrayOf(
|
|
9778
|
+
T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'],
|
|
9779
|
+
).isRequired,
|
|
9780
|
+
});
|
|
9781
|
+
|
|
9782
|
+
T['io.flow.organization.onboarding.state.v0.models.merchant_rejected'] = PropTypes.exact({
|
|
9783
|
+
discriminator: PropTypes.oneOf(['merchant_rejected']).isRequired,
|
|
9784
|
+
reason: T['io.flow.organization.onboarding.state.v0.enums.merchant_rejected_reason'].isRequired,
|
|
9785
|
+
description: PropTypes.string,
|
|
9786
|
+
});
|
|
9787
|
+
|
|
9788
|
+
T['io.flow.organization.onboarding.state.v0.models.setup_in_progress'] = PropTypes.exact({
|
|
9789
|
+
discriminator: PropTypes.oneOf(['setup_in_progress']).isRequired,
|
|
9790
|
+
placeholder: PropTypes.bool,
|
|
9791
|
+
});
|
|
9792
|
+
|
|
9793
|
+
T['io.flow.organization.onboarding.state.v0.models.in_compliance_review'] = PropTypes.exact({
|
|
9794
|
+
discriminator: PropTypes.oneOf(['in_compliance_review']).isRequired,
|
|
9795
|
+
placeholder: PropTypes.bool,
|
|
9796
|
+
});
|
|
9797
|
+
|
|
9771
9798
|
T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'] = PropTypes.oneOfType([
|
|
9772
|
-
T['io.flow.organization.onboarding.state.v0.models.application_received'],
|
|
9773
9799
|
T['io.flow.organization.onboarding.state.v0.models.in_compliance_review'],
|
|
9774
9800
|
T['io.flow.organization.onboarding.state.v0.models.setup_in_progress'],
|
|
9775
9801
|
T['io.flow.organization.onboarding.state.v0.models.merchant_rejected'],
|
|
@@ -11233,6 +11259,7 @@ T['io.flow.internal.v0.models.heap_card_error'] = PropTypes.exact({
|
|
|
11233
11259
|
T['io.flow.internal.v0.models.harmonization_ml_model_summary'] = PropTypes.exact({
|
|
11234
11260
|
id: PropTypes.string,
|
|
11235
11261
|
customs_description: PropTypes.string,
|
|
11262
|
+
score: PropTypes.number,
|
|
11236
11263
|
});
|
|
11237
11264
|
|
|
11238
11265
|
T['io.flow.internal.v0.models.google_linker'] = PropTypes.exact({
|
|
@@ -12247,6 +12274,27 @@ T['io.flow.reference.v0.models.region'] = PropTypes.exact({
|
|
|
12247
12274
|
timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12248
12275
|
});
|
|
12249
12276
|
|
|
12277
|
+
T['io.flow.internal.v0.enums.erp_file_type'] = PropTypes.oneOf(['vendor']);
|
|
12278
|
+
|
|
12279
|
+
T['io.flow.internal.v0.models.erp_priority_file_form'] = PropTypes.exact({
|
|
12280
|
+
type: T['io.flow.internal.v0.enums.erp_file_type'].isRequired,
|
|
12281
|
+
url: PropTypes.string.isRequired,
|
|
12282
|
+
});
|
|
12283
|
+
|
|
12284
|
+
T['io.flow.internal.v0.models.erp_priority_file'] = PropTypes.exact({
|
|
12285
|
+
id: PropTypes.string.isRequired,
|
|
12286
|
+
type: T['io.flow.internal.v0.enums.erp_file_type'].isRequired,
|
|
12287
|
+
url: PropTypes.string.isRequired,
|
|
12288
|
+
created_at: PropTypes.string.isRequired,
|
|
12289
|
+
});
|
|
12290
|
+
|
|
12291
|
+
T['io.flow.internal.v0.models.erp_flow_file'] = PropTypes.exact({
|
|
12292
|
+
id: PropTypes.string.isRequired,
|
|
12293
|
+
type: T['io.flow.internal.v0.enums.erp_file_type'].isRequired,
|
|
12294
|
+
url: PropTypes.string.isRequired,
|
|
12295
|
+
created_at: PropTypes.string.isRequired,
|
|
12296
|
+
});
|
|
12297
|
+
|
|
12250
12298
|
T['io.flow.internal.v0.models.key_reference'] = PropTypes.exact({
|
|
12251
12299
|
id: PropTypes.string.isRequired,
|
|
12252
12300
|
});
|
|
@@ -12883,6 +12931,7 @@ T['io.flow.internal.v0.models.item_customs_details'] = PropTypes.exact({
|
|
|
12883
12931
|
customs_description: PropTypes.string,
|
|
12884
12932
|
origin: PropTypes.string.isRequired,
|
|
12885
12933
|
hs6: PropTypes.string,
|
|
12934
|
+
hs_description: PropTypes.string,
|
|
12886
12935
|
tariff_code: PropTypes.string,
|
|
12887
12936
|
duty: T['io.flow.price.v0.models.duty'].isRequired,
|
|
12888
12937
|
price_composition_rate: PropTypes.number.isRequired,
|
|
@@ -17664,6 +17713,8 @@ T['io.flow.internal.v0.models.harmonization_item_classification'] = PropTypes.ex
|
|
|
17664
17713
|
created_at: PropTypes.string.isRequired,
|
|
17665
17714
|
updated_at: PropTypes.string.isRequired,
|
|
17666
17715
|
updated_by_user_id: PropTypes.string.isRequired,
|
|
17716
|
+
hs6_code: PropTypes.string,
|
|
17717
|
+
hs6_description: PropTypes.string,
|
|
17667
17718
|
});
|
|
17668
17719
|
|
|
17669
17720
|
T['io.flow.internal.v0.models.harmonization_item_classification_upserted'] = PropTypes.exact({
|
|
@@ -18516,6 +18567,7 @@ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
|
18516
18567
|
shop_name: PropTypes.string.isRequired,
|
|
18517
18568
|
organization_id: PropTypes.string.isRequired,
|
|
18518
18569
|
onboarding_state: T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'].isRequired,
|
|
18570
|
+
onboarding_current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
18519
18571
|
gmv: PropTypes.number.isRequired,
|
|
18520
18572
|
});
|
|
18521
18573
|
|
|
@@ -18600,6 +18652,12 @@ T['io.flow.internal.v0.models.billing_order_transaction_order_reference'] = Prop
|
|
|
18600
18652
|
number: PropTypes.string.isRequired,
|
|
18601
18653
|
});
|
|
18602
18654
|
|
|
18655
|
+
T['io.flow.internal.v0.models.order_cancellation'] = PropTypes.exact({
|
|
18656
|
+
id: PropTypes.string.isRequired,
|
|
18657
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
18658
|
+
evidence: T['io.flow.internal.v0.unions.order_cancellation_evidence'].isRequired,
|
|
18659
|
+
});
|
|
18660
|
+
|
|
18603
18661
|
T['io.flow.internal.v0.models.billing_order_destination'] = PropTypes.exact({
|
|
18604
18662
|
city: PropTypes.string,
|
|
18605
18663
|
province: PropTypes.string,
|
|
@@ -18777,7 +18835,6 @@ T['io.flow.internal.v0.models.restriction_organization'] = PropTypes.exact({
|
|
|
18777
18835
|
hs_code: PropTypes.string,
|
|
18778
18836
|
merchant_category_code: PropTypes.string,
|
|
18779
18837
|
notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.organization_restriction_status_note']).isRequired,
|
|
18780
|
-
created_at: PropTypes.string.isRequired,
|
|
18781
18838
|
});
|
|
18782
18839
|
|
|
18783
18840
|
T['io.flow.internal.v0.models.restriction_organization_decision_summary'] = PropTypes.exact({
|
|
@@ -22259,6 +22316,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
22259
22316
|
'order',
|
|
22260
22317
|
'channel_billed',
|
|
22261
22318
|
'tax',
|
|
22319
|
+
'duty',
|
|
22262
22320
|
]);
|
|
22263
22321
|
|
|
22264
22322
|
T['io.flow.internal.v0.models.account_orders_export_request'] = PropTypes.exact({
|
|
@@ -22349,6 +22407,7 @@ T['io.flow.fulfillment.v0.models.delivery_option_cost_component'] = PropTypes.ex
|
|
|
22349
22407
|
|
|
22350
22408
|
T['io.flow.fulfillment.v0.models.delivery_option_cost_detail'] = PropTypes.exact({
|
|
22351
22409
|
source: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_source'].isRequired,
|
|
22410
|
+
ratecard_id: PropTypes.string,
|
|
22352
22411
|
currency: PropTypes.string.isRequired,
|
|
22353
22412
|
amount: PropTypes.number.isRequired,
|
|
22354
22413
|
label: PropTypes.string.isRequired,
|
|
@@ -23151,6 +23210,26 @@ T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
|
|
|
23151
23210
|
transfer: T['io.flow.internal.v0.models.fee'],
|
|
23152
23211
|
});
|
|
23153
23212
|
|
|
23213
|
+
T['io.flow.internal.v0.models.duty_transaction'] = PropTypes.exact({
|
|
23214
|
+
discriminator: PropTypes.oneOf(['duty_transaction']).isRequired,
|
|
23215
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
|
|
23216
|
+
id: PropTypes.string.isRequired,
|
|
23217
|
+
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
23218
|
+
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
23219
|
+
posted_at: PropTypes.string,
|
|
23220
|
+
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
23221
|
+
description: PropTypes.string.isRequired,
|
|
23222
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
23223
|
+
created_at: PropTypes.string.isRequired,
|
|
23224
|
+
});
|
|
23225
|
+
|
|
23226
|
+
T['io.flow.internal.v0.models.duty_transaction_upserted'] = PropTypes.exact({
|
|
23227
|
+
discriminator: PropTypes.oneOf(['duty_transaction_upserted']).isRequired,
|
|
23228
|
+
event_id: PropTypes.string.isRequired,
|
|
23229
|
+
timestamp: PropTypes.string.isRequired,
|
|
23230
|
+
duty_transaction: T['io.flow.internal.v0.models.duty_transaction'].isRequired,
|
|
23231
|
+
});
|
|
23232
|
+
|
|
23154
23233
|
T['io.flow.internal.v0.models.dispute_transaction'] = PropTypes.exact({
|
|
23155
23234
|
discriminator: PropTypes.oneOf(['dispute_transaction']).isRequired,
|
|
23156
23235
|
authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
|
|
@@ -23939,6 +24018,7 @@ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
|
|
|
23939
24018
|
T['io.flow.internal.v0.models.order_transaction'],
|
|
23940
24019
|
T['io.flow.internal.v0.models.channel_billed_transaction'],
|
|
23941
24020
|
T['io.flow.internal.v0.models.tax_transaction'],
|
|
24021
|
+
T['io.flow.internal.v0.models.duty_transaction'],
|
|
23942
24022
|
]);
|
|
23943
24023
|
|
|
23944
24024
|
T['io.flow.internal.v0.models.processing_transaction_upserted'] = PropTypes.exact({
|
|
@@ -24650,6 +24730,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
24650
24730
|
T['io.flow.internal.v0.models.channel_billed_transaction_deleted'],
|
|
24651
24731
|
T['io.flow.internal.v0.models.tax_transaction_upserted'],
|
|
24652
24732
|
T['io.flow.internal.v0.models.tax_transaction_deleted'],
|
|
24733
|
+
T['io.flow.internal.v0.models.duty_transaction_upserted'],
|
|
24734
|
+
T['io.flow.internal.v0.models.duty_transaction_deleted'],
|
|
24653
24735
|
T['io.flow.internal.v0.models.calculator_organization_settings_upserted'],
|
|
24654
24736
|
T['io.flow.internal.v0.models.calculator_organization_settings_deleted'],
|
|
24655
24737
|
T['io.flow.internal.v0.models.carrier_account_upserted_v2'],
|
|
@@ -25078,7 +25160,15 @@ T['io.flow.internal.v0.enums.billing_allocation_key'] = PropTypes.oneOf([
|
|
|
25078
25160
|
]);
|
|
25079
25161
|
|
|
25080
25162
|
T['io.flow.internal.v0.enums.billing_statement_batch_file_key'] = PropTypes.oneOf(['archive', 'summary']);
|
|
25081
|
-
|
|
25163
|
+
|
|
25164
|
+
T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf([
|
|
25165
|
+
'flow_rate_and_rule',
|
|
25166
|
+
'dtce',
|
|
25167
|
+
'dtce_two_calls',
|
|
25168
|
+
'dtce_with_deminimis',
|
|
25169
|
+
'dtce_merged_with_tax',
|
|
25170
|
+
]);
|
|
25171
|
+
|
|
25082
25172
|
T['io.flow.internal.v0.enums.carrier_label_generation_method'] = PropTypes.oneOf(['direct', 'easypost']);
|
|
25083
25173
|
T['io.flow.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'channel_initiated']);
|
|
25084
25174
|
T['io.flow.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'processing']);
|
|
@@ -25088,6 +25178,7 @@ T['io.flow.internal.v0.enums.crossdock_tracking_status'] = PropTypes.oneOf(['not
|
|
|
25088
25178
|
T['io.flow.internal.v0.enums.deminimis_adjustment_type'] = PropTypes.oneOf(['none', 'duty', 'vat', 'vat_and_duty']);
|
|
25089
25179
|
T['io.flow.internal.v0.enums.dispute_evidence'] = PropTypes.oneOf(['proof_of_delivery', 'proof_of_fulfillment', 'other']);
|
|
25090
25180
|
T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_card', 'service', 'digital_item', 'personalization']);
|
|
25181
|
+
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'duty']);
|
|
25091
25182
|
|
|
25092
25183
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
25093
25184
|
'adyen_authorization_deleted',
|
|
@@ -25137,6 +25228,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
25137
25228
|
'channel_billed_transaction_deleted',
|
|
25138
25229
|
'tax_transaction_upserted',
|
|
25139
25230
|
'tax_transaction_deleted',
|
|
25231
|
+
'duty_transaction_upserted',
|
|
25232
|
+
'duty_transaction_deleted',
|
|
25140
25233
|
'calculator_organization_settings_upserted',
|
|
25141
25234
|
'calculator_organization_settings_deleted',
|
|
25142
25235
|
'carrier_account_upserted_v2',
|
|
@@ -28159,11 +28252,19 @@ export const dutyRawUpserted = T['io.flow.internal.v0.models.duty_raw_upserted']
|
|
|
28159
28252
|
export const dutySelectionRule = T['io.flow.internal.v0.enums.duty_selection_rule'];
|
|
28160
28253
|
export const dutySimpleExpression = T['io.flow.internal.v0.models.duty_simple_expression'];
|
|
28161
28254
|
export const dutySimpleExpressionType = T['io.flow.internal.v0.enums.duty_simple_expression_type'];
|
|
28255
|
+
export const dutyTransaction = T['io.flow.internal.v0.models.duty_transaction'];
|
|
28256
|
+
export const dutyTransactionDeleted = T['io.flow.internal.v0.models.duty_transaction_deleted'];
|
|
28257
|
+
export const dutyTransactionType = T['io.flow.internal.v0.enums.duty_transaction_type'];
|
|
28258
|
+
export const dutyTransactionUpserted = T['io.flow.internal.v0.models.duty_transaction_upserted'];
|
|
28162
28259
|
export const emailForm = T['io.flow.internal.v0.models.email_form'];
|
|
28163
28260
|
export const emailModificationForm = T['io.flow.internal.v0.models.email_modification_form'];
|
|
28164
28261
|
export const emptyAttribute = T['io.flow.internal.v0.enums.empty_attribute'];
|
|
28165
28262
|
export const emptyClassificationForm = T['io.flow.internal.v0.models.empty_classification_form'];
|
|
28166
28263
|
export const encryption = T['io.flow.internal.v0.models.encryption'];
|
|
28264
|
+
export const erpFileType = T['io.flow.internal.v0.enums.erp_file_type'];
|
|
28265
|
+
export const erpFlowFile = T['io.flow.internal.v0.models.erp_flow_file'];
|
|
28266
|
+
export const erpPriorityFile = T['io.flow.internal.v0.models.erp_priority_file'];
|
|
28267
|
+
export const erpPriorityFileForm = T['io.flow.internal.v0.models.erp_priority_file_form'];
|
|
28167
28268
|
export const event = T['io.flow.internal.v0.unions.event'];
|
|
28168
28269
|
export const eventType = T['io.flow.internal.v0.enums.event_type'];
|
|
28169
28270
|
export const exclusionRuleDeleted = T['io.flow.internal.v0.models.exclusion_rule_deleted'];
|
|
@@ -28656,6 +28757,11 @@ export const orderAttribute = T['io.flow.internal.v0.models.order_attribute'];
|
|
|
28656
28757
|
export const orderAttributeDeleted = T['io.flow.internal.v0.models.order_attribute_deleted'];
|
|
28657
28758
|
export const orderAttributeIntent = T['io.flow.internal.v0.enums.order_attribute_intent'];
|
|
28658
28759
|
export const orderAttributeUpserted = T['io.flow.internal.v0.models.order_attribute_upserted'];
|
|
28760
|
+
export const orderCancellation = T['io.flow.internal.v0.models.order_cancellation'];
|
|
28761
|
+
export const orderCancellationEvidence = T['io.flow.internal.v0.unions.order_cancellation_evidence'];
|
|
28762
|
+
export const orderCancellationEvidenceFullyRefundedNotFulfilled = T['io.flow.internal.v0.models.order_cancellation_evidence_fully_refunded_not_fulfilled'];
|
|
28763
|
+
export const orderCancellationEvidenceManual = T['io.flow.internal.v0.models.order_cancellation_evidence_manual'];
|
|
28764
|
+
export const orderCancellationForm = T['io.flow.internal.v0.models.order_cancellation_form'];
|
|
28659
28765
|
export const orderChargeTrigger = T['io.flow.internal.v0.enums.order_charge_trigger'];
|
|
28660
28766
|
export const orderDetail = T['io.flow.internal.v0.models.order_detail'];
|
|
28661
28767
|
export const orderFulfillmentDeleted = T['io.flow.internal.v0.models.order_fulfillment_deleted'];
|
|
@@ -28831,6 +28937,7 @@ export const proofOfPosting = T['io.flow.internal.v0.unions.proof_of_posting'];
|
|
|
28831
28937
|
export const proofOfPostingExternallyFulfilled = T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'];
|
|
28832
28938
|
export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_posting_fulfilled'];
|
|
28833
28939
|
export const proofOfPostingFullyRefunded = T['io.flow.internal.v0.models.proof_of_posting_fully_refunded'];
|
|
28940
|
+
export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
|
|
28834
28941
|
export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
|
|
28835
28942
|
export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
|
|
28836
28943
|
export const quoteRequestType = T['io.flow.internal.v0.enums.quote_request_type'];
|