@flowio/types 11.24.73 → 11.24.75
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/dist/api-internal.d.ts +1020 -577
- package/dist/api.d.ts +898 -4915
- package/package.json +2 -2
- package/src/api-internal.ts +1255 -609
- package/src/api.ts +1058 -6207
package/dist/api-internal.d.ts
CHANGED
|
@@ -72,35 +72,13 @@ declare namespace io.flow.RESERVED_WORD_return.v0.models {
|
|
|
72
72
|
declare namespace io.flow.RESERVED_WORD_return.v0.unions {
|
|
73
73
|
type ReturnSource = io.flow.RESERVED_WORD_return.v0.models.ReturnSourceFlow | io.flow.RESERVED_WORD_return.v0.models.ReturnSourceExternalVendor;
|
|
74
74
|
}
|
|
75
|
-
declare namespace io.flow.
|
|
76
|
-
type
|
|
77
|
-
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
78
|
-
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
79
|
-
}
|
|
80
|
-
declare namespace io.flow.order.price.v0.enums {
|
|
81
|
-
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';
|
|
82
|
-
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges';
|
|
75
|
+
declare namespace io.flow.error.v0.enums {
|
|
76
|
+
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
83
77
|
}
|
|
84
|
-
declare namespace io.flow.
|
|
85
|
-
interface
|
|
86
|
-
readonly
|
|
87
|
-
readonly
|
|
88
|
-
readonly amount: number;
|
|
89
|
-
readonly label: string;
|
|
90
|
-
readonly base: io.flow.common.v0.models.Price;
|
|
91
|
-
readonly components: io.flow.order.price.v0.models.OrderPriceDetailComponent[];
|
|
92
|
-
readonly name?: string;
|
|
93
|
-
readonly rate?: number;
|
|
94
|
-
readonly accuracy?: io.flow.price.v0.enums.PriceAccuracy;
|
|
95
|
-
readonly rate_label?: string;
|
|
96
|
-
}
|
|
97
|
-
interface OrderPriceDetailComponent {
|
|
98
|
-
readonly key: io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
|
|
99
|
-
readonly currency: string;
|
|
100
|
-
readonly amount: number;
|
|
101
|
-
readonly label: string;
|
|
102
|
-
readonly base: io.flow.common.v0.models.Price;
|
|
103
|
-
readonly name?: string;
|
|
78
|
+
declare namespace io.flow.error.v0.models {
|
|
79
|
+
interface GenericError {
|
|
80
|
+
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
81
|
+
readonly messages: string[];
|
|
104
82
|
}
|
|
105
83
|
}
|
|
106
84
|
declare namespace io.flow.channel.v0.enums {
|
|
@@ -156,105 +134,6 @@ declare namespace io.flow.channel.v0.models {
|
|
|
156
134
|
readonly attributes?: Record<string, string>;
|
|
157
135
|
}
|
|
158
136
|
}
|
|
159
|
-
declare namespace io.flow.reference.v0.enums {
|
|
160
|
-
type PaymentMethodCapability = 'credit' | 'debit';
|
|
161
|
-
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
162
|
-
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
163
|
-
type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
|
|
164
|
-
}
|
|
165
|
-
declare namespace io.flow.reference.v0.models {
|
|
166
|
-
interface Carrier {
|
|
167
|
-
readonly id: string;
|
|
168
|
-
readonly name: string;
|
|
169
|
-
readonly tracking_url: string;
|
|
170
|
-
}
|
|
171
|
-
interface CarrierService {
|
|
172
|
-
readonly id: string;
|
|
173
|
-
readonly carrier: io.flow.reference.v0.models.Carrier;
|
|
174
|
-
readonly name: string;
|
|
175
|
-
}
|
|
176
|
-
interface Country {
|
|
177
|
-
readonly name: string;
|
|
178
|
-
readonly iso_3166_2: string;
|
|
179
|
-
readonly iso_3166_3: string;
|
|
180
|
-
readonly languages: string[];
|
|
181
|
-
readonly measurement_system: string;
|
|
182
|
-
readonly default_currency?: string;
|
|
183
|
-
readonly default_language?: string;
|
|
184
|
-
readonly timezones: string[];
|
|
185
|
-
readonly default_delivered_duty?: string;
|
|
186
|
-
}
|
|
187
|
-
interface Currency {
|
|
188
|
-
readonly name: string;
|
|
189
|
-
readonly iso_4217_3: string;
|
|
190
|
-
readonly number_decimals: number;
|
|
191
|
-
readonly symbols?: io.flow.reference.v0.models.CurrencySymbols;
|
|
192
|
-
readonly default_locale?: string;
|
|
193
|
-
}
|
|
194
|
-
interface CurrencySymbols {
|
|
195
|
-
readonly primary: string;
|
|
196
|
-
readonly narrow?: string;
|
|
197
|
-
}
|
|
198
|
-
interface Language {
|
|
199
|
-
readonly name: string;
|
|
200
|
-
readonly iso_639_2: string;
|
|
201
|
-
}
|
|
202
|
-
interface Locale {
|
|
203
|
-
readonly id: string;
|
|
204
|
-
readonly name: string;
|
|
205
|
-
readonly country: string;
|
|
206
|
-
readonly language: string;
|
|
207
|
-
readonly numbers: io.flow.reference.v0.models.LocaleNumbers;
|
|
208
|
-
}
|
|
209
|
-
interface LocaleNumbers {
|
|
210
|
-
readonly decimal: string;
|
|
211
|
-
readonly group: string;
|
|
212
|
-
}
|
|
213
|
-
interface LocalizedTranslation {
|
|
214
|
-
readonly locale: io.flow.reference.v0.models.Locale;
|
|
215
|
-
readonly name: string;
|
|
216
|
-
}
|
|
217
|
-
interface PaymentMethod {
|
|
218
|
-
readonly id: string;
|
|
219
|
-
readonly type: io.flow.reference.v0.enums.PaymentMethodType;
|
|
220
|
-
readonly name: string;
|
|
221
|
-
readonly images: io.flow.reference.v0.models.PaymentMethodImages;
|
|
222
|
-
readonly regions: string[];
|
|
223
|
-
readonly capabilities?: io.flow.reference.v0.enums.PaymentMethodCapability[];
|
|
224
|
-
}
|
|
225
|
-
interface PaymentMethodImage {
|
|
226
|
-
readonly url: string;
|
|
227
|
-
readonly width: number;
|
|
228
|
-
readonly height: number;
|
|
229
|
-
}
|
|
230
|
-
interface PaymentMethodImages {
|
|
231
|
-
readonly small: io.flow.reference.v0.models.PaymentMethodImage;
|
|
232
|
-
readonly medium: io.flow.reference.v0.models.PaymentMethodImage;
|
|
233
|
-
readonly large: io.flow.reference.v0.models.PaymentMethodImage;
|
|
234
|
-
}
|
|
235
|
-
interface Province {
|
|
236
|
-
readonly id: string;
|
|
237
|
-
readonly iso_3166_2: string;
|
|
238
|
-
readonly name: string;
|
|
239
|
-
readonly country: string;
|
|
240
|
-
readonly province_type: io.flow.reference.v0.enums.ProvinceType;
|
|
241
|
-
readonly translations?: io.flow.reference.v0.models.LocalizedTranslation[];
|
|
242
|
-
}
|
|
243
|
-
interface Region {
|
|
244
|
-
readonly id: string;
|
|
245
|
-
readonly name: string;
|
|
246
|
-
readonly countries: string[];
|
|
247
|
-
readonly currencies: string[];
|
|
248
|
-
readonly languages: string[];
|
|
249
|
-
readonly measurement_systems: string[];
|
|
250
|
-
readonly timezones: string[];
|
|
251
|
-
}
|
|
252
|
-
interface Timezone {
|
|
253
|
-
readonly name: string;
|
|
254
|
-
readonly description: string;
|
|
255
|
-
readonly offset: number;
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
137
|
declare namespace io.flow.invoice.v0.enums {
|
|
259
138
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
260
139
|
}
|
|
@@ -1273,6 +1152,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1273
1152
|
readonly processor: string;
|
|
1274
1153
|
readonly operation_identifier?: io.flow.payment.v0.models.PaymentProcessorIdentifier;
|
|
1275
1154
|
readonly account?: io.flow.payment.v0.models.PaymentProcessorAccount;
|
|
1155
|
+
readonly transaction_details?: io.flow.payment.v0.unions.PaymentProcessorTransactionDetails;
|
|
1276
1156
|
}
|
|
1277
1157
|
interface PaymentProcessorAccount {
|
|
1278
1158
|
readonly organization: string;
|
|
@@ -1292,6 +1172,16 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1292
1172
|
readonly discriminator: 'payment_processor_reference';
|
|
1293
1173
|
readonly processor: string;
|
|
1294
1174
|
}
|
|
1175
|
+
interface PaymentProcessorTransactionDetailsCard {
|
|
1176
|
+
readonly discriminator: 'card';
|
|
1177
|
+
readonly transaction_identifier?: string;
|
|
1178
|
+
readonly method_type?: string;
|
|
1179
|
+
readonly result_status?: string;
|
|
1180
|
+
readonly reason_code?: string;
|
|
1181
|
+
readonly avs_result_code?: string;
|
|
1182
|
+
readonly cvv_result_code?: string;
|
|
1183
|
+
readonly threeds_result_code?: string;
|
|
1184
|
+
}
|
|
1295
1185
|
interface PaymentReference {
|
|
1296
1186
|
readonly id: string;
|
|
1297
1187
|
}
|
|
@@ -1585,6 +1475,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
1585
1475
|
type Payment = io.flow.payment.v0.models.PaymentPaypal | io.flow.payment.v0.models.PaymentCryptopay;
|
|
1586
1476
|
type PaymentForm = io.flow.payment.v0.models.MerchantOfRecordPaymentForm;
|
|
1587
1477
|
type PaymentOrderReference = io.flow.payment.v0.models.AuthorizationOrderReference | io.flow.payment.v0.models.PaymentPaymentRequestReference;
|
|
1478
|
+
type PaymentProcessorTransactionDetails = io.flow.payment.v0.models.PaymentProcessorTransactionDetailsCard;
|
|
1588
1479
|
type PaymentSource = io.flow.payment.v0.models.CardPaymentSource;
|
|
1589
1480
|
type PaymentSourceForm = io.flow.payment.v0.models.CardPaymentSourceForm;
|
|
1590
1481
|
type ThreedsChallengeAction = io.flow.payment.v0.models.ThreedsTwoChallengeRequest;
|
|
@@ -1998,9 +1889,8 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
1998
1889
|
readonly id: string;
|
|
1999
1890
|
readonly type: io.flow.billing.internal.v0.enums.BillingTransactionType;
|
|
2000
1891
|
readonly account: io.flow.billing.csv.v0.models.BillingCsvTransactionAccount;
|
|
2001
|
-
readonly metadata?: io.flow.billing.v0.
|
|
2002
|
-
readonly order?: io.flow.billing.v0.models.
|
|
2003
|
-
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
1892
|
+
readonly metadata?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadata;
|
|
1893
|
+
readonly order?: io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummary;
|
|
2004
1894
|
readonly currency: string;
|
|
2005
1895
|
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
2006
1896
|
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
@@ -2009,7 +1899,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2009
1899
|
readonly withholdings: io.flow.billing.csv.v0.models.BillingCsvTransactionWithholdings;
|
|
2010
1900
|
readonly discount: io.flow.billing.csv.v0.models.BillingCsvTransactionDiscount;
|
|
2011
1901
|
readonly net: number;
|
|
2012
|
-
readonly identifiers:
|
|
1902
|
+
readonly identifiers: io.flow.billing.csv.v0.models.BillingCsvTransactionIdentifiers;
|
|
2013
1903
|
readonly created_at: string;
|
|
2014
1904
|
readonly updated_at: string;
|
|
2015
1905
|
}
|
|
@@ -2035,6 +1925,37 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2035
1925
|
readonly rate_lock: number;
|
|
2036
1926
|
readonly transfer: number;
|
|
2037
1927
|
}
|
|
1928
|
+
interface BillingCsvTransactionIdentifiers {
|
|
1929
|
+
readonly reference_id?: string;
|
|
1930
|
+
}
|
|
1931
|
+
interface BillingCsvTransactionMetadata {
|
|
1932
|
+
readonly channel?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataChannel;
|
|
1933
|
+
readonly shipping_label?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabel;
|
|
1934
|
+
readonly trueup?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataTrueup;
|
|
1935
|
+
readonly manual?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataManual;
|
|
1936
|
+
}
|
|
1937
|
+
interface BillingCsvTransactionMetadataChannel {
|
|
1938
|
+
readonly method: string;
|
|
1939
|
+
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
1940
|
+
}
|
|
1941
|
+
interface BillingCsvTransactionMetadataManual {
|
|
1942
|
+
readonly original?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
1943
|
+
readonly url?: string;
|
|
1944
|
+
}
|
|
1945
|
+
interface BillingCsvTransactionMetadataShippingLabel {
|
|
1946
|
+
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
1947
|
+
}
|
|
1948
|
+
interface BillingCsvTransactionMetadataTrueup {
|
|
1949
|
+
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
1950
|
+
}
|
|
1951
|
+
interface BillingCsvTransactionOrderSummary {
|
|
1952
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
1953
|
+
readonly number: string;
|
|
1954
|
+
readonly identifiers: io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummaryIdentifiers;
|
|
1955
|
+
}
|
|
1956
|
+
interface BillingCsvTransactionOrderSummaryIdentifiers {
|
|
1957
|
+
readonly shopify_order_id?: string;
|
|
1958
|
+
}
|
|
2038
1959
|
interface BillingCsvTransactionWithholdings {
|
|
2039
1960
|
readonly tax: number;
|
|
2040
1961
|
readonly duty: number;
|
|
@@ -2456,6 +2377,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2456
2377
|
readonly status: io.flow.stripe.v0.enums.PaymentIntentStatus;
|
|
2457
2378
|
readonly transfer_data?: io.flow.stripe.v0.models.TransferData;
|
|
2458
2379
|
readonly transfer_group?: string;
|
|
2380
|
+
readonly shipping?: io.flow.stripe.v0.models.PaymentIntentShipping;
|
|
2459
2381
|
}
|
|
2460
2382
|
interface PaymentIntentCancellationForm {
|
|
2461
2383
|
readonly cancellation_reason?: io.flow.stripe.v0.enums.CancellationReason;
|
|
@@ -2507,6 +2429,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2507
2429
|
readonly statement_descriptor_suffix?: string;
|
|
2508
2430
|
readonly transfer_data?: io.flow.stripe.v0.models.TransferData;
|
|
2509
2431
|
readonly transfer_group?: string;
|
|
2432
|
+
readonly shipping?: io.flow.stripe.v0.models.PaymentIntentShipping;
|
|
2433
|
+
}
|
|
2434
|
+
interface PaymentIntentShipping {
|
|
2435
|
+
readonly address: io.flow.stripe.v0.models.Address;
|
|
2436
|
+
readonly name: string;
|
|
2437
|
+
readonly phone?: string;
|
|
2510
2438
|
}
|
|
2511
2439
|
interface PaymentIntentUpdateForm {
|
|
2512
2440
|
readonly amount: number;
|
|
@@ -2610,6 +2538,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2610
2538
|
readonly network?: string;
|
|
2611
2539
|
readonly request_three_d_secure?: io.flow.stripe.v0.enums.RequestThreeDSecureType;
|
|
2612
2540
|
readonly stored_credential_transaction_type?: io.flow.stripe.v0.enums.StoredCredentialTransactionType;
|
|
2541
|
+
readonly mcc?: string;
|
|
2613
2542
|
}
|
|
2614
2543
|
interface PaymentOutcome {
|
|
2615
2544
|
readonly network_status: io.flow.stripe.v0.enums.NetworkStatus;
|
|
@@ -3070,9 +2999,9 @@ declare namespace io.flow.label.v0.models {
|
|
|
3070
2999
|
readonly required: boolean;
|
|
3071
3000
|
}
|
|
3072
3001
|
interface ShippingLabelHopCostItemizedEstimate {
|
|
3073
|
-
readonly units: io.flow.
|
|
3074
|
-
readonly base: io.flow.
|
|
3075
|
-
readonly surcharges: io.flow.
|
|
3002
|
+
readonly units: io.flow.trueup.v0.models.LabelUnits;
|
|
3003
|
+
readonly base: io.flow.trueup.v0.models.LabelBase;
|
|
3004
|
+
readonly surcharges: io.flow.trueup.v0.models.LabelSurcharge[];
|
|
3076
3005
|
}
|
|
3077
3006
|
interface ShippingLabelHopSummary {
|
|
3078
3007
|
readonly lane: io.flow.label.v0.models.ShippingLabelLaneSummary;
|
|
@@ -3082,6 +3011,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3082
3011
|
interface ShippingLabelLaneSummary {
|
|
3083
3012
|
readonly id?: string;
|
|
3084
3013
|
readonly ratecard: io.flow.label.v0.models.ShippingLabelRatecardSummary;
|
|
3014
|
+
readonly weight_break?: number;
|
|
3085
3015
|
}
|
|
3086
3016
|
interface ShippingLabelPackage {
|
|
3087
3017
|
readonly dimensions: io.flow.common.v0.models.Dimension;
|
|
@@ -3174,6 +3104,7 @@ declare namespace io.flow.external.paypal.v1.enums {
|
|
|
3174
3104
|
type DisputeOutcomeCode = 'RESOLVED_BUYER_FAVOUR' | 'RESOLVED_SELLER_FAVOUR' | 'RESOLVED_WITH_PAYOUT' | 'CANCELED_BY_BUYER' | 'ACCEPTED' | 'DENIED' | 'NONE';
|
|
3175
3105
|
type DisputeReason = 'MERCHANDISE_OR_SERVICE_NOT_RECEIVED' | 'MERCHANDISE_OR_SERVICE_NOT_AS_DESCRIBED' | 'UNAUTHORISED' | 'CREDIT_NOT_PROCESSED' | 'DUPLICATE_TRANSACTION' | 'INCORRECT_AMOUNT' | 'PAYMENT_BY_OTHER_MEANS' | 'CANCELED_RECURRING_BILLING' | 'PROBLEM_WITH_REMITTANCE' | 'OTHER';
|
|
3176
3106
|
type DisputeStatus = 'OPEN' | 'WAITING_FOR_BUYER_RESPONSE' | 'WAITING_FOR_SELLER_RESPONSE' | 'UNDER_REVIEW' | 'RESOLVED' | 'OTHER';
|
|
3107
|
+
type EventType = 'PAYMENT.AUTHORIZATION.CREATED' | 'PAYMENT.AUTHORIZATION.VOIDED' | 'PAYMENT.CAPTURE.DECLINED' | 'PAYMENT.CAPTURE.COMPLETED' | 'PAYMENT.CAPTURE.PENDING' | 'PAYMENT.CAPTURE.REVERSED' | 'PAYMENT.CAPTURE.DENIED' | 'PAYMENT.ORDER.CANCELLED' | 'PAYMENT.ORDER.CREATED' | 'PAYMENT.SALE.COMPLETED' | 'PAYMENT.SALE.DENIED' | 'PAYMENT.SALE.PENDING' | 'PAYMENT.SALE.REFUNDED' | 'PAYMENT.SALE.REVERSED' | 'PAYMENTS.PAYMENT.CREATED' | 'CHECKOUT.ORDER.APPROVED' | 'CHECKOUT.CHECKOUT.BUYER-APPROVED' | 'CHECKOUT.ORDER.COMPLETED' | 'CUSTOMER.DISPUTE.CREATED' | 'CUSTOMER.DISPUTE.RESOLVED' | 'CUSTOMER.DISPUTE.UPDATED' | 'CHECKOUT.PAYMENT-APPROVAL.REVERSED';
|
|
3177
3108
|
type EvidenceType = 'PROOF_OF_FULFILLMENT' | 'PROOF_OF_REFUND' | 'PROOF_OF_DELIVERY_SIGNATURE' | 'PROOF_OF_RECEIPT_COPY' | 'RETURN_POLICY' | 'BILLING_AGREEMENT' | 'PROOF_OF_RESHIPMENT' | 'ITEM_DESCRIPTION' | 'POLICE_REPORT' | 'AFFIDAVIT' | 'PAID_WITH_OTHER_METHOD' | 'COPY_OF_CONTRACT' | 'TERMINAL_ATM_RECEIPT' | 'PRICE_DIFFERENCE_REASON' | 'SOURCE_CONVERSION_RATE' | 'BANK_STATEMENT' | 'CREDIT_DUE_REASON' | 'REQUEST_CREDIT_RECEIPT' | 'PROOF_OF_RETURN' | 'CREATE' | 'CHANGE_REASON' | 'PROOF_OF_REFUND_OUTSIDE_PAYPAL' | 'RECEIPT_OF_MERCHANDISE' | 'CUSTOMS_DOCUMENT' | 'CUSTOMS_FEE_RECEIPT' | 'INFORMATION_ON_RESOLUTION' | 'ADDITIONAL_INFORMATION_OF_ITEM' | 'DETAILS_OF_PURCHASE' | 'PROOF_OF_SIGNIFICANT_DIFFERENCE' | 'PROOF_OF_SOFTWARE_OR_SERVICE_NOT_AS_DESCRIBED' | 'PROOF_OF_CONFISCATION' | 'PROOF_OF_DAMAGE' | 'COPY_OF_LAW_ENFORCEMENT_AGENCY_REPORT' | 'ADDITIONAL_PROOF_OF_SHIPMENT' | 'PROOF_OF_DENIAL_BY_CARRIER' | 'THIRDPARTY_PROOF_FOR_DAMAGE_OR_SIGNIFICANT_DIFFERENCE' | 'VALID_SUPPORTING_DOCUMENT' | 'LEGIBLE_SUPPORTING_DOCUMENT' | 'RETURN_TRACKING_INFORMATION' | 'DELIVERY_RECEIPT' | 'PROOF_OF_INSTORE_RECEIPT' | 'ADDITIONAL_TRACKING_INFORMATION' | 'PROOF_OF_SHIPMENT_POSTAGE' | 'ONLINE_TRACKING_INFORMATION' | 'PROOF_OF_INSTORE_REFUND' | 'PROOF_FOR_SOFTWARE_OR_SERVICE_DELIVERED' | 'RETURN_ADDRESS_FOR_SHIPPING' | 'COPY_OF_THE_EPARCEL_MANIFEST' | 'COPY_OF_SHIPPING_MANIFEST' | 'APPEAL_AFFIDAVIT' | 'RECEIPT_OF_REPLACEMENT' | 'COPY_OF_DRIVERS_LICENSE' | 'ACCOUNT_CHANGE_INFORMATION' | 'DELIVERY_ADDRESS' | 'CONFIRMATION_OF_RESOLUTION' | 'MERCHANT_RESPONSE' | 'PERMISSION_DESCRIPTION' | 'STATUS_OF_MERCHANDISE' | 'LOST_CARD_DETAILS' | 'LAST_VALID_TRANSACTION_DETAILS' | 'ADDITIONAL_PROOF_OF_RETURN' | 'OTHER';
|
|
3178
3109
|
type FailureReason = 'UNABLE_TO_COMPLETE_TRANSACTION' | 'INVALID_PAYMENT_METHOD' | 'PAYER_CANNOT_PAY' | 'CANNOT_PAY_THIS_PAYEE' | 'REDIRECT_REQUIRED' | 'PAYEE_FILTER_RESTRICTIONS';
|
|
3179
3110
|
type GrantType = 'client_credentials';
|
|
@@ -3192,6 +3123,7 @@ declare namespace io.flow.external.paypal.v1.enums {
|
|
|
3192
3123
|
type RefundState = 'pending' | 'completed' | 'cancelled' | 'failed';
|
|
3193
3124
|
type ReturnAcknowledgementType = 'ITEM_RECEIVED' | 'ITEM_NOT_RECEIVED' | 'DAMAGED' | 'EMPTY_PACKAGE_OR_DIFFERENT' | 'MISSING_ITEMS';
|
|
3194
3125
|
type ReturnMode = 'SHIPPED' | 'IN_PERSON';
|
|
3126
|
+
type SaleState = 'pending' | 'completed' | 'denied' | 'partially_refunded' | 'refunded';
|
|
3195
3127
|
type ServiceStarted = 'YES' | 'NO' | 'RETURNED';
|
|
3196
3128
|
type ShippingDisplayPreference = 'NO_SHIPPING' | 'GET_FROM_FILE' | 'SET_PROVIDED_ADDRESS';
|
|
3197
3129
|
type State = 'created' | 'approved' | 'failed';
|
|
@@ -3491,22 +3423,23 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
3491
3423
|
}
|
|
3492
3424
|
interface Refund {
|
|
3493
3425
|
readonly id: string;
|
|
3494
|
-
readonly amount
|
|
3426
|
+
readonly amount?: io.flow.external.paypal.v1.models.SimpleAmount;
|
|
3495
3427
|
readonly state: io.flow.external.paypal.v1.enums.RefundState;
|
|
3496
3428
|
readonly sale_id: string;
|
|
3497
|
-
readonly invoice_number
|
|
3429
|
+
readonly invoice_number?: string;
|
|
3498
3430
|
readonly capture_id?: string;
|
|
3499
3431
|
readonly parent_payment?: string;
|
|
3500
3432
|
readonly reason_code?: string;
|
|
3501
3433
|
readonly refund_reason_code?: string;
|
|
3502
3434
|
readonly refund_funding_type?: string;
|
|
3503
|
-
readonly
|
|
3435
|
+
readonly refund_from_received_amount?: io.flow.external.paypal.v1.models.Money;
|
|
3436
|
+
readonly refund_from_transaction_fee?: io.flow.external.paypal.v1.models.Money;
|
|
3437
|
+
readonly total_refunded_amount?: io.flow.external.paypal.v1.models.Money;
|
|
3438
|
+
readonly refund_to_payer?: io.flow.external.paypal.v1.models.Money;
|
|
3439
|
+
readonly custom?: string;
|
|
3440
|
+
readonly create_time?: string;
|
|
3504
3441
|
readonly update_time?: string;
|
|
3505
3442
|
}
|
|
3506
|
-
interface RefundAmount {
|
|
3507
|
-
readonly total: string;
|
|
3508
|
-
readonly currency: string;
|
|
3509
|
-
}
|
|
3510
3443
|
interface RefundDetails {
|
|
3511
3444
|
readonly allowed_refund_amount?: io.flow.external.paypal.v1.models.Money;
|
|
3512
3445
|
}
|
|
@@ -3514,7 +3447,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
3514
3447
|
readonly refund_id?: string;
|
|
3515
3448
|
}
|
|
3516
3449
|
interface RefundRequest {
|
|
3517
|
-
readonly amount: io.flow.external.paypal.v1.models.
|
|
3450
|
+
readonly amount: io.flow.external.paypal.v1.models.SimpleAmount;
|
|
3518
3451
|
readonly invoice_number: string;
|
|
3519
3452
|
}
|
|
3520
3453
|
interface ReturnDetails {
|
|
@@ -3524,6 +3457,27 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
3524
3457
|
readonly return_confirmation_number?: string;
|
|
3525
3458
|
readonly returned?: boolean;
|
|
3526
3459
|
}
|
|
3460
|
+
interface Sale {
|
|
3461
|
+
readonly id: string;
|
|
3462
|
+
readonly state: io.flow.external.paypal.v1.enums.SaleState;
|
|
3463
|
+
readonly parent_payment: string;
|
|
3464
|
+
readonly invoice_number?: string;
|
|
3465
|
+
readonly amount?: io.flow.external.paypal.v1.models.SimpleAmount;
|
|
3466
|
+
readonly payment_mode?: string;
|
|
3467
|
+
readonly reason_code?: string;
|
|
3468
|
+
readonly protection_eligibility?: string;
|
|
3469
|
+
readonly protection_eligibility_type?: string;
|
|
3470
|
+
readonly receipt_id?: string;
|
|
3471
|
+
readonly soft_descriptor?: string;
|
|
3472
|
+
readonly exchange_rate?: string;
|
|
3473
|
+
readonly payment_hold_status?: string;
|
|
3474
|
+
readonly payment_hold_reasons?: string[];
|
|
3475
|
+
readonly transaction_fee?: io.flow.external.paypal.v1.models.Money;
|
|
3476
|
+
readonly receivable_amount?: io.flow.external.paypal.v1.models.Money;
|
|
3477
|
+
readonly custom?: string;
|
|
3478
|
+
readonly create_time?: string;
|
|
3479
|
+
readonly update_time?: string;
|
|
3480
|
+
}
|
|
3527
3481
|
interface Seller {
|
|
3528
3482
|
readonly email?: string;
|
|
3529
3483
|
readonly merchant_id?: string;
|
|
@@ -3546,6 +3500,10 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
3546
3500
|
readonly phone?: string;
|
|
3547
3501
|
readonly state?: string;
|
|
3548
3502
|
}
|
|
3503
|
+
interface SimpleAmount {
|
|
3504
|
+
readonly total: string;
|
|
3505
|
+
readonly currency: string;
|
|
3506
|
+
}
|
|
3549
3507
|
interface SupportingInfo {
|
|
3550
3508
|
readonly notes?: string;
|
|
3551
3509
|
readonly source?: io.flow.external.paypal.v1.enums.SupportingInfoSource;
|
|
@@ -3871,68 +3829,233 @@ declare namespace io.flow.brickftp.v0.unions {
|
|
|
3871
3829
|
type FileForm = io.flow.brickftp.v0.models.FileUploadStartForm | io.flow.brickftp.v0.models.FileUploadEndForm | io.flow.brickftp.v0.models.FileCopyForm | io.flow.brickftp.v0.models.FileMoveForm;
|
|
3872
3830
|
type Node = io.flow.brickftp.v0.models.Directory | io.flow.brickftp.v0.models.FileSummary;
|
|
3873
3831
|
}
|
|
3874
|
-
declare namespace io.flow.
|
|
3875
|
-
type
|
|
3876
|
-
type
|
|
3877
|
-
type
|
|
3878
|
-
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
3832
|
+
declare namespace io.flow.units.v0.enums {
|
|
3833
|
+
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
3834
|
+
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
3835
|
+
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
3879
3836
|
}
|
|
3880
|
-
declare namespace io.flow.
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
readonly
|
|
3892
|
-
readonly
|
|
3893
|
-
readonly
|
|
3837
|
+
declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
3838
|
+
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
3839
|
+
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
3840
|
+
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
3841
|
+
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
3842
|
+
type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
|
|
3843
|
+
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
3844
|
+
type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
|
|
3845
|
+
}
|
|
3846
|
+
declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
3847
|
+
interface CatalogPublicationSyncValidationError {
|
|
3848
|
+
readonly message: string;
|
|
3849
|
+
readonly reason: string;
|
|
3850
|
+
readonly next_action_from: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
3894
3851
|
}
|
|
3895
|
-
interface
|
|
3852
|
+
interface ChannelOrderSummary {
|
|
3896
3853
|
readonly id: string;
|
|
3897
|
-
readonly
|
|
3898
|
-
readonly
|
|
3899
|
-
readonly
|
|
3900
|
-
readonly
|
|
3901
|
-
readonly date: string;
|
|
3902
|
-
readonly key: string;
|
|
3903
|
-
readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
3904
|
-
readonly economic_title_location: io.flow.merchant.of.record.v0.enums.EconomicTitleLocation;
|
|
3905
|
-
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
3906
|
-
readonly destination?: io.flow.experience.v0.models.OrderAddress;
|
|
3907
|
-
readonly tax: io.flow.common.v0.models.Money;
|
|
3908
|
-
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
3909
|
-
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
3910
|
-
readonly attributes: Record<string, string>;
|
|
3911
|
-
readonly estimated_delivery_date?: string;
|
|
3912
|
-
readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
3854
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
3855
|
+
readonly external_order_reference: string;
|
|
3856
|
+
readonly order_number: string;
|
|
3857
|
+
readonly fulfullment_details: io.flow.shopify.markets.internal.v0.models.ChannelOrderSummaryFulfillmentDetails;
|
|
3913
3858
|
}
|
|
3914
|
-
interface
|
|
3915
|
-
readonly
|
|
3916
|
-
readonly
|
|
3917
|
-
readonly number: string;
|
|
3859
|
+
interface ChannelOrderSummaryFulfillmentDetails {
|
|
3860
|
+
readonly fulfillment_status: io.flow.shopify.markets.internal.v0.enums.ChannelOrderFulfillmentStatusCode;
|
|
3861
|
+
readonly timestamp: string;
|
|
3918
3862
|
}
|
|
3919
|
-
interface
|
|
3920
|
-
readonly
|
|
3921
|
-
readonly
|
|
3922
|
-
readonly
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
readonly
|
|
3926
|
-
readonly
|
|
3927
|
-
readonly
|
|
3928
|
-
|
|
3929
|
-
|
|
3930
|
-
readonly
|
|
3931
|
-
readonly
|
|
3932
|
-
|
|
3933
|
-
|
|
3934
|
-
readonly
|
|
3935
|
-
readonly
|
|
3863
|
+
interface FlowShopValidationError {
|
|
3864
|
+
readonly message: string;
|
|
3865
|
+
readonly reason: string;
|
|
3866
|
+
readonly next_action_from: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
3867
|
+
}
|
|
3868
|
+
interface GenericValidationError {
|
|
3869
|
+
readonly message: string;
|
|
3870
|
+
readonly reason: string;
|
|
3871
|
+
readonly next_action_from: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
3872
|
+
}
|
|
3873
|
+
interface MarketsOrder {
|
|
3874
|
+
readonly shopify_order: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
3875
|
+
readonly flow_authorization?: io.flow.payment.v0.unions.Authorization;
|
|
3876
|
+
}
|
|
3877
|
+
interface OrderValidationError {
|
|
3878
|
+
readonly message: string;
|
|
3879
|
+
readonly reason: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
3880
|
+
readonly action?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
|
|
3881
|
+
readonly next_action_from: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
3882
|
+
}
|
|
3883
|
+
interface ProductRestrictionResultValidationError {
|
|
3884
|
+
readonly message: string;
|
|
3885
|
+
readonly reason: string;
|
|
3886
|
+
readonly next_action_from: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
3887
|
+
}
|
|
3888
|
+
interface ShippingLane {
|
|
3889
|
+
readonly origin: string;
|
|
3890
|
+
readonly destination: string;
|
|
3891
|
+
}
|
|
3892
|
+
interface ShopifyMarketsDiscrepancy {
|
|
3893
|
+
readonly organization_id: string;
|
|
3894
|
+
readonly count: number;
|
|
3895
|
+
}
|
|
3896
|
+
interface ShopifyMarketsDiscrepancyData {
|
|
3897
|
+
readonly total_count: number;
|
|
3898
|
+
readonly discrepancies: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsDiscrepancy[];
|
|
3899
|
+
}
|
|
3900
|
+
interface ShopifyMarketsIncorporationCountry {
|
|
3901
|
+
readonly country: string;
|
|
3902
|
+
readonly state?: string;
|
|
3903
|
+
readonly province?: string;
|
|
3904
|
+
readonly jurisdiction?: string;
|
|
3905
|
+
}
|
|
3906
|
+
interface ShopifyMarketsInternalOrderMetrics {
|
|
3907
|
+
readonly total_order_count: number;
|
|
3908
|
+
}
|
|
3909
|
+
interface ShopifyMarketsOrdersMetrics {
|
|
3910
|
+
readonly id: string;
|
|
3911
|
+
readonly range: io.flow.common.v0.models.DatetimeRange;
|
|
3912
|
+
readonly shopify: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
|
|
3913
|
+
readonly internal: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
3914
|
+
readonly discrepancy_data: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
3915
|
+
}
|
|
3916
|
+
interface ShopifyMarketsQueuedRecord {
|
|
3917
|
+
readonly id: string;
|
|
3918
|
+
readonly type: string;
|
|
3919
|
+
readonly type_id: string;
|
|
3920
|
+
readonly organization_id: string;
|
|
3921
|
+
readonly environment?: string;
|
|
3922
|
+
readonly num_attempts: number;
|
|
3923
|
+
readonly next_attempt_at: string;
|
|
3924
|
+
readonly errors?: string[];
|
|
3925
|
+
readonly stacktrace?: string;
|
|
3926
|
+
}
|
|
3927
|
+
interface ShopifyMarketsShop {
|
|
3928
|
+
readonly id: string;
|
|
3929
|
+
readonly shopify_shop_id?: string;
|
|
3930
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
3931
|
+
readonly domain: string;
|
|
3932
|
+
readonly myshopify_domain: string;
|
|
3933
|
+
readonly organization_id: string;
|
|
3934
|
+
readonly shop: string;
|
|
3935
|
+
readonly created_at: string;
|
|
3936
|
+
readonly shared_secret_masked: string;
|
|
3937
|
+
readonly api_key_masked?: string;
|
|
3938
|
+
readonly api_password_masked?: string;
|
|
3939
|
+
readonly access_token_masked?: string;
|
|
3940
|
+
}
|
|
3941
|
+
interface ShopifyMarketsShopForm {
|
|
3942
|
+
readonly shop: string;
|
|
3943
|
+
readonly domain: string;
|
|
3944
|
+
readonly myshopify_domain: string;
|
|
3945
|
+
readonly shared_secret: string;
|
|
3946
|
+
readonly api_key?: string;
|
|
3947
|
+
readonly api_password?: string;
|
|
3948
|
+
readonly access_token?: string;
|
|
3949
|
+
}
|
|
3950
|
+
interface ShopifyMarketsShopSummary {
|
|
3951
|
+
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
3952
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
3953
|
+
}
|
|
3954
|
+
interface ShopifyMarketsShopifyOrderMetrics {
|
|
3955
|
+
readonly total_order_count: number;
|
|
3956
|
+
}
|
|
3957
|
+
interface ShopifyMarketsSubsidiaryCompany {
|
|
3958
|
+
readonly legal_name?: string;
|
|
3959
|
+
readonly incorporation_country?: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsIncorporationCountry;
|
|
3960
|
+
}
|
|
3961
|
+
interface ShopifyMarketsSync {
|
|
3962
|
+
readonly force_resync?: boolean;
|
|
3963
|
+
}
|
|
3964
|
+
interface ShopifyMarketsWebhookRegistration {
|
|
3965
|
+
readonly id: string;
|
|
3966
|
+
readonly response: io.flow.shopify.markets.v0.models.ShopifyWebhookResponse;
|
|
3967
|
+
}
|
|
3968
|
+
interface ShopifyOrderCancelForm {
|
|
3969
|
+
readonly note?: string;
|
|
3970
|
+
}
|
|
3971
|
+
interface ShopifyOrderCancelResponse {
|
|
3972
|
+
readonly shopify_order_cancellation_id: string;
|
|
3973
|
+
readonly shopify_order_id: number;
|
|
3974
|
+
readonly message: string;
|
|
3975
|
+
}
|
|
3976
|
+
interface ShopifyOrderDestinationForm {
|
|
3977
|
+
readonly destination: io.flow.common.v0.models.Address;
|
|
3978
|
+
}
|
|
3979
|
+
interface ShopifyShopStatistics {
|
|
3980
|
+
readonly id: string;
|
|
3981
|
+
readonly initial_catalog_synced_at?: string;
|
|
3982
|
+
readonly catalog_sync_duration?: number;
|
|
3983
|
+
readonly catalog_products_count?: number;
|
|
3984
|
+
}
|
|
3985
|
+
interface ThirdPartyLogisticsPartner {
|
|
3986
|
+
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
3987
|
+
readonly warehouse_url?: string;
|
|
3988
|
+
}
|
|
3989
|
+
interface ThirdPartyLogisticsPickUpTimeWindow {
|
|
3990
|
+
readonly from: string;
|
|
3991
|
+
readonly to: string;
|
|
3992
|
+
}
|
|
3993
|
+
interface Webhook {
|
|
3994
|
+
readonly placeholder?: any;
|
|
3995
|
+
}
|
|
3996
|
+
}
|
|
3997
|
+
declare namespace io.flow.consumer.invoice.v0.enums {
|
|
3998
|
+
type B2BInvoiceType = 'self_bill_invoice' | 'invoice';
|
|
3999
|
+
type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
|
|
4000
|
+
type ConsumerInvoiceDocumentType = 'pdf';
|
|
4001
|
+
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
4002
|
+
}
|
|
4003
|
+
declare namespace io.flow.consumer.invoice.v0.models {
|
|
4004
|
+
interface B2BCreditMemo {
|
|
4005
|
+
readonly id: string;
|
|
4006
|
+
readonly number: string;
|
|
4007
|
+
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
4008
|
+
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
4009
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
4010
|
+
readonly date: string;
|
|
4011
|
+
readonly key: string;
|
|
4012
|
+
readonly invoice: io.flow.consumer.invoice.v0.models.B2BInvoiceReference;
|
|
4013
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
4014
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
4015
|
+
readonly attributes: Record<string, string>;
|
|
4016
|
+
readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
4017
|
+
}
|
|
4018
|
+
interface B2BInvoice {
|
|
4019
|
+
readonly id: string;
|
|
4020
|
+
readonly number: string;
|
|
4021
|
+
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
4022
|
+
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
4023
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
4024
|
+
readonly date: string;
|
|
4025
|
+
readonly key: string;
|
|
4026
|
+
readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
4027
|
+
readonly economic_title_location: io.flow.merchant.of.record.v0.enums.EconomicTitleLocation;
|
|
4028
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
4029
|
+
readonly destination?: io.flow.experience.v0.models.OrderAddress;
|
|
4030
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
4031
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
4032
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
4033
|
+
readonly attributes: Record<string, string>;
|
|
4034
|
+
readonly estimated_delivery_date?: string;
|
|
4035
|
+
readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
4036
|
+
}
|
|
4037
|
+
interface B2BInvoiceReference {
|
|
4038
|
+
readonly id: string;
|
|
4039
|
+
readonly key: string;
|
|
4040
|
+
readonly number: string;
|
|
4041
|
+
}
|
|
4042
|
+
interface ConsumerInvoice {
|
|
4043
|
+
readonly id: string;
|
|
4044
|
+
readonly number: string;
|
|
4045
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
4046
|
+
readonly date: string;
|
|
4047
|
+
readonly key: string;
|
|
4048
|
+
readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
4049
|
+
readonly entity: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
4050
|
+
readonly payments: io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
|
|
4051
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
4052
|
+
readonly destination: io.flow.experience.v0.models.OrderAddress;
|
|
4053
|
+
readonly billing_address?: io.flow.common.v0.models.BillingAddress;
|
|
4054
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
4055
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
4056
|
+
readonly attributes: Record<string, string>;
|
|
4057
|
+
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
4058
|
+
readonly customer_type?: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceCustomerType;
|
|
3936
4059
|
readonly estimated_delivery_date?: string;
|
|
3937
4060
|
}
|
|
3938
4061
|
interface ConsumerInvoiceCenterReference {
|
|
@@ -5275,7 +5398,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
5275
5398
|
type ShopifyOrderInventoryBehaviour = 'bypass' | 'decrement_ignoring_policy' | 'decrement_obeying_policy';
|
|
5276
5399
|
type ShopifyOrderKindType = 'authorization' | 'capture' | 'sale' | 'void' | 'refund';
|
|
5277
5400
|
type ShopifyOrderPaymentGatewayNames = 'flow_commerce' | 'gift_card' | 'manual' | 'shopify_payments';
|
|
5278
|
-
type ShopifyOrderProcessingMethodType = 'checkout' | 'direct' | 'manual' | 'offsite' | 'express';
|
|
5401
|
+
type ShopifyOrderProcessingMethodType = 'checkout' | 'direct' | 'manual' | 'offsite' | 'express' | 'deferred_payment';
|
|
5279
5402
|
type ShopifyOrderRestockType = 'no_restock' | 'cancel' | 'return';
|
|
5280
5403
|
type ShopifyOrderStatusType = 'open' | 'closed' | 'cancelled' | 'any';
|
|
5281
5404
|
type ShopifyOrderTransactionErrorCode = 'incorrect_number' | 'invalid_number' | 'invalid_expiry_date' | 'invalid_cvc' | 'expired_card' | 'incorrect_cvc' | 'incorrect_zip' | 'incorrect_address' | 'card_declined' | 'processing_error' | 'call_issuer' | 'pick_up_card';
|
|
@@ -6598,48 +6721,129 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
6598
6721
|
type PaymentMethodSummary = io.flow.payment.gateway.v0.models.PaymentMethodSummaryCard | io.flow.payment.gateway.v0.models.PaymentMethodSummaryKlarna | io.flow.payment.gateway.v0.models.PaymentMethodSummaryAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryApplepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPaypal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal | io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort | io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact;
|
|
6599
6722
|
type SdkAdyenV3AuthenticationToken = io.flow.payment.gateway.v0.models.AdyenV3FingerprintToken | io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken;
|
|
6600
6723
|
}
|
|
6601
|
-
declare namespace io.flow.
|
|
6602
|
-
type
|
|
6603
|
-
type
|
|
6604
|
-
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
6605
|
-
type HttpMethod = 'get' | 'post';
|
|
6606
|
-
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
6607
|
-
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
6608
|
-
type Owner = 'flow' | 'organization';
|
|
6609
|
-
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
6610
|
-
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
6611
|
-
type RedirectReason = 'three_d_secure';
|
|
6612
|
-
type RiskCheck = 'three_d_secure';
|
|
6724
|
+
declare namespace io.flow.order.price.v0.enums {
|
|
6725
|
+
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';
|
|
6726
|
+
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges';
|
|
6613
6727
|
}
|
|
6614
|
-
declare namespace io.flow.
|
|
6615
|
-
interface
|
|
6616
|
-
readonly
|
|
6617
|
-
readonly
|
|
6618
|
-
readonly
|
|
6619
|
-
readonly
|
|
6620
|
-
readonly
|
|
6621
|
-
readonly
|
|
6622
|
-
readonly
|
|
6623
|
-
readonly
|
|
6624
|
-
readonly
|
|
6625
|
-
readonly
|
|
6626
|
-
readonly organization_capability: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
6627
|
-
readonly created_at: string;
|
|
6628
|
-
readonly updated_at: string;
|
|
6728
|
+
declare namespace io.flow.order.price.v0.models {
|
|
6729
|
+
interface OrderPriceDetail {
|
|
6730
|
+
readonly key: io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
6731
|
+
readonly currency: string;
|
|
6732
|
+
readonly amount: number;
|
|
6733
|
+
readonly label: string;
|
|
6734
|
+
readonly base: io.flow.common.v0.models.Price;
|
|
6735
|
+
readonly components: io.flow.order.price.v0.models.OrderPriceDetailComponent[];
|
|
6736
|
+
readonly name?: string;
|
|
6737
|
+
readonly rate?: number;
|
|
6738
|
+
readonly accuracy?: io.flow.price.v0.enums.PriceAccuracy;
|
|
6739
|
+
readonly rate_label?: string;
|
|
6629
6740
|
}
|
|
6630
|
-
interface
|
|
6631
|
-
readonly
|
|
6632
|
-
readonly
|
|
6633
|
-
readonly
|
|
6634
|
-
readonly
|
|
6635
|
-
readonly
|
|
6636
|
-
readonly
|
|
6741
|
+
interface OrderPriceDetailComponent {
|
|
6742
|
+
readonly key: io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
|
|
6743
|
+
readonly currency: string;
|
|
6744
|
+
readonly amount: number;
|
|
6745
|
+
readonly label: string;
|
|
6746
|
+
readonly base: io.flow.common.v0.models.Price;
|
|
6747
|
+
readonly name?: string;
|
|
6637
6748
|
}
|
|
6638
|
-
|
|
6639
|
-
|
|
6640
|
-
|
|
6749
|
+
}
|
|
6750
|
+
declare namespace io.flow.channel.internal.v0.enums {
|
|
6751
|
+
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
6752
|
+
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
6753
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_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';
|
|
6754
|
+
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
6755
|
+
}
|
|
6756
|
+
declare namespace io.flow.channel.internal.v0.models {
|
|
6757
|
+
interface ChannelCurrencyForm {
|
|
6758
|
+
readonly currency: string;
|
|
6759
|
+
readonly channel_id: string;
|
|
6760
|
+
readonly capabilities: io.flow.channel.v0.enums.ChannelCurrencyCapability[];
|
|
6761
|
+
}
|
|
6762
|
+
interface ChannelForm {
|
|
6641
6763
|
readonly name: string;
|
|
6642
|
-
readonly
|
|
6764
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
6765
|
+
readonly organization_id_prefix?: string;
|
|
6766
|
+
}
|
|
6767
|
+
interface ChannelMembership {
|
|
6768
|
+
readonly id: string;
|
|
6769
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
6770
|
+
readonly user: io.flow.common.v0.unions.ExpandableUser;
|
|
6771
|
+
readonly role?: io.flow.common.v0.enums.Role;
|
|
6772
|
+
}
|
|
6773
|
+
interface ChannelMembershipForm {
|
|
6774
|
+
readonly channel_id: string;
|
|
6775
|
+
readonly user_id: string;
|
|
6776
|
+
readonly role?: io.flow.common.v0.enums.Role;
|
|
6777
|
+
}
|
|
6778
|
+
interface ChannelMembershipPutForm {
|
|
6779
|
+
readonly role?: io.flow.common.v0.enums.Role;
|
|
6780
|
+
}
|
|
6781
|
+
interface ChannelOrderAcceptance {
|
|
6782
|
+
readonly id: string;
|
|
6783
|
+
readonly organization_id: string;
|
|
6784
|
+
readonly order_number: string;
|
|
6785
|
+
readonly channel_id: string;
|
|
6786
|
+
readonly external_order_reference: string;
|
|
6787
|
+
readonly payment_request_id?: string;
|
|
6788
|
+
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
6789
|
+
readonly reasons: io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
6790
|
+
readonly next_action_from?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
6791
|
+
readonly order_created_at?: string;
|
|
6792
|
+
readonly order_updated_at?: string;
|
|
6793
|
+
}
|
|
6794
|
+
interface ChannelOrderAcceptanceForm {
|
|
6795
|
+
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
6796
|
+
}
|
|
6797
|
+
interface ChannelOrderAcceptanceReason {
|
|
6798
|
+
readonly description: string;
|
|
6799
|
+
readonly rejection_reason?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
6800
|
+
}
|
|
6801
|
+
interface FlowChannelOrganization {
|
|
6802
|
+
readonly placeholder?: string;
|
|
6803
|
+
}
|
|
6804
|
+
}
|
|
6805
|
+
declare namespace io.flow.payment.internal.v0.enums {
|
|
6806
|
+
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
6807
|
+
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
6808
|
+
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
6809
|
+
type HttpMethod = 'get' | 'post';
|
|
6810
|
+
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
6811
|
+
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
6812
|
+
type Owner = 'flow' | 'organization';
|
|
6813
|
+
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
6814
|
+
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
6815
|
+
type RedirectReason = 'three_d_secure';
|
|
6816
|
+
type RiskCheck = 'three_d_secure';
|
|
6817
|
+
}
|
|
6818
|
+
declare namespace io.flow.payment.internal.v0.models {
|
|
6819
|
+
interface AdyenAccount {
|
|
6820
|
+
readonly discriminator: 'adyen_account';
|
|
6821
|
+
readonly id: string;
|
|
6822
|
+
readonly organization_id: string;
|
|
6823
|
+
readonly key: string;
|
|
6824
|
+
readonly owner: io.flow.payment.internal.v0.enums.Owner;
|
|
6825
|
+
readonly name: string;
|
|
6826
|
+
readonly ui_reference: string;
|
|
6827
|
+
readonly authentication: io.flow.payment.internal.v0.models.AdyenAuthentication;
|
|
6828
|
+
readonly country: string;
|
|
6829
|
+
readonly status: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
6830
|
+
readonly organization_capability: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
6831
|
+
readonly created_at: string;
|
|
6832
|
+
readonly updated_at: string;
|
|
6833
|
+
}
|
|
6834
|
+
interface AdyenAccountModificationForm {
|
|
6835
|
+
readonly discriminator: 'adyen_account_modification_form';
|
|
6836
|
+
readonly owner: io.flow.payment.internal.v0.enums.Owner;
|
|
6837
|
+
readonly name: string;
|
|
6838
|
+
readonly ui_reference: string;
|
|
6839
|
+
readonly country: string;
|
|
6840
|
+
readonly status: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
6841
|
+
}
|
|
6842
|
+
interface AdyenAccountPutForm {
|
|
6843
|
+
readonly discriminator: 'adyen_account_put_form';
|
|
6844
|
+
readonly owner?: io.flow.payment.internal.v0.enums.Owner;
|
|
6845
|
+
readonly name: string;
|
|
6846
|
+
readonly ui_reference: string;
|
|
6643
6847
|
readonly authentication: io.flow.payment.internal.v0.models.AdyenAuthenticationForm;
|
|
6644
6848
|
readonly country: string;
|
|
6645
6849
|
readonly status?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
@@ -7983,10 +8187,6 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
7983
8187
|
readonly transaction_date: string;
|
|
7984
8188
|
readonly debug_console_order_link: string;
|
|
7985
8189
|
}
|
|
7986
|
-
interface ReportingAddenda {
|
|
7987
|
-
readonly allocation_order_totals_delta?: number;
|
|
7988
|
-
readonly allocation_order_item_discount_delta?: number;
|
|
7989
|
-
}
|
|
7990
8190
|
interface ReportingAuthorizationReference {
|
|
7991
8191
|
readonly id: string;
|
|
7992
8192
|
}
|
|
@@ -8011,7 +8211,15 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
8011
8211
|
}
|
|
8012
8212
|
interface ReportingDebug {
|
|
8013
8213
|
readonly console_order_link: string;
|
|
8014
|
-
readonly
|
|
8214
|
+
readonly allocation_order_totals_delta?: number;
|
|
8215
|
+
readonly allocation_order_item_discount_delta?: number;
|
|
8216
|
+
readonly missing_item_subsidies?: io.flow.billing.reporting.csv.v0.models.ReportingDebugMissingSubsidies;
|
|
8217
|
+
readonly missing_shipping_subsidies?: io.flow.billing.reporting.csv.v0.models.ReportingDebugMissingSubsidies;
|
|
8218
|
+
}
|
|
8219
|
+
interface ReportingDebugMissingSubsidies {
|
|
8220
|
+
readonly price?: boolean;
|
|
8221
|
+
readonly tax?: boolean;
|
|
8222
|
+
readonly duty?: boolean;
|
|
8015
8223
|
}
|
|
8016
8224
|
interface ReportingDestination {
|
|
8017
8225
|
readonly country: io.flow.billing.reporting.csv.v0.models.ReportingCountry;
|
|
@@ -8086,6 +8294,13 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
8086
8294
|
readonly duty: io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
8087
8295
|
readonly ccf: io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
8088
8296
|
}
|
|
8297
|
+
interface ReportingMerchantTransactions {
|
|
8298
|
+
readonly adjustment: io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
8299
|
+
readonly reversal: io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
8300
|
+
readonly tax: io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
8301
|
+
readonly duty: io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
8302
|
+
readonly freight: io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
8303
|
+
}
|
|
8089
8304
|
interface ReportingMonetaryValue {
|
|
8090
8305
|
readonly transaction: number;
|
|
8091
8306
|
readonly merchant: number;
|
|
@@ -8146,6 +8361,7 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
8146
8361
|
readonly marked_as_final: io.flow.billing.reporting.csv.v0.models.MarkedAsFinal;
|
|
8147
8362
|
readonly merchant_subsidies: io.flow.billing.reporting.csv.v0.models.ReportingMerchantSubsidies;
|
|
8148
8363
|
readonly merchant_fees: io.flow.billing.reporting.csv.v0.models.ReportingMerchantFees;
|
|
8364
|
+
readonly merchant_transactions: io.flow.billing.reporting.csv.v0.models.ReportingMerchantTransactions;
|
|
8149
8365
|
readonly vat_remittance: io.flow.billing.reporting.csv.v0.models.ReportingVatRemittance;
|
|
8150
8366
|
readonly debug: io.flow.billing.reporting.csv.v0.models.ReportingDebug;
|
|
8151
8367
|
}
|
|
@@ -8204,6 +8420,97 @@ declare namespace io.flow.order.management.event.v0.models {
|
|
|
8204
8420
|
declare namespace io.flow.order.management.event.v0.unions {
|
|
8205
8421
|
type OrderManagementEvent = io.flow.order.management.event.v0.models.OrderPlaced | io.flow.order.management.event.v0.models.OrderPlacedV2 | io.flow.order.management.event.v0.models.ReadyToFulfill | io.flow.order.management.event.v0.models.ReadyToFulfillV2;
|
|
8206
8422
|
}
|
|
8423
|
+
declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
8424
|
+
interface ChannelOrderSummaryDeleted {
|
|
8425
|
+
readonly discriminator: 'channel_order_summary_deleted';
|
|
8426
|
+
readonly event_id: string;
|
|
8427
|
+
readonly timestamp: string;
|
|
8428
|
+
readonly channel_id: string;
|
|
8429
|
+
readonly id: string;
|
|
8430
|
+
}
|
|
8431
|
+
interface ChannelOrderSummaryUpserted {
|
|
8432
|
+
readonly discriminator: 'channel_order_summary_upserted';
|
|
8433
|
+
readonly event_id: string;
|
|
8434
|
+
readonly timestamp: string;
|
|
8435
|
+
readonly channel_id: string;
|
|
8436
|
+
readonly channel_order_summary: io.flow.shopify.markets.internal.v0.models.ChannelOrderSummary;
|
|
8437
|
+
}
|
|
8438
|
+
interface ShopifyMarketsMetricsDeleted {
|
|
8439
|
+
readonly discriminator: 'shopify_markets_metrics_deleted';
|
|
8440
|
+
readonly event_id: string;
|
|
8441
|
+
readonly timestamp: string;
|
|
8442
|
+
readonly id: string;
|
|
8443
|
+
}
|
|
8444
|
+
interface ShopifyMarketsMetricsUpserted {
|
|
8445
|
+
readonly discriminator: 'shopify_markets_metrics_upserted';
|
|
8446
|
+
readonly event_id: string;
|
|
8447
|
+
readonly timestamp: string;
|
|
8448
|
+
readonly shopify_markets_metrics: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsOrdersMetrics;
|
|
8449
|
+
}
|
|
8450
|
+
interface ShopifyMarketsOrder {
|
|
8451
|
+
readonly id: string;
|
|
8452
|
+
readonly model: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
8453
|
+
}
|
|
8454
|
+
interface ShopifyMarketsOrderDeleted {
|
|
8455
|
+
readonly discriminator: 'shopify_markets_order_deleted';
|
|
8456
|
+
readonly event_id: string;
|
|
8457
|
+
readonly timestamp: string;
|
|
8458
|
+
readonly organization: string;
|
|
8459
|
+
readonly shopify_markets_order: io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
|
|
8460
|
+
}
|
|
8461
|
+
interface ShopifyMarketsOrderUpserted {
|
|
8462
|
+
readonly discriminator: 'shopify_markets_order_upserted';
|
|
8463
|
+
readonly event_id: string;
|
|
8464
|
+
readonly timestamp: string;
|
|
8465
|
+
readonly organization: string;
|
|
8466
|
+
readonly shopify_markets_order: io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
|
|
8467
|
+
}
|
|
8468
|
+
interface ShopifyMarketsShopDeleted {
|
|
8469
|
+
readonly discriminator: 'shopify_markets_shop_deleted';
|
|
8470
|
+
readonly event_id: string;
|
|
8471
|
+
readonly timestamp: string;
|
|
8472
|
+
readonly organization: string;
|
|
8473
|
+
readonly id: string;
|
|
8474
|
+
}
|
|
8475
|
+
interface ShopifyMarketsShopStatisticsDeleted {
|
|
8476
|
+
readonly discriminator: 'shopify_markets_shop_statistics_deleted';
|
|
8477
|
+
readonly event_id: string;
|
|
8478
|
+
readonly timestamp: string;
|
|
8479
|
+
readonly organization: string;
|
|
8480
|
+
readonly id: string;
|
|
8481
|
+
}
|
|
8482
|
+
interface ShopifyMarketsShopStatisticsUpserted {
|
|
8483
|
+
readonly discriminator: 'shopify_markets_shop_statistics_upserted';
|
|
8484
|
+
readonly event_id: string;
|
|
8485
|
+
readonly timestamp: string;
|
|
8486
|
+
readonly organization: string;
|
|
8487
|
+
readonly shopify_markets_shop_statistics: io.flow.shopify.markets.internal.v0.models.ShopifyShopStatistics;
|
|
8488
|
+
}
|
|
8489
|
+
interface ShopifyMarketsShopUpserted {
|
|
8490
|
+
readonly discriminator: 'shopify_markets_shop_upserted';
|
|
8491
|
+
readonly event_id: string;
|
|
8492
|
+
readonly timestamp: string;
|
|
8493
|
+
readonly organization: string;
|
|
8494
|
+
readonly shopify_markets_shop: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsShop;
|
|
8495
|
+
}
|
|
8496
|
+
interface ShopifyMarketsWebhookRegistrationDeleted {
|
|
8497
|
+
readonly discriminator: 'shopify_markets_webhook_registration_deleted';
|
|
8498
|
+
readonly event_id: string;
|
|
8499
|
+
readonly timestamp: string;
|
|
8500
|
+
readonly organization: string;
|
|
8501
|
+
readonly id: string;
|
|
8502
|
+
}
|
|
8503
|
+
interface ShopifyMarketsWebhookRegistrationUpserted {
|
|
8504
|
+
readonly discriminator: 'shopify_markets_webhook_registration_upserted';
|
|
8505
|
+
readonly event_id: string;
|
|
8506
|
+
readonly timestamp: string;
|
|
8507
|
+
readonly organization: string;
|
|
8508
|
+
readonly registration: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
8509
|
+
}
|
|
8510
|
+
}
|
|
8511
|
+
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
8512
|
+
type ShopifyMarketsInternalEvent = io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted;
|
|
8513
|
+
}
|
|
8207
8514
|
declare namespace io.flow.experience.v0.enums {
|
|
8208
8515
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
8209
8516
|
type CreditPaymentErrorCode = 'generic_error' | 'invalid_order_number' | 'invalid_currency' | 'invalid_description' | 'duplicate' | 'amount_must_be_positive' | 'amount_exceeds_balance' | 'insufficient_amount';
|
|
@@ -9197,9 +9504,19 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9197
9504
|
readonly starts_at?: string;
|
|
9198
9505
|
readonly ends_at?: string;
|
|
9199
9506
|
}
|
|
9507
|
+
interface FuelSurchargeByWeight {
|
|
9508
|
+
readonly discriminator: 'fuel_surcharge_by_weight';
|
|
9509
|
+
readonly amount: number;
|
|
9510
|
+
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9511
|
+
}
|
|
9512
|
+
interface FuelSurchargePercent {
|
|
9513
|
+
readonly discriminator: 'fuel_surcharge_percent';
|
|
9514
|
+
readonly percent: number;
|
|
9515
|
+
}
|
|
9200
9516
|
interface FuelSurchargeRatecardFee {
|
|
9201
9517
|
readonly discriminator: 'fuel_surcharge_ratecard_fee';
|
|
9202
9518
|
readonly amount: io.flow.common.v0.models.Money;
|
|
9519
|
+
readonly fuel_surcharge_rate?: io.flow.ratecard.v0.unions.FuelSurchargeRate;
|
|
9203
9520
|
}
|
|
9204
9521
|
interface FuelSurchargeServiceFee {
|
|
9205
9522
|
readonly discriminator: 'fuel_surcharge_service_fee';
|
|
@@ -9227,6 +9544,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9227
9544
|
readonly currency: string;
|
|
9228
9545
|
readonly amount: number;
|
|
9229
9546
|
readonly fees: io.flow.ratecard.v0.unions.RatecardFee[];
|
|
9547
|
+
readonly weight_break?: number;
|
|
9230
9548
|
readonly total: number;
|
|
9231
9549
|
readonly lane: io.flow.ratecard.v0.models.LaneSummary;
|
|
9232
9550
|
}
|
|
@@ -9478,6 +9796,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9478
9796
|
}
|
|
9479
9797
|
}
|
|
9480
9798
|
declare namespace io.flow.ratecard.v0.unions {
|
|
9799
|
+
type FuelSurchargeRate = io.flow.ratecard.v0.models.FuelSurchargePercent | io.flow.ratecard.v0.models.FuelSurchargeByWeight;
|
|
9481
9800
|
type RatecardEstimate = io.flow.ratecard.v0.models.RatecardEstimateV1 | io.flow.ratecard.v0.models.RatecardEstimateV2 | io.flow.ratecard.v0.models.RatecardEstimateV3 | io.flow.ratecard.v0.models.RatecardEstimateV4;
|
|
9482
9801
|
type RatecardFee = io.flow.ratecard.v0.models.DdpRatecardFee | io.flow.ratecard.v0.models.FuelSurchargeRatecardFee | io.flow.ratecard.v0.models.OversizePieceSurchargeRatecardFee | io.flow.ratecard.v0.models.ReturnPackageRatecardFee | io.flow.ratecard.v0.models.CrossdockRatecardFee | io.flow.ratecard.v0.models.RemoteAreaRatecardFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.ratecard.v0.models.PeakSurchargeRatecardFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeRatecardFee;
|
|
9483
9802
|
type ServiceFee = io.flow.ratecard.v0.models.FuelSurchargeServiceFee | io.flow.ratecard.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.ratecard.v0.models.RemoteAreaServiceFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.ratecard.v0.models.OversizePieceSurchargeServiceFee;
|
|
@@ -9716,154 +10035,6 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
9716
10035
|
readonly object: io.flow.crypto.v0.models.Refund;
|
|
9717
10036
|
}
|
|
9718
10037
|
}
|
|
9719
|
-
declare namespace io.flow.error.v0.enums {
|
|
9720
|
-
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
9721
|
-
}
|
|
9722
|
-
declare namespace io.flow.error.v0.models {
|
|
9723
|
-
interface GenericError {
|
|
9724
|
-
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
9725
|
-
readonly messages: string[];
|
|
9726
|
-
}
|
|
9727
|
-
}
|
|
9728
|
-
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
|
|
9729
|
-
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
9730
|
-
}
|
|
9731
|
-
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
9732
|
-
interface CarrierChargeFile {
|
|
9733
|
-
readonly id: string;
|
|
9734
|
-
readonly url: string;
|
|
9735
|
-
readonly created_at: string;
|
|
9736
|
-
readonly result?: io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeFileResult;
|
|
9737
|
-
}
|
|
9738
|
-
interface CarrierChargeFileForm {
|
|
9739
|
-
readonly url: string;
|
|
9740
|
-
}
|
|
9741
|
-
interface CarrierChargeFileResult {
|
|
9742
|
-
readonly processed_at: string;
|
|
9743
|
-
readonly number_lines_successful: number;
|
|
9744
|
-
readonly number_lines_with_errors: number;
|
|
9745
|
-
readonly errors_url?: string;
|
|
9746
|
-
}
|
|
9747
|
-
interface CarrierChargeFormLabel {
|
|
9748
|
-
readonly discriminator: 'label';
|
|
9749
|
-
readonly id: string;
|
|
9750
|
-
readonly label_invoice_request_id: string;
|
|
9751
|
-
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeUnits;
|
|
9752
|
-
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
9753
|
-
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeForm;
|
|
9754
|
-
readonly total: number;
|
|
9755
|
-
readonly attributes?: Record<string, string>;
|
|
9756
|
-
}
|
|
9757
|
-
interface CarrierChargeFormReturnToOrigin {
|
|
9758
|
-
readonly discriminator: 'return_to_origin';
|
|
9759
|
-
readonly id: string;
|
|
9760
|
-
readonly carrier_id: string;
|
|
9761
|
-
readonly carrier_tracking_number: string;
|
|
9762
|
-
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeUnits;
|
|
9763
|
-
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
9764
|
-
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeForm;
|
|
9765
|
-
readonly total: number;
|
|
9766
|
-
readonly attributes?: Record<string, string>;
|
|
9767
|
-
}
|
|
9768
|
-
interface CarrierChargeUnits {
|
|
9769
|
-
readonly currency: string;
|
|
9770
|
-
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
9771
|
-
readonly length?: io.flow.units.v0.enums.UnitOfLength;
|
|
9772
|
-
}
|
|
9773
|
-
interface LabelBase {
|
|
9774
|
-
readonly amount: number;
|
|
9775
|
-
readonly weight: number;
|
|
9776
|
-
}
|
|
9777
|
-
interface LabelDestination {
|
|
9778
|
-
readonly country: string;
|
|
9779
|
-
}
|
|
9780
|
-
interface LabelInvoiceRequest {
|
|
9781
|
-
readonly id: string;
|
|
9782
|
-
readonly label: io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary;
|
|
9783
|
-
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
9784
|
-
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
9785
|
-
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
9786
|
-
readonly total: number;
|
|
9787
|
-
readonly destination: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
|
|
9788
|
-
readonly metadata: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
|
|
9789
|
-
}
|
|
9790
|
-
interface LabelMetadata {
|
|
9791
|
-
readonly ratecard: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
|
|
9792
|
-
readonly weights: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
|
|
9793
|
-
}
|
|
9794
|
-
interface LabelSurcharge {
|
|
9795
|
-
readonly amount: number;
|
|
9796
|
-
readonly type: io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
|
|
9797
|
-
readonly detail: io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail;
|
|
9798
|
-
}
|
|
9799
|
-
interface LabelSurchargeDetailFlat {
|
|
9800
|
-
readonly discriminator: 'flat';
|
|
9801
|
-
readonly placeholder?: string;
|
|
9802
|
-
}
|
|
9803
|
-
interface LabelSurchargeDetailPerWeightUnit {
|
|
9804
|
-
readonly discriminator: 'per_weight_unit';
|
|
9805
|
-
readonly fee: number;
|
|
9806
|
-
}
|
|
9807
|
-
interface LabelSurchargeDetailPercentage {
|
|
9808
|
-
readonly discriminator: 'percentage';
|
|
9809
|
-
readonly percentage: number;
|
|
9810
|
-
}
|
|
9811
|
-
interface LabelSurchargeForm {
|
|
9812
|
-
readonly fuel?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9813
|
-
readonly remote_area?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9814
|
-
readonly oversize?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9815
|
-
readonly duties_paid?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9816
|
-
readonly emergency?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9817
|
-
readonly peak?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9818
|
-
readonly address_correction?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9819
|
-
}
|
|
9820
|
-
interface LabelSurchargeSingleForm {
|
|
9821
|
-
readonly amount: number;
|
|
9822
|
-
readonly percentage?: number;
|
|
9823
|
-
readonly fee_per_weight_unit?: number;
|
|
9824
|
-
}
|
|
9825
|
-
interface LabelUnits {
|
|
9826
|
-
readonly currency: string;
|
|
9827
|
-
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
9828
|
-
readonly length: io.flow.units.v0.enums.UnitOfLength;
|
|
9829
|
-
}
|
|
9830
|
-
interface MetadataProposition {
|
|
9831
|
-
readonly shipping_method: io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference;
|
|
9832
|
-
readonly name: string;
|
|
9833
|
-
}
|
|
9834
|
-
interface MetadataRatecard {
|
|
9835
|
-
readonly id: string;
|
|
9836
|
-
readonly proposition: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
|
|
9837
|
-
}
|
|
9838
|
-
interface MetadataWeights {
|
|
9839
|
-
readonly dead?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
|
|
9840
|
-
readonly dimensional?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
|
|
9841
|
-
}
|
|
9842
|
-
interface ShippingMethodReference {
|
|
9843
|
-
readonly id: string;
|
|
9844
|
-
}
|
|
9845
|
-
interface TrueUpLabelSummary {
|
|
9846
|
-
readonly id: string;
|
|
9847
|
-
readonly carrier_service_id: string;
|
|
9848
|
-
readonly carrier_tracking_number: string;
|
|
9849
|
-
readonly flow_tracking_number: string;
|
|
9850
|
-
readonly source: io.flow.label.v0.enums.CostEstimateSource;
|
|
9851
|
-
readonly created_at: string;
|
|
9852
|
-
}
|
|
9853
|
-
interface WeightsDead {
|
|
9854
|
-
readonly weight: number;
|
|
9855
|
-
}
|
|
9856
|
-
interface WeightsDimensional {
|
|
9857
|
-
readonly weight: number;
|
|
9858
|
-
readonly length: number;
|
|
9859
|
-
readonly width: number;
|
|
9860
|
-
readonly height: number;
|
|
9861
|
-
}
|
|
9862
|
-
}
|
|
9863
|
-
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.unions {
|
|
9864
|
-
type CarrierChargeForm = io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeFormLabel | io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeFormReturnToOrigin;
|
|
9865
|
-
type LabelSurchargeDetail = io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailFlat | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPercentage | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
9866
|
-
}
|
|
9867
10038
|
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
9868
10039
|
interface Company {
|
|
9869
10040
|
readonly discriminator: 'company';
|
|
@@ -10018,46 +10189,188 @@ declare namespace io.flow.price.v0.models {
|
|
|
10018
10189
|
readonly label: string;
|
|
10019
10190
|
readonly name?: string;
|
|
10020
10191
|
}
|
|
10021
|
-
interface PriceDetails {
|
|
10022
|
-
readonly currency: string;
|
|
10023
|
-
readonly item_price: io.flow.price.v0.models.PriceDetail;
|
|
10024
|
-
readonly margins: io.flow.price.v0.models.PriceDetail;
|
|
10025
|
-
readonly vat: io.flow.price.v0.models.PriceDetail;
|
|
10026
|
-
readonly duty: io.flow.price.v0.models.PriceDetail;
|
|
10027
|
-
readonly rounding: io.flow.price.v0.models.PriceDetail;
|
|
10028
|
-
readonly price: io.flow.common.v0.models.Price;
|
|
10029
|
-
readonly total: io.flow.common.v0.models.Price;
|
|
10030
|
-
readonly adjustment?: io.flow.price.v0.models.PriceDetail;
|
|
10192
|
+
interface PriceDetails {
|
|
10193
|
+
readonly currency: string;
|
|
10194
|
+
readonly item_price: io.flow.price.v0.models.PriceDetail;
|
|
10195
|
+
readonly margins: io.flow.price.v0.models.PriceDetail;
|
|
10196
|
+
readonly vat: io.flow.price.v0.models.PriceDetail;
|
|
10197
|
+
readonly duty: io.flow.price.v0.models.PriceDetail;
|
|
10198
|
+
readonly rounding: io.flow.price.v0.models.PriceDetail;
|
|
10199
|
+
readonly price: io.flow.common.v0.models.Price;
|
|
10200
|
+
readonly total: io.flow.common.v0.models.Price;
|
|
10201
|
+
readonly adjustment?: io.flow.price.v0.models.PriceDetail;
|
|
10202
|
+
}
|
|
10203
|
+
interface PriceEquation {
|
|
10204
|
+
readonly contracted_rate: number;
|
|
10205
|
+
readonly rate: number;
|
|
10206
|
+
readonly pricing: io.flow.price.v0.models.Pricing;
|
|
10207
|
+
readonly base_price: number;
|
|
10208
|
+
readonly discount: number;
|
|
10209
|
+
readonly fixed_margin: number;
|
|
10210
|
+
readonly percent_margin: number;
|
|
10211
|
+
readonly insurance: number;
|
|
10212
|
+
readonly freight: number;
|
|
10213
|
+
readonly duty?: io.flow.price.v0.models.Duty;
|
|
10214
|
+
readonly tax?: io.flow.price.v0.models.Tax;
|
|
10215
|
+
readonly percent_sales_margin: number;
|
|
10216
|
+
}
|
|
10217
|
+
interface Pricing {
|
|
10218
|
+
readonly vat: io.flow.price.v0.enums.PricingLevySetting;
|
|
10219
|
+
readonly duty: io.flow.price.v0.enums.PricingLevySetting;
|
|
10220
|
+
readonly rounding?: io.flow.common.v0.models.Rounding;
|
|
10221
|
+
}
|
|
10222
|
+
interface Tax {
|
|
10223
|
+
readonly name: string;
|
|
10224
|
+
readonly rate: number;
|
|
10225
|
+
readonly components: io.flow.price.v0.enums.LevyComponent[];
|
|
10226
|
+
readonly deminimis?: io.flow.price.v0.unions.Deminimis;
|
|
10227
|
+
}
|
|
10228
|
+
}
|
|
10229
|
+
declare namespace io.flow.price.v0.unions {
|
|
10230
|
+
type Deminimis = io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem;
|
|
10231
|
+
}
|
|
10232
|
+
declare namespace io.flow.trueup.v0.enums {
|
|
10233
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
10234
|
+
}
|
|
10235
|
+
declare namespace io.flow.trueup.v0.models {
|
|
10236
|
+
interface DeadWeight {
|
|
10237
|
+
readonly weight: number;
|
|
10238
|
+
}
|
|
10239
|
+
interface DimensionalWeight {
|
|
10240
|
+
readonly weight: number;
|
|
10241
|
+
readonly length?: number;
|
|
10242
|
+
readonly width?: number;
|
|
10243
|
+
readonly height?: number;
|
|
10244
|
+
}
|
|
10245
|
+
interface LabelBase {
|
|
10246
|
+
readonly amount: number;
|
|
10247
|
+
readonly weight: number;
|
|
10248
|
+
}
|
|
10249
|
+
interface LabelSurcharge {
|
|
10250
|
+
readonly amount: number;
|
|
10251
|
+
readonly type: io.flow.trueup.v0.enums.TrueupSurchargeType;
|
|
10252
|
+
readonly detail: io.flow.trueup.v0.unions.LabelSurchargeDetail;
|
|
10253
|
+
}
|
|
10254
|
+
interface LabelSurchargeDetailFlat {
|
|
10255
|
+
readonly discriminator: 'flat';
|
|
10256
|
+
readonly placeholder?: string;
|
|
10257
|
+
}
|
|
10258
|
+
interface LabelSurchargeDetailPerWeightUnit {
|
|
10259
|
+
readonly discriminator: 'per_weight_unit';
|
|
10260
|
+
readonly fee: number;
|
|
10261
|
+
}
|
|
10262
|
+
interface LabelSurchargeDetailPercentage {
|
|
10263
|
+
readonly discriminator: 'percentage';
|
|
10264
|
+
readonly percentage: number;
|
|
10265
|
+
}
|
|
10266
|
+
interface LabelUnits {
|
|
10267
|
+
readonly currency: string;
|
|
10268
|
+
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
10269
|
+
readonly length: io.flow.units.v0.enums.UnitOfLength;
|
|
10270
|
+
}
|
|
10271
|
+
}
|
|
10272
|
+
declare namespace io.flow.trueup.v0.unions {
|
|
10273
|
+
type LabelSurchargeDetail = io.flow.trueup.v0.models.LabelSurchargeDetailFlat | io.flow.trueup.v0.models.LabelSurchargeDetailPercentage | io.flow.trueup.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
10274
|
+
}
|
|
10275
|
+
declare namespace io.flow.reference.v0.enums {
|
|
10276
|
+
type PaymentMethodCapability = 'credit' | 'debit';
|
|
10277
|
+
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
10278
|
+
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
10279
|
+
type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
|
|
10280
|
+
}
|
|
10281
|
+
declare namespace io.flow.reference.v0.models {
|
|
10282
|
+
interface Carrier {
|
|
10283
|
+
readonly id: string;
|
|
10284
|
+
readonly name: string;
|
|
10285
|
+
readonly tracking_url: string;
|
|
10286
|
+
}
|
|
10287
|
+
interface CarrierService {
|
|
10288
|
+
readonly id: string;
|
|
10289
|
+
readonly carrier: io.flow.reference.v0.models.Carrier;
|
|
10290
|
+
readonly name: string;
|
|
10291
|
+
}
|
|
10292
|
+
interface Country {
|
|
10293
|
+
readonly name: string;
|
|
10294
|
+
readonly iso_3166_2: string;
|
|
10295
|
+
readonly iso_3166_3: string;
|
|
10296
|
+
readonly languages: string[];
|
|
10297
|
+
readonly measurement_system: string;
|
|
10298
|
+
readonly default_currency?: string;
|
|
10299
|
+
readonly default_language?: string;
|
|
10300
|
+
readonly timezones: string[];
|
|
10301
|
+
readonly default_delivered_duty?: string;
|
|
10302
|
+
}
|
|
10303
|
+
interface Currency {
|
|
10304
|
+
readonly name: string;
|
|
10305
|
+
readonly iso_4217_3: string;
|
|
10306
|
+
readonly number_decimals: number;
|
|
10307
|
+
readonly symbols?: io.flow.reference.v0.models.CurrencySymbols;
|
|
10308
|
+
readonly default_locale?: string;
|
|
10309
|
+
}
|
|
10310
|
+
interface CurrencySymbols {
|
|
10311
|
+
readonly primary: string;
|
|
10312
|
+
readonly narrow?: string;
|
|
10313
|
+
}
|
|
10314
|
+
interface Language {
|
|
10315
|
+
readonly name: string;
|
|
10316
|
+
readonly iso_639_2: string;
|
|
10317
|
+
}
|
|
10318
|
+
interface Locale {
|
|
10319
|
+
readonly id: string;
|
|
10320
|
+
readonly name: string;
|
|
10321
|
+
readonly country: string;
|
|
10322
|
+
readonly language: string;
|
|
10323
|
+
readonly numbers: io.flow.reference.v0.models.LocaleNumbers;
|
|
10324
|
+
}
|
|
10325
|
+
interface LocaleNumbers {
|
|
10326
|
+
readonly decimal: string;
|
|
10327
|
+
readonly group: string;
|
|
10328
|
+
}
|
|
10329
|
+
interface LocalizedTranslation {
|
|
10330
|
+
readonly locale: io.flow.reference.v0.models.Locale;
|
|
10331
|
+
readonly name: string;
|
|
10332
|
+
}
|
|
10333
|
+
interface PaymentMethod {
|
|
10334
|
+
readonly id: string;
|
|
10335
|
+
readonly type: io.flow.reference.v0.enums.PaymentMethodType;
|
|
10336
|
+
readonly name: string;
|
|
10337
|
+
readonly images: io.flow.reference.v0.models.PaymentMethodImages;
|
|
10338
|
+
readonly regions: string[];
|
|
10339
|
+
readonly capabilities?: io.flow.reference.v0.enums.PaymentMethodCapability[];
|
|
10340
|
+
}
|
|
10341
|
+
interface PaymentMethodImage {
|
|
10342
|
+
readonly url: string;
|
|
10343
|
+
readonly width: number;
|
|
10344
|
+
readonly height: number;
|
|
10345
|
+
}
|
|
10346
|
+
interface PaymentMethodImages {
|
|
10347
|
+
readonly small: io.flow.reference.v0.models.PaymentMethodImage;
|
|
10348
|
+
readonly medium: io.flow.reference.v0.models.PaymentMethodImage;
|
|
10349
|
+
readonly large: io.flow.reference.v0.models.PaymentMethodImage;
|
|
10031
10350
|
}
|
|
10032
|
-
interface
|
|
10033
|
-
readonly
|
|
10034
|
-
readonly
|
|
10035
|
-
readonly
|
|
10036
|
-
readonly
|
|
10037
|
-
readonly
|
|
10038
|
-
readonly
|
|
10039
|
-
readonly percent_margin: number;
|
|
10040
|
-
readonly insurance: number;
|
|
10041
|
-
readonly freight: number;
|
|
10042
|
-
readonly duty?: io.flow.price.v0.models.Duty;
|
|
10043
|
-
readonly tax?: io.flow.price.v0.models.Tax;
|
|
10044
|
-
readonly percent_sales_margin: number;
|
|
10351
|
+
interface Province {
|
|
10352
|
+
readonly id: string;
|
|
10353
|
+
readonly iso_3166_2: string;
|
|
10354
|
+
readonly name: string;
|
|
10355
|
+
readonly country: string;
|
|
10356
|
+
readonly province_type: io.flow.reference.v0.enums.ProvinceType;
|
|
10357
|
+
readonly translations?: io.flow.reference.v0.models.LocalizedTranslation[];
|
|
10045
10358
|
}
|
|
10046
|
-
interface
|
|
10047
|
-
readonly
|
|
10048
|
-
readonly
|
|
10049
|
-
readonly
|
|
10359
|
+
interface Region {
|
|
10360
|
+
readonly id: string;
|
|
10361
|
+
readonly name: string;
|
|
10362
|
+
readonly countries: string[];
|
|
10363
|
+
readonly currencies: string[];
|
|
10364
|
+
readonly languages: string[];
|
|
10365
|
+
readonly measurement_systems: string[];
|
|
10366
|
+
readonly timezones: string[];
|
|
10050
10367
|
}
|
|
10051
|
-
interface
|
|
10368
|
+
interface Timezone {
|
|
10052
10369
|
readonly name: string;
|
|
10053
|
-
readonly
|
|
10054
|
-
readonly
|
|
10055
|
-
readonly deminimis?: io.flow.price.v0.unions.Deminimis;
|
|
10370
|
+
readonly description: string;
|
|
10371
|
+
readonly offset: number;
|
|
10056
10372
|
}
|
|
10057
10373
|
}
|
|
10058
|
-
declare namespace io.flow.price.v0.unions {
|
|
10059
|
-
type Deminimis = io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem;
|
|
10060
|
-
}
|
|
10061
10374
|
declare namespace io.flow.tracking.v0.enums {
|
|
10062
10375
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
10063
10376
|
}
|
|
@@ -10871,12 +11184,12 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
10871
11184
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
10872
11185
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
10873
11186
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
10874
|
-
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit';
|
|
11187
|
+
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee';
|
|
10875
11188
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
10876
11189
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
10877
11190
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
10878
11191
|
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
10879
|
-
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | '
|
|
11192
|
+
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_combined_shipment' | 'fulfillment_order_time' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'posting_proof' | 'refund' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'pending_payout_transaction_event' | 'credit_and_subsidy' | 'negative_balance_guarantee';
|
|
10880
11193
|
type ResponsibleParty = 'flow' | 'organization';
|
|
10881
11194
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
10882
11195
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
@@ -10946,6 +11259,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
10946
11259
|
readonly merchant_of_record_fee?: number;
|
|
10947
11260
|
readonly duty_guarantee_fee?: number;
|
|
10948
11261
|
readonly transfer_fee?: number;
|
|
11262
|
+
readonly negative_balance_guarantee_fee?: number;
|
|
10949
11263
|
readonly order_service_fee?: io.flow.billing.internal.v0.models.TieredFee;
|
|
10950
11264
|
readonly label_fees?: io.flow.billing.internal.v0.models.AccountSettingLabelFees;
|
|
10951
11265
|
readonly charge_label_cost_directly: boolean;
|
|
@@ -11430,6 +11744,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11430
11744
|
interface ManualTransaction {
|
|
11431
11745
|
readonly discriminator: 'manual_transaction';
|
|
11432
11746
|
readonly category?: io.flow.billing.internal.v0.enums.ManualTransactionCategory;
|
|
11747
|
+
readonly original_transaction?: io.flow.billing.internal.v0.models.TransactionReference;
|
|
11433
11748
|
readonly order?: io.flow.billing.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
11434
11749
|
readonly attributes?: Record<string, string>;
|
|
11435
11750
|
readonly id: string;
|
|
@@ -11448,6 +11763,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11448
11763
|
readonly category?: io.flow.billing.internal.v0.enums.ManualTransactionCategory;
|
|
11449
11764
|
readonly posted_at?: string;
|
|
11450
11765
|
readonly order?: io.flow.billing.internal.v0.models.ManualTransactionFormOrder;
|
|
11766
|
+
readonly original_transaction_id?: string;
|
|
11451
11767
|
readonly attributes?: Record<string, string>;
|
|
11452
11768
|
}
|
|
11453
11769
|
interface ManualTransactionFormOrder {
|
|
@@ -11608,6 +11924,10 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11608
11924
|
readonly discriminator: 'order_cancellation';
|
|
11609
11925
|
readonly order_cancellation_id: string;
|
|
11610
11926
|
}
|
|
11927
|
+
interface ProofOfPostingOrderCombinedShipment {
|
|
11928
|
+
readonly discriminator: 'order_combined_shipment';
|
|
11929
|
+
readonly order_combined_shipment_id: string;
|
|
11930
|
+
}
|
|
11611
11931
|
interface ProofOfPostingShippingNotification {
|
|
11612
11932
|
readonly discriminator: 'shipping_notification';
|
|
11613
11933
|
readonly shipping_notification_id: string;
|
|
@@ -11755,7 +12075,7 @@ declare namespace io.flow.billing.internal.v0.unions {
|
|
|
11755
12075
|
type ChannelRateMetadata = io.flow.billing.internal.v0.models.ChannelRateMetadataIdentity | io.flow.billing.internal.v0.models.ChannelRateMetadataRate;
|
|
11756
12076
|
type OrderCancellationEvidence = io.flow.billing.internal.v0.models.OrderCancellationEvidenceManual | io.flow.billing.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled | io.flow.billing.internal.v0.models.OrderCancellationEvidenceReturnToSender;
|
|
11757
12077
|
type PlatformFee = io.flow.billing.internal.v0.models.PlatformFeePause | io.flow.billing.internal.v0.models.PlatformFeeFlat | io.flow.billing.internal.v0.models.PlatformFeePercentage | io.flow.billing.internal.v0.models.PlatformFeeDisabled;
|
|
11758
|
-
type ProofOfPosting = io.flow.billing.internal.v0.models.ProofOfPostingFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingShippingNotification | io.flow.billing.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
12078
|
+
type ProofOfPosting = io.flow.billing.internal.v0.models.ProofOfPostingFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingShippingNotification | io.flow.billing.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.billing.internal.v0.models.ProofOfPostingOrderCombinedShipment;
|
|
11759
12079
|
type SpotRateMetadata = io.flow.billing.internal.v0.models.SpotRateMetadataIdentity | io.flow.billing.internal.v0.models.SpotRateMetadataRate;
|
|
11760
12080
|
type Transaction = io.flow.billing.internal.v0.models.InvoiceTransaction | io.flow.billing.internal.v0.models.ManualTransaction | io.flow.billing.internal.v0.models.ProcessingTransaction | io.flow.billing.internal.v0.models.SubscriptionTransaction | io.flow.billing.internal.v0.models.TaxRemittanceTransaction | io.flow.billing.internal.v0.models.TransferTransaction | io.flow.billing.internal.v0.models.VirtualCardTransaction | io.flow.billing.internal.v0.models.DisputeTransaction | io.flow.billing.internal.v0.models.ChannelTransaction | io.flow.billing.internal.v0.models.LabelTransaction | io.flow.billing.internal.v0.models.OrderTransaction | io.flow.billing.internal.v0.models.ChannelBilledTransaction | io.flow.billing.internal.v0.models.TaxTransaction | io.flow.billing.internal.v0.models.DutyTransaction | io.flow.billing.internal.v0.models.TrueupTransaction;
|
|
11761
12081
|
}
|
|
@@ -11763,11 +12083,10 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11763
12083
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
11764
12084
|
type PayoutAttachmentType = 'transactions';
|
|
11765
12085
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11766
|
-
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | '
|
|
12086
|
+
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance';
|
|
11767
12087
|
type StatementAttachmentType = 'csv';
|
|
11768
12088
|
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'trueup' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
11769
12089
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
11770
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
11771
12090
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
11772
12091
|
}
|
|
11773
12092
|
declare namespace io.flow.billing.v0.models {
|
|
@@ -11836,6 +12155,9 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11836
12155
|
readonly id: string;
|
|
11837
12156
|
readonly reason: io.flow.billing.v0.models.PendingPayoutTransactionReason;
|
|
11838
12157
|
readonly timeout?: io.flow.billing.v0.models.PendingPayoutTransactionTimeout;
|
|
12158
|
+
readonly created_at: string;
|
|
12159
|
+
readonly updated_at: string;
|
|
12160
|
+
readonly deleted_at?: string;
|
|
11839
12161
|
}
|
|
11840
12162
|
interface ChannelStatement {
|
|
11841
12163
|
readonly id: string;
|
|
@@ -11894,6 +12216,9 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11894
12216
|
readonly id: string;
|
|
11895
12217
|
readonly reason: io.flow.billing.v0.models.PendingPayoutTransactionReason;
|
|
11896
12218
|
readonly timeout?: io.flow.billing.v0.models.PendingPayoutTransactionTimeout;
|
|
12219
|
+
readonly created_at: string;
|
|
12220
|
+
readonly updated_at: string;
|
|
12221
|
+
readonly deleted_at?: string;
|
|
11897
12222
|
}
|
|
11898
12223
|
interface ParentTransactionSummary {
|
|
11899
12224
|
readonly id: string;
|
|
@@ -11992,13 +12317,26 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11992
12317
|
readonly iin: string;
|
|
11993
12318
|
readonly country: string;
|
|
11994
12319
|
}
|
|
12320
|
+
interface TransactionMetadataManual {
|
|
12321
|
+
readonly discriminator: 'manual';
|
|
12322
|
+
readonly original?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
12323
|
+
readonly url?: string;
|
|
12324
|
+
}
|
|
12325
|
+
interface TransactionMetadataOriginalTransaction {
|
|
12326
|
+
readonly id: string;
|
|
12327
|
+
}
|
|
11995
12328
|
interface TransactionMetadataShippingLabel {
|
|
11996
12329
|
readonly discriminator: 'shipping_label';
|
|
11997
12330
|
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
12331
|
+
readonly carrier: io.flow.billing.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
12332
|
+
}
|
|
12333
|
+
interface TransactionMetadataShippingLabelCarrier {
|
|
12334
|
+
readonly id: string;
|
|
12335
|
+
readonly tracking_number: string;
|
|
11998
12336
|
}
|
|
11999
12337
|
interface TransactionMetadataTrueup {
|
|
12000
12338
|
readonly discriminator: 'trueup';
|
|
12001
|
-
readonly original: io.flow.billing.v0.models.
|
|
12339
|
+
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
12002
12340
|
readonly estimate: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
12003
12341
|
readonly actual: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
12004
12342
|
}
|
|
@@ -12008,9 +12346,8 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12008
12346
|
readonly base: io.flow.billing.v0.models.TrueupLabelBase;
|
|
12009
12347
|
readonly surcharges: io.flow.billing.v0.models.TrueupLabelSurcharge[];
|
|
12010
12348
|
readonly total: number;
|
|
12011
|
-
|
|
12012
|
-
|
|
12013
|
-
readonly id: string;
|
|
12349
|
+
readonly dead?: io.flow.trueup.v0.models.DeadWeight;
|
|
12350
|
+
readonly dimensional?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
12014
12351
|
}
|
|
12015
12352
|
interface TransactionReference {
|
|
12016
12353
|
readonly id: string;
|
|
@@ -12021,7 +12358,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12021
12358
|
}
|
|
12022
12359
|
interface TrueupLabelSurcharge {
|
|
12023
12360
|
readonly amount: number;
|
|
12024
|
-
readonly type: io.flow.
|
|
12361
|
+
readonly type: io.flow.trueup.v0.enums.TrueupSurchargeType;
|
|
12025
12362
|
readonly percentage?: number;
|
|
12026
12363
|
readonly per_weight_unit?: number;
|
|
12027
12364
|
}
|
|
@@ -12039,7 +12376,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
12039
12376
|
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
12040
12377
|
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
12041
12378
|
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
12042
|
-
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup;
|
|
12379
|
+
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.TransactionMetadataManual;
|
|
12043
12380
|
}
|
|
12044
12381
|
declare namespace io.flow.harmonization.v0.enums {
|
|
12045
12382
|
type TaxApplicability = 'none' | 'all';
|
|
@@ -13463,7 +13800,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13463
13800
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-0522d426a5b741c791ba05496c35297a';
|
|
13464
13801
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
13465
13802
|
type BillingAllocationKey = 'freight_cost' | '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' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
13466
|
-
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'queued_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count';
|
|
13803
|
+
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'queued_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days';
|
|
13467
13804
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'all';
|
|
13468
13805
|
type BillingStatementBatchFileKey = 'summary';
|
|
13469
13806
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
@@ -13472,6 +13809,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13472
13809
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
13473
13810
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
13474
13811
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax';
|
|
13812
|
+
type CarrierChargeOtherReason = 'return_to_origin' | 'other';
|
|
13475
13813
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
13476
13814
|
type CarrierValidationStatus = 'success' | 'error';
|
|
13477
13815
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
@@ -13480,6 +13818,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13480
13818
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
13481
13819
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_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';
|
|
13482
13820
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
13821
|
+
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
13483
13822
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
13484
13823
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
13485
13824
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
@@ -13563,6 +13902,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13563
13902
|
type ContentType = 'text' | 'html';
|
|
13564
13903
|
type ContentTypeCast = 'markdown_to_html' | 'markdown_to_text';
|
|
13565
13904
|
type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
|
|
13905
|
+
type DebugAccountingTransactionType = 'fulfillment';
|
|
13566
13906
|
type DeliveredDutyOptionMessageType = 'warning' | 'notification';
|
|
13567
13907
|
type DeminimisAdjustmentType = 'none' | 'duty' | 'vat' | 'vat_and_duty';
|
|
13568
13908
|
type DiscountRequestOrderEntitlementKey = 'subtotal';
|
|
@@ -13585,7 +13925,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13585
13925
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
13586
13926
|
type EmptyAttribute = 'irrelevant';
|
|
13587
13927
|
type ErpFileType = 'vendor';
|
|
13588
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13928
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13589
13929
|
type ExperienceImportType = 'experience_with_settings';
|
|
13590
13930
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13591
13931
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13621,9 +13961,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13621
13961
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
|
|
13622
13962
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
13623
13963
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
13964
|
+
type LogisticsResponsibility = 'organization' | 'flow';
|
|
13624
13965
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
13625
13966
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
13626
|
-
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit';
|
|
13967
|
+
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee';
|
|
13627
13968
|
type MarketingGatewayAccountConnectionStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';
|
|
13628
13969
|
type MarketingGatewayChannelIntegrationType = 'automated' | 'manual';
|
|
13629
13970
|
type MarketingGatewayChannelStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected' | 'unavailable';
|
|
@@ -13642,7 +13983,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13642
13983
|
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
|
|
13643
13984
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
13644
13985
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
13645
|
-
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
13986
|
+
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'audit_auto_activation' | 'api_deactivation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
13646
13987
|
type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
|
|
13647
13988
|
type OrderAttributeIntent = 'discount_code';
|
|
13648
13989
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
@@ -13673,7 +14014,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13673
14014
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
13674
14015
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
13675
14016
|
type PromptTarget = 'browse' | 'checkout';
|
|
13676
|
-
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | '
|
|
14017
|
+
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_combined_shipment' | 'fulfillment_order_time' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'posting_proof' | 'refund' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'pending_payout_transaction_event' | 'credit_and_subsidy' | 'negative_balance_guarantee';
|
|
13677
14018
|
type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
|
|
13678
14019
|
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
13679
14020
|
type RateSource = 'calculated' | 'market';
|
|
@@ -13682,6 +14023,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13682
14023
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
13683
14024
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
13684
14025
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
14026
|
+
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account';
|
|
13685
14027
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
13686
14028
|
type ResponsibleParty = 'flow' | 'organization';
|
|
13687
14029
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
@@ -13725,7 +14067,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13725
14067
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
13726
14068
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
13727
14069
|
type TransferMethod = 'ach';
|
|
13728
|
-
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
13729
14070
|
type TrueupTransactionType = 'adjustment' | 'reversal' | 'trueup';
|
|
13730
14071
|
type UnclassifiedProductStatus = 'ignored' | 'escalated' | 'requeued' | 'unverified' | 'queued' | 'unconfident';
|
|
13731
14072
|
}
|
|
@@ -13829,6 +14170,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13829
14170
|
readonly timestamp: string;
|
|
13830
14171
|
readonly rates: io.flow.internal.v0.models.AccountProcessingRates;
|
|
13831
14172
|
}
|
|
14173
|
+
interface AccountReference {
|
|
14174
|
+
readonly id: string;
|
|
14175
|
+
}
|
|
13832
14176
|
interface AccountSettingLabelFees {
|
|
13833
14177
|
readonly flow?: io.flow.internal.v0.models.TieredFee;
|
|
13834
14178
|
readonly organization?: io.flow.internal.v0.models.TieredFee;
|
|
@@ -13847,6 +14191,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13847
14191
|
readonly merchant_of_record_fee?: number;
|
|
13848
14192
|
readonly duty_guarantee_fee?: number;
|
|
13849
14193
|
readonly transfer_fee?: number;
|
|
14194
|
+
readonly negative_balance_guarantee_fee?: number;
|
|
13850
14195
|
readonly order_service_fee?: io.flow.internal.v0.models.TieredFee;
|
|
13851
14196
|
readonly label_fees?: io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
13852
14197
|
readonly charge_label_cost_directly: boolean;
|
|
@@ -14992,20 +15337,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14992
15337
|
readonly id: string;
|
|
14993
15338
|
readonly label_invoice_request_id: string;
|
|
14994
15339
|
readonly units: io.flow.internal.v0.models.CarrierChargeUnits;
|
|
14995
|
-
readonly base: io.flow.
|
|
15340
|
+
readonly base: io.flow.trueup.v0.models.LabelBase;
|
|
14996
15341
|
readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
|
|
14997
15342
|
readonly total: number;
|
|
15343
|
+
readonly dead?: io.flow.trueup.v0.models.DeadWeight;
|
|
15344
|
+
readonly dimensional?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
14998
15345
|
readonly attributes?: Record<string, string>;
|
|
14999
15346
|
}
|
|
15000
|
-
interface
|
|
15001
|
-
readonly discriminator: '
|
|
15347
|
+
interface CarrierChargeFormOther {
|
|
15348
|
+
readonly discriminator: 'other';
|
|
15002
15349
|
readonly id: string;
|
|
15350
|
+
readonly reason: io.flow.internal.v0.enums.CarrierChargeOtherReason;
|
|
15351
|
+
readonly organization_id: string;
|
|
15352
|
+
readonly order_number: string;
|
|
15003
15353
|
readonly carrier_id: string;
|
|
15004
15354
|
readonly carrier_tracking_number: string;
|
|
15355
|
+
readonly label_created_at: string;
|
|
15005
15356
|
readonly units: io.flow.internal.v0.models.CarrierChargeUnits;
|
|
15006
|
-
readonly base: io.flow.
|
|
15357
|
+
readonly base: io.flow.trueup.v0.models.LabelBase;
|
|
15007
15358
|
readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
|
|
15008
15359
|
readonly total: number;
|
|
15360
|
+
readonly dead?: io.flow.trueup.v0.models.DeadWeight;
|
|
15361
|
+
readonly dimensional?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
15009
15362
|
readonly attributes?: Record<string, string>;
|
|
15010
15363
|
}
|
|
15011
15364
|
interface CarrierChargeUnits {
|
|
@@ -15246,6 +15599,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15246
15599
|
interface ChannelMembershipPutForm {
|
|
15247
15600
|
readonly role?: io.flow.common.v0.enums.Role;
|
|
15248
15601
|
}
|
|
15602
|
+
interface ChannelOrder {
|
|
15603
|
+
readonly org_id: string;
|
|
15604
|
+
readonly flow_order_number: string;
|
|
15605
|
+
readonly shopify_order_number: string;
|
|
15606
|
+
readonly order_submission_date?: string;
|
|
15607
|
+
readonly order_item_count: number;
|
|
15608
|
+
readonly total: io.flow.catalog.v0.models.LocalizedTotal;
|
|
15609
|
+
readonly merchant_total: number;
|
|
15610
|
+
readonly tracking_numbers?: string[];
|
|
15611
|
+
readonly carrier?: io.flow.reference.v0.models.CarrierService;
|
|
15612
|
+
readonly duty_paid: boolean;
|
|
15613
|
+
}
|
|
15249
15614
|
interface ChannelOrderAcceptance {
|
|
15250
15615
|
readonly id: string;
|
|
15251
15616
|
readonly organization_id: string;
|
|
@@ -15257,6 +15622,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15257
15622
|
readonly reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
15258
15623
|
readonly next_action_from?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
15259
15624
|
readonly order_created_at?: string;
|
|
15625
|
+
readonly order_updated_at?: string;
|
|
15260
15626
|
}
|
|
15261
15627
|
interface ChannelOrderAcceptanceDeleted {
|
|
15262
15628
|
readonly discriminator: 'channel_order_acceptance_deleted';
|
|
@@ -15281,6 +15647,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15281
15647
|
readonly channel_id: string;
|
|
15282
15648
|
readonly channel_order_acceptance: io.flow.internal.v0.models.ChannelOrderAcceptance;
|
|
15283
15649
|
}
|
|
15650
|
+
interface ChannelOrderSummary {
|
|
15651
|
+
readonly id: string;
|
|
15652
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
15653
|
+
readonly external_order_reference: string;
|
|
15654
|
+
readonly order_number: string;
|
|
15655
|
+
readonly fulfullment_details: io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails;
|
|
15656
|
+
}
|
|
15657
|
+
interface ChannelOrderSummaryDeleted {
|
|
15658
|
+
readonly discriminator: 'channel_order_summary_deleted';
|
|
15659
|
+
readonly event_id: string;
|
|
15660
|
+
readonly timestamp: string;
|
|
15661
|
+
readonly channel_id: string;
|
|
15662
|
+
readonly id: string;
|
|
15663
|
+
}
|
|
15664
|
+
interface ChannelOrderSummaryFulfillmentDetails {
|
|
15665
|
+
readonly fulfillment_status: io.flow.internal.v0.enums.ChannelOrderFulfillmentStatusCode;
|
|
15666
|
+
readonly timestamp: string;
|
|
15667
|
+
}
|
|
15668
|
+
interface ChannelOrderSummaryUpserted {
|
|
15669
|
+
readonly discriminator: 'channel_order_summary_upserted';
|
|
15670
|
+
readonly event_id: string;
|
|
15671
|
+
readonly timestamp: string;
|
|
15672
|
+
readonly channel_id: string;
|
|
15673
|
+
readonly channel_order_summary: io.flow.internal.v0.models.ChannelOrderSummary;
|
|
15674
|
+
}
|
|
15284
15675
|
interface ChannelOrganizationShopify {
|
|
15285
15676
|
readonly organization: io.flow.channel.v0.models.ChannelOrganization;
|
|
15286
15677
|
readonly tokens: io.flow.internal.v0.models.ShopifyChannelOrganizationTokens[];
|
|
@@ -17530,11 +17921,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17530
17921
|
readonly timestamp: string;
|
|
17531
17922
|
readonly daily_value: io.flow.internal.v0.models.DailyValue;
|
|
17532
17923
|
}
|
|
17924
|
+
interface DebugAccountingTransaction {
|
|
17925
|
+
readonly type: io.flow.internal.v0.enums.DebugAccountingTransactionType;
|
|
17926
|
+
readonly type_id: string;
|
|
17927
|
+
readonly transaction_id: string;
|
|
17928
|
+
}
|
|
17533
17929
|
interface DebugDetails {
|
|
17534
17930
|
readonly labels: io.flow.internal.v0.models.DebugLabel[];
|
|
17535
17931
|
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
17536
17932
|
readonly refunds: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
17537
17933
|
}
|
|
17934
|
+
interface DebugFulfillmentDelta {
|
|
17935
|
+
readonly posted_transactions_net: number;
|
|
17936
|
+
readonly fulfillments_net: number;
|
|
17937
|
+
readonly delta_amount: number;
|
|
17938
|
+
readonly delta_percent: number;
|
|
17939
|
+
}
|
|
17538
17940
|
interface DebugLabel {
|
|
17539
17941
|
readonly carrier_id: string;
|
|
17540
17942
|
readonly carrier_tracking_number: string;
|
|
@@ -17571,6 +17973,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17571
17973
|
readonly label_tracking_summary_id?: string;
|
|
17572
17974
|
readonly shipping_notification_id?: string;
|
|
17573
17975
|
readonly external_fulfillment_proof_id?: string;
|
|
17976
|
+
readonly order_cancellation_id?: string;
|
|
17574
17977
|
}
|
|
17575
17978
|
interface DebugOrderTransactionFormOrderIdentifier {
|
|
17576
17979
|
readonly key?: string;
|
|
@@ -18958,14 +19361,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18958
19361
|
interface Fulfillment {
|
|
18959
19362
|
readonly id: string;
|
|
18960
19363
|
readonly fulfilled_at: string;
|
|
19364
|
+
readonly owner: io.flow.internal.v0.enums.LogisticsResponsibility;
|
|
18961
19365
|
readonly currency: string;
|
|
18962
19366
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
18963
19367
|
readonly origin?: io.flow.internal.v0.models.FulfillmentOrigin;
|
|
18964
|
-
readonly lines: io.flow.internal.v0.models.FulfillmentLine[];
|
|
18965
19368
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
18966
19369
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
18967
|
-
readonly
|
|
18968
|
-
readonly responsible_party: io.flow.internal.v0.enums.ResponsibleParty;
|
|
19370
|
+
readonly trigger: io.flow.internal.v0.unions.FulfillmentTrigger;
|
|
18969
19371
|
readonly completes_order: boolean;
|
|
18970
19372
|
readonly sequence_number: number;
|
|
18971
19373
|
readonly posting_cutoff: string;
|
|
@@ -18995,16 +19397,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18995
19397
|
readonly id: string;
|
|
18996
19398
|
readonly key: string;
|
|
18997
19399
|
}
|
|
18998
|
-
interface FulfillmentLine {
|
|
18999
|
-
readonly item: io.flow.internal.v0.models.ItemSummary;
|
|
19000
|
-
readonly quantity: number;
|
|
19001
|
-
readonly unit_price: number;
|
|
19002
|
-
readonly price: number;
|
|
19003
|
-
readonly discount: number;
|
|
19004
|
-
readonly tax: number;
|
|
19005
|
-
readonly duty: number;
|
|
19006
|
-
readonly subsidies: io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
19007
|
-
}
|
|
19008
19400
|
interface FulfillmentOrigin {
|
|
19009
19401
|
readonly country: string;
|
|
19010
19402
|
readonly province_code?: string;
|
|
@@ -19016,6 +19408,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19016
19408
|
readonly carrier_service_id?: string;
|
|
19017
19409
|
readonly carrier_tracking_number?: string;
|
|
19018
19410
|
readonly label_id?: string;
|
|
19411
|
+
readonly created_at?: string;
|
|
19019
19412
|
}
|
|
19020
19413
|
interface FulfillmentProofLabelTrackingReference {
|
|
19021
19414
|
readonly discriminator: 'label_tracking';
|
|
@@ -19024,6 +19417,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19024
19417
|
readonly carrier_service_id?: string;
|
|
19025
19418
|
readonly carrier_tracking_number?: string;
|
|
19026
19419
|
readonly label_id?: string;
|
|
19420
|
+
readonly created_at?: string;
|
|
19421
|
+
}
|
|
19422
|
+
interface FulfillmentProofOrderCombinedShipmentReference {
|
|
19423
|
+
readonly discriminator: 'order_combined_shipment';
|
|
19424
|
+
readonly id: string;
|
|
19425
|
+
readonly carrier_id?: string;
|
|
19426
|
+
readonly carrier_service_id?: string;
|
|
19427
|
+
readonly carrier_tracking_number?: string;
|
|
19428
|
+
readonly label_id?: string;
|
|
19429
|
+
readonly created_at?: string;
|
|
19027
19430
|
}
|
|
19028
19431
|
interface FulfillmentProofShippingNotificationReference {
|
|
19029
19432
|
readonly discriminator: 'shipping_notification';
|
|
@@ -19032,6 +19435,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19032
19435
|
readonly carrier_service_id?: string;
|
|
19033
19436
|
readonly carrier_tracking_number?: string;
|
|
19034
19437
|
readonly label_id?: string;
|
|
19438
|
+
readonly created_at?: string;
|
|
19035
19439
|
}
|
|
19036
19440
|
interface FulfillmentReference {
|
|
19037
19441
|
readonly id: string;
|
|
@@ -19055,6 +19459,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19055
19459
|
interface FulfillmentSubsidyBreakdown {
|
|
19056
19460
|
readonly tax: number;
|
|
19057
19461
|
readonly duty: number;
|
|
19462
|
+
readonly total: number;
|
|
19463
|
+
}
|
|
19464
|
+
interface FulfillmentTriggerProof {
|
|
19465
|
+
readonly discriminator: 'by_proof';
|
|
19466
|
+
readonly proof: io.flow.internal.v0.unions.FulfillmentProof;
|
|
19467
|
+
}
|
|
19468
|
+
interface FulfillmentTriggerTime {
|
|
19469
|
+
readonly discriminator: 'by_time';
|
|
19470
|
+
readonly placeholder?: string;
|
|
19058
19471
|
}
|
|
19059
19472
|
interface FxFee {
|
|
19060
19473
|
readonly base: io.flow.common.v0.models.Money;
|
|
@@ -20373,10 +20786,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20373
20786
|
readonly materials: Record<string, string[]>;
|
|
20374
20787
|
readonly constructions: Record<string, string[]>;
|
|
20375
20788
|
}
|
|
20376
|
-
interface LabelBase {
|
|
20377
|
-
readonly amount: number;
|
|
20378
|
-
readonly weight: number;
|
|
20379
|
-
}
|
|
20380
20789
|
interface LabelCancellationError {
|
|
20381
20790
|
readonly code: io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
20382
20791
|
readonly messages: string[];
|
|
@@ -20404,6 +20813,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20404
20813
|
}
|
|
20405
20814
|
interface LabelDestination {
|
|
20406
20815
|
readonly country: string;
|
|
20816
|
+
readonly postal?: string;
|
|
20407
20817
|
}
|
|
20408
20818
|
interface LabelGenerationAddressFailureStatusUpdateForm {
|
|
20409
20819
|
readonly status: io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
@@ -20444,13 +20854,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20444
20854
|
}
|
|
20445
20855
|
interface LabelInvoiceRequest {
|
|
20446
20856
|
readonly id: string;
|
|
20447
|
-
readonly label: io.flow.internal.v0.models.
|
|
20448
|
-
readonly units: io.flow.
|
|
20449
|
-
readonly base: io.flow.
|
|
20450
|
-
readonly surcharges: io.flow.
|
|
20857
|
+
readonly label: io.flow.internal.v0.models.TrueupLabelSummary;
|
|
20858
|
+
readonly units: io.flow.trueup.v0.models.LabelUnits;
|
|
20859
|
+
readonly base: io.flow.trueup.v0.models.LabelBase;
|
|
20860
|
+
readonly surcharges: io.flow.trueup.v0.models.LabelSurcharge[];
|
|
20451
20861
|
readonly total: number;
|
|
20452
20862
|
readonly destination: io.flow.internal.v0.models.LabelDestination;
|
|
20453
20863
|
readonly metadata: io.flow.internal.v0.models.LabelMetadata;
|
|
20864
|
+
readonly created_at: string;
|
|
20454
20865
|
}
|
|
20455
20866
|
interface LabelInvoiceRequestDeleted {
|
|
20456
20867
|
readonly discriminator: 'label_invoice_request_deleted';
|
|
@@ -20468,7 +20879,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20468
20879
|
}
|
|
20469
20880
|
interface LabelMetadata {
|
|
20470
20881
|
readonly ratecard: io.flow.internal.v0.models.MetadataRatecard;
|
|
20471
|
-
readonly
|
|
20882
|
+
readonly dead?: io.flow.trueup.v0.models.DeadWeight;
|
|
20883
|
+
readonly dimensional?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
20472
20884
|
}
|
|
20473
20885
|
interface LabelRequestError {
|
|
20474
20886
|
readonly id: string;
|
|
@@ -20510,23 +20922,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20510
20922
|
readonly carrier_tracking_number_url?: string;
|
|
20511
20923
|
readonly service?: io.flow.reference.v0.models.CarrierService;
|
|
20512
20924
|
}
|
|
20513
|
-
interface LabelSurcharge {
|
|
20514
|
-
readonly amount: number;
|
|
20515
|
-
readonly type: io.flow.internal.v0.enums.TrueUpSurchargeType;
|
|
20516
|
-
readonly detail: io.flow.internal.v0.unions.LabelSurchargeDetail;
|
|
20517
|
-
}
|
|
20518
|
-
interface LabelSurchargeDetailFlat {
|
|
20519
|
-
readonly discriminator: 'flat';
|
|
20520
|
-
readonly placeholder?: string;
|
|
20521
|
-
}
|
|
20522
|
-
interface LabelSurchargeDetailPerWeightUnit {
|
|
20523
|
-
readonly discriminator: 'per_weight_unit';
|
|
20524
|
-
readonly fee: number;
|
|
20525
|
-
}
|
|
20526
|
-
interface LabelSurchargeDetailPercentage {
|
|
20527
|
-
readonly discriminator: 'percentage';
|
|
20528
|
-
readonly percentage: number;
|
|
20529
|
-
}
|
|
20530
20925
|
interface LabelSurchargeForm {
|
|
20531
20926
|
readonly fuel?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
20532
20927
|
readonly remote_area?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
@@ -20591,11 +20986,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20591
20986
|
readonly timestamp: string;
|
|
20592
20987
|
readonly label_transaction: io.flow.internal.v0.models.LabelTransaction;
|
|
20593
20988
|
}
|
|
20594
|
-
interface LabelUnits {
|
|
20595
|
-
readonly currency: string;
|
|
20596
|
-
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
20597
|
-
readonly length: io.flow.units.v0.enums.UnitOfLength;
|
|
20598
|
-
}
|
|
20599
20989
|
interface LabeledContent {
|
|
20600
20990
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
20601
20991
|
readonly contents: io.flow.internal.v0.unions.ContentItem[];
|
|
@@ -20936,6 +21326,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20936
21326
|
interface ManualTransaction {
|
|
20937
21327
|
readonly discriminator: 'manual_transaction';
|
|
20938
21328
|
readonly category?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
21329
|
+
readonly original_transaction?: io.flow.internal.v0.models.TransactionReference;
|
|
20939
21330
|
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
20940
21331
|
readonly attributes?: Record<string, string>;
|
|
20941
21332
|
readonly id: string;
|
|
@@ -20954,6 +21345,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20954
21345
|
readonly category?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
20955
21346
|
readonly posted_at?: string;
|
|
20956
21347
|
readonly order?: io.flow.internal.v0.models.ManualTransactionFormOrder;
|
|
21348
|
+
readonly original_transaction_id?: string;
|
|
20957
21349
|
readonly attributes?: Record<string, string>;
|
|
20958
21350
|
}
|
|
20959
21351
|
interface ManualTransactionFormOrder {
|
|
@@ -21182,6 +21574,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21182
21574
|
readonly shopify_order: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
21183
21575
|
readonly flow_authorization?: io.flow.payment.v0.unions.Authorization;
|
|
21184
21576
|
}
|
|
21577
|
+
interface Merchant {
|
|
21578
|
+
readonly id: string;
|
|
21579
|
+
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
21580
|
+
}
|
|
21185
21581
|
interface MerchantApplicationSummaries {
|
|
21186
21582
|
readonly summaries: io.flow.internal.v0.models.MerchantApplicationSummary[];
|
|
21187
21583
|
readonly total: number;
|
|
@@ -21190,6 +21586,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21190
21586
|
readonly merchant_application: io.flow.merchant.onboarding.v0.unions.MerchantApplication;
|
|
21191
21587
|
readonly organization_reference: io.flow.common.v0.models.Organization;
|
|
21192
21588
|
}
|
|
21589
|
+
interface MerchantDeleted {
|
|
21590
|
+
readonly discriminator: 'merchant_deleted';
|
|
21591
|
+
readonly event_id: string;
|
|
21592
|
+
readonly timestamp: string;
|
|
21593
|
+
readonly id: string;
|
|
21594
|
+
}
|
|
21193
21595
|
interface MerchantFees {
|
|
21194
21596
|
readonly duty_guarantee: number;
|
|
21195
21597
|
readonly mor: number;
|
|
@@ -21245,6 +21647,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21245
21647
|
interface MerchantSearchResult {
|
|
21246
21648
|
readonly organization_id: string;
|
|
21247
21649
|
readonly shop_name?: string;
|
|
21650
|
+
readonly shop_id?: string;
|
|
21248
21651
|
readonly legal_name: string;
|
|
21249
21652
|
readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
21250
21653
|
}
|
|
@@ -21252,14 +21655,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21252
21655
|
readonly fees: io.flow.internal.v0.models.ShopperFees;
|
|
21253
21656
|
readonly tax: number;
|
|
21254
21657
|
readonly duty: number;
|
|
21255
|
-
readonly freight: number;
|
|
21256
21658
|
readonly total: number;
|
|
21257
21659
|
}
|
|
21258
21660
|
interface MerchantSummary {
|
|
21259
21661
|
readonly subsidies: io.flow.internal.v0.models.MerchantSubsidies;
|
|
21260
21662
|
readonly fees: io.flow.internal.v0.models.MerchantFees;
|
|
21261
21663
|
readonly transactions: io.flow.internal.v0.models.MerchantTransactions;
|
|
21262
|
-
readonly
|
|
21664
|
+
readonly total: number;
|
|
21263
21665
|
}
|
|
21264
21666
|
interface MerchantTransactions {
|
|
21265
21667
|
readonly adjustment: number;
|
|
@@ -21269,6 +21671,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21269
21671
|
readonly freight: number;
|
|
21270
21672
|
readonly total: number;
|
|
21271
21673
|
}
|
|
21674
|
+
interface MerchantUpserted {
|
|
21675
|
+
readonly discriminator: 'merchant_upserted';
|
|
21676
|
+
readonly event_id: string;
|
|
21677
|
+
readonly timestamp: string;
|
|
21678
|
+
readonly merchant: io.flow.internal.v0.models.Merchant;
|
|
21679
|
+
}
|
|
21272
21680
|
interface MetadataProposition {
|
|
21273
21681
|
readonly shipping_method: io.flow.internal.v0.models.ShippingMethodReference;
|
|
21274
21682
|
readonly name: string;
|
|
@@ -21277,10 +21685,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21277
21685
|
readonly id: string;
|
|
21278
21686
|
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
21279
21687
|
}
|
|
21280
|
-
interface MetadataWeights {
|
|
21281
|
-
readonly dead?: io.flow.internal.v0.models.WeightsDead;
|
|
21282
|
-
readonly dimensional?: io.flow.internal.v0.models.WeightsDimensional;
|
|
21283
|
-
}
|
|
21284
21688
|
interface NextBillingStatement {
|
|
21285
21689
|
readonly date: string;
|
|
21286
21690
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -21294,6 +21698,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21294
21698
|
readonly discriminator: 'no_classification_form';
|
|
21295
21699
|
readonly harmonization_status: io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
21296
21700
|
}
|
|
21701
|
+
interface NonChannelPaymentBankAccount {
|
|
21702
|
+
readonly payment: io.flow.internal.v0.models.ReportPayment;
|
|
21703
|
+
readonly bank_account: io.flow.internal.v0.models.ReportBankAccount;
|
|
21704
|
+
readonly account: io.flow.internal.v0.models.ReportAccount;
|
|
21705
|
+
}
|
|
21297
21706
|
interface Notification {
|
|
21298
21707
|
readonly order: io.flow.internal.v0.models.Decision;
|
|
21299
21708
|
}
|
|
@@ -21764,6 +22173,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21764
22173
|
readonly deactivate_at: string;
|
|
21765
22174
|
readonly created_at: string;
|
|
21766
22175
|
readonly reason?: string;
|
|
22176
|
+
readonly processed_at?: string;
|
|
21767
22177
|
}
|
|
21768
22178
|
interface OrganizationDeactivationDeleted {
|
|
21769
22179
|
readonly discriminator: 'organization_deactivation_deleted';
|
|
@@ -22576,6 +22986,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22576
22986
|
readonly discriminator: 'order_cancellation';
|
|
22577
22987
|
readonly order_cancellation_id: string;
|
|
22578
22988
|
}
|
|
22989
|
+
interface ProofOfPostingOrderCombinedShipment {
|
|
22990
|
+
readonly discriminator: 'order_combined_shipment';
|
|
22991
|
+
readonly order_combined_shipment_id: string;
|
|
22992
|
+
}
|
|
22579
22993
|
interface ProofOfPostingShippingNotification {
|
|
22580
22994
|
readonly discriminator: 'shipping_notification';
|
|
22581
22995
|
readonly shipping_notification_id: string;
|
|
@@ -22981,19 +23395,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22981
23395
|
readonly number: string;
|
|
22982
23396
|
}
|
|
22983
23397
|
interface Report {
|
|
22984
|
-
readonly
|
|
23398
|
+
readonly id: string;
|
|
22985
23399
|
readonly status: io.flow.internal.v0.enums.ReportStatus;
|
|
23400
|
+
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
22986
23401
|
readonly from: string;
|
|
22987
23402
|
readonly to: string;
|
|
22988
|
-
readonly
|
|
22989
|
-
readonly
|
|
22990
|
-
|
|
23403
|
+
readonly url?: string;
|
|
23404
|
+
readonly processed_at?: string;
|
|
23405
|
+
}
|
|
23406
|
+
interface ReportAccount {
|
|
23407
|
+
readonly id: string;
|
|
23408
|
+
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
23409
|
+
}
|
|
23410
|
+
interface ReportBankAccount {
|
|
23411
|
+
readonly id?: string;
|
|
23412
|
+
readonly last4?: string;
|
|
22991
23413
|
}
|
|
22992
23414
|
interface ReportForm {
|
|
22993
|
-
readonly key?: string;
|
|
22994
23415
|
readonly from: string;
|
|
22995
23416
|
readonly to: string;
|
|
22996
|
-
readonly
|
|
23417
|
+
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
23418
|
+
}
|
|
23419
|
+
interface ReportPayment {
|
|
23420
|
+
readonly id: string;
|
|
23421
|
+
readonly created_at: string;
|
|
22997
23422
|
}
|
|
22998
23423
|
interface ReportRuleDecision {
|
|
22999
23424
|
readonly rule_id: string;
|
|
@@ -23005,6 +23430,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23005
23430
|
readonly task_id: string;
|
|
23006
23431
|
}
|
|
23007
23432
|
interface ReportingDetails {
|
|
23433
|
+
readonly accounting_transactions?: any[];
|
|
23434
|
+
readonly fulfillments?: any[];
|
|
23435
|
+
readonly fulfillment_delta?: io.flow.internal.v0.models.DebugFulfillmentDelta;
|
|
23008
23436
|
readonly sales_records?: any[];
|
|
23009
23437
|
readonly refund_records?: any[];
|
|
23010
23438
|
}
|
|
@@ -23074,6 +23502,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23074
23502
|
readonly restriction_item_id: string;
|
|
23075
23503
|
readonly decision: io.flow.internal.v0.enums.RestrictionDecision;
|
|
23076
23504
|
}
|
|
23505
|
+
interface RestrictionItemReviewSummary {
|
|
23506
|
+
readonly rule: io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
23507
|
+
readonly status: io.flow.internal.v0.enums.RestrictionStatus;
|
|
23508
|
+
readonly updated_at: string;
|
|
23509
|
+
}
|
|
23077
23510
|
interface RestrictionKeywordMetadata {
|
|
23078
23511
|
readonly keyword: string;
|
|
23079
23512
|
readonly type: io.flow.internal.v0.enums.KeywordType;
|
|
@@ -23142,6 +23575,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23142
23575
|
readonly name: string;
|
|
23143
23576
|
readonly price: io.flow.common.v0.models.Price;
|
|
23144
23577
|
readonly item_numbers: string[];
|
|
23578
|
+
readonly primary_item_number?: string;
|
|
23145
23579
|
readonly description: string;
|
|
23146
23580
|
readonly categories: string[];
|
|
23147
23581
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
@@ -23163,6 +23597,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23163
23597
|
readonly categories?: string[];
|
|
23164
23598
|
readonly product_name_query?: string;
|
|
23165
23599
|
}
|
|
23600
|
+
interface RestrictionProductSummary {
|
|
23601
|
+
readonly name: string;
|
|
23602
|
+
readonly restrictions: io.flow.internal.v0.models.RestrictionItemReviewSummary[];
|
|
23603
|
+
}
|
|
23166
23604
|
interface RestrictionRule {
|
|
23167
23605
|
readonly id: string;
|
|
23168
23606
|
readonly name: string;
|
|
@@ -23393,13 +23831,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23393
23831
|
readonly duties: io.flow.common.v0.models.PriceWithBase;
|
|
23394
23832
|
readonly total: io.flow.common.v0.models.PriceWithBase;
|
|
23395
23833
|
}
|
|
23396
|
-
interface ShipperAccountInfoForm {
|
|
23397
|
-
readonly account_name?: string;
|
|
23398
|
-
readonly account_number: string;
|
|
23399
|
-
readonly postal: string;
|
|
23400
|
-
readonly country: string;
|
|
23401
|
-
readonly invoice_info?: io.flow.internal.v0.models.InvoiceInfoForm;
|
|
23402
|
-
}
|
|
23403
23834
|
interface ShippingLane {
|
|
23404
23835
|
readonly origin: string;
|
|
23405
23836
|
readonly destination: string;
|
|
@@ -23544,6 +23975,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23544
23975
|
readonly organization: string;
|
|
23545
23976
|
readonly shopify_markets_order: io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
23546
23977
|
}
|
|
23978
|
+
interface ShopifyMarketsOrderVersion {
|
|
23979
|
+
readonly id: string;
|
|
23980
|
+
readonly timestamp: string;
|
|
23981
|
+
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
23982
|
+
readonly shopify_markets_order: io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
|
|
23983
|
+
}
|
|
23547
23984
|
interface ShopifyMarketsOrdersMetrics {
|
|
23548
23985
|
readonly id: string;
|
|
23549
23986
|
readonly range: io.flow.common.v0.models.DatetimeRange;
|
|
@@ -23551,6 +23988,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23551
23988
|
readonly internal: io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
23552
23989
|
readonly discrepancy_data: io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
23553
23990
|
}
|
|
23991
|
+
interface ShopifyMarketsQueuedRecord {
|
|
23992
|
+
readonly id: string;
|
|
23993
|
+
readonly type: string;
|
|
23994
|
+
readonly type_id: string;
|
|
23995
|
+
readonly organization_id: string;
|
|
23996
|
+
readonly environment?: string;
|
|
23997
|
+
readonly num_attempts: number;
|
|
23998
|
+
readonly next_attempt_at: string;
|
|
23999
|
+
readonly errors?: string[];
|
|
24000
|
+
readonly stacktrace?: string;
|
|
24001
|
+
}
|
|
23554
24002
|
interface ShopifyMarketsShop {
|
|
23555
24003
|
readonly id: string;
|
|
23556
24004
|
readonly shopify_shop_id?: string;
|
|
@@ -23901,10 +24349,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23901
24349
|
readonly tax: number;
|
|
23902
24350
|
readonly duty: number;
|
|
23903
24351
|
readonly subsidies: io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
24352
|
+
readonly total: number;
|
|
24353
|
+
}
|
|
24354
|
+
interface ShopperLine {
|
|
24355
|
+
readonly item: io.flow.internal.v0.models.ItemSummary;
|
|
24356
|
+
readonly quantity: number;
|
|
24357
|
+
readonly unit_price: number;
|
|
24358
|
+
readonly price: number;
|
|
24359
|
+
readonly discount: number;
|
|
24360
|
+
readonly tax: number;
|
|
24361
|
+
readonly duty: number;
|
|
24362
|
+
readonly subsidies: io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
24363
|
+
readonly total: number;
|
|
24364
|
+
}
|
|
24365
|
+
interface ShopperLines {
|
|
24366
|
+
readonly lines: io.flow.internal.v0.models.ShopperLine[];
|
|
24367
|
+
readonly total: number;
|
|
23904
24368
|
}
|
|
23905
24369
|
interface ShopperSummary {
|
|
24370
|
+
readonly fulfilled: io.flow.internal.v0.models.ShopperLines;
|
|
23906
24371
|
readonly fees: io.flow.internal.v0.models.ShopperFees;
|
|
23907
24372
|
readonly freight: io.flow.internal.v0.models.ShopperFreight;
|
|
24373
|
+
readonly order_discount: number;
|
|
24374
|
+
readonly total: number;
|
|
23908
24375
|
}
|
|
23909
24376
|
interface SimpleAccountReference {
|
|
23910
24377
|
readonly id: string;
|
|
@@ -24664,8 +25131,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24664
25131
|
readonly id: string;
|
|
24665
25132
|
readonly description: string;
|
|
24666
25133
|
}
|
|
24667
|
-
interface
|
|
25134
|
+
interface TrueupLabelSummary {
|
|
24668
25135
|
readonly id: string;
|
|
25136
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
25137
|
+
readonly order_number: string;
|
|
25138
|
+
readonly carrier_id: string;
|
|
24669
25139
|
readonly carrier_service_id: string;
|
|
24670
25140
|
readonly carrier_tracking_number: string;
|
|
24671
25141
|
readonly flow_tracking_number: string;
|
|
@@ -24724,41 +25194,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24724
25194
|
}
|
|
24725
25195
|
interface Ups {
|
|
24726
25196
|
readonly discriminator: 'ups';
|
|
24727
|
-
readonly
|
|
24728
|
-
readonly
|
|
24729
|
-
readonly access_license_number: string;
|
|
24730
|
-
readonly account_number: string;
|
|
24731
|
-
readonly direct_feed_location_code?: string;
|
|
24732
|
-
}
|
|
24733
|
-
interface UpsLicense {
|
|
24734
|
-
readonly access_license_number: string;
|
|
24735
|
-
readonly address: io.flow.common.v0.models.BillingAddress;
|
|
24736
|
-
readonly contact: io.flow.common.v0.models.Contact;
|
|
24737
|
-
readonly secondary_contact?: io.flow.common.v0.models.Contact;
|
|
24738
|
-
readonly company_url: string;
|
|
24739
|
-
}
|
|
24740
|
-
interface UpsLicenseForm {
|
|
24741
|
-
readonly address: io.flow.common.v0.models.BillingAddress;
|
|
24742
|
-
readonly contact: io.flow.common.v0.models.Contact;
|
|
24743
|
-
readonly secondary_contact?: io.flow.common.v0.models.Contact;
|
|
24744
|
-
readonly developer_license_number: string;
|
|
24745
|
-
readonly company_url: string;
|
|
24746
|
-
}
|
|
24747
|
-
interface UpsRegistration {
|
|
24748
|
-
readonly username: string;
|
|
24749
|
-
readonly address: io.flow.common.v0.models.BillingAddress;
|
|
24750
|
-
readonly contact: io.flow.common.v0.models.Contact;
|
|
24751
|
-
readonly suggest_username_indicator?: string;
|
|
24752
|
-
readonly shipper_account_status?: string;
|
|
24753
|
-
}
|
|
24754
|
-
interface UpsRegistrationForm {
|
|
24755
|
-
readonly username: string;
|
|
24756
|
-
readonly password: string;
|
|
24757
|
-
readonly access_license_number: string;
|
|
25197
|
+
readonly client_id: string;
|
|
25198
|
+
readonly client_secret: string;
|
|
24758
25199
|
readonly account_number: string;
|
|
24759
|
-
readonly address: io.flow.common.v0.models.BillingAddress;
|
|
24760
|
-
readonly contact: io.flow.common.v0.models.Contact;
|
|
24761
|
-
readonly shipper_account?: io.flow.internal.v0.models.ShipperAccountInfoForm;
|
|
24762
25200
|
}
|
|
24763
25201
|
interface UsdSpotRate {
|
|
24764
25202
|
readonly id: string;
|
|
@@ -24905,15 +25343,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24905
25343
|
interface Webhook {
|
|
24906
25344
|
readonly placeholder?: any;
|
|
24907
25345
|
}
|
|
24908
|
-
interface WeightsDead {
|
|
24909
|
-
readonly weight: number;
|
|
24910
|
-
}
|
|
24911
|
-
interface WeightsDimensional {
|
|
24912
|
-
readonly weight: number;
|
|
24913
|
-
readonly length: number;
|
|
24914
|
-
readonly width: number;
|
|
24915
|
-
readonly height: number;
|
|
24916
|
-
}
|
|
24917
25346
|
interface WholeOrderActionForm {
|
|
24918
25347
|
readonly discriminator: 'whole_order_action_form';
|
|
24919
25348
|
readonly action: io.flow.internal.v0.enums.OrderAction;
|
|
@@ -24926,7 +25355,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
24926
25355
|
type AuthorizedOrderCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
24927
25356
|
type BlazeConsumerMessage = io.flow.internal.v0.models.BlazeAddOrderAttributesMessage | io.flow.internal.v0.models.BlazeAddToCartMessage | io.flow.internal.v0.models.BlazeCreateByCartToken | io.flow.internal.v0.models.BlazeInitializeByOrderQuoteMessage | io.flow.internal.v0.models.BlazeInitializeBySessionMessage | io.flow.internal.v0.models.BlazeInitializeMessage | io.flow.internal.v0.models.BlazeSetCartItemsMessage | io.flow.internal.v0.models.BlazeSetCheckoutIdMessage | io.flow.internal.v0.models.BlazeStartCheckoutMessage | io.flow.internal.v0.models.BlazeUpdateCartItemsMessage | io.flow.internal.v0.models.BlazeApplepayAvailabilityResponse | io.flow.internal.v0.models.BlazeSetPromotionCodeMessage;
|
|
24928
25357
|
type BlazeProviderMessage = io.flow.internal.v0.models.BlazeCheckoutCompleteMessage | io.flow.internal.v0.models.BlazeCheckoutProgressMessage | io.flow.internal.v0.models.BlazeCheckoutEventMessage | io.flow.internal.v0.models.BlazeStartCheckoutMessage | io.flow.internal.v0.models.BlazeExitCheckoutMessage | io.flow.internal.v0.models.BlazeExitCheckoutConfirmationMessage | io.flow.internal.v0.models.BlazeRedirectConfirmationMessage | io.flow.internal.v0.models.BlazeSynInitializeMessage | io.flow.internal.v0.models.BlazeApplepayAvailabilityRequest | io.flow.internal.v0.models.BlazePaymentAuthStartMessage | io.flow.internal.v0.models.BlazePaymentAuthCompleteMessage;
|
|
24929
|
-
type CarrierChargeForm = io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.
|
|
25358
|
+
type CarrierChargeForm = io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.CarrierChargeFormOther;
|
|
24930
25359
|
type CarrierCredentials = io.flow.internal.v0.models.SfExpress | io.flow.internal.v0.models.DhlEcommerce | io.flow.internal.v0.models.Landmark | io.flow.internal.v0.models.Dhl | io.flow.internal.v0.models.FedexCrossborder | io.flow.internal.v0.models.Ups | io.flow.internal.v0.models.Fedex;
|
|
24931
25360
|
type ChannelRateMetadata = io.flow.internal.v0.models.ChannelRateMetadataIdentity | io.flow.internal.v0.models.ChannelRateMetadataRate;
|
|
24932
25361
|
type CheckoutAddressBookEdit = io.flow.internal.v0.models.CheckoutAddressBookContactRemoved;
|
|
@@ -25021,7 +25450,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25021
25450
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
25022
25451
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
25023
25452
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
25024
|
-
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
25453
|
+
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
25025
25454
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
25026
25455
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
25027
25456
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -25032,7 +25461,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25032
25461
|
type FraudProviderConfiguration = io.flow.internal.v0.models.FraudProviderConfigurationRiskified;
|
|
25033
25462
|
type FraudProviderConfigurationForm = io.flow.internal.v0.models.FraudProviderConfigurationFormRiskified;
|
|
25034
25463
|
type FuelSurchargeServiceFeePutForm = io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm | io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
|
|
25035
|
-
type FulfillmentProof = io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference;
|
|
25464
|
+
type FulfillmentProof = io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference | io.flow.internal.v0.models.FulfillmentProofOrderCombinedShipmentReference;
|
|
25465
|
+
type FulfillmentTrigger = io.flow.internal.v0.models.FulfillmentTriggerProof | io.flow.internal.v0.models.FulfillmentTriggerTime;
|
|
25036
25466
|
type GenerateLoad = io.flow.internal.v0.models.GenerateLoadSingleOrg | io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
25037
25467
|
type GlobalSearchResult = io.flow.internal.v0.models.SearchExperienceSummary | io.flow.internal.v0.models.SearchExperimentSummary | io.flow.internal.v0.models.SearchOrderSummary | io.flow.internal.v0.models.SearchItemSummary;
|
|
25038
25468
|
type HeapEvent = io.flow.internal.v0.models.HeapAddressPredictionClick | io.flow.internal.v0.models.HeapAfterpayPopupOpened | io.flow.internal.v0.models.HeapAfterpayPopupClosed | io.flow.internal.v0.models.HeapAuthorizationDeclined | io.flow.internal.v0.models.HeapAuthorizationError | io.flow.internal.v0.models.HeapCardError | io.flow.internal.v0.models.HeapCheckoutEvent | io.flow.internal.v0.models.HeapCheckoutProgress | io.flow.internal.v0.models.HeapCheckoutStarted | io.flow.internal.v0.models.HeapContinueClick | io.flow.internal.v0.models.HeapDeliveryFormDataReceived | io.flow.internal.v0.models.HeapDeliveryFormDataTimeout | io.flow.internal.v0.models.HeapDeliveryOptionCount | io.flow.internal.v0.models.HeapDeliveryOptionSelected | io.flow.internal.v0.models.HeapExitCheckout | io.flow.internal.v0.models.HeapFieldBlur | io.flow.internal.v0.models.HeapFieldErrorTooltipShown | io.flow.internal.v0.models.HeapFieldFocus | io.flow.internal.v0.models.HeapFieldValidation | io.flow.internal.v0.models.HeapGiftCardApply | io.flow.internal.v0.models.HeapGiftCardOpen | io.flow.internal.v0.models.HeapGiftCardWithPin | io.flow.internal.v0.models.HeapOptinPromptDeselected | io.flow.internal.v0.models.HeapOptinPromptSelected | io.flow.internal.v0.models.HeapOrderSummaryClose | io.flow.internal.v0.models.HeapOrderSummaryOpen | io.flow.internal.v0.models.HeapPayClick | io.flow.internal.v0.models.HeapPaymentFormDataReceived | io.flow.internal.v0.models.HeapPaymentFormDataTimeout | io.flow.internal.v0.models.HeapPaymentMethodSelected | io.flow.internal.v0.models.HeapPerformance | io.flow.internal.v0.models.HeapPromoCodeApply | io.flow.internal.v0.models.HeapPromoCodeError | io.flow.internal.v0.models.HeapPromoCodeOpen | io.flow.internal.v0.models.HeapPurchase | io.flow.internal.v0.models.HeapRageClick | io.flow.internal.v0.models.HeapScriptError | io.flow.internal.v0.models.HeapSequencedError | io.flow.internal.v0.models.HeapSequencedTiming | io.flow.internal.v0.models.HeapSplitLoaded | io.flow.internal.v0.models.HeapSplitTimeout | io.flow.internal.v0.models.HeapStartCheckout | io.flow.internal.v0.models.HeapStreamError | io.flow.internal.v0.models.HeapSubmitError | io.flow.internal.v0.models.HeapWebsocketClose | io.flow.internal.v0.models.HeapWebsocketConnectionLost | io.flow.internal.v0.models.HeapWebsocketError | io.flow.internal.v0.models.HeapWebsocketGiveUp | io.flow.internal.v0.models.HeapWebsocketOpen | io.flow.internal.v0.models.HeapWebsocketRequest | io.flow.internal.v0.models.HeapWebsocketResponse | io.flow.internal.v0.models.HeapWebsocketRetry;
|
|
@@ -25042,7 +25472,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25042
25472
|
type InternalHarmonizationStatistic = io.flow.internal.v0.models.TimeToClassify | io.flow.internal.v0.models.TimeToClassifyAggregated | io.flow.internal.v0.models.RateSourceSummary | io.flow.internal.v0.models.RateFreshnessSummary;
|
|
25043
25473
|
type InternalRefundForm = io.flow.internal.v0.models.AdyenRefundForm;
|
|
25044
25474
|
type InternalTransactionDetails = io.flow.internal.v0.models.InternalTransactionDetailsCard;
|
|
25045
|
-
type LabelSurchargeDetail = io.flow.internal.v0.models.LabelSurchargeDetailFlat | io.flow.internal.v0.models.LabelSurchargeDetailPercentage | io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
25046
25475
|
type LocalizableContent = io.flow.internal.v0.models.LocalizableContentReference | io.flow.internal.v0.models.Localization;
|
|
25047
25476
|
type MarketingGatewayChannelDetails = io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails | io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails | io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
|
|
25048
25477
|
type MarketingGatewayDistributionChannel = io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle | io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook;
|
|
@@ -25062,7 +25491,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25062
25491
|
type ProcessorMerchantForm = io.flow.internal.v0.models.StripeMerchantForm;
|
|
25063
25492
|
type ProcessorMerchantModificationForm = io.flow.internal.v0.models.StripeMerchantModificationForm | io.flow.internal.v0.models.AdyenMerchantModificationForm | io.flow.internal.v0.models.FiservMerchantModificationForm | io.flow.internal.v0.models.PaypalMerchantModificationForm;
|
|
25064
25493
|
type ProcessorMerchantPutForm = io.flow.internal.v0.models.StripeMerchantPutForm | io.flow.internal.v0.models.AdyenMerchantPutForm | io.flow.internal.v0.models.FiservMerchantPutForm | io.flow.internal.v0.models.PaypalMerchantPutForm;
|
|
25065
|
-
type ProofOfPosting = io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
25494
|
+
type ProofOfPosting = io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment;
|
|
25066
25495
|
type RoutingEntity = io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant;
|
|
25067
25496
|
type ShopifyMonitoringOrderMonitorType = io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal | io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails;
|
|
25068
25497
|
type ShopifyPromotionOfferDiscount = io.flow.internal.v0.models.ShopifyPromotionFixedAmount | io.flow.internal.v0.models.ShopifyPromotionPercent;
|
|
@@ -25097,6 +25526,7 @@ export declare type AccountProcessingRates = io.flow.internal.v0.models.AccountP
|
|
|
25097
25526
|
export declare type AccountProcessingRatesDeleted = io.flow.internal.v0.models.AccountProcessingRatesDeleted;
|
|
25098
25527
|
export declare type AccountProcessingRatesForm = io.flow.internal.v0.models.AccountProcessingRatesForm;
|
|
25099
25528
|
export declare type AccountProcessingRatesUpserted = io.flow.internal.v0.models.AccountProcessingRatesUpserted;
|
|
25529
|
+
export declare type AccountReference = io.flow.internal.v0.models.AccountReference;
|
|
25100
25530
|
export declare type AccountSettingLabelFees = io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
25101
25531
|
export declare type AccountSettingLiabilitiesMethod = io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod;
|
|
25102
25532
|
export declare type AccountSettings = io.flow.internal.v0.models.AccountSettings;
|
|
@@ -25311,7 +25741,8 @@ export declare type CarrierChargeFileForm = io.flow.internal.v0.models.CarrierCh
|
|
|
25311
25741
|
export declare type CarrierChargeFileResult = io.flow.internal.v0.models.CarrierChargeFileResult;
|
|
25312
25742
|
export declare type CarrierChargeForm = io.flow.internal.v0.unions.CarrierChargeForm;
|
|
25313
25743
|
export declare type CarrierChargeFormLabel = io.flow.internal.v0.models.CarrierChargeFormLabel;
|
|
25314
|
-
export declare type
|
|
25744
|
+
export declare type CarrierChargeFormOther = io.flow.internal.v0.models.CarrierChargeFormOther;
|
|
25745
|
+
export declare type CarrierChargeOtherReason = io.flow.internal.v0.enums.CarrierChargeOtherReason;
|
|
25315
25746
|
export declare type CarrierChargeUnits = io.flow.internal.v0.models.CarrierChargeUnits;
|
|
25316
25747
|
export declare type CarrierCredentials = io.flow.internal.v0.unions.CarrierCredentials;
|
|
25317
25748
|
export declare type CarrierInvoice = io.flow.internal.v0.models.CarrierInvoice;
|
|
@@ -25357,6 +25788,7 @@ export declare type ChannelForm = io.flow.internal.v0.models.ChannelForm;
|
|
|
25357
25788
|
export declare type ChannelMembership = io.flow.internal.v0.models.ChannelMembership;
|
|
25358
25789
|
export declare type ChannelMembershipForm = io.flow.internal.v0.models.ChannelMembershipForm;
|
|
25359
25790
|
export declare type ChannelMembershipPutForm = io.flow.internal.v0.models.ChannelMembershipPutForm;
|
|
25791
|
+
export declare type ChannelOrder = io.flow.internal.v0.models.ChannelOrder;
|
|
25360
25792
|
export declare type ChannelOrderAcceptance = io.flow.internal.v0.models.ChannelOrderAcceptance;
|
|
25361
25793
|
export declare type ChannelOrderAcceptanceDeleted = io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted;
|
|
25362
25794
|
export declare type ChannelOrderAcceptanceErrorAction = io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
|
|
@@ -25366,6 +25798,11 @@ export declare type ChannelOrderAcceptanceReason = io.flow.internal.v0.models.Ch
|
|
|
25366
25798
|
export declare type ChannelOrderAcceptanceRejectionReason = io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
25367
25799
|
export declare type ChannelOrderAcceptanceStatus = io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
25368
25800
|
export declare type ChannelOrderAcceptanceUpserted = io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted;
|
|
25801
|
+
export declare type ChannelOrderFulfillmentStatusCode = io.flow.internal.v0.enums.ChannelOrderFulfillmentStatusCode;
|
|
25802
|
+
export declare type ChannelOrderSummary = io.flow.internal.v0.models.ChannelOrderSummary;
|
|
25803
|
+
export declare type ChannelOrderSummaryDeleted = io.flow.internal.v0.models.ChannelOrderSummaryDeleted;
|
|
25804
|
+
export declare type ChannelOrderSummaryFulfillmentDetails = io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails;
|
|
25805
|
+
export declare type ChannelOrderSummaryUpserted = io.flow.internal.v0.models.ChannelOrderSummaryUpserted;
|
|
25369
25806
|
export declare type ChannelOrganizationShopify = io.flow.internal.v0.models.ChannelOrganizationShopify;
|
|
25370
25807
|
export declare type ChannelOrganizationShopifyForm = io.flow.internal.v0.models.ChannelOrganizationShopifyForm;
|
|
25371
25808
|
export declare type ChannelOrganizationShopifyPostForm = io.flow.internal.v0.models.ChannelOrganizationShopifyPostForm;
|
|
@@ -25994,7 +26431,10 @@ export declare type DailyExperimentResultsUpserted = io.flow.internal.v0.models.
|
|
|
25994
26431
|
export declare type DailyValue = io.flow.internal.v0.models.DailyValue;
|
|
25995
26432
|
export declare type DailyValueDeleted = io.flow.internal.v0.models.DailyValueDeleted;
|
|
25996
26433
|
export declare type DailyValueUpserted = io.flow.internal.v0.models.DailyValueUpserted;
|
|
26434
|
+
export declare type DebugAccountingTransaction = io.flow.internal.v0.models.DebugAccountingTransaction;
|
|
26435
|
+
export declare type DebugAccountingTransactionType = io.flow.internal.v0.enums.DebugAccountingTransactionType;
|
|
25997
26436
|
export declare type DebugDetails = io.flow.internal.v0.models.DebugDetails;
|
|
26437
|
+
export declare type DebugFulfillmentDelta = io.flow.internal.v0.models.DebugFulfillmentDelta;
|
|
25998
26438
|
export declare type DebugLabel = io.flow.internal.v0.models.DebugLabel;
|
|
25999
26439
|
export declare type DebugLabelTransactionSummary = io.flow.internal.v0.models.DebugLabelTransactionSummary;
|
|
26000
26440
|
export declare type DebugOrder = io.flow.internal.v0.models.DebugOrder;
|
|
@@ -26263,16 +26703,19 @@ export declare type FulfillmentActionForm = io.flow.internal.v0.models.Fulfillme
|
|
|
26263
26703
|
export declare type FulfillmentBusiness = io.flow.internal.v0.models.FulfillmentBusiness;
|
|
26264
26704
|
export declare type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
26265
26705
|
export declare type FulfillmentInternalExperienceReference = io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
|
|
26266
|
-
export declare type FulfillmentLine = io.flow.internal.v0.models.FulfillmentLine;
|
|
26267
26706
|
export declare type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
|
|
26268
26707
|
export declare type FulfillmentProof = io.flow.internal.v0.unions.FulfillmentProof;
|
|
26269
26708
|
export declare type FulfillmentProofExternalFulfillmentProofReference = io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference;
|
|
26270
26709
|
export declare type FulfillmentProofLabelTrackingReference = io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference;
|
|
26710
|
+
export declare type FulfillmentProofOrderCombinedShipmentReference = io.flow.internal.v0.models.FulfillmentProofOrderCombinedShipmentReference;
|
|
26271
26711
|
export declare type FulfillmentProofShippingNotificationReference = io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference;
|
|
26272
26712
|
export declare type FulfillmentReference = io.flow.internal.v0.models.FulfillmentReference;
|
|
26273
26713
|
export declare type FulfillmentShipmentTracking = io.flow.internal.v0.models.FulfillmentShipmentTracking;
|
|
26274
26714
|
export declare type FulfillmentSnapshot = io.flow.internal.v0.models.FulfillmentSnapshot;
|
|
26275
26715
|
export declare type FulfillmentSubsidyBreakdown = io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
26716
|
+
export declare type FulfillmentTrigger = io.flow.internal.v0.unions.FulfillmentTrigger;
|
|
26717
|
+
export declare type FulfillmentTriggerProof = io.flow.internal.v0.models.FulfillmentTriggerProof;
|
|
26718
|
+
export declare type FulfillmentTriggerTime = io.flow.internal.v0.models.FulfillmentTriggerTime;
|
|
26276
26719
|
export declare type FxFee = io.flow.internal.v0.models.FxFee;
|
|
26277
26720
|
export declare type FxRevenueRecognition = io.flow.internal.v0.models.FxRevenueRecognition;
|
|
26278
26721
|
export declare type FxRevenueRecognitionAccount = io.flow.internal.v0.models.FxRevenueRecognitionAccount;
|
|
@@ -26459,7 +26902,6 @@ export declare type LabProjectSettingsForm = io.flow.internal.v0.models.LabProje
|
|
|
26459
26902
|
export declare type LabProjectSettingsFormAcceptance = io.flow.internal.v0.models.LabProjectSettingsFormAcceptance;
|
|
26460
26903
|
export declare type LabelAliases = io.flow.internal.v0.models.LabelAliases;
|
|
26461
26904
|
export declare type LabelAssociation = io.flow.internal.v0.models.LabelAssociation;
|
|
26462
|
-
export declare type LabelBase = io.flow.internal.v0.models.LabelBase;
|
|
26463
26905
|
export declare type LabelBillingStrategy = io.flow.internal.v0.enums.LabelBillingStrategy;
|
|
26464
26906
|
export declare type LabelCancellationError = io.flow.internal.v0.models.LabelCancellationError;
|
|
26465
26907
|
export declare type LabelCancellationErrorCode = io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
@@ -26484,11 +26926,6 @@ export declare type LabelRequestErrorDeleted = io.flow.internal.v0.models.LabelR
|
|
|
26484
26926
|
export declare type LabelRequestErrorHandlingResponsibility = io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
26485
26927
|
export declare type LabelRequestErrorUpserted = io.flow.internal.v0.models.LabelRequestErrorUpserted;
|
|
26486
26928
|
export declare type LabelSummary = io.flow.internal.v0.models.LabelSummary;
|
|
26487
|
-
export declare type LabelSurcharge = io.flow.internal.v0.models.LabelSurcharge;
|
|
26488
|
-
export declare type LabelSurchargeDetail = io.flow.internal.v0.unions.LabelSurchargeDetail;
|
|
26489
|
-
export declare type LabelSurchargeDetailFlat = io.flow.internal.v0.models.LabelSurchargeDetailFlat;
|
|
26490
|
-
export declare type LabelSurchargeDetailPerWeightUnit = io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
26491
|
-
export declare type LabelSurchargeDetailPercentage = io.flow.internal.v0.models.LabelSurchargeDetailPercentage;
|
|
26492
26929
|
export declare type LabelSurchargeForm = io.flow.internal.v0.models.LabelSurchargeForm;
|
|
26493
26930
|
export declare type LabelSurchargeSingleForm = io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
26494
26931
|
export declare type LabelTaxonomy = io.flow.internal.v0.models.LabelTaxonomy;
|
|
@@ -26498,7 +26935,6 @@ export declare type LabelTransaction = io.flow.internal.v0.models.LabelTransacti
|
|
|
26498
26935
|
export declare type LabelTransactionDeleted = io.flow.internal.v0.models.LabelTransactionDeleted;
|
|
26499
26936
|
export declare type LabelTransactionType = io.flow.internal.v0.enums.LabelTransactionType;
|
|
26500
26937
|
export declare type LabelTransactionUpserted = io.flow.internal.v0.models.LabelTransactionUpserted;
|
|
26501
|
-
export declare type LabelUnits = io.flow.internal.v0.models.LabelUnits;
|
|
26502
26938
|
export declare type LabeledContent = io.flow.internal.v0.models.LabeledContent;
|
|
26503
26939
|
export declare type LabelsPrediction = io.flow.internal.v0.models.LabelsPrediction;
|
|
26504
26940
|
export declare type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
|
|
@@ -26537,6 +26973,7 @@ export declare type LocalizedPriceBookItemData = io.flow.internal.v0.models.Loca
|
|
|
26537
26973
|
export declare type LocalizedPriceBookItemDeleted = io.flow.internal.v0.models.LocalizedPriceBookItemDeleted;
|
|
26538
26974
|
export declare type LocalizedPriceBookItemUpserted = io.flow.internal.v0.models.LocalizedPriceBookItemUpserted;
|
|
26539
26975
|
export declare type Location = io.flow.internal.v0.models.Location;
|
|
26976
|
+
export declare type LogisticsResponsibility = io.flow.internal.v0.enums.LogisticsResponsibility;
|
|
26540
26977
|
export declare type Logo = io.flow.internal.v0.models.Logo;
|
|
26541
26978
|
export declare type LoyaltyProgram = io.flow.internal.v0.models.LoyaltyProgram;
|
|
26542
26979
|
export declare type LoyaltyProgramMessage = io.flow.internal.v0.models.LoyaltyProgramMessage;
|
|
@@ -26611,8 +27048,10 @@ export declare type MarketingGatewaySchemaSummary = io.flow.internal.v0.models.M
|
|
|
26611
27048
|
export declare type MarketingGatewaySourceSummary = io.flow.internal.v0.unions.MarketingGatewaySourceSummary;
|
|
26612
27049
|
export declare type MarketingGatewaySupportedChannelDetails = io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
|
|
26613
27050
|
export declare type MarketsOrder = io.flow.internal.v0.models.MarketsOrder;
|
|
27051
|
+
export declare type Merchant = io.flow.internal.v0.models.Merchant;
|
|
26614
27052
|
export declare type MerchantApplicationSummaries = io.flow.internal.v0.models.MerchantApplicationSummaries;
|
|
26615
27053
|
export declare type MerchantApplicationSummary = io.flow.internal.v0.models.MerchantApplicationSummary;
|
|
27054
|
+
export declare type MerchantDeleted = io.flow.internal.v0.models.MerchantDeleted;
|
|
26616
27055
|
export declare type MerchantFees = io.flow.internal.v0.models.MerchantFees;
|
|
26617
27056
|
export declare type MerchantGuidAssignment = io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
26618
27057
|
export declare type MerchantGuidAssignmentDeleted = io.flow.internal.v0.models.MerchantGuidAssignmentDeleted;
|
|
@@ -26623,15 +27062,16 @@ export declare type MerchantSearchResult = io.flow.internal.v0.models.MerchantSe
|
|
|
26623
27062
|
export declare type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsidies;
|
|
26624
27063
|
export declare type MerchantSummary = io.flow.internal.v0.models.MerchantSummary;
|
|
26625
27064
|
export declare type MerchantTransactions = io.flow.internal.v0.models.MerchantTransactions;
|
|
27065
|
+
export declare type MerchantUpserted = io.flow.internal.v0.models.MerchantUpserted;
|
|
26626
27066
|
export declare type MetadataProposition = io.flow.internal.v0.models.MetadataProposition;
|
|
26627
27067
|
export declare type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
26628
|
-
export declare type MetadataWeights = io.flow.internal.v0.models.MetadataWeights;
|
|
26629
27068
|
export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
26630
27069
|
export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
26631
27070
|
export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
|
|
26632
27071
|
export declare type NoCalculatedTaxAmount = io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
26633
27072
|
export declare type NoClassificationForm = io.flow.internal.v0.models.NoClassificationForm;
|
|
26634
27073
|
export declare type NoLiabilityReasonCode = io.flow.internal.v0.enums.NoLiabilityReasonCode;
|
|
27074
|
+
export declare type NonChannelPaymentBankAccount = io.flow.internal.v0.models.NonChannelPaymentBankAccount;
|
|
26635
27075
|
export declare type Notification = io.flow.internal.v0.models.Notification;
|
|
26636
27076
|
export declare type OnboardingAuditMessage = io.flow.internal.v0.models.OnboardingAuditMessage;
|
|
26637
27077
|
export declare type OnboardingAuditMessageLevel = io.flow.internal.v0.enums.OnboardingAuditMessageLevel;
|
|
@@ -26874,6 +27314,7 @@ export declare type ProofOfPosting = io.flow.internal.v0.unions.ProofOfPosting;
|
|
|
26874
27314
|
export declare type ProofOfPostingExternallyFulfilled = io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled;
|
|
26875
27315
|
export declare type ProofOfPostingFulfilled = io.flow.internal.v0.models.ProofOfPostingFulfilled;
|
|
26876
27316
|
export declare type ProofOfPostingOrderCancellation = io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
27317
|
+
export declare type ProofOfPostingOrderCombinedShipment = io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment;
|
|
26877
27318
|
export declare type ProofOfPostingShippingNotification = io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
26878
27319
|
export declare type QueuedRecord = io.flow.internal.v0.models.QueuedRecord;
|
|
26879
27320
|
export declare type QueuedRecordType = io.flow.internal.v0.enums.QueuedRecordType;
|
|
@@ -26944,11 +27385,15 @@ export declare type RegisteredExporterTariffEligibilityData = io.flow.internal.v
|
|
|
26944
27385
|
export declare type RegisteredExporterTariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
26945
27386
|
export declare type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
26946
27387
|
export declare type Report = io.flow.internal.v0.models.Report;
|
|
27388
|
+
export declare type ReportAccount = io.flow.internal.v0.models.ReportAccount;
|
|
27389
|
+
export declare type ReportBankAccount = io.flow.internal.v0.models.ReportBankAccount;
|
|
26947
27390
|
export declare type ReportForm = io.flow.internal.v0.models.ReportForm;
|
|
26948
27391
|
export declare type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
27392
|
+
export declare type ReportPayment = io.flow.internal.v0.models.ReportPayment;
|
|
26949
27393
|
export declare type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
|
|
26950
27394
|
export declare type ReportStatus = io.flow.internal.v0.enums.ReportStatus;
|
|
26951
27395
|
export declare type ReportSummary = io.flow.internal.v0.models.ReportSummary;
|
|
27396
|
+
export declare type ReportType = io.flow.internal.v0.enums.ReportType;
|
|
26952
27397
|
export declare type ReportingDetails = io.flow.internal.v0.models.ReportingDetails;
|
|
26953
27398
|
export declare type ReportingScheme = io.flow.internal.v0.enums.ReportingScheme;
|
|
26954
27399
|
export declare type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
|
|
@@ -26962,6 +27407,7 @@ export declare type RestrictionItem = io.flow.internal.v0.models.RestrictionItem
|
|
|
26962
27407
|
export declare type RestrictionItemRequestForm = io.flow.internal.v0.models.RestrictionItemRequestForm;
|
|
26963
27408
|
export declare type RestrictionItemReview = io.flow.internal.v0.models.RestrictionItemReview;
|
|
26964
27409
|
export declare type RestrictionItemReviewDecisionForm = io.flow.internal.v0.models.RestrictionItemReviewDecisionForm;
|
|
27410
|
+
export declare type RestrictionItemReviewSummary = io.flow.internal.v0.models.RestrictionItemReviewSummary;
|
|
26965
27411
|
export declare type RestrictionKeywordMetadata = io.flow.internal.v0.models.RestrictionKeywordMetadata;
|
|
26966
27412
|
export declare type RestrictionKeywords = io.flow.internal.v0.models.RestrictionKeywords;
|
|
26967
27413
|
export declare type RestrictionOrganization = io.flow.internal.v0.models.RestrictionOrganization;
|
|
@@ -26973,6 +27419,7 @@ export declare type RestrictionPending = io.flow.internal.v0.models.RestrictionP
|
|
|
26973
27419
|
export declare type RestrictionProduct = io.flow.internal.v0.models.RestrictionProduct;
|
|
26974
27420
|
export declare type RestrictionProductDecisionForm = io.flow.internal.v0.models.RestrictionProductDecisionForm;
|
|
26975
27421
|
export declare type RestrictionProductRequestForm = io.flow.internal.v0.models.RestrictionProductRequestForm;
|
|
27422
|
+
export declare type RestrictionProductSummary = io.flow.internal.v0.models.RestrictionProductSummary;
|
|
26976
27423
|
export declare type RestrictionRule = io.flow.internal.v0.models.RestrictionRule;
|
|
26977
27424
|
export declare type RestrictionRuleDecisionForm = io.flow.internal.v0.models.RestrictionRuleDecisionForm;
|
|
26978
27425
|
export declare type RestrictionRuleForm = io.flow.internal.v0.models.RestrictionRuleForm;
|
|
@@ -27024,7 +27471,6 @@ export declare type SessionRolloutForm = io.flow.internal.v0.models.SessionRollo
|
|
|
27024
27471
|
export declare type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
27025
27472
|
export declare type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
27026
27473
|
export declare type ShippedItemValue = io.flow.internal.v0.models.ShippedItemValue;
|
|
27027
|
-
export declare type ShipperAccountInfoForm = io.flow.internal.v0.models.ShipperAccountInfoForm;
|
|
27028
27474
|
export declare type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
27029
27475
|
export declare type ShippingMethodReference = io.flow.internal.v0.models.ShippingMethodReference;
|
|
27030
27476
|
export declare type Shop = io.flow.internal.v0.models.Shop;
|
|
@@ -27058,7 +27504,9 @@ export declare type ShopifyMarketsMetricsUpserted = io.flow.internal.v0.models.S
|
|
|
27058
27504
|
export declare type ShopifyMarketsOrder = io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
27059
27505
|
export declare type ShopifyMarketsOrderDeleted = io.flow.internal.v0.models.ShopifyMarketsOrderDeleted;
|
|
27060
27506
|
export declare type ShopifyMarketsOrderUpserted = io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
|
|
27507
|
+
export declare type ShopifyMarketsOrderVersion = io.flow.internal.v0.models.ShopifyMarketsOrderVersion;
|
|
27061
27508
|
export declare type ShopifyMarketsOrdersMetrics = io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
|
|
27509
|
+
export declare type ShopifyMarketsQueuedRecord = io.flow.internal.v0.models.ShopifyMarketsQueuedRecord;
|
|
27062
27510
|
export declare type ShopifyMarketsQueuedRecordType = io.flow.internal.v0.enums.ShopifyMarketsQueuedRecordType;
|
|
27063
27511
|
export declare type ShopifyMarketsShop = io.flow.internal.v0.models.ShopifyMarketsShop;
|
|
27064
27512
|
export declare type ShopifyMarketsShopDeleted = io.flow.internal.v0.models.ShopifyMarketsShopDeleted;
|
|
@@ -27135,6 +27583,8 @@ export declare type ShopifyWebhookEvent = io.flow.internal.v0.models.ShopifyWebh
|
|
|
27135
27583
|
export declare type ShopifyWebhookForm = io.flow.internal.v0.models.ShopifyWebhookForm;
|
|
27136
27584
|
export declare type ShopperFees = io.flow.internal.v0.models.ShopperFees;
|
|
27137
27585
|
export declare type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;
|
|
27586
|
+
export declare type ShopperLine = io.flow.internal.v0.models.ShopperLine;
|
|
27587
|
+
export declare type ShopperLines = io.flow.internal.v0.models.ShopperLines;
|
|
27138
27588
|
export declare type ShopperSummary = io.flow.internal.v0.models.ShopperSummary;
|
|
27139
27589
|
export declare type SignificanceAction = io.flow.internal.v0.enums.SignificanceAction;
|
|
27140
27590
|
export declare type SimpleAccountReference = io.flow.internal.v0.models.SimpleAccountReference;
|
|
@@ -27277,8 +27727,7 @@ export declare type TransferTransactionDeletedV2 = io.flow.internal.v0.models.Tr
|
|
|
27277
27727
|
export declare type TransferTransactionUpserted = io.flow.internal.v0.models.TransferTransactionUpserted;
|
|
27278
27728
|
export declare type TransferTransactionUpsertedV2 = io.flow.internal.v0.models.TransferTransactionUpsertedV2;
|
|
27279
27729
|
export declare type Tribe = io.flow.internal.v0.models.Tribe;
|
|
27280
|
-
export declare type
|
|
27281
|
-
export declare type TrueUpSurchargeType = io.flow.internal.v0.enums.TrueUpSurchargeType;
|
|
27730
|
+
export declare type TrueupLabelSummary = io.flow.internal.v0.models.TrueupLabelSummary;
|
|
27282
27731
|
export declare type TrueupTransaction = io.flow.internal.v0.models.TrueupTransaction;
|
|
27283
27732
|
export declare type TrueupTransactionType = io.flow.internal.v0.enums.TrueupTransactionType;
|
|
27284
27733
|
export declare type UnassignedMerchantGuid = io.flow.internal.v0.models.UnassignedMerchantGuid;
|
|
@@ -27291,10 +27740,6 @@ export declare type UnclassifiedProductsSummary = io.flow.internal.v0.models.Unc
|
|
|
27291
27740
|
export declare type UnharmonizedItemsExport = io.flow.internal.v0.models.UnharmonizedItemsExport;
|
|
27292
27741
|
export declare type UnphrasedProductsExport = io.flow.internal.v0.models.UnphrasedProductsExport;
|
|
27293
27742
|
export declare type Ups = io.flow.internal.v0.models.Ups;
|
|
27294
|
-
export declare type UpsLicense = io.flow.internal.v0.models.UpsLicense;
|
|
27295
|
-
export declare type UpsLicenseForm = io.flow.internal.v0.models.UpsLicenseForm;
|
|
27296
|
-
export declare type UpsRegistration = io.flow.internal.v0.models.UpsRegistration;
|
|
27297
|
-
export declare type UpsRegistrationForm = io.flow.internal.v0.models.UpsRegistrationForm;
|
|
27298
27743
|
export declare type UsdSpotRate = io.flow.internal.v0.models.UsdSpotRate;
|
|
27299
27744
|
export declare type UsdSpotRateDeleted = io.flow.internal.v0.models.UsdSpotRateDeleted;
|
|
27300
27745
|
export declare type UsdSpotRateUpserted = io.flow.internal.v0.models.UsdSpotRateUpserted;
|
|
@@ -27321,7 +27766,5 @@ export declare type VirtualCardTransaction = io.flow.internal.v0.models.VirtualC
|
|
|
27321
27766
|
export declare type WasteElectricalAndElectronicEquipmentComplianceData = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData;
|
|
27322
27767
|
export declare type WasteElectricalAndElectronicEquipmentComplianceForm = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm;
|
|
27323
27768
|
export declare type Webhook = io.flow.internal.v0.models.Webhook;
|
|
27324
|
-
export declare type WeightsDead = io.flow.internal.v0.models.WeightsDead;
|
|
27325
|
-
export declare type WeightsDimensional = io.flow.internal.v0.models.WeightsDimensional;
|
|
27326
27769
|
export declare type WholeOrderActionForm = io.flow.internal.v0.models.WholeOrderActionForm;
|
|
27327
27770
|
export {};
|