@flowio/types 11.24.85 → 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 +232 -29
- package/dist/api.d.ts +8 -5
- package/package.json +2 -2
- package/src/api-internal.ts +292 -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 {
|
|
@@ -15092,6 +15118,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
15092
15118
|
readonly sent_on?: string;
|
|
15093
15119
|
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
15094
15120
|
readonly expected_delivery_by?: string;
|
|
15121
|
+
readonly attributes?: Record<string, string>;
|
|
15095
15122
|
readonly total: io.flow.common.v0.models.Price;
|
|
15096
15123
|
}
|
|
15097
15124
|
|
|
@@ -15103,6 +15130,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
15103
15130
|
readonly amount: number;
|
|
15104
15131
|
readonly currency: string;
|
|
15105
15132
|
readonly transfer_transaction_ids: string[];
|
|
15133
|
+
readonly attributes?: Record<string, string>;
|
|
15106
15134
|
}
|
|
15107
15135
|
|
|
15108
15136
|
interface BankPaymentStatusForm {
|
|
@@ -15110,6 +15138,33 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
15110
15138
|
readonly failure_reason?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
15111
15139
|
}
|
|
15112
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
|
+
|
|
15113
15168
|
interface BillingAuthorizationReference {
|
|
15114
15169
|
readonly id: string;
|
|
15115
15170
|
}
|
|
@@ -16018,7 +16073,8 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
16018
16073
|
| 'fx'
|
|
16019
16074
|
| 'processing'
|
|
16020
16075
|
| 'rate_lock'
|
|
16021
|
-
| 'transfer'
|
|
16076
|
+
| 'transfer'
|
|
16077
|
+
| 'negative_balance_guarantee';
|
|
16022
16078
|
type PayoutAttachmentType = 'transactions';
|
|
16023
16079
|
type PayoutStatusFailureCode =
|
|
16024
16080
|
| 'invalid_account_number'
|
|
@@ -18299,10 +18355,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18299
18355
|
| 'queued_other_unprocessed_count'
|
|
18300
18356
|
| 'queued_record_snooze_count'
|
|
18301
18357
|
| 'queued_record_snooze_ending_in_48_hours_count'
|
|
18302
|
-
| 'statements_no_payout_count'
|
|
18303
|
-
| 'statements_no_payout_total'
|
|
18304
|
-
| 'statements_pending_payout_count'
|
|
18305
|
-
| 'statements_pending_payout_total'
|
|
18306
18358
|
| 'payouts_scheduled_count'
|
|
18307
18359
|
| 'payouts_scheduled_total'
|
|
18308
18360
|
| 'payouts_sent_count'
|
|
@@ -18316,8 +18368,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18316
18368
|
| 'percentage_billable_label_transactions_with_carrier_charge_30_days'
|
|
18317
18369
|
| 'percentage_billable_label_transactions_with_carrier_charge_60_days'
|
|
18318
18370
|
| 'percentage_billable_label_transactions_with_carrier_charge_90_days'
|
|
18371
|
+
| 'percentage_bank_account_inserts'
|
|
18319
18372
|
| 'percentage_bank_account_updates'
|
|
18320
18373
|
| 'percentage_bank_account_unique_updates'
|
|
18374
|
+
| 'percentage_bank_account_deletes'
|
|
18321
18375
|
| 'negative_balance_number_accounts'
|
|
18322
18376
|
| 'negative_balance_number_accounts_with_order_in_past_30_days'
|
|
18323
18377
|
| 'negative_balance_number_accounts_without_order_in_past_30_days'
|
|
@@ -18420,7 +18474,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18420
18474
|
| 'payment_authorization_failed'
|
|
18421
18475
|
| 'unsupported_subsidized_order'
|
|
18422
18476
|
| 'unsupported_virtual_goods'
|
|
18423
|
-
| 'non_matching_currencies'
|
|
18477
|
+
| 'non_matching_currencies'
|
|
18478
|
+
| 'unsupported_order_edit';
|
|
18424
18479
|
type ChannelOrderAcceptanceStatus =
|
|
18425
18480
|
| 'accepted'
|
|
18426
18481
|
| 'rejected'
|
|
@@ -19077,6 +19132,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19077
19132
|
| 'restriction_organization_status_deleted'
|
|
19078
19133
|
| 'organization_restriction_status_upserted'
|
|
19079
19134
|
| 'organization_restriction_status_deleted'
|
|
19135
|
+
| 'screening_status_change_upserted'
|
|
19136
|
+
| 'screening_status_change_deleted'
|
|
19080
19137
|
| 'shopify_shop_upserted'
|
|
19081
19138
|
| 'shopify_shop_deleted'
|
|
19082
19139
|
| 'shopify_experience_short_id_upserted'
|
|
@@ -19181,10 +19238,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19181
19238
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
19182
19239
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
19183
19240
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
19184
|
-
type LabelGenerationAddressFailureStatus =
|
|
19185
|
-
| 'in_review'
|
|
19186
|
-
| 'resolved'
|
|
19187
|
-
| 'unresolved';
|
|
19188
19241
|
type LabelRequestErrorHandlingResponsibility =
|
|
19189
19242
|
| 'merchant'
|
|
19190
19243
|
| 'merchant_integration'
|
|
@@ -19336,6 +19389,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19336
19389
|
| 'fraud_review_decline'
|
|
19337
19390
|
| 'payment_fully_authorize'
|
|
19338
19391
|
| 'payment_fully_capture';
|
|
19392
|
+
type OrderAddressValidationStatus = 'success' | 'failed';
|
|
19339
19393
|
type OrderAttributeIntent = 'discount_code';
|
|
19340
19394
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
19341
19395
|
type OrderChargeTrigger =
|
|
@@ -19344,6 +19398,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19344
19398
|
| 'shipment_exhausted';
|
|
19345
19399
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
19346
19400
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
19401
|
+
type OrderValidationStatus = 'success' | 'failed' | 'unresolvable';
|
|
19347
19402
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
19348
19403
|
type OrganizationMetricType =
|
|
19349
19404
|
| 'organization_restriction_snapshot'
|
|
@@ -19442,7 +19497,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19442
19497
|
type ReportType =
|
|
19443
19498
|
| 'sales_record'
|
|
19444
19499
|
| 'trueup_overview'
|
|
19445
|
-
| 'non_channel_payment_bank_account'
|
|
19500
|
+
| 'non_channel_payment_bank_account'
|
|
19501
|
+
| 'scheduled_payment';
|
|
19446
19502
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
19447
19503
|
type ReportingScheme =
|
|
19448
19504
|
| 'immediate_reporting_to_tax_authority'
|
|
@@ -19506,6 +19562,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19506
19562
|
| 'flow_shop'
|
|
19507
19563
|
| 'online_payment'
|
|
19508
19564
|
| 'order_update'
|
|
19565
|
+
| 'order_edit'
|
|
19509
19566
|
| 'product_restriction_result'
|
|
19510
19567
|
| 'product_sync'
|
|
19511
19568
|
| 'webhook_registrations';
|
|
@@ -19558,6 +19615,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19558
19615
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
19559
19616
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
19560
19617
|
type SvitlanaType = 'physical' | 'digital';
|
|
19618
|
+
type TamItemType = 'physical' | 'digital';
|
|
19561
19619
|
type TariffEligibilityType = 'rex';
|
|
19562
19620
|
type TaskProcessorKey =
|
|
19563
19621
|
| 'order_messenger'
|
|
@@ -20378,6 +20436,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20378
20436
|
readonly sent_on?: string;
|
|
20379
20437
|
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
20380
20438
|
readonly expected_delivery_by?: string;
|
|
20439
|
+
readonly attributes?: Record<string, string>;
|
|
20381
20440
|
readonly total: io.flow.common.v0.models.Price;
|
|
20382
20441
|
}
|
|
20383
20442
|
|
|
@@ -20404,6 +20463,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20404
20463
|
readonly amount: number;
|
|
20405
20464
|
readonly currency: string;
|
|
20406
20465
|
readonly transfer_transaction_ids: string[];
|
|
20466
|
+
readonly attributes?: Record<string, string>;
|
|
20407
20467
|
}
|
|
20408
20468
|
|
|
20409
20469
|
interface BankPaymentStatusForm {
|
|
@@ -20411,6 +20471,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20411
20471
|
readonly failure_reason?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
20412
20472
|
}
|
|
20413
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
|
+
|
|
20414
20501
|
interface BankPaymentUpserted {
|
|
20415
20502
|
readonly discriminator: 'bank_payment_upserted';
|
|
20416
20503
|
readonly event_id: string;
|
|
@@ -21039,12 +21126,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21039
21126
|
interface CarrierChargeFile {
|
|
21040
21127
|
readonly id: string;
|
|
21041
21128
|
readonly url: string;
|
|
21129
|
+
readonly attributes?: Record<string, string>;
|
|
21042
21130
|
readonly created_at: string;
|
|
21043
21131
|
readonly result?: io.flow.internal.v0.models.CarrierChargeFileResult;
|
|
21044
21132
|
}
|
|
21045
21133
|
|
|
21046
21134
|
interface CarrierChargeFileForm {
|
|
21047
21135
|
readonly url: string;
|
|
21136
|
+
readonly attributes?: Record<string, string>;
|
|
21048
21137
|
}
|
|
21049
21138
|
|
|
21050
21139
|
interface CarrierChargeFileResult {
|
|
@@ -23985,6 +24074,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23985
24074
|
readonly insurance: io.flow.common.v0.models.Price;
|
|
23986
24075
|
}
|
|
23987
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
|
+
|
|
23988
24091
|
interface ConsumerOptinActivity {
|
|
23989
24092
|
readonly optin_attribute_key: string;
|
|
23990
24093
|
readonly optin_region: string;
|
|
@@ -24969,6 +25072,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24969
25072
|
interface ErpPriorityVendorForm {
|
|
24970
25073
|
readonly acc_des?: string;
|
|
24971
25074
|
readonly tax_code?: string;
|
|
25075
|
+
readonly tax_code_2?: string;
|
|
24972
25076
|
readonly vat_flag?: string;
|
|
24973
25077
|
readonly country_name?: string;
|
|
24974
25078
|
readonly w_tax_percent?: string;
|
|
@@ -25005,6 +25109,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25005
25109
|
readonly eacc_des?: string;
|
|
25006
25110
|
readonly acng_des?: string;
|
|
25007
25111
|
readonly branch_des?: string;
|
|
25112
|
+
readonly debit_entry_code?: string;
|
|
25113
|
+
readonly credit_entry_code?: string;
|
|
25008
25114
|
}
|
|
25009
25115
|
|
|
25010
25116
|
interface ErpVendor {
|
|
@@ -27523,6 +27629,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27523
27629
|
interface ItemSummary {
|
|
27524
27630
|
readonly number: string;
|
|
27525
27631
|
readonly fulfillment_method: io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
27632
|
+
readonly country_of_origin?: string;
|
|
27633
|
+
readonly inferred?: boolean;
|
|
27526
27634
|
}
|
|
27527
27635
|
|
|
27528
27636
|
interface ItemValuesForm {
|
|
@@ -27629,20 +27737,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27629
27737
|
readonly postal?: string;
|
|
27630
27738
|
}
|
|
27631
27739
|
|
|
27632
|
-
interface LabelGenerationAddressFailureStatusUpdateForm {
|
|
27633
|
-
readonly status: io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
27634
|
-
}
|
|
27635
|
-
|
|
27636
|
-
interface LabelGenerationAddressFailures {
|
|
27637
|
-
readonly id: string;
|
|
27638
|
-
readonly organization_id: string;
|
|
27639
|
-
readonly status: io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
27640
|
-
readonly order_number: string;
|
|
27641
|
-
readonly order_submitted_at: string;
|
|
27642
|
-
readonly carrier_id: string;
|
|
27643
|
-
readonly destination_errors: io.flow.internal.v0.models.DestinationError[];
|
|
27644
|
-
}
|
|
27645
|
-
|
|
27646
27740
|
interface LabelGenerationSettings {
|
|
27647
27741
|
readonly id: string;
|
|
27648
27742
|
readonly item_identifier?: string;
|
|
@@ -28812,6 +28906,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28812
28906
|
readonly lines: io.flow.internal.v0.models.LineActionQuantities[];
|
|
28813
28907
|
}
|
|
28814
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
|
+
|
|
28815
28923
|
interface OrderAttribute {
|
|
28816
28924
|
readonly id: string;
|
|
28817
28925
|
readonly key: string;
|
|
@@ -29058,6 +29166,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29058
29166
|
readonly order_transaction: io.flow.internal.v0.models.OrderTransaction;
|
|
29059
29167
|
}
|
|
29060
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
|
+
|
|
29061
29190
|
interface OrderValidationError {
|
|
29062
29191
|
readonly message: string;
|
|
29063
29192
|
readonly reason: io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
@@ -30654,6 +30783,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30654
30783
|
|
|
30655
30784
|
interface ReportAccount {
|
|
30656
30785
|
readonly id: string;
|
|
30786
|
+
readonly currency: string;
|
|
30657
30787
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
30658
30788
|
}
|
|
30659
30789
|
|
|
@@ -30662,14 +30792,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30662
30792
|
readonly last4?: string;
|
|
30663
30793
|
}
|
|
30664
30794
|
|
|
30795
|
+
interface ReportBankAccountCleartext {
|
|
30796
|
+
readonly type: string;
|
|
30797
|
+
readonly routing_number: string;
|
|
30798
|
+
readonly account_number: string;
|
|
30799
|
+
}
|
|
30800
|
+
|
|
30665
30801
|
interface ReportForm {
|
|
30666
30802
|
readonly from: string;
|
|
30667
30803
|
readonly to: string;
|
|
30668
30804
|
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
30669
30805
|
}
|
|
30670
30806
|
|
|
30807
|
+
interface ReportOwner {
|
|
30808
|
+
readonly name: string;
|
|
30809
|
+
}
|
|
30810
|
+
|
|
30671
30811
|
interface ReportPayment {
|
|
30672
30812
|
readonly id: string;
|
|
30813
|
+
readonly amount: number;
|
|
30673
30814
|
readonly created_at: string;
|
|
30674
30815
|
}
|
|
30675
30816
|
|
|
@@ -30924,6 +31065,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30924
31065
|
readonly rule: io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
30925
31066
|
readonly keywords: io.flow.internal.v0.models.RestrictionKeywords;
|
|
30926
31067
|
readonly status: io.flow.internal.v0.enums.RestrictionStatus;
|
|
31068
|
+
readonly cause_rule_id?: string;
|
|
30927
31069
|
readonly created_at: string;
|
|
30928
31070
|
readonly updated_at: string;
|
|
30929
31071
|
readonly updated_by?: io.flow.common.v0.models.User;
|
|
@@ -30961,6 +31103,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30961
31103
|
readonly id: string;
|
|
30962
31104
|
readonly rule: io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
30963
31105
|
readonly status: io.flow.internal.v0.enums.RestrictionStatus;
|
|
31106
|
+
readonly cause_rule_id?: string;
|
|
30964
31107
|
readonly keywords: io.flow.internal.v0.models.RestrictionKeywords;
|
|
30965
31108
|
readonly date?: string;
|
|
30966
31109
|
readonly updated_by?: io.flow.common.v0.models.User;
|
|
@@ -31292,6 +31435,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
31292
31435
|
readonly requested_by: string;
|
|
31293
31436
|
}
|
|
31294
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
|
+
|
|
31295
31446
|
interface Screen {
|
|
31296
31447
|
readonly id: string;
|
|
31297
31448
|
readonly q: string;
|
|
@@ -31307,6 +31458,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
31307
31458
|
readonly country?: string;
|
|
31308
31459
|
}
|
|
31309
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
|
+
|
|
31310
31485
|
interface SearchAuthorization {
|
|
31311
31486
|
readonly discriminator: 'search_authorization';
|
|
31312
31487
|
readonly result: io.flow.payment.v0.models.AuthorizationResult;
|
|
@@ -31794,6 +31969,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
31794
31969
|
|
|
31795
31970
|
interface ShopifyOrderDestinationForm {
|
|
31796
31971
|
readonly destination: io.flow.common.v0.models.Address;
|
|
31972
|
+
readonly order_note?: string;
|
|
31797
31973
|
}
|
|
31798
31974
|
|
|
31799
31975
|
interface ShopifyOrderDetail {
|
|
@@ -32559,6 +32735,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
32559
32735
|
readonly item: io.flow.internal.v0.models.SvitlanaItem;
|
|
32560
32736
|
}
|
|
32561
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
|
+
|
|
32562
32758
|
interface TariffCodeDuty {
|
|
32563
32759
|
readonly tariff_code: string;
|
|
32564
32760
|
readonly duties: Record<string, io.flow.internal.v0.models.Duties>;
|
|
@@ -32815,6 +33011,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
32815
33011
|
readonly timezone: string;
|
|
32816
33012
|
}
|
|
32817
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
|
+
|
|
32818
33030
|
interface TrackingDeleted {
|
|
32819
33031
|
readonly discriminator: 'tracking_deleted';
|
|
32820
33032
|
readonly event_id: string;
|
|
@@ -33672,6 +33884,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
33672
33884
|
io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData;
|
|
33673
33885
|
type ComplianceForm =
|
|
33674
33886
|
io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm;
|
|
33887
|
+
type ConsoleLabelValidationForm =
|
|
33888
|
+
| io.flow.internal.v0.models.ConsoleLabelRequestForm
|
|
33889
|
+
| io.flow.internal.v0.models.ConsoleMarkUnresolvableForm;
|
|
33675
33890
|
type ContentItem =
|
|
33676
33891
|
| io.flow.internal.v0.models.Dict
|
|
33677
33892
|
| io.flow.internal.v0.models.Href
|
|
@@ -33984,6 +34199,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
33984
34199
|
| io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted
|
|
33985
34200
|
| io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted
|
|
33986
34201
|
| io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted
|
|
34202
|
+
| io.flow.internal.v0.models.ScreeningStatusChangeUpserted
|
|
34203
|
+
| io.flow.internal.v0.models.ScreeningStatusChangeDeleted
|
|
33987
34204
|
| io.flow.internal.v0.models.ShopifyShopUpserted
|
|
33988
34205
|
| io.flow.internal.v0.models.ShopifyShopDeleted
|
|
33989
34206
|
| io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted
|
|
@@ -34517,6 +34734,16 @@ export type BankPaymentStatusCode =
|
|
|
34517
34734
|
io.flow.internal.v0.enums.BankPaymentStatusCode;
|
|
34518
34735
|
export type BankPaymentStatusForm =
|
|
34519
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;
|
|
34520
34747
|
export type BankPaymentUpserted =
|
|
34521
34748
|
io.flow.internal.v0.models.BankPaymentUpserted;
|
|
34522
34749
|
export type BankPaymentUpsertedV2 =
|
|
@@ -35962,6 +36189,12 @@ export type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
|
35962
36189
|
export type ComplianceForm = io.flow.internal.v0.unions.ComplianceForm;
|
|
35963
36190
|
export type ComplianceType = io.flow.internal.v0.enums.ComplianceType;
|
|
35964
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;
|
|
35965
36198
|
export type ConsumerOptinActivity =
|
|
35966
36199
|
io.flow.internal.v0.models.ConsumerOptinActivity;
|
|
35967
36200
|
export type ContentElementType = io.flow.internal.v0.enums.ContentElementType;
|
|
@@ -36787,12 +37020,6 @@ export type LabelCreationRequestForm =
|
|
|
36787
37020
|
io.flow.internal.v0.models.LabelCreationRequestForm;
|
|
36788
37021
|
export type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
|
|
36789
37022
|
export type LabelDestination = io.flow.internal.v0.models.LabelDestination;
|
|
36790
|
-
export type LabelGenerationAddressFailureStatus =
|
|
36791
|
-
io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
36792
|
-
export type LabelGenerationAddressFailureStatusUpdateForm =
|
|
36793
|
-
io.flow.internal.v0.models.LabelGenerationAddressFailureStatusUpdateForm;
|
|
36794
|
-
export type LabelGenerationAddressFailures =
|
|
36795
|
-
io.flow.internal.v0.models.LabelGenerationAddressFailures;
|
|
36796
37023
|
export type LabelGenerationSettings =
|
|
36797
37024
|
io.flow.internal.v0.models.LabelGenerationSettings;
|
|
36798
37025
|
export type LabelGenerationSettingsDeleted =
|
|
@@ -37120,6 +37347,10 @@ export type OptinPromptUpserted =
|
|
|
37120
37347
|
export type OrderAction = io.flow.internal.v0.enums.OrderAction;
|
|
37121
37348
|
export type OrderActionForm = io.flow.internal.v0.unions.OrderActionForm;
|
|
37122
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;
|
|
37123
37354
|
export type OrderAttribute = io.flow.internal.v0.models.OrderAttribute;
|
|
37124
37355
|
export type OrderAttributeDeleted =
|
|
37125
37356
|
io.flow.internal.v0.models.OrderAttributeDeleted;
|
|
@@ -37185,8 +37416,13 @@ export type OrderTransactionType =
|
|
|
37185
37416
|
io.flow.internal.v0.enums.OrderTransactionType;
|
|
37186
37417
|
export type OrderTransactionUpserted =
|
|
37187
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;
|
|
37188
37422
|
export type OrderValidationError =
|
|
37189
37423
|
io.flow.internal.v0.models.OrderValidationError;
|
|
37424
|
+
export type OrderValidationStatus =
|
|
37425
|
+
io.flow.internal.v0.enums.OrderValidationStatus;
|
|
37190
37426
|
export type OrganizationAccount =
|
|
37191
37427
|
io.flow.internal.v0.models.OrganizationAccount;
|
|
37192
37428
|
export type OrganizationAccountDeleted =
|
|
@@ -37618,8 +37854,11 @@ export type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
|
37618
37854
|
export type Report = io.flow.internal.v0.models.Report;
|
|
37619
37855
|
export type ReportAccount = io.flow.internal.v0.models.ReportAccount;
|
|
37620
37856
|
export type ReportBankAccount = io.flow.internal.v0.models.ReportBankAccount;
|
|
37857
|
+
export type ReportBankAccountCleartext =
|
|
37858
|
+
io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
37621
37859
|
export type ReportForm = io.flow.internal.v0.models.ReportForm;
|
|
37622
37860
|
export type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
37861
|
+
export type ReportOwner = io.flow.internal.v0.models.ReportOwner;
|
|
37623
37862
|
export type ReportPayment = io.flow.internal.v0.models.ReportPayment;
|
|
37624
37863
|
export type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
|
|
37625
37864
|
export type ReportStatus = io.flow.internal.v0.enums.ReportStatus;
|
|
@@ -37774,9 +38013,16 @@ export type SalesRecordUpserted =
|
|
|
37774
38013
|
io.flow.internal.v0.models.SalesRecordUpserted;
|
|
37775
38014
|
export type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
37776
38015
|
export type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
38016
|
+
export type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
37777
38017
|
export type Scope = io.flow.internal.v0.enums.Scope;
|
|
37778
38018
|
export type Screen = io.flow.internal.v0.models.Screen;
|
|
37779
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;
|
|
37780
38026
|
export type SearchAuthorization =
|
|
37781
38027
|
io.flow.internal.v0.models.SearchAuthorization;
|
|
37782
38028
|
export type SearchCustomerSummary =
|
|
@@ -38138,7 +38384,11 @@ export type SvitlanaItemDeleted =
|
|
|
38138
38384
|
export type SvitlanaItemForm = io.flow.internal.v0.models.SvitlanaItemForm;
|
|
38139
38385
|
export type SvitlanaItemUpserted =
|
|
38140
38386
|
io.flow.internal.v0.models.SvitlanaItemUpserted;
|
|
38387
|
+
export type SvitlanaTest = io.flow.internal.v0.models.SvitlanaTest;
|
|
38141
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;
|
|
38142
38392
|
export type TariffCodeDuty = io.flow.internal.v0.models.TariffCodeDuty;
|
|
38143
38393
|
export type TariffCodesExport = io.flow.internal.v0.models.TariffCodesExport;
|
|
38144
38394
|
export type TariffEligibility = io.flow.internal.v0.models.TariffEligibility;
|
|
@@ -38206,6 +38456,11 @@ export type TimeToClassifyUpserted =
|
|
|
38206
38456
|
export type TimeWithTimezone = io.flow.internal.v0.models.TimeWithTimezone;
|
|
38207
38457
|
export type TimeseriesType = io.flow.internal.v0.enums.TimeseriesType;
|
|
38208
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;
|
|
38209
38464
|
export type TrackingDeleted = io.flow.internal.v0.models.TrackingDeleted;
|
|
38210
38465
|
export type TrackingEvent = io.flow.internal.v0.models.TrackingEvent;
|
|
38211
38466
|
export type TrackingIntegrationType =
|