@flowio/api-internal-prop-types 9.24.103 → 9.24.104
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 +237 -35
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +237 -35
- package/src/api-internal.js +328 -79
package/src/api-internal.js
CHANGED
|
@@ -1143,6 +1143,45 @@ T['io.flow.ratecard.v0.models.ratecard_region_reference'] = PropTypes.exact({
|
|
|
1143
1143
|
id: PropTypes.string.isRequired,
|
|
1144
1144
|
});
|
|
1145
1145
|
|
|
1146
|
+
T['io.flow.inventory.v0.models.generic_reservation_error'] = PropTypes.exact({
|
|
1147
|
+
code: PropTypes.oneOf(['generic_reservation_error']).isRequired,
|
|
1148
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
1149
|
+
});
|
|
1150
|
+
|
|
1151
|
+
T['io.flow.inventory.v0.models.external_api_timeout_reservation_error'] = PropTypes.exact({
|
|
1152
|
+
code: PropTypes.oneOf(['external_api_timeout']).isRequired,
|
|
1153
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
1154
|
+
});
|
|
1155
|
+
|
|
1156
|
+
T['io.flow.inventory.v0.models.no_inventory_reservation_error'] = PropTypes.exact({
|
|
1157
|
+
code: PropTypes.oneOf(['no_inventory']).isRequired,
|
|
1158
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
1159
|
+
items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.no_inventory_reservation_error_item']).isRequired,
|
|
1160
|
+
});
|
|
1161
|
+
|
|
1162
|
+
T['io.flow.inventory.v0.unions.reservation_error'] = PropTypes.oneOfType([
|
|
1163
|
+
T['io.flow.inventory.v0.models.no_inventory_reservation_error'],
|
|
1164
|
+
T['io.flow.inventory.v0.models.external_api_timeout_reservation_error'],
|
|
1165
|
+
T['io.flow.inventory.v0.models.generic_reservation_error'],
|
|
1166
|
+
]);
|
|
1167
|
+
|
|
1168
|
+
T['io.flow.inventory.v0.models.reservation_item'] = PropTypes.exact({
|
|
1169
|
+
item: T['io.flow.inventory.v0.models.reservation_item_reference'].isRequired,
|
|
1170
|
+
quantity: PropTypes.number.isRequired,
|
|
1171
|
+
});
|
|
1172
|
+
|
|
1173
|
+
T['io.flow.inventory.v0.models.reservation_order_reference'] = PropTypes.exact({
|
|
1174
|
+
number: PropTypes.string.isRequired,
|
|
1175
|
+
});
|
|
1176
|
+
|
|
1177
|
+
T['io.flow.inventory.v0.models.reservation'] = PropTypes.exact({
|
|
1178
|
+
id: PropTypes.string.isRequired,
|
|
1179
|
+
key: PropTypes.string.isRequired,
|
|
1180
|
+
order: T['io.flow.inventory.v0.models.reservation_order_reference'],
|
|
1181
|
+
items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.reservation_item']).isRequired,
|
|
1182
|
+
reserved_until: PropTypes.string,
|
|
1183
|
+
});
|
|
1184
|
+
|
|
1146
1185
|
T['io.flow.experience.v0.models.order_number_generator_hexadecimal'] = PropTypes.exact({
|
|
1147
1186
|
discriminator: PropTypes.oneOf(['hexadecimal']).isRequired,
|
|
1148
1187
|
length: PropTypes.number.isRequired,
|
|
@@ -1585,7 +1624,7 @@ T['io.flow.price.v0.models.price_book_form'] = PropTypes.exact({
|
|
|
1585
1624
|
});
|
|
1586
1625
|
|
|
1587
1626
|
T['io.flow.common.v0.enums.exception_type'] = PropTypes.oneOf(['open', 'closed']);
|
|
1588
|
-
T['io.flow.common.v0.enums.entity_identifier_type'] = PropTypes.oneOf(['ioss', 'voec']);
|
|
1627
|
+
T['io.flow.common.v0.enums.entity_identifier_type'] = PropTypes.oneOf(['ioss', 'voec', 'zaz']);
|
|
1589
1628
|
|
|
1590
1629
|
T['io.flow.common.v0.models.discount_offer_percent'] = PropTypes.exact({
|
|
1591
1630
|
discriminator: PropTypes.oneOf(['discount_offer_percent']).isRequired,
|
|
@@ -3010,6 +3049,8 @@ T['io.flow.adyen.v0.unions.payment_method_data'] = PropTypes.oneOfType(
|
|
|
3010
3049
|
[T['io.flow.adyen.v0.models.scheme'], T['io.flow.adyen.v0.models.applepay']],
|
|
3011
3050
|
);
|
|
3012
3051
|
|
|
3052
|
+
T['io.flow.adyen.v0.enums.lifecycle_stage'] = PropTypes.oneOf(['INQUIRY', 'CHARGEBACK']);
|
|
3053
|
+
|
|
3013
3054
|
T['io.flow.adyen.v0.enums.payment_method'] = PropTypes.oneOf([
|
|
3014
3055
|
'ach',
|
|
3015
3056
|
'alipay',
|
|
@@ -3338,6 +3379,7 @@ T['io.flow.adyen.v0.models.inner_notification_request_item'] = PropTypes.exact({
|
|
|
3338
3379
|
paymentMethod: T['io.flow.adyen.v0.enums.payment_method'],
|
|
3339
3380
|
reason: PropTypes.string,
|
|
3340
3381
|
success: PropTypes.string.isRequired,
|
|
3382
|
+
lifecycleStage: T['io.flow.adyen.v0.enums.lifecycle_stage'],
|
|
3341
3383
|
});
|
|
3342
3384
|
|
|
3343
3385
|
T['io.flow.adyen.v0.models.outer_notification_request_item'] = PropTypes.exact({
|
|
@@ -7913,45 +7955,6 @@ T['io.flow.merchant.onboarding.v0.unions.merchant_application_put_form'] = PropT
|
|
|
7913
7955
|
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_put_form'],
|
|
7914
7956
|
]);
|
|
7915
7957
|
|
|
7916
|
-
T['io.flow.inventory.v0.models.generic_reservation_error'] = PropTypes.exact({
|
|
7917
|
-
code: PropTypes.oneOf(['generic_reservation_error']).isRequired,
|
|
7918
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
7919
|
-
});
|
|
7920
|
-
|
|
7921
|
-
T['io.flow.inventory.v0.models.external_api_timeout_reservation_error'] = PropTypes.exact({
|
|
7922
|
-
code: PropTypes.oneOf(['external_api_timeout']).isRequired,
|
|
7923
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
7924
|
-
});
|
|
7925
|
-
|
|
7926
|
-
T['io.flow.inventory.v0.models.no_inventory_reservation_error'] = PropTypes.exact({
|
|
7927
|
-
code: PropTypes.oneOf(['no_inventory']).isRequired,
|
|
7928
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
7929
|
-
items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.no_inventory_reservation_error_item']).isRequired,
|
|
7930
|
-
});
|
|
7931
|
-
|
|
7932
|
-
T['io.flow.inventory.v0.unions.reservation_error'] = PropTypes.oneOfType([
|
|
7933
|
-
T['io.flow.inventory.v0.models.no_inventory_reservation_error'],
|
|
7934
|
-
T['io.flow.inventory.v0.models.external_api_timeout_reservation_error'],
|
|
7935
|
-
T['io.flow.inventory.v0.models.generic_reservation_error'],
|
|
7936
|
-
]);
|
|
7937
|
-
|
|
7938
|
-
T['io.flow.inventory.v0.models.reservation_item'] = PropTypes.exact({
|
|
7939
|
-
item: T['io.flow.inventory.v0.models.reservation_item_reference'].isRequired,
|
|
7940
|
-
quantity: PropTypes.number.isRequired,
|
|
7941
|
-
});
|
|
7942
|
-
|
|
7943
|
-
T['io.flow.inventory.v0.models.reservation_order_reference'] = PropTypes.exact({
|
|
7944
|
-
number: PropTypes.string.isRequired,
|
|
7945
|
-
});
|
|
7946
|
-
|
|
7947
|
-
T['io.flow.inventory.v0.models.reservation'] = PropTypes.exact({
|
|
7948
|
-
id: PropTypes.string.isRequired,
|
|
7949
|
-
key: PropTypes.string.isRequired,
|
|
7950
|
-
order: T['io.flow.inventory.v0.models.reservation_order_reference'],
|
|
7951
|
-
items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.reservation_item']).isRequired,
|
|
7952
|
-
reserved_until: PropTypes.string,
|
|
7953
|
-
});
|
|
7954
|
-
|
|
7955
7958
|
T['io.flow.query.builder.v0.unions.available_filter'] = PropTypes.oneOfType([
|
|
7956
7959
|
T['io.flow.query.builder.v0.models.available_filter_structured'],
|
|
7957
7960
|
T['io.flow.query.builder.v0.models.available_filter_unstructured'],
|
|
@@ -8180,6 +8183,13 @@ T['io.flow.internal.v0.models.tracking_label_dimensions_deleted'] = PropTypes.ex
|
|
|
8180
8183
|
id: PropTypes.string.isRequired,
|
|
8181
8184
|
});
|
|
8182
8185
|
|
|
8186
|
+
T['io.flow.internal.v0.models.tracking_subscription_deleted'] = PropTypes.exact({
|
|
8187
|
+
discriminator: PropTypes.oneOf(['tracking_subscription_deleted']).isRequired,
|
|
8188
|
+
event_id: PropTypes.string.isRequired,
|
|
8189
|
+
timestamp: PropTypes.string.isRequired,
|
|
8190
|
+
id: PropTypes.string.isRequired,
|
|
8191
|
+
});
|
|
8192
|
+
|
|
8183
8193
|
T['io.flow.internal.v0.models.tracking_assurance_job_deleted'] = PropTypes.exact({
|
|
8184
8194
|
discriminator: PropTypes.oneOf(['tracking_assurance_job_deleted']).isRequired,
|
|
8185
8195
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8223,6 +8233,13 @@ T['io.flow.internal.v0.models.shruti_demo_item_deleted'] = PropTypes.exact({
|
|
|
8223
8233
|
id: PropTypes.string.isRequired,
|
|
8224
8234
|
});
|
|
8225
8235
|
|
|
8236
|
+
T['io.flow.internal.v0.models.sanjay_item_deleted'] = PropTypes.exact({
|
|
8237
|
+
discriminator: PropTypes.oneOf(['sanjay_item_deleted']).isRequired,
|
|
8238
|
+
event_id: PropTypes.string.isRequired,
|
|
8239
|
+
timestamp: PropTypes.string.isRequired,
|
|
8240
|
+
id: PropTypes.string.isRequired,
|
|
8241
|
+
});
|
|
8242
|
+
|
|
8226
8243
|
T['io.flow.internal.v0.models.miljenko_item_deleted'] = PropTypes.exact({
|
|
8227
8244
|
discriminator: PropTypes.oneOf(['miljenko_item_deleted']).isRequired,
|
|
8228
8245
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8394,6 +8411,13 @@ T['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'] = Prop
|
|
|
8394
8411
|
id: PropTypes.string.isRequired,
|
|
8395
8412
|
});
|
|
8396
8413
|
|
|
8414
|
+
T['io.flow.internal.v0.models.paypal_dispute_deleted'] = PropTypes.exact({
|
|
8415
|
+
discriminator: PropTypes.oneOf(['paypal_dispute_deleted']).isRequired,
|
|
8416
|
+
event_id: PropTypes.string.isRequired,
|
|
8417
|
+
timestamp: PropTypes.string.isRequired,
|
|
8418
|
+
id: PropTypes.string.isRequired,
|
|
8419
|
+
});
|
|
8420
|
+
|
|
8397
8421
|
T['io.flow.internal.v0.models.organization_payment_setting_deleted'] = PropTypes.exact({
|
|
8398
8422
|
discriminator: PropTypes.oneOf(['organization_payment_setting_deleted']).isRequired,
|
|
8399
8423
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8410,6 +8434,13 @@ T['io.flow.internal.v0.models.authorization_bundle_deleted'] = PropTypes.exact({
|
|
|
8410
8434
|
id: PropTypes.string.isRequired,
|
|
8411
8435
|
});
|
|
8412
8436
|
|
|
8437
|
+
T['io.flow.internal.v0.models.partner_tracking_subscription_deleted'] = PropTypes.exact({
|
|
8438
|
+
discriminator: PropTypes.oneOf(['partner_tracking_subscription_deleted']).isRequired,
|
|
8439
|
+
event_id: PropTypes.string.isRequired,
|
|
8440
|
+
timestamp: PropTypes.string.isRequired,
|
|
8441
|
+
id: PropTypes.string.isRequired,
|
|
8442
|
+
});
|
|
8443
|
+
|
|
8413
8444
|
T['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'] = PropTypes.exact({
|
|
8414
8445
|
discriminator: PropTypes.oneOf(['unassigned_merchant_guid_deleted']).isRequired,
|
|
8415
8446
|
event_id: PropTypes.string.isRequired,
|
|
@@ -10549,6 +10580,11 @@ T['io.flow.payment.v0.models.three_d_secure'] = PropTypes.exact({
|
|
|
10549
10580
|
eci: PropTypes.string,
|
|
10550
10581
|
liability_sift: PropTypes.bool,
|
|
10551
10582
|
version: PropTypes.string,
|
|
10583
|
+
authenticated: PropTypes.bool,
|
|
10584
|
+
authenticated_result: PropTypes.string,
|
|
10585
|
+
offered: PropTypes.bool,
|
|
10586
|
+
offered_result: PropTypes.string,
|
|
10587
|
+
sca_exemption: PropTypes.string,
|
|
10552
10588
|
});
|
|
10553
10589
|
|
|
10554
10590
|
T['io.flow.payment.v0.models.cvv'] = PropTypes.exact({
|
|
@@ -10625,6 +10661,8 @@ T['io.flow.internal.v0.models.report_bank_account_cleartext'] = PropTypes.exact(
|
|
|
10625
10661
|
account_number: PropTypes.string.isRequired,
|
|
10626
10662
|
});
|
|
10627
10663
|
|
|
10664
|
+
T['io.flow.internal.v0.enums.sanjay_item_type'] = PropTypes.oneOf(['digital', 'physical']);
|
|
10665
|
+
|
|
10628
10666
|
T['io.flow.internal.v0.models.marked_as_final'] = PropTypes.exact({
|
|
10629
10667
|
products: PropTypes.bool.isRequired,
|
|
10630
10668
|
shipping: PropTypes.bool.isRequired,
|
|
@@ -10655,27 +10693,12 @@ T['io.flow.internal.v0.models.reporting_vendor'] = PropTypes.exact({
|
|
|
10655
10693
|
id: PropTypes.string.isRequired,
|
|
10656
10694
|
});
|
|
10657
10695
|
|
|
10658
|
-
T['io.flow.internal.v0.models.reporting_entity'] = PropTypes.exact({
|
|
10659
|
-
id: PropTypes.string.isRequired,
|
|
10660
|
-
});
|
|
10661
|
-
|
|
10662
|
-
T['io.flow.internal.v0.models.reporting_order_summary'] = PropTypes.exact({
|
|
10663
|
-
id: PropTypes.string.isRequired,
|
|
10664
|
-
number: PropTypes.string.isRequired,
|
|
10665
|
-
submitted_at: PropTypes.string.isRequired,
|
|
10666
|
-
});
|
|
10667
|
-
|
|
10668
10696
|
T['io.flow.internal.v0.enums.revenue_record_type'] = PropTypes.oneOf(['pending', 'sales', 'refund']);
|
|
10669
10697
|
|
|
10670
10698
|
T['io.flow.internal.v0.models.record_reference'] = PropTypes.exact({
|
|
10671
10699
|
id: PropTypes.string.isRequired,
|
|
10672
10700
|
});
|
|
10673
10701
|
|
|
10674
|
-
T['io.flow.internal.v0.models.reporting_organization_summary'] = PropTypes.exact({
|
|
10675
|
-
id: PropTypes.string.isRequired,
|
|
10676
|
-
name: PropTypes.string.isRequired,
|
|
10677
|
-
});
|
|
10678
|
-
|
|
10679
10702
|
T['io.flow.payment.v0.models.refund_reference'] = PropTypes.exact({
|
|
10680
10703
|
id: PropTypes.string.isRequired,
|
|
10681
10704
|
key: PropTypes.string.isRequired,
|
|
@@ -10845,6 +10868,10 @@ T['io.flow.internal.v0.models.report_order_reference'] = PropTypes.exact({
|
|
|
10845
10868
|
order_number: PropTypes.string.isRequired,
|
|
10846
10869
|
});
|
|
10847
10870
|
|
|
10871
|
+
T['io.flow.internal.v0.models.report_organization_reference'] = PropTypes.exact({
|
|
10872
|
+
organization_id: PropTypes.string.isRequired,
|
|
10873
|
+
});
|
|
10874
|
+
|
|
10848
10875
|
T['io.flow.internal.v0.enums.report_payment_type'] = PropTypes.oneOf(['credit', 'debit']);
|
|
10849
10876
|
|
|
10850
10877
|
T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
@@ -10860,6 +10887,7 @@ T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
|
10860
10887
|
'payments',
|
|
10861
10888
|
'reconcile_not_recorded',
|
|
10862
10889
|
'products_record',
|
|
10890
|
+
'disputes',
|
|
10863
10891
|
]);
|
|
10864
10892
|
|
|
10865
10893
|
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
@@ -10867,6 +10895,7 @@ T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
|
10867
10895
|
from: PropTypes.string,
|
|
10868
10896
|
to: PropTypes.string,
|
|
10869
10897
|
payment_type: T['io.flow.internal.v0.enums.report_payment_type'],
|
|
10898
|
+
organizations: PropTypes.arrayOf(T['io.flow.internal.v0.models.report_organization_reference']),
|
|
10870
10899
|
orders: PropTypes.arrayOf(T['io.flow.internal.v0.models.report_order_reference']),
|
|
10871
10900
|
recipients: PropTypes.arrayOf(PropTypes.string),
|
|
10872
10901
|
});
|
|
@@ -11426,6 +11455,54 @@ T['io.flow.internal.v0.models.paypal_execution_deleted'] = PropTypes.exact({
|
|
|
11426
11455
|
execution: T['io.flow.internal.v0.models.paypal_internal_execution'].isRequired,
|
|
11427
11456
|
});
|
|
11428
11457
|
|
|
11458
|
+
T['io.flow.internal.v0.models.paypal_internal_dispute'] = PropTypes.exact({
|
|
11459
|
+
id: PropTypes.string.isRequired,
|
|
11460
|
+
dispute_id: PropTypes.string.isRequired,
|
|
11461
|
+
create_time: PropTypes.string.isRequired,
|
|
11462
|
+
update_time: PropTypes.string.isRequired,
|
|
11463
|
+
buyer_transaction_id: PropTypes.string,
|
|
11464
|
+
seller_transaction_id: PropTypes.string,
|
|
11465
|
+
transaction_reference_id: PropTypes.string,
|
|
11466
|
+
transaction_create_time: PropTypes.string,
|
|
11467
|
+
transaction_status: PropTypes.string,
|
|
11468
|
+
transaction_gross_amount: PropTypes.string,
|
|
11469
|
+
transaction_gross_currency: PropTypes.string,
|
|
11470
|
+
transaction_invoice_number: PropTypes.string,
|
|
11471
|
+
transaction_custom: PropTypes.string,
|
|
11472
|
+
buyer_name: PropTypes.string,
|
|
11473
|
+
seller_merchant_id: PropTypes.string,
|
|
11474
|
+
seller_merchant_name: PropTypes.string,
|
|
11475
|
+
items: PropTypes.arrayOf(PropTypes.object),
|
|
11476
|
+
other_disputed_transactions: PropTypes.arrayOf(PropTypes.object),
|
|
11477
|
+
reason: PropTypes.string.isRequired,
|
|
11478
|
+
status: PropTypes.string.isRequired,
|
|
11479
|
+
dispute_amount: PropTypes.string.isRequired,
|
|
11480
|
+
dispute_currency: PropTypes.string.isRequired,
|
|
11481
|
+
dispute_outcome_code: PropTypes.string,
|
|
11482
|
+
dispute_outcome_amount_refunded: PropTypes.string,
|
|
11483
|
+
dispute_outcome_currency: PropTypes.string,
|
|
11484
|
+
dispute_life_cycle_stage: PropTypes.string.isRequired,
|
|
11485
|
+
dispute_channel: PropTypes.string.isRequired,
|
|
11486
|
+
messages: PropTypes.arrayOf(PropTypes.object),
|
|
11487
|
+
evidences: PropTypes.arrayOf(PropTypes.object),
|
|
11488
|
+
buyer_response_due_date: PropTypes.string,
|
|
11489
|
+
seller_response_due_date: PropTypes.string,
|
|
11490
|
+
offer: PropTypes.object,
|
|
11491
|
+
communication_details: PropTypes.object,
|
|
11492
|
+
links: PropTypes.arrayOf(PropTypes.object),
|
|
11493
|
+
previous_status: PropTypes.string,
|
|
11494
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
11495
|
+
created_at: PropTypes.string.isRequired,
|
|
11496
|
+
updated_at: PropTypes.string.isRequired,
|
|
11497
|
+
});
|
|
11498
|
+
|
|
11499
|
+
T['io.flow.internal.v0.models.paypal_dispute_upserted'] = PropTypes.exact({
|
|
11500
|
+
discriminator: PropTypes.oneOf(['paypal_dispute_upserted']).isRequired,
|
|
11501
|
+
event_id: PropTypes.string.isRequired,
|
|
11502
|
+
timestamp: PropTypes.string.isRequired,
|
|
11503
|
+
dispute: T['io.flow.internal.v0.models.paypal_internal_dispute'].isRequired,
|
|
11504
|
+
});
|
|
11505
|
+
|
|
11429
11506
|
T['io.flow.internal.v0.models.paypal_authentication_form'] = PropTypes.exact({
|
|
11430
11507
|
username: PropTypes.string.isRequired,
|
|
11431
11508
|
password: PropTypes.string.isRequired,
|
|
@@ -11507,6 +11584,22 @@ T['io.flow.internal.v0.models.passphrase'] = PropTypes.exact({
|
|
|
11507
11584
|
challenge_text: PropTypes.string.isRequired,
|
|
11508
11585
|
});
|
|
11509
11586
|
|
|
11587
|
+
T['io.flow.partner.v0.models.partner_tracking_subscription'] = PropTypes.exact({
|
|
11588
|
+
id: PropTypes.string.isRequired,
|
|
11589
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
11590
|
+
carrier_id: PropTypes.string.isRequired,
|
|
11591
|
+
source: PropTypes.string.isRequired,
|
|
11592
|
+
reference_key: PropTypes.string.isRequired,
|
|
11593
|
+
created_at: PropTypes.string.isRequired,
|
|
11594
|
+
});
|
|
11595
|
+
|
|
11596
|
+
T['io.flow.internal.v0.models.partner_tracking_subscription_upserted'] = PropTypes.exact({
|
|
11597
|
+
discriminator: PropTypes.oneOf(['partner_tracking_subscription_upserted']).isRequired,
|
|
11598
|
+
event_id: PropTypes.string.isRequired,
|
|
11599
|
+
timestamp: PropTypes.string.isRequired,
|
|
11600
|
+
partner_tracking_subscription: T['io.flow.partner.v0.models.partner_tracking_subscription'].isRequired,
|
|
11601
|
+
});
|
|
11602
|
+
|
|
11510
11603
|
T['io.flow.partner.v0.enums.label_format'] = PropTypes.oneOf(['pdf', 'zpl', 'all']);
|
|
11511
11604
|
|
|
11512
11605
|
T['io.flow.internal.v0.models.partner_organization_settings_form'] = PropTypes.exact({
|
|
@@ -11696,6 +11789,8 @@ T['io.flow.internal.v0.models.organization_metadata'] = PropTypes.exact({
|
|
|
11696
11789
|
product_count: PropTypes.number.isRequired,
|
|
11697
11790
|
restricted_product_count: PropTypes.number.isRequired,
|
|
11698
11791
|
last_order_submitted_at: PropTypes.string,
|
|
11792
|
+
matching_positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11793
|
+
product_categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11699
11794
|
});
|
|
11700
11795
|
|
|
11701
11796
|
T['io.flow.internal.v0.models.organization_metadata_upserted'] = PropTypes.exact({
|
|
@@ -12038,8 +12133,10 @@ T['io.flow.internal.v0.models.attempt_statistics'] = PropTypes.exact({
|
|
|
12038
12133
|
|
|
12039
12134
|
T['io.flow.internal.v0.models.negative_debit_metrics'] = PropTypes.exact({
|
|
12040
12135
|
current_attempt: T['io.flow.internal.v0.models.attempt_statistics'].isRequired,
|
|
12136
|
+
first_attempt: T['io.flow.internal.v0.models.attempt_statistics'].isRequired,
|
|
12041
12137
|
second_attempt: T['io.flow.internal.v0.models.attempt_statistics'].isRequired,
|
|
12042
12138
|
third_attempt: T['io.flow.internal.v0.models.attempt_statistics'].isRequired,
|
|
12139
|
+
forth_plus_attempts: T['io.flow.internal.v0.models.attempt_statistics'].isRequired,
|
|
12043
12140
|
});
|
|
12044
12141
|
|
|
12045
12142
|
T['io.flow.internal.v0.enums.miljenko_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
@@ -12856,6 +12953,7 @@ T['io.flow.internal.v0.enums.manual_transaction_category'] = PropTypes.oneOf([
|
|
|
12856
12953
|
'carrier_credit',
|
|
12857
12954
|
'negative_balance_guarantee',
|
|
12858
12955
|
'bank_payment_failure',
|
|
12956
|
+
'non_fraud_chargeback',
|
|
12859
12957
|
]);
|
|
12860
12958
|
|
|
12861
12959
|
T['io.flow.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
@@ -13569,22 +13667,6 @@ T['io.flow.internal.v0.models.issuer_deleted'] = PropTypes.exact({
|
|
|
13569
13667
|
issuer: T['io.flow.internal.v0.models.issuer'].isRequired,
|
|
13570
13668
|
});
|
|
13571
13669
|
|
|
13572
|
-
T['io.flow.internal.v0.enums.inventory_check_service'] = PropTypes.oneOf(['sfcc', 'gymboree']);
|
|
13573
|
-
T['io.flow.internal.v0.enums.inventory_reservation'] = PropTypes.oneOf(['synchronous-on-submit']);
|
|
13574
|
-
|
|
13575
|
-
T['io.flow.internal.v0.models.inventory_organization_settings_form'] = PropTypes.exact({
|
|
13576
|
-
inventory_reservation: T['io.flow.internal.v0.enums.inventory_reservation'].isRequired,
|
|
13577
|
-
inventory_check_service: T['io.flow.internal.v0.enums.inventory_check_service'].isRequired,
|
|
13578
|
-
inventory_check_service_root_url: PropTypes.string,
|
|
13579
|
-
});
|
|
13580
|
-
|
|
13581
|
-
T['io.flow.internal.v0.models.inventory_organization_settings'] = PropTypes.exact({
|
|
13582
|
-
id: PropTypes.string.isRequired,
|
|
13583
|
-
inventory_reservation: T['io.flow.internal.v0.enums.inventory_reservation'].isRequired,
|
|
13584
|
-
inventory_check_service: T['io.flow.internal.v0.enums.inventory_check_service'].isRequired,
|
|
13585
|
-
inventory_check_service_root_url: PropTypes.string,
|
|
13586
|
-
});
|
|
13587
|
-
|
|
13588
13670
|
T['io.flow.shopify.external.v0.models.shopify_country_harmonized_system_code'] = PropTypes.exact({
|
|
13589
13671
|
country_code: PropTypes.string.isRequired,
|
|
13590
13672
|
harmonized_system_code: PropTypes.string.isRequired,
|
|
@@ -13606,12 +13688,14 @@ T['io.flow.shopify.markets.internal.v0.models.inventory_item_wrapper'] = PropTyp
|
|
|
13606
13688
|
inventory_item_id: PropTypes.number.isRequired,
|
|
13607
13689
|
shopify_shop_id: PropTypes.number.isRequired,
|
|
13608
13690
|
shopify_inventory_item: T['io.flow.shopify.external.v0.models.shopify_inventory_item_summary'].isRequired,
|
|
13691
|
+
deleted_at: PropTypes.string,
|
|
13609
13692
|
});
|
|
13610
13693
|
|
|
13611
13694
|
T['io.flow.internal.v0.models.inventory_item_wrapper'] = PropTypes.exact({
|
|
13612
13695
|
inventory_item_id: PropTypes.number.isRequired,
|
|
13613
13696
|
shopify_shop_id: PropTypes.number.isRequired,
|
|
13614
13697
|
shopify_inventory_item: T['io.flow.shopify.external.v0.models.shopify_inventory_item_summary'].isRequired,
|
|
13698
|
+
deleted_at: PropTypes.string,
|
|
13615
13699
|
});
|
|
13616
13700
|
|
|
13617
13701
|
T['io.flow.payment.v0.enums.card_type'] = PropTypes.oneOf([
|
|
@@ -14279,6 +14363,7 @@ T['io.flow.internal.v0.models.reporting_merchant_transactions'] = PropTypes.exac
|
|
|
14279
14363
|
discount: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14280
14364
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14281
14365
|
tax_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14366
|
+
duty_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14282
14367
|
});
|
|
14283
14368
|
|
|
14284
14369
|
T['io.flow.internal.v0.models.reporting_merchant_fees'] = PropTypes.exact({
|
|
@@ -15315,6 +15400,17 @@ T['io.flow.internal.v0.models.duty_rate_bulk_response'] = PropTypes.exact({
|
|
|
15315
15400
|
duty_rate: PropTypes.arrayOf(T['io.flow.internal.v0.models.duty_rate']).isRequired,
|
|
15316
15401
|
});
|
|
15317
15402
|
|
|
15403
|
+
T['io.flow.internal.v0.models.reporting_order_summary'] = PropTypes.exact({
|
|
15404
|
+
id: PropTypes.string.isRequired,
|
|
15405
|
+
number: PropTypes.string.isRequired,
|
|
15406
|
+
submitted_at: PropTypes.string.isRequired,
|
|
15407
|
+
});
|
|
15408
|
+
|
|
15409
|
+
T['io.flow.internal.v0.models.reporting_organization_summary'] = PropTypes.exact({
|
|
15410
|
+
id: PropTypes.string.isRequired,
|
|
15411
|
+
name: PropTypes.string.isRequired,
|
|
15412
|
+
});
|
|
15413
|
+
|
|
15318
15414
|
T['io.flow.internal.v0.models.dispute_import_errors'] = PropTypes.exact({
|
|
15319
15415
|
count: PropTypes.number.isRequired,
|
|
15320
15416
|
});
|
|
@@ -15838,10 +15934,12 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
15838
15934
|
'negative_balance_number_accounts',
|
|
15839
15935
|
'negative_balance_number_accounts_with_order_in_past_30_days',
|
|
15840
15936
|
'negative_balance_number_accounts_without_order_in_past_30_days',
|
|
15937
|
+
'negative_balance_number_offboarded_accounts',
|
|
15841
15938
|
'negative_balance_number_active_accounts_with_balance_over_1000',
|
|
15842
15939
|
'negative_balance_total',
|
|
15843
15940
|
'negative_balance_total_with_order_in_past_30_days',
|
|
15844
15941
|
'negative_balance_total_without_order_in_past_30_days',
|
|
15942
|
+
'negative_balance_total_offboarded_accounts',
|
|
15845
15943
|
'negative_balance_single_account_max',
|
|
15846
15944
|
'negative_balance_single_active_account_max',
|
|
15847
15945
|
'negative_balance_fee_total',
|
|
@@ -15860,6 +15958,31 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
15860
15958
|
'negative_balance_failed_count',
|
|
15861
15959
|
'negative_balance_failed_total',
|
|
15862
15960
|
'negative_debit_success_rate',
|
|
15961
|
+
'current_attempt_merchant_count',
|
|
15962
|
+
'current_attempt_amount_total',
|
|
15963
|
+
'current_attempt_failed_merchant_count',
|
|
15964
|
+
'current_attempt_failed_amount_total',
|
|
15965
|
+
'current_attempt_success_ratio',
|
|
15966
|
+
'first_attempt_merchant_count',
|
|
15967
|
+
'first_attempt_amount_total',
|
|
15968
|
+
'first_attempt_failed_merchant_count',
|
|
15969
|
+
'first_attempt_failed_amount_total',
|
|
15970
|
+
'first_attempt_success_ratio',
|
|
15971
|
+
'second_attempt_merchant_count',
|
|
15972
|
+
'second_attempt_amount_total',
|
|
15973
|
+
'second_attempt_failed_merchant_count',
|
|
15974
|
+
'second_attempt_failed_amount_total',
|
|
15975
|
+
'second_attempt_success_ratio',
|
|
15976
|
+
'third_attempt_merchant_count',
|
|
15977
|
+
'third_attempt_amount_total',
|
|
15978
|
+
'third_attempt_failed_merchant_count',
|
|
15979
|
+
'third_attempt_failed_amount_total',
|
|
15980
|
+
'third_attempt_success_ratio',
|
|
15981
|
+
'fourth_plus_attempt_merchant_count',
|
|
15982
|
+
'fourth_plus_attempt_amount_total',
|
|
15983
|
+
'fourth_plus_attempt_failed_merchant_count',
|
|
15984
|
+
'fourth_plus_attempt_failed_amount_total',
|
|
15985
|
+
'fourth_plus_attempt_success_ratio',
|
|
15863
15986
|
]);
|
|
15864
15987
|
|
|
15865
15988
|
T['io.flow.internal.v0.models.daily_value'] = PropTypes.exact({
|
|
@@ -20373,6 +20496,27 @@ T['io.flow.return.v0.models.return_form'] = PropTypes.exact({
|
|
|
20373
20496
|
carrier_tracking_number: PropTypes.string,
|
|
20374
20497
|
});
|
|
20375
20498
|
|
|
20499
|
+
T['io.flow.internal.v0.models.tracking_subscription'] = PropTypes.exact({
|
|
20500
|
+
id: PropTypes.string.isRequired,
|
|
20501
|
+
organization_id: PropTypes.string.isRequired,
|
|
20502
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
20503
|
+
carrier_id: PropTypes.string.isRequired,
|
|
20504
|
+
label_id: PropTypes.string.isRequired,
|
|
20505
|
+
label_origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
20506
|
+
label_destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
20507
|
+
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
20508
|
+
events: PropTypes.arrayOf(T['io.flow.tracking.v0.models.tracking_event']).isRequired,
|
|
20509
|
+
external_reference_key: PropTypes.string,
|
|
20510
|
+
external_reference_source: PropTypes.string,
|
|
20511
|
+
});
|
|
20512
|
+
|
|
20513
|
+
T['io.flow.internal.v0.models.tracking_subscription_upserted'] = PropTypes.exact({
|
|
20514
|
+
discriminator: PropTypes.oneOf(['tracking_subscription_upserted']).isRequired,
|
|
20515
|
+
event_id: PropTypes.string.isRequired,
|
|
20516
|
+
timestamp: PropTypes.string.isRequired,
|
|
20517
|
+
tracking_subscription: T['io.flow.internal.v0.models.tracking_subscription'].isRequired,
|
|
20518
|
+
});
|
|
20519
|
+
|
|
20376
20520
|
T['io.flow.internal.v0.models.order_validation_failure_summary'] = PropTypes.exact({
|
|
20377
20521
|
organization_id: PropTypes.string.isRequired,
|
|
20378
20522
|
order_number: PropTypes.string.isRequired,
|
|
@@ -20793,6 +20937,7 @@ T['io.flow.internal.v0.models.fraud_review'] = PropTypes.exact({
|
|
|
20793
20937
|
payment_authorization_id: PropTypes.string,
|
|
20794
20938
|
decline_reason: T['io.flow.internal.v0.unions.decline_reason'],
|
|
20795
20939
|
created_at: PropTypes.string,
|
|
20940
|
+
has_provider_link: PropTypes.bool,
|
|
20796
20941
|
});
|
|
20797
20942
|
|
|
20798
20943
|
T['io.flow.internal.v0.models.fraud_review_version'] = PropTypes.exact({
|
|
@@ -20862,6 +21007,7 @@ T['io.flow.internal.v0.models.fraud_review_authorization'] = PropTypes.exact({
|
|
|
20862
21007
|
payment_authorization_id: PropTypes.string,
|
|
20863
21008
|
decline_reason: T['io.flow.internal.v0.unions.decline_reason'],
|
|
20864
21009
|
created_at: PropTypes.string,
|
|
21010
|
+
has_provider_link: PropTypes.bool,
|
|
20865
21011
|
});
|
|
20866
21012
|
|
|
20867
21013
|
T['io.flow.internal.v0.models.fraud_review_authorization_upserted'] = PropTypes.exact({
|
|
@@ -23357,6 +23503,17 @@ T['io.flow.experience.v0.models.allocation_line_summary'] = PropTypes.exact({
|
|
|
23357
23503
|
total: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23358
23504
|
});
|
|
23359
23505
|
|
|
23506
|
+
T['io.flow.internal.v0.models.dispute_record'] = PropTypes.exact({
|
|
23507
|
+
id: PropTypes.string.isRequired,
|
|
23508
|
+
organization: T['io.flow.internal.v0.models.reporting_organization_summary'].isRequired,
|
|
23509
|
+
order: T['io.flow.internal.v0.models.reporting_order_summary'].isRequired,
|
|
23510
|
+
status: T['io.flow.internal.v0.enums.dispute_status'].isRequired,
|
|
23511
|
+
processor: T['io.flow.internal.v0.enums.dispute_processor'].isRequired,
|
|
23512
|
+
reporting_category: T['io.flow.internal.v0.enums.dispute_reporting_category'],
|
|
23513
|
+
defense_outcome: T['io.flow.internal.v0.enums.dispute_defense_outcome'],
|
|
23514
|
+
chargeback_amount: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23515
|
+
});
|
|
23516
|
+
|
|
23360
23517
|
T['io.flow.experience.v0.models.order_form'] = PropTypes.exact({
|
|
23361
23518
|
customer: T['io.flow.common.v0.models.order_customer_form'],
|
|
23362
23519
|
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
@@ -24894,6 +25051,30 @@ T['io.flow.internal.v0.models.shruti_demo_item_upserted'] = PropTypes.exact({
|
|
|
24894
25051
|
item: T['io.flow.internal.v0.models.shruti_demo_item'].isRequired,
|
|
24895
25052
|
});
|
|
24896
25053
|
|
|
25054
|
+
T['io.flow.internal.v0.models.sanjay_item_form'] = PropTypes.exact({
|
|
25055
|
+
number: PropTypes.string.isRequired,
|
|
25056
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25057
|
+
description: PropTypes.string,
|
|
25058
|
+
type: T['io.flow.internal.v0.enums.sanjay_item_type'].isRequired,
|
|
25059
|
+
added_on: PropTypes.string.isRequired,
|
|
25060
|
+
});
|
|
25061
|
+
|
|
25062
|
+
T['io.flow.internal.v0.models.sanjay_item'] = PropTypes.exact({
|
|
25063
|
+
id: PropTypes.string.isRequired,
|
|
25064
|
+
number: PropTypes.string.isRequired,
|
|
25065
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25066
|
+
description: PropTypes.string,
|
|
25067
|
+
type: T['io.flow.internal.v0.enums.sanjay_item_type'].isRequired,
|
|
25068
|
+
added_on: PropTypes.string.isRequired,
|
|
25069
|
+
});
|
|
25070
|
+
|
|
25071
|
+
T['io.flow.internal.v0.models.sanjay_item_upserted'] = PropTypes.exact({
|
|
25072
|
+
discriminator: PropTypes.oneOf(['sanjay_item_upserted']).isRequired,
|
|
25073
|
+
event_id: PropTypes.string.isRequired,
|
|
25074
|
+
timestamp: PropTypes.string.isRequired,
|
|
25075
|
+
item: T['io.flow.internal.v0.models.sanjay_item'].isRequired,
|
|
25076
|
+
});
|
|
25077
|
+
|
|
24897
25078
|
T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
24898
25079
|
id: PropTypes.string.isRequired,
|
|
24899
25080
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -26240,10 +26421,15 @@ T['io.flow.internal.v0.models.authorized_charge_status'] = PropTypes.exact({
|
|
|
26240
26421
|
refunded: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
26241
26422
|
});
|
|
26242
26423
|
|
|
26424
|
+
T['io.flow.internal.v0.models.account_statistics_additional_balances'] = PropTypes.exact({
|
|
26425
|
+
on_hold: T['io.flow.common.v0.models.price'].isRequired,
|
|
26426
|
+
});
|
|
26427
|
+
|
|
26243
26428
|
T['io.flow.internal.v0.models.account_statistics'] = PropTypes.exact({
|
|
26244
26429
|
transfers: T['io.flow.common.v0.models.price'].isRequired,
|
|
26245
26430
|
balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
26246
26431
|
pending: T['io.flow.common.v0.models.price'].isRequired,
|
|
26432
|
+
additional_balances: T['io.flow.internal.v0.models.account_statistics_additional_balances'],
|
|
26247
26433
|
});
|
|
26248
26434
|
|
|
26249
26435
|
T['io.flow.internal.v0.models.channel_account'] = PropTypes.exact({
|
|
@@ -26472,7 +26658,6 @@ T['io.flow.internal.v0.models.revenue_record'] = PropTypes.exact({
|
|
|
26472
26658
|
parent: T['io.flow.internal.v0.models.record_reference'],
|
|
26473
26659
|
type: T['io.flow.internal.v0.enums.revenue_record_type'].isRequired,
|
|
26474
26660
|
order: T['io.flow.internal.v0.models.reporting_order_summary'].isRequired,
|
|
26475
|
-
entity: T['io.flow.internal.v0.models.reporting_entity'].isRequired,
|
|
26476
26661
|
vendor: T['io.flow.internal.v0.models.reporting_vendor'].isRequired,
|
|
26477
26662
|
currencies: T['io.flow.internal.v0.models.reporting_currencies'].isRequired,
|
|
26478
26663
|
conversion_rate: T['io.flow.internal.v0.models.reporting_conversion_rates'].isRequired,
|
|
@@ -26728,6 +26913,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
26728
26913
|
'trueup',
|
|
26729
26914
|
'carrier_charge',
|
|
26730
26915
|
'tax_refund',
|
|
26916
|
+
'duty_refund',
|
|
26731
26917
|
]);
|
|
26732
26918
|
|
|
26733
26919
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -27638,6 +27824,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27638
27824
|
T['io.flow.internal.v0.models.partner_organization_settings_deleted'],
|
|
27639
27825
|
T['io.flow.internal.v0.models.unassigned_merchant_guid_upserted'],
|
|
27640
27826
|
T['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'],
|
|
27827
|
+
T['io.flow.internal.v0.models.partner_tracking_subscription_upserted'],
|
|
27828
|
+
T['io.flow.internal.v0.models.partner_tracking_subscription_deleted'],
|
|
27641
27829
|
T['io.flow.internal.v0.models.internal_authorization_upserted'],
|
|
27642
27830
|
T['io.flow.internal.v0.models.internal_authorization_deleted'],
|
|
27643
27831
|
T['io.flow.internal.v0.models.afterpay_authorization_upserted'],
|
|
@@ -27664,6 +27852,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27664
27852
|
T['io.flow.internal.v0.models.paypal_execution_upserted'],
|
|
27665
27853
|
T['io.flow.internal.v0.models.paypal_refund_deleted'],
|
|
27666
27854
|
T['io.flow.internal.v0.models.paypal_refund_upserted'],
|
|
27855
|
+
T['io.flow.internal.v0.models.paypal_dispute_upserted'],
|
|
27856
|
+
T['io.flow.internal.v0.models.paypal_dispute_deleted'],
|
|
27667
27857
|
T['io.flow.internal.v0.models.pricing_indicator'],
|
|
27668
27858
|
T['io.flow.internal.v0.models.product_restriction_rule_decision_upserted'],
|
|
27669
27859
|
T['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'],
|
|
@@ -27743,6 +27933,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27743
27933
|
T['io.flow.internal.v0.models.michaelyan_item_deleted'],
|
|
27744
27934
|
T['io.flow.internal.v0.models.miljenko_item_upserted'],
|
|
27745
27935
|
T['io.flow.internal.v0.models.miljenko_item_deleted'],
|
|
27936
|
+
T['io.flow.internal.v0.models.sanjay_item_upserted'],
|
|
27937
|
+
T['io.flow.internal.v0.models.sanjay_item_deleted'],
|
|
27746
27938
|
T['io.flow.internal.v0.models.shruti_demo_item_upserted'],
|
|
27747
27939
|
T['io.flow.internal.v0.models.shruti_demo_item_deleted'],
|
|
27748
27940
|
T['io.flow.internal.v0.models.tam_item_upserted'],
|
|
@@ -27761,6 +27953,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27761
27953
|
T['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'],
|
|
27762
27954
|
T['io.flow.internal.v0.models.tracking_assurance_job_upserted'],
|
|
27763
27955
|
T['io.flow.internal.v0.models.tracking_assurance_job_deleted'],
|
|
27956
|
+
T['io.flow.internal.v0.models.tracking_subscription_upserted'],
|
|
27957
|
+
T['io.flow.internal.v0.models.tracking_subscription_deleted'],
|
|
27764
27958
|
T['io.flow.internal.v0.models.tracking_label_dimensions_upserted'],
|
|
27765
27959
|
T['io.flow.internal.v0.models.tracking_label_dimensions_deleted'],
|
|
27766
27960
|
T['io.flow.internal.v0.models.tracking_request_upserted'],
|
|
@@ -28188,6 +28382,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28188
28382
|
'partner_organization_settings_deleted',
|
|
28189
28383
|
'unassigned_merchant_guid_upserted',
|
|
28190
28384
|
'unassigned_merchant_guid_deleted',
|
|
28385
|
+
'partner_tracking_subscription_upserted',
|
|
28386
|
+
'partner_tracking_subscription_deleted',
|
|
28191
28387
|
'internal_authorization_upserted',
|
|
28192
28388
|
'internal_authorization_deleted',
|
|
28193
28389
|
'afterpay_authorization_upserted',
|
|
@@ -28214,6 +28410,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28214
28410
|
'paypal_execution_upserted',
|
|
28215
28411
|
'paypal_refund_deleted',
|
|
28216
28412
|
'paypal_refund_upserted',
|
|
28413
|
+
'paypal_dispute_upserted',
|
|
28414
|
+
'paypal_dispute_deleted',
|
|
28217
28415
|
'pricing_indicator',
|
|
28218
28416
|
'product_restriction_rule_decision_upserted',
|
|
28219
28417
|
'product_restriction_rule_decision_deleted',
|
|
@@ -28293,6 +28491,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28293
28491
|
'michaelyan_item_deleted',
|
|
28294
28492
|
'miljenko_item_upserted',
|
|
28295
28493
|
'miljenko_item_deleted',
|
|
28494
|
+
'sanjay_item_upserted',
|
|
28495
|
+
'sanjay_item_deleted',
|
|
28296
28496
|
'shruti_demo_item_upserted',
|
|
28297
28497
|
'shruti_demo_item_deleted',
|
|
28298
28498
|
'tam_item_upserted',
|
|
@@ -28311,6 +28511,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28311
28511
|
'tracking_assurance_analysis_deleted',
|
|
28312
28512
|
'tracking_assurance_job_upserted',
|
|
28313
28513
|
'tracking_assurance_job_deleted',
|
|
28514
|
+
'tracking_subscription_upserted',
|
|
28515
|
+
'tracking_subscription_deleted',
|
|
28314
28516
|
'tracking_label_dimensions_upserted',
|
|
28315
28517
|
'tracking_label_dimensions_deleted',
|
|
28316
28518
|
'tracking_request_upserted',
|
|
@@ -28389,7 +28591,6 @@ T['io.flow.internal.v0.enums.rate_level_key'] = PropTypes.oneOf([
|
|
|
28389
28591
|
|
|
28390
28592
|
T['io.flow.internal.v0.enums.report_interval'] = PropTypes.oneOf(['hourly', 'daily', 'weekly', 'monthly']);
|
|
28391
28593
|
T['io.flow.internal.v0.enums.risk_check'] = PropTypes.oneOf(['three_d_secure']);
|
|
28392
|
-
T['io.flow.internal.v0.enums.serial_reservation_error'] = PropTypes.oneOf(['duration_too_long', 'items_not_found', 'reservation_expired']);
|
|
28393
28594
|
T['io.flow.internal.v0.enums.shopify_grant_status'] = PropTypes.oneOf(['pass', 'fail']);
|
|
28394
28595
|
|
|
28395
28596
|
T['io.flow.internal.v0.enums.shopify_markets_dangerous_goods'] = PropTypes.oneOf([
|
|
@@ -29223,6 +29424,33 @@ T['io.flow.internal.v0.models.restriction_rule_override'] = PropTypes.exact({
|
|
|
29223
29424
|
value_threshold_usd: PropTypes.number.isRequired,
|
|
29224
29425
|
});
|
|
29225
29426
|
|
|
29427
|
+
T['io.flow.internal.v0.models.restrictions_dailyops'] = PropTypes.exact({
|
|
29428
|
+
id: PropTypes.string.isRequired,
|
|
29429
|
+
report_date: PropTypes.string.isRequired,
|
|
29430
|
+
num_orgs_setup_complete_with_pvs: PropTypes.number.isRequired,
|
|
29431
|
+
num_products_setup_complete_with_pvs: PropTypes.number.isRequired,
|
|
29432
|
+
num_orgs_transacting_with_pvs: PropTypes.number.isRequired,
|
|
29433
|
+
num_products_transacting_with_pvs: PropTypes.number.isRequired,
|
|
29434
|
+
oldest_pv_product_date_setup_complete: PropTypes.string.isRequired,
|
|
29435
|
+
oldest_pv_product_date_transacting: PropTypes.string.isRequired,
|
|
29436
|
+
num_orgs_setup_complete_prs: PropTypes.number.isRequired,
|
|
29437
|
+
num_products_setup_complete_prs: PropTypes.number.isRequired,
|
|
29438
|
+
num_orgs_transacting_prs: PropTypes.number.isRequired,
|
|
29439
|
+
num_products_transacting_prs: PropTypes.number.isRequired,
|
|
29440
|
+
oldest_pr_product_date_setup_complete: PropTypes.string.isRequired,
|
|
29441
|
+
oldest_pr_date_transacting: PropTypes.string.isRequired,
|
|
29442
|
+
percent_products_reviewed_transacting: PropTypes.number.isRequired,
|
|
29443
|
+
num_pv_inflow_net_new: PropTypes.number.isRequired,
|
|
29444
|
+
num_pv_outflow_human_decisions: PropTypes.number.isRequired,
|
|
29445
|
+
num_pv_outflow_auto_review_decisions: PropTypes.number.isRequired,
|
|
29446
|
+
num_pv_outflow_side_effect_decisions: PropTypes.number.isRequired,
|
|
29447
|
+
num_pr_inflow_net_new: PropTypes.number.isRequired,
|
|
29448
|
+
num_pr_outflow_human_decisions: PropTypes.number.isRequired,
|
|
29449
|
+
num_pr_outflow_auto_review_decisions: PropTypes.number.isRequired,
|
|
29450
|
+
num_pr_outflow_side_effect_decisions: PropTypes.number.isRequired,
|
|
29451
|
+
num_pending_decisions_transacting: PropTypes.number.isRequired,
|
|
29452
|
+
});
|
|
29453
|
+
|
|
29226
29454
|
T['io.flow.internal.v0.models.retracking'] = PropTypes.exact({
|
|
29227
29455
|
carrier: PropTypes.string.isRequired,
|
|
29228
29456
|
tracking_number: PropTypes.string,
|
|
@@ -29380,6 +29608,14 @@ T['io.flow.internal.v0.models.shopify_organization_settings_form'] = PropTypes.e
|
|
|
29380
29608
|
send_inventory_update: PropTypes.bool.isRequired,
|
|
29381
29609
|
});
|
|
29382
29610
|
|
|
29611
|
+
T['io.flow.internal.v0.models.shopify_partner_webhook'] = PropTypes.exact({
|
|
29612
|
+
placeholder: PropTypes.bool,
|
|
29613
|
+
});
|
|
29614
|
+
|
|
29615
|
+
T['io.flow.internal.v0.models.shopify_partner_webhook_raw'] = PropTypes.exact({
|
|
29616
|
+
placeholder: PropTypes.bool,
|
|
29617
|
+
});
|
|
29618
|
+
|
|
29383
29619
|
T['io.flow.internal.v0.models.shopify_promotion_form'] = PropTypes.exact({
|
|
29384
29620
|
code: PropTypes.string.isRequired,
|
|
29385
29621
|
});
|
|
@@ -30664,6 +30900,7 @@ export const accountSettingsDeleted = T['io.flow.internal.v0.models.account_sett
|
|
|
30664
30900
|
export const accountSettingsUpserted = T['io.flow.internal.v0.models.account_settings_upserted'];
|
|
30665
30901
|
export const accountSource = T['io.flow.internal.v0.models.account_source'];
|
|
30666
30902
|
export const accountStatistics = T['io.flow.internal.v0.models.account_statistics'];
|
|
30903
|
+
export const accountStatisticsAdditionalBalances = T['io.flow.internal.v0.models.account_statistics_additional_balances'];
|
|
30667
30904
|
export const accountSummary = T['io.flow.internal.v0.models.account_summary'];
|
|
30668
30905
|
export const accountTransactionsExportRequest = T['io.flow.internal.v0.models.account_transactions_export_request'];
|
|
30669
30906
|
export const accountType = T['io.flow.internal.v0.enums.account_type'];
|
|
@@ -31177,6 +31414,7 @@ export const disputeOrderReference = T['io.flow.internal.v0.models.dispute_order
|
|
|
31177
31414
|
export const disputeOrganizationReference = T['io.flow.internal.v0.models.dispute_organization_reference'];
|
|
31178
31415
|
export const disputeOverrideUpdateForm = T['io.flow.internal.v0.models.dispute_override_update_form'];
|
|
31179
31416
|
export const disputeProcessor = T['io.flow.internal.v0.enums.dispute_processor'];
|
|
31417
|
+
export const disputeRecord = T['io.flow.internal.v0.models.dispute_record'];
|
|
31180
31418
|
export const disputeReportingCategory = T['io.flow.internal.v0.enums.dispute_reporting_category'];
|
|
31181
31419
|
export const disputeStatus = T['io.flow.internal.v0.enums.dispute_status'];
|
|
31182
31420
|
export const disputeStatusForm = T['io.flow.internal.v0.models.dispute_status_form'];
|
|
@@ -31479,11 +31717,7 @@ export const internalTransactionDetails = T['io.flow.internal.v0.unions.internal
|
|
|
31479
31717
|
export const internalTransactionDetailsCard = T['io.flow.internal.v0.models.internal_transaction_details_card'];
|
|
31480
31718
|
export const invalidCheckoutData = T['io.flow.internal.v0.models.invalid_checkout_data'];
|
|
31481
31719
|
export const invariant = T['io.flow.internal.v0.models.invariant'];
|
|
31482
|
-
export const inventoryCheckService = T['io.flow.internal.v0.enums.inventory_check_service'];
|
|
31483
31720
|
export const inventoryItemWrapper = T['io.flow.internal.v0.models.inventory_item_wrapper'];
|
|
31484
|
-
export const inventoryOrganizationSettings = T['io.flow.internal.v0.models.inventory_organization_settings'];
|
|
31485
|
-
export const inventoryOrganizationSettingsForm = T['io.flow.internal.v0.models.inventory_organization_settings_form'];
|
|
31486
|
-
export const inventoryReservation = T['io.flow.internal.v0.enums.inventory_reservation'];
|
|
31487
31721
|
export const invoice = T['io.flow.internal.v0.models.invoice'];
|
|
31488
31722
|
export const invoiceInfoForm = T['io.flow.internal.v0.models.invoice_info_form'];
|
|
31489
31723
|
export const invoiceLine = T['io.flow.internal.v0.models.invoice_line'];
|
|
@@ -31921,6 +32155,8 @@ export const partnerOrganizationSettings = T['io.flow.internal.v0.models.partner
|
|
|
31921
32155
|
export const partnerOrganizationSettingsDeleted = T['io.flow.internal.v0.models.partner_organization_settings_deleted'];
|
|
31922
32156
|
export const partnerOrganizationSettingsForm = T['io.flow.internal.v0.models.partner_organization_settings_form'];
|
|
31923
32157
|
export const partnerOrganizationSettingsUpserted = T['io.flow.internal.v0.models.partner_organization_settings_upserted'];
|
|
32158
|
+
export const partnerTrackingSubscriptionDeleted = T['io.flow.internal.v0.models.partner_tracking_subscription_deleted'];
|
|
32159
|
+
export const partnerTrackingSubscriptionUpserted = T['io.flow.internal.v0.models.partner_tracking_subscription_upserted'];
|
|
31924
32160
|
export const party = T['io.flow.internal.v0.enums.party'];
|
|
31925
32161
|
export const passphrase = T['io.flow.internal.v0.models.passphrase'];
|
|
31926
32162
|
export const passphraseForm = T['io.flow.internal.v0.models.passphrase_form'];
|
|
@@ -31948,8 +32184,11 @@ export const paypalAccountReference = T['io.flow.internal.v0.models.paypal_accou
|
|
|
31948
32184
|
export const paypalAuthentication = T['io.flow.internal.v0.models.paypal_authentication'];
|
|
31949
32185
|
export const paypalAuthenticationForm = T['io.flow.internal.v0.models.paypal_authentication_form'];
|
|
31950
32186
|
export const paypalAuthorizationPayload = T['io.flow.internal.v0.models.paypal_authorization_payload'];
|
|
32187
|
+
export const paypalDisputeDeleted = T['io.flow.internal.v0.models.paypal_dispute_deleted'];
|
|
32188
|
+
export const paypalDisputeUpserted = T['io.flow.internal.v0.models.paypal_dispute_upserted'];
|
|
31951
32189
|
export const paypalExecutionDeleted = T['io.flow.internal.v0.models.paypal_execution_deleted'];
|
|
31952
32190
|
export const paypalExecutionUpserted = T['io.flow.internal.v0.models.paypal_execution_upserted'];
|
|
32191
|
+
export const paypalInternalDispute = T['io.flow.internal.v0.models.paypal_internal_dispute'];
|
|
31953
32192
|
export const paypalInternalExecution = T['io.flow.internal.v0.models.paypal_internal_execution'];
|
|
31954
32193
|
export const paypalInternalPayment = T['io.flow.internal.v0.models.paypal_internal_payment'];
|
|
31955
32194
|
export const paypalInternalRefund = T['io.flow.internal.v0.models.paypal_internal_refund'];
|
|
@@ -32122,6 +32361,7 @@ export const reportForm = T['io.flow.internal.v0.models.report_form'];
|
|
|
32122
32361
|
export const reportInterval = T['io.flow.internal.v0.enums.report_interval'];
|
|
32123
32362
|
export const reportMerchant = T['io.flow.internal.v0.models.report_merchant'];
|
|
32124
32363
|
export const reportOrderReference = T['io.flow.internal.v0.models.report_order_reference'];
|
|
32364
|
+
export const reportOrganizationReference = T['io.flow.internal.v0.models.report_organization_reference'];
|
|
32125
32365
|
export const reportOwner = T['io.flow.internal.v0.models.report_owner'];
|
|
32126
32366
|
export const reportPayment = T['io.flow.internal.v0.models.report_payment'];
|
|
32127
32367
|
export const reportPaymentType = T['io.flow.internal.v0.enums.report_payment_type'];
|
|
@@ -32138,7 +32378,6 @@ export const reportingDebug = T['io.flow.internal.v0.models.reporting_debug'];
|
|
|
32138
32378
|
export const reportingDebugMissingSubsidies = T['io.flow.internal.v0.models.reporting_debug_missing_subsidies'];
|
|
32139
32379
|
export const reportingDestination = T['io.flow.internal.v0.models.reporting_destination'];
|
|
32140
32380
|
export const reportingDetails = T['io.flow.internal.v0.models.reporting_details'];
|
|
32141
|
-
export const reportingEntity = T['io.flow.internal.v0.models.reporting_entity'];
|
|
32142
32381
|
export const reportingFulfillment = T['io.flow.internal.v0.models.reporting_fulfillment'];
|
|
32143
32382
|
export const reportingFulfillmentHas = T['io.flow.internal.v0.models.reporting_fulfillment_has'];
|
|
32144
32383
|
export const reportingFulfillmentIs = T['io.flow.internal.v0.models.reporting_fulfillment_is'];
|
|
@@ -32195,6 +32434,7 @@ export const restrictionRuleOverride = T['io.flow.internal.v0.models.restriction
|
|
|
32195
32434
|
export const restrictionRuleSummary = T['io.flow.internal.v0.models.restriction_rule_summary'];
|
|
32196
32435
|
export const restrictionStatus = T['io.flow.internal.v0.enums.restriction_status'];
|
|
32197
32436
|
export const restrictionStatusMetadata = T['io.flow.internal.v0.models.restriction_status_metadata'];
|
|
32437
|
+
export const restrictionsDailyops = T['io.flow.internal.v0.models.restrictions_dailyops'];
|
|
32198
32438
|
export const resyncByDestinations = T['io.flow.internal.v0.models.resync_by_destinations'];
|
|
32199
32439
|
export const resyncByHs6Destinations = T['io.flow.internal.v0.models.resync_by_hs6_destinations'];
|
|
32200
32440
|
export const resyncByHs6Origin = T['io.flow.internal.v0.models.resync_by_hs6_origin'];
|
|
@@ -32224,6 +32464,11 @@ export const routingMerchant = T['io.flow.internal.v0.models.routing_merchant'];
|
|
|
32224
32464
|
export const routingProcessor = T['io.flow.internal.v0.models.routing_processor'];
|
|
32225
32465
|
export const sandboxSetup = T['io.flow.internal.v0.models.sandbox_setup'];
|
|
32226
32466
|
export const sandboxSetupForm = T['io.flow.internal.v0.models.sandbox_setup_form'];
|
|
32467
|
+
export const sanjayItem = T['io.flow.internal.v0.models.sanjay_item'];
|
|
32468
|
+
export const sanjayItemDeleted = T['io.flow.internal.v0.models.sanjay_item_deleted'];
|
|
32469
|
+
export const sanjayItemForm = T['io.flow.internal.v0.models.sanjay_item_form'];
|
|
32470
|
+
export const sanjayItemType = T['io.flow.internal.v0.enums.sanjay_item_type'];
|
|
32471
|
+
export const sanjayItemUpserted = T['io.flow.internal.v0.models.sanjay_item_upserted'];
|
|
32227
32472
|
export const scheduledPayment = T['io.flow.internal.v0.models.scheduled_payment'];
|
|
32228
32473
|
export const screen = T['io.flow.internal.v0.models.screen'];
|
|
32229
32474
|
export const screenForm = T['io.flow.internal.v0.models.screen_form'];
|
|
@@ -32238,7 +32483,6 @@ export const searchItemSummary = T['io.flow.internal.v0.models.search_item_summa
|
|
|
32238
32483
|
export const searchOrderSummary = T['io.flow.internal.v0.models.search_order_summary'];
|
|
32239
32484
|
export const searchProviderExport = T['io.flow.internal.v0.models.search_provider_export'];
|
|
32240
32485
|
export const searchTrackingSummary = T['io.flow.internal.v0.models.search_tracking_summary'];
|
|
32241
|
-
export const serialReservationError = T['io.flow.internal.v0.enums.serial_reservation_error'];
|
|
32242
32486
|
export const serviceName = T['io.flow.internal.v0.enums.service_name'];
|
|
32243
32487
|
export const sessionCountries = T['io.flow.internal.v0.models.session_countries'];
|
|
32244
32488
|
export const sessionCountry = T['io.flow.internal.v0.models.session_country'];
|
|
@@ -32329,6 +32573,8 @@ export const shopifyOrderLineAttribute = T['io.flow.internal.v0.models.shopify_o
|
|
|
32329
32573
|
export const shopifyOrderLineContent = T['io.flow.internal.v0.models.shopify_order_line_content'];
|
|
32330
32574
|
export const shopifyOrganizationSettings = T['io.flow.internal.v0.models.shopify_organization_settings'];
|
|
32331
32575
|
export const shopifyOrganizationSettingsForm = T['io.flow.internal.v0.models.shopify_organization_settings_form'];
|
|
32576
|
+
export const shopifyPartnerWebhook = T['io.flow.internal.v0.models.shopify_partner_webhook'];
|
|
32577
|
+
export const shopifyPartnerWebhookRaw = T['io.flow.internal.v0.models.shopify_partner_webhook_raw'];
|
|
32332
32578
|
export const shopifyPaymentSummary = T['io.flow.internal.v0.models.shopify_payment_summary'];
|
|
32333
32579
|
export const shopifyProductBundle = T['io.flow.internal.v0.models.shopify_product_bundle'];
|
|
32334
32580
|
export const shopifyProductBundleDeleted = T['io.flow.internal.v0.models.shopify_product_bundle_deleted'];
|
|
@@ -32535,6 +32781,9 @@ export const trackingRequest = T['io.flow.internal.v0.models.tracking_request'];
|
|
|
32535
32781
|
export const trackingRequestUpserted = T['io.flow.internal.v0.models.tracking_request_upserted'];
|
|
32536
32782
|
export const trackingResponse = T['io.flow.internal.v0.models.tracking_response'];
|
|
32537
32783
|
export const trackingResponseUpserted = T['io.flow.internal.v0.models.tracking_response_upserted'];
|
|
32784
|
+
export const trackingSubscription = T['io.flow.internal.v0.models.tracking_subscription'];
|
|
32785
|
+
export const trackingSubscriptionDeleted = T['io.flow.internal.v0.models.tracking_subscription_deleted'];
|
|
32786
|
+
export const trackingSubscriptionUpserted = T['io.flow.internal.v0.models.tracking_subscription_upserted'];
|
|
32538
32787
|
export const trackingUpserted = T['io.flow.internal.v0.models.tracking_upserted'];
|
|
32539
32788
|
export const transaction = T['io.flow.internal.v0.unions.transaction'];
|
|
32540
32789
|
export const transactionAdjustment = T['io.flow.internal.v0.models.transaction_adjustment'];
|