@flowio/api-prop-types 10.16.79 → 10.16.82
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.d.ts +191 -12
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +191 -12
- package/src/api.js +293 -55
package/src/api.js
CHANGED
|
@@ -191,6 +191,23 @@ T['io.flow.shopify.external.v0.models.shopify_inventory_level_response_wrapper']
|
|
|
191
191
|
inventory_levels: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_inventory_level']).isRequired,
|
|
192
192
|
});
|
|
193
193
|
|
|
194
|
+
T['io.flow.shopify.external.v0.models.shopify_country_harmonized_system_code'] = PropTypes.exact({
|
|
195
|
+
country_code: PropTypes.string.isRequired,
|
|
196
|
+
harmonized_system_code: PropTypes.string.isRequired,
|
|
197
|
+
});
|
|
198
|
+
|
|
199
|
+
T['io.flow.shopify.external.v0.models.shopify_inventory_item_summary'] = PropTypes.exact({
|
|
200
|
+
country_code_of_origin: PropTypes.string,
|
|
201
|
+
|
|
202
|
+
country_harmonized_system_codes: PropTypes.arrayOf(
|
|
203
|
+
T['io.flow.shopify.external.v0.models.shopify_country_harmonized_system_code'],
|
|
204
|
+
),
|
|
205
|
+
|
|
206
|
+
harmonized_system_code: PropTypes.string,
|
|
207
|
+
updated_at: PropTypes.string.isRequired,
|
|
208
|
+
requires_shipping: PropTypes.bool.isRequired,
|
|
209
|
+
});
|
|
210
|
+
|
|
194
211
|
T['io.flow.shopify.external.v0.models.shopify_gift_card_adjustment'] = PropTypes.exact({
|
|
195
212
|
id: PropTypes.number.isRequired,
|
|
196
213
|
gift_card_id: PropTypes.number.isRequired,
|
|
@@ -658,7 +675,6 @@ T['io.flow.shopify.external.v0.models.request_shopify_gift_card'] = PropTypes.ex
|
|
|
658
675
|
});
|
|
659
676
|
|
|
660
677
|
T['io.flow.shopify.external.v0.enums.weight_unit'] = PropTypes.oneOf(['g', 'kg', 'oz', 'lb']);
|
|
661
|
-
T['io.flow.shopify.external.v0.enums.inventory_policy'] = PropTypes.oneOf(['deny', 'continue']);
|
|
662
678
|
T['io.flow.shopify.external.v0.enums.inventory_management'] = PropTypes.oneOf(['blank', 'shopify']);
|
|
663
679
|
T['io.flow.shopify.external.v0.enums.fulfillment_service'] = PropTypes.oneOf(['manual', 'gift_card']);
|
|
664
680
|
T['io.flow.shopify.external.v0.enums.published_scope'] = PropTypes.oneOf(['global']);
|
|
@@ -675,9 +691,9 @@ T['io.flow.shopify.external.v0.models.product_image'] = PropTypes.exact({
|
|
|
675
691
|
product_id: PropTypes.number.isRequired,
|
|
676
692
|
variant_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
677
693
|
src: PropTypes.string,
|
|
678
|
-
position: PropTypes.number
|
|
679
|
-
created_at: PropTypes.string
|
|
680
|
-
updated_at: PropTypes.string
|
|
694
|
+
position: PropTypes.number,
|
|
695
|
+
created_at: PropTypes.string,
|
|
696
|
+
updated_at: PropTypes.string,
|
|
681
697
|
alt: PropTypes.string,
|
|
682
698
|
});
|
|
683
699
|
|
|
@@ -776,6 +792,12 @@ T['io.flow.shopify.external.v0.models.response_metafield'] = PropTypes.exact({
|
|
|
776
792
|
metafield: T['io.flow.shopify.external.v0.models.metafield'].isRequired,
|
|
777
793
|
});
|
|
778
794
|
|
|
795
|
+
T['io.flow.shopify.external.v0.models.graphql_variant_image'] = PropTypes.exact({
|
|
796
|
+
id: PropTypes.string.isRequired,
|
|
797
|
+
});
|
|
798
|
+
|
|
799
|
+
T['io.flow.shopify.external.v0.enums.inventory_policy'] = PropTypes.oneOf(['deny', 'continue']);
|
|
800
|
+
|
|
779
801
|
T['io.flow.shopify.external.v0.models.product_variant'] = PropTypes.exact({
|
|
780
802
|
id: PropTypes.number.isRequired,
|
|
781
803
|
sku: PropTypes.string,
|
|
@@ -798,7 +820,7 @@ T['io.flow.shopify.external.v0.models.product_variant'] = PropTypes.exact({
|
|
|
798
820
|
option1: PropTypes.string,
|
|
799
821
|
option2: PropTypes.string,
|
|
800
822
|
option3: PropTypes.string,
|
|
801
|
-
requires_shipping: PropTypes.bool
|
|
823
|
+
requires_shipping: PropTypes.bool,
|
|
802
824
|
metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.metafield']),
|
|
803
825
|
});
|
|
804
826
|
|
|
@@ -819,7 +841,7 @@ T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
|
|
|
819
841
|
options: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.option']).isRequired,
|
|
820
842
|
tags: PropTypes.string,
|
|
821
843
|
template_suffix: PropTypes.string,
|
|
822
|
-
published_scope: T['io.flow.shopify.external.v0.enums.published_scope']
|
|
844
|
+
published_scope: T['io.flow.shopify.external.v0.enums.published_scope'],
|
|
823
845
|
published_at: PropTypes.string,
|
|
824
846
|
created_at: PropTypes.string.isRequired,
|
|
825
847
|
updated_at: PropTypes.string.isRequired,
|
|
@@ -834,6 +856,72 @@ T['io.flow.shopify.external.v0.models.response_product'] = PropTypes.exact({
|
|
|
834
856
|
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
835
857
|
});
|
|
836
858
|
|
|
859
|
+
T['io.flow.shopify.external.v0.models.graphql_option'] = PropTypes.exact({
|
|
860
|
+
id: PropTypes.string.isRequired,
|
|
861
|
+
values: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
862
|
+
name: PropTypes.string.isRequired,
|
|
863
|
+
position: PropTypes.number.isRequired,
|
|
864
|
+
});
|
|
865
|
+
|
|
866
|
+
T['io.flow.shopify.external.v0.models.graphql_product_image'] = PropTypes.exact({
|
|
867
|
+
id: PropTypes.string.isRequired,
|
|
868
|
+
url: PropTypes.string.isRequired,
|
|
869
|
+
altText: PropTypes.string,
|
|
870
|
+
});
|
|
871
|
+
|
|
872
|
+
T['io.flow.shopify.external.v0.enums.graphql_weight_unit'] = PropTypes.oneOf(['GRAMS', 'KILOGRAMS', 'OUNCES', 'POUNDS']);
|
|
873
|
+
|
|
874
|
+
T['io.flow.shopify.external.v0.models.graphql_weight'] = PropTypes.exact({
|
|
875
|
+
unit: T['io.flow.shopify.external.v0.enums.graphql_weight_unit'].isRequired,
|
|
876
|
+
value: PropTypes.number.isRequired,
|
|
877
|
+
});
|
|
878
|
+
|
|
879
|
+
T['io.flow.shopify.external.v0.models.graphql_measurement'] = PropTypes.exact({
|
|
880
|
+
weight: T['io.flow.shopify.external.v0.models.graphql_weight'].isRequired,
|
|
881
|
+
});
|
|
882
|
+
|
|
883
|
+
T['io.flow.shopify.external.v0.models.graphql_inventory_item'] = PropTypes.exact({
|
|
884
|
+
id: PropTypes.string.isRequired,
|
|
885
|
+
tracked: PropTypes.bool.isRequired,
|
|
886
|
+
requiresShipping: PropTypes.bool,
|
|
887
|
+
measurement: T['io.flow.shopify.external.v0.models.graphql_measurement'].isRequired,
|
|
888
|
+
});
|
|
889
|
+
|
|
890
|
+
T['io.flow.shopify.external.v0.models.graphql_product_variant'] = PropTypes.exact({
|
|
891
|
+
id: PropTypes.string.isRequired,
|
|
892
|
+
legacyResourceId: PropTypes.string.isRequired,
|
|
893
|
+
sku: PropTypes.string,
|
|
894
|
+
price: PropTypes.string.isRequired,
|
|
895
|
+
title: PropTypes.string.isRequired,
|
|
896
|
+
taxable: PropTypes.bool.isRequired,
|
|
897
|
+
compareAtPrice: PropTypes.string,
|
|
898
|
+
barcode: PropTypes.string,
|
|
899
|
+
inventoryPolicy: T['io.flow.shopify.external.v0.enums.inventory_policy'].isRequired,
|
|
900
|
+
inventoryQuantity: PropTypes.number,
|
|
901
|
+
image: T['io.flow.shopify.external.v0.models.graphql_variant_image'],
|
|
902
|
+
inventoryItem: T['io.flow.shopify.external.v0.models.graphql_inventory_item'].isRequired,
|
|
903
|
+
});
|
|
904
|
+
|
|
905
|
+
T['io.flow.shopify.external.v0.models.graphql_product'] = PropTypes.exact({
|
|
906
|
+
id: PropTypes.string.isRequired,
|
|
907
|
+
legacyResourceId: PropTypes.string.isRequired,
|
|
908
|
+
handle: PropTypes.string.isRequired,
|
|
909
|
+
variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_product_variant']),
|
|
910
|
+
images: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_product_image']).isRequired,
|
|
911
|
+
title: PropTypes.string.isRequired,
|
|
912
|
+
vendor: PropTypes.string,
|
|
913
|
+
descriptionHtml: PropTypes.string,
|
|
914
|
+
productType: PropTypes.string,
|
|
915
|
+
status: PropTypes.string,
|
|
916
|
+
options: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_option']).isRequired,
|
|
917
|
+
tags: PropTypes.arrayOf(PropTypes.string),
|
|
918
|
+
templateSuffix: PropTypes.string,
|
|
919
|
+
publishedAt: PropTypes.string,
|
|
920
|
+
createdAt: PropTypes.string.isRequired,
|
|
921
|
+
updatedAt: PropTypes.string.isRequired,
|
|
922
|
+
hasVariantsThatRequiresComponents: PropTypes.bool,
|
|
923
|
+
});
|
|
924
|
+
|
|
837
925
|
T['io.flow.stripe.v0.models.stripe_event_request'] = PropTypes.exact({
|
|
838
926
|
id: PropTypes.string,
|
|
839
927
|
idempotency_key: PropTypes.string,
|
|
@@ -1521,6 +1609,57 @@ T['io.flow.stripe.v0.models.dispute_payment_method_details_card'] = PropTypes.ex
|
|
|
1521
1609
|
network_reason_code: PropTypes.string,
|
|
1522
1610
|
});
|
|
1523
1611
|
|
|
1612
|
+
T['io.flow.stripe.v0.enums.balance_transaction_type'] = PropTypes.oneOf([
|
|
1613
|
+
'adjustment',
|
|
1614
|
+
'advance',
|
|
1615
|
+
'advance_funding',
|
|
1616
|
+
'anticipation_repayment',
|
|
1617
|
+
'application_fee',
|
|
1618
|
+
'application_fee_refund',
|
|
1619
|
+
'charge',
|
|
1620
|
+
'climate_order_purchase',
|
|
1621
|
+
'climate_order_refund',
|
|
1622
|
+
'connect_collection_transfer',
|
|
1623
|
+
'contribution',
|
|
1624
|
+
'issuing_authorization_hold',
|
|
1625
|
+
'issuing_authorization_release',
|
|
1626
|
+
'issuing_dispute',
|
|
1627
|
+
'issuing_transaction',
|
|
1628
|
+
'obligation_outbound',
|
|
1629
|
+
'obligation_reversal_inbound',
|
|
1630
|
+
'payment',
|
|
1631
|
+
'payment_failure_refund',
|
|
1632
|
+
'payment_network_reserve_hold',
|
|
1633
|
+
'payment_network_reserve_release',
|
|
1634
|
+
'payment_refund',
|
|
1635
|
+
'payment_reversal',
|
|
1636
|
+
'payment_unreconciled',
|
|
1637
|
+
'payout',
|
|
1638
|
+
'payout_cancel',
|
|
1639
|
+
'payout_failure',
|
|
1640
|
+
'refund',
|
|
1641
|
+
'refund_failure',
|
|
1642
|
+
'reserve_transaction',
|
|
1643
|
+
'reserved_funds',
|
|
1644
|
+
'stripe_fee',
|
|
1645
|
+
'stripe_fx_fee',
|
|
1646
|
+
'tax_fee',
|
|
1647
|
+
'topup',
|
|
1648
|
+
'topup_reversal',
|
|
1649
|
+
'transfer',
|
|
1650
|
+
'transfer_cancel',
|
|
1651
|
+
'transfer_failure',
|
|
1652
|
+
'transfer_refund',
|
|
1653
|
+
]);
|
|
1654
|
+
|
|
1655
|
+
T['io.flow.stripe.v0.models.dispute_balance_transaction_fee_details'] = PropTypes.exact({
|
|
1656
|
+
amount: PropTypes.number.isRequired,
|
|
1657
|
+
application: PropTypes.string,
|
|
1658
|
+
currency: PropTypes.string.isRequired,
|
|
1659
|
+
description: PropTypes.string,
|
|
1660
|
+
type: PropTypes.string.isRequired,
|
|
1661
|
+
});
|
|
1662
|
+
|
|
1524
1663
|
T['io.flow.stripe.v0.models.dispute_payment_method_details'] = PropTypes.exact({
|
|
1525
1664
|
card: T['io.flow.stripe.v0.models.dispute_payment_method_details_card'],
|
|
1526
1665
|
klarna: T['io.flow.stripe.v0.models.dispute_payment_method_details_klarna'],
|
|
@@ -1535,6 +1674,25 @@ T['io.flow.stripe.v0.models.dispute_evidence_details'] = PropTypes.exact({
|
|
|
1535
1674
|
submission_count: PropTypes.number.isRequired,
|
|
1536
1675
|
});
|
|
1537
1676
|
|
|
1677
|
+
T['io.flow.stripe.v0.models.dispute_balance_transaction'] = PropTypes.exact({
|
|
1678
|
+
payment_intent: PropTypes.string,
|
|
1679
|
+
id: PropTypes.string.isRequired,
|
|
1680
|
+
object: PropTypes.string.isRequired,
|
|
1681
|
+
amount: PropTypes.number.isRequired,
|
|
1682
|
+
available_on: PropTypes.number.isRequired,
|
|
1683
|
+
created: PropTypes.number.isRequired,
|
|
1684
|
+
currency: PropTypes.string.isRequired,
|
|
1685
|
+
description: PropTypes.string,
|
|
1686
|
+
exchange_rate: PropTypes.number,
|
|
1687
|
+
fee: PropTypes.number,
|
|
1688
|
+
fee_details: PropTypes.arrayOf(T['io.flow.stripe.v0.models.dispute_balance_transaction_fee_details']).isRequired,
|
|
1689
|
+
net: PropTypes.number.isRequired,
|
|
1690
|
+
reporting_category: PropTypes.string.isRequired,
|
|
1691
|
+
source: PropTypes.string,
|
|
1692
|
+
status: PropTypes.string.isRequired,
|
|
1693
|
+
type: T['io.flow.stripe.v0.enums.balance_transaction_type'].isRequired,
|
|
1694
|
+
});
|
|
1695
|
+
|
|
1538
1696
|
T['io.flow.stripe.v0.enums.dispute_status'] = PropTypes.oneOf([
|
|
1539
1697
|
'warning_needs_response',
|
|
1540
1698
|
'warning_under_review',
|
|
@@ -1562,18 +1720,48 @@ T['io.flow.stripe.v0.enums.dispute_reason'] = PropTypes.oneOf([
|
|
|
1562
1720
|
'unrecognized',
|
|
1563
1721
|
]);
|
|
1564
1722
|
|
|
1723
|
+
T['io.flow.stripe.v0.models.dispute_evidence'] = PropTypes.exact({
|
|
1724
|
+
access_activity_log: PropTypes.string,
|
|
1725
|
+
billing_address: PropTypes.string,
|
|
1726
|
+
cancellation_policy: PropTypes.string,
|
|
1727
|
+
cancellation_policy_disclosure: PropTypes.string,
|
|
1728
|
+
cancellation_rebuttal: PropTypes.string,
|
|
1729
|
+
customer_communication: PropTypes.string,
|
|
1730
|
+
customer_email_address: PropTypes.string,
|
|
1731
|
+
customer_name: PropTypes.string,
|
|
1732
|
+
'evidence.customer_purchase_ip': PropTypes.string,
|
|
1733
|
+
customer_signature: PropTypes.string,
|
|
1734
|
+
duplicate_charge_documentation: PropTypes.string,
|
|
1735
|
+
duplicate_charge_explanation: PropTypes.string,
|
|
1736
|
+
duplicate_charge_id: PropTypes.string,
|
|
1737
|
+
product_description: PropTypes.string,
|
|
1738
|
+
receipt: PropTypes.string,
|
|
1739
|
+
refund_policy: PropTypes.string,
|
|
1740
|
+
refund_policy_disclosure: PropTypes.string,
|
|
1741
|
+
refund_refusal_explanation: PropTypes.string,
|
|
1742
|
+
service_date: PropTypes.string,
|
|
1743
|
+
service_documentation: PropTypes.string,
|
|
1744
|
+
shipping_address: PropTypes.string,
|
|
1745
|
+
shipping_carrier: PropTypes.string,
|
|
1746
|
+
shipping_date: PropTypes.string,
|
|
1747
|
+
shipping_documentation: PropTypes.string,
|
|
1748
|
+
shipping_tracking_number: PropTypes.string,
|
|
1749
|
+
uncategorized_file: PropTypes.string,
|
|
1750
|
+
uncategorized_text: PropTypes.string,
|
|
1751
|
+
});
|
|
1752
|
+
|
|
1565
1753
|
T['io.flow.stripe.v0.models.dispute'] = PropTypes.exact({
|
|
1566
1754
|
id: PropTypes.string.isRequired,
|
|
1567
1755
|
amount: PropTypes.number.isRequired,
|
|
1568
1756
|
charge: PropTypes.string.isRequired,
|
|
1569
1757
|
currency: PropTypes.string.isRequired,
|
|
1570
|
-
evidence:
|
|
1758
|
+
evidence: T['io.flow.stripe.v0.models.dispute_evidence'].isRequired,
|
|
1571
1759
|
metadata: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
1572
1760
|
payment_intent: PropTypes.string,
|
|
1573
1761
|
reason: T['io.flow.stripe.v0.enums.dispute_reason'].isRequired,
|
|
1574
1762
|
status: T['io.flow.stripe.v0.enums.dispute_status'].isRequired,
|
|
1575
1763
|
object: PropTypes.string.isRequired,
|
|
1576
|
-
balance_transactions: PropTypes.arrayOf(
|
|
1764
|
+
balance_transactions: PropTypes.arrayOf(T['io.flow.stripe.v0.models.dispute_balance_transaction']).isRequired,
|
|
1577
1765
|
created: PropTypes.number.isRequired,
|
|
1578
1766
|
evidence_details: T['io.flow.stripe.v0.models.dispute_evidence_details'].isRequired,
|
|
1579
1767
|
is_charge_refundable: PropTypes.bool.isRequired,
|
|
@@ -4188,7 +4376,7 @@ T['io.flow.v0.models.physical_delivery_preferred_service'] = PropTypes.exact({
|
|
|
4188
4376
|
selection_stratey: T['io.flow.v0.enums.preferred_service_selection_strategy'].isRequired,
|
|
4189
4377
|
});
|
|
4190
4378
|
|
|
4191
|
-
T['io.flow.v0.enums.flow_entity'] = PropTypes.oneOf(['flow-usa', 'flow-irl', 'flow-can']);
|
|
4379
|
+
T['io.flow.v0.enums.flow_entity'] = PropTypes.oneOf(['flow-usa', 'flow-irl', 'flow-can', 'ge-usa']);
|
|
4192
4380
|
T['io.flow.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_community', 'local']);
|
|
4193
4381
|
T['io.flow.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
|
|
4194
4382
|
T['io.flow.v0.enums.fulfillment_routing'] = PropTypes.oneOf(['fulfilled_from_center', 'fulfillment_service']);
|
|
@@ -4274,6 +4462,21 @@ T['io.flow.v0.models.payment_method_data_init_bancontact'] = PropTypes.exact({
|
|
|
4274
4462
|
reference: PropTypes.string,
|
|
4275
4463
|
});
|
|
4276
4464
|
|
|
4465
|
+
T['io.flow.v0.models.payment_method_data_init_mobilepay'] = PropTypes.exact({
|
|
4466
|
+
type: PropTypes.oneOf(['init_mobilepay']).isRequired,
|
|
4467
|
+
reference: PropTypes.string,
|
|
4468
|
+
});
|
|
4469
|
+
|
|
4470
|
+
T['io.flow.v0.models.payment_method_data_init_przelewy24'] = PropTypes.exact({
|
|
4471
|
+
type: PropTypes.oneOf(['init_przelewy24']).isRequired,
|
|
4472
|
+
reference: PropTypes.string,
|
|
4473
|
+
});
|
|
4474
|
+
|
|
4475
|
+
T['io.flow.v0.models.payment_method_data_init_twint'] = PropTypes.exact({
|
|
4476
|
+
type: PropTypes.oneOf(['init_twint']).isRequired,
|
|
4477
|
+
reference: PropTypes.string,
|
|
4478
|
+
});
|
|
4479
|
+
|
|
4277
4480
|
T['io.flow.v0.models.payment_method_data_init_sofort'] = PropTypes.exact({
|
|
4278
4481
|
type: PropTypes.oneOf(['init_sofort']).isRequired,
|
|
4279
4482
|
reference: PropTypes.string,
|
|
@@ -4481,6 +4684,9 @@ T['io.flow.v0.enums.payment_type'] = PropTypes.oneOf([
|
|
|
4481
4684
|
'sofort',
|
|
4482
4685
|
'afterpay',
|
|
4483
4686
|
'bancontact',
|
|
4687
|
+
'twint',
|
|
4688
|
+
'przelewy24',
|
|
4689
|
+
'mobilepay',
|
|
4484
4690
|
]);
|
|
4485
4691
|
|
|
4486
4692
|
T['io.flow.v0.enums.payment_method_rule_content_key'] = PropTypes.oneOf(['description']);
|
|
@@ -5317,6 +5523,7 @@ T['io.flow.v0.enums.trueup_surcharge_type'] = PropTypes.oneOf([
|
|
|
5317
5523
|
'direct_delivery',
|
|
5318
5524
|
'saturday_stop',
|
|
5319
5525
|
'residential_extended_area_pickup',
|
|
5526
|
+
'package_level_detail',
|
|
5320
5527
|
]);
|
|
5321
5528
|
|
|
5322
5529
|
T['io.flow.v0.models.trueup_label_surcharge'] = PropTypes.exact({
|
|
@@ -6301,7 +6508,6 @@ T['io.flow.v0.enums.package_dimensions_source'] = PropTypes.oneOf([
|
|
|
6301
6508
|
]);
|
|
6302
6509
|
|
|
6303
6510
|
T['io.flow.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
|
|
6304
|
-
T['io.flow.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
|
|
6305
6511
|
T['io.flow.v0.enums.levy_component'] = PropTypes.oneOf(['goods', 'duty', 'insurance', 'freight', 'vat']);
|
|
6306
6512
|
|
|
6307
6513
|
T['io.flow.v0.models.deminimis_simple'] = PropTypes.exact({
|
|
@@ -6490,51 +6696,6 @@ T['io.flow.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
|
6490
6696
|
weight_break: PropTypes.number,
|
|
6491
6697
|
});
|
|
6492
6698
|
|
|
6493
|
-
T['io.flow.v0.models.ratecard_form'] = PropTypes.exact({
|
|
6494
|
-
direction: T['io.flow.v0.enums.direction'].isRequired,
|
|
6495
|
-
effective_at: PropTypes.string.isRequired,
|
|
6496
|
-
origination_zones: PropTypes.arrayOf(T['io.flow.v0.models.zone']).isRequired,
|
|
6497
|
-
service: PropTypes.string.isRequired,
|
|
6498
|
-
number: PropTypes.string,
|
|
6499
|
-
rate_level_key: PropTypes.string,
|
|
6500
|
-
ratecard_owner: T['io.flow.v0.enums.ratecard_owner'],
|
|
6501
|
-
glbe_shipping_method_id: PropTypes.string,
|
|
6502
|
-
glbe_proposition_name: PropTypes.string,
|
|
6503
|
-
channel_revenue_share_percentage: PropTypes.number,
|
|
6504
|
-
data: PropTypes.objectOf(PropTypes.string),
|
|
6505
|
-
});
|
|
6506
|
-
|
|
6507
|
-
T['io.flow.v0.models.ratecard'] = PropTypes.exact({
|
|
6508
|
-
id: PropTypes.string.isRequired,
|
|
6509
|
-
number: PropTypes.string.isRequired,
|
|
6510
|
-
rate_level_key: PropTypes.string,
|
|
6511
|
-
direction: T['io.flow.v0.enums.direction'].isRequired,
|
|
6512
|
-
effective_at: PropTypes.string.isRequired,
|
|
6513
|
-
origination_zones: PropTypes.arrayOf(T['io.flow.v0.models.zone']).isRequired,
|
|
6514
|
-
service: T['io.flow.v0.models.ratecard_service_summary'].isRequired,
|
|
6515
|
-
published_at: PropTypes.string,
|
|
6516
|
-
ratecard_owner: T['io.flow.v0.enums.ratecard_owner'].isRequired,
|
|
6517
|
-
glbe_shipping_method_id: PropTypes.string,
|
|
6518
|
-
glbe_proposition_name: PropTypes.string,
|
|
6519
|
-
channel_revenue_share_percentage: PropTypes.number,
|
|
6520
|
-
});
|
|
6521
|
-
|
|
6522
|
-
T['io.flow.v0.models.ratecard_upserted'] = PropTypes.exact({
|
|
6523
|
-
discriminator: PropTypes.oneOf(['ratecard_upserted']).isRequired,
|
|
6524
|
-
event_id: PropTypes.string.isRequired,
|
|
6525
|
-
timestamp: PropTypes.string.isRequired,
|
|
6526
|
-
organization: PropTypes.string.isRequired,
|
|
6527
|
-
ratecard: T['io.flow.v0.models.ratecard'].isRequired,
|
|
6528
|
-
});
|
|
6529
|
-
|
|
6530
|
-
T['io.flow.v0.models.ratecard_deleted'] = PropTypes.exact({
|
|
6531
|
-
discriminator: PropTypes.oneOf(['ratecard_deleted']).isRequired,
|
|
6532
|
-
event_id: PropTypes.string.isRequired,
|
|
6533
|
-
timestamp: PropTypes.string.isRequired,
|
|
6534
|
-
organization: PropTypes.string.isRequired,
|
|
6535
|
-
ratecard: T['io.flow.v0.models.ratecard'].isRequired,
|
|
6536
|
-
});
|
|
6537
|
-
|
|
6538
6699
|
T['io.flow.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
6539
6700
|
id: PropTypes.string.isRequired,
|
|
6540
6701
|
number: PropTypes.string.isRequired,
|
|
@@ -7876,16 +8037,31 @@ T['io.flow.v0.models.payment_payment_method'] = PropTypes.exact({
|
|
|
7876
8037
|
possible_actions: PropTypes.arrayOf(T['io.flow.v0.enums.payment_action_type']).isRequired,
|
|
7877
8038
|
});
|
|
7878
8039
|
|
|
8040
|
+
T['io.flow.v0.models.payment_method_summary_twint'] = PropTypes.exact({
|
|
8041
|
+
type: PropTypes.oneOf(['twint']).isRequired,
|
|
8042
|
+
merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
|
|
8043
|
+
});
|
|
8044
|
+
|
|
7879
8045
|
T['io.flow.v0.models.payment_method_summary_sofort'] = PropTypes.exact({
|
|
7880
8046
|
type: PropTypes.oneOf(['sofort']).isRequired,
|
|
7881
8047
|
merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
|
|
7882
8048
|
});
|
|
7883
8049
|
|
|
8050
|
+
T['io.flow.v0.models.payment_method_summary_przelewy24'] = PropTypes.exact({
|
|
8051
|
+
type: PropTypes.oneOf(['przelewy24']).isRequired,
|
|
8052
|
+
merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
|
|
8053
|
+
});
|
|
8054
|
+
|
|
7884
8055
|
T['io.flow.v0.models.payment_method_summary_paypal'] = PropTypes.exact({
|
|
7885
8056
|
type: PropTypes.oneOf(['paypal']).isRequired,
|
|
7886
8057
|
merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
|
|
7887
8058
|
});
|
|
7888
8059
|
|
|
8060
|
+
T['io.flow.v0.models.payment_method_summary_mobilepay'] = PropTypes.exact({
|
|
8061
|
+
type: PropTypes.oneOf(['mobilepay']).isRequired,
|
|
8062
|
+
merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
|
|
8063
|
+
});
|
|
8064
|
+
|
|
7889
8065
|
T['io.flow.v0.models.payment_method_summary_klarna'] = PropTypes.exact({
|
|
7890
8066
|
type: PropTypes.oneOf(['klarna']).isRequired,
|
|
7891
8067
|
merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
|
|
@@ -7998,6 +8174,9 @@ T['io.flow.v0.unions.payment_method_data'] = PropTypes.oneOfType([
|
|
|
7998
8174
|
T['io.flow.v0.models.payment_method_data_init_paypal'],
|
|
7999
8175
|
T['io.flow.v0.models.payment_method_data_init_ideal'],
|
|
8000
8176
|
T['io.flow.v0.models.payment_method_data_init_sofort'],
|
|
8177
|
+
T['io.flow.v0.models.payment_method_data_init_twint'],
|
|
8178
|
+
T['io.flow.v0.models.payment_method_data_init_przelewy24'],
|
|
8179
|
+
T['io.flow.v0.models.payment_method_data_init_mobilepay'],
|
|
8001
8180
|
T['io.flow.v0.models.payment_method_data_init_bancontact'],
|
|
8002
8181
|
T['io.flow.v0.models.payment_method_data_validate_applepay'],
|
|
8003
8182
|
T['io.flow.v0.models.payment_method_data_authorize_card'],
|
|
@@ -8283,6 +8462,53 @@ T['io.flow.v0.models.schedule'] = PropTypes.exact({
|
|
|
8283
8462
|
max_lead_time: PropTypes.number,
|
|
8284
8463
|
});
|
|
8285
8464
|
|
|
8465
|
+
T['io.flow.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
|
|
8466
|
+
|
|
8467
|
+
T['io.flow.v0.models.ratecard_form'] = PropTypes.exact({
|
|
8468
|
+
direction: T['io.flow.v0.enums.direction'].isRequired,
|
|
8469
|
+
effective_at: PropTypes.string.isRequired,
|
|
8470
|
+
origination_zones: PropTypes.arrayOf(T['io.flow.v0.models.zone']).isRequired,
|
|
8471
|
+
service: PropTypes.string.isRequired,
|
|
8472
|
+
number: PropTypes.string,
|
|
8473
|
+
rate_level_key: PropTypes.string,
|
|
8474
|
+
ratecard_owner: T['io.flow.v0.enums.ratecard_owner'],
|
|
8475
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
8476
|
+
glbe_proposition_name: PropTypes.string,
|
|
8477
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
8478
|
+
data: PropTypes.objectOf(PropTypes.string),
|
|
8479
|
+
});
|
|
8480
|
+
|
|
8481
|
+
T['io.flow.v0.models.ratecard'] = PropTypes.exact({
|
|
8482
|
+
id: PropTypes.string.isRequired,
|
|
8483
|
+
number: PropTypes.string.isRequired,
|
|
8484
|
+
rate_level_key: PropTypes.string,
|
|
8485
|
+
direction: T['io.flow.v0.enums.direction'].isRequired,
|
|
8486
|
+
effective_at: PropTypes.string.isRequired,
|
|
8487
|
+
origination_zones: PropTypes.arrayOf(T['io.flow.v0.models.zone']).isRequired,
|
|
8488
|
+
service: T['io.flow.v0.models.ratecard_service_summary'].isRequired,
|
|
8489
|
+
published_at: PropTypes.string,
|
|
8490
|
+
ratecard_owner: T['io.flow.v0.enums.ratecard_owner'].isRequired,
|
|
8491
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
8492
|
+
glbe_proposition_name: PropTypes.string,
|
|
8493
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
8494
|
+
});
|
|
8495
|
+
|
|
8496
|
+
T['io.flow.v0.models.ratecard_upserted'] = PropTypes.exact({
|
|
8497
|
+
discriminator: PropTypes.oneOf(['ratecard_upserted']).isRequired,
|
|
8498
|
+
event_id: PropTypes.string.isRequired,
|
|
8499
|
+
timestamp: PropTypes.string.isRequired,
|
|
8500
|
+
organization: PropTypes.string.isRequired,
|
|
8501
|
+
ratecard: T['io.flow.v0.models.ratecard'].isRequired,
|
|
8502
|
+
});
|
|
8503
|
+
|
|
8504
|
+
T['io.flow.v0.models.ratecard_deleted'] = PropTypes.exact({
|
|
8505
|
+
discriminator: PropTypes.oneOf(['ratecard_deleted']).isRequired,
|
|
8506
|
+
event_id: PropTypes.string.isRequired,
|
|
8507
|
+
timestamp: PropTypes.string.isRequired,
|
|
8508
|
+
organization: PropTypes.string.isRequired,
|
|
8509
|
+
ratecard: T['io.flow.v0.models.ratecard'].isRequired,
|
|
8510
|
+
});
|
|
8511
|
+
|
|
8286
8512
|
T['io.flow.v0.models.carrier_reference'] = PropTypes.exact({
|
|
8287
8513
|
id: PropTypes.string.isRequired,
|
|
8288
8514
|
});
|
|
@@ -10254,6 +10480,9 @@ T['io.flow.v0.unions.payment_method_summary'] = PropTypes.oneOfType([
|
|
|
10254
10480
|
T['io.flow.v0.models.payment_method_summary_googlepay'],
|
|
10255
10481
|
T['io.flow.v0.models.payment_method_summary_paypal'],
|
|
10256
10482
|
T['io.flow.v0.models.payment_method_summary_ideal'],
|
|
10483
|
+
T['io.flow.v0.models.payment_method_summary_twint'],
|
|
10484
|
+
T['io.flow.v0.models.payment_method_summary_przelewy24'],
|
|
10485
|
+
T['io.flow.v0.models.payment_method_summary_mobilepay'],
|
|
10257
10486
|
T['io.flow.v0.models.payment_method_summary_sofort'],
|
|
10258
10487
|
T['io.flow.v0.models.payment_method_summary_bancontact'],
|
|
10259
10488
|
]);
|
|
@@ -13256,6 +13485,7 @@ T['io.flow.v0.models.summary_shipping_label_form'] = PropTypes.exact({
|
|
|
13256
13485
|
order_number: PropTypes.string.isRequired,
|
|
13257
13486
|
items: PropTypes.arrayOf(T['io.flow.v0.models.line_item_form']).isRequired,
|
|
13258
13487
|
center_key: PropTypes.string,
|
|
13488
|
+
direction: T['io.flow.v0.enums.direction'],
|
|
13259
13489
|
});
|
|
13260
13490
|
|
|
13261
13491
|
T['io.flow.v0.models.ratecard_estimate_v4'] = PropTypes.exact({
|
|
@@ -13509,6 +13739,7 @@ T['io.flow.v0.models.shipping_label'] = PropTypes.exact({
|
|
|
13509
13739
|
additional_services_requested: PropTypes.arrayOf(T['io.flow.v0.models.additional_services_requested']),
|
|
13510
13740
|
created_at: PropTypes.string,
|
|
13511
13741
|
updated_at: PropTypes.string,
|
|
13742
|
+
direction: T['io.flow.v0.enums.direction'],
|
|
13512
13743
|
});
|
|
13513
13744
|
|
|
13514
13745
|
T['io.flow.v0.models.shipping_label_version'] = PropTypes.exact({
|
|
@@ -13832,6 +14063,7 @@ T['io.flow.v0.models.bridge_shipping_label_form'] = PropTypes.exact({
|
|
|
13832
14063
|
items: PropTypes.arrayOf(T['io.flow.v0.models.line_item_form']),
|
|
13833
14064
|
'package': T['io.flow.v0.models.shipping_label_package'],
|
|
13834
14065
|
origin: T['io.flow.v0.models.shipping_address'],
|
|
14066
|
+
direction: T['io.flow.v0.enums.direction'],
|
|
13835
14067
|
});
|
|
13836
14068
|
|
|
13837
14069
|
T['io.flow.v0.unions.shipping_label_form'] = PropTypes.oneOfType([
|
|
@@ -16224,8 +16456,11 @@ export const paymentMethodDataInitBancontact = T['io.flow.v0.models.payment_meth
|
|
|
16224
16456
|
export const paymentMethodDataInitGooglepay = T['io.flow.v0.models.payment_method_data_init_googlepay'];
|
|
16225
16457
|
export const paymentMethodDataInitIdeal = T['io.flow.v0.models.payment_method_data_init_ideal'];
|
|
16226
16458
|
export const paymentMethodDataInitKlarna = T['io.flow.v0.models.payment_method_data_init_klarna'];
|
|
16459
|
+
export const paymentMethodDataInitMobilepay = T['io.flow.v0.models.payment_method_data_init_mobilepay'];
|
|
16227
16460
|
export const paymentMethodDataInitPaypal = T['io.flow.v0.models.payment_method_data_init_paypal'];
|
|
16461
|
+
export const paymentMethodDataInitPrzelewy24 = T['io.flow.v0.models.payment_method_data_init_przelewy24'];
|
|
16228
16462
|
export const paymentMethodDataInitSofort = T['io.flow.v0.models.payment_method_data_init_sofort'];
|
|
16463
|
+
export const paymentMethodDataInitTwint = T['io.flow.v0.models.payment_method_data_init_twint'];
|
|
16229
16464
|
export const paymentMethodDataOptionLogo = T['io.flow.v0.unions.payment_method_data_option_logo'];
|
|
16230
16465
|
export const paymentMethodDataOptionLogoSvg = T['io.flow.v0.models.payment_method_data_option_logo_svg'];
|
|
16231
16466
|
export const paymentMethodDataOptionType = T['io.flow.v0.enums.payment_method_data_option_type'];
|
|
@@ -16249,8 +16484,11 @@ export const paymentMethodSummaryCard = T['io.flow.v0.models.payment_method_summ
|
|
|
16249
16484
|
export const paymentMethodSummaryGooglepay = T['io.flow.v0.models.payment_method_summary_googlepay'];
|
|
16250
16485
|
export const paymentMethodSummaryIdeal = T['io.flow.v0.models.payment_method_summary_ideal'];
|
|
16251
16486
|
export const paymentMethodSummaryKlarna = T['io.flow.v0.models.payment_method_summary_klarna'];
|
|
16487
|
+
export const paymentMethodSummaryMobilepay = T['io.flow.v0.models.payment_method_summary_mobilepay'];
|
|
16252
16488
|
export const paymentMethodSummaryPaypal = T['io.flow.v0.models.payment_method_summary_paypal'];
|
|
16489
|
+
export const paymentMethodSummaryPrzelewy24 = T['io.flow.v0.models.payment_method_summary_przelewy24'];
|
|
16253
16490
|
export const paymentMethodSummarySofort = T['io.flow.v0.models.payment_method_summary_sofort'];
|
|
16491
|
+
export const paymentMethodSummaryTwint = T['io.flow.v0.models.payment_method_summary_twint'];
|
|
16254
16492
|
export const paymentMethodTag = T['io.flow.v0.unions.payment_method_tag'];
|
|
16255
16493
|
export const paymentMethodType = T['io.flow.v0.enums.payment_method_type'];
|
|
16256
16494
|
export const paymentOrderDetailsLineItem = T['io.flow.v0.models.payment_order_details_line_item'];
|