@flowio/api-internal-prop-types 9.24.141 → 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 +212 -55
- package/lib/api-internal.js +1 -1
- package/package.json +1 -1
- package/src/api-internal.d.ts +212 -55
- package/src/api-internal.js +274 -86
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,27 +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
|
-
id: PropTypes.string.isRequired,
|
|
24548
|
-
channel_id: PropTypes.string.isRequired,
|
|
24549
|
-
organization_id: PropTypes.string.isRequired,
|
|
24550
|
-
destination_country: PropTypes.string.isRequired,
|
|
24551
|
-
carrier_service_id: PropTypes.string.isRequired,
|
|
24552
|
-
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
24553
|
-
updated_at: PropTypes.number.isRequired,
|
|
24554
|
-
run_id: PropTypes.string.isRequired,
|
|
24555
|
-
model_version: PropTypes.string.isRequired,
|
|
24556
|
-
});
|
|
24557
|
-
|
|
24558
|
-
T['io.flow.internal.v0.models.outbound_shipping_cost_upserted'] = PropTypes.exact({
|
|
24559
|
-
discriminator: PropTypes.oneOf(['outbound_shipping_cost_upserted']).isRequired,
|
|
24560
|
-
event_id: PropTypes.string.isRequired,
|
|
24561
|
-
timestamp: PropTypes.string.isRequired,
|
|
24562
|
-
organization: PropTypes.string.isRequired,
|
|
24563
|
-
channel_id: PropTypes.string.isRequired,
|
|
24564
|
-
outbound_shipping_cost: T['io.flow.internal.v0.models.outbound_shipping_cost'].isRequired,
|
|
24565
|
-
});
|
|
24566
|
-
|
|
24567
24669
|
T['io.flow.internal.v0.models.mor_cost_summary'] = PropTypes.exact({
|
|
24568
24670
|
id: PropTypes.string.isRequired,
|
|
24569
24671
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -24727,7 +24829,11 @@ T['io.flow.internal.v0.models.guaranteed_shipping_published_output'] = PropTypes
|
|
|
24727
24829
|
destination_country: PropTypes.string.isRequired,
|
|
24728
24830
|
coefficient: PropTypes.number.isRequired,
|
|
24729
24831
|
flat_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.flat_rate']).isRequired,
|
|
24730
|
-
|
|
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,
|
|
24731
24837
|
});
|
|
24732
24838
|
|
|
24733
24839
|
T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'] = PropTypes.exact({
|
|
@@ -25313,6 +25419,33 @@ T['io.flow.internal.v0.models.label_creation_request_form'] = PropTypes.exact({
|
|
|
25313
25419
|
reference_id: PropTypes.string,
|
|
25314
25420
|
});
|
|
25315
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
|
+
|
|
25316
25449
|
T['io.flow.internal.v0.models.calculation_stamping_line_item'] = PropTypes.exact({
|
|
25317
25450
|
id: PropTypes.string,
|
|
25318
25451
|
hs_code: PropTypes.string,
|
|
@@ -25631,6 +25764,7 @@ T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
|
|
|
25631
25764
|
});
|
|
25632
25765
|
|
|
25633
25766
|
T['io.flow.channel.internal.v0.models.channel_order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
25767
|
+
id: PropTypes.string.isRequired,
|
|
25634
25768
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25635
25769
|
order_number: PropTypes.string.isRequired,
|
|
25636
25770
|
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
@@ -25976,6 +26110,7 @@ T['io.flow.internal.v0.models.channel_organization_identifier_upserted'] = PropT
|
|
|
25976
26110
|
});
|
|
25977
26111
|
|
|
25978
26112
|
T['io.flow.internal.v0.models.channel_order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
26113
|
+
id: PropTypes.string.isRequired,
|
|
25979
26114
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25980
26115
|
order_number: PropTypes.string.isRequired,
|
|
25981
26116
|
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
@@ -27120,6 +27255,13 @@ T['io.flow.internal.v0.models.john_strong_item'] = PropTypes.exact({
|
|
|
27120
27255
|
added_on: PropTypes.string.isRequired,
|
|
27121
27256
|
});
|
|
27122
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
|
+
|
|
27123
27265
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
27124
27266
|
id: PropTypes.string.isRequired,
|
|
27125
27267
|
description: PropTypes.string.isRequired,
|
|
@@ -29085,6 +29227,13 @@ T['io.flow.internal.v0.models.account_payment_hold'] = PropTypes.exact({
|
|
|
29085
29227
|
reason: T['io.flow.internal.v0.enums.account_payment_hold_reason'].isRequired,
|
|
29086
29228
|
});
|
|
29087
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
|
+
|
|
29088
29237
|
T['io.flow.internal.v0.models.account_contact'] = PropTypes.exact({
|
|
29089
29238
|
id: PropTypes.string.isRequired,
|
|
29090
29239
|
email: PropTypes.string.isRequired,
|
|
@@ -29318,6 +29467,14 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29318
29467
|
T['io.flow.internal.v0.models.duty_transaction_deleted'],
|
|
29319
29468
|
T['io.flow.internal.v0.models.transaction_statement_upserted'],
|
|
29320
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'],
|
|
29321
29478
|
T['io.flow.internal.v0.models.daily_value_upserted'],
|
|
29322
29479
|
T['io.flow.internal.v0.models.daily_value_deleted'],
|
|
29323
29480
|
T['io.flow.internal.v0.models.revenue_record_upserted'],
|
|
@@ -29364,8 +29521,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29364
29521
|
T['io.flow.internal.v0.models.organization_currency_setting_deleted'],
|
|
29365
29522
|
T['io.flow.internal.v0.models.channel_currency_setting_upserted'],
|
|
29366
29523
|
T['io.flow.internal.v0.models.channel_currency_setting_deleted'],
|
|
29367
|
-
T['io.flow.internal.v0.models.customs_description_import'],
|
|
29368
|
-
T['io.flow.internal.v0.models.customs_description_tariffs_import'],
|
|
29369
29524
|
T['io.flow.internal.v0.models.dispute_upserted'],
|
|
29370
29525
|
T['io.flow.internal.v0.models.dispute_deleted'],
|
|
29371
29526
|
T['io.flow.internal.v0.models.duty_rates_published_v2'],
|
|
@@ -29450,7 +29605,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29450
29605
|
T['io.flow.internal.v0.models.harmonized_items_hs6_export'],
|
|
29451
29606
|
T['io.flow.internal.v0.models.unharmonized_items_export'],
|
|
29452
29607
|
T['io.flow.internal.v0.models.dutied_items_export'],
|
|
29453
|
-
T['io.flow.internal.v0.models.harmonization_phrase_suggestion_request_import'],
|
|
29454
29608
|
T['io.flow.internal.v0.models.harmonization_codes_import'],
|
|
29455
29609
|
T['io.flow.internal.v0.models.harmonize_fully_request_v2'],
|
|
29456
29610
|
T['io.flow.internal.v0.models.import_completed'],
|
|
@@ -29667,6 +29821,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29667
29821
|
T['io.flow.internal.v0.models.raveena_item_deleted'],
|
|
29668
29822
|
T['io.flow.internal.v0.models.mahesh_item_upserted'],
|
|
29669
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'],
|
|
29670
29826
|
T['io.flow.internal.v0.models.tracking_processing_error_upserted'],
|
|
29671
29827
|
T['io.flow.internal.v0.models.tracking_processing_error_deleted'],
|
|
29672
29828
|
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'],
|
|
@@ -29915,6 +30071,14 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29915
30071
|
'duty_transaction_deleted',
|
|
29916
30072
|
'transaction_statement_upserted',
|
|
29917
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',
|
|
29918
30082
|
'daily_value_upserted',
|
|
29919
30083
|
'daily_value_deleted',
|
|
29920
30084
|
'revenue_record_upserted',
|
|
@@ -29961,8 +30125,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29961
30125
|
'organization_currency_setting_deleted',
|
|
29962
30126
|
'channel_currency_setting_upserted',
|
|
29963
30127
|
'channel_currency_setting_deleted',
|
|
29964
|
-
'customs_description_import',
|
|
29965
|
-
'customs_description_tariffs_import',
|
|
29966
30128
|
'dispute_upserted',
|
|
29967
30129
|
'dispute_deleted',
|
|
29968
30130
|
'duty_rates_published_v2',
|
|
@@ -30047,7 +30209,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
30047
30209
|
'harmonized_items_hs6_export',
|
|
30048
30210
|
'unharmonized_items_export',
|
|
30049
30211
|
'dutied_items_export',
|
|
30050
|
-
'harmonization_phrase_suggestion_request_import',
|
|
30051
30212
|
'harmonization_codes_import',
|
|
30052
30213
|
'harmonize_fully_request_v2',
|
|
30053
30214
|
'import_completed',
|
|
@@ -30264,6 +30425,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
30264
30425
|
'raveena_item_deleted',
|
|
30265
30426
|
'mahesh_item_upserted',
|
|
30266
30427
|
'mahesh_item_deleted',
|
|
30428
|
+
'john_strong_item_upserted',
|
|
30429
|
+
'john_strong_item_deleted',
|
|
30267
30430
|
'tracking_processing_error_upserted',
|
|
30268
30431
|
'tracking_processing_error_deleted',
|
|
30269
30432
|
'tracking_label_event_upserted_v2',
|
|
@@ -30302,6 +30465,7 @@ T['io.flow.internal.v0.enums.graphql_service_types'] = PropTypes.oneOf([
|
|
|
30302
30465
|
'shopify_order',
|
|
30303
30466
|
'sync_product_catalog',
|
|
30304
30467
|
'shopify_webhook',
|
|
30468
|
+
'guaranteed_shipping_state',
|
|
30305
30469
|
]);
|
|
30306
30470
|
|
|
30307
30471
|
T['io.flow.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
|
|
@@ -30483,6 +30647,15 @@ T['io.flow.internal.v0.models.aftership_webhook'] = PropTypes.exact({
|
|
|
30483
30647
|
placeholder: PropTypes.bool,
|
|
30484
30648
|
});
|
|
30485
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
|
+
|
|
30486
30659
|
T['io.flow.internal.v0.models.allocation_item_reference'] = PropTypes.exact({
|
|
30487
30660
|
number: PropTypes.string.isRequired,
|
|
30488
30661
|
});
|
|
@@ -30520,10 +30693,6 @@ T['io.flow.internal.v0.models.bank_payment_form'] = PropTypes.exact({
|
|
|
30520
30693
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
30521
30694
|
});
|
|
30522
30695
|
|
|
30523
|
-
T['io.flow.internal.v0.models.bank_payment_status_processed_import_form'] = PropTypes.exact({
|
|
30524
|
-
payment_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
30525
|
-
});
|
|
30526
|
-
|
|
30527
30696
|
T['io.flow.internal.v0.models.bank_payment_status_sent_import_form'] = PropTypes.exact({
|
|
30528
30697
|
payment_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
30529
30698
|
});
|
|
@@ -31063,18 +31232,6 @@ T['io.flow.internal.v0.models.payout_status_counts'] = PropTypes.exact({
|
|
|
31063
31232
|
failed: PropTypes.number.isRequired,
|
|
31064
31233
|
});
|
|
31065
31234
|
|
|
31066
|
-
T['io.flow.internal.v0.models.phrase_classified'] = PropTypes.exact({
|
|
31067
|
-
event_id: PropTypes.string.isRequired,
|
|
31068
|
-
timestamp: PropTypes.string.isRequired,
|
|
31069
|
-
phrase_id: PropTypes.string.isRequired,
|
|
31070
|
-
});
|
|
31071
|
-
|
|
31072
|
-
T['io.flow.internal.v0.models.phrase_propagated'] = PropTypes.exact({
|
|
31073
|
-
event_id: PropTypes.string.isRequired,
|
|
31074
|
-
timestamp: PropTypes.string.isRequired,
|
|
31075
|
-
phrase_id: PropTypes.string.isRequired,
|
|
31076
|
-
});
|
|
31077
|
-
|
|
31078
31235
|
T['io.flow.internal.v0.models.prioritized_center_reference'] = PropTypes.exact({
|
|
31079
31236
|
center_key: PropTypes.string.isRequired,
|
|
31080
31237
|
position: PropTypes.number.isRequired,
|
|
@@ -31248,6 +31405,11 @@ T['io.flow.internal.v0.models.shopify_markets_queued_record'] = PropTypes.exact(
|
|
|
31248
31405
|
stacktrace: PropTypes.string,
|
|
31249
31406
|
});
|
|
31250
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
|
+
|
|
31251
31413
|
T['io.flow.internal.v0.models.shopify_markets_sync'] = PropTypes.exact({
|
|
31252
31414
|
force_resync: PropTypes.bool,
|
|
31253
31415
|
});
|
|
@@ -31773,6 +31935,7 @@ T['io.flow.shopify.markets.internal.v0.enums.graphql_service_types'] = PropTypes
|
|
|
31773
31935
|
'shopify_order',
|
|
31774
31936
|
'sync_product_catalog',
|
|
31775
31937
|
'shopify_webhook',
|
|
31938
|
+
'guaranteed_shipping_state',
|
|
31776
31939
|
]);
|
|
31777
31940
|
|
|
31778
31941
|
T['io.flow.shopify.markets.internal.v0.enums.product_status'] = PropTypes.oneOf(['active', 'archived', 'draft', 'unlisted']);
|
|
@@ -31843,6 +32006,11 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_queued_record'] =
|
|
|
31843
32006
|
stacktrace: PropTypes.string,
|
|
31844
32007
|
});
|
|
31845
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
|
+
|
|
31846
32014
|
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_sync'] = PropTypes.exact({
|
|
31847
32015
|
force_resync: PropTypes.bool,
|
|
31848
32016
|
});
|
|
@@ -32638,8 +32806,10 @@ export const accountDepositRuleForm = T['io.flow.internal.v0.models.account_depo
|
|
|
32638
32806
|
export const accountOrdersExportRequest = T['io.flow.internal.v0.models.account_orders_export_request'];
|
|
32639
32807
|
export const accountOrigin = T['io.flow.internal.v0.models.account_origin'];
|
|
32640
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'];
|
|
32641
32810
|
export const accountPaymentHoldForm = T['io.flow.internal.v0.models.account_payment_hold_form'];
|
|
32642
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'];
|
|
32643
32813
|
export const accountProcessingRateForm = T['io.flow.internal.v0.models.account_processing_rate_form'];
|
|
32644
32814
|
export const accountProcessingRates = T['io.flow.internal.v0.models.account_processing_rates'];
|
|
32645
32815
|
export const accountProcessingRatesDeleted = T['io.flow.internal.v0.models.account_processing_rates_deleted'];
|
|
@@ -32723,6 +32893,7 @@ export const afterpayRefund = T['io.flow.internal.v0.models.afterpay_refund'];
|
|
|
32723
32893
|
export const afterpayRefundDeleted = T['io.flow.internal.v0.models.afterpay_refund_deleted'];
|
|
32724
32894
|
export const afterpayRefundUpserted = T['io.flow.internal.v0.models.afterpay_refund_upserted'];
|
|
32725
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'];
|
|
32726
32897
|
export const aiOutput = T['io.flow.internal.v0.unions.ai_output'];
|
|
32727
32898
|
export const aiReviewBatchSubmitted = T['io.flow.internal.v0.models.ai_review_batch_submitted'];
|
|
32728
32899
|
export const aiReviewConsumer = T['io.flow.internal.v0.enums.ai_review_consumer'];
|
|
@@ -32777,8 +32948,11 @@ export const b2BTaxTransactionUpserted = T['io.flow.internal.v0.models.b2b_tax_t
|
|
|
32777
32948
|
export const b2BTransactionTaxLine = T['io.flow.internal.v0.models.b2b_transaction_tax_line'];
|
|
32778
32949
|
export const b2BTransactionTaxableItem = T['io.flow.internal.v0.models.b2b_transaction_taxable_item'];
|
|
32779
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'];
|
|
32780
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'];
|
|
32781
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'];
|
|
32782
32956
|
export const bankPayment = T['io.flow.internal.v0.models.bank_payment'];
|
|
32783
32957
|
export const bankPaymentDeletedV2 = T['io.flow.internal.v0.models.bank_payment_deleted_v2'];
|
|
32784
32958
|
export const bankPaymentDetail = T['io.flow.internal.v0.models.bank_payment_detail'];
|
|
@@ -32787,7 +32961,10 @@ export const bankPaymentForm = T['io.flow.internal.v0.models.bank_payment_form']
|
|
|
32787
32961
|
export const bankPaymentOrder = T['io.flow.internal.v0.models.bank_payment_order'];
|
|
32788
32962
|
export const bankPaymentOrderDeleted = T['io.flow.internal.v0.models.bank_payment_order_deleted'];
|
|
32789
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'];
|
|
32790
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'];
|
|
32791
32968
|
export const bankPaymentReference = T['io.flow.internal.v0.models.bank_payment_reference'];
|
|
32792
32969
|
export const bankPaymentStatusCode = T['io.flow.internal.v0.enums.bank_payment_status_code'];
|
|
32793
32970
|
export const bankPaymentStatusForm = T['io.flow.internal.v0.models.bank_payment_status_form'];
|
|
@@ -32795,6 +32972,7 @@ export const bankPaymentStatusImport = T['io.flow.internal.v0.models.bank_paymen
|
|
|
32795
32972
|
export const bankPaymentStatusImportForm = T['io.flow.internal.v0.models.bank_payment_status_import_form'];
|
|
32796
32973
|
export const bankPaymentStatusImportResult = T['io.flow.internal.v0.models.bank_payment_status_import_result'];
|
|
32797
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'];
|
|
32798
32976
|
export const bankPaymentStatusSentImportForm = T['io.flow.internal.v0.models.bank_payment_status_sent_import_form'];
|
|
32799
32977
|
export const bankPaymentStatusSingleForm = T['io.flow.internal.v0.models.bank_payment_status_single_form'];
|
|
32800
32978
|
export const bankPaymentUpserted = T['io.flow.internal.v0.models.bank_payment_upserted'];
|
|
@@ -32882,6 +33060,7 @@ export const carrierCredentials = T['io.flow.internal.v0.unions.carrier_credenti
|
|
|
32882
33060
|
export const carrierDocument = T['io.flow.internal.v0.models.carrier_document'];
|
|
32883
33061
|
export const carrierDocumentContent = T['io.flow.internal.v0.unions.carrier_document_content'];
|
|
32884
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'];
|
|
32885
33064
|
export const carrierFile = T['io.flow.internal.v0.models.carrier_file'];
|
|
32886
33065
|
export const carrierFileForm = T['io.flow.internal.v0.models.carrier_file_form'];
|
|
32887
33066
|
export const carrierFileResult = T['io.flow.internal.v0.models.carrier_file_result'];
|
|
@@ -33102,12 +33281,10 @@ export const cryptoAuthentication = T['io.flow.internal.v0.models.crypto_authent
|
|
|
33102
33281
|
export const cryptoAuthenticationForm = T['io.flow.internal.v0.models.crypto_authentication_form'];
|
|
33103
33282
|
export const csvTransaction = T['io.flow.internal.v0.models.csv_transaction'];
|
|
33104
33283
|
export const currencyInternalRate = T['io.flow.internal.v0.models.currency_internal_rate'];
|
|
33105
|
-
export const customsDescriptionImport = T['io.flow.internal.v0.models.customs_description_import'];
|
|
33106
33284
|
export const customsDescriptionStatistics = T['io.flow.internal.v0.models.customs_description_statistics'];
|
|
33107
33285
|
export const customsDescriptionSuggestion = T['io.flow.internal.v0.models.customs_description_suggestion'];
|
|
33108
33286
|
export const customsDescriptionTariffCodeDuty = T['io.flow.internal.v0.models.customs_description_tariff_code_duty'];
|
|
33109
33287
|
export const customsDescriptionTariffCodeDutyForm = T['io.flow.internal.v0.models.customs_description_tariff_code_duty_form'];
|
|
33110
|
-
export const customsDescriptionTariffsImport = T['io.flow.internal.v0.models.customs_description_tariffs_import'];
|
|
33111
33288
|
export const customsDetails = T['io.flow.internal.v0.models.customs_details'];
|
|
33112
33289
|
export const customsDetailsForm = T['io.flow.internal.v0.models.customs_details_form'];
|
|
33113
33290
|
export const customsProductAttributeLabel = T['io.flow.internal.v0.models.customs_product_attribute_label'];
|
|
@@ -33442,6 +33619,10 @@ export const guaranteedShippingCalibratedOutputUpserted = T['io.flow.internal.v0
|
|
|
33442
33619
|
export const guaranteedShippingCalibration = T['io.flow.internal.v0.models.guaranteed_shipping_calibration'];
|
|
33443
33620
|
export const guaranteedShippingCalibrationForm = T['io.flow.internal.v0.models.guaranteed_shipping_calibration_form'];
|
|
33444
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'];
|
|
33445
33626
|
export const guaranteedShippingPublishedOutput = T['io.flow.internal.v0.models.guaranteed_shipping_published_output'];
|
|
33446
33627
|
export const guaranteedShippingPublishedOutputDeleted = T['io.flow.internal.v0.models.guaranteed_shipping_published_output_deleted'];
|
|
33447
33628
|
export const guaranteedShippingPublishedOutputUpserted = T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'];
|
|
@@ -33460,7 +33641,6 @@ export const harmonizationDecisionSource = T['io.flow.internal.v0.enums.harmoniz
|
|
|
33460
33641
|
export const harmonizationItemClassification = T['io.flow.internal.v0.models.harmonization_item_classification'];
|
|
33461
33642
|
export const harmonizationItemSummary = T['io.flow.internal.v0.models.harmonization_item_summary'];
|
|
33462
33643
|
export const harmonizationMlModelSummary = T['io.flow.internal.v0.models.harmonization_ml_model_summary'];
|
|
33463
|
-
export const harmonizationPhraseSuggestionRequestImport = T['io.flow.internal.v0.models.harmonization_phrase_suggestion_request_import'];
|
|
33464
33644
|
export const harmonizationThreshold = T['io.flow.internal.v0.models.harmonization_threshold'];
|
|
33465
33645
|
export const harmonizationThresholdForm = T['io.flow.internal.v0.models.harmonization_threshold_form'];
|
|
33466
33646
|
export const harmonizationUnclassifiedStatistics = T['io.flow.internal.v0.models.harmonization_unclassified_statistics'];
|
|
@@ -33548,8 +33728,10 @@ export const itemSummary = T['io.flow.internal.v0.models.item_summary'];
|
|
|
33548
33728
|
export const itemType = T['io.flow.internal.v0.enums.item_type'];
|
|
33549
33729
|
export const itemValuesForm = T['io.flow.internal.v0.models.item_values_form'];
|
|
33550
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'];
|
|
33551
33732
|
export const johnStrongItemForm = T['io.flow.internal.v0.models.john_strong_item_form'];
|
|
33552
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'];
|
|
33553
33735
|
export const journal = T['io.flow.internal.v0.models.journal'];
|
|
33554
33736
|
export const journalFailure = T['io.flow.internal.v0.models.journal_failure'];
|
|
33555
33737
|
export const journalOperation = T['io.flow.internal.v0.enums.journal_operation'];
|
|
@@ -33925,8 +34107,6 @@ export const pendingBankPayment = T['io.flow.internal.v0.models.pending_bank_pay
|
|
|
33925
34107
|
export const pendingBankPaymentDetail = T['io.flow.internal.v0.models.pending_bank_payment_detail'];
|
|
33926
34108
|
export const pendingOrder = T['io.flow.internal.v0.models.pending_order'];
|
|
33927
34109
|
export const pendingRecordType = T['io.flow.internal.v0.enums.pending_record_type'];
|
|
33928
|
-
export const phraseClassified = T['io.flow.internal.v0.models.phrase_classified'];
|
|
33929
|
-
export const phrasePropagated = T['io.flow.internal.v0.models.phrase_propagated'];
|
|
33930
34110
|
export const platformFee = T['io.flow.internal.v0.unions.platform_fee'];
|
|
33931
34111
|
export const platformFeeChange = T['io.flow.internal.v0.models.platform_fee_change'];
|
|
33932
34112
|
export const platformFeeChangeDeleted = T['io.flow.internal.v0.models.platform_fee_change_deleted'];
|
|
@@ -33937,6 +34117,9 @@ export const platformFeeFlat = T['io.flow.internal.v0.models.platform_fee_flat']
|
|
|
33937
34117
|
export const platformFeePause = T['io.flow.internal.v0.models.platform_fee_pause'];
|
|
33938
34118
|
export const platformFeePercentage = T['io.flow.internal.v0.models.platform_fee_percentage'];
|
|
33939
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'];
|
|
33940
34123
|
export const prediction = T['io.flow.internal.v0.models.prediction'];
|
|
33941
34124
|
export const preferredBillingSchedule = T['io.flow.internal.v0.enums.preferred_billing_schedule'];
|
|
33942
34125
|
export const preonboardingClassificationDecision = T['io.flow.internal.v0.enums.preonboarding_classification_decision'];
|
|
@@ -34144,6 +34327,7 @@ export const reportingUsd = T['io.flow.internal.v0.models.reporting_usd'];
|
|
|
34144
34327
|
export const reportingVatRemittance = T['io.flow.internal.v0.models.reporting_vat_remittance'];
|
|
34145
34328
|
export const reportingVatRemittanceRate = T['io.flow.internal.v0.models.reporting_vat_remittance_rate'];
|
|
34146
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'];
|
|
34147
34331
|
export const requeueRequestForm = T['io.flow.internal.v0.models.requeue_request_form'];
|
|
34148
34332
|
export const rescreenRestrictionsProducts = T['io.flow.internal.v0.models.rescreen_restrictions_products'];
|
|
34149
34333
|
export const responsibleParty = T['io.flow.internal.v0.enums.responsible_party'];
|
|
@@ -34255,10 +34439,12 @@ export const searchProviderExport = T['io.flow.internal.v0.models.search_provide
|
|
|
34255
34439
|
export const searchTrackingSummary = T['io.flow.internal.v0.models.search_tracking_summary'];
|
|
34256
34440
|
export const sellabilityCheckResult = T['io.flow.internal.v0.models.sellability_check_result'];
|
|
34257
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'];
|
|
34258
34443
|
export const sellabilityInternalMatchType = T['io.flow.internal.v0.enums.sellability_internal_match_type'];
|
|
34259
34444
|
export const sellabilityPendingVerification = T['io.flow.internal.v0.models.sellability_pending_verification'];
|
|
34260
34445
|
export const sellabilityPendingVerificationDeleted = T['io.flow.internal.v0.models.sellability_pending_verification_deleted'];
|
|
34261
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'];
|
|
34262
34448
|
export const sellabilityStatus = T['io.flow.internal.v0.enums.sellability_status'];
|
|
34263
34449
|
export const serviceFees = T['io.flow.internal.v0.models.service_fees'];
|
|
34264
34450
|
export const serviceFeesForm = T['io.flow.internal.v0.models.service_fees_form'];
|
|
@@ -34328,6 +34514,7 @@ export const shopifyMarketsOrganizationOrderMetrics = T['io.flow.internal.v0.mod
|
|
|
34328
34514
|
export const shopifyMarketsQueuedRecord = T['io.flow.internal.v0.models.shopify_markets_queued_record'];
|
|
34329
34515
|
export const shopifyMarketsQueuedRecordType = T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'];
|
|
34330
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'];
|
|
34331
34518
|
export const shopifyMarketsShopDeleted = T['io.flow.internal.v0.models.shopify_markets_shop_deleted'];
|
|
34332
34519
|
export const shopifyMarketsShopForm = T['io.flow.internal.v0.models.shopify_markets_shop_form'];
|
|
34333
34520
|
export const shopifyMarketsShopStatisticsDeleted = T['io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted'];
|
|
@@ -34566,6 +34753,7 @@ export const trackingCarrierReturnLabelUpserted = T['io.flow.internal.v0.models.
|
|
|
34566
34753
|
export const trackingDebugForceTransitForm = T['io.flow.internal.v0.models.tracking_debug_force_transit_form'];
|
|
34567
34754
|
export const trackingDebugLabel = T['io.flow.internal.v0.models.tracking_debug_label'];
|
|
34568
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'];
|
|
34569
34757
|
export const trackingDebugLabelLocation = T['io.flow.internal.v0.models.tracking_debug_label_location'];
|
|
34570
34758
|
export const trackingDeleted = T['io.flow.internal.v0.models.tracking_deleted'];
|
|
34571
34759
|
export const trackingEvent = T['io.flow.internal.v0.models.tracking_event'];
|