@flowio/api-internal-prop-types 9.24.100 → 9.24.101
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 +175 -4
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +175 -4
- package/src/api-internal.js +248 -50
package/src/api-internal.js
CHANGED
|
@@ -3094,6 +3094,26 @@ T['io.flow.adyen.v0.enums.event_code'] = PropTypes.oneOf([
|
|
|
3094
3094
|
'ISSUER_RESPONSE_TIMEFRAME_EXPIRED',
|
|
3095
3095
|
]);
|
|
3096
3096
|
|
|
3097
|
+
T['io.flow.adyen.v0.enums.dispute_status'] = PropTypes.oneOf([
|
|
3098
|
+
'Accepted',
|
|
3099
|
+
'Expired',
|
|
3100
|
+
'Lost',
|
|
3101
|
+
'Pending',
|
|
3102
|
+
'Responded',
|
|
3103
|
+
'Undefended',
|
|
3104
|
+
'Unresponded',
|
|
3105
|
+
'Won',
|
|
3106
|
+
]);
|
|
3107
|
+
|
|
3108
|
+
T['io.flow.adyen.v0.models.chargeback_notification_additional_data'] = PropTypes.exact({
|
|
3109
|
+
chargebackReasonCode: PropTypes.string.isRequired,
|
|
3110
|
+
modificationMerchantReferences: PropTypes.string.isRequired,
|
|
3111
|
+
chargebackSchemeCode: PropTypes.string.isRequired,
|
|
3112
|
+
defensePeriodEndsAt: PropTypes.string,
|
|
3113
|
+
disputeStatus: T['io.flow.adyen.v0.enums.dispute_status'],
|
|
3114
|
+
defendable: PropTypes.string,
|
|
3115
|
+
});
|
|
3116
|
+
|
|
3097
3117
|
T['io.flow.adyen.v0.enums.result_code'] = PropTypes.oneOf([
|
|
3098
3118
|
'Authorised',
|
|
3099
3119
|
'Cancelled',
|
|
@@ -4568,6 +4588,7 @@ T['io.flow.external.paypal.v1.models.dispute'] = PropTypes.exact({
|
|
|
4568
4588
|
supporting_info: T['io.flow.external.paypal.v1.models.supporting_info'],
|
|
4569
4589
|
allowed_response_options: T['io.flow.external.paypal.v1.models.allowed_response_options'],
|
|
4570
4590
|
links: PropTypes.arrayOf(T['io.flow.external.paypal.v1.models.link']),
|
|
4591
|
+
previous_status: T['io.flow.external.paypal.v1.enums.dispute_status'],
|
|
4571
4592
|
});
|
|
4572
4593
|
|
|
4573
4594
|
T['io.flow.external.paypal.v1.models.paypal_dispute_event'] = PropTypes.exact({
|
|
@@ -8133,6 +8154,14 @@ T['io.flow.internal.v0.unions.explicit_statement_form'] = PropTypes.oneOfType([
|
|
|
8133
8154
|
T['io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions'],
|
|
8134
8155
|
]);
|
|
8135
8156
|
|
|
8157
|
+
T['io.flow.internal.v0.models.tracking_label_dimensions_deleted'] = PropTypes.exact({
|
|
8158
|
+
discriminator: PropTypes.oneOf(['tracking_label_dimensions_deleted']).isRequired,
|
|
8159
|
+
event_id: PropTypes.string.isRequired,
|
|
8160
|
+
timestamp: PropTypes.string.isRequired,
|
|
8161
|
+
organization: PropTypes.string.isRequired,
|
|
8162
|
+
id: PropTypes.string.isRequired,
|
|
8163
|
+
});
|
|
8164
|
+
|
|
8136
8165
|
T['io.flow.internal.v0.models.tracking_assurance_job_deleted'] = PropTypes.exact({
|
|
8137
8166
|
discriminator: PropTypes.oneOf(['tracking_assurance_job_deleted']).isRequired,
|
|
8138
8167
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8614,6 +8643,14 @@ T['io.flow.internal.v0.models.quote_deleted'] = PropTypes.exact({
|
|
|
8614
8643
|
id: PropTypes.string.isRequired,
|
|
8615
8644
|
});
|
|
8616
8645
|
|
|
8646
|
+
T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'] = PropTypes.exact({
|
|
8647
|
+
discriminator: PropTypes.oneOf(['fulfillment_fallbacks_deleted']).isRequired,
|
|
8648
|
+
event_id: PropTypes.string.isRequired,
|
|
8649
|
+
timestamp: PropTypes.string.isRequired,
|
|
8650
|
+
organization: PropTypes.string.isRequired,
|
|
8651
|
+
id: PropTypes.string.isRequired,
|
|
8652
|
+
});
|
|
8653
|
+
|
|
8617
8654
|
T['io.flow.internal.v0.models.center_defaults_deleted'] = PropTypes.exact({
|
|
8618
8655
|
discriminator: PropTypes.oneOf(['center_defaults_deleted']).isRequired,
|
|
8619
8656
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9136,6 +9173,14 @@ T['io.flow.internal.v0.models.index_assignment_deleted'] = PropTypes.exact({
|
|
|
9136
9173
|
id: PropTypes.string.isRequired,
|
|
9137
9174
|
});
|
|
9138
9175
|
|
|
9176
|
+
T['io.flow.internal.v0.models.adjusted_estimates_deleted'] = PropTypes.exact({
|
|
9177
|
+
discriminator: PropTypes.oneOf(['adjusted_estimates_deleted']).isRequired,
|
|
9178
|
+
event_id: PropTypes.string.isRequired,
|
|
9179
|
+
timestamp: PropTypes.string.isRequired,
|
|
9180
|
+
organization: PropTypes.string.isRequired,
|
|
9181
|
+
id: PropTypes.string.isRequired,
|
|
9182
|
+
});
|
|
9183
|
+
|
|
9139
9184
|
T['io.flow.internal.v0.models.console_mark_unresolvable_form'] = PropTypes.exact({
|
|
9140
9185
|
discriminator: PropTypes.oneOf(['console_mark_unresolvable_form']).isRequired,
|
|
9141
9186
|
order_number: PropTypes.string.isRequired,
|
|
@@ -9291,6 +9336,8 @@ T['io.flow.internal.v0.models.tracking_processing_error_upserted'] = PropTypes.e
|
|
|
9291
9336
|
tracking_processing_error: T['io.flow.internal.v0.models.tracking_processing_error'].isRequired,
|
|
9292
9337
|
});
|
|
9293
9338
|
|
|
9339
|
+
T['io.flow.internal.v0.enums.tracking_label_dimensions_source'] = PropTypes.oneOf(['aftership', 'carrier_api']);
|
|
9340
|
+
|
|
9294
9341
|
T['io.flow.internal.v0.models.tracking_debug_label_location'] = PropTypes.exact({
|
|
9295
9342
|
country: PropTypes.string.isRequired,
|
|
9296
9343
|
});
|
|
@@ -10497,19 +10544,6 @@ T['io.flow.payment.gateway.v0.models.payment_authorization_status'] = PropTypes.
|
|
|
10497
10544
|
reason: T['io.flow.payment.v0.enums.authorization_decline_code'],
|
|
10498
10545
|
});
|
|
10499
10546
|
|
|
10500
|
-
T['io.flow.payment.v0.models.payment_processor'] = PropTypes.exact({
|
|
10501
|
-
discriminator: PropTypes.oneOf(['payment_processor']).isRequired,
|
|
10502
|
-
processor: PropTypes.string.isRequired,
|
|
10503
|
-
operation_identifier: T['io.flow.payment.v0.models.payment_processor_identifier'],
|
|
10504
|
-
account: T['io.flow.payment.v0.models.payment_processor_account'],
|
|
10505
|
-
transaction_details: T['io.flow.payment.v0.unions.payment_processor_transaction_details'],
|
|
10506
|
-
});
|
|
10507
|
-
|
|
10508
|
-
T['io.flow.payment.v0.unions.expandable_payment_processor'] = PropTypes.oneOfType([
|
|
10509
|
-
T['io.flow.payment.v0.models.payment_processor'],
|
|
10510
|
-
T['io.flow.payment.v0.models.payment_processor_reference'],
|
|
10511
|
-
]);
|
|
10512
|
-
|
|
10513
10547
|
T['io.flow.internal.v0.models.report_owner'] = PropTypes.exact({
|
|
10514
10548
|
name: PropTypes.string.isRequired,
|
|
10515
10549
|
});
|
|
@@ -10950,12 +10984,6 @@ T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
|
10950
10984
|
shopify_grc_gid: PropTypes.string,
|
|
10951
10985
|
});
|
|
10952
10986
|
|
|
10953
|
-
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
10954
|
-
id: PropTypes.string,
|
|
10955
|
-
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
10956
|
-
weight_break: PropTypes.number,
|
|
10957
|
-
});
|
|
10958
|
-
|
|
10959
10987
|
T['io.flow.ratecard.v0.models.ratecard_reference'] = PropTypes.exact({
|
|
10960
10988
|
id: PropTypes.string.isRequired,
|
|
10961
10989
|
});
|
|
@@ -11910,6 +11938,20 @@ T['io.flow.internal.v0.models.report_payment'] = PropTypes.exact({
|
|
|
11910
11938
|
created_at: PropTypes.string.isRequired,
|
|
11911
11939
|
});
|
|
11912
11940
|
|
|
11941
|
+
T['io.flow.internal.v0.models.attempt_statistics'] = PropTypes.exact({
|
|
11942
|
+
merchant_count: PropTypes.number.isRequired,
|
|
11943
|
+
amount: PropTypes.number.isRequired,
|
|
11944
|
+
failed_merchant_count: PropTypes.number.isRequired,
|
|
11945
|
+
failed_amount: PropTypes.number.isRequired,
|
|
11946
|
+
success_ratio: PropTypes.number.isRequired,
|
|
11947
|
+
});
|
|
11948
|
+
|
|
11949
|
+
T['io.flow.internal.v0.models.negative_debit_metrics'] = PropTypes.exact({
|
|
11950
|
+
current_attempt: T['io.flow.internal.v0.models.attempt_statistics'].isRequired,
|
|
11951
|
+
second_attempt: T['io.flow.internal.v0.models.attempt_statistics'].isRequired,
|
|
11952
|
+
third_attempt: T['io.flow.internal.v0.models.attempt_statistics'].isRequired,
|
|
11953
|
+
});
|
|
11954
|
+
|
|
11913
11955
|
T['io.flow.internal.v0.enums.miljenko_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
11914
11956
|
T['io.flow.internal.v0.enums.michaelyan_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
11915
11957
|
|
|
@@ -12225,6 +12267,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_refund_line_item'] = PropType
|
|
|
12225
12267
|
location_id: PropTypes.number,
|
|
12226
12268
|
subtotal: PropTypes.number,
|
|
12227
12269
|
total_tax: PropTypes.number,
|
|
12270
|
+
total_tax_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'],
|
|
12228
12271
|
});
|
|
12229
12272
|
|
|
12230
12273
|
T['io.flow.shopify.markets.v0.models.shopify_order_refund'] = PropTypes.exact({
|
|
@@ -12994,6 +13037,7 @@ T['io.flow.tracking.v0.models.label_tracking_summary'] = PropTypes.exact({
|
|
|
12994
13037
|
in_transit: T['io.flow.tracking.v0.models.label_tracking_summary_update'].isRequired,
|
|
12995
13038
|
delivered: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
12996
13039
|
rejected: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
13040
|
+
returned: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
12997
13041
|
});
|
|
12998
13042
|
|
|
12999
13043
|
T['io.flow.internal.v0.models.label_tracking_summary_upserted'] = PropTypes.exact({
|
|
@@ -13044,6 +13088,7 @@ T['io.flow.label.v0.models.shipping_label_document'] = PropTypes.exact({
|
|
|
13044
13088
|
});
|
|
13045
13089
|
|
|
13046
13090
|
T['io.flow.label.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
|
|
13091
|
+
T['io.flow.internal.v0.enums.label_request_result_state'] = PropTypes.oneOf(['success', 'failure']);
|
|
13047
13092
|
T['io.flow.label.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
|
|
13048
13093
|
|
|
13049
13094
|
T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
|
|
@@ -13136,6 +13181,22 @@ T['io.flow.internal.v0.models.order_validation_upserted'] = PropTypes.exact({
|
|
|
13136
13181
|
order_validation: T['io.flow.internal.v0.models.order_validation'].isRequired,
|
|
13137
13182
|
});
|
|
13138
13183
|
|
|
13184
|
+
T['io.flow.internal.v0.models.label_request_result'] = PropTypes.exact({
|
|
13185
|
+
id: PropTypes.string.isRequired,
|
|
13186
|
+
created_at: PropTypes.string.isRequired,
|
|
13187
|
+
state: T['io.flow.internal.v0.enums.label_request_result_state'].isRequired,
|
|
13188
|
+
organization_id: PropTypes.string.isRequired,
|
|
13189
|
+
order_number: PropTypes.string.isRequired,
|
|
13190
|
+
label_request_method: T['io.flow.label.v0.enums.label_request_method'].isRequired,
|
|
13191
|
+
carrier_id: PropTypes.string,
|
|
13192
|
+
carrier_tracking_number: PropTypes.string,
|
|
13193
|
+
url: PropTypes.string,
|
|
13194
|
+
error: PropTypes.string,
|
|
13195
|
+
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'],
|
|
13196
|
+
origin_country: PropTypes.string,
|
|
13197
|
+
destination_country: PropTypes.string,
|
|
13198
|
+
});
|
|
13199
|
+
|
|
13139
13200
|
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
13140
13201
|
id: PropTypes.string.isRequired,
|
|
13141
13202
|
order_number: PropTypes.string.isRequired,
|
|
@@ -15179,6 +15240,19 @@ T['io.flow.internal.v0.models.dispute_import'] = PropTypes.exact({
|
|
|
15179
15240
|
created_at: PropTypes.string.isRequired,
|
|
15180
15241
|
});
|
|
15181
15242
|
|
|
15243
|
+
T['io.flow.payment.v0.models.payment_processor'] = PropTypes.exact({
|
|
15244
|
+
discriminator: PropTypes.oneOf(['payment_processor']).isRequired,
|
|
15245
|
+
processor: PropTypes.string.isRequired,
|
|
15246
|
+
operation_identifier: T['io.flow.payment.v0.models.payment_processor_identifier'],
|
|
15247
|
+
account: T['io.flow.payment.v0.models.payment_processor_account'],
|
|
15248
|
+
transaction_details: T['io.flow.payment.v0.unions.payment_processor_transaction_details'],
|
|
15249
|
+
});
|
|
15250
|
+
|
|
15251
|
+
T['io.flow.payment.v0.unions.expandable_payment_processor'] = PropTypes.oneOfType([
|
|
15252
|
+
T['io.flow.payment.v0.models.payment_processor'],
|
|
15253
|
+
T['io.flow.payment.v0.models.payment_processor_reference'],
|
|
15254
|
+
]);
|
|
15255
|
+
|
|
15182
15256
|
T['io.flow.internal.v0.models.dispute_details_stripe'] = PropTypes.exact({
|
|
15183
15257
|
discriminator: PropTypes.oneOf(['stripe']).isRequired,
|
|
15184
15258
|
payment_intent_id: PropTypes.string,
|
|
@@ -15206,6 +15280,7 @@ T['io.flow.internal.v0.unions.dispute_details'] = PropTypes.oneOfType([
|
|
|
15206
15280
|
T['io.flow.internal.v0.models.dispute_details_stripe'],
|
|
15207
15281
|
]);
|
|
15208
15282
|
|
|
15283
|
+
T['io.flow.internal.v0.enums.dispute_defense_outcome'] = PropTypes.oneOf(['defended', 'undefended', 'undefendable']);
|
|
15209
15284
|
T['io.flow.internal.v0.enums.dispute_billable'] = PropTypes.oneOf(['flow', 'organization']);
|
|
15210
15285
|
T['io.flow.internal.v0.enums.dispute_liability'] = PropTypes.oneOf(['flow', 'organization']);
|
|
15211
15286
|
T['io.flow.internal.v0.enums.dispute_status'] = PropTypes.oneOf(['pending', 'won', 'lost', 'expired']);
|
|
@@ -15216,6 +15291,14 @@ T['io.flow.internal.v0.models.dispute_status_form'] = PropTypes.exact({
|
|
|
15216
15291
|
|
|
15217
15292
|
T['io.flow.internal.v0.enums.dispute_reporting_category'] = PropTypes.oneOf(['charge_issues', 'delivery', 'fraud', 'general', 'product', 'returns']);
|
|
15218
15293
|
T['io.flow.internal.v0.enums.dispute_category'] = PropTypes.oneOf(['friendly_fraud', 'true_fraud', 'processing_error']);
|
|
15294
|
+
|
|
15295
|
+
T['io.flow.internal.v0.models.dispute_override_update_form'] = PropTypes.exact({
|
|
15296
|
+
billable: T['io.flow.internal.v0.enums.dispute_billable'],
|
|
15297
|
+
reporting_category: T['io.flow.internal.v0.enums.dispute_reporting_category'],
|
|
15298
|
+
category: T['io.flow.internal.v0.enums.dispute_category'],
|
|
15299
|
+
status: T['io.flow.internal.v0.enums.dispute_status'],
|
|
15300
|
+
});
|
|
15301
|
+
|
|
15219
15302
|
T['io.flow.internal.v0.enums.dispute_type'] = PropTypes.oneOf(['chargeback']);
|
|
15220
15303
|
T['io.flow.internal.v0.enums.dispute_processor'] = PropTypes.oneOf(['adyen', 'paypal', 'stripe']);
|
|
15221
15304
|
|
|
@@ -15441,6 +15524,8 @@ T['io.flow.billing.v0.enums.pending_payout_transaction_reason_code'] = PropTypes
|
|
|
15441
15524
|
'waiting_for_next_payout_date',
|
|
15442
15525
|
'waiting_for_tracking_info',
|
|
15443
15526
|
'waiting_for_positive_account_balance',
|
|
15527
|
+
'unfulfilled_amount_greater_than_negative_balance',
|
|
15528
|
+
'account_payment_hold',
|
|
15444
15529
|
]);
|
|
15445
15530
|
|
|
15446
15531
|
T['io.flow.internal.v0.models.debug_order_transaction_form_order_identifier'] = PropTypes.exact({
|
|
@@ -16247,6 +16332,22 @@ T['io.flow.internal.v0.enums.item_classification_status'] = PropTypes.oneOf([
|
|
|
16247
16332
|
T['io.flow.internal.v0.enums.clothing_age_classification'] = PropTypes.oneOf(['None', 'AgeKidsGeneral', 'Age0_10', 'Age10_13', 'Age13_14']);
|
|
16248
16333
|
T['io.flow.internal.v0.enums.classification_type'] = PropTypes.oneOf(['None', 'Manual', 'ML']);
|
|
16249
16334
|
T['io.flow.internal.v0.enums.classification_decision'] = PropTypes.oneOf(['Accept', 'Reject']);
|
|
16335
|
+
|
|
16336
|
+
T['io.flow.internal.v0.models.attribute_label'] = PropTypes.exact({
|
|
16337
|
+
value: PropTypes.string.isRequired,
|
|
16338
|
+
unverified: PropTypes.bool.isRequired,
|
|
16339
|
+
});
|
|
16340
|
+
|
|
16341
|
+
T['io.flow.internal.v0.models.classification_product_id'] = PropTypes.exact({
|
|
16342
|
+
organization_id: PropTypes.string.isRequired,
|
|
16343
|
+
product_id: PropTypes.string.isRequired,
|
|
16344
|
+
});
|
|
16345
|
+
|
|
16346
|
+
T['io.flow.internal.v0.models.product_classification_result'] = PropTypes.exact({
|
|
16347
|
+
classified_product: T['io.flow.internal.v0.models.classified_product'].isRequired,
|
|
16348
|
+
next_product: T['io.flow.internal.v0.models.classification_product_id'],
|
|
16349
|
+
});
|
|
16350
|
+
|
|
16250
16351
|
T['io.flow.internal.v0.enums.classification_platform'] = PropTypes.oneOf(['GlobalE', 'Flow', 'Borderfree']);
|
|
16251
16352
|
|
|
16252
16353
|
T['io.flow.internal.v0.models.classification_product_result'] = PropTypes.exact({
|
|
@@ -16284,19 +16385,17 @@ T['io.flow.internal.v0.models.classification_product_request_envelope'] = PropTy
|
|
|
16284
16385
|
message: T['io.flow.internal.v0.models.classification_product_request'].isRequired,
|
|
16285
16386
|
});
|
|
16286
16387
|
|
|
16287
|
-
T['io.flow.internal.v0.models.
|
|
16288
|
-
|
|
16289
|
-
|
|
16290
|
-
|
|
16291
|
-
|
|
16292
|
-
|
|
16293
|
-
organization_id: PropTypes.string.isRequired,
|
|
16294
|
-
product_id: PropTypes.string.isRequired,
|
|
16388
|
+
T['io.flow.internal.v0.models.classification_merchant'] = PropTypes.exact({
|
|
16389
|
+
MerchantId: PropTypes.string.isRequired,
|
|
16390
|
+
PlatformId: T['io.flow.internal.v0.enums.classification_platform'].isRequired,
|
|
16391
|
+
Name: PropTypes.string.isRequired,
|
|
16392
|
+
DateLastUpdated: PropTypes.string,
|
|
16393
|
+
Order: PropTypes.number.isRequired,
|
|
16295
16394
|
});
|
|
16296
16395
|
|
|
16297
|
-
T['io.flow.internal.v0.models.
|
|
16298
|
-
|
|
16299
|
-
|
|
16396
|
+
T['io.flow.internal.v0.models.classification_merchant_envelope'] = PropTypes.exact({
|
|
16397
|
+
messageType: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
16398
|
+
message: T['io.flow.internal.v0.models.classification_merchant'].isRequired,
|
|
16300
16399
|
});
|
|
16301
16400
|
|
|
16302
16401
|
T['io.flow.internal.v0.models.customs_description_suggestion'] = PropTypes.exact({
|
|
@@ -16869,6 +16968,12 @@ T['io.flow.experience.v0.enums.order_error_code'] = PropTypes.oneOf([
|
|
|
16869
16968
|
'total_changed',
|
|
16870
16969
|
]);
|
|
16871
16970
|
|
|
16971
|
+
T['io.flow.experience.v0.models.destination_contact_detail'] = PropTypes.exact({
|
|
16972
|
+
title: PropTypes.string.isRequired,
|
|
16973
|
+
country: PropTypes.string.isRequired,
|
|
16974
|
+
import_identifier: PropTypes.string.isRequired,
|
|
16975
|
+
});
|
|
16976
|
+
|
|
16872
16977
|
T['io.flow.payment.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.device_details_browser']]);
|
|
16873
16978
|
|
|
16874
16979
|
T['io.flow.payment.gateway.v0.models.payment_request_form'] = PropTypes.exact({
|
|
@@ -17735,6 +17840,7 @@ T['io.flow.internal.v0.models.export_tracking_label_event'] = PropTypes.exact({
|
|
|
17735
17840
|
description: PropTypes.string,
|
|
17736
17841
|
order_number: PropTypes.string,
|
|
17737
17842
|
raw_carrier_event_code: PropTypes.string,
|
|
17843
|
+
aggregator_status_code: PropTypes.string,
|
|
17738
17844
|
created_at: PropTypes.string,
|
|
17739
17845
|
});
|
|
17740
17846
|
|
|
@@ -18277,6 +18383,24 @@ T['io.flow.catalog.v0.models.item_form_overlay_form'] = PropTypes.exact({
|
|
|
18277
18383
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
18278
18384
|
dimensions: T['io.flow.common.v0.models.dimensions'],
|
|
18279
18385
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
|
|
18386
|
+
deleted_at: PropTypes.string,
|
|
18387
|
+
});
|
|
18388
|
+
|
|
18389
|
+
T['io.flow.internal.v0.models.tracking_label_dimensions'] = PropTypes.exact({
|
|
18390
|
+
id: PropTypes.string.isRequired,
|
|
18391
|
+
organization_id: PropTypes.string.isRequired,
|
|
18392
|
+
tracking_label_id: PropTypes.string.isRequired,
|
|
18393
|
+
source: T['io.flow.internal.v0.enums.tracking_label_dimensions_source'].isRequired,
|
|
18394
|
+
created_at: PropTypes.string.isRequired,
|
|
18395
|
+
dimensions: T['io.flow.common.v0.models.dimensions'].isRequired,
|
|
18396
|
+
});
|
|
18397
|
+
|
|
18398
|
+
T['io.flow.internal.v0.models.tracking_label_dimensions_upserted'] = PropTypes.exact({
|
|
18399
|
+
discriminator: PropTypes.oneOf(['tracking_label_dimensions_upserted']).isRequired,
|
|
18400
|
+
event_id: PropTypes.string.isRequired,
|
|
18401
|
+
timestamp: PropTypes.string.isRequired,
|
|
18402
|
+
organization: PropTypes.string.isRequired,
|
|
18403
|
+
tracking_label_dimensions: T['io.flow.internal.v0.models.tracking_label_dimensions'].isRequired,
|
|
18280
18404
|
});
|
|
18281
18405
|
|
|
18282
18406
|
T['io.flow.catalog.v0.models.item_form'] = PropTypes.exact({
|
|
@@ -18290,6 +18414,7 @@ T['io.flow.catalog.v0.models.item_form'] = PropTypes.exact({
|
|
|
18290
18414
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
18291
18415
|
dimensions: T['io.flow.common.v0.models.dimensions'],
|
|
18292
18416
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
|
|
18417
|
+
deleted_at: PropTypes.string,
|
|
18293
18418
|
});
|
|
18294
18419
|
|
|
18295
18420
|
T['io.flow.internal.v0.models.internal_item_form'] = PropTypes.exact({
|
|
@@ -18596,12 +18721,6 @@ T['io.flow.trueup.v0.models.label_base'] = PropTypes.exact({
|
|
|
18596
18721
|
weight: PropTypes.number.isRequired,
|
|
18597
18722
|
});
|
|
18598
18723
|
|
|
18599
|
-
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
18600
|
-
units: T['io.flow.trueup.v0.models.label_units'].isRequired,
|
|
18601
|
-
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
18602
|
-
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']).isRequired,
|
|
18603
|
-
});
|
|
18604
|
-
|
|
18605
18724
|
T['io.flow.internal.v0.models.carrier_charge_units'] = PropTypes.exact({
|
|
18606
18725
|
currency: PropTypes.string.isRequired,
|
|
18607
18726
|
weight: T['io.flow.units.v0.enums.unit_of_weight'],
|
|
@@ -20027,6 +20146,21 @@ T['io.flow.internal.v0.models.shopify_payment_summary'] = PropTypes.exact({
|
|
|
20027
20146
|
contact: T['io.flow.common.v0.models.contact'],
|
|
20028
20147
|
});
|
|
20029
20148
|
|
|
20149
|
+
T['io.flow.internal.v0.models.fulfillment_fallbacks'] = PropTypes.exact({
|
|
20150
|
+
id: PropTypes.string.isRequired,
|
|
20151
|
+
packaging: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.packaging']).isRequired,
|
|
20152
|
+
contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
20153
|
+
location: T['io.flow.common.v0.models.address'],
|
|
20154
|
+
});
|
|
20155
|
+
|
|
20156
|
+
T['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'] = PropTypes.exact({
|
|
20157
|
+
discriminator: PropTypes.oneOf(['fulfillment_fallbacks_upserted']).isRequired,
|
|
20158
|
+
event_id: PropTypes.string.isRequired,
|
|
20159
|
+
timestamp: PropTypes.string.isRequired,
|
|
20160
|
+
organization: PropTypes.string.isRequired,
|
|
20161
|
+
fulfillment_fallbacks: T['io.flow.internal.v0.models.fulfillment_fallbacks'].isRequired,
|
|
20162
|
+
});
|
|
20163
|
+
|
|
20030
20164
|
T['io.flow.experience.v0.models.order_address'] = PropTypes.exact({
|
|
20031
20165
|
text: PropTypes.string,
|
|
20032
20166
|
streets: PropTypes.arrayOf(PropTypes.string),
|
|
@@ -21724,6 +21858,18 @@ T['io.flow.billing.v0.models.transaction'] = PropTypes.exact({
|
|
|
21724
21858
|
updated_at: PropTypes.string.isRequired,
|
|
21725
21859
|
});
|
|
21726
21860
|
|
|
21861
|
+
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
21862
|
+
units: T['io.flow.trueup.v0.models.label_units'].isRequired,
|
|
21863
|
+
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
21864
|
+
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']).isRequired,
|
|
21865
|
+
});
|
|
21866
|
+
|
|
21867
|
+
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
21868
|
+
id: PropTypes.string,
|
|
21869
|
+
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
21870
|
+
weight_break: PropTypes.number,
|
|
21871
|
+
});
|
|
21872
|
+
|
|
21727
21873
|
T['io.flow.internal.v0.enums.address_configuration_setting_province_code'] = PropTypes.oneOf(['iso_3166_2', 'name']);
|
|
21728
21874
|
|
|
21729
21875
|
T['io.flow.internal.v0.models.address_configuration_setting_form'] = PropTypes.exact({
|
|
@@ -22362,12 +22508,6 @@ T['io.flow.common.v0.models.discounts_form'] = PropTypes.exact({
|
|
|
22362
22508
|
discounts: PropTypes.arrayOf(T['io.flow.common.v0.models.discount_form']).isRequired,
|
|
22363
22509
|
});
|
|
22364
22510
|
|
|
22365
|
-
T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
22366
|
-
lane: T['io.flow.label.v0.models.shipping_label_lane_summary'].isRequired,
|
|
22367
|
-
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
22368
|
-
itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
22369
|
-
});
|
|
22370
|
-
|
|
22371
22511
|
T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
22372
22512
|
number: PropTypes.string.isRequired,
|
|
22373
22513
|
quantity: PropTypes.number.isRequired,
|
|
@@ -22933,7 +23073,7 @@ T['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form'] = PropTypes.
|
|
|
22933
23073
|
T['io.flow.internal.v0.models.dispute'] = PropTypes.exact({
|
|
22934
23074
|
id: PropTypes.string.isRequired,
|
|
22935
23075
|
organization_id: PropTypes.string.isRequired,
|
|
22936
|
-
order: T['io.flow.internal.v0.models.dispute_order_reference']
|
|
23076
|
+
order: T['io.flow.internal.v0.models.dispute_order_reference'],
|
|
22937
23077
|
authorization: T['io.flow.internal.v0.models.dispute_authorization_reference'].isRequired,
|
|
22938
23078
|
processor: T['io.flow.internal.v0.enums.dispute_processor'].isRequired,
|
|
22939
23079
|
key: PropTypes.string.isRequired,
|
|
@@ -22946,6 +23086,7 @@ T['io.flow.internal.v0.models.dispute'] = PropTypes.exact({
|
|
|
22946
23086
|
status: T['io.flow.internal.v0.enums.dispute_status'].isRequired,
|
|
22947
23087
|
liability: T['io.flow.internal.v0.enums.dispute_liability'].isRequired,
|
|
22948
23088
|
billable: T['io.flow.internal.v0.enums.dispute_billable'].isRequired,
|
|
23089
|
+
defense_outcome: T['io.flow.internal.v0.enums.dispute_defense_outcome'],
|
|
22949
23090
|
details: T['io.flow.internal.v0.unions.dispute_details'].isRequired,
|
|
22950
23091
|
issued_at: PropTypes.string.isRequired,
|
|
22951
23092
|
expires_at: PropTypes.string,
|
|
@@ -22960,6 +23101,11 @@ T['io.flow.internal.v0.models.dispute_upserted'] = PropTypes.exact({
|
|
|
22960
23101
|
dispute: T['io.flow.internal.v0.models.dispute'].isRequired,
|
|
22961
23102
|
});
|
|
22962
23103
|
|
|
23104
|
+
T['io.flow.internal.v0.models.dispute_detail'] = PropTypes.exact({
|
|
23105
|
+
authorization: T['io.flow.internal.v0.models.search_authorization'].isRequired,
|
|
23106
|
+
dispute: T['io.flow.internal.v0.models.dispute'].isRequired,
|
|
23107
|
+
});
|
|
23108
|
+
|
|
22963
23109
|
T['io.flow.common.v0.models.money_with_base'] = PropTypes.exact({
|
|
22964
23110
|
currency: PropTypes.string.isRequired,
|
|
22965
23111
|
amount: PropTypes.number.isRequired,
|
|
@@ -23253,6 +23399,27 @@ T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
|
|
|
23253
23399
|
details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
|
|
23254
23400
|
});
|
|
23255
23401
|
|
|
23402
|
+
T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
23403
|
+
lane: T['io.flow.label.v0.models.shipping_label_lane_summary'].isRequired,
|
|
23404
|
+
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
23405
|
+
itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
23406
|
+
});
|
|
23407
|
+
|
|
23408
|
+
T['io.flow.internal.v0.models.adjusted_estimates'] = PropTypes.exact({
|
|
23409
|
+
id: PropTypes.string.isRequired,
|
|
23410
|
+
organization_id: PropTypes.string.isRequired,
|
|
23411
|
+
label_id: PropTypes.string.isRequired,
|
|
23412
|
+
estimates: PropTypes.arrayOf(T['io.flow.label.v0.models.shipping_label_hop_summary']).isRequired,
|
|
23413
|
+
});
|
|
23414
|
+
|
|
23415
|
+
T['io.flow.internal.v0.models.adjusted_estimates_upserted'] = PropTypes.exact({
|
|
23416
|
+
discriminator: PropTypes.oneOf(['adjusted_estimates_upserted']).isRequired,
|
|
23417
|
+
event_id: PropTypes.string.isRequired,
|
|
23418
|
+
timestamp: PropTypes.string.isRequired,
|
|
23419
|
+
organization: PropTypes.string.isRequired,
|
|
23420
|
+
adjusted_estimates: T['io.flow.internal.v0.models.adjusted_estimates'].isRequired,
|
|
23421
|
+
});
|
|
23422
|
+
|
|
23256
23423
|
T['io.flow.internal.v0.models.additional_import_tax'] = PropTypes.exact({
|
|
23257
23424
|
name: PropTypes.string,
|
|
23258
23425
|
additional_import_tax_value: T['io.flow.common.v0.models.money'],
|
|
@@ -23832,6 +23999,7 @@ T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
|
|
|
23832
23999
|
rex_number: PropTypes.string,
|
|
23833
24000
|
wee_number: PropTypes.string,
|
|
23834
24001
|
business_gst_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24002
|
+
destination_gst_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
23835
24003
|
vat_name: PropTypes.string.isRequired,
|
|
23836
24004
|
shipping_price: PropTypes.string.isRequired,
|
|
23837
24005
|
shipment_recipient: PropTypes.string,
|
|
@@ -24162,6 +24330,7 @@ T['io.flow.catalog.v0.models.item_form_overlay'] = PropTypes.exact({
|
|
|
24162
24330
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24163
24331
|
dimensions: T['io.flow.common.v0.models.dimensions'],
|
|
24164
24332
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
|
|
24333
|
+
deleted_at: PropTypes.string,
|
|
24165
24334
|
});
|
|
24166
24335
|
|
|
24167
24336
|
T['io.flow.price.v0.models.price_book_item'] = PropTypes.exact({
|
|
@@ -25451,6 +25620,7 @@ T['io.flow.catalog.v0.models.item'] = PropTypes.exact({
|
|
|
25451
25620
|
local: T['io.flow.catalog.v0.models.local'],
|
|
25452
25621
|
created_at: PropTypes.string,
|
|
25453
25622
|
updated_at: PropTypes.string,
|
|
25623
|
+
deleted_at: PropTypes.string,
|
|
25454
25624
|
});
|
|
25455
25625
|
|
|
25456
25626
|
T['io.flow.catalog.v0.models.subcatalog_item'] = PropTypes.exact({
|
|
@@ -25566,6 +25736,7 @@ T['io.flow.experience.v0.models.order'] = PropTypes.exact({
|
|
|
25566
25736
|
tax_registration: T['io.flow.harmonization.v0.models.tax_registration'],
|
|
25567
25737
|
geo: T['io.flow.experience.v0.models.order_geo'],
|
|
25568
25738
|
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
25739
|
+
destination_contact_details: PropTypes.arrayOf(T['io.flow.experience.v0.models.destination_contact_detail']),
|
|
25569
25740
|
});
|
|
25570
25741
|
|
|
25571
25742
|
T['io.flow.shopify.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
|
|
@@ -27024,6 +27195,8 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
|
|
|
27024
27195
|
});
|
|
27025
27196
|
|
|
27026
27197
|
T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
27198
|
+
T['io.flow.internal.v0.models.adjusted_estimates_upserted'],
|
|
27199
|
+
T['io.flow.internal.v0.models.adjusted_estimates_deleted'],
|
|
27027
27200
|
T['io.flow.internal.v0.models.adyen_authorization_deleted'],
|
|
27028
27201
|
T['io.flow.internal.v0.models.adyen_authorization_upserted'],
|
|
27029
27202
|
T['io.flow.internal.v0.models.adyen_cancel_deleted'],
|
|
@@ -27197,6 +27370,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27197
27370
|
T['io.flow.internal.v0.models.ftp_file_to_process_uploaded'],
|
|
27198
27371
|
T['io.flow.internal.v0.models.center_defaults_upserted'],
|
|
27199
27372
|
T['io.flow.internal.v0.models.center_defaults_deleted'],
|
|
27373
|
+
T['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'],
|
|
27374
|
+
T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'],
|
|
27200
27375
|
T['io.flow.internal.v0.models.pregenerated_request_event'],
|
|
27201
27376
|
T['io.flow.internal.v0.models.quote_upserted'],
|
|
27202
27377
|
T['io.flow.internal.v0.models.quote_deleted'],
|
|
@@ -27394,6 +27569,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27394
27569
|
T['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'],
|
|
27395
27570
|
T['io.flow.internal.v0.models.tracking_assurance_job_upserted'],
|
|
27396
27571
|
T['io.flow.internal.v0.models.tracking_assurance_job_deleted'],
|
|
27572
|
+
T['io.flow.internal.v0.models.tracking_label_dimensions_upserted'],
|
|
27573
|
+
T['io.flow.internal.v0.models.tracking_label_dimensions_deleted'],
|
|
27397
27574
|
T['io.flow.internal.v0.models.tracking_request_upserted'],
|
|
27398
27575
|
T['io.flow.internal.v0.models.tracking_response_upserted'],
|
|
27399
27576
|
T['io.flow.internal.v0.models.user_upserted_v2'],
|
|
@@ -27430,6 +27607,7 @@ T['io.flow.internal.v0.models.order_detail'] = PropTypes.exact({
|
|
|
27430
27607
|
created_at: PropTypes.string.isRequired,
|
|
27431
27608
|
updated_at: PropTypes.string.isRequired,
|
|
27432
27609
|
shopify_order_id: PropTypes.string,
|
|
27610
|
+
disputes: PropTypes.arrayOf(T['io.flow.internal.v0.models.dispute_detail']).isRequired,
|
|
27433
27611
|
});
|
|
27434
27612
|
|
|
27435
27613
|
T['io.flow.internal.v0.models.cli_log_entry'] = PropTypes.exact({
|
|
@@ -27562,6 +27740,8 @@ T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_c
|
|
|
27562
27740
|
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty']);
|
|
27563
27741
|
|
|
27564
27742
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
27743
|
+
'adjusted_estimates_upserted',
|
|
27744
|
+
'adjusted_estimates_deleted',
|
|
27565
27745
|
'adyen_authorization_deleted',
|
|
27566
27746
|
'adyen_authorization_upserted',
|
|
27567
27747
|
'adyen_cancel_deleted',
|
|
@@ -27735,6 +27915,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27735
27915
|
'ftp_file_to_process_uploaded',
|
|
27736
27916
|
'center_defaults_upserted',
|
|
27737
27917
|
'center_defaults_deleted',
|
|
27918
|
+
'fulfillment_fallbacks_upserted',
|
|
27919
|
+
'fulfillment_fallbacks_deleted',
|
|
27738
27920
|
'pregenerated_request_event',
|
|
27739
27921
|
'quote_upserted',
|
|
27740
27922
|
'quote_deleted',
|
|
@@ -27932,6 +28114,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27932
28114
|
'tracking_assurance_analysis_deleted',
|
|
27933
28115
|
'tracking_assurance_job_upserted',
|
|
27934
28116
|
'tracking_assurance_job_deleted',
|
|
28117
|
+
'tracking_label_dimensions_upserted',
|
|
28118
|
+
'tracking_label_dimensions_deleted',
|
|
27935
28119
|
'tracking_request_upserted',
|
|
27936
28120
|
'tracking_response_upserted',
|
|
27937
28121
|
'user_upserted_v2',
|
|
@@ -27955,6 +28139,7 @@ T['io.flow.internal.v0.enums.graphql_service_types'] = PropTypes.oneOf([
|
|
|
27955
28139
|
|
|
27956
28140
|
T['io.flow.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
|
|
27957
28141
|
T['io.flow.internal.v0.enums.label_billing_strategy'] = PropTypes.oneOf(['quote', 'carrier']);
|
|
28142
|
+
T['io.flow.internal.v0.enums.label_request_result_organization_type'] = PropTypes.oneOf(['all', 'legacy_production', 'managed_markets_production', 'sandbox']);
|
|
27958
28143
|
T['io.flow.internal.v0.enums.label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']);
|
|
27959
28144
|
T['io.flow.internal.v0.enums.marketing_gateway_feed_download_format'] = PropTypes.oneOf(['tsv', 'csv', 'txt']);
|
|
27960
28145
|
T['io.flow.internal.v0.enums.marketing_gateway_product_status'] = PropTypes.oneOf(['approved', 'not_approved', 'pending', 'not_found', 'excluded']);
|
|
@@ -29542,13 +29727,6 @@ T['io.flow.adyen.v0.models.challenge_shopper_additional_data'] = PropTypes.exact
|
|
|
29542
29727
|
'threeds2.threeDS2ResponseData.messageVersion': PropTypes.string.isRequired,
|
|
29543
29728
|
});
|
|
29544
29729
|
|
|
29545
|
-
T['io.flow.adyen.v0.models.chargeback_notification_additional_data'] = PropTypes.exact({
|
|
29546
|
-
chargebackReasonCode: PropTypes.string.isRequired,
|
|
29547
|
-
modificationMerchantReferences: PropTypes.string.isRequired,
|
|
29548
|
-
chargebackSchemeCode: PropTypes.string.isRequired,
|
|
29549
|
-
defensePeriodEndsAt: PropTypes.string,
|
|
29550
|
-
});
|
|
29551
|
-
|
|
29552
29730
|
T['io.flow.adyen.v0.models.error'] = PropTypes.exact({
|
|
29553
29731
|
status: PropTypes.number.isRequired,
|
|
29554
29732
|
errorCode: PropTypes.string.isRequired,
|
|
@@ -30296,6 +30474,9 @@ export const addressConfigurationProvinceSetting = T['io.flow.internal.v0.models
|
|
|
30296
30474
|
export const addressConfigurationSetting = T['io.flow.internal.v0.models.address_configuration_setting'];
|
|
30297
30475
|
export const addressConfigurationSettingForm = T['io.flow.internal.v0.models.address_configuration_setting_form'];
|
|
30298
30476
|
export const addressConfigurationSettingProvinceCode = T['io.flow.internal.v0.enums.address_configuration_setting_province_code'];
|
|
30477
|
+
export const adjustedEstimates = T['io.flow.internal.v0.models.adjusted_estimates'];
|
|
30478
|
+
export const adjustedEstimatesDeleted = T['io.flow.internal.v0.models.adjusted_estimates_deleted'];
|
|
30479
|
+
export const adjustedEstimatesUpserted = T['io.flow.internal.v0.models.adjusted_estimates_upserted'];
|
|
30299
30480
|
export const adjustmentAmount = T['io.flow.internal.v0.unions.adjustment_amount'];
|
|
30300
30481
|
export const adjustmentAmountFixed = T['io.flow.internal.v0.models.adjustment_amount_fixed'];
|
|
30301
30482
|
export const adjustmentAmountPercentage = T['io.flow.internal.v0.models.adjustment_amount_percentage'];
|
|
@@ -30363,6 +30544,7 @@ export const apiCallReferenceId = T['io.flow.internal.v0.enums.api_call_referenc
|
|
|
30363
30544
|
export const apmContent = T['io.flow.internal.v0.models.apm_content'];
|
|
30364
30545
|
export const applePayAuthorizationPayload = T['io.flow.internal.v0.models.apple_pay_authorization_payload'];
|
|
30365
30546
|
export const applyAtValueForm = T['io.flow.internal.v0.models.apply_at_value_form'];
|
|
30547
|
+
export const attemptStatistics = T['io.flow.internal.v0.models.attempt_statistics'];
|
|
30366
30548
|
export const attributeLabel = T['io.flow.internal.v0.models.attribute_label'];
|
|
30367
30549
|
export const authenticationForm = T['io.flow.internal.v0.models.authentication_form'];
|
|
30368
30550
|
export const authorizationBundle = T['io.flow.internal.v0.models.authorization_bundle'];
|
|
@@ -30628,6 +30810,8 @@ export const classificationFormWrapper = T['io.flow.internal.v0.models.classific
|
|
|
30628
30810
|
export const classificationItem = T['io.flow.internal.v0.models.classification_item'];
|
|
30629
30811
|
export const classificationJudgementForm = T['io.flow.internal.v0.unions.classification_judgement_form'];
|
|
30630
30812
|
export const classificationLabelAttribute = T['io.flow.internal.v0.unions.classification_label_attribute'];
|
|
30813
|
+
export const classificationMerchant = T['io.flow.internal.v0.models.classification_merchant'];
|
|
30814
|
+
export const classificationMerchantEnvelope = T['io.flow.internal.v0.models.classification_merchant_envelope'];
|
|
30631
30815
|
export const classificationPlatform = T['io.flow.internal.v0.enums.classification_platform'];
|
|
30632
30816
|
export const classificationProduct = T['io.flow.internal.v0.models.classification_product'];
|
|
30633
30817
|
export const classificationProductHarmonization = T['io.flow.internal.v0.models.classification_product_harmonization'];
|
|
@@ -30765,7 +30949,9 @@ export const dispute = T['io.flow.internal.v0.models.dispute'];
|
|
|
30765
30949
|
export const disputeAuthorizationReference = T['io.flow.internal.v0.models.dispute_authorization_reference'];
|
|
30766
30950
|
export const disputeBillable = T['io.flow.internal.v0.enums.dispute_billable'];
|
|
30767
30951
|
export const disputeCategory = T['io.flow.internal.v0.enums.dispute_category'];
|
|
30952
|
+
export const disputeDefenseOutcome = T['io.flow.internal.v0.enums.dispute_defense_outcome'];
|
|
30768
30953
|
export const disputeDeleted = T['io.flow.internal.v0.models.dispute_deleted'];
|
|
30954
|
+
export const disputeDetail = T['io.flow.internal.v0.models.dispute_detail'];
|
|
30769
30955
|
export const disputeDetails = T['io.flow.internal.v0.unions.dispute_details'];
|
|
30770
30956
|
export const disputeDetailsAdyen = T['io.flow.internal.v0.models.dispute_details_adyen'];
|
|
30771
30957
|
export const disputeDetailsPaypal = T['io.flow.internal.v0.models.dispute_details_paypal'];
|
|
@@ -30780,6 +30966,7 @@ export const disputeImportType = T['io.flow.internal.v0.enums.dispute_import_typ
|
|
|
30780
30966
|
export const disputeLiability = T['io.flow.internal.v0.enums.dispute_liability'];
|
|
30781
30967
|
export const disputeOrderReference = T['io.flow.internal.v0.models.dispute_order_reference'];
|
|
30782
30968
|
export const disputeOrganizationReference = T['io.flow.internal.v0.models.dispute_organization_reference'];
|
|
30969
|
+
export const disputeOverrideUpdateForm = T['io.flow.internal.v0.models.dispute_override_update_form'];
|
|
30783
30970
|
export const disputeProcessor = T['io.flow.internal.v0.enums.dispute_processor'];
|
|
30784
30971
|
export const disputeReportingCategory = T['io.flow.internal.v0.enums.dispute_reporting_category'];
|
|
30785
30972
|
export const disputeStatus = T['io.flow.internal.v0.enums.dispute_status'];
|
|
@@ -30980,6 +31167,9 @@ export const fulfillmentBusiness = T['io.flow.internal.v0.models.fulfillment_bus
|
|
|
30980
31167
|
export const fulfillmentCancel = T['io.flow.internal.v0.models.fulfillment_cancel'];
|
|
30981
31168
|
export const fulfillmentCarrier = T['io.flow.internal.v0.models.fulfillment_carrier'];
|
|
30982
31169
|
export const fulfillmentDeleted = T['io.flow.internal.v0.models.fulfillment_deleted'];
|
|
31170
|
+
export const fulfillmentFallbacks = T['io.flow.internal.v0.models.fulfillment_fallbacks'];
|
|
31171
|
+
export const fulfillmentFallbacksDeleted = T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'];
|
|
31172
|
+
export const fulfillmentFallbacksUpserted = T['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'];
|
|
30983
31173
|
export const fulfillmentInternalExperienceReference = T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'];
|
|
30984
31174
|
export const fulfillmentOrigin = T['io.flow.internal.v0.models.fulfillment_origin'];
|
|
30985
31175
|
export const fulfillmentProof = T['io.flow.internal.v0.unions.fulfillment_proof'];
|
|
@@ -31165,6 +31355,9 @@ export const labelRequestError = T['io.flow.internal.v0.models.label_request_err
|
|
|
31165
31355
|
export const labelRequestErrorDeleted = T['io.flow.internal.v0.models.label_request_error_deleted'];
|
|
31166
31356
|
export const labelRequestErrorHandlingResponsibility = T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'];
|
|
31167
31357
|
export const labelRequestErrorUpserted = T['io.flow.internal.v0.models.label_request_error_upserted'];
|
|
31358
|
+
export const labelRequestResult = T['io.flow.internal.v0.models.label_request_result'];
|
|
31359
|
+
export const labelRequestResultOrganizationType = T['io.flow.internal.v0.enums.label_request_result_organization_type'];
|
|
31360
|
+
export const labelRequestResultState = T['io.flow.internal.v0.enums.label_request_result_state'];
|
|
31168
31361
|
export const labelSummary = T['io.flow.internal.v0.models.label_summary'];
|
|
31169
31362
|
export const labelSurchargeForm = T['io.flow.internal.v0.models.label_surcharge_form'];
|
|
31170
31363
|
export const labelSurchargeSingleForm = T['io.flow.internal.v0.models.label_surcharge_single_form'];
|
|
@@ -31336,6 +31529,7 @@ export const mixedBagWeight = T['io.flow.internal.v0.enums.mixed_bag_weight'];
|
|
|
31336
31529
|
export const moneyPercentage = T['io.flow.internal.v0.models.money_percentage'];
|
|
31337
31530
|
export const moneyRule = T['io.flow.internal.v0.unions.money_rule'];
|
|
31338
31531
|
export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
|
|
31532
|
+
export const negativeDebitMetrics = T['io.flow.internal.v0.models.negative_debit_metrics'];
|
|
31339
31533
|
export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
|
|
31340
31534
|
export const noCalculatedTaxAmount = T['io.flow.internal.v0.models.no_calculated_tax_amount'];
|
|
31341
31535
|
export const noClassificationForm = T['io.flow.internal.v0.models.no_classification_form'];
|
|
@@ -32107,6 +32301,10 @@ export const trackingDeleted = T['io.flow.internal.v0.models.tracking_deleted'];
|
|
|
32107
32301
|
export const trackingEvent = T['io.flow.internal.v0.models.tracking_event'];
|
|
32108
32302
|
export const trackingIntegrationType = T['io.flow.internal.v0.enums.tracking_integration_type'];
|
|
32109
32303
|
export const trackingLabelDeleted = T['io.flow.internal.v0.models.tracking_label_deleted'];
|
|
32304
|
+
export const trackingLabelDimensions = T['io.flow.internal.v0.models.tracking_label_dimensions'];
|
|
32305
|
+
export const trackingLabelDimensionsDeleted = T['io.flow.internal.v0.models.tracking_label_dimensions_deleted'];
|
|
32306
|
+
export const trackingLabelDimensionsSource = T['io.flow.internal.v0.enums.tracking_label_dimensions_source'];
|
|
32307
|
+
export const trackingLabelDimensionsUpserted = T['io.flow.internal.v0.models.tracking_label_dimensions_upserted'];
|
|
32110
32308
|
export const trackingLabelEventDeletedV2 = T['io.flow.internal.v0.models.tracking_label_event_deleted_v2'];
|
|
32111
32309
|
export const trackingLabelEventUpsertedV2 = T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'];
|
|
32112
32310
|
export const trackingLabelUpserted = T['io.flow.internal.v0.models.tracking_label_upserted'];
|