@flowio/api-prop-types 10.16.90 → 10.16.92
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 +577 -104
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +577 -104
- package/src/api.js +1953 -1399
package/lib/api.d.ts
CHANGED
|
@@ -1420,6 +1420,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1420
1420
|
readonly 'weight'?: io.flow.shopify.external.v0.models.GraphqlWeight;
|
|
1421
1421
|
}
|
|
1422
1422
|
|
|
1423
|
+
interface GraphqlMetafield {
|
|
1424
|
+
readonly 'key': string;
|
|
1425
|
+
readonly 'value': string;
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1423
1428
|
interface GraphqlOption {
|
|
1424
1429
|
readonly 'id': string;
|
|
1425
1430
|
readonly 'values': string[];
|
|
@@ -1445,6 +1450,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1445
1450
|
readonly 'createdAt': string;
|
|
1446
1451
|
readonly 'updatedAt': string;
|
|
1447
1452
|
readonly 'hasVariantsThatRequiresComponents'?: boolean;
|
|
1453
|
+
readonly 'category'?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
1454
|
+
readonly 'metafields'?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
|
|
1448
1455
|
}
|
|
1449
1456
|
|
|
1450
1457
|
interface GraphqlProductImage {
|
|
@@ -1468,6 +1475,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1468
1475
|
readonly 'inventoryItem': io.flow.shopify.external.v0.models.GraphqlInventoryItem;
|
|
1469
1476
|
}
|
|
1470
1477
|
|
|
1478
|
+
interface GraphqlTaxonomyCategory {
|
|
1479
|
+
readonly 'name': string;
|
|
1480
|
+
readonly 'fullName': string;
|
|
1481
|
+
}
|
|
1482
|
+
|
|
1471
1483
|
interface GraphqlVariantImage {
|
|
1472
1484
|
readonly 'id': string;
|
|
1473
1485
|
}
|
|
@@ -1585,6 +1597,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1585
1597
|
readonly 'created_at': string;
|
|
1586
1598
|
readonly 'updated_at': string;
|
|
1587
1599
|
readonly 'has_variants_that_requires_components'?: boolean;
|
|
1600
|
+
readonly 'category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
1588
1601
|
}
|
|
1589
1602
|
|
|
1590
1603
|
interface ProductDelete {
|
|
@@ -2344,35 +2357,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2344
2357
|
}
|
|
2345
2358
|
}
|
|
2346
2359
|
|
|
2347
|
-
declare namespace io.flow.order.price.v0.enums {
|
|
2348
|
-
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
2349
|
-
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
2350
|
-
}
|
|
2351
|
-
|
|
2352
|
-
declare namespace io.flow.order.price.v0.models {
|
|
2353
|
-
interface OrderPriceDetail {
|
|
2354
|
-
readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
2355
|
-
readonly 'currency': string;
|
|
2356
|
-
readonly 'amount': number;
|
|
2357
|
-
readonly 'label': string;
|
|
2358
|
-
readonly 'base': io.flow.common.v0.models.Price;
|
|
2359
|
-
readonly 'components': io.flow.order.price.v0.models.OrderPriceDetailComponent[];
|
|
2360
|
-
readonly 'name'?: string;
|
|
2361
|
-
readonly 'rate'?: number;
|
|
2362
|
-
readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
|
|
2363
|
-
readonly 'rate_label'?: string;
|
|
2364
|
-
}
|
|
2365
|
-
|
|
2366
|
-
interface OrderPriceDetailComponent {
|
|
2367
|
-
readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
|
|
2368
|
-
readonly 'currency': string;
|
|
2369
|
-
readonly 'amount': number;
|
|
2370
|
-
readonly 'label': string;
|
|
2371
|
-
readonly 'base': io.flow.common.v0.models.Price;
|
|
2372
|
-
readonly 'name'?: string;
|
|
2373
|
-
}
|
|
2374
|
-
}
|
|
2375
|
-
|
|
2376
2360
|
declare namespace io.flow.common.v0.enums {
|
|
2377
2361
|
type AttributeDataType = 'boolean' | 'integer' | 'decimal' | 'string' | 'json_array';
|
|
2378
2362
|
type AvailabilityStatus = 'enabled' | 'disabled';
|
|
@@ -2825,6 +2809,133 @@ declare namespace io.flow.common.v0.unions {
|
|
|
2825
2809
|
type RepeatSchedule = (io.flow.common.v0.models.RepeatHourly | io.flow.common.v0.models.RepeatDaily | io.flow.common.v0.models.RepeatWeekly | io.flow.common.v0.models.RepeatMonthly);
|
|
2826
2810
|
}
|
|
2827
2811
|
|
|
2812
|
+
declare namespace io.flow.token.v0.models {
|
|
2813
|
+
interface ChannelToken {
|
|
2814
|
+
readonly 'discriminator': 'channel_token';
|
|
2815
|
+
readonly 'id': string;
|
|
2816
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
2817
|
+
readonly 'user': io.flow.common.v0.models.UserReference;
|
|
2818
|
+
readonly 'partial': string;
|
|
2819
|
+
readonly 'cleartext'?: string;
|
|
2820
|
+
readonly 'created_at': string;
|
|
2821
|
+
readonly 'description'?: string;
|
|
2822
|
+
}
|
|
2823
|
+
|
|
2824
|
+
interface ChannelTokenForm {
|
|
2825
|
+
readonly 'channel_id': string;
|
|
2826
|
+
readonly 'description'?: string;
|
|
2827
|
+
}
|
|
2828
|
+
|
|
2829
|
+
interface ChannelTokenReference {
|
|
2830
|
+
readonly 'discriminator': 'channel_token_reference';
|
|
2831
|
+
readonly 'id': string;
|
|
2832
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
2833
|
+
readonly 'user': io.flow.common.v0.models.UserReference;
|
|
2834
|
+
}
|
|
2835
|
+
|
|
2836
|
+
interface Cleartext {
|
|
2837
|
+
readonly 'value': string;
|
|
2838
|
+
}
|
|
2839
|
+
|
|
2840
|
+
interface OrganizationToken {
|
|
2841
|
+
readonly 'discriminator': 'organization_token';
|
|
2842
|
+
readonly 'id': string;
|
|
2843
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
2844
|
+
readonly 'user': io.flow.common.v0.models.UserReference;
|
|
2845
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
2846
|
+
readonly 'partial': string;
|
|
2847
|
+
readonly 'created_at': string;
|
|
2848
|
+
readonly 'description'?: string;
|
|
2849
|
+
}
|
|
2850
|
+
|
|
2851
|
+
interface OrganizationTokenForm {
|
|
2852
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
2853
|
+
readonly 'description'?: string;
|
|
2854
|
+
}
|
|
2855
|
+
|
|
2856
|
+
interface OrganizationTokenFormV2 {
|
|
2857
|
+
readonly 'organization_id': string;
|
|
2858
|
+
readonly 'description'?: string;
|
|
2859
|
+
}
|
|
2860
|
+
|
|
2861
|
+
interface OrganizationTokenReference {
|
|
2862
|
+
readonly 'discriminator': 'organization_token_reference';
|
|
2863
|
+
readonly 'id': string;
|
|
2864
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
2865
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
2866
|
+
readonly 'user': io.flow.common.v0.models.UserReference;
|
|
2867
|
+
}
|
|
2868
|
+
|
|
2869
|
+
interface OrganizationTokenV2 {
|
|
2870
|
+
readonly 'discriminator': 'organization_token_v2';
|
|
2871
|
+
readonly 'id': string;
|
|
2872
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
2873
|
+
readonly 'user': io.flow.common.v0.models.UserReference;
|
|
2874
|
+
readonly 'partial': string;
|
|
2875
|
+
readonly 'cleartext'?: string;
|
|
2876
|
+
readonly 'created_at': string;
|
|
2877
|
+
readonly 'description'?: string;
|
|
2878
|
+
}
|
|
2879
|
+
|
|
2880
|
+
interface OrganizationTokenV2Reference {
|
|
2881
|
+
readonly 'discriminator': 'organization_token_v2_reference';
|
|
2882
|
+
readonly 'id': string;
|
|
2883
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
2884
|
+
}
|
|
2885
|
+
|
|
2886
|
+
interface PartnerToken {
|
|
2887
|
+
readonly 'discriminator': 'partner_token';
|
|
2888
|
+
readonly 'id': string;
|
|
2889
|
+
readonly 'partner': io.flow.token.v0.models.TokenPartnerReference;
|
|
2890
|
+
readonly 'user': io.flow.common.v0.models.UserReference;
|
|
2891
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
2892
|
+
readonly 'partial': string;
|
|
2893
|
+
readonly 'created_at': string;
|
|
2894
|
+
readonly 'description'?: string;
|
|
2895
|
+
}
|
|
2896
|
+
|
|
2897
|
+
interface PartnerTokenForm {
|
|
2898
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
2899
|
+
readonly 'description'?: string;
|
|
2900
|
+
}
|
|
2901
|
+
|
|
2902
|
+
interface PartnerTokenReference {
|
|
2903
|
+
readonly 'discriminator': 'partner_token_reference';
|
|
2904
|
+
readonly 'id': string;
|
|
2905
|
+
readonly 'partner': io.flow.token.v0.models.TokenPartnerReference;
|
|
2906
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
2907
|
+
readonly 'user': io.flow.common.v0.models.UserReference;
|
|
2908
|
+
}
|
|
2909
|
+
|
|
2910
|
+
interface TokenAuthenticationForm {
|
|
2911
|
+
readonly 'token': string;
|
|
2912
|
+
}
|
|
2913
|
+
|
|
2914
|
+
interface TokenPartnerReference {
|
|
2915
|
+
readonly 'id': string;
|
|
2916
|
+
}
|
|
2917
|
+
|
|
2918
|
+
interface TokenRbacAuthenticationForm {
|
|
2919
|
+
readonly 'token': string;
|
|
2920
|
+
readonly 'method': string;
|
|
2921
|
+
readonly 'path_pattern': string;
|
|
2922
|
+
readonly 'path': string;
|
|
2923
|
+
}
|
|
2924
|
+
|
|
2925
|
+
interface TokenValidation {
|
|
2926
|
+
readonly 'status': string;
|
|
2927
|
+
}
|
|
2928
|
+
|
|
2929
|
+
interface TokenValidationForm {
|
|
2930
|
+
readonly 'token': string;
|
|
2931
|
+
}
|
|
2932
|
+
}
|
|
2933
|
+
|
|
2934
|
+
declare namespace io.flow.token.v0.unions {
|
|
2935
|
+
type Token = (io.flow.token.v0.models.ChannelToken | io.flow.token.v0.models.OrganizationToken | io.flow.token.v0.models.OrganizationTokenV2 | io.flow.token.v0.models.PartnerToken);
|
|
2936
|
+
type TokenReference = (io.flow.token.v0.models.ChannelTokenReference | io.flow.token.v0.models.OrganizationTokenReference | io.flow.token.v0.models.OrganizationTokenV2Reference | io.flow.token.v0.models.PartnerTokenReference);
|
|
2937
|
+
}
|
|
2938
|
+
|
|
2828
2939
|
declare namespace io.flow.error.v0.enums {
|
|
2829
2940
|
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
2830
2941
|
}
|
|
@@ -2998,6 +3109,69 @@ declare namespace io.flow.price.v0.unions {
|
|
|
2998
3109
|
type Deminimis = (io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem);
|
|
2999
3110
|
}
|
|
3000
3111
|
|
|
3112
|
+
declare namespace io.flow.channel.v0.enums {
|
|
3113
|
+
type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
|
|
3114
|
+
}
|
|
3115
|
+
|
|
3116
|
+
declare namespace io.flow.channel.v0.models {
|
|
3117
|
+
interface Channel {
|
|
3118
|
+
readonly 'id': string;
|
|
3119
|
+
readonly 'name': string;
|
|
3120
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
3121
|
+
readonly 'organization_id_prefix'?: string;
|
|
3122
|
+
}
|
|
3123
|
+
|
|
3124
|
+
interface ChannelAuthorization {
|
|
3125
|
+
readonly 'placeholder'?: string;
|
|
3126
|
+
}
|
|
3127
|
+
|
|
3128
|
+
interface ChannelAuthorizationForm {
|
|
3129
|
+
readonly 'channel_id': string;
|
|
3130
|
+
}
|
|
3131
|
+
|
|
3132
|
+
interface ChannelCurrency {
|
|
3133
|
+
readonly 'id': string;
|
|
3134
|
+
readonly 'currency': string;
|
|
3135
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
3136
|
+
readonly 'capabilities': io.flow.channel.v0.enums.ChannelCurrencyCapability[];
|
|
3137
|
+
}
|
|
3138
|
+
|
|
3139
|
+
interface ChannelOrganization {
|
|
3140
|
+
readonly 'id': string;
|
|
3141
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
3142
|
+
readonly 'key': string;
|
|
3143
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
3144
|
+
readonly 'name': string;
|
|
3145
|
+
readonly 'slug'?: string;
|
|
3146
|
+
readonly 'defaults': io.flow.common.v0.models.OrganizationDefaults;
|
|
3147
|
+
readonly 'attributes'?: Record<string, string>;
|
|
3148
|
+
}
|
|
3149
|
+
|
|
3150
|
+
interface ChannelOrganizationAuthorization {
|
|
3151
|
+
readonly 'placeholder'?: string;
|
|
3152
|
+
}
|
|
3153
|
+
|
|
3154
|
+
interface ChannelOrganizationAuthorizationForm {
|
|
3155
|
+
readonly 'channel_id': string;
|
|
3156
|
+
readonly 'organization_id': string;
|
|
3157
|
+
}
|
|
3158
|
+
|
|
3159
|
+
interface ChannelOrganizationForm {
|
|
3160
|
+
readonly 'key': string;
|
|
3161
|
+
readonly 'name'?: string;
|
|
3162
|
+
readonly 'slug'?: string;
|
|
3163
|
+
readonly 'defaults': io.flow.common.v0.models.OrganizationDefaults;
|
|
3164
|
+
readonly 'attributes'?: Record<string, string>;
|
|
3165
|
+
}
|
|
3166
|
+
|
|
3167
|
+
interface ChannelOrganizationPutForm {
|
|
3168
|
+
readonly 'name'?: string;
|
|
3169
|
+
readonly 'slug'?: string;
|
|
3170
|
+
readonly 'defaults': io.flow.common.v0.models.OrganizationDefaults;
|
|
3171
|
+
readonly 'attributes'?: Record<string, string>;
|
|
3172
|
+
}
|
|
3173
|
+
}
|
|
3174
|
+
|
|
3001
3175
|
declare namespace io.flow.reference.v0.enums {
|
|
3002
3176
|
type PaymentMethodCapability = 'credit' | 'debit';
|
|
3003
3177
|
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
@@ -3113,33 +3287,6 @@ declare namespace io.flow.reference.v0.models {
|
|
|
3113
3287
|
}
|
|
3114
3288
|
}
|
|
3115
3289
|
|
|
3116
|
-
declare namespace io.flow.ben.test.internal.v0.models {
|
|
3117
|
-
interface GenerateLoadMultipleOrgs {
|
|
3118
|
-
readonly 'discriminator': 'generate_load_multiple_orgs';
|
|
3119
|
-
readonly 'organization_ids': string[];
|
|
3120
|
-
readonly 'num_events': number;
|
|
3121
|
-
}
|
|
3122
|
-
|
|
3123
|
-
interface GenerateLoadSingleOrg {
|
|
3124
|
-
readonly 'discriminator': 'generate_load_single_org';
|
|
3125
|
-
readonly 'organization_id': string;
|
|
3126
|
-
readonly 'num_events': number;
|
|
3127
|
-
}
|
|
3128
|
-
|
|
3129
|
-
interface Test {
|
|
3130
|
-
readonly 'id': string;
|
|
3131
|
-
readonly 'name': string;
|
|
3132
|
-
}
|
|
3133
|
-
|
|
3134
|
-
interface TestForm {
|
|
3135
|
-
readonly 'name': string;
|
|
3136
|
-
}
|
|
3137
|
-
}
|
|
3138
|
-
|
|
3139
|
-
declare namespace io.flow.ben.test.internal.v0.unions {
|
|
3140
|
-
type GenerateLoad = (io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs);
|
|
3141
|
-
}
|
|
3142
|
-
|
|
3143
3290
|
declare namespace io.flow.fulfillment.v0.enums {
|
|
3144
3291
|
type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
|
|
3145
3292
|
type DeliveryOptionCostDetailComponentKey = 'ratecard_base_cost' | 'ratecard_ddp_fee' | 'ratecard_fuel_surcharge' | 'ratecard_oversized_shipment_fee' | 'ratecard_rural_shipment_fee' | 'ratecard_emergency_situation_surcharge_fee' | 'ratecard_peak_surcharge_fee' | 'ratecard_duties_taxes_paid_surcharge_fee' | 'center_commercial_invoice_fee' | 'center_inbound_carton_fee' | 'center_outbound_carton_fee';
|
|
@@ -3862,6 +4009,63 @@ declare namespace io.flow.merchant.of.record.v0.enums {
|
|
|
3862
4009
|
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa';
|
|
3863
4010
|
}
|
|
3864
4011
|
|
|
4012
|
+
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
4013
|
+
type AldoItemType = 'physical' | 'digital';
|
|
4014
|
+
type AnshItemType = 'physical' | 'digital';
|
|
4015
|
+
}
|
|
4016
|
+
|
|
4017
|
+
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
4018
|
+
interface AldoItem {
|
|
4019
|
+
readonly 'id': string;
|
|
4020
|
+
readonly 'number': string;
|
|
4021
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4022
|
+
readonly 'description'?: string;
|
|
4023
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
|
|
4024
|
+
readonly 'added_on': string;
|
|
4025
|
+
}
|
|
4026
|
+
|
|
4027
|
+
interface AldoItemForm {
|
|
4028
|
+
readonly 'number': string;
|
|
4029
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4030
|
+
readonly 'description'?: string;
|
|
4031
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
|
|
4032
|
+
readonly 'added_on': string;
|
|
4033
|
+
}
|
|
4034
|
+
|
|
4035
|
+
interface AnshItem {
|
|
4036
|
+
readonly 'id': string;
|
|
4037
|
+
readonly 'number': string;
|
|
4038
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4039
|
+
readonly 'description'?: string;
|
|
4040
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
4041
|
+
readonly 'added_on': string;
|
|
4042
|
+
}
|
|
4043
|
+
|
|
4044
|
+
interface AnshItemForm {
|
|
4045
|
+
readonly 'number': string;
|
|
4046
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4047
|
+
readonly 'description'?: string;
|
|
4048
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
4049
|
+
readonly 'added_on': string;
|
|
4050
|
+
}
|
|
4051
|
+
|
|
4052
|
+
interface JeanDemoItem {
|
|
4053
|
+
readonly 'id': string;
|
|
4054
|
+
readonly 'name': string;
|
|
4055
|
+
}
|
|
4056
|
+
|
|
4057
|
+
interface ShawnRoundtableWorkshopRate {
|
|
4058
|
+
readonly 'origin_country': string;
|
|
4059
|
+
readonly 'destination_country': string;
|
|
4060
|
+
readonly 'weight': number;
|
|
4061
|
+
readonly 'amount': number;
|
|
4062
|
+
}
|
|
4063
|
+
|
|
4064
|
+
interface TechOnboardingDescription {
|
|
4065
|
+
readonly 'description': string;
|
|
4066
|
+
}
|
|
4067
|
+
}
|
|
4068
|
+
|
|
3865
4069
|
declare namespace io.flow.currency.v0.models {
|
|
3866
4070
|
interface Rate {
|
|
3867
4071
|
readonly 'id': string;
|
|
@@ -4028,6 +4232,170 @@ declare namespace io.flow.organization.v0.models {
|
|
|
4028
4232
|
}
|
|
4029
4233
|
}
|
|
4030
4234
|
|
|
4235
|
+
declare namespace io.flow.order.price.v0.enums {
|
|
4236
|
+
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
4237
|
+
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
4238
|
+
}
|
|
4239
|
+
|
|
4240
|
+
declare namespace io.flow.order.price.v0.models {
|
|
4241
|
+
interface OrderPriceDetail {
|
|
4242
|
+
readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
4243
|
+
readonly 'currency': string;
|
|
4244
|
+
readonly 'amount': number;
|
|
4245
|
+
readonly 'label': string;
|
|
4246
|
+
readonly 'base': io.flow.common.v0.models.Price;
|
|
4247
|
+
readonly 'components': io.flow.order.price.v0.models.OrderPriceDetailComponent[];
|
|
4248
|
+
readonly 'name'?: string;
|
|
4249
|
+
readonly 'rate'?: number;
|
|
4250
|
+
readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
|
|
4251
|
+
readonly 'rate_label'?: string;
|
|
4252
|
+
}
|
|
4253
|
+
|
|
4254
|
+
interface OrderPriceDetailComponent {
|
|
4255
|
+
readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
|
|
4256
|
+
readonly 'currency': string;
|
|
4257
|
+
readonly 'amount': number;
|
|
4258
|
+
readonly 'label': string;
|
|
4259
|
+
readonly 'base': io.flow.common.v0.models.Price;
|
|
4260
|
+
readonly 'name'?: string;
|
|
4261
|
+
}
|
|
4262
|
+
}
|
|
4263
|
+
|
|
4264
|
+
declare namespace io.flow.channel.internal.v0.enums {
|
|
4265
|
+
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
4266
|
+
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
4267
|
+
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
4268
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
4269
|
+
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
4270
|
+
}
|
|
4271
|
+
|
|
4272
|
+
declare namespace io.flow.channel.internal.v0.models {
|
|
4273
|
+
interface ChannelCurrencyForm {
|
|
4274
|
+
readonly 'currency': string;
|
|
4275
|
+
readonly 'channel_id': string;
|
|
4276
|
+
readonly 'capabilities': io.flow.channel.v0.enums.ChannelCurrencyCapability[];
|
|
4277
|
+
}
|
|
4278
|
+
|
|
4279
|
+
interface ChannelForm {
|
|
4280
|
+
readonly 'name': string;
|
|
4281
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
4282
|
+
readonly 'organization_id_prefix'?: string;
|
|
4283
|
+
}
|
|
4284
|
+
|
|
4285
|
+
interface ChannelMembership {
|
|
4286
|
+
readonly 'id': string;
|
|
4287
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
4288
|
+
readonly 'user': io.flow.common.v0.unions.ExpandableUser;
|
|
4289
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
4290
|
+
}
|
|
4291
|
+
|
|
4292
|
+
interface ChannelMembershipForm {
|
|
4293
|
+
readonly 'channel_id': string;
|
|
4294
|
+
readonly 'user_id': string;
|
|
4295
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
4296
|
+
}
|
|
4297
|
+
|
|
4298
|
+
interface ChannelMembershipPutForm {
|
|
4299
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
4300
|
+
}
|
|
4301
|
+
|
|
4302
|
+
interface ChannelOrderAcceptance {
|
|
4303
|
+
readonly 'id': string;
|
|
4304
|
+
readonly 'organization_id': string;
|
|
4305
|
+
readonly 'order_number': string;
|
|
4306
|
+
readonly 'channel_id': string;
|
|
4307
|
+
readonly 'external_order_reference': string;
|
|
4308
|
+
readonly 'payment_request_id'?: string;
|
|
4309
|
+
readonly 'order_edit_payment_request_ids'?: string[];
|
|
4310
|
+
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
4311
|
+
readonly 'reasons': io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
4312
|
+
readonly 'next_action_from'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
4313
|
+
readonly 'order_created_at'?: string;
|
|
4314
|
+
readonly 'order_updated_at'?: string;
|
|
4315
|
+
readonly 'order_edit_summary'?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
4316
|
+
}
|
|
4317
|
+
|
|
4318
|
+
interface ChannelOrderAcceptanceDetails {
|
|
4319
|
+
readonly 'order_acceptance': io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
4320
|
+
readonly 'external_order': any/*object*/;
|
|
4321
|
+
}
|
|
4322
|
+
|
|
4323
|
+
interface ChannelOrderAcceptanceFailure {
|
|
4324
|
+
readonly 'id': string;
|
|
4325
|
+
readonly 'organization_id': string;
|
|
4326
|
+
readonly 'channel_id': string;
|
|
4327
|
+
readonly 'payment_request_id': string;
|
|
4328
|
+
readonly 'code': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
4329
|
+
readonly 'reason': string;
|
|
4330
|
+
}
|
|
4331
|
+
|
|
4332
|
+
interface ChannelOrderAcceptanceForm {
|
|
4333
|
+
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
4334
|
+
}
|
|
4335
|
+
|
|
4336
|
+
interface ChannelOrderAcceptanceReason {
|
|
4337
|
+
readonly 'description': string;
|
|
4338
|
+
readonly 'rejection_reason'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
4339
|
+
}
|
|
4340
|
+
|
|
4341
|
+
interface FlowChannelOrganization {
|
|
4342
|
+
readonly 'placeholder'?: string;
|
|
4343
|
+
}
|
|
4344
|
+
|
|
4345
|
+
interface OrderEditSummary {
|
|
4346
|
+
readonly 'edited_at': string;
|
|
4347
|
+
}
|
|
4348
|
+
}
|
|
4349
|
+
|
|
4350
|
+
declare namespace io.flow.product.v0.models {
|
|
4351
|
+
interface Product {
|
|
4352
|
+
readonly 'organization_id': string;
|
|
4353
|
+
readonly 'number': string;
|
|
4354
|
+
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
4355
|
+
readonly 'taxonomy_data'?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
4356
|
+
readonly 'item_numbers': string[];
|
|
4357
|
+
readonly 'updated_at': string;
|
|
4358
|
+
readonly 'deleted_at'?: string;
|
|
4359
|
+
}
|
|
4360
|
+
|
|
4361
|
+
interface ProductTaxonomyCategory {
|
|
4362
|
+
readonly 'name': string;
|
|
4363
|
+
readonly 'full_name': string;
|
|
4364
|
+
}
|
|
4365
|
+
|
|
4366
|
+
interface ProductTaxonomyData {
|
|
4367
|
+
readonly 'key': string;
|
|
4368
|
+
readonly 'value': string[];
|
|
4369
|
+
}
|
|
4370
|
+
}
|
|
4371
|
+
|
|
4372
|
+
declare namespace io.flow.ben.test.internal.v0.models {
|
|
4373
|
+
interface GenerateLoadMultipleOrgs {
|
|
4374
|
+
readonly 'discriminator': 'generate_load_multiple_orgs';
|
|
4375
|
+
readonly 'organization_ids': string[];
|
|
4376
|
+
readonly 'num_events': number;
|
|
4377
|
+
}
|
|
4378
|
+
|
|
4379
|
+
interface GenerateLoadSingleOrg {
|
|
4380
|
+
readonly 'discriminator': 'generate_load_single_org';
|
|
4381
|
+
readonly 'organization_id': string;
|
|
4382
|
+
readonly 'num_events': number;
|
|
4383
|
+
}
|
|
4384
|
+
|
|
4385
|
+
interface Test {
|
|
4386
|
+
readonly 'id': string;
|
|
4387
|
+
readonly 'name': string;
|
|
4388
|
+
}
|
|
4389
|
+
|
|
4390
|
+
interface TestForm {
|
|
4391
|
+
readonly 'name': string;
|
|
4392
|
+
}
|
|
4393
|
+
}
|
|
4394
|
+
|
|
4395
|
+
declare namespace io.flow.ben.test.internal.v0.unions {
|
|
4396
|
+
type GenerateLoad = (io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs);
|
|
4397
|
+
}
|
|
4398
|
+
|
|
4031
4399
|
declare namespace io.flow.catalog.v0.enums {
|
|
4032
4400
|
type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
|
|
4033
4401
|
type AttributeIntent = 'brand' | 'color' | 'countries_of_origin' | 'product_id' | 'fulfillment_method' | 'hazardous' | 'price' | 'size' | 'sku' | 'taxability' | 'consumer_url' | 'gtin' | 'mpn' | 'facet' | 'eccn' | 'returnable' | 'searchable' | 'barcode' | 'min_days_to_ship' | 'max_days_to_ship' | 'commercial_invoice_item_number' | 'include_in_product_feeds';
|
|
@@ -4655,6 +5023,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4655
5023
|
type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
|
|
4656
5024
|
type ChangeType = 'insert' | 'update' | 'delete';
|
|
4657
5025
|
type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
|
|
5026
|
+
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
4658
5027
|
type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
|
|
4659
5028
|
type ConsumerInvoiceDocumentType = 'pdf';
|
|
4660
5029
|
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
@@ -4682,7 +5051,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4682
5051
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
4683
5052
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
4684
5053
|
type Environment = 'sandbox' | 'production';
|
|
4685
|
-
type EventType = 'test_upserted' | 'generate_load' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | '
|
|
5054
|
+
type EventType = 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'product_inserted' | 'product_updated' | 'product_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
4686
5055
|
type ExceptionType = 'open' | 'closed';
|
|
4687
5056
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
4688
5057
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -4798,6 +5167,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4798
5167
|
type Role = 'admin' | 'member';
|
|
4799
5168
|
type RoundingMethod = 'up' | 'down' | 'nearest';
|
|
4800
5169
|
type RoundingType = 'pattern' | 'multiple';
|
|
5170
|
+
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
4801
5171
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
4802
5172
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
4803
5173
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
@@ -4811,6 +5181,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4811
5181
|
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
4812
5182
|
type Strategy = 'range' | 'from' | 'to';
|
|
4813
5183
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
5184
|
+
type SubstatusCode = 'Delivered_001' | 'Delivered_002' | 'Delivered_003' | 'Delivered_004' | 'AvailableForPickup_001' | 'Exception_001' | 'Exception_002' | 'Exception_003' | 'Exception_004' | 'Exception_005' | 'Exception_006' | 'Exception_007' | 'Exception_008' | 'Exception_009' | 'Exception_010' | 'Exception_011' | 'Exception_012' | 'Exception_013' | 'AttemptFail_001' | 'AttemptFail_002' | 'AttemptFail_003' | 'InTransit_001' | 'InTransit_002' | 'InTransit_003' | 'InTransit_004' | 'InTransit_005' | 'InTransit_006' | 'InTransit_007' | 'InTransit_008' | 'InTransit_009' | 'InfoReceived_001' | 'OutForDelivery_001' | 'OutForDelivery_003' | 'OutForDelivery_004' | 'Pending_001' | 'Pending_002' | 'Pending_003' | 'Pending_004' | 'Pending_005' | 'Pending_006' | 'Expired_001';
|
|
4814
5185
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
4815
5186
|
type SyncRecordFailureReason = 'inventory' | 'address' | 'promotion' | 'other';
|
|
4816
5187
|
type SyncStreamType = 'submitted_order' | 'placed_order';
|
|
@@ -4830,7 +5201,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4830
5201
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
4831
5202
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
4832
5203
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
4833
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund';
|
|
5204
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'order_fx' | 'ge_revenue_share' | 'tax_duty_delta';
|
|
4834
5205
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
4835
5206
|
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail';
|
|
4836
5207
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
@@ -5159,6 +5530,20 @@ declare namespace io.flow.v0.models {
|
|
|
5159
5530
|
readonly 'fingerprint_token': string;
|
|
5160
5531
|
}
|
|
5161
5532
|
|
|
5533
|
+
interface AldoItemDeleted {
|
|
5534
|
+
readonly 'discriminator': 'aldo_item_deleted';
|
|
5535
|
+
readonly 'event_id': string;
|
|
5536
|
+
readonly 'timestamp': string;
|
|
5537
|
+
readonly 'id': string;
|
|
5538
|
+
}
|
|
5539
|
+
|
|
5540
|
+
interface AldoItemUpserted {
|
|
5541
|
+
readonly 'discriminator': 'aldo_item_upserted';
|
|
5542
|
+
readonly 'event_id': string;
|
|
5543
|
+
readonly 'timestamp': string;
|
|
5544
|
+
readonly 'item': io.flow.tech.onboarding.playground.v0.models.AldoItem;
|
|
5545
|
+
}
|
|
5546
|
+
|
|
5162
5547
|
interface Allocation {
|
|
5163
5548
|
readonly 'order': io.flow.v0.models.AllocationOrderSummary;
|
|
5164
5549
|
readonly 'details': io.flow.v0.unions.AllocationDetail[];
|
|
@@ -6065,6 +6450,11 @@ declare namespace io.flow.v0.models {
|
|
|
6065
6450
|
readonly 'id': string;
|
|
6066
6451
|
}
|
|
6067
6452
|
|
|
6453
|
+
interface CarrierRestrictions {
|
|
6454
|
+
readonly 'carrier': string;
|
|
6455
|
+
readonly 'regions': string[];
|
|
6456
|
+
}
|
|
6457
|
+
|
|
6068
6458
|
interface CarrierService {
|
|
6069
6459
|
readonly 'id': string;
|
|
6070
6460
|
readonly 'carrier': io.flow.v0.models.Carrier;
|
|
@@ -6086,22 +6476,6 @@ declare namespace io.flow.v0.models {
|
|
|
6086
6476
|
readonly 'organization': string;
|
|
6087
6477
|
}
|
|
6088
6478
|
|
|
6089
|
-
interface CatalogItemDeleted {
|
|
6090
|
-
readonly 'discriminator': 'catalog_item_deleted';
|
|
6091
|
-
readonly 'event_id': string;
|
|
6092
|
-
readonly 'timestamp': string;
|
|
6093
|
-
readonly 'organization': string;
|
|
6094
|
-
readonly 'number': string;
|
|
6095
|
-
}
|
|
6096
|
-
|
|
6097
|
-
interface CatalogItemDeletedV2 {
|
|
6098
|
-
readonly 'discriminator': 'catalog_item_deleted_v2';
|
|
6099
|
-
readonly 'event_id': string;
|
|
6100
|
-
readonly 'timestamp': string;
|
|
6101
|
-
readonly 'organization': string;
|
|
6102
|
-
readonly 'item': io.flow.v0.models.Item;
|
|
6103
|
-
}
|
|
6104
|
-
|
|
6105
6479
|
interface CatalogItemDocument {
|
|
6106
6480
|
readonly 'discriminator': 'catalog_item_document';
|
|
6107
6481
|
readonly 'number': string;
|
|
@@ -6134,31 +6508,6 @@ declare namespace io.flow.v0.models {
|
|
|
6134
6508
|
readonly 'attributes': Record<string, string>;
|
|
6135
6509
|
}
|
|
6136
6510
|
|
|
6137
|
-
interface CatalogItemUpserted {
|
|
6138
|
-
readonly 'discriminator': 'catalog_item_upserted';
|
|
6139
|
-
readonly 'event_id': string;
|
|
6140
|
-
readonly 'timestamp': string;
|
|
6141
|
-
readonly 'organization': string;
|
|
6142
|
-
readonly 'number': string;
|
|
6143
|
-
readonly 'locale': string;
|
|
6144
|
-
readonly 'name': string;
|
|
6145
|
-
readonly 'currency': string;
|
|
6146
|
-
readonly 'price': number;
|
|
6147
|
-
readonly 'categories': string[];
|
|
6148
|
-
readonly 'description'?: string;
|
|
6149
|
-
readonly 'attributes': Record<string, string>;
|
|
6150
|
-
readonly 'dimensions': any/*object*/;
|
|
6151
|
-
readonly 'images': any/*object*/[];
|
|
6152
|
-
}
|
|
6153
|
-
|
|
6154
|
-
interface CatalogItemUpsertedV2 {
|
|
6155
|
-
readonly 'discriminator': 'catalog_item_upserted_v2';
|
|
6156
|
-
readonly 'event_id': string;
|
|
6157
|
-
readonly 'timestamp': string;
|
|
6158
|
-
readonly 'organization': string;
|
|
6159
|
-
readonly 'item': io.flow.v0.models.Item;
|
|
6160
|
-
}
|
|
6161
|
-
|
|
6162
6511
|
interface CatalogPriceBookItemDocument {
|
|
6163
6512
|
readonly 'price_book_key': string;
|
|
6164
6513
|
readonly 'price_book_item_key': string;
|
|
@@ -6454,6 +6803,39 @@ declare namespace io.flow.v0.models {
|
|
|
6454
6803
|
readonly 'id': string;
|
|
6455
6804
|
}
|
|
6456
6805
|
|
|
6806
|
+
interface ChannelShopifyOrderState {
|
|
6807
|
+
readonly 'id': string;
|
|
6808
|
+
readonly 'shopify_order_summary': io.flow.v0.models.ChannelShopifyOrderSummary;
|
|
6809
|
+
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
6810
|
+
readonly 'reasons'?: io.flow.v0.models.ChannelShopifyOrderStateReason[];
|
|
6811
|
+
}
|
|
6812
|
+
|
|
6813
|
+
interface ChannelShopifyOrderStateDeleted {
|
|
6814
|
+
readonly 'discriminator': 'channel_shopify_order_state_deleted';
|
|
6815
|
+
readonly 'event_id': string;
|
|
6816
|
+
readonly 'timestamp': string;
|
|
6817
|
+
readonly 'organization': string;
|
|
6818
|
+
readonly 'id': string;
|
|
6819
|
+
}
|
|
6820
|
+
|
|
6821
|
+
interface ChannelShopifyOrderStateReason {
|
|
6822
|
+
readonly 'code': io.flow.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
6823
|
+
readonly 'message': string;
|
|
6824
|
+
}
|
|
6825
|
+
|
|
6826
|
+
interface ChannelShopifyOrderStateUpserted {
|
|
6827
|
+
readonly 'discriminator': 'channel_shopify_order_state_upserted';
|
|
6828
|
+
readonly 'event_id': string;
|
|
6829
|
+
readonly 'timestamp': string;
|
|
6830
|
+
readonly 'organization': string;
|
|
6831
|
+
readonly 'channel_shopify_order_state': io.flow.v0.models.ChannelShopifyOrderState;
|
|
6832
|
+
}
|
|
6833
|
+
|
|
6834
|
+
interface ChannelShopifyOrderSummary {
|
|
6835
|
+
readonly 'order_id': number;
|
|
6836
|
+
readonly 'shop_id': number;
|
|
6837
|
+
}
|
|
6838
|
+
|
|
6457
6839
|
interface ChannelStatement {
|
|
6458
6840
|
readonly 'id': string;
|
|
6459
6841
|
readonly 'account': io.flow.v0.models.AccountReference;
|
|
@@ -7451,12 +7833,14 @@ declare namespace io.flow.v0.models {
|
|
|
7451
7833
|
readonly 'q': string;
|
|
7452
7834
|
readonly 'dimensions': io.flow.v0.models.EstimatedDimensions;
|
|
7453
7835
|
readonly 'position': number;
|
|
7836
|
+
readonly 'block_bulk_update'?: boolean;
|
|
7454
7837
|
}
|
|
7455
7838
|
|
|
7456
7839
|
interface DimensionEstimateForm {
|
|
7457
7840
|
readonly 'q': string;
|
|
7458
7841
|
readonly 'dimensions': io.flow.v0.models.EstimatedDimensions;
|
|
7459
7842
|
readonly 'position'?: number;
|
|
7843
|
+
readonly 'block_bulk_update'?: boolean;
|
|
7460
7844
|
}
|
|
7461
7845
|
|
|
7462
7846
|
interface DimensionEstimateVersion {
|
|
@@ -12128,6 +12512,32 @@ declare namespace io.flow.v0.models {
|
|
|
12128
12512
|
readonly 'source': io.flow.v0.enums.DeliveryWindowComponentSource;
|
|
12129
12513
|
}
|
|
12130
12514
|
|
|
12515
|
+
interface Product {
|
|
12516
|
+
readonly 'organization_id': string;
|
|
12517
|
+
readonly 'number': string;
|
|
12518
|
+
readonly 'taxonomy_category'?: io.flow.v0.models.ProductTaxonomyCategory;
|
|
12519
|
+
readonly 'taxonomy_data'?: io.flow.v0.models.ProductTaxonomyData[];
|
|
12520
|
+
readonly 'item_numbers': string[];
|
|
12521
|
+
readonly 'updated_at': string;
|
|
12522
|
+
readonly 'deleted_at'?: string;
|
|
12523
|
+
}
|
|
12524
|
+
|
|
12525
|
+
interface ProductDeleted {
|
|
12526
|
+
readonly 'discriminator': 'product_deleted';
|
|
12527
|
+
readonly 'event_id': string;
|
|
12528
|
+
readonly 'timestamp': string;
|
|
12529
|
+
readonly 'organization': string;
|
|
12530
|
+
readonly 'product': io.flow.v0.models.Product;
|
|
12531
|
+
}
|
|
12532
|
+
|
|
12533
|
+
interface ProductInserted {
|
|
12534
|
+
readonly 'discriminator': 'product_inserted';
|
|
12535
|
+
readonly 'event_id': string;
|
|
12536
|
+
readonly 'timestamp': string;
|
|
12537
|
+
readonly 'organization': string;
|
|
12538
|
+
readonly 'product': io.flow.v0.models.Product;
|
|
12539
|
+
}
|
|
12540
|
+
|
|
12131
12541
|
interface ProductRestrictionResult {
|
|
12132
12542
|
readonly 'id': string;
|
|
12133
12543
|
readonly 'product_id': string;
|
|
@@ -12157,6 +12567,47 @@ declare namespace io.flow.v0.models {
|
|
|
12157
12567
|
readonly 'product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
|
|
12158
12568
|
}
|
|
12159
12569
|
|
|
12570
|
+
interface ProductSellability {
|
|
12571
|
+
readonly 'organization_id': string;
|
|
12572
|
+
readonly 'product_id'?: string;
|
|
12573
|
+
readonly 'product_correlation_id': string;
|
|
12574
|
+
readonly 'restricted_regions': io.flow.v0.models.SellablilityRegionResult[];
|
|
12575
|
+
readonly 'in_review_regions': io.flow.v0.models.SellablilityRegionResult[];
|
|
12576
|
+
}
|
|
12577
|
+
|
|
12578
|
+
interface ProductSellabilityForm {
|
|
12579
|
+
readonly 'organization_id': string;
|
|
12580
|
+
readonly 'product_id'?: string;
|
|
12581
|
+
readonly 'product_correlation_id': string;
|
|
12582
|
+
readonly 'name': string;
|
|
12583
|
+
readonly 'price': io.flow.v0.models.ProductSellabilityPrice;
|
|
12584
|
+
readonly 'description': string;
|
|
12585
|
+
readonly 'taxonomy_category': io.flow.v0.models.ProductTaxonomyCategory;
|
|
12586
|
+
}
|
|
12587
|
+
|
|
12588
|
+
interface ProductSellabilityPrice {
|
|
12589
|
+
readonly 'currency': string;
|
|
12590
|
+
readonly 'amount': number;
|
|
12591
|
+
}
|
|
12592
|
+
|
|
12593
|
+
interface ProductTaxonomyCategory {
|
|
12594
|
+
readonly 'name': string;
|
|
12595
|
+
readonly 'full_name': string;
|
|
12596
|
+
}
|
|
12597
|
+
|
|
12598
|
+
interface ProductTaxonomyData {
|
|
12599
|
+
readonly 'key': string;
|
|
12600
|
+
readonly 'value': string[];
|
|
12601
|
+
}
|
|
12602
|
+
|
|
12603
|
+
interface ProductUpdated {
|
|
12604
|
+
readonly 'discriminator': 'product_updated';
|
|
12605
|
+
readonly 'event_id': string;
|
|
12606
|
+
readonly 'timestamp': string;
|
|
12607
|
+
readonly 'organization': string;
|
|
12608
|
+
readonly 'product': io.flow.v0.models.Product;
|
|
12609
|
+
}
|
|
12610
|
+
|
|
12160
12611
|
interface PromotionTrigger {
|
|
12161
12612
|
readonly 'type': io.flow.v0.enums.PromotionTriggerType;
|
|
12162
12613
|
readonly 'min': io.flow.v0.models.Price;
|
|
@@ -13102,6 +13553,11 @@ declare namespace io.flow.v0.models {
|
|
|
13102
13553
|
readonly 'issuer_options': io.flow.v0.models.IssuerReference[];
|
|
13103
13554
|
}
|
|
13104
13555
|
|
|
13556
|
+
interface SellablilityRegionResult {
|
|
13557
|
+
readonly 'type': io.flow.v0.enums.RuleEffectType;
|
|
13558
|
+
readonly 'regions': string[];
|
|
13559
|
+
}
|
|
13560
|
+
|
|
13105
13561
|
interface ServiceReference {
|
|
13106
13562
|
readonly 'id': string;
|
|
13107
13563
|
}
|
|
@@ -14951,7 +15407,7 @@ declare namespace io.flow.v0.unions {
|
|
|
14951
15407
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
14952
15408
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
14953
15409
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
14954
|
-
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.
|
|
15410
|
+
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.ProductInserted | io.flow.v0.models.ProductUpdated | io.flow.v0.models.ProductDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
|
|
14955
15411
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
|
|
14956
15412
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
14957
15413
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -15068,6 +15524,7 @@ export const carrierChargeReason: PropTypes.Requireable<io.flow.v0.enums.Carrier
|
|
|
15068
15524
|
export const centerCapability: PropTypes.Requireable<io.flow.v0.enums.CenterCapability>;
|
|
15069
15525
|
export const changeType: PropTypes.Requireable<io.flow.v0.enums.ChangeType>;
|
|
15070
15526
|
export const channelCurrencyCapability: PropTypes.Requireable<io.flow.v0.enums.ChannelCurrencyCapability>;
|
|
15527
|
+
export const channelShopifyOrderStateReasonCode: PropTypes.Requireable<io.flow.v0.enums.ChannelShopifyOrderStateReasonCode>;
|
|
15071
15528
|
export const consumerInvoiceCustomerType: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceCustomerType>;
|
|
15072
15529
|
export const consumerInvoiceDocumentType: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceDocumentType>;
|
|
15073
15530
|
export const consumerInvoiceStatus: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceStatus>;
|
|
@@ -15211,6 +15668,7 @@ export const reviewStatus: PropTypes.Requireable<io.flow.v0.enums.ReviewStatus>;
|
|
|
15211
15668
|
export const role: PropTypes.Requireable<io.flow.v0.enums.Role>;
|
|
15212
15669
|
export const roundingMethod: PropTypes.Requireable<io.flow.v0.enums.RoundingMethod>;
|
|
15213
15670
|
export const roundingType: PropTypes.Requireable<io.flow.v0.enums.RoundingType>;
|
|
15671
|
+
export const ruleEffectType: PropTypes.Requireable<io.flow.v0.enums.RuleEffectType>;
|
|
15214
15672
|
export const scheduleExceptionStatus: PropTypes.Requireable<io.flow.v0.enums.ScheduleExceptionStatus>;
|
|
15215
15673
|
export const shipmentIntegrationType: PropTypes.Requireable<io.flow.v0.enums.ShipmentIntegrationType>;
|
|
15216
15674
|
export const shipmentRecipient: PropTypes.Requireable<io.flow.v0.enums.ShipmentRecipient>;
|
|
@@ -15224,6 +15682,7 @@ export const statementAttachmentType: PropTypes.Requireable<io.flow.v0.enums.Sta
|
|
|
15224
15682
|
export const storedMethodUsageStep: PropTypes.Requireable<io.flow.v0.enums.StoredMethodUsageStep>;
|
|
15225
15683
|
export const strategy: PropTypes.Requireable<io.flow.v0.enums.Strategy>;
|
|
15226
15684
|
export const subcatalogItemStatus: PropTypes.Requireable<io.flow.v0.enums.SubcatalogItemStatus>;
|
|
15685
|
+
export const substatusCode: PropTypes.Requireable<io.flow.v0.enums.SubstatusCode>;
|
|
15227
15686
|
export const surchargeResponsibleParty: PropTypes.Requireable<io.flow.v0.enums.SurchargeResponsibleParty>;
|
|
15228
15687
|
export const syncRecordFailureReason: PropTypes.Requireable<io.flow.v0.enums.SyncRecordFailureReason>;
|
|
15229
15688
|
export const syncStreamType: PropTypes.Requireable<io.flow.v0.enums.SyncStreamType>;
|
|
@@ -15301,6 +15760,8 @@ export const adyenIdentifyShopperData: PropTypes.Requireable<io.flow.v0.models.A
|
|
|
15301
15760
|
export const adyenNativeActionDetails: PropTypes.Requireable<io.flow.v0.models.AdyenNativeActionDetails>;
|
|
15302
15761
|
export const adyenV3ChallengeToken: PropTypes.Requireable<io.flow.v0.models.AdyenV3ChallengeToken>;
|
|
15303
15762
|
export const adyenV3FingerprintToken: PropTypes.Requireable<io.flow.v0.models.AdyenV3FingerprintToken>;
|
|
15763
|
+
export const aldoItemDeleted: PropTypes.Requireable<io.flow.v0.models.AldoItemDeleted>;
|
|
15764
|
+
export const aldoItemUpserted: PropTypes.Requireable<io.flow.v0.models.AldoItemUpserted>;
|
|
15304
15765
|
export const allocation: PropTypes.Requireable<io.flow.v0.models.Allocation>;
|
|
15305
15766
|
export const allocationDeletedV2: PropTypes.Requireable<io.flow.v0.models.AllocationDeletedV2>;
|
|
15306
15767
|
export const allocationDetailComponent: PropTypes.Requireable<io.flow.v0.models.AllocationDetailComponent>;
|
|
@@ -15421,19 +15882,16 @@ export const cardUpsertedV2: PropTypes.Requireable<io.flow.v0.models.CardUpserte
|
|
|
15421
15882
|
export const cardVersion: PropTypes.Requireable<io.flow.v0.models.CardVersion>;
|
|
15422
15883
|
export const carrier: PropTypes.Requireable<io.flow.v0.models.Carrier>;
|
|
15423
15884
|
export const carrierReference: PropTypes.Requireable<io.flow.v0.models.CarrierReference>;
|
|
15885
|
+
export const carrierRestrictions: PropTypes.Requireable<io.flow.v0.models.CarrierRestrictions>;
|
|
15424
15886
|
export const carrierService: PropTypes.Requireable<io.flow.v0.models.CarrierService>;
|
|
15425
15887
|
export const cartReference: PropTypes.Requireable<io.flow.v0.models.CartReference>;
|
|
15426
15888
|
export const catalog: PropTypes.Requireable<io.flow.v0.models.Catalog>;
|
|
15427
15889
|
export const catalogDeleted: PropTypes.Requireable<io.flow.v0.models.CatalogDeleted>;
|
|
15428
|
-
export const catalogItemDeleted: PropTypes.Requireable<io.flow.v0.models.CatalogItemDeleted>;
|
|
15429
|
-
export const catalogItemDeletedV2: PropTypes.Requireable<io.flow.v0.models.CatalogItemDeletedV2>;
|
|
15430
15890
|
export const catalogItemDocument: PropTypes.Requireable<io.flow.v0.models.CatalogItemDocument>;
|
|
15431
15891
|
export const catalogItemDocumentImages: PropTypes.Requireable<io.flow.v0.models.CatalogItemDocumentImages>;
|
|
15432
15892
|
export const catalogItemExportType: PropTypes.Requireable<io.flow.v0.models.CatalogItemExportType>;
|
|
15433
15893
|
export const catalogItemReference: PropTypes.Requireable<io.flow.v0.models.CatalogItemReference>;
|
|
15434
15894
|
export const catalogItemSummary: PropTypes.Requireable<io.flow.v0.models.CatalogItemSummary>;
|
|
15435
|
-
export const catalogItemUpserted: PropTypes.Requireable<io.flow.v0.models.CatalogItemUpserted>;
|
|
15436
|
-
export const catalogItemUpsertedV2: PropTypes.Requireable<io.flow.v0.models.CatalogItemUpsertedV2>;
|
|
15437
15895
|
export const catalogPriceBookItemDocument: PropTypes.Requireable<io.flow.v0.models.CatalogPriceBookItemDocument>;
|
|
15438
15896
|
export const catalogReference: PropTypes.Requireable<io.flow.v0.models.CatalogReference>;
|
|
15439
15897
|
export const catalogStatistics: PropTypes.Requireable<io.flow.v0.models.CatalogStatistics>;
|
|
@@ -15476,6 +15934,11 @@ export const channelPendingPayoutTransactionDeleted: PropTypes.Requireable<io.fl
|
|
|
15476
15934
|
export const channelPendingPayoutTransactionUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelPendingPayoutTransactionUpserted>;
|
|
15477
15935
|
export const channelRate: PropTypes.Requireable<io.flow.v0.models.ChannelRate>;
|
|
15478
15936
|
export const channelReference: PropTypes.Requireable<io.flow.v0.models.ChannelReference>;
|
|
15937
|
+
export const channelShopifyOrderState: PropTypes.Requireable<io.flow.v0.models.ChannelShopifyOrderState>;
|
|
15938
|
+
export const channelShopifyOrderStateDeleted: PropTypes.Requireable<io.flow.v0.models.ChannelShopifyOrderStateDeleted>;
|
|
15939
|
+
export const channelShopifyOrderStateReason: PropTypes.Requireable<io.flow.v0.models.ChannelShopifyOrderStateReason>;
|
|
15940
|
+
export const channelShopifyOrderStateUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelShopifyOrderStateUpserted>;
|
|
15941
|
+
export const channelShopifyOrderSummary: PropTypes.Requireable<io.flow.v0.models.ChannelShopifyOrderSummary>;
|
|
15479
15942
|
export const channelStatement: PropTypes.Requireable<io.flow.v0.models.ChannelStatement>;
|
|
15480
15943
|
export const channelStatementDeleted: PropTypes.Requireable<io.flow.v0.models.ChannelStatementDeleted>;
|
|
15481
15944
|
export const channelStatementUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelStatementUpserted>;
|
|
@@ -16274,9 +16737,18 @@ export const pricingSettings: PropTypes.Requireable<io.flow.v0.models.PricingSet
|
|
|
16274
16737
|
export const pricingUpserted: PropTypes.Requireable<io.flow.v0.models.PricingUpserted>;
|
|
16275
16738
|
export const pricingVersion: PropTypes.Requireable<io.flow.v0.models.PricingVersion>;
|
|
16276
16739
|
export const processingEstimate: PropTypes.Requireable<io.flow.v0.models.ProcessingEstimate>;
|
|
16740
|
+
export const product: PropTypes.Requireable<io.flow.v0.models.Product>;
|
|
16741
|
+
export const productDeleted: PropTypes.Requireable<io.flow.v0.models.ProductDeleted>;
|
|
16742
|
+
export const productInserted: PropTypes.Requireable<io.flow.v0.models.ProductInserted>;
|
|
16277
16743
|
export const productRestrictionResult: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResult>;
|
|
16278
16744
|
export const productRestrictionResultDeleted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultDeleted>;
|
|
16279
16745
|
export const productRestrictionResultUpserted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultUpserted>;
|
|
16746
|
+
export const productSellability: PropTypes.Requireable<io.flow.v0.models.ProductSellability>;
|
|
16747
|
+
export const productSellabilityForm: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityForm>;
|
|
16748
|
+
export const productSellabilityPrice: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityPrice>;
|
|
16749
|
+
export const productTaxonomyCategory: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyCategory>;
|
|
16750
|
+
export const productTaxonomyData: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyData>;
|
|
16751
|
+
export const productUpdated: PropTypes.Requireable<io.flow.v0.models.ProductUpdated>;
|
|
16280
16752
|
export const promotionTrigger: PropTypes.Requireable<io.flow.v0.models.PromotionTrigger>;
|
|
16281
16753
|
export const promotionTriggerForm: PropTypes.Requireable<io.flow.v0.models.PromotionTriggerForm>;
|
|
16282
16754
|
export const promotions: PropTypes.Requireable<io.flow.v0.models.Promotions>;
|
|
@@ -16401,6 +16873,7 @@ export const scheduledPickup: PropTypes.Requireable<io.flow.v0.models.ScheduledP
|
|
|
16401
16873
|
export const securityRatecardFee: PropTypes.Requireable<io.flow.v0.models.SecurityRatecardFee>;
|
|
16402
16874
|
export const securityServiceFee: PropTypes.Requireable<io.flow.v0.models.SecurityServiceFee>;
|
|
16403
16875
|
export const selectIssuerOptionActionDetails: PropTypes.Requireable<io.flow.v0.models.SelectIssuerOptionActionDetails>;
|
|
16876
|
+
export const sellablilityRegionResult: PropTypes.Requireable<io.flow.v0.models.SellablilityRegionResult>;
|
|
16404
16877
|
export const serviceReference: PropTypes.Requireable<io.flow.v0.models.ServiceReference>;
|
|
16405
16878
|
export const serviceSummary: PropTypes.Requireable<io.flow.v0.models.ServiceSummary>;
|
|
16406
16879
|
export const serviceUnknown: PropTypes.Requireable<io.flow.v0.models.ServiceUnknown>;
|