@flowio/api-internal-prop-types 9.24.126 → 9.24.128
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 +141 -8
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +141 -8
- package/src/api-internal.js +193 -44
package/src/api-internal.js
CHANGED
|
@@ -1459,6 +1459,27 @@ T['io.flow.partner.v0.models.partner_order_identifier'] = PropTypes.exact({
|
|
|
1459
1459
|
number: PropTypes.string.isRequired,
|
|
1460
1460
|
});
|
|
1461
1461
|
|
|
1462
|
+
T['io.flow.channel.internal.v0.models.channel_organization_domain'] = PropTypes.exact({
|
|
1463
|
+
internal: PropTypes.string.isRequired,
|
|
1464
|
+
'public': PropTypes.string.isRequired,
|
|
1465
|
+
});
|
|
1466
|
+
|
|
1467
|
+
T['io.flow.channel.internal.v0.models.channel_organization_metadata'] = PropTypes.exact({
|
|
1468
|
+
domain: T['io.flow.channel.internal.v0.models.channel_organization_domain'].isRequired,
|
|
1469
|
+
token: PropTypes.string.isRequired,
|
|
1470
|
+
});
|
|
1471
|
+
|
|
1472
|
+
T['io.flow.channel.internal.v0.enums.channel_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator', 'sellability', 'all']);
|
|
1473
|
+
|
|
1474
|
+
T['io.flow.channel.internal.v0.models.channel_organization_token_body'] = PropTypes.exact({
|
|
1475
|
+
cleartext: PropTypes.string.isRequired,
|
|
1476
|
+
});
|
|
1477
|
+
|
|
1478
|
+
T['io.flow.channel.internal.v0.models.channel_organization_token'] = PropTypes.exact({
|
|
1479
|
+
token: T['io.flow.channel.internal.v0.models.channel_organization_token_body'].isRequired,
|
|
1480
|
+
service: T['io.flow.channel.internal.v0.enums.channel_service'].isRequired,
|
|
1481
|
+
});
|
|
1482
|
+
|
|
1462
1483
|
T['io.flow.channel.internal.v0.enums.channel_order_acceptance_failure_reason_code'] = PropTypes.oneOf(['channel_order_mor_invalid', 'channel_order_does_not_exist']);
|
|
1463
1484
|
|
|
1464
1485
|
T['io.flow.channel.internal.v0.models.channel_order_acceptance_failure'] = PropTypes.exact({
|
|
@@ -7037,7 +7058,10 @@ T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'] = PropTyp
|
|
|
7037
7058
|
selection_stratey: T['io.flow.fulfillment.v0.enums.preferred_service_selection_strategy'].isRequired,
|
|
7038
7059
|
});
|
|
7039
7060
|
|
|
7040
|
-
T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf(
|
|
7061
|
+
T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf(
|
|
7062
|
+
['flow-usa', 'flow-irl', 'flow-can', 'ge-usa', 'ge-can', 'ge-gbr', 'ge-irl'],
|
|
7063
|
+
);
|
|
7064
|
+
|
|
7041
7065
|
T['io.flow.common.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_community', 'local']);
|
|
7042
7066
|
T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
|
|
7043
7067
|
T['io.flow.fulfillment.v0.enums.fulfillment_routing'] = PropTypes.oneOf(['fulfilled_from_center', 'fulfillment_service']);
|
|
@@ -9366,6 +9390,14 @@ T['io.flow.internal.v0.models.main_transaction_deleted_v2'] = PropTypes.exact({
|
|
|
9366
9390
|
id: PropTypes.string.isRequired,
|
|
9367
9391
|
});
|
|
9368
9392
|
|
|
9393
|
+
T['io.flow.internal.v0.models.fulfillment_status_deleted'] = PropTypes.exact({
|
|
9394
|
+
discriminator: PropTypes.oneOf(['fulfillment_status_deleted']).isRequired,
|
|
9395
|
+
event_id: PropTypes.string.isRequired,
|
|
9396
|
+
timestamp: PropTypes.string.isRequired,
|
|
9397
|
+
organization: PropTypes.string.isRequired,
|
|
9398
|
+
id: PropTypes.string.isRequired,
|
|
9399
|
+
});
|
|
9400
|
+
|
|
9369
9401
|
T['io.flow.internal.v0.models.organization_account_deleted'] = PropTypes.exact({
|
|
9370
9402
|
discriminator: PropTypes.oneOf(['organization_account_deleted']).isRequired,
|
|
9371
9403
|
event_id: PropTypes.string.isRequired,
|
|
@@ -10963,6 +10995,11 @@ T['io.flow.internal.v0.models.report_bank_account_cleartext'] = PropTypes.exact(
|
|
|
10963
10995
|
|
|
10964
10996
|
T['io.flow.internal.v0.enums.sarvesh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
10965
10997
|
|
|
10998
|
+
T['io.flow.internal.v0.models.price_inclusivity'] = PropTypes.exact({
|
|
10999
|
+
tax: PropTypes.bool,
|
|
11000
|
+
duty: PropTypes.bool,
|
|
11001
|
+
});
|
|
11002
|
+
|
|
10966
11003
|
T['io.flow.internal.v0.models.payment_is'] = PropTypes.exact({
|
|
10967
11004
|
lvg: PropTypes.bool.isRequired,
|
|
10968
11005
|
manual: PropTypes.bool.isRequired,
|
|
@@ -10987,6 +11024,8 @@ T['io.flow.internal.v0.models.reporting_conversion_rates'] = PropTypes.exact({
|
|
|
10987
11024
|
destination_country: PropTypes.number,
|
|
10988
11025
|
usd: PropTypes.number.isRequired,
|
|
10989
11026
|
eur: PropTypes.number.isRequired,
|
|
11027
|
+
guaranteed: PropTypes.number,
|
|
11028
|
+
spot: PropTypes.number,
|
|
10990
11029
|
});
|
|
10991
11030
|
|
|
10992
11031
|
T['io.flow.internal.v0.models.reporting_currencies'] = PropTypes.exact({
|
|
@@ -11115,7 +11154,7 @@ T['io.flow.internal.v0.models.restriction_rule_organization_exemption'] = PropTy
|
|
|
11115
11154
|
is_rule_active: PropTypes.bool,
|
|
11116
11155
|
});
|
|
11117
11156
|
|
|
11118
|
-
T['io.flow.internal.v0.enums.restriction_organization_source'] = PropTypes.oneOf(['shopify', 'enterprise']);
|
|
11157
|
+
T['io.flow.internal.v0.enums.restriction_organization_source'] = PropTypes.oneOf(['shopify', 'smb', 'enterprise']);
|
|
11119
11158
|
T['io.flow.internal.v0.enums.restriction_action'] = PropTypes.oneOf(['prohibited', 'restricted']);
|
|
11120
11159
|
|
|
11121
11160
|
T['io.flow.product.v0.models.product_taxonomy_value'] = PropTypes.exact({
|
|
@@ -11213,7 +11252,7 @@ T['io.flow.internal.v0.models.shopify_product_create_upserted'] = PropTypes.exac
|
|
|
11213
11252
|
shopify_product_create: T['io.flow.internal.v0.models.shopify_product_create_webhook_event'].isRequired,
|
|
11214
11253
|
});
|
|
11215
11254
|
|
|
11216
|
-
T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['shopify', 'enterprise']);
|
|
11255
|
+
T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['shopify', 'smb', 'enterprise']);
|
|
11217
11256
|
|
|
11218
11257
|
T['io.flow.internal.v0.models.restriction_summary_counts'] = PropTypes.exact({
|
|
11219
11258
|
pending_restriction_count: PropTypes.number.isRequired,
|
|
@@ -14604,6 +14643,23 @@ T['io.flow.internal.v0.unions.fulfillment_proof'] = PropTypes.oneOfType([
|
|
|
14604
14643
|
T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'],
|
|
14605
14644
|
]);
|
|
14606
14645
|
|
|
14646
|
+
T['io.flow.internal.v0.models.fulfillment_status_summary'] = PropTypes.exact({
|
|
14647
|
+
id: PropTypes.string.isRequired,
|
|
14648
|
+
order_number: PropTypes.string.isRequired,
|
|
14649
|
+
organization_id: PropTypes.string.isRequired,
|
|
14650
|
+
fulfilled_at: PropTypes.string.isRequired,
|
|
14651
|
+
sequence_number: PropTypes.number.isRequired,
|
|
14652
|
+
completes_order: PropTypes.bool.isRequired,
|
|
14653
|
+
});
|
|
14654
|
+
|
|
14655
|
+
T['io.flow.internal.v0.models.fulfillment_status_upserted'] = PropTypes.exact({
|
|
14656
|
+
discriminator: PropTypes.oneOf(['fulfillment_status_upserted']).isRequired,
|
|
14657
|
+
event_id: PropTypes.string.isRequired,
|
|
14658
|
+
timestamp: PropTypes.string.isRequired,
|
|
14659
|
+
organization: PropTypes.string.isRequired,
|
|
14660
|
+
fulfillment: T['io.flow.internal.v0.models.fulfillment_status_summary'].isRequired,
|
|
14661
|
+
});
|
|
14662
|
+
|
|
14607
14663
|
T['io.flow.internal.v0.models.reporting_monetary_value'] = PropTypes.exact({
|
|
14608
14664
|
transaction: PropTypes.number.isRequired,
|
|
14609
14665
|
merchant: PropTypes.number.isRequired,
|
|
@@ -14645,6 +14701,11 @@ T['io.flow.internal.v0.models.reporting_merchant_fees'] = PropTypes.exact({
|
|
|
14645
14701
|
processing: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14646
14702
|
rate_lock: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14647
14703
|
transfer: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14704
|
+
product_fee: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14705
|
+
estimated_tax: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14706
|
+
estimated_duty: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14707
|
+
estimated_duties_and_taxes: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14708
|
+
td_fx_diff: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14648
14709
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14649
14710
|
});
|
|
14650
14711
|
|
|
@@ -14675,6 +14736,11 @@ T['io.flow.internal.v0.models.reporting_fees'] = PropTypes.exact({
|
|
|
14675
14736
|
mor: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14676
14737
|
fx: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14677
14738
|
sp: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14739
|
+
product_fee: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14740
|
+
estimated_tax: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14741
|
+
estimated_duty: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14742
|
+
estimated_duties_and_taxes: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14743
|
+
td_fx_diff: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14678
14744
|
});
|
|
14679
14745
|
|
|
14680
14746
|
T['io.flow.internal.v0.models.reporting_shopper_fees'] = PropTypes.exact({
|
|
@@ -14731,6 +14797,11 @@ T['io.flow.internal.v0.models.merchant_fees'] = PropTypes.exact({
|
|
|
14731
14797
|
processing: PropTypes.number.isRequired,
|
|
14732
14798
|
rate_lock: PropTypes.number.isRequired,
|
|
14733
14799
|
transfer: PropTypes.number.isRequired,
|
|
14800
|
+
product_fee: PropTypes.number,
|
|
14801
|
+
estimated_tax: PropTypes.number,
|
|
14802
|
+
estimated_duty: PropTypes.number,
|
|
14803
|
+
estimated_duties_and_taxes: PropTypes.number,
|
|
14804
|
+
td_fx_diff: PropTypes.number,
|
|
14734
14805
|
total: PropTypes.number.isRequired,
|
|
14735
14806
|
});
|
|
14736
14807
|
|
|
@@ -16293,6 +16364,7 @@ T['io.flow.internal.v0.models.sales_payment_record'] = PropTypes.exact({
|
|
|
16293
16364
|
fees: T['io.flow.internal.v0.models.reporting_fees'].isRequired,
|
|
16294
16365
|
conversion_rate: T['io.flow.internal.v0.models.reporting_conversion_rates'].isRequired,
|
|
16295
16366
|
payment_is: T['io.flow.internal.v0.models.payment_is'].isRequired,
|
|
16367
|
+
price_inclusivity: T['io.flow.internal.v0.models.price_inclusivity'],
|
|
16296
16368
|
destination_country: PropTypes.string.isRequired,
|
|
16297
16369
|
fulfilled_at: PropTypes.string,
|
|
16298
16370
|
});
|
|
@@ -17352,43 +17424,17 @@ T['io.flow.internal.v0.models.merchant_override_upserted'] = PropTypes.exact({
|
|
|
17352
17424
|
merchant_override: T['io.flow.internal.v0.models.merchant_override'].isRequired,
|
|
17353
17425
|
});
|
|
17354
17426
|
|
|
17355
|
-
T['io.flow.internal.v0.enums.
|
|
17427
|
+
T['io.flow.internal.v0.enums.channel_transaction_trigger_type'] = PropTypes.oneOf(['capture', 'order']);
|
|
17356
17428
|
|
|
17357
|
-
T['io.flow.internal.v0.models.
|
|
17358
|
-
|
|
17359
|
-
|
|
17360
|
-
|
|
17361
|
-
T['io.flow.common.v0.models.organization_defaults'] = PropTypes.exact({
|
|
17362
|
-
country: PropTypes.string.isRequired,
|
|
17363
|
-
base_currency: PropTypes.string.isRequired,
|
|
17364
|
-
language: PropTypes.string.isRequired,
|
|
17365
|
-
locale: PropTypes.string.isRequired,
|
|
17366
|
-
timezone: PropTypes.string.isRequired,
|
|
17367
|
-
});
|
|
17368
|
-
|
|
17369
|
-
T['io.flow.channel.v0.models.channel_organization_form'] = PropTypes.exact({
|
|
17370
|
-
key: PropTypes.string.isRequired,
|
|
17371
|
-
name: PropTypes.string,
|
|
17372
|
-
slug: PropTypes.string,
|
|
17373
|
-
defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
|
|
17374
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
17429
|
+
T['io.flow.internal.v0.models.channel_transaction_trigger_metadata'] = PropTypes.exact({
|
|
17430
|
+
discriminator: PropTypes.oneOf(['channel_transaction_trigger_metadata']).isRequired,
|
|
17431
|
+
trigger_type: T['io.flow.internal.v0.enums.channel_transaction_trigger_type'].isRequired,
|
|
17375
17432
|
});
|
|
17376
17433
|
|
|
17377
|
-
T['io.flow.
|
|
17378
|
-
form: T['io.flow.channel.v0.models.channel_organization_form'].isRequired,
|
|
17379
|
-
metadata: T['io.flow.channel.shopify.internal.v0.models.shopify_metadata'].isRequired,
|
|
17380
|
-
});
|
|
17381
|
-
|
|
17382
|
-
T['io.flow.channel.v0.models.channel_organization_put_form'] = PropTypes.exact({
|
|
17383
|
-
name: PropTypes.string,
|
|
17384
|
-
slug: PropTypes.string,
|
|
17385
|
-
defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
|
|
17386
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
17387
|
-
});
|
|
17434
|
+
T['io.flow.internal.v0.enums.shopify_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator', 'sellability']);
|
|
17388
17435
|
|
|
17389
|
-
T['io.flow.
|
|
17390
|
-
|
|
17391
|
-
metadata: T['io.flow.channel.shopify.internal.v0.models.shopify_metadata'].isRequired,
|
|
17436
|
+
T['io.flow.internal.v0.models.shopify_channel_organization_token'] = PropTypes.exact({
|
|
17437
|
+
cleartext: PropTypes.string.isRequired,
|
|
17392
17438
|
});
|
|
17393
17439
|
|
|
17394
17440
|
T['io.flow.internal.v0.models.shopify_channel_organization_tokens'] = PropTypes.exact({
|
|
@@ -17431,9 +17477,48 @@ T['io.flow.internal.v0.models.shopify_metadata'] = PropTypes.exact({
|
|
|
17431
17477
|
token: PropTypes.string.isRequired,
|
|
17432
17478
|
});
|
|
17433
17479
|
|
|
17434
|
-
T['io.flow.internal.v0.models.
|
|
17435
|
-
|
|
17436
|
-
|
|
17480
|
+
T['io.flow.internal.v0.models.channel_organization_publication_owner_put_form'] = PropTypes.exact({
|
|
17481
|
+
owner: T['io.flow.internal.v0.enums.catalog_publication_owner'].isRequired,
|
|
17482
|
+
});
|
|
17483
|
+
|
|
17484
|
+
T['io.flow.internal.v0.models.channel_organization_publication_owner'] = PropTypes.exact({
|
|
17485
|
+
owner: T['io.flow.internal.v0.enums.catalog_publication_owner'].isRequired,
|
|
17486
|
+
});
|
|
17487
|
+
|
|
17488
|
+
T['io.flow.internal.v0.models.channel_organization_domain'] = PropTypes.exact({
|
|
17489
|
+
internal: PropTypes.string.isRequired,
|
|
17490
|
+
'public': PropTypes.string.isRequired,
|
|
17491
|
+
});
|
|
17492
|
+
|
|
17493
|
+
T['io.flow.internal.v0.models.channel_organization_metadata'] = PropTypes.exact({
|
|
17494
|
+
domain: T['io.flow.internal.v0.models.channel_organization_domain'].isRequired,
|
|
17495
|
+
token: PropTypes.string.isRequired,
|
|
17496
|
+
});
|
|
17497
|
+
|
|
17498
|
+
T['io.flow.internal.v0.enums.channel_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator', 'sellability', 'all']);
|
|
17499
|
+
|
|
17500
|
+
T['io.flow.internal.v0.models.channel_organization_token_body'] = PropTypes.exact({
|
|
17501
|
+
cleartext: PropTypes.string.isRequired,
|
|
17502
|
+
});
|
|
17503
|
+
|
|
17504
|
+
T['io.flow.common.v0.models.organization_defaults'] = PropTypes.exact({
|
|
17505
|
+
country: PropTypes.string.isRequired,
|
|
17506
|
+
base_currency: PropTypes.string.isRequired,
|
|
17507
|
+
language: PropTypes.string.isRequired,
|
|
17508
|
+
locale: PropTypes.string.isRequired,
|
|
17509
|
+
timezone: PropTypes.string.isRequired,
|
|
17510
|
+
});
|
|
17511
|
+
|
|
17512
|
+
T['io.flow.channel.v0.models.channel_organization_put_form'] = PropTypes.exact({
|
|
17513
|
+
name: PropTypes.string,
|
|
17514
|
+
slug: PropTypes.string,
|
|
17515
|
+
defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
|
|
17516
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
17517
|
+
});
|
|
17518
|
+
|
|
17519
|
+
T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify_form'] = PropTypes.exact({
|
|
17520
|
+
form: T['io.flow.channel.v0.models.channel_organization_put_form'].isRequired,
|
|
17521
|
+
metadata: T['io.flow.channel.shopify.internal.v0.models.shopify_metadata'].isRequired,
|
|
17437
17522
|
});
|
|
17438
17523
|
|
|
17439
17524
|
T['io.flow.internal.v0.models.channel_organization_shopify_form'] = PropTypes.exact({
|
|
@@ -17441,12 +17526,37 @@ T['io.flow.internal.v0.models.channel_organization_shopify_form'] = PropTypes.ex
|
|
|
17441
17526
|
metadata: T['io.flow.internal.v0.models.shopify_metadata'].isRequired,
|
|
17442
17527
|
});
|
|
17443
17528
|
|
|
17444
|
-
T['io.flow.
|
|
17445
|
-
|
|
17529
|
+
T['io.flow.channel.v0.models.channel_organization_form'] = PropTypes.exact({
|
|
17530
|
+
key: PropTypes.string.isRequired,
|
|
17531
|
+
name: PropTypes.string,
|
|
17532
|
+
slug: PropTypes.string,
|
|
17533
|
+
defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
|
|
17534
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
17446
17535
|
});
|
|
17447
17536
|
|
|
17448
|
-
T['io.flow.internal.v0.models.
|
|
17449
|
-
|
|
17537
|
+
T['io.flow.channel.internal.v0.models.channel_organization_installation_post_form'] = PropTypes.exact({
|
|
17538
|
+
form: T['io.flow.channel.v0.models.channel_organization_form'].isRequired,
|
|
17539
|
+
metadata: T['io.flow.channel.internal.v0.models.channel_organization_metadata'].isRequired,
|
|
17540
|
+
});
|
|
17541
|
+
|
|
17542
|
+
T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify_post_form'] = PropTypes.exact({
|
|
17543
|
+
form: T['io.flow.channel.v0.models.channel_organization_form'].isRequired,
|
|
17544
|
+
metadata: T['io.flow.channel.shopify.internal.v0.models.shopify_metadata'].isRequired,
|
|
17545
|
+
});
|
|
17546
|
+
|
|
17547
|
+
T['io.flow.internal.v0.models.channel_organization_shopify_post_form'] = PropTypes.exact({
|
|
17548
|
+
form: T['io.flow.channel.v0.models.channel_organization_form'].isRequired,
|
|
17549
|
+
metadata: T['io.flow.internal.v0.models.shopify_metadata'].isRequired,
|
|
17550
|
+
});
|
|
17551
|
+
|
|
17552
|
+
T['io.flow.internal.v0.models.channel_organization_installation_post_form'] = PropTypes.exact({
|
|
17553
|
+
form: T['io.flow.channel.v0.models.channel_organization_form'].isRequired,
|
|
17554
|
+
metadata: T['io.flow.internal.v0.models.channel_organization_metadata'].isRequired,
|
|
17555
|
+
});
|
|
17556
|
+
|
|
17557
|
+
T['io.flow.internal.v0.models.channel_organization_token'] = PropTypes.exact({
|
|
17558
|
+
token: T['io.flow.internal.v0.models.channel_organization_token_body'].isRequired,
|
|
17559
|
+
service: T['io.flow.internal.v0.enums.channel_service'].isRequired,
|
|
17450
17560
|
});
|
|
17451
17561
|
|
|
17452
17562
|
T['io.flow.internal.v0.enums.channel_order_fulfillment_status_code'] = PropTypes.oneOf(['unfulfilled', 'fulfilled', 'partial', 'cancelled']);
|
|
@@ -21611,6 +21721,11 @@ T['io.flow.billing.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
|
|
|
21611
21721
|
'duty_guarantee',
|
|
21612
21722
|
'mor',
|
|
21613
21723
|
'fraud',
|
|
21724
|
+
'tax',
|
|
21725
|
+
'duty',
|
|
21726
|
+
'tax_and_duty',
|
|
21727
|
+
'product',
|
|
21728
|
+
'tax_and_duty_fx_diff',
|
|
21614
21729
|
'fx',
|
|
21615
21730
|
'processing',
|
|
21616
21731
|
'rate_lock',
|
|
@@ -23923,6 +24038,11 @@ T['io.flow.channel.v0.models.channel_organization'] = PropTypes.exact({
|
|
|
23923
24038
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
23924
24039
|
});
|
|
23925
24040
|
|
|
24041
|
+
T['io.flow.channel.internal.v0.models.channel_organization_installation'] = PropTypes.exact({
|
|
24042
|
+
organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
|
|
24043
|
+
tokens: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_organization_token']).isRequired,
|
|
24044
|
+
});
|
|
24045
|
+
|
|
23926
24046
|
T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
|
|
23927
24047
|
organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
|
|
23928
24048
|
|
|
@@ -23936,6 +24056,11 @@ T['io.flow.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
|
|
|
23936
24056
|
tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_channel_organization_tokens']).isRequired,
|
|
23937
24057
|
});
|
|
23938
24058
|
|
|
24059
|
+
T['io.flow.internal.v0.models.channel_organization_installation'] = PropTypes.exact({
|
|
24060
|
+
organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
|
|
24061
|
+
tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_organization_token']).isRequired,
|
|
24062
|
+
});
|
|
24063
|
+
|
|
23939
24064
|
T['io.flow.internal.v0.models.channel_organization_identifier'] = PropTypes.exact({
|
|
23940
24065
|
id: PropTypes.string.isRequired,
|
|
23941
24066
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
@@ -24027,6 +24152,7 @@ T['io.flow.internal.v0.unions.task_metadata'] = PropTypes.oneOfType([
|
|
|
24027
24152
|
T['io.flow.internal.v0.models.tax_duty_reason_code_metadata'],
|
|
24028
24153
|
T['io.flow.internal.v0.models.accounting_return_metadata'],
|
|
24029
24154
|
T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_fee_metadata'],
|
|
24155
|
+
T['io.flow.internal.v0.models.channel_transaction_trigger_metadata'],
|
|
24030
24156
|
]);
|
|
24031
24157
|
|
|
24032
24158
|
T['io.flow.common.v0.models.price'] = PropTypes.exact({
|
|
@@ -24438,6 +24564,7 @@ T['io.flow.fulfillment.v0.models.delivery_option'] = PropTypes.exact({
|
|
|
24438
24564
|
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
24439
24565
|
price: T['io.flow.fulfillment.v0.models.price_with_base_and_details'].isRequired,
|
|
24440
24566
|
service: T['io.flow.fulfillment.v0.models.service_summary'].isRequired,
|
|
24567
|
+
actual_service: T['io.flow.fulfillment.v0.models.service_summary'],
|
|
24441
24568
|
tier: T['io.flow.fulfillment.v0.models.tier_summary'].isRequired,
|
|
24442
24569
|
window: T['io.flow.fulfillment.v0.models.delivery_window'].isRequired,
|
|
24443
24570
|
rule_outcome: T['io.flow.fulfillment.v0.unions.tier_rule_outcome'],
|
|
@@ -24735,6 +24862,11 @@ T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
|
|
|
24735
24862
|
processing: T['io.flow.internal.v0.models.fee'],
|
|
24736
24863
|
rate_lock: T['io.flow.internal.v0.models.fee'].isRequired,
|
|
24737
24864
|
mor: T['io.flow.internal.v0.models.fee'],
|
|
24865
|
+
tax: T['io.flow.internal.v0.models.fee'],
|
|
24866
|
+
duty: T['io.flow.internal.v0.models.fee'],
|
|
24867
|
+
tax_and_duty: T['io.flow.internal.v0.models.fee'],
|
|
24868
|
+
product: T['io.flow.internal.v0.models.fee'],
|
|
24869
|
+
tax_and_duty_fx_diff: T['io.flow.internal.v0.models.fee'],
|
|
24738
24870
|
fx: T['io.flow.internal.v0.models.fee'],
|
|
24739
24871
|
duty_guarantee: T['io.flow.internal.v0.models.fee'],
|
|
24740
24872
|
transfer: T['io.flow.internal.v0.models.fee'],
|
|
@@ -26759,6 +26891,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26759
26891
|
T['io.flow.internal.v0.models.organization_account_deleted'],
|
|
26760
26892
|
T['io.flow.internal.v0.models.account_transactions_export_request'],
|
|
26761
26893
|
T['io.flow.internal.v0.models.account_orders_export_request'],
|
|
26894
|
+
T['io.flow.internal.v0.models.fulfillment_status_upserted'],
|
|
26895
|
+
T['io.flow.internal.v0.models.fulfillment_status_deleted'],
|
|
26762
26896
|
T['io.flow.internal.v0.models.main_transaction_upserted'],
|
|
26763
26897
|
T['io.flow.internal.v0.models.main_transaction_deleted'],
|
|
26764
26898
|
T['io.flow.internal.v0.models.main_transaction_upserted_v2'],
|
|
@@ -27257,7 +27391,7 @@ T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf(['dtce_with_d
|
|
|
27257
27391
|
T['io.flow.internal.v0.enums.carrier_charge_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'charge', 'revenue_share']);
|
|
27258
27392
|
T['io.flow.internal.v0.enums.carrier_label_generation_method'] = PropTypes.oneOf(['direct', 'easypost']);
|
|
27259
27393
|
T['io.flow.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'channel_initiated']);
|
|
27260
|
-
T['io.flow.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'processing']);
|
|
27394
|
+
T['io.flow.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'processing', 'order']);
|
|
27261
27395
|
T['io.flow.internal.v0.enums.compliance_type'] = PropTypes.oneOf(['weee']);
|
|
27262
27396
|
T['io.flow.internal.v0.enums.crossdock_tracking_status'] = PropTypes.oneOf(['notified', 'received', 'shipped']);
|
|
27263
27397
|
T['io.flow.internal.v0.enums.deminimis_adjustment_type'] = PropTypes.oneOf(['none', 'duty', 'vat', 'vat_and_duty']);
|
|
@@ -27296,6 +27430,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27296
27430
|
'organization_account_deleted',
|
|
27297
27431
|
'account_transactions_export_request',
|
|
27298
27432
|
'account_orders_export_request',
|
|
27433
|
+
'fulfillment_status_upserted',
|
|
27434
|
+
'fulfillment_status_deleted',
|
|
27299
27435
|
'main_transaction_upserted',
|
|
27300
27436
|
'main_transaction_deleted',
|
|
27301
27437
|
'main_transaction_upserted_v2',
|
|
@@ -30193,9 +30329,13 @@ export const channelOrderSummary = T['io.flow.internal.v0.models.channel_order_s
|
|
|
30193
30329
|
export const channelOrderSummaryDeleted = T['io.flow.internal.v0.models.channel_order_summary_deleted'];
|
|
30194
30330
|
export const channelOrderSummaryFulfillmentDetails = T['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'];
|
|
30195
30331
|
export const channelOrderSummaryUpserted = T['io.flow.internal.v0.models.channel_order_summary_upserted'];
|
|
30332
|
+
export const channelOrganizationDomain = T['io.flow.internal.v0.models.channel_organization_domain'];
|
|
30196
30333
|
export const channelOrganizationIdentifier = T['io.flow.internal.v0.models.channel_organization_identifier'];
|
|
30197
30334
|
export const channelOrganizationIdentifierDeleted = T['io.flow.internal.v0.models.channel_organization_identifier_deleted'];
|
|
30198
30335
|
export const channelOrganizationIdentifierUpserted = T['io.flow.internal.v0.models.channel_organization_identifier_upserted'];
|
|
30336
|
+
export const channelOrganizationInstallation = T['io.flow.internal.v0.models.channel_organization_installation'];
|
|
30337
|
+
export const channelOrganizationInstallationPostForm = T['io.flow.internal.v0.models.channel_organization_installation_post_form'];
|
|
30338
|
+
export const channelOrganizationMetadata = T['io.flow.internal.v0.models.channel_organization_metadata'];
|
|
30199
30339
|
export const channelOrganizationPublicationOwner = T['io.flow.internal.v0.models.channel_organization_publication_owner'];
|
|
30200
30340
|
export const channelOrganizationPublicationOwnerPutForm = T['io.flow.internal.v0.models.channel_organization_publication_owner_put_form'];
|
|
30201
30341
|
export const channelOrganizationSellabilityStatus = T['io.flow.internal.v0.models.channel_organization_sellability_status'];
|
|
@@ -30203,12 +30343,17 @@ export const channelOrganizationSellabilityStatusPutForm = T['io.flow.internal.v
|
|
|
30203
30343
|
export const channelOrganizationShopify = T['io.flow.internal.v0.models.channel_organization_shopify'];
|
|
30204
30344
|
export const channelOrganizationShopifyForm = T['io.flow.internal.v0.models.channel_organization_shopify_form'];
|
|
30205
30345
|
export const channelOrganizationShopifyPostForm = T['io.flow.internal.v0.models.channel_organization_shopify_post_form'];
|
|
30346
|
+
export const channelOrganizationToken = T['io.flow.internal.v0.models.channel_organization_token'];
|
|
30347
|
+
export const channelOrganizationTokenBody = T['io.flow.internal.v0.models.channel_organization_token_body'];
|
|
30206
30348
|
export const channelRateMetadata = T['io.flow.internal.v0.unions.channel_rate_metadata'];
|
|
30207
30349
|
export const channelRateMetadataIdentity = T['io.flow.internal.v0.models.channel_rate_metadata_identity'];
|
|
30208
30350
|
export const channelRateMetadataRate = T['io.flow.internal.v0.models.channel_rate_metadata_rate'];
|
|
30351
|
+
export const channelService = T['io.flow.internal.v0.enums.channel_service'];
|
|
30209
30352
|
export const channelTransaction = T['io.flow.internal.v0.models.channel_transaction'];
|
|
30210
30353
|
export const channelTransactionDeleted = T['io.flow.internal.v0.models.channel_transaction_deleted'];
|
|
30211
30354
|
export const channelTransactionRate = T['io.flow.internal.v0.models.channel_transaction_rate'];
|
|
30355
|
+
export const channelTransactionTriggerMetadata = T['io.flow.internal.v0.models.channel_transaction_trigger_metadata'];
|
|
30356
|
+
export const channelTransactionTriggerType = T['io.flow.internal.v0.enums.channel_transaction_trigger_type'];
|
|
30212
30357
|
export const channelTransactionType = T['io.flow.internal.v0.enums.channel_transaction_type'];
|
|
30213
30358
|
export const channelTransactionUpserted = T['io.flow.internal.v0.models.channel_transaction_upserted'];
|
|
30214
30359
|
export const chapterCheckResult = T['io.flow.internal.v0.models.chapter_check_result'];
|
|
@@ -30589,6 +30734,9 @@ export const fulfillmentProofShippingNotificationReference = T['io.flow.internal
|
|
|
30589
30734
|
export const fulfillmentReference = T['io.flow.internal.v0.models.fulfillment_reference'];
|
|
30590
30735
|
export const fulfillmentShopperBreakdown = T['io.flow.internal.v0.models.fulfillment_shopper_breakdown'];
|
|
30591
30736
|
export const fulfillmentSnapshot = T['io.flow.internal.v0.models.fulfillment_snapshot'];
|
|
30737
|
+
export const fulfillmentStatusDeleted = T['io.flow.internal.v0.models.fulfillment_status_deleted'];
|
|
30738
|
+
export const fulfillmentStatusSummary = T['io.flow.internal.v0.models.fulfillment_status_summary'];
|
|
30739
|
+
export const fulfillmentStatusUpserted = T['io.flow.internal.v0.models.fulfillment_status_upserted'];
|
|
30592
30740
|
export const fulfillmentSubsidyBreakdown = T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'];
|
|
30593
30741
|
export const fulfillmentTrigger = T['io.flow.internal.v0.unions.fulfillment_trigger'];
|
|
30594
30742
|
export const fulfillmentTriggerProof = T['io.flow.internal.v0.models.fulfillment_trigger_proof'];
|
|
@@ -31093,6 +31241,7 @@ export const prateekItemForm = T['io.flow.internal.v0.models.prateek_item_form']
|
|
|
31093
31241
|
export const prateekItemType = T['io.flow.internal.v0.enums.prateek_item_type'];
|
|
31094
31242
|
export const prediction = T['io.flow.internal.v0.models.prediction'];
|
|
31095
31243
|
export const preferredBillingSchedule = T['io.flow.internal.v0.enums.preferred_billing_schedule'];
|
|
31244
|
+
export const priceInclusivity = T['io.flow.internal.v0.models.price_inclusivity'];
|
|
31096
31245
|
export const priceSelector = T['io.flow.internal.v0.enums.price_selector'];
|
|
31097
31246
|
export const prioritizedCenterReference = T['io.flow.internal.v0.models.prioritized_center_reference'];
|
|
31098
31247
|
export const processingTransaction = T['io.flow.internal.v0.models.processing_transaction'];
|