@flowio/api-internal-prop-types 9.24.140 → 9.24.142
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 +219 -54
- package/lib/api-internal.js +1 -1
- package/package.json +1 -1
- package/src/api-internal.d.ts +219 -54
- package/src/api-internal.js +277 -81
package/src/api-internal.js
CHANGED
|
@@ -8694,6 +8694,13 @@ T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.ex
|
|
|
8694
8694
|
id: PropTypes.string.isRequired,
|
|
8695
8695
|
});
|
|
8696
8696
|
|
|
8697
|
+
T['io.flow.internal.v0.models.john_strong_item_deleted'] = PropTypes.exact({
|
|
8698
|
+
discriminator: PropTypes.oneOf(['john_strong_item_deleted']).isRequired,
|
|
8699
|
+
event_id: PropTypes.string.isRequired,
|
|
8700
|
+
timestamp: PropTypes.string.isRequired,
|
|
8701
|
+
id: PropTypes.string.isRequired,
|
|
8702
|
+
});
|
|
8703
|
+
|
|
8697
8704
|
T['io.flow.internal.v0.models.mahesh_item_deleted'] = PropTypes.exact({
|
|
8698
8705
|
discriminator: PropTypes.oneOf(['mahesh_item_deleted']).isRequired,
|
|
8699
8706
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9270,16 +9277,6 @@ T['io.flow.internal.v0.models.harmonization_codes_import'] = PropTypes.exact({
|
|
|
9270
9277
|
filename: PropTypes.string,
|
|
9271
9278
|
});
|
|
9272
9279
|
|
|
9273
|
-
T['io.flow.internal.v0.models.harmonization_phrase_suggestion_request_import'] = PropTypes.exact({
|
|
9274
|
-
discriminator: PropTypes.oneOf(['harmonization_phrase_suggestion_request_import']).isRequired,
|
|
9275
|
-
event_id: PropTypes.string.isRequired,
|
|
9276
|
-
timestamp: PropTypes.string.isRequired,
|
|
9277
|
-
organization: PropTypes.string.isRequired,
|
|
9278
|
-
import_id: PropTypes.string.isRequired,
|
|
9279
|
-
source_url: PropTypes.string.isRequired,
|
|
9280
|
-
filename: PropTypes.string,
|
|
9281
|
-
});
|
|
9282
|
-
|
|
9283
9280
|
T['io.flow.internal.v0.models.dutied_items_export'] = PropTypes.exact({
|
|
9284
9281
|
discriminator: PropTypes.oneOf(['dutied_items_export']).isRequired,
|
|
9285
9282
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9624,26 +9621,6 @@ T['io.flow.internal.v0.models.dispute_deleted'] = PropTypes.exact({
|
|
|
9624
9621
|
id: PropTypes.string.isRequired,
|
|
9625
9622
|
});
|
|
9626
9623
|
|
|
9627
|
-
T['io.flow.internal.v0.models.customs_description_tariffs_import'] = PropTypes.exact({
|
|
9628
|
-
discriminator: PropTypes.oneOf(['customs_description_tariffs_import']).isRequired,
|
|
9629
|
-
event_id: PropTypes.string.isRequired,
|
|
9630
|
-
timestamp: PropTypes.string.isRequired,
|
|
9631
|
-
organization: PropTypes.string.isRequired,
|
|
9632
|
-
import_id: PropTypes.string.isRequired,
|
|
9633
|
-
source_url: PropTypes.string.isRequired,
|
|
9634
|
-
filename: PropTypes.string,
|
|
9635
|
-
});
|
|
9636
|
-
|
|
9637
|
-
T['io.flow.internal.v0.models.customs_description_import'] = PropTypes.exact({
|
|
9638
|
-
discriminator: PropTypes.oneOf(['customs_description_import']).isRequired,
|
|
9639
|
-
event_id: PropTypes.string.isRequired,
|
|
9640
|
-
timestamp: PropTypes.string.isRequired,
|
|
9641
|
-
organization: PropTypes.string.isRequired,
|
|
9642
|
-
import_id: PropTypes.string.isRequired,
|
|
9643
|
-
source_url: PropTypes.string.isRequired,
|
|
9644
|
-
filename: PropTypes.string,
|
|
9645
|
-
});
|
|
9646
|
-
|
|
9647
9624
|
T['io.flow.internal.v0.models.channel_currency_setting_deleted'] = PropTypes.exact({
|
|
9648
9625
|
discriminator: PropTypes.oneOf(['channel_currency_setting_deleted']).isRequired,
|
|
9649
9626
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9781,6 +9758,34 @@ T['io.flow.internal.v0.models.daily_value_deleted'] = PropTypes.exact({
|
|
|
9781
9758
|
id: PropTypes.string.isRequired,
|
|
9782
9759
|
});
|
|
9783
9760
|
|
|
9761
|
+
T['io.flow.internal.v0.models.account_payment_hold_deleted'] = PropTypes.exact({
|
|
9762
|
+
discriminator: PropTypes.oneOf(['account_payment_hold_deleted']).isRequired,
|
|
9763
|
+
event_id: PropTypes.string.isRequired,
|
|
9764
|
+
timestamp: PropTypes.string.isRequired,
|
|
9765
|
+
id: PropTypes.string.isRequired,
|
|
9766
|
+
});
|
|
9767
|
+
|
|
9768
|
+
T['io.flow.internal.v0.models.bank_payment_promise_deleted'] = PropTypes.exact({
|
|
9769
|
+
discriminator: PropTypes.oneOf(['bank_payment_promise_deleted']).isRequired,
|
|
9770
|
+
event_id: PropTypes.string.isRequired,
|
|
9771
|
+
timestamp: PropTypes.string.isRequired,
|
|
9772
|
+
id: PropTypes.string.isRequired,
|
|
9773
|
+
});
|
|
9774
|
+
|
|
9775
|
+
T['io.flow.internal.v0.models.posting_proof_deleted'] = PropTypes.exact({
|
|
9776
|
+
discriminator: PropTypes.oneOf(['posting_proof_deleted']).isRequired,
|
|
9777
|
+
event_id: PropTypes.string.isRequired,
|
|
9778
|
+
timestamp: PropTypes.string.isRequired,
|
|
9779
|
+
id: PropTypes.string.isRequired,
|
|
9780
|
+
});
|
|
9781
|
+
|
|
9782
|
+
T['io.flow.internal.v0.models.bank_account_deleted'] = PropTypes.exact({
|
|
9783
|
+
discriminator: PropTypes.oneOf(['bank_account_deleted']).isRequired,
|
|
9784
|
+
event_id: PropTypes.string.isRequired,
|
|
9785
|
+
timestamp: PropTypes.string.isRequired,
|
|
9786
|
+
id: PropTypes.string.isRequired,
|
|
9787
|
+
});
|
|
9788
|
+
|
|
9784
9789
|
T['io.flow.internal.v0.models.transaction_statement_deleted'] = PropTypes.exact({
|
|
9785
9790
|
discriminator: PropTypes.oneOf(['transaction_statement_deleted']).isRequired,
|
|
9786
9791
|
event_id: PropTypes.string.isRequired,
|
|
@@ -12034,6 +12039,7 @@ T['io.flow.internal.v0.models.restrictions_dailyops'] = PropTypes.exact({
|
|
|
12034
12039
|
daily_num_products_restricted_somewhere_by_fs: PropTypes.number,
|
|
12035
12040
|
daily_num_products_with_false_allows_by_fs: PropTypes.number,
|
|
12036
12041
|
daily_num_products_with_false_restricts_by_fs: PropTypes.number,
|
|
12042
|
+
num_unserviceable_taxonomy_decisions_created: PropTypes.number,
|
|
12037
12043
|
});
|
|
12038
12044
|
|
|
12039
12045
|
T['io.flow.internal.v0.models.restrictions_dailyops_upserted'] = PropTypes.exact({
|
|
@@ -12615,13 +12621,6 @@ T['io.flow.internal.v0.models.quote_upserted'] = PropTypes.exact({
|
|
|
12615
12621
|
quote: T['io.flow.internal.v0.models.quote'].isRequired,
|
|
12616
12622
|
});
|
|
12617
12623
|
|
|
12618
|
-
T['io.flow.internal.v0.enums.sellability_internal_match_type'] = PropTypes.oneOf(['positive_keyword', 'auto_restricted']);
|
|
12619
|
-
|
|
12620
|
-
T['io.flow.internal.v0.models.product_sellability_internal_rule_match'] = PropTypes.exact({
|
|
12621
|
-
rule_id: PropTypes.string.isRequired,
|
|
12622
|
-
match_types: PropTypes.arrayOf(T['io.flow.internal.v0.enums.sellability_internal_match_type']).isRequired,
|
|
12623
|
-
});
|
|
12624
|
-
|
|
12625
12624
|
T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
|
|
12626
12625
|
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12627
12626
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -12713,6 +12712,13 @@ T['io.flow.internal.v0.models.classified_product'] = PropTypes.exact({
|
|
|
12713
12712
|
classification_model_id: PropTypes.string.isRequired,
|
|
12714
12713
|
});
|
|
12715
12714
|
|
|
12715
|
+
T['io.flow.internal.v0.enums.sellability_internal_match_type'] = PropTypes.oneOf(['positive_keyword', 'auto_restricted']);
|
|
12716
|
+
|
|
12717
|
+
T['io.flow.internal.v0.models.product_sellability_internal_rule_match'] = PropTypes.exact({
|
|
12718
|
+
rule_id: PropTypes.string.isRequired,
|
|
12719
|
+
match_types: PropTypes.arrayOf(T['io.flow.internal.v0.enums.sellability_internal_match_type']).isRequired,
|
|
12720
|
+
});
|
|
12721
|
+
|
|
12716
12722
|
T['io.flow.sellability.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
|
|
12717
12723
|
|
|
12718
12724
|
T['io.flow.sellability.v0.models.sellablility_region_result'] = PropTypes.exact({
|
|
@@ -12747,6 +12753,25 @@ T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exa
|
|
|
12747
12753
|
restriction_rule_effect: T['io.flow.internal.v0.models.restriction_rule_effect'].isRequired,
|
|
12748
12754
|
});
|
|
12749
12755
|
|
|
12756
|
+
T['io.flow.internal.v0.models.sellability_rule_match'] = PropTypes.exact({
|
|
12757
|
+
reason_code: PropTypes.string.isRequired,
|
|
12758
|
+
match_types: PropTypes.arrayOf(T['io.flow.internal.v0.enums.sellability_internal_match_type']).isRequired,
|
|
12759
|
+
});
|
|
12760
|
+
|
|
12761
|
+
T['io.flow.internal.v0.enums.sellability_decision_source'] = PropTypes.oneOf([
|
|
12762
|
+
'fast_screen_sellable',
|
|
12763
|
+
'fast_screen_restricted_everywhere',
|
|
12764
|
+
'fast_screen_hs_chapter_exception',
|
|
12765
|
+
'fast_screen_active_mode',
|
|
12766
|
+
'unserviceable_taxonomy',
|
|
12767
|
+
'pending_classification',
|
|
12768
|
+
'pending_agent_review',
|
|
12769
|
+
'screen_failed',
|
|
12770
|
+
'classification',
|
|
12771
|
+
'agent_review',
|
|
12772
|
+
'staging_dropped',
|
|
12773
|
+
]);
|
|
12774
|
+
|
|
12750
12775
|
T['io.flow.internal.v0.enums.classification_failure_reason'] = PropTypes.oneOf(['low_confidence', 'timeout', 'missing_hs6_code', 'invalid_price']);
|
|
12751
12776
|
|
|
12752
12777
|
T['io.flow.sellability.v0.models.sellability_restricted_region'] = PropTypes.exact({
|
|
@@ -12860,6 +12885,8 @@ T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exa
|
|
|
12860
12885
|
effective_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12861
12886
|
fingerprint: PropTypes.string.isRequired,
|
|
12862
12887
|
screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
|
|
12888
|
+
decision_source: T['io.flow.internal.v0.enums.sellability_decision_source'],
|
|
12889
|
+
rule_matches: PropTypes.arrayOf(T['io.flow.internal.v0.models.sellability_rule_match']),
|
|
12863
12890
|
created_at: PropTypes.string,
|
|
12864
12891
|
});
|
|
12865
12892
|
|
|
@@ -12900,6 +12927,23 @@ T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_envelope'] =
|
|
|
12900
12927
|
message: T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_message'].isRequired,
|
|
12901
12928
|
});
|
|
12902
12929
|
|
|
12930
|
+
T['io.flow.internal.v0.models.posting_proof'] = PropTypes.exact({
|
|
12931
|
+
id: PropTypes.string.isRequired,
|
|
12932
|
+
organization_id: PropTypes.string.isRequired,
|
|
12933
|
+
order_number: PropTypes.string.isRequired,
|
|
12934
|
+
sequence_number: PropTypes.number.isRequired,
|
|
12935
|
+
proof_key: PropTypes.string.isRequired,
|
|
12936
|
+
proof_discriminator: PropTypes.string.isRequired,
|
|
12937
|
+
created_at: PropTypes.string.isRequired,
|
|
12938
|
+
});
|
|
12939
|
+
|
|
12940
|
+
T['io.flow.internal.v0.models.posting_proof_upserted'] = PropTypes.exact({
|
|
12941
|
+
discriminator: PropTypes.oneOf(['posting_proof_upserted']).isRequired,
|
|
12942
|
+
event_id: PropTypes.string.isRequired,
|
|
12943
|
+
timestamp: PropTypes.string.isRequired,
|
|
12944
|
+
posting_proof: T['io.flow.internal.v0.models.posting_proof'].isRequired,
|
|
12945
|
+
});
|
|
12946
|
+
|
|
12903
12947
|
T['io.flow.internal.v0.models.platform_fee_percentage_tier'] = PropTypes.exact({
|
|
12904
12948
|
minimum_amount_base: PropTypes.number.isRequired,
|
|
12905
12949
|
rate: PropTypes.number.isRequired,
|
|
@@ -15507,6 +15551,27 @@ T['io.flow.internal.v0.models.harmonization_ml_model_summary'] = PropTypes.exact
|
|
|
15507
15551
|
score: PropTypes.number,
|
|
15508
15552
|
});
|
|
15509
15553
|
|
|
15554
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_publication_lane_form'] = PropTypes.exact({
|
|
15555
|
+
channel_id: PropTypes.string.isRequired,
|
|
15556
|
+
organization_id: PropTypes.string.isRequired,
|
|
15557
|
+
destination_country: PropTypes.string.isRequired,
|
|
15558
|
+
inputs_updated_at: PropTypes.string.isRequired,
|
|
15559
|
+
});
|
|
15560
|
+
|
|
15561
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_publication_form'] = PropTypes.exact({
|
|
15562
|
+
lanes: PropTypes.arrayOf(T['io.flow.internal.v0.models.guaranteed_shipping_publication_lane_form']).isRequired,
|
|
15563
|
+
});
|
|
15564
|
+
|
|
15565
|
+
T['io.flow.internal.v0.enums.guaranteed_shipping_publication_status'] = PropTypes.oneOf(['published', 'not_found', 'superseded']);
|
|
15566
|
+
|
|
15567
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_publication'] = PropTypes.exact({
|
|
15568
|
+
channel_id: PropTypes.string.isRequired,
|
|
15569
|
+
organization_id: PropTypes.string.isRequired,
|
|
15570
|
+
destination_country: PropTypes.string.isRequired,
|
|
15571
|
+
inputs_updated_at: PropTypes.string.isRequired,
|
|
15572
|
+
status: T['io.flow.internal.v0.enums.guaranteed_shipping_publication_status'].isRequired,
|
|
15573
|
+
});
|
|
15574
|
+
|
|
15510
15575
|
T['io.flow.internal.v0.models.guaranteed_shipping_calibration_lane_form'] = PropTypes.exact({
|
|
15511
15576
|
channel_id: PropTypes.string.isRequired,
|
|
15512
15577
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -19139,6 +19204,16 @@ T['io.flow.tracking.v0.models.tracking_event_form'] = PropTypes.exact({
|
|
|
19139
19204
|
address: PropTypes.string,
|
|
19140
19205
|
});
|
|
19141
19206
|
|
|
19207
|
+
T['io.flow.internal.v0.models.tracking_debug_label_event_upsert_form'] = PropTypes.exact({
|
|
19208
|
+
carrier_tracking_number: PropTypes.string,
|
|
19209
|
+
label_id: PropTypes.string,
|
|
19210
|
+
organization_id: PropTypes.string,
|
|
19211
|
+
order_number: PropTypes.string,
|
|
19212
|
+
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
19213
|
+
description: PropTypes.string,
|
|
19214
|
+
timestamp: PropTypes.string,
|
|
19215
|
+
});
|
|
19216
|
+
|
|
19142
19217
|
T['io.flow.internal.v0.models.tracking_debug_label_event'] = PropTypes.exact({
|
|
19143
19218
|
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
19144
19219
|
raw_carrier_event_code: PropTypes.string,
|
|
@@ -21138,6 +21213,8 @@ T['io.flow.internal.v0.models.carrier_document'] = PropTypes.exact({
|
|
|
21138
21213
|
document_content: T['io.flow.internal.v0.unions.carrier_document_content'].isRequired,
|
|
21139
21214
|
});
|
|
21140
21215
|
|
|
21216
|
+
T['io.flow.internal.v0.enums.requested_bank_payment_status_code'] = PropTypes.oneOf(['processed', 'failed']);
|
|
21217
|
+
|
|
21141
21218
|
T['io.flow.internal.v0.models.bank_payment_status_import_result'] = PropTypes.exact({
|
|
21142
21219
|
processed_at: PropTypes.string.isRequired,
|
|
21143
21220
|
number_lines_successful: PropTypes.number.isRequired,
|
|
@@ -21158,6 +21235,32 @@ T['io.flow.billing.v0.models.statement_status_form'] = PropTypes.exact({
|
|
|
21158
21235
|
failure_reason: T['io.flow.billing.v0.enums.payout_status_failure_code'],
|
|
21159
21236
|
});
|
|
21160
21237
|
|
|
21238
|
+
T['io.flow.internal.v0.models.bank_payment_status_processed_single_form'] = PropTypes.exact({
|
|
21239
|
+
payment_id: PropTypes.string.isRequired,
|
|
21240
|
+
code: T['io.flow.internal.v0.enums.requested_bank_payment_status_code'].isRequired,
|
|
21241
|
+
failure_reason: T['io.flow.billing.v0.enums.payout_status_failure_code'],
|
|
21242
|
+
});
|
|
21243
|
+
|
|
21244
|
+
T['io.flow.internal.v0.models.bank_payment_status_processed_import_form'] = PropTypes.exact({
|
|
21245
|
+
forms: PropTypes.arrayOf(T['io.flow.internal.v0.models.bank_payment_status_processed_single_form']).isRequired,
|
|
21246
|
+
});
|
|
21247
|
+
|
|
21248
|
+
T['io.flow.internal.v0.models.bank_payment_promise'] = PropTypes.exact({
|
|
21249
|
+
id: PropTypes.string.isRequired,
|
|
21250
|
+
account_id: PropTypes.string.isRequired,
|
|
21251
|
+
statement_id: PropTypes.string.isRequired,
|
|
21252
|
+
transfer_transaction_id: PropTypes.string.isRequired,
|
|
21253
|
+
completed_at: PropTypes.string,
|
|
21254
|
+
created_at: PropTypes.string.isRequired,
|
|
21255
|
+
});
|
|
21256
|
+
|
|
21257
|
+
T['io.flow.internal.v0.models.bank_payment_promise_upserted'] = PropTypes.exact({
|
|
21258
|
+
discriminator: PropTypes.oneOf(['bank_payment_promise_upserted']).isRequired,
|
|
21259
|
+
event_id: PropTypes.string.isRequired,
|
|
21260
|
+
timestamp: PropTypes.string.isRequired,
|
|
21261
|
+
bank_payment_promise: T['io.flow.internal.v0.models.bank_payment_promise'].isRequired,
|
|
21262
|
+
});
|
|
21263
|
+
|
|
21161
21264
|
T['io.flow.internal.v0.models.bank_payment_reference'] = PropTypes.exact({
|
|
21162
21265
|
id: PropTypes.string.isRequired,
|
|
21163
21266
|
});
|
|
@@ -21309,6 +21412,22 @@ T['io.flow.billing.v0.models.channel_payout'] = PropTypes.exact({
|
|
|
21309
21412
|
updated_at: PropTypes.string.isRequired,
|
|
21310
21413
|
});
|
|
21311
21414
|
|
|
21415
|
+
T['io.flow.internal.v0.models.bank_account_snapshot'] = PropTypes.exact({
|
|
21416
|
+
id: PropTypes.string.isRequired,
|
|
21417
|
+
source_id: PropTypes.string.isRequired,
|
|
21418
|
+
source_type: PropTypes.string.isRequired,
|
|
21419
|
+
key: PropTypes.string.isRequired,
|
|
21420
|
+
created_at: PropTypes.string.isRequired,
|
|
21421
|
+
updated_at: PropTypes.string.isRequired,
|
|
21422
|
+
});
|
|
21423
|
+
|
|
21424
|
+
T['io.flow.internal.v0.models.bank_account_upserted'] = PropTypes.exact({
|
|
21425
|
+
discriminator: PropTypes.oneOf(['bank_account_upserted']).isRequired,
|
|
21426
|
+
event_id: PropTypes.string.isRequired,
|
|
21427
|
+
timestamp: PropTypes.string.isRequired,
|
|
21428
|
+
bank_account: T['io.flow.internal.v0.models.bank_account_snapshot'].isRequired,
|
|
21429
|
+
});
|
|
21430
|
+
|
|
21312
21431
|
T['io.flow.internal.v0.enums.bank_account_status'] = PropTypes.oneOf(['on_hold', 'not_on_hold']);
|
|
21313
21432
|
|
|
21314
21433
|
T['io.flow.internal.v0.models.bank_account'] = PropTypes.exact({
|
|
@@ -21403,6 +21522,7 @@ T['io.flow.internal.v0.models.restriction_item_request_form'] = PropTypes.exact(
|
|
|
21403
21522
|
positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
21404
21523
|
negative_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
21405
21524
|
product_id: PropTypes.string,
|
|
21525
|
+
escalated_only: PropTypes.bool,
|
|
21406
21526
|
});
|
|
21407
21527
|
|
|
21408
21528
|
T['io.flow.internal.v0.models.report_rule_decision'] = PropTypes.exact({
|
|
@@ -21514,6 +21634,9 @@ T['io.flow.internal.v0.models.restriction_item_review'] = PropTypes.exact({
|
|
|
21514
21634
|
date: PropTypes.string,
|
|
21515
21635
|
updated_by: T['io.flow.common.v0.models.user'],
|
|
21516
21636
|
created_at: PropTypes.string.isRequired,
|
|
21637
|
+
agent_review_status: PropTypes.string,
|
|
21638
|
+
agent_reviewed_at: PropTypes.string,
|
|
21639
|
+
agent_confidence: PropTypes.number,
|
|
21517
21640
|
updated_at: PropTypes.string.isRequired,
|
|
21518
21641
|
});
|
|
21519
21642
|
|
|
@@ -24543,26 +24666,6 @@ T['io.flow.internal.v0.models.preonboarding_classification_request'] = PropTypes
|
|
|
24543
24666
|
screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
|
|
24544
24667
|
});
|
|
24545
24668
|
|
|
24546
|
-
T['io.flow.internal.v0.models.outbound_shipping_cost'] = PropTypes.exact({
|
|
24547
|
-
channel_id: PropTypes.string.isRequired,
|
|
24548
|
-
organization_id: PropTypes.string.isRequired,
|
|
24549
|
-
destination_country: PropTypes.string.isRequired,
|
|
24550
|
-
carrier_service_id: PropTypes.string.isRequired,
|
|
24551
|
-
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
24552
|
-
updated_at: PropTypes.number.isRequired,
|
|
24553
|
-
run_id: PropTypes.string.isRequired,
|
|
24554
|
-
model_version: PropTypes.string.isRequired,
|
|
24555
|
-
});
|
|
24556
|
-
|
|
24557
|
-
T['io.flow.internal.v0.models.outbound_shipping_cost_upserted'] = PropTypes.exact({
|
|
24558
|
-
discriminator: PropTypes.oneOf(['outbound_shipping_cost_upserted']).isRequired,
|
|
24559
|
-
event_id: PropTypes.string.isRequired,
|
|
24560
|
-
timestamp: PropTypes.string.isRequired,
|
|
24561
|
-
organization: PropTypes.string.isRequired,
|
|
24562
|
-
channel_id: PropTypes.string.isRequired,
|
|
24563
|
-
outbound_shipping_cost: T['io.flow.internal.v0.models.outbound_shipping_cost'].isRequired,
|
|
24564
|
-
});
|
|
24565
|
-
|
|
24566
24669
|
T['io.flow.internal.v0.models.mor_cost_summary'] = PropTypes.exact({
|
|
24567
24670
|
id: PropTypes.string.isRequired,
|
|
24568
24671
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -24726,7 +24829,11 @@ T['io.flow.internal.v0.models.guaranteed_shipping_published_output'] = PropTypes
|
|
|
24726
24829
|
destination_country: PropTypes.string.isRequired,
|
|
24727
24830
|
coefficient: PropTypes.number.isRequired,
|
|
24728
24831
|
flat_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.flat_rate']).isRequired,
|
|
24729
|
-
|
|
24832
|
+
coefficients_source_updated_at: PropTypes.number.isRequired,
|
|
24833
|
+
outbound_shipping_cost_source_updated_at: PropTypes.number.isRequired,
|
|
24834
|
+
average_order_value_source_updated_at: PropTypes.number.isRequired,
|
|
24835
|
+
target_flat_rates_source_updated_at: PropTypes.number.isRequired,
|
|
24836
|
+
published_at: PropTypes.number,
|
|
24730
24837
|
});
|
|
24731
24838
|
|
|
24732
24839
|
T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'] = PropTypes.exact({
|
|
@@ -25312,6 +25419,33 @@ T['io.flow.internal.v0.models.label_creation_request_form'] = PropTypes.exact({
|
|
|
25312
25419
|
reference_id: PropTypes.string,
|
|
25313
25420
|
});
|
|
25314
25421
|
|
|
25422
|
+
T['io.flow.internal.v0.models.carrier_estimate'] = PropTypes.exact({
|
|
25423
|
+
carrier_service_id: PropTypes.string.isRequired,
|
|
25424
|
+
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
25425
|
+
min_delivery_days: PropTypes.number,
|
|
25426
|
+
max_delivery_days: PropTypes.number,
|
|
25427
|
+
});
|
|
25428
|
+
|
|
25429
|
+
T['io.flow.internal.v0.models.outbound_shipping_cost'] = PropTypes.exact({
|
|
25430
|
+
id: PropTypes.string.isRequired,
|
|
25431
|
+
channel_id: PropTypes.string.isRequired,
|
|
25432
|
+
organization_id: PropTypes.string.isRequired,
|
|
25433
|
+
destination_country: PropTypes.string.isRequired,
|
|
25434
|
+
carrier_estimates: PropTypes.arrayOf(T['io.flow.internal.v0.models.carrier_estimate']).isRequired,
|
|
25435
|
+
updated_at: PropTypes.number.isRequired,
|
|
25436
|
+
run_id: PropTypes.string.isRequired,
|
|
25437
|
+
model_version: PropTypes.string.isRequired,
|
|
25438
|
+
});
|
|
25439
|
+
|
|
25440
|
+
T['io.flow.internal.v0.models.outbound_shipping_cost_upserted'] = PropTypes.exact({
|
|
25441
|
+
discriminator: PropTypes.oneOf(['outbound_shipping_cost_upserted']).isRequired,
|
|
25442
|
+
event_id: PropTypes.string.isRequired,
|
|
25443
|
+
timestamp: PropTypes.string.isRequired,
|
|
25444
|
+
organization: PropTypes.string.isRequired,
|
|
25445
|
+
channel_id: PropTypes.string.isRequired,
|
|
25446
|
+
outbound_shipping_cost: T['io.flow.internal.v0.models.outbound_shipping_cost'].isRequired,
|
|
25447
|
+
});
|
|
25448
|
+
|
|
25315
25449
|
T['io.flow.internal.v0.models.calculation_stamping_line_item'] = PropTypes.exact({
|
|
25316
25450
|
id: PropTypes.string,
|
|
25317
25451
|
hs_code: PropTypes.string,
|
|
@@ -25630,6 +25764,7 @@ T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
|
|
|
25630
25764
|
});
|
|
25631
25765
|
|
|
25632
25766
|
T['io.flow.channel.internal.v0.models.channel_order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
25767
|
+
id: PropTypes.string.isRequired,
|
|
25633
25768
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25634
25769
|
order_number: PropTypes.string.isRequired,
|
|
25635
25770
|
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
@@ -25975,6 +26110,7 @@ T['io.flow.internal.v0.models.channel_organization_identifier_upserted'] = PropT
|
|
|
25975
26110
|
});
|
|
25976
26111
|
|
|
25977
26112
|
T['io.flow.internal.v0.models.channel_order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
26113
|
+
id: PropTypes.string.isRequired,
|
|
25978
26114
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25979
26115
|
order_number: PropTypes.string.isRequired,
|
|
25980
26116
|
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
@@ -26981,6 +27117,7 @@ T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
|
26981
27117
|
hs_code_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
26982
27118
|
classification_scope: T['io.flow.internal.v0.enums.classification_scope'],
|
|
26983
27119
|
classification_resource_id: PropTypes.string,
|
|
27120
|
+
item_classification_resource_ids: PropTypes.objectOf(PropTypes.string),
|
|
26984
27121
|
url: PropTypes.string,
|
|
26985
27122
|
reviews: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_item_review']).isRequired,
|
|
26986
27123
|
created_at: PropTypes.string.isRequired,
|
|
@@ -27118,6 +27255,13 @@ T['io.flow.internal.v0.models.john_strong_item'] = PropTypes.exact({
|
|
|
27118
27255
|
added_on: PropTypes.string.isRequired,
|
|
27119
27256
|
});
|
|
27120
27257
|
|
|
27258
|
+
T['io.flow.internal.v0.models.john_strong_item_upserted'] = PropTypes.exact({
|
|
27259
|
+
discriminator: PropTypes.oneOf(['john_strong_item_upserted']).isRequired,
|
|
27260
|
+
event_id: PropTypes.string.isRequired,
|
|
27261
|
+
timestamp: PropTypes.string.isRequired,
|
|
27262
|
+
item: T['io.flow.internal.v0.models.john_strong_item'].isRequired,
|
|
27263
|
+
});
|
|
27264
|
+
|
|
27121
27265
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
27122
27266
|
id: PropTypes.string.isRequired,
|
|
27123
27267
|
description: PropTypes.string.isRequired,
|
|
@@ -28106,6 +28250,7 @@ T['io.flow.internal.v0.models.bank_payment_detail'] = PropTypes.exact({
|
|
|
28106
28250
|
source_type: T['io.flow.internal.v0.enums.account_type'].isRequired,
|
|
28107
28251
|
source_id: PropTypes.string.isRequired,
|
|
28108
28252
|
status: T['io.flow.internal.v0.enums.bank_payment_status_code'].isRequired,
|
|
28253
|
+
processed: PropTypes.bool.isRequired,
|
|
28109
28254
|
amount: PropTypes.number.isRequired,
|
|
28110
28255
|
currency: PropTypes.string.isRequired,
|
|
28111
28256
|
created_at: PropTypes.string.isRequired,
|
|
@@ -29082,6 +29227,13 @@ T['io.flow.internal.v0.models.account_payment_hold'] = PropTypes.exact({
|
|
|
29082
29227
|
reason: T['io.flow.internal.v0.enums.account_payment_hold_reason'].isRequired,
|
|
29083
29228
|
});
|
|
29084
29229
|
|
|
29230
|
+
T['io.flow.internal.v0.models.account_payment_hold_upserted'] = PropTypes.exact({
|
|
29231
|
+
discriminator: PropTypes.oneOf(['account_payment_hold_upserted']).isRequired,
|
|
29232
|
+
event_id: PropTypes.string.isRequired,
|
|
29233
|
+
timestamp: PropTypes.string.isRequired,
|
|
29234
|
+
account_payment_hold: T['io.flow.internal.v0.models.account_payment_hold'].isRequired,
|
|
29235
|
+
});
|
|
29236
|
+
|
|
29085
29237
|
T['io.flow.internal.v0.models.account_contact'] = PropTypes.exact({
|
|
29086
29238
|
id: PropTypes.string.isRequired,
|
|
29087
29239
|
email: PropTypes.string.isRequired,
|
|
@@ -29315,6 +29467,14 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29315
29467
|
T['io.flow.internal.v0.models.duty_transaction_deleted'],
|
|
29316
29468
|
T['io.flow.internal.v0.models.transaction_statement_upserted'],
|
|
29317
29469
|
T['io.flow.internal.v0.models.transaction_statement_deleted'],
|
|
29470
|
+
T['io.flow.internal.v0.models.bank_account_upserted'],
|
|
29471
|
+
T['io.flow.internal.v0.models.bank_account_deleted'],
|
|
29472
|
+
T['io.flow.internal.v0.models.posting_proof_upserted'],
|
|
29473
|
+
T['io.flow.internal.v0.models.posting_proof_deleted'],
|
|
29474
|
+
T['io.flow.internal.v0.models.bank_payment_promise_upserted'],
|
|
29475
|
+
T['io.flow.internal.v0.models.bank_payment_promise_deleted'],
|
|
29476
|
+
T['io.flow.internal.v0.models.account_payment_hold_upserted'],
|
|
29477
|
+
T['io.flow.internal.v0.models.account_payment_hold_deleted'],
|
|
29318
29478
|
T['io.flow.internal.v0.models.daily_value_upserted'],
|
|
29319
29479
|
T['io.flow.internal.v0.models.daily_value_deleted'],
|
|
29320
29480
|
T['io.flow.internal.v0.models.revenue_record_upserted'],
|
|
@@ -29361,8 +29521,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29361
29521
|
T['io.flow.internal.v0.models.organization_currency_setting_deleted'],
|
|
29362
29522
|
T['io.flow.internal.v0.models.channel_currency_setting_upserted'],
|
|
29363
29523
|
T['io.flow.internal.v0.models.channel_currency_setting_deleted'],
|
|
29364
|
-
T['io.flow.internal.v0.models.customs_description_import'],
|
|
29365
|
-
T['io.flow.internal.v0.models.customs_description_tariffs_import'],
|
|
29366
29524
|
T['io.flow.internal.v0.models.dispute_upserted'],
|
|
29367
29525
|
T['io.flow.internal.v0.models.dispute_deleted'],
|
|
29368
29526
|
T['io.flow.internal.v0.models.duty_rates_published_v2'],
|
|
@@ -29447,7 +29605,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29447
29605
|
T['io.flow.internal.v0.models.harmonized_items_hs6_export'],
|
|
29448
29606
|
T['io.flow.internal.v0.models.unharmonized_items_export'],
|
|
29449
29607
|
T['io.flow.internal.v0.models.dutied_items_export'],
|
|
29450
|
-
T['io.flow.internal.v0.models.harmonization_phrase_suggestion_request_import'],
|
|
29451
29608
|
T['io.flow.internal.v0.models.harmonization_codes_import'],
|
|
29452
29609
|
T['io.flow.internal.v0.models.harmonize_fully_request_v2'],
|
|
29453
29610
|
T['io.flow.internal.v0.models.import_completed'],
|
|
@@ -29664,6 +29821,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29664
29821
|
T['io.flow.internal.v0.models.raveena_item_deleted'],
|
|
29665
29822
|
T['io.flow.internal.v0.models.mahesh_item_upserted'],
|
|
29666
29823
|
T['io.flow.internal.v0.models.mahesh_item_deleted'],
|
|
29824
|
+
T['io.flow.internal.v0.models.john_strong_item_upserted'],
|
|
29825
|
+
T['io.flow.internal.v0.models.john_strong_item_deleted'],
|
|
29667
29826
|
T['io.flow.internal.v0.models.tracking_processing_error_upserted'],
|
|
29668
29827
|
T['io.flow.internal.v0.models.tracking_processing_error_deleted'],
|
|
29669
29828
|
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'],
|
|
@@ -29912,6 +30071,14 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29912
30071
|
'duty_transaction_deleted',
|
|
29913
30072
|
'transaction_statement_upserted',
|
|
29914
30073
|
'transaction_statement_deleted',
|
|
30074
|
+
'bank_account_upserted',
|
|
30075
|
+
'bank_account_deleted',
|
|
30076
|
+
'posting_proof_upserted',
|
|
30077
|
+
'posting_proof_deleted',
|
|
30078
|
+
'bank_payment_promise_upserted',
|
|
30079
|
+
'bank_payment_promise_deleted',
|
|
30080
|
+
'account_payment_hold_upserted',
|
|
30081
|
+
'account_payment_hold_deleted',
|
|
29915
30082
|
'daily_value_upserted',
|
|
29916
30083
|
'daily_value_deleted',
|
|
29917
30084
|
'revenue_record_upserted',
|
|
@@ -29958,8 +30125,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29958
30125
|
'organization_currency_setting_deleted',
|
|
29959
30126
|
'channel_currency_setting_upserted',
|
|
29960
30127
|
'channel_currency_setting_deleted',
|
|
29961
|
-
'customs_description_import',
|
|
29962
|
-
'customs_description_tariffs_import',
|
|
29963
30128
|
'dispute_upserted',
|
|
29964
30129
|
'dispute_deleted',
|
|
29965
30130
|
'duty_rates_published_v2',
|
|
@@ -30044,7 +30209,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
30044
30209
|
'harmonized_items_hs6_export',
|
|
30045
30210
|
'unharmonized_items_export',
|
|
30046
30211
|
'dutied_items_export',
|
|
30047
|
-
'harmonization_phrase_suggestion_request_import',
|
|
30048
30212
|
'harmonization_codes_import',
|
|
30049
30213
|
'harmonize_fully_request_v2',
|
|
30050
30214
|
'import_completed',
|
|
@@ -30261,6 +30425,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
30261
30425
|
'raveena_item_deleted',
|
|
30262
30426
|
'mahesh_item_upserted',
|
|
30263
30427
|
'mahesh_item_deleted',
|
|
30428
|
+
'john_strong_item_upserted',
|
|
30429
|
+
'john_strong_item_deleted',
|
|
30264
30430
|
'tracking_processing_error_upserted',
|
|
30265
30431
|
'tracking_processing_error_deleted',
|
|
30266
30432
|
'tracking_label_event_upserted_v2',
|
|
@@ -30299,6 +30465,7 @@ T['io.flow.internal.v0.enums.graphql_service_types'] = PropTypes.oneOf([
|
|
|
30299
30465
|
'shopify_order',
|
|
30300
30466
|
'sync_product_catalog',
|
|
30301
30467
|
'shopify_webhook',
|
|
30468
|
+
'guaranteed_shipping_state',
|
|
30302
30469
|
]);
|
|
30303
30470
|
|
|
30304
30471
|
T['io.flow.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
|
|
@@ -30480,6 +30647,15 @@ T['io.flow.internal.v0.models.aftership_webhook'] = PropTypes.exact({
|
|
|
30480
30647
|
placeholder: PropTypes.bool,
|
|
30481
30648
|
});
|
|
30482
30649
|
|
|
30650
|
+
T['io.flow.internal.v0.models.agent_review_detail'] = PropTypes.exact({
|
|
30651
|
+
decision_id: PropTypes.string.isRequired,
|
|
30652
|
+
ai_model: PropTypes.string.isRequired,
|
|
30653
|
+
ai_decision: PropTypes.string.isRequired,
|
|
30654
|
+
ai_confidence: PropTypes.number.isRequired,
|
|
30655
|
+
ai_reasoning: PropTypes.string.isRequired,
|
|
30656
|
+
reviewed_at: PropTypes.string.isRequired,
|
|
30657
|
+
});
|
|
30658
|
+
|
|
30483
30659
|
T['io.flow.internal.v0.models.allocation_item_reference'] = PropTypes.exact({
|
|
30484
30660
|
number: PropTypes.string.isRequired,
|
|
30485
30661
|
});
|
|
@@ -31056,18 +31232,6 @@ T['io.flow.internal.v0.models.payout_status_counts'] = PropTypes.exact({
|
|
|
31056
31232
|
failed: PropTypes.number.isRequired,
|
|
31057
31233
|
});
|
|
31058
31234
|
|
|
31059
|
-
T['io.flow.internal.v0.models.phrase_classified'] = PropTypes.exact({
|
|
31060
|
-
event_id: PropTypes.string.isRequired,
|
|
31061
|
-
timestamp: PropTypes.string.isRequired,
|
|
31062
|
-
phrase_id: PropTypes.string.isRequired,
|
|
31063
|
-
});
|
|
31064
|
-
|
|
31065
|
-
T['io.flow.internal.v0.models.phrase_propagated'] = PropTypes.exact({
|
|
31066
|
-
event_id: PropTypes.string.isRequired,
|
|
31067
|
-
timestamp: PropTypes.string.isRequired,
|
|
31068
|
-
phrase_id: PropTypes.string.isRequired,
|
|
31069
|
-
});
|
|
31070
|
-
|
|
31071
31235
|
T['io.flow.internal.v0.models.prioritized_center_reference'] = PropTypes.exact({
|
|
31072
31236
|
center_key: PropTypes.string.isRequired,
|
|
31073
31237
|
position: PropTypes.number.isRequired,
|
|
@@ -31241,6 +31405,11 @@ T['io.flow.internal.v0.models.shopify_markets_queued_record'] = PropTypes.exact(
|
|
|
31241
31405
|
stacktrace: PropTypes.string,
|
|
31242
31406
|
});
|
|
31243
31407
|
|
|
31408
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_access_token'] = PropTypes.exact({
|
|
31409
|
+
myshopify_domain: PropTypes.string.isRequired,
|
|
31410
|
+
access_token: PropTypes.string.isRequired,
|
|
31411
|
+
});
|
|
31412
|
+
|
|
31244
31413
|
T['io.flow.internal.v0.models.shopify_markets_sync'] = PropTypes.exact({
|
|
31245
31414
|
force_resync: PropTypes.bool,
|
|
31246
31415
|
});
|
|
@@ -31766,6 +31935,7 @@ T['io.flow.shopify.markets.internal.v0.enums.graphql_service_types'] = PropTypes
|
|
|
31766
31935
|
'shopify_order',
|
|
31767
31936
|
'sync_product_catalog',
|
|
31768
31937
|
'shopify_webhook',
|
|
31938
|
+
'guaranteed_shipping_state',
|
|
31769
31939
|
]);
|
|
31770
31940
|
|
|
31771
31941
|
T['io.flow.shopify.markets.internal.v0.enums.product_status'] = PropTypes.oneOf(['active', 'archived', 'draft', 'unlisted']);
|
|
@@ -31836,6 +32006,11 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_queued_record'] =
|
|
|
31836
32006
|
stacktrace: PropTypes.string,
|
|
31837
32007
|
});
|
|
31838
32008
|
|
|
32009
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_access_token'] = PropTypes.exact({
|
|
32010
|
+
myshopify_domain: PropTypes.string.isRequired,
|
|
32011
|
+
access_token: PropTypes.string.isRequired,
|
|
32012
|
+
});
|
|
32013
|
+
|
|
31839
32014
|
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_sync'] = PropTypes.exact({
|
|
31840
32015
|
force_resync: PropTypes.bool,
|
|
31841
32016
|
});
|
|
@@ -32631,8 +32806,10 @@ export const accountDepositRuleForm = T['io.flow.internal.v0.models.account_depo
|
|
|
32631
32806
|
export const accountOrdersExportRequest = T['io.flow.internal.v0.models.account_orders_export_request'];
|
|
32632
32807
|
export const accountOrigin = T['io.flow.internal.v0.models.account_origin'];
|
|
32633
32808
|
export const accountPaymentHold = T['io.flow.internal.v0.models.account_payment_hold'];
|
|
32809
|
+
export const accountPaymentHoldDeleted = T['io.flow.internal.v0.models.account_payment_hold_deleted'];
|
|
32634
32810
|
export const accountPaymentHoldForm = T['io.flow.internal.v0.models.account_payment_hold_form'];
|
|
32635
32811
|
export const accountPaymentHoldReason = T['io.flow.internal.v0.enums.account_payment_hold_reason'];
|
|
32812
|
+
export const accountPaymentHoldUpserted = T['io.flow.internal.v0.models.account_payment_hold_upserted'];
|
|
32636
32813
|
export const accountProcessingRateForm = T['io.flow.internal.v0.models.account_processing_rate_form'];
|
|
32637
32814
|
export const accountProcessingRates = T['io.flow.internal.v0.models.account_processing_rates'];
|
|
32638
32815
|
export const accountProcessingRatesDeleted = T['io.flow.internal.v0.models.account_processing_rates_deleted'];
|
|
@@ -32716,6 +32893,7 @@ export const afterpayRefund = T['io.flow.internal.v0.models.afterpay_refund'];
|
|
|
32716
32893
|
export const afterpayRefundDeleted = T['io.flow.internal.v0.models.afterpay_refund_deleted'];
|
|
32717
32894
|
export const afterpayRefundUpserted = T['io.flow.internal.v0.models.afterpay_refund_upserted'];
|
|
32718
32895
|
export const aftershipWebhook = T['io.flow.internal.v0.models.aftership_webhook'];
|
|
32896
|
+
export const agentReviewDetail = T['io.flow.internal.v0.models.agent_review_detail'];
|
|
32719
32897
|
export const aiOutput = T['io.flow.internal.v0.unions.ai_output'];
|
|
32720
32898
|
export const aiReviewBatchSubmitted = T['io.flow.internal.v0.models.ai_review_batch_submitted'];
|
|
32721
32899
|
export const aiReviewConsumer = T['io.flow.internal.v0.enums.ai_review_consumer'];
|
|
@@ -32770,8 +32948,11 @@ export const b2BTaxTransactionUpserted = T['io.flow.internal.v0.models.b2b_tax_t
|
|
|
32770
32948
|
export const b2BTransactionTaxLine = T['io.flow.internal.v0.models.b2b_transaction_tax_line'];
|
|
32771
32949
|
export const b2BTransactionTaxableItem = T['io.flow.internal.v0.models.b2b_transaction_taxable_item'];
|
|
32772
32950
|
export const bankAccount = T['io.flow.internal.v0.models.bank_account'];
|
|
32951
|
+
export const bankAccountDeleted = T['io.flow.internal.v0.models.bank_account_deleted'];
|
|
32773
32952
|
export const bankAccountReference = T['io.flow.internal.v0.models.bank_account_reference'];
|
|
32953
|
+
export const bankAccountSnapshot = T['io.flow.internal.v0.models.bank_account_snapshot'];
|
|
32774
32954
|
export const bankAccountStatus = T['io.flow.internal.v0.enums.bank_account_status'];
|
|
32955
|
+
export const bankAccountUpserted = T['io.flow.internal.v0.models.bank_account_upserted'];
|
|
32775
32956
|
export const bankPayment = T['io.flow.internal.v0.models.bank_payment'];
|
|
32776
32957
|
export const bankPaymentDeletedV2 = T['io.flow.internal.v0.models.bank_payment_deleted_v2'];
|
|
32777
32958
|
export const bankPaymentDetail = T['io.flow.internal.v0.models.bank_payment_detail'];
|
|
@@ -32780,13 +32961,18 @@ export const bankPaymentForm = T['io.flow.internal.v0.models.bank_payment_form']
|
|
|
32780
32961
|
export const bankPaymentOrder = T['io.flow.internal.v0.models.bank_payment_order'];
|
|
32781
32962
|
export const bankPaymentOrderDeleted = T['io.flow.internal.v0.models.bank_payment_order_deleted'];
|
|
32782
32963
|
export const bankPaymentOrderUpserted = T['io.flow.internal.v0.models.bank_payment_order_upserted'];
|
|
32964
|
+
export const bankPaymentPromise = T['io.flow.internal.v0.models.bank_payment_promise'];
|
|
32783
32965
|
export const bankPaymentPromiseCompletedMethod = T['io.flow.internal.v0.enums.bank_payment_promise_completed_method'];
|
|
32966
|
+
export const bankPaymentPromiseDeleted = T['io.flow.internal.v0.models.bank_payment_promise_deleted'];
|
|
32967
|
+
export const bankPaymentPromiseUpserted = T['io.flow.internal.v0.models.bank_payment_promise_upserted'];
|
|
32784
32968
|
export const bankPaymentReference = T['io.flow.internal.v0.models.bank_payment_reference'];
|
|
32785
32969
|
export const bankPaymentStatusCode = T['io.flow.internal.v0.enums.bank_payment_status_code'];
|
|
32786
32970
|
export const bankPaymentStatusForm = T['io.flow.internal.v0.models.bank_payment_status_form'];
|
|
32787
32971
|
export const bankPaymentStatusImport = T['io.flow.internal.v0.models.bank_payment_status_import'];
|
|
32788
32972
|
export const bankPaymentStatusImportForm = T['io.flow.internal.v0.models.bank_payment_status_import_form'];
|
|
32789
32973
|
export const bankPaymentStatusImportResult = T['io.flow.internal.v0.models.bank_payment_status_import_result'];
|
|
32974
|
+
export const bankPaymentStatusProcessedImportForm = T['io.flow.internal.v0.models.bank_payment_status_processed_import_form'];
|
|
32975
|
+
export const bankPaymentStatusProcessedSingleForm = T['io.flow.internal.v0.models.bank_payment_status_processed_single_form'];
|
|
32790
32976
|
export const bankPaymentStatusSentImportForm = T['io.flow.internal.v0.models.bank_payment_status_sent_import_form'];
|
|
32791
32977
|
export const bankPaymentStatusSingleForm = T['io.flow.internal.v0.models.bank_payment_status_single_form'];
|
|
32792
32978
|
export const bankPaymentUpserted = T['io.flow.internal.v0.models.bank_payment_upserted'];
|
|
@@ -32874,6 +33060,7 @@ export const carrierCredentials = T['io.flow.internal.v0.unions.carrier_credenti
|
|
|
32874
33060
|
export const carrierDocument = T['io.flow.internal.v0.models.carrier_document'];
|
|
32875
33061
|
export const carrierDocumentContent = T['io.flow.internal.v0.unions.carrier_document_content'];
|
|
32876
33062
|
export const carrierDocumentType = T['io.flow.internal.v0.enums.carrier_document_type'];
|
|
33063
|
+
export const carrierEstimate = T['io.flow.internal.v0.models.carrier_estimate'];
|
|
32877
33064
|
export const carrierFile = T['io.flow.internal.v0.models.carrier_file'];
|
|
32878
33065
|
export const carrierFileForm = T['io.flow.internal.v0.models.carrier_file_form'];
|
|
32879
33066
|
export const carrierFileResult = T['io.flow.internal.v0.models.carrier_file_result'];
|
|
@@ -33094,12 +33281,10 @@ export const cryptoAuthentication = T['io.flow.internal.v0.models.crypto_authent
|
|
|
33094
33281
|
export const cryptoAuthenticationForm = T['io.flow.internal.v0.models.crypto_authentication_form'];
|
|
33095
33282
|
export const csvTransaction = T['io.flow.internal.v0.models.csv_transaction'];
|
|
33096
33283
|
export const currencyInternalRate = T['io.flow.internal.v0.models.currency_internal_rate'];
|
|
33097
|
-
export const customsDescriptionImport = T['io.flow.internal.v0.models.customs_description_import'];
|
|
33098
33284
|
export const customsDescriptionStatistics = T['io.flow.internal.v0.models.customs_description_statistics'];
|
|
33099
33285
|
export const customsDescriptionSuggestion = T['io.flow.internal.v0.models.customs_description_suggestion'];
|
|
33100
33286
|
export const customsDescriptionTariffCodeDuty = T['io.flow.internal.v0.models.customs_description_tariff_code_duty'];
|
|
33101
33287
|
export const customsDescriptionTariffCodeDutyForm = T['io.flow.internal.v0.models.customs_description_tariff_code_duty_form'];
|
|
33102
|
-
export const customsDescriptionTariffsImport = T['io.flow.internal.v0.models.customs_description_tariffs_import'];
|
|
33103
33288
|
export const customsDetails = T['io.flow.internal.v0.models.customs_details'];
|
|
33104
33289
|
export const customsDetailsForm = T['io.flow.internal.v0.models.customs_details_form'];
|
|
33105
33290
|
export const customsProductAttributeLabel = T['io.flow.internal.v0.models.customs_product_attribute_label'];
|
|
@@ -33434,6 +33619,10 @@ export const guaranteedShippingCalibratedOutputUpserted = T['io.flow.internal.v0
|
|
|
33434
33619
|
export const guaranteedShippingCalibration = T['io.flow.internal.v0.models.guaranteed_shipping_calibration'];
|
|
33435
33620
|
export const guaranteedShippingCalibrationForm = T['io.flow.internal.v0.models.guaranteed_shipping_calibration_form'];
|
|
33436
33621
|
export const guaranteedShippingCalibrationLaneForm = T['io.flow.internal.v0.models.guaranteed_shipping_calibration_lane_form'];
|
|
33622
|
+
export const guaranteedShippingPublication = T['io.flow.internal.v0.models.guaranteed_shipping_publication'];
|
|
33623
|
+
export const guaranteedShippingPublicationForm = T['io.flow.internal.v0.models.guaranteed_shipping_publication_form'];
|
|
33624
|
+
export const guaranteedShippingPublicationLaneForm = T['io.flow.internal.v0.models.guaranteed_shipping_publication_lane_form'];
|
|
33625
|
+
export const guaranteedShippingPublicationStatus = T['io.flow.internal.v0.enums.guaranteed_shipping_publication_status'];
|
|
33437
33626
|
export const guaranteedShippingPublishedOutput = T['io.flow.internal.v0.models.guaranteed_shipping_published_output'];
|
|
33438
33627
|
export const guaranteedShippingPublishedOutputDeleted = T['io.flow.internal.v0.models.guaranteed_shipping_published_output_deleted'];
|
|
33439
33628
|
export const guaranteedShippingPublishedOutputUpserted = T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'];
|
|
@@ -33452,7 +33641,6 @@ export const harmonizationDecisionSource = T['io.flow.internal.v0.enums.harmoniz
|
|
|
33452
33641
|
export const harmonizationItemClassification = T['io.flow.internal.v0.models.harmonization_item_classification'];
|
|
33453
33642
|
export const harmonizationItemSummary = T['io.flow.internal.v0.models.harmonization_item_summary'];
|
|
33454
33643
|
export const harmonizationMlModelSummary = T['io.flow.internal.v0.models.harmonization_ml_model_summary'];
|
|
33455
|
-
export const harmonizationPhraseSuggestionRequestImport = T['io.flow.internal.v0.models.harmonization_phrase_suggestion_request_import'];
|
|
33456
33644
|
export const harmonizationThreshold = T['io.flow.internal.v0.models.harmonization_threshold'];
|
|
33457
33645
|
export const harmonizationThresholdForm = T['io.flow.internal.v0.models.harmonization_threshold_form'];
|
|
33458
33646
|
export const harmonizationUnclassifiedStatistics = T['io.flow.internal.v0.models.harmonization_unclassified_statistics'];
|
|
@@ -33540,8 +33728,10 @@ export const itemSummary = T['io.flow.internal.v0.models.item_summary'];
|
|
|
33540
33728
|
export const itemType = T['io.flow.internal.v0.enums.item_type'];
|
|
33541
33729
|
export const itemValuesForm = T['io.flow.internal.v0.models.item_values_form'];
|
|
33542
33730
|
export const johnStrongItem = T['io.flow.internal.v0.models.john_strong_item'];
|
|
33731
|
+
export const johnStrongItemDeleted = T['io.flow.internal.v0.models.john_strong_item_deleted'];
|
|
33543
33732
|
export const johnStrongItemForm = T['io.flow.internal.v0.models.john_strong_item_form'];
|
|
33544
33733
|
export const johnStrongItemType = T['io.flow.internal.v0.enums.john_strong_item_type'];
|
|
33734
|
+
export const johnStrongItemUpserted = T['io.flow.internal.v0.models.john_strong_item_upserted'];
|
|
33545
33735
|
export const journal = T['io.flow.internal.v0.models.journal'];
|
|
33546
33736
|
export const journalFailure = T['io.flow.internal.v0.models.journal_failure'];
|
|
33547
33737
|
export const journalOperation = T['io.flow.internal.v0.enums.journal_operation'];
|
|
@@ -33917,8 +34107,6 @@ export const pendingBankPayment = T['io.flow.internal.v0.models.pending_bank_pay
|
|
|
33917
34107
|
export const pendingBankPaymentDetail = T['io.flow.internal.v0.models.pending_bank_payment_detail'];
|
|
33918
34108
|
export const pendingOrder = T['io.flow.internal.v0.models.pending_order'];
|
|
33919
34109
|
export const pendingRecordType = T['io.flow.internal.v0.enums.pending_record_type'];
|
|
33920
|
-
export const phraseClassified = T['io.flow.internal.v0.models.phrase_classified'];
|
|
33921
|
-
export const phrasePropagated = T['io.flow.internal.v0.models.phrase_propagated'];
|
|
33922
34110
|
export const platformFee = T['io.flow.internal.v0.unions.platform_fee'];
|
|
33923
34111
|
export const platformFeeChange = T['io.flow.internal.v0.models.platform_fee_change'];
|
|
33924
34112
|
export const platformFeeChangeDeleted = T['io.flow.internal.v0.models.platform_fee_change_deleted'];
|
|
@@ -33929,6 +34117,9 @@ export const platformFeeFlat = T['io.flow.internal.v0.models.platform_fee_flat']
|
|
|
33929
34117
|
export const platformFeePause = T['io.flow.internal.v0.models.platform_fee_pause'];
|
|
33930
34118
|
export const platformFeePercentage = T['io.flow.internal.v0.models.platform_fee_percentage'];
|
|
33931
34119
|
export const platformFeePercentageTier = T['io.flow.internal.v0.models.platform_fee_percentage_tier'];
|
|
34120
|
+
export const postingProof = T['io.flow.internal.v0.models.posting_proof'];
|
|
34121
|
+
export const postingProofDeleted = T['io.flow.internal.v0.models.posting_proof_deleted'];
|
|
34122
|
+
export const postingProofUpserted = T['io.flow.internal.v0.models.posting_proof_upserted'];
|
|
33932
34123
|
export const prediction = T['io.flow.internal.v0.models.prediction'];
|
|
33933
34124
|
export const preferredBillingSchedule = T['io.flow.internal.v0.enums.preferred_billing_schedule'];
|
|
33934
34125
|
export const preonboardingClassificationDecision = T['io.flow.internal.v0.enums.preonboarding_classification_decision'];
|
|
@@ -34136,6 +34327,7 @@ export const reportingUsd = T['io.flow.internal.v0.models.reporting_usd'];
|
|
|
34136
34327
|
export const reportingVatRemittance = T['io.flow.internal.v0.models.reporting_vat_remittance'];
|
|
34137
34328
|
export const reportingVatRemittanceRate = T['io.flow.internal.v0.models.reporting_vat_remittance_rate'];
|
|
34138
34329
|
export const reportingVendor = T['io.flow.internal.v0.models.reporting_vendor'];
|
|
34330
|
+
export const requestedBankPaymentStatusCode = T['io.flow.internal.v0.enums.requested_bank_payment_status_code'];
|
|
34139
34331
|
export const requeueRequestForm = T['io.flow.internal.v0.models.requeue_request_form'];
|
|
34140
34332
|
export const rescreenRestrictionsProducts = T['io.flow.internal.v0.models.rescreen_restrictions_products'];
|
|
34141
34333
|
export const responsibleParty = T['io.flow.internal.v0.enums.responsible_party'];
|
|
@@ -34247,10 +34439,12 @@ export const searchProviderExport = T['io.flow.internal.v0.models.search_provide
|
|
|
34247
34439
|
export const searchTrackingSummary = T['io.flow.internal.v0.models.search_tracking_summary'];
|
|
34248
34440
|
export const sellabilityCheckResult = T['io.flow.internal.v0.models.sellability_check_result'];
|
|
34249
34441
|
export const sellabilityCheckStatus = T['io.flow.internal.v0.enums.sellability_check_status'];
|
|
34442
|
+
export const sellabilityDecisionSource = T['io.flow.internal.v0.enums.sellability_decision_source'];
|
|
34250
34443
|
export const sellabilityInternalMatchType = T['io.flow.internal.v0.enums.sellability_internal_match_type'];
|
|
34251
34444
|
export const sellabilityPendingVerification = T['io.flow.internal.v0.models.sellability_pending_verification'];
|
|
34252
34445
|
export const sellabilityPendingVerificationDeleted = T['io.flow.internal.v0.models.sellability_pending_verification_deleted'];
|
|
34253
34446
|
export const sellabilityPendingVerificationUpserted = T['io.flow.internal.v0.models.sellability_pending_verification_upserted'];
|
|
34447
|
+
export const sellabilityRuleMatch = T['io.flow.internal.v0.models.sellability_rule_match'];
|
|
34254
34448
|
export const sellabilityStatus = T['io.flow.internal.v0.enums.sellability_status'];
|
|
34255
34449
|
export const serviceFees = T['io.flow.internal.v0.models.service_fees'];
|
|
34256
34450
|
export const serviceFeesForm = T['io.flow.internal.v0.models.service_fees_form'];
|
|
@@ -34320,6 +34514,7 @@ export const shopifyMarketsOrganizationOrderMetrics = T['io.flow.internal.v0.mod
|
|
|
34320
34514
|
export const shopifyMarketsQueuedRecord = T['io.flow.internal.v0.models.shopify_markets_queued_record'];
|
|
34321
34515
|
export const shopifyMarketsQueuedRecordType = T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'];
|
|
34322
34516
|
export const shopifyMarketsShop = T['io.flow.internal.v0.models.shopify_markets_shop'];
|
|
34517
|
+
export const shopifyMarketsShopAccessToken = T['io.flow.internal.v0.models.shopify_markets_shop_access_token'];
|
|
34323
34518
|
export const shopifyMarketsShopDeleted = T['io.flow.internal.v0.models.shopify_markets_shop_deleted'];
|
|
34324
34519
|
export const shopifyMarketsShopForm = T['io.flow.internal.v0.models.shopify_markets_shop_form'];
|
|
34325
34520
|
export const shopifyMarketsShopStatisticsDeleted = T['io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted'];
|
|
@@ -34558,6 +34753,7 @@ export const trackingCarrierReturnLabelUpserted = T['io.flow.internal.v0.models.
|
|
|
34558
34753
|
export const trackingDebugForceTransitForm = T['io.flow.internal.v0.models.tracking_debug_force_transit_form'];
|
|
34559
34754
|
export const trackingDebugLabel = T['io.flow.internal.v0.models.tracking_debug_label'];
|
|
34560
34755
|
export const trackingDebugLabelEvent = T['io.flow.internal.v0.models.tracking_debug_label_event'];
|
|
34756
|
+
export const trackingDebugLabelEventUpsertForm = T['io.flow.internal.v0.models.tracking_debug_label_event_upsert_form'];
|
|
34561
34757
|
export const trackingDebugLabelLocation = T['io.flow.internal.v0.models.tracking_debug_label_location'];
|
|
34562
34758
|
export const trackingDeleted = T['io.flow.internal.v0.models.tracking_deleted'];
|
|
34563
34759
|
export const trackingEvent = T['io.flow.internal.v0.models.tracking_event'];
|