@flowio/types 11.24.84 → 11.24.86
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 +233 -29
- package/dist/api.d.ts +8 -5
- package/package.json +2 -2
- package/src/api-internal.ts +293 -37
- package/src/api.ts +12 -5
package/src/api-internal.ts
CHANGED
|
@@ -4012,9 +4012,9 @@ declare namespace io.flow.label.v0.models {
|
|
|
4012
4012
|
readonly key: string;
|
|
4013
4013
|
readonly attributes: Record<string, string>;
|
|
4014
4014
|
readonly carrier_tracking_number: string;
|
|
4015
|
-
readonly destination
|
|
4015
|
+
readonly destination?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
4016
4016
|
readonly flow_tracking_number: string;
|
|
4017
|
-
readonly origin
|
|
4017
|
+
readonly origin?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
4018
4018
|
readonly package?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
4019
4019
|
readonly service: io.flow.fulfillment.v0.unions.ServiceDescription;
|
|
4020
4020
|
readonly window?: io.flow.common.v0.models.DatetimeRange;
|
|
@@ -5482,6 +5482,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5482
5482
|
|
|
5483
5483
|
interface ShopifyOrderDestinationForm {
|
|
5484
5484
|
readonly destination: io.flow.common.v0.models.Address;
|
|
5485
|
+
readonly order_note?: string;
|
|
5485
5486
|
}
|
|
5486
5487
|
|
|
5487
5488
|
interface ShopifyShopStatistics {
|
|
@@ -8097,6 +8098,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
8097
8098
|
readonly shipping_address?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
8098
8099
|
readonly note_attributes?: io.flow.shopify.markets.v0.models.ShopifyOrderAttribute[];
|
|
8099
8100
|
readonly metafields?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafieldForm[];
|
|
8101
|
+
readonly note?: string;
|
|
8100
8102
|
}
|
|
8101
8103
|
|
|
8102
8104
|
interface ShopifyWebhookCustomersDataRequest {
|
|
@@ -9147,7 +9149,8 @@ declare namespace io.flow.order.price.v0.enums {
|
|
|
9147
9149
|
| 'fuel_surcharge'
|
|
9148
9150
|
| 'emergency_situation_surcharge'
|
|
9149
9151
|
| 'peak_surcharge'
|
|
9150
|
-
| 'duties_taxes_paid_surcharge'
|
|
9152
|
+
| 'duties_taxes_paid_surcharge'
|
|
9153
|
+
| 'tip';
|
|
9151
9154
|
type OrderPriceDetailKey =
|
|
9152
9155
|
| 'adjustment'
|
|
9153
9156
|
| 'subtotal'
|
|
@@ -9156,7 +9159,8 @@ declare namespace io.flow.order.price.v0.enums {
|
|
|
9156
9159
|
| 'shipping'
|
|
9157
9160
|
| 'insurance'
|
|
9158
9161
|
| 'discount'
|
|
9159
|
-
| 'surcharges'
|
|
9162
|
+
| 'surcharges'
|
|
9163
|
+
| 'tip';
|
|
9160
9164
|
}
|
|
9161
9165
|
|
|
9162
9166
|
declare namespace io.flow.order.price.v0.models {
|
|
@@ -9208,7 +9212,8 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
9208
9212
|
| 'payment_authorization_failed'
|
|
9209
9213
|
| 'unsupported_subsidized_order'
|
|
9210
9214
|
| 'unsupported_virtual_goods'
|
|
9211
|
-
| 'non_matching_currencies'
|
|
9215
|
+
| 'non_matching_currencies'
|
|
9216
|
+
| 'unsupported_order_edit';
|
|
9212
9217
|
type ChannelOrderAcceptanceStatus =
|
|
9213
9218
|
| 'accepted'
|
|
9214
9219
|
| 'rejected'
|
|
@@ -9948,7 +9953,8 @@ declare namespace io.flow.billing.reporting.v0.enums {
|
|
|
9948
9953
|
type ReportType =
|
|
9949
9954
|
| 'sales_record'
|
|
9950
9955
|
| 'trueup_overview'
|
|
9951
|
-
| 'non_channel_payment_bank_account'
|
|
9956
|
+
| 'non_channel_payment_bank_account'
|
|
9957
|
+
| 'scheduled_payment';
|
|
9952
9958
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
9953
9959
|
type RevenueRecordType = 'sales' | 'refund';
|
|
9954
9960
|
}
|
|
@@ -9992,6 +9998,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
9992
9998
|
|
|
9993
9999
|
interface ReportAccount {
|
|
9994
10000
|
readonly id: string;
|
|
10001
|
+
readonly currency: string;
|
|
9995
10002
|
readonly source: io.flow.billing.internal.v0.models.AccountSource;
|
|
9996
10003
|
}
|
|
9997
10004
|
|
|
@@ -10000,14 +10007,25 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10000
10007
|
readonly last4?: string;
|
|
10001
10008
|
}
|
|
10002
10009
|
|
|
10010
|
+
interface ReportBankAccountCleartext {
|
|
10011
|
+
readonly type: string;
|
|
10012
|
+
readonly routing_number: string;
|
|
10013
|
+
readonly account_number: string;
|
|
10014
|
+
}
|
|
10015
|
+
|
|
10003
10016
|
interface ReportForm {
|
|
10004
10017
|
readonly from: string;
|
|
10005
10018
|
readonly to: string;
|
|
10006
10019
|
readonly type: io.flow.billing.reporting.v0.enums.ReportType;
|
|
10007
10020
|
}
|
|
10008
10021
|
|
|
10022
|
+
interface ReportOwner {
|
|
10023
|
+
readonly name: string;
|
|
10024
|
+
}
|
|
10025
|
+
|
|
10009
10026
|
interface ReportPayment {
|
|
10010
10027
|
readonly id: string;
|
|
10028
|
+
readonly amount: number;
|
|
10011
10029
|
readonly created_at: string;
|
|
10012
10030
|
}
|
|
10013
10031
|
|
|
@@ -10234,6 +10252,14 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10234
10252
|
readonly marked_as_final: io.flow.billing.reporting.v0.models.MarkedAsFinal;
|
|
10235
10253
|
readonly debug: io.flow.billing.reporting.v0.models.ReportingDebug;
|
|
10236
10254
|
}
|
|
10255
|
+
|
|
10256
|
+
interface ScheduledPayment {
|
|
10257
|
+
readonly payment: io.flow.billing.reporting.v0.models.ReportPayment;
|
|
10258
|
+
readonly bank_account: io.flow.billing.reporting.v0.models.ReportBankAccountCleartext;
|
|
10259
|
+
readonly account: io.flow.billing.reporting.v0.models.ReportAccount;
|
|
10260
|
+
readonly owner: io.flow.billing.reporting.v0.models.ReportOwner;
|
|
10261
|
+
readonly description: string;
|
|
10262
|
+
}
|
|
10237
10263
|
}
|
|
10238
10264
|
|
|
10239
10265
|
declare namespace io.flow.payment.internal.v0.enums {
|
|
@@ -14827,6 +14853,7 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
14827
14853
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
14828
14854
|
type AccountType = 'channel' | 'organization';
|
|
14829
14855
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
14856
|
+
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
14830
14857
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
14831
14858
|
type BillingAllocationKey =
|
|
14832
14859
|
| 'freight_cost'
|
|
@@ -15091,6 +15118,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
15091
15118
|
readonly sent_on?: string;
|
|
15092
15119
|
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
15093
15120
|
readonly expected_delivery_by?: string;
|
|
15121
|
+
readonly attributes?: Record<string, string>;
|
|
15094
15122
|
readonly total: io.flow.common.v0.models.Price;
|
|
15095
15123
|
}
|
|
15096
15124
|
|
|
@@ -15102,6 +15130,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
15102
15130
|
readonly amount: number;
|
|
15103
15131
|
readonly currency: string;
|
|
15104
15132
|
readonly transfer_transaction_ids: string[];
|
|
15133
|
+
readonly attributes?: Record<string, string>;
|
|
15105
15134
|
}
|
|
15106
15135
|
|
|
15107
15136
|
interface BankPaymentStatusForm {
|
|
@@ -15109,6 +15138,33 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
15109
15138
|
readonly failure_reason?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
15110
15139
|
}
|
|
15111
15140
|
|
|
15141
|
+
interface BankPaymentStatusImport {
|
|
15142
|
+
readonly id: string;
|
|
15143
|
+
readonly created_at: string;
|
|
15144
|
+
readonly result?: io.flow.billing.internal.v0.models.BankPaymentStatusImportResult;
|
|
15145
|
+
}
|
|
15146
|
+
|
|
15147
|
+
interface BankPaymentStatusImportForm {
|
|
15148
|
+
readonly forms: io.flow.billing.internal.v0.models.BankPaymentStatusSingleForm[];
|
|
15149
|
+
}
|
|
15150
|
+
|
|
15151
|
+
interface BankPaymentStatusImportResult {
|
|
15152
|
+
readonly processed_at: string;
|
|
15153
|
+
readonly number_lines_successful: number;
|
|
15154
|
+
readonly number_lines_with_errors: number;
|
|
15155
|
+
readonly errors_url?: string;
|
|
15156
|
+
}
|
|
15157
|
+
|
|
15158
|
+
interface BankPaymentStatusSentImportForm {
|
|
15159
|
+
readonly payment_ids: string[];
|
|
15160
|
+
}
|
|
15161
|
+
|
|
15162
|
+
interface BankPaymentStatusSingleForm {
|
|
15163
|
+
readonly payment_id: string;
|
|
15164
|
+
readonly code: io.flow.billing.internal.v0.enums.BankPaymentStatusCode;
|
|
15165
|
+
readonly failure_reason?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
15166
|
+
}
|
|
15167
|
+
|
|
15112
15168
|
interface BillingAuthorizationReference {
|
|
15113
15169
|
readonly id: string;
|
|
15114
15170
|
}
|
|
@@ -16017,7 +16073,8 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
16017
16073
|
| 'fx'
|
|
16018
16074
|
| 'processing'
|
|
16019
16075
|
| 'rate_lock'
|
|
16020
|
-
| 'transfer'
|
|
16076
|
+
| 'transfer'
|
|
16077
|
+
| 'negative_balance_guarantee';
|
|
16021
16078
|
type PayoutAttachmentType = 'transactions';
|
|
16022
16079
|
type PayoutStatusFailureCode =
|
|
16023
16080
|
| 'invalid_account_number'
|
|
@@ -18298,10 +18355,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18298
18355
|
| 'queued_other_unprocessed_count'
|
|
18299
18356
|
| 'queued_record_snooze_count'
|
|
18300
18357
|
| 'queued_record_snooze_ending_in_48_hours_count'
|
|
18301
|
-
| 'statements_no_payout_count'
|
|
18302
|
-
| 'statements_no_payout_total'
|
|
18303
|
-
| 'statements_pending_payout_count'
|
|
18304
|
-
| 'statements_pending_payout_total'
|
|
18305
18358
|
| 'payouts_scheduled_count'
|
|
18306
18359
|
| 'payouts_scheduled_total'
|
|
18307
18360
|
| 'payouts_sent_count'
|
|
@@ -18315,8 +18368,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18315
18368
|
| 'percentage_billable_label_transactions_with_carrier_charge_30_days'
|
|
18316
18369
|
| 'percentage_billable_label_transactions_with_carrier_charge_60_days'
|
|
18317
18370
|
| 'percentage_billable_label_transactions_with_carrier_charge_90_days'
|
|
18371
|
+
| 'percentage_bank_account_inserts'
|
|
18318
18372
|
| 'percentage_bank_account_updates'
|
|
18319
18373
|
| 'percentage_bank_account_unique_updates'
|
|
18374
|
+
| 'percentage_bank_account_deletes'
|
|
18320
18375
|
| 'negative_balance_number_accounts'
|
|
18321
18376
|
| 'negative_balance_number_accounts_with_order_in_past_30_days'
|
|
18322
18377
|
| 'negative_balance_number_accounts_without_order_in_past_30_days'
|
|
@@ -18419,7 +18474,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18419
18474
|
| 'payment_authorization_failed'
|
|
18420
18475
|
| 'unsupported_subsidized_order'
|
|
18421
18476
|
| 'unsupported_virtual_goods'
|
|
18422
|
-
| 'non_matching_currencies'
|
|
18477
|
+
| 'non_matching_currencies'
|
|
18478
|
+
| 'unsupported_order_edit';
|
|
18423
18479
|
type ChannelOrderAcceptanceStatus =
|
|
18424
18480
|
| 'accepted'
|
|
18425
18481
|
| 'rejected'
|
|
@@ -19076,6 +19132,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19076
19132
|
| 'restriction_organization_status_deleted'
|
|
19077
19133
|
| 'organization_restriction_status_upserted'
|
|
19078
19134
|
| 'organization_restriction_status_deleted'
|
|
19135
|
+
| 'screening_status_change_upserted'
|
|
19136
|
+
| 'screening_status_change_deleted'
|
|
19079
19137
|
| 'shopify_shop_upserted'
|
|
19080
19138
|
| 'shopify_shop_deleted'
|
|
19081
19139
|
| 'shopify_experience_short_id_upserted'
|
|
@@ -19180,10 +19238,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19180
19238
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
19181
19239
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
19182
19240
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
19183
|
-
type LabelGenerationAddressFailureStatus =
|
|
19184
|
-
| 'in_review'
|
|
19185
|
-
| 'resolved'
|
|
19186
|
-
| 'unresolved';
|
|
19187
19241
|
type LabelRequestErrorHandlingResponsibility =
|
|
19188
19242
|
| 'merchant'
|
|
19189
19243
|
| 'merchant_integration'
|
|
@@ -19335,6 +19389,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19335
19389
|
| 'fraud_review_decline'
|
|
19336
19390
|
| 'payment_fully_authorize'
|
|
19337
19391
|
| 'payment_fully_capture';
|
|
19392
|
+
type OrderAddressValidationStatus = 'success' | 'failed';
|
|
19338
19393
|
type OrderAttributeIntent = 'discount_code';
|
|
19339
19394
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
19340
19395
|
type OrderChargeTrigger =
|
|
@@ -19343,6 +19398,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19343
19398
|
| 'shipment_exhausted';
|
|
19344
19399
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
19345
19400
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
19401
|
+
type OrderValidationStatus = 'success' | 'failed' | 'unresolvable';
|
|
19346
19402
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
19347
19403
|
type OrganizationMetricType =
|
|
19348
19404
|
| 'organization_restriction_snapshot'
|
|
@@ -19441,7 +19497,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19441
19497
|
type ReportType =
|
|
19442
19498
|
| 'sales_record'
|
|
19443
19499
|
| 'trueup_overview'
|
|
19444
|
-
| 'non_channel_payment_bank_account'
|
|
19500
|
+
| 'non_channel_payment_bank_account'
|
|
19501
|
+
| 'scheduled_payment';
|
|
19445
19502
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
19446
19503
|
type ReportingScheme =
|
|
19447
19504
|
| 'immediate_reporting_to_tax_authority'
|
|
@@ -19505,6 +19562,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19505
19562
|
| 'flow_shop'
|
|
19506
19563
|
| 'online_payment'
|
|
19507
19564
|
| 'order_update'
|
|
19565
|
+
| 'order_edit'
|
|
19508
19566
|
| 'product_restriction_result'
|
|
19509
19567
|
| 'product_sync'
|
|
19510
19568
|
| 'webhook_registrations';
|
|
@@ -19557,6 +19615,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19557
19615
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
19558
19616
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
19559
19617
|
type SvitlanaType = 'physical' | 'digital';
|
|
19618
|
+
type TamItemType = 'physical' | 'digital';
|
|
19560
19619
|
type TariffEligibilityType = 'rex';
|
|
19561
19620
|
type TaskProcessorKey =
|
|
19562
19621
|
| 'order_messenger'
|
|
@@ -20377,6 +20436,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20377
20436
|
readonly sent_on?: string;
|
|
20378
20437
|
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
20379
20438
|
readonly expected_delivery_by?: string;
|
|
20439
|
+
readonly attributes?: Record<string, string>;
|
|
20380
20440
|
readonly total: io.flow.common.v0.models.Price;
|
|
20381
20441
|
}
|
|
20382
20442
|
|
|
@@ -20403,6 +20463,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20403
20463
|
readonly amount: number;
|
|
20404
20464
|
readonly currency: string;
|
|
20405
20465
|
readonly transfer_transaction_ids: string[];
|
|
20466
|
+
readonly attributes?: Record<string, string>;
|
|
20406
20467
|
}
|
|
20407
20468
|
|
|
20408
20469
|
interface BankPaymentStatusForm {
|
|
@@ -20410,6 +20471,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20410
20471
|
readonly failure_reason?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
20411
20472
|
}
|
|
20412
20473
|
|
|
20474
|
+
interface BankPaymentStatusImport {
|
|
20475
|
+
readonly id: string;
|
|
20476
|
+
readonly created_at: string;
|
|
20477
|
+
readonly result?: io.flow.internal.v0.models.BankPaymentStatusImportResult;
|
|
20478
|
+
}
|
|
20479
|
+
|
|
20480
|
+
interface BankPaymentStatusImportForm {
|
|
20481
|
+
readonly forms: io.flow.internal.v0.models.BankPaymentStatusSingleForm[];
|
|
20482
|
+
}
|
|
20483
|
+
|
|
20484
|
+
interface BankPaymentStatusImportResult {
|
|
20485
|
+
readonly processed_at: string;
|
|
20486
|
+
readonly number_lines_successful: number;
|
|
20487
|
+
readonly number_lines_with_errors: number;
|
|
20488
|
+
readonly errors_url?: string;
|
|
20489
|
+
}
|
|
20490
|
+
|
|
20491
|
+
interface BankPaymentStatusSentImportForm {
|
|
20492
|
+
readonly payment_ids: string[];
|
|
20493
|
+
}
|
|
20494
|
+
|
|
20495
|
+
interface BankPaymentStatusSingleForm {
|
|
20496
|
+
readonly payment_id: string;
|
|
20497
|
+
readonly code: io.flow.internal.v0.enums.BankPaymentStatusCode;
|
|
20498
|
+
readonly failure_reason?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
20499
|
+
}
|
|
20500
|
+
|
|
20413
20501
|
interface BankPaymentUpserted {
|
|
20414
20502
|
readonly discriminator: 'bank_payment_upserted';
|
|
20415
20503
|
readonly event_id: string;
|
|
@@ -21038,12 +21126,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21038
21126
|
interface CarrierChargeFile {
|
|
21039
21127
|
readonly id: string;
|
|
21040
21128
|
readonly url: string;
|
|
21129
|
+
readonly attributes?: Record<string, string>;
|
|
21041
21130
|
readonly created_at: string;
|
|
21042
21131
|
readonly result?: io.flow.internal.v0.models.CarrierChargeFileResult;
|
|
21043
21132
|
}
|
|
21044
21133
|
|
|
21045
21134
|
interface CarrierChargeFileForm {
|
|
21046
21135
|
readonly url: string;
|
|
21136
|
+
readonly attributes?: Record<string, string>;
|
|
21047
21137
|
}
|
|
21048
21138
|
|
|
21049
21139
|
interface CarrierChargeFileResult {
|
|
@@ -23984,6 +24074,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23984
24074
|
readonly insurance: io.flow.common.v0.models.Price;
|
|
23985
24075
|
}
|
|
23986
24076
|
|
|
24077
|
+
interface ConsoleLabelRequestForm {
|
|
24078
|
+
readonly discriminator: 'console_label_request_form';
|
|
24079
|
+
readonly order_number: string;
|
|
24080
|
+
readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
24081
|
+
readonly service: string;
|
|
24082
|
+
}
|
|
24083
|
+
|
|
24084
|
+
interface ConsoleMarkUnresolvableForm {
|
|
24085
|
+
readonly discriminator: 'console_mark_unresolvable_form';
|
|
24086
|
+
readonly order_number: string;
|
|
24087
|
+
readonly service: string;
|
|
24088
|
+
readonly note?: string;
|
|
24089
|
+
}
|
|
24090
|
+
|
|
23987
24091
|
interface ConsumerOptinActivity {
|
|
23988
24092
|
readonly optin_attribute_key: string;
|
|
23989
24093
|
readonly optin_region: string;
|
|
@@ -24968,6 +25072,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24968
25072
|
interface ErpPriorityVendorForm {
|
|
24969
25073
|
readonly acc_des?: string;
|
|
24970
25074
|
readonly tax_code?: string;
|
|
25075
|
+
readonly tax_code_2?: string;
|
|
24971
25076
|
readonly vat_flag?: string;
|
|
24972
25077
|
readonly country_name?: string;
|
|
24973
25078
|
readonly w_tax_percent?: string;
|
|
@@ -25004,6 +25109,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25004
25109
|
readonly eacc_des?: string;
|
|
25005
25110
|
readonly acng_des?: string;
|
|
25006
25111
|
readonly branch_des?: string;
|
|
25112
|
+
readonly debit_entry_code?: string;
|
|
25113
|
+
readonly credit_entry_code?: string;
|
|
25007
25114
|
}
|
|
25008
25115
|
|
|
25009
25116
|
interface ErpVendor {
|
|
@@ -27522,6 +27629,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27522
27629
|
interface ItemSummary {
|
|
27523
27630
|
readonly number: string;
|
|
27524
27631
|
readonly fulfillment_method: io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
27632
|
+
readonly country_of_origin?: string;
|
|
27633
|
+
readonly inferred?: boolean;
|
|
27525
27634
|
}
|
|
27526
27635
|
|
|
27527
27636
|
interface ItemValuesForm {
|
|
@@ -27628,20 +27737,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27628
27737
|
readonly postal?: string;
|
|
27629
27738
|
}
|
|
27630
27739
|
|
|
27631
|
-
interface LabelGenerationAddressFailureStatusUpdateForm {
|
|
27632
|
-
readonly status: io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
27633
|
-
}
|
|
27634
|
-
|
|
27635
|
-
interface LabelGenerationAddressFailures {
|
|
27636
|
-
readonly id: string;
|
|
27637
|
-
readonly organization_id: string;
|
|
27638
|
-
readonly status: io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
27639
|
-
readonly order_number: string;
|
|
27640
|
-
readonly order_submitted_at: string;
|
|
27641
|
-
readonly carrier_id: string;
|
|
27642
|
-
readonly destination_errors: io.flow.internal.v0.models.DestinationError[];
|
|
27643
|
-
}
|
|
27644
|
-
|
|
27645
27740
|
interface LabelGenerationSettings {
|
|
27646
27741
|
readonly id: string;
|
|
27647
27742
|
readonly item_identifier?: string;
|
|
@@ -28811,6 +28906,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28811
28906
|
readonly lines: io.flow.internal.v0.models.LineActionQuantities[];
|
|
28812
28907
|
}
|
|
28813
28908
|
|
|
28909
|
+
interface OrderAddressValidation {
|
|
28910
|
+
readonly id: string;
|
|
28911
|
+
readonly organization_id: string;
|
|
28912
|
+
readonly order_number: string;
|
|
28913
|
+
readonly service_id: string;
|
|
28914
|
+
readonly status: io.flow.internal.v0.enums.OrderAddressValidationStatus;
|
|
28915
|
+
readonly destination_street1?: string;
|
|
28916
|
+
readonly destination_street2?: string;
|
|
28917
|
+
readonly destination_city?: string;
|
|
28918
|
+
readonly destination_postal?: string;
|
|
28919
|
+
readonly destination_state?: string;
|
|
28920
|
+
readonly destination_country: string;
|
|
28921
|
+
}
|
|
28922
|
+
|
|
28814
28923
|
interface OrderAttribute {
|
|
28815
28924
|
readonly id: string;
|
|
28816
28925
|
readonly key: string;
|
|
@@ -29057,6 +29166,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29057
29166
|
readonly order_transaction: io.flow.internal.v0.models.OrderTransaction;
|
|
29058
29167
|
}
|
|
29059
29168
|
|
|
29169
|
+
interface OrderValidation {
|
|
29170
|
+
readonly id: string;
|
|
29171
|
+
readonly organization_id: string;
|
|
29172
|
+
readonly order_number: string;
|
|
29173
|
+
readonly service_id: string;
|
|
29174
|
+
readonly status: io.flow.internal.v0.enums.OrderValidationStatus;
|
|
29175
|
+
}
|
|
29176
|
+
|
|
29177
|
+
interface OrderValidationAttempt {
|
|
29178
|
+
readonly id: string;
|
|
29179
|
+
readonly organization_id: string;
|
|
29180
|
+
readonly order_number: string;
|
|
29181
|
+
readonly service_id: string;
|
|
29182
|
+
readonly origin: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
29183
|
+
readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
29184
|
+
readonly label_request_method: io.flow.label.v0.enums.LabelRequestMethod;
|
|
29185
|
+
readonly label_trigger_method: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
29186
|
+
readonly suggested_responsibility: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
29187
|
+
readonly errors: string[];
|
|
29188
|
+
}
|
|
29189
|
+
|
|
29060
29190
|
interface OrderValidationError {
|
|
29061
29191
|
readonly message: string;
|
|
29062
29192
|
readonly reason: io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
@@ -30653,6 +30783,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30653
30783
|
|
|
30654
30784
|
interface ReportAccount {
|
|
30655
30785
|
readonly id: string;
|
|
30786
|
+
readonly currency: string;
|
|
30656
30787
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
30657
30788
|
}
|
|
30658
30789
|
|
|
@@ -30661,14 +30792,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30661
30792
|
readonly last4?: string;
|
|
30662
30793
|
}
|
|
30663
30794
|
|
|
30795
|
+
interface ReportBankAccountCleartext {
|
|
30796
|
+
readonly type: string;
|
|
30797
|
+
readonly routing_number: string;
|
|
30798
|
+
readonly account_number: string;
|
|
30799
|
+
}
|
|
30800
|
+
|
|
30664
30801
|
interface ReportForm {
|
|
30665
30802
|
readonly from: string;
|
|
30666
30803
|
readonly to: string;
|
|
30667
30804
|
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
30668
30805
|
}
|
|
30669
30806
|
|
|
30807
|
+
interface ReportOwner {
|
|
30808
|
+
readonly name: string;
|
|
30809
|
+
}
|
|
30810
|
+
|
|
30670
30811
|
interface ReportPayment {
|
|
30671
30812
|
readonly id: string;
|
|
30813
|
+
readonly amount: number;
|
|
30672
30814
|
readonly created_at: string;
|
|
30673
30815
|
}
|
|
30674
30816
|
|
|
@@ -30923,6 +31065,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30923
31065
|
readonly rule: io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
30924
31066
|
readonly keywords: io.flow.internal.v0.models.RestrictionKeywords;
|
|
30925
31067
|
readonly status: io.flow.internal.v0.enums.RestrictionStatus;
|
|
31068
|
+
readonly cause_rule_id?: string;
|
|
30926
31069
|
readonly created_at: string;
|
|
30927
31070
|
readonly updated_at: string;
|
|
30928
31071
|
readonly updated_by?: io.flow.common.v0.models.User;
|
|
@@ -30960,6 +31103,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30960
31103
|
readonly id: string;
|
|
30961
31104
|
readonly rule: io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
30962
31105
|
readonly status: io.flow.internal.v0.enums.RestrictionStatus;
|
|
31106
|
+
readonly cause_rule_id?: string;
|
|
30963
31107
|
readonly keywords: io.flow.internal.v0.models.RestrictionKeywords;
|
|
30964
31108
|
readonly date?: string;
|
|
30965
31109
|
readonly updated_by?: io.flow.common.v0.models.User;
|
|
@@ -31291,6 +31435,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
31291
31435
|
readonly requested_by: string;
|
|
31292
31436
|
}
|
|
31293
31437
|
|
|
31438
|
+
interface ScheduledPayment {
|
|
31439
|
+
readonly payment: io.flow.internal.v0.models.ReportPayment;
|
|
31440
|
+
readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
31441
|
+
readonly account: io.flow.internal.v0.models.ReportAccount;
|
|
31442
|
+
readonly owner: io.flow.internal.v0.models.ReportOwner;
|
|
31443
|
+
readonly description: string;
|
|
31444
|
+
}
|
|
31445
|
+
|
|
31294
31446
|
interface Screen {
|
|
31295
31447
|
readonly id: string;
|
|
31296
31448
|
readonly q: string;
|
|
@@ -31306,6 +31458,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
31306
31458
|
readonly country?: string;
|
|
31307
31459
|
}
|
|
31308
31460
|
|
|
31461
|
+
interface ScreeningStatusChange {
|
|
31462
|
+
readonly id: string;
|
|
31463
|
+
readonly previous_status?: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
31464
|
+
readonly status: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
31465
|
+
readonly reason?: string;
|
|
31466
|
+
readonly status_set_at: string;
|
|
31467
|
+
}
|
|
31468
|
+
|
|
31469
|
+
interface ScreeningStatusChangeDeleted {
|
|
31470
|
+
readonly discriminator: 'screening_status_change_deleted';
|
|
31471
|
+
readonly event_id: string;
|
|
31472
|
+
readonly timestamp: string;
|
|
31473
|
+
readonly organization: string;
|
|
31474
|
+
readonly id: string;
|
|
31475
|
+
}
|
|
31476
|
+
|
|
31477
|
+
interface ScreeningStatusChangeUpserted {
|
|
31478
|
+
readonly discriminator: 'screening_status_change_upserted';
|
|
31479
|
+
readonly event_id: string;
|
|
31480
|
+
readonly timestamp: string;
|
|
31481
|
+
readonly organization: string;
|
|
31482
|
+
readonly screening_status_change: io.flow.internal.v0.models.ScreeningStatusChange;
|
|
31483
|
+
}
|
|
31484
|
+
|
|
31309
31485
|
interface SearchAuthorization {
|
|
31310
31486
|
readonly discriminator: 'search_authorization';
|
|
31311
31487
|
readonly result: io.flow.payment.v0.models.AuthorizationResult;
|
|
@@ -31793,6 +31969,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
31793
31969
|
|
|
31794
31970
|
interface ShopifyOrderDestinationForm {
|
|
31795
31971
|
readonly destination: io.flow.common.v0.models.Address;
|
|
31972
|
+
readonly order_note?: string;
|
|
31796
31973
|
}
|
|
31797
31974
|
|
|
31798
31975
|
interface ShopifyOrderDetail {
|
|
@@ -32558,6 +32735,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
32558
32735
|
readonly item: io.flow.internal.v0.models.SvitlanaItem;
|
|
32559
32736
|
}
|
|
32560
32737
|
|
|
32738
|
+
interface SvitlanaTest {
|
|
32739
|
+
readonly name: string;
|
|
32740
|
+
}
|
|
32741
|
+
|
|
32742
|
+
interface TamItem {
|
|
32743
|
+
readonly id: string;
|
|
32744
|
+
readonly number: string;
|
|
32745
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
32746
|
+
readonly description?: string;
|
|
32747
|
+
readonly type: io.flow.internal.v0.enums.TamItemType;
|
|
32748
|
+
readonly added_on: string;
|
|
32749
|
+
}
|
|
32750
|
+
|
|
32751
|
+
interface TamItemForm {
|
|
32752
|
+
readonly number: string;
|
|
32753
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
32754
|
+
readonly description?: string;
|
|
32755
|
+
readonly type: io.flow.internal.v0.enums.TamItemType;
|
|
32756
|
+
}
|
|
32757
|
+
|
|
32561
32758
|
interface TariffCodeDuty {
|
|
32562
32759
|
readonly tariff_code: string;
|
|
32563
32760
|
readonly duties: Record<string, io.flow.internal.v0.models.Duties>;
|
|
@@ -32814,6 +33011,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
32814
33011
|
readonly timezone: string;
|
|
32815
33012
|
}
|
|
32816
33013
|
|
|
33014
|
+
interface TrackingDebugLabel {
|
|
33015
|
+
readonly in_transit_location?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
33016
|
+
readonly delivery_location?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
33017
|
+
readonly events: io.flow.internal.v0.models.TrackingDebugLabelEvent[];
|
|
33018
|
+
}
|
|
33019
|
+
|
|
33020
|
+
interface TrackingDebugLabelEvent {
|
|
33021
|
+
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
33022
|
+
readonly raw_carrier_event_code?: string;
|
|
33023
|
+
readonly location?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
33024
|
+
}
|
|
33025
|
+
|
|
33026
|
+
interface TrackingDebugLabelLocation {
|
|
33027
|
+
readonly country: string;
|
|
33028
|
+
}
|
|
33029
|
+
|
|
32817
33030
|
interface TrackingDeleted {
|
|
32818
33031
|
readonly discriminator: 'tracking_deleted';
|
|
32819
33032
|
readonly event_id: string;
|
|
@@ -33671,6 +33884,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
33671
33884
|
io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData;
|
|
33672
33885
|
type ComplianceForm =
|
|
33673
33886
|
io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm;
|
|
33887
|
+
type ConsoleLabelValidationForm =
|
|
33888
|
+
| io.flow.internal.v0.models.ConsoleLabelRequestForm
|
|
33889
|
+
| io.flow.internal.v0.models.ConsoleMarkUnresolvableForm;
|
|
33674
33890
|
type ContentItem =
|
|
33675
33891
|
| io.flow.internal.v0.models.Dict
|
|
33676
33892
|
| io.flow.internal.v0.models.Href
|
|
@@ -33983,6 +34199,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
33983
34199
|
| io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted
|
|
33984
34200
|
| io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted
|
|
33985
34201
|
| io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted
|
|
34202
|
+
| io.flow.internal.v0.models.ScreeningStatusChangeUpserted
|
|
34203
|
+
| io.flow.internal.v0.models.ScreeningStatusChangeDeleted
|
|
33986
34204
|
| io.flow.internal.v0.models.ShopifyShopUpserted
|
|
33987
34205
|
| io.flow.internal.v0.models.ShopifyShopDeleted
|
|
33988
34206
|
| io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted
|
|
@@ -34516,6 +34734,16 @@ export type BankPaymentStatusCode =
|
|
|
34516
34734
|
io.flow.internal.v0.enums.BankPaymentStatusCode;
|
|
34517
34735
|
export type BankPaymentStatusForm =
|
|
34518
34736
|
io.flow.internal.v0.models.BankPaymentStatusForm;
|
|
34737
|
+
export type BankPaymentStatusImport =
|
|
34738
|
+
io.flow.internal.v0.models.BankPaymentStatusImport;
|
|
34739
|
+
export type BankPaymentStatusImportForm =
|
|
34740
|
+
io.flow.internal.v0.models.BankPaymentStatusImportForm;
|
|
34741
|
+
export type BankPaymentStatusImportResult =
|
|
34742
|
+
io.flow.internal.v0.models.BankPaymentStatusImportResult;
|
|
34743
|
+
export type BankPaymentStatusSentImportForm =
|
|
34744
|
+
io.flow.internal.v0.models.BankPaymentStatusSentImportForm;
|
|
34745
|
+
export type BankPaymentStatusSingleForm =
|
|
34746
|
+
io.flow.internal.v0.models.BankPaymentStatusSingleForm;
|
|
34519
34747
|
export type BankPaymentUpserted =
|
|
34520
34748
|
io.flow.internal.v0.models.BankPaymentUpserted;
|
|
34521
34749
|
export type BankPaymentUpsertedV2 =
|
|
@@ -35961,6 +36189,12 @@ export type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
|
35961
36189
|
export type ComplianceForm = io.flow.internal.v0.unions.ComplianceForm;
|
|
35962
36190
|
export type ComplianceType = io.flow.internal.v0.enums.ComplianceType;
|
|
35963
36191
|
export type Components = io.flow.internal.v0.models.Components;
|
|
36192
|
+
export type ConsoleLabelRequestForm =
|
|
36193
|
+
io.flow.internal.v0.models.ConsoleLabelRequestForm;
|
|
36194
|
+
export type ConsoleLabelValidationForm =
|
|
36195
|
+
io.flow.internal.v0.unions.ConsoleLabelValidationForm;
|
|
36196
|
+
export type ConsoleMarkUnresolvableForm =
|
|
36197
|
+
io.flow.internal.v0.models.ConsoleMarkUnresolvableForm;
|
|
35964
36198
|
export type ConsumerOptinActivity =
|
|
35965
36199
|
io.flow.internal.v0.models.ConsumerOptinActivity;
|
|
35966
36200
|
export type ContentElementType = io.flow.internal.v0.enums.ContentElementType;
|
|
@@ -36786,12 +37020,6 @@ export type LabelCreationRequestForm =
|
|
|
36786
37020
|
io.flow.internal.v0.models.LabelCreationRequestForm;
|
|
36787
37021
|
export type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
|
|
36788
37022
|
export type LabelDestination = io.flow.internal.v0.models.LabelDestination;
|
|
36789
|
-
export type LabelGenerationAddressFailureStatus =
|
|
36790
|
-
io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
36791
|
-
export type LabelGenerationAddressFailureStatusUpdateForm =
|
|
36792
|
-
io.flow.internal.v0.models.LabelGenerationAddressFailureStatusUpdateForm;
|
|
36793
|
-
export type LabelGenerationAddressFailures =
|
|
36794
|
-
io.flow.internal.v0.models.LabelGenerationAddressFailures;
|
|
36795
37023
|
export type LabelGenerationSettings =
|
|
36796
37024
|
io.flow.internal.v0.models.LabelGenerationSettings;
|
|
36797
37025
|
export type LabelGenerationSettingsDeleted =
|
|
@@ -37119,6 +37347,10 @@ export type OptinPromptUpserted =
|
|
|
37119
37347
|
export type OrderAction = io.flow.internal.v0.enums.OrderAction;
|
|
37120
37348
|
export type OrderActionForm = io.flow.internal.v0.unions.OrderActionForm;
|
|
37121
37349
|
export type OrderActionability = io.flow.internal.v0.models.OrderActionability;
|
|
37350
|
+
export type OrderAddressValidation =
|
|
37351
|
+
io.flow.internal.v0.models.OrderAddressValidation;
|
|
37352
|
+
export type OrderAddressValidationStatus =
|
|
37353
|
+
io.flow.internal.v0.enums.OrderAddressValidationStatus;
|
|
37122
37354
|
export type OrderAttribute = io.flow.internal.v0.models.OrderAttribute;
|
|
37123
37355
|
export type OrderAttributeDeleted =
|
|
37124
37356
|
io.flow.internal.v0.models.OrderAttributeDeleted;
|
|
@@ -37184,8 +37416,13 @@ export type OrderTransactionType =
|
|
|
37184
37416
|
io.flow.internal.v0.enums.OrderTransactionType;
|
|
37185
37417
|
export type OrderTransactionUpserted =
|
|
37186
37418
|
io.flow.internal.v0.models.OrderTransactionUpserted;
|
|
37419
|
+
export type OrderValidation = io.flow.internal.v0.models.OrderValidation;
|
|
37420
|
+
export type OrderValidationAttempt =
|
|
37421
|
+
io.flow.internal.v0.models.OrderValidationAttempt;
|
|
37187
37422
|
export type OrderValidationError =
|
|
37188
37423
|
io.flow.internal.v0.models.OrderValidationError;
|
|
37424
|
+
export type OrderValidationStatus =
|
|
37425
|
+
io.flow.internal.v0.enums.OrderValidationStatus;
|
|
37189
37426
|
export type OrganizationAccount =
|
|
37190
37427
|
io.flow.internal.v0.models.OrganizationAccount;
|
|
37191
37428
|
export type OrganizationAccountDeleted =
|
|
@@ -37617,8 +37854,11 @@ export type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
|
37617
37854
|
export type Report = io.flow.internal.v0.models.Report;
|
|
37618
37855
|
export type ReportAccount = io.flow.internal.v0.models.ReportAccount;
|
|
37619
37856
|
export type ReportBankAccount = io.flow.internal.v0.models.ReportBankAccount;
|
|
37857
|
+
export type ReportBankAccountCleartext =
|
|
37858
|
+
io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
37620
37859
|
export type ReportForm = io.flow.internal.v0.models.ReportForm;
|
|
37621
37860
|
export type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
37861
|
+
export type ReportOwner = io.flow.internal.v0.models.ReportOwner;
|
|
37622
37862
|
export type ReportPayment = io.flow.internal.v0.models.ReportPayment;
|
|
37623
37863
|
export type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
|
|
37624
37864
|
export type ReportStatus = io.flow.internal.v0.enums.ReportStatus;
|
|
@@ -37773,9 +38013,16 @@ export type SalesRecordUpserted =
|
|
|
37773
38013
|
io.flow.internal.v0.models.SalesRecordUpserted;
|
|
37774
38014
|
export type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
37775
38015
|
export type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
38016
|
+
export type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
37776
38017
|
export type Scope = io.flow.internal.v0.enums.Scope;
|
|
37777
38018
|
export type Screen = io.flow.internal.v0.models.Screen;
|
|
37778
38019
|
export type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
38020
|
+
export type ScreeningStatusChange =
|
|
38021
|
+
io.flow.internal.v0.models.ScreeningStatusChange;
|
|
38022
|
+
export type ScreeningStatusChangeDeleted =
|
|
38023
|
+
io.flow.internal.v0.models.ScreeningStatusChangeDeleted;
|
|
38024
|
+
export type ScreeningStatusChangeUpserted =
|
|
38025
|
+
io.flow.internal.v0.models.ScreeningStatusChangeUpserted;
|
|
37779
38026
|
export type SearchAuthorization =
|
|
37780
38027
|
io.flow.internal.v0.models.SearchAuthorization;
|
|
37781
38028
|
export type SearchCustomerSummary =
|
|
@@ -38137,7 +38384,11 @@ export type SvitlanaItemDeleted =
|
|
|
38137
38384
|
export type SvitlanaItemForm = io.flow.internal.v0.models.SvitlanaItemForm;
|
|
38138
38385
|
export type SvitlanaItemUpserted =
|
|
38139
38386
|
io.flow.internal.v0.models.SvitlanaItemUpserted;
|
|
38387
|
+
export type SvitlanaTest = io.flow.internal.v0.models.SvitlanaTest;
|
|
38140
38388
|
export type SvitlanaType = io.flow.internal.v0.enums.SvitlanaType;
|
|
38389
|
+
export type TamItem = io.flow.internal.v0.models.TamItem;
|
|
38390
|
+
export type TamItemForm = io.flow.internal.v0.models.TamItemForm;
|
|
38391
|
+
export type TamItemType = io.flow.internal.v0.enums.TamItemType;
|
|
38141
38392
|
export type TariffCodeDuty = io.flow.internal.v0.models.TariffCodeDuty;
|
|
38142
38393
|
export type TariffCodesExport = io.flow.internal.v0.models.TariffCodesExport;
|
|
38143
38394
|
export type TariffEligibility = io.flow.internal.v0.models.TariffEligibility;
|
|
@@ -38205,6 +38456,11 @@ export type TimeToClassifyUpserted =
|
|
|
38205
38456
|
export type TimeWithTimezone = io.flow.internal.v0.models.TimeWithTimezone;
|
|
38206
38457
|
export type TimeseriesType = io.flow.internal.v0.enums.TimeseriesType;
|
|
38207
38458
|
export type Tracker = io.flow.internal.v0.unions.Tracker;
|
|
38459
|
+
export type TrackingDebugLabel = io.flow.internal.v0.models.TrackingDebugLabel;
|
|
38460
|
+
export type TrackingDebugLabelEvent =
|
|
38461
|
+
io.flow.internal.v0.models.TrackingDebugLabelEvent;
|
|
38462
|
+
export type TrackingDebugLabelLocation =
|
|
38463
|
+
io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
38208
38464
|
export type TrackingDeleted = io.flow.internal.v0.models.TrackingDeleted;
|
|
38209
38465
|
export type TrackingEvent = io.flow.internal.v0.models.TrackingEvent;
|
|
38210
38466
|
export type TrackingIntegrationType =
|