@flowio/types 11.24.58 → 11.24.60
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 +282 -27
- package/dist/api.d.ts +17 -2
- package/package.json +2 -2
- package/src/api-internal.ts +359 -34
- package/src/api.ts +22 -2
package/src/api-internal.ts
CHANGED
|
@@ -1662,6 +1662,16 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1662
1662
|
readonly viewport: io.flow.payment.v0.enums.ThreedsTwoChallengeViewport;
|
|
1663
1663
|
}
|
|
1664
1664
|
|
|
1665
|
+
interface CardConfirmationSummary {
|
|
1666
|
+
readonly discriminator: 'card_confirmation_summary';
|
|
1667
|
+
readonly type?: io.flow.payment.v0.enums.CardType;
|
|
1668
|
+
readonly funding_type?: string;
|
|
1669
|
+
readonly expiration?: io.flow.payment.v0.models.Expiration;
|
|
1670
|
+
readonly iin?: string;
|
|
1671
|
+
readonly issuer?: io.flow.payment.v0.models.IssuerSummary;
|
|
1672
|
+
readonly last4?: string;
|
|
1673
|
+
}
|
|
1674
|
+
|
|
1665
1675
|
interface CardError {
|
|
1666
1676
|
readonly code: io.flow.payment.v0.enums.CardErrorCode;
|
|
1667
1677
|
readonly messages: string[];
|
|
@@ -2330,7 +2340,9 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
2330
2340
|
| io.flow.payment.v0.models.SelectIssuerOptionActionDetails;
|
|
2331
2341
|
type BrowserActionConfiguration =
|
|
2332
2342
|
io.flow.payment.v0.models.CardBrowserActionConfiguration;
|
|
2333
|
-
type ConfirmationDetails =
|
|
2343
|
+
type ConfirmationDetails =
|
|
2344
|
+
| io.flow.payment.v0.models.DirectDebit
|
|
2345
|
+
| io.flow.payment.v0.models.CardConfirmationSummary;
|
|
2334
2346
|
type ExpandableCard =
|
|
2335
2347
|
| io.flow.payment.v0.models.Card
|
|
2336
2348
|
| io.flow.payment.v0.models.CardReference
|
|
@@ -3519,7 +3531,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3519
3531
|
readonly order_identifier?: string;
|
|
3520
3532
|
readonly fulfillment_key?: string;
|
|
3521
3533
|
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
3522
|
-
readonly updated_at
|
|
3534
|
+
readonly updated_at?: string;
|
|
3523
3535
|
}
|
|
3524
3536
|
|
|
3525
3537
|
interface ShippingNotificationVersion {
|
|
@@ -5082,6 +5094,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5082
5094
|
readonly threeDOfferedResponse?: string;
|
|
5083
5095
|
readonly threeDSVersion?: string;
|
|
5084
5096
|
readonly eci?: string;
|
|
5097
|
+
readonly cavv?: string;
|
|
5085
5098
|
readonly scaExemptionRequested?: string;
|
|
5086
5099
|
readonly paymentMethod?: string;
|
|
5087
5100
|
readonly paymentMethodVariant?: string;
|
|
@@ -5097,6 +5110,9 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5097
5110
|
readonly issuerBin?: string;
|
|
5098
5111
|
readonly cardSummary?: string;
|
|
5099
5112
|
readonly untokenisedCardSummary?: string;
|
|
5113
|
+
readonly expiryDate?: string;
|
|
5114
|
+
readonly cardHolderName?: string;
|
|
5115
|
+
readonly fundingSource?: string;
|
|
5100
5116
|
readonly ownerName?: string;
|
|
5101
5117
|
readonly bankName?: string;
|
|
5102
5118
|
readonly issuerCountry?: string;
|
|
@@ -7651,6 +7667,11 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
7651
7667
|
readonly authorizations: io.flow.payment.gateway.v0.models.PaymentAuthorization[];
|
|
7652
7668
|
}
|
|
7653
7669
|
|
|
7670
|
+
interface PaymentMethodActionCancellation {
|
|
7671
|
+
readonly reason_code?: io.flow.payment.gateway.v0.enums.PaymentFailureCode;
|
|
7672
|
+
readonly data?: any /*object*/;
|
|
7673
|
+
}
|
|
7674
|
+
|
|
7654
7675
|
interface PaymentMethodBrand {
|
|
7655
7676
|
readonly id: string;
|
|
7656
7677
|
readonly name: string;
|
|
@@ -8066,7 +8087,7 @@ declare namespace io.flow.partner.v0.enums {
|
|
|
8066
8087
|
declare namespace io.flow.partner.v0.models {
|
|
8067
8088
|
interface BridgeHub {
|
|
8068
8089
|
readonly hub_code: string;
|
|
8069
|
-
readonly address
|
|
8090
|
+
readonly address: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
8070
8091
|
}
|
|
8071
8092
|
|
|
8072
8093
|
interface BridgeLabelForm {
|
|
@@ -11102,6 +11123,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
11102
11123
|
}
|
|
11103
11124
|
|
|
11104
11125
|
interface CatalogStatistics {
|
|
11126
|
+
readonly id: string;
|
|
11105
11127
|
readonly items: number;
|
|
11106
11128
|
readonly categories: number;
|
|
11107
11129
|
}
|
|
@@ -14189,6 +14211,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14189
14211
|
| 'calculator_organization_settings_deleted'
|
|
14190
14212
|
| 'carrier_account_upserted_v2'
|
|
14191
14213
|
| 'carrier_account_deleted'
|
|
14214
|
+
| 'label_generation_settings_upserted'
|
|
14215
|
+
| 'label_generation_settings_deleted'
|
|
14192
14216
|
| 'catalog_import_request'
|
|
14193
14217
|
| 'exclusion_rule_upserted'
|
|
14194
14218
|
| 'exclusion_rule_deleted'
|
|
@@ -14279,9 +14303,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14279
14303
|
| 'fraud_review_decision_deleted'
|
|
14280
14304
|
| 'fraud_provider_configuration_upserted'
|
|
14281
14305
|
| 'fraud_provider_configuration_deleted'
|
|
14306
|
+
| 'manual_review_rule_upserted'
|
|
14307
|
+
| 'manual_review_rule_deleted'
|
|
14282
14308
|
| 'ftp_file_upserted'
|
|
14283
14309
|
| 'ftp_file_deleted'
|
|
14284
14310
|
| 'ftp_file_to_process_uploaded'
|
|
14311
|
+
| 'center_defaults_upserted'
|
|
14312
|
+
| 'center_defaults_deleted'
|
|
14285
14313
|
| 'pregenerated_request_event'
|
|
14286
14314
|
| 'all_items_export'
|
|
14287
14315
|
| 'harmonized_items_hs6_export'
|
|
@@ -14336,8 +14364,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14336
14364
|
| 'organization_business_entity_upserted'
|
|
14337
14365
|
| 'organization_status_change_upserted'
|
|
14338
14366
|
| 'organization_status_change_deleted'
|
|
14339
|
-
| '
|
|
14340
|
-
| '
|
|
14367
|
+
| 'partner_organization_settings_upserted'
|
|
14368
|
+
| 'partner_organization_settings_deleted'
|
|
14341
14369
|
| 'internal_authorization_upserted'
|
|
14342
14370
|
| 'internal_authorization_deleted'
|
|
14343
14371
|
| 'afterpay_authorization_upserted'
|
|
@@ -14387,6 +14415,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14387
14415
|
| 'organization_restriction_snapshot_deleted'
|
|
14388
14416
|
| 'restriction_organization_status_upserted'
|
|
14389
14417
|
| 'restriction_organization_status_deleted'
|
|
14418
|
+
| 'organization_restriction_status_upserted'
|
|
14419
|
+
| 'organization_restriction_status_deleted'
|
|
14390
14420
|
| 'shopify_shop_upserted'
|
|
14391
14421
|
| 'shopify_shop_deleted'
|
|
14392
14422
|
| 'shopify_experience_short_id_upserted'
|
|
@@ -14395,6 +14425,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14395
14425
|
| 'shopify_markets_order_deleted'
|
|
14396
14426
|
| 'shopify_markets_shop_upserted'
|
|
14397
14427
|
| 'shopify_markets_shop_deleted'
|
|
14428
|
+
| 'shopify_markets_webhook_registration_upserted'
|
|
14429
|
+
| 'shopify_markets_webhook_registration_deleted'
|
|
14398
14430
|
| 'shopify_monitoring_order_monitor_event_upserted'
|
|
14399
14431
|
| 'shopify_monitoring_order_monitor_event_deleted'
|
|
14400
14432
|
| 'shopify_order_fulfillments_snapshot_upserted'
|
|
@@ -14477,6 +14509,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14477
14509
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
14478
14510
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
14479
14511
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
14512
|
+
type LabelInputSource = 'estimate';
|
|
14480
14513
|
type LabelTransactionType =
|
|
14481
14514
|
| 'adjustment'
|
|
14482
14515
|
| 'reversal'
|
|
@@ -14787,6 +14820,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14787
14820
|
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
14788
14821
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
14789
14822
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
14823
|
+
type SurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid';
|
|
14790
14824
|
type TariffEligibilityType = 'rex';
|
|
14791
14825
|
type TaskProcessorKey =
|
|
14792
14826
|
| 'order_messenger'
|
|
@@ -15822,6 +15856,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15822
15856
|
readonly label: io.flow.common.v0.models.Price;
|
|
15823
15857
|
readonly order: io.flow.common.v0.models.Price;
|
|
15824
15858
|
readonly channel_billed: io.flow.common.v0.models.Price;
|
|
15859
|
+
readonly tax: io.flow.common.v0.models.Price;
|
|
15860
|
+
readonly duty: io.flow.common.v0.models.Price;
|
|
15825
15861
|
readonly ending_balance: io.flow.common.v0.models.Price;
|
|
15826
15862
|
}
|
|
15827
15863
|
|
|
@@ -16275,15 +16311,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16275
16311
|
}
|
|
16276
16312
|
|
|
16277
16313
|
interface CenterDefaults {
|
|
16314
|
+
readonly id: string;
|
|
16278
16315
|
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
16279
16316
|
readonly shipping_address_contact: io.flow.common.v0.models.Contact;
|
|
16280
16317
|
}
|
|
16281
16318
|
|
|
16319
|
+
interface CenterDefaultsDeleted {
|
|
16320
|
+
readonly discriminator: 'center_defaults_deleted';
|
|
16321
|
+
readonly event_id: string;
|
|
16322
|
+
readonly timestamp: string;
|
|
16323
|
+
readonly organization: string;
|
|
16324
|
+
readonly id: string;
|
|
16325
|
+
}
|
|
16326
|
+
|
|
16282
16327
|
interface CenterDefaultsForm {
|
|
16283
16328
|
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
16284
16329
|
readonly shipping_address_contact: io.flow.common.v0.models.Contact;
|
|
16285
16330
|
}
|
|
16286
16331
|
|
|
16332
|
+
interface CenterDefaultsUpserted {
|
|
16333
|
+
readonly discriminator: 'center_defaults_upserted';
|
|
16334
|
+
readonly event_id: string;
|
|
16335
|
+
readonly timestamp: string;
|
|
16336
|
+
readonly organization: string;
|
|
16337
|
+
readonly center_defaults: io.flow.internal.v0.models.CenterDefaults;
|
|
16338
|
+
}
|
|
16339
|
+
|
|
16287
16340
|
interface CenterQueryBuilder {
|
|
16288
16341
|
readonly placeholder: string;
|
|
16289
16342
|
}
|
|
@@ -19011,6 +19064,130 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19011
19064
|
readonly signature_secret: string;
|
|
19012
19065
|
}
|
|
19013
19066
|
|
|
19067
|
+
interface CsvActual {
|
|
19068
|
+
readonly id: string;
|
|
19069
|
+
readonly currency: string;
|
|
19070
|
+
readonly base_amount: number;
|
|
19071
|
+
readonly surcharges: io.flow.internal.v0.models.CsvSurcharges;
|
|
19072
|
+
readonly total: number;
|
|
19073
|
+
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
19074
|
+
readonly weight: number;
|
|
19075
|
+
readonly ratecard: io.flow.internal.v0.models.CsvActualRatecard;
|
|
19076
|
+
}
|
|
19077
|
+
|
|
19078
|
+
interface CsvActualRatecard {
|
|
19079
|
+
readonly base_amount?: number;
|
|
19080
|
+
}
|
|
19081
|
+
|
|
19082
|
+
interface CsvDimensions {
|
|
19083
|
+
readonly unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
19084
|
+
readonly length: number;
|
|
19085
|
+
readonly width: number;
|
|
19086
|
+
readonly depth: number;
|
|
19087
|
+
}
|
|
19088
|
+
|
|
19089
|
+
interface CsvFlowRatecard {
|
|
19090
|
+
readonly id: string;
|
|
19091
|
+
readonly number: string;
|
|
19092
|
+
readonly owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
19093
|
+
readonly lane: io.flow.internal.v0.models.LaneReference;
|
|
19094
|
+
readonly dim_factor: number;
|
|
19095
|
+
readonly surcharges: io.flow.internal.v0.models.CsvFlowRatecardSurcharges;
|
|
19096
|
+
readonly base_amount?: number;
|
|
19097
|
+
}
|
|
19098
|
+
|
|
19099
|
+
interface CsvFlowRatecardSurcharges {
|
|
19100
|
+
readonly fuel?: io.flow.internal.v0.models.CsvServiceFee;
|
|
19101
|
+
readonly remote_area?: io.flow.internal.v0.models.CsvServiceFee;
|
|
19102
|
+
readonly oversize?: io.flow.internal.v0.models.CsvServiceFee;
|
|
19103
|
+
readonly duties_paid?: io.flow.internal.v0.models.CsvServiceFee;
|
|
19104
|
+
}
|
|
19105
|
+
|
|
19106
|
+
interface CsvGlobalEProposition {
|
|
19107
|
+
readonly name: string;
|
|
19108
|
+
}
|
|
19109
|
+
|
|
19110
|
+
interface CsvGlobalEShippingMethod {
|
|
19111
|
+
readonly id: string;
|
|
19112
|
+
readonly proposition: io.flow.internal.v0.models.CsvGlobalEProposition;
|
|
19113
|
+
}
|
|
19114
|
+
|
|
19115
|
+
interface CsvInput {
|
|
19116
|
+
readonly id: string;
|
|
19117
|
+
readonly source: io.flow.internal.v0.enums.LabelInputSource;
|
|
19118
|
+
readonly currency: string;
|
|
19119
|
+
readonly base_amount: number;
|
|
19120
|
+
readonly surcharges: io.flow.internal.v0.models.CsvSurcharges;
|
|
19121
|
+
readonly total: number;
|
|
19122
|
+
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
19123
|
+
readonly weight: number;
|
|
19124
|
+
}
|
|
19125
|
+
|
|
19126
|
+
interface CsvLabel {
|
|
19127
|
+
readonly id: string;
|
|
19128
|
+
readonly cost: io.flow.internal.v0.models.CsvLabelCost;
|
|
19129
|
+
readonly created_at: string;
|
|
19130
|
+
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
19131
|
+
readonly trigger_method?: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
19132
|
+
}
|
|
19133
|
+
|
|
19134
|
+
interface CsvLabelCost {
|
|
19135
|
+
readonly amount: number;
|
|
19136
|
+
readonly currency: string;
|
|
19137
|
+
readonly source: io.flow.label.v0.enums.CostEstimateSource;
|
|
19138
|
+
}
|
|
19139
|
+
|
|
19140
|
+
interface CsvOrder {
|
|
19141
|
+
readonly organization: io.flow.internal.v0.models.OrganizationReference;
|
|
19142
|
+
readonly number: string;
|
|
19143
|
+
readonly destination: io.flow.experience.v0.models.OrderAddress;
|
|
19144
|
+
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
19145
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
19146
|
+
readonly duty: io.flow.common.v0.models.Money;
|
|
19147
|
+
readonly total: io.flow.common.v0.models.Money;
|
|
19148
|
+
readonly number_items: number;
|
|
19149
|
+
}
|
|
19150
|
+
|
|
19151
|
+
interface CsvRecord {
|
|
19152
|
+
readonly label: io.flow.internal.v0.models.CsvLabel;
|
|
19153
|
+
readonly carrier_service_id: string;
|
|
19154
|
+
readonly carrier_tracking_number: string;
|
|
19155
|
+
readonly order: io.flow.internal.v0.models.CsvOrder;
|
|
19156
|
+
readonly flow_ratecard: io.flow.internal.v0.models.CsvFlowRatecard;
|
|
19157
|
+
readonly global_e_shipping_method?: io.flow.internal.v0.models.CsvGlobalEShippingMethod;
|
|
19158
|
+
readonly weight: io.flow.internal.v0.models.CsvWeight;
|
|
19159
|
+
readonly dimensions: io.flow.internal.v0.models.CsvDimensions;
|
|
19160
|
+
readonly input?: io.flow.internal.v0.models.CsvInput;
|
|
19161
|
+
readonly actual?: io.flow.internal.v0.models.CsvActual;
|
|
19162
|
+
readonly deltas?: string[];
|
|
19163
|
+
readonly outliers?: string[];
|
|
19164
|
+
}
|
|
19165
|
+
|
|
19166
|
+
interface CsvServiceFee {
|
|
19167
|
+
readonly amount?: number;
|
|
19168
|
+
readonly currency?: string;
|
|
19169
|
+
readonly percentage?: number;
|
|
19170
|
+
}
|
|
19171
|
+
|
|
19172
|
+
interface CsvSurchargePercentage {
|
|
19173
|
+
readonly percentage: number;
|
|
19174
|
+
readonly amount: number;
|
|
19175
|
+
}
|
|
19176
|
+
|
|
19177
|
+
interface CsvSurcharges {
|
|
19178
|
+
readonly fuel: io.flow.internal.v0.models.CsvSurchargePercentage;
|
|
19179
|
+
readonly remote_area: number;
|
|
19180
|
+
readonly oversize: number;
|
|
19181
|
+
readonly duties_paid: number;
|
|
19182
|
+
}
|
|
19183
|
+
|
|
19184
|
+
interface CsvWeight {
|
|
19185
|
+
readonly unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
19186
|
+
readonly provided: number;
|
|
19187
|
+
readonly dimensional: number;
|
|
19188
|
+
readonly lookup: number;
|
|
19189
|
+
}
|
|
19190
|
+
|
|
19014
19191
|
interface CurrencyInternalRate {
|
|
19015
19192
|
readonly id: string;
|
|
19016
19193
|
readonly organization_id: string;
|
|
@@ -22160,12 +22337,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22160
22337
|
readonly commercial_invoice_only_query?: string;
|
|
22161
22338
|
}
|
|
22162
22339
|
|
|
22340
|
+
interface LabelGenerationSettingsDeleted {
|
|
22341
|
+
readonly discriminator: 'label_generation_settings_deleted';
|
|
22342
|
+
readonly event_id: string;
|
|
22343
|
+
readonly timestamp: string;
|
|
22344
|
+
readonly organization: string;
|
|
22345
|
+
readonly id: string;
|
|
22346
|
+
}
|
|
22347
|
+
|
|
22163
22348
|
interface LabelGenerationSettingsForm {
|
|
22164
22349
|
readonly item_identifier?: string;
|
|
22165
22350
|
readonly auto_generate_query?: string;
|
|
22166
22351
|
readonly commercial_invoice_only_query?: string;
|
|
22167
22352
|
}
|
|
22168
22353
|
|
|
22354
|
+
interface LabelGenerationSettingsUpserted {
|
|
22355
|
+
readonly discriminator: 'label_generation_settings_upserted';
|
|
22356
|
+
readonly event_id: string;
|
|
22357
|
+
readonly timestamp: string;
|
|
22358
|
+
readonly organization: string;
|
|
22359
|
+
readonly label_generation_settings: io.flow.internal.v0.models.LabelGenerationSettings;
|
|
22360
|
+
}
|
|
22361
|
+
|
|
22169
22362
|
interface LabelSummary {
|
|
22170
22363
|
readonly id: string;
|
|
22171
22364
|
readonly commercial_invoice?: string;
|
|
@@ -22260,6 +22453,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22260
22453
|
readonly region: string;
|
|
22261
22454
|
}
|
|
22262
22455
|
|
|
22456
|
+
interface LaneReference {
|
|
22457
|
+
readonly id: string;
|
|
22458
|
+
}
|
|
22459
|
+
|
|
22263
22460
|
interface LevyRateSummary {
|
|
22264
22461
|
readonly id: string;
|
|
22265
22462
|
readonly number: string;
|
|
@@ -22604,18 +22801,35 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22604
22801
|
}
|
|
22605
22802
|
|
|
22606
22803
|
interface ManualReviewRule {
|
|
22804
|
+
readonly id: string;
|
|
22607
22805
|
readonly responsible_party: io.flow.internal.v0.enums.FraudReviewResponsibleParty;
|
|
22608
22806
|
readonly status: io.flow.internal.v0.enums.ManualReviewRuleStatus;
|
|
22609
22807
|
readonly duration: io.flow.common.v0.models.Duration;
|
|
22610
22808
|
readonly emails: string[];
|
|
22611
22809
|
}
|
|
22612
22810
|
|
|
22811
|
+
interface ManualReviewRuleDeleted {
|
|
22812
|
+
readonly discriminator: 'manual_review_rule_deleted';
|
|
22813
|
+
readonly event_id: string;
|
|
22814
|
+
readonly timestamp: string;
|
|
22815
|
+
readonly organization: string;
|
|
22816
|
+
readonly id: string;
|
|
22817
|
+
}
|
|
22818
|
+
|
|
22613
22819
|
interface ManualReviewRuleForm {
|
|
22614
22820
|
readonly status: io.flow.internal.v0.enums.ManualReviewRuleStatus;
|
|
22615
22821
|
readonly duration: io.flow.common.v0.models.Duration;
|
|
22616
22822
|
readonly emails: string[];
|
|
22617
22823
|
}
|
|
22618
22824
|
|
|
22825
|
+
interface ManualReviewRuleUpserted {
|
|
22826
|
+
readonly discriminator: 'manual_review_rule_upserted';
|
|
22827
|
+
readonly event_id: string;
|
|
22828
|
+
readonly timestamp: string;
|
|
22829
|
+
readonly organization: string;
|
|
22830
|
+
readonly rule: io.flow.internal.v0.models.ManualReviewRule;
|
|
22831
|
+
}
|
|
22832
|
+
|
|
22619
22833
|
interface ManualTransaction {
|
|
22620
22834
|
readonly discriminator: 'manual_transaction';
|
|
22621
22835
|
readonly category?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
@@ -23008,6 +23222,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23008
23222
|
readonly health_score: number;
|
|
23009
23223
|
}
|
|
23010
23224
|
|
|
23225
|
+
interface OnboardingStateForm {
|
|
23226
|
+
readonly onboarding_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
23227
|
+
readonly transitioned_at: string;
|
|
23228
|
+
}
|
|
23229
|
+
|
|
23011
23230
|
interface OneTimeTokenRedemptionForm {
|
|
23012
23231
|
readonly token: string;
|
|
23013
23232
|
}
|
|
@@ -23436,6 +23655,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23436
23655
|
}
|
|
23437
23656
|
|
|
23438
23657
|
interface OrganizationPaymentSetting {
|
|
23658
|
+
readonly id: string;
|
|
23439
23659
|
readonly organization_id: string;
|
|
23440
23660
|
readonly default_capture_option: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
23441
23661
|
readonly status: io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
@@ -23478,27 +23698,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23478
23698
|
readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
23479
23699
|
}
|
|
23480
23700
|
|
|
23481
|
-
interface
|
|
23701
|
+
interface OrganizationReference {
|
|
23482
23702
|
readonly id: string;
|
|
23483
|
-
readonly status: io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
23484
|
-
readonly reason?: string;
|
|
23485
|
-
readonly updated_at: string;
|
|
23486
|
-
}
|
|
23487
|
-
|
|
23488
|
-
interface OrganizationRestrictionApprovalDeleted {
|
|
23489
|
-
readonly discriminator: 'organization_restriction_approval_deleted';
|
|
23490
|
-
readonly event_id: string;
|
|
23491
|
-
readonly timestamp: string;
|
|
23492
|
-
readonly organization: string;
|
|
23493
|
-
readonly organization_restriction_approval: io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
23494
|
-
}
|
|
23495
|
-
|
|
23496
|
-
interface OrganizationRestrictionApprovalUpserted {
|
|
23497
|
-
readonly discriminator: 'organization_restriction_approval_upserted';
|
|
23498
|
-
readonly event_id: string;
|
|
23499
|
-
readonly timestamp: string;
|
|
23500
|
-
readonly organization: string;
|
|
23501
|
-
readonly organization_restriction_approval: io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
23502
23703
|
}
|
|
23503
23704
|
|
|
23504
23705
|
interface OrganizationRestrictionNoteForm {
|
|
@@ -23554,6 +23755,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23554
23755
|
readonly selective_review_end_date?: string;
|
|
23555
23756
|
readonly full_review_start_date?: string;
|
|
23556
23757
|
readonly full_review_end_date?: string;
|
|
23758
|
+
readonly merchant_category_code?: string;
|
|
23759
|
+
readonly reason?: string;
|
|
23760
|
+
readonly updated_at: string;
|
|
23761
|
+
}
|
|
23762
|
+
|
|
23763
|
+
interface OrganizationRestrictionStatusDeleted {
|
|
23764
|
+
readonly discriminator: 'organization_restriction_status_deleted';
|
|
23765
|
+
readonly event_id: string;
|
|
23766
|
+
readonly timestamp: string;
|
|
23767
|
+
readonly id: string;
|
|
23557
23768
|
}
|
|
23558
23769
|
|
|
23559
23770
|
interface OrganizationRestrictionStatusNote {
|
|
@@ -23565,6 +23776,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23565
23776
|
readonly updated_at: string;
|
|
23566
23777
|
}
|
|
23567
23778
|
|
|
23779
|
+
interface OrganizationRestrictionStatusUpserted {
|
|
23780
|
+
readonly discriminator: 'organization_restriction_status_upserted';
|
|
23781
|
+
readonly event_id: string;
|
|
23782
|
+
readonly timestamp: string;
|
|
23783
|
+
readonly organization_restriction_status: io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
23784
|
+
}
|
|
23785
|
+
|
|
23568
23786
|
interface OrganizationSettings {
|
|
23569
23787
|
readonly default_currency_format_symbol: io.flow.common.v0.enums.CurrencySymbolFormat;
|
|
23570
23788
|
readonly default_currency_label_formatters: io.flow.common.v0.enums.CurrencyLabelFormatter[];
|
|
@@ -23585,7 +23803,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23585
23803
|
|
|
23586
23804
|
interface OrganizationStatusChange {
|
|
23587
23805
|
readonly id: string;
|
|
23588
|
-
readonly organization: string;
|
|
23589
23806
|
readonly previous_status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
23590
23807
|
readonly status: io.flow.common.v0.enums.OrganizationStatus;
|
|
23591
23808
|
readonly status_set_at: string;
|
|
@@ -23595,6 +23812,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23595
23812
|
readonly discriminator: 'organization_status_change_deleted';
|
|
23596
23813
|
readonly event_id: string;
|
|
23597
23814
|
readonly timestamp: string;
|
|
23815
|
+
readonly organization: string;
|
|
23598
23816
|
readonly id: string;
|
|
23599
23817
|
}
|
|
23600
23818
|
|
|
@@ -23602,6 +23820,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23602
23820
|
readonly discriminator: 'organization_status_change_upserted';
|
|
23603
23821
|
readonly event_id: string;
|
|
23604
23822
|
readonly timestamp: string;
|
|
23823
|
+
readonly organization: string;
|
|
23605
23824
|
readonly organization_status_change: io.flow.internal.v0.models.OrganizationStatusChange;
|
|
23606
23825
|
}
|
|
23607
23826
|
|
|
@@ -23667,15 +23886,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23667
23886
|
}
|
|
23668
23887
|
|
|
23669
23888
|
interface PartnerOrganizationSettings {
|
|
23889
|
+
readonly id: string;
|
|
23670
23890
|
readonly label_format: io.flow.partner.v0.enums.LabelFormat;
|
|
23671
23891
|
readonly glbe_merchant_guid: string;
|
|
23672
23892
|
}
|
|
23673
23893
|
|
|
23894
|
+
interface PartnerOrganizationSettingsDeleted {
|
|
23895
|
+
readonly discriminator: 'partner_organization_settings_deleted';
|
|
23896
|
+
readonly event_id: string;
|
|
23897
|
+
readonly timestamp: string;
|
|
23898
|
+
readonly organization: string;
|
|
23899
|
+
readonly id: string;
|
|
23900
|
+
}
|
|
23901
|
+
|
|
23674
23902
|
interface PartnerOrganizationSettingsForm {
|
|
23675
23903
|
readonly label_format: io.flow.partner.v0.enums.LabelFormat;
|
|
23676
23904
|
readonly glbe_merchant_guid?: string;
|
|
23677
23905
|
}
|
|
23678
23906
|
|
|
23907
|
+
interface PartnerOrganizationSettingsUpserted {
|
|
23908
|
+
readonly discriminator: 'partner_organization_settings_upserted';
|
|
23909
|
+
readonly event_id: string;
|
|
23910
|
+
readonly timestamp: string;
|
|
23911
|
+
readonly organization: string;
|
|
23912
|
+
readonly partner_organization_settings: io.flow.internal.v0.models.PartnerOrganizationSettings;
|
|
23913
|
+
}
|
|
23914
|
+
|
|
23679
23915
|
interface Passphrase {
|
|
23680
23916
|
readonly id: string;
|
|
23681
23917
|
readonly tribe: io.flow.internal.v0.models.Tribe;
|
|
@@ -25065,6 +25301,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25065
25301
|
readonly percent: number;
|
|
25066
25302
|
}
|
|
25067
25303
|
|
|
25304
|
+
interface SetupBlockPutForm {
|
|
25305
|
+
readonly reasons: io.flow.organization.onboarding.state.v0.enums.OnboardingBlockedReason[];
|
|
25306
|
+
}
|
|
25307
|
+
|
|
25068
25308
|
interface SfExpress {
|
|
25069
25309
|
readonly discriminator: 'sf_express';
|
|
25070
25310
|
readonly checkword: string;
|
|
@@ -25284,9 +25524,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25284
25524
|
}
|
|
25285
25525
|
|
|
25286
25526
|
interface ShopifyMarketsWebhookRegistration {
|
|
25527
|
+
readonly id: string;
|
|
25287
25528
|
readonly response: io.flow.shopify.markets.v0.models.ShopifyWebhookResponse;
|
|
25288
25529
|
}
|
|
25289
25530
|
|
|
25531
|
+
interface ShopifyMarketsWebhookRegistrationDeleted {
|
|
25532
|
+
readonly discriminator: 'shopify_markets_webhook_registration_deleted';
|
|
25533
|
+
readonly event_id: string;
|
|
25534
|
+
readonly timestamp: string;
|
|
25535
|
+
readonly organization: string;
|
|
25536
|
+
readonly id: string;
|
|
25537
|
+
}
|
|
25538
|
+
|
|
25539
|
+
interface ShopifyMarketsWebhookRegistrationUpserted {
|
|
25540
|
+
readonly discriminator: 'shopify_markets_webhook_registration_upserted';
|
|
25541
|
+
readonly event_id: string;
|
|
25542
|
+
readonly timestamp: string;
|
|
25543
|
+
readonly organization: string;
|
|
25544
|
+
readonly registration: io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
25545
|
+
}
|
|
25546
|
+
|
|
25290
25547
|
interface ShopifyMetadata {
|
|
25291
25548
|
readonly domain: string;
|
|
25292
25549
|
readonly myshopify_domain: string;
|
|
@@ -25973,6 +26230,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25973
26230
|
readonly values: io.flow.internal.v0.models.LabelAliases[];
|
|
25974
26231
|
}
|
|
25975
26232
|
|
|
26233
|
+
interface Surcharge {
|
|
26234
|
+
readonly amount?: number;
|
|
26235
|
+
readonly percentage?: number;
|
|
26236
|
+
readonly type: io.flow.internal.v0.enums.SurchargeType;
|
|
26237
|
+
}
|
|
26238
|
+
|
|
25976
26239
|
interface SvbVirtualCardClearing {
|
|
25977
26240
|
readonly id: string;
|
|
25978
26241
|
readonly virtual_card_id: string;
|
|
@@ -26630,6 +26893,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26630
26893
|
readonly created_at: string;
|
|
26631
26894
|
}
|
|
26632
26895
|
|
|
26896
|
+
interface WashExportRequest {
|
|
26897
|
+
readonly url: string;
|
|
26898
|
+
}
|
|
26899
|
+
|
|
26633
26900
|
interface WasteElectricalAndElectronicEquipmentComplianceData {
|
|
26634
26901
|
readonly discriminator: 'weee';
|
|
26635
26902
|
readonly label: string;
|
|
@@ -27153,6 +27420,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
27153
27420
|
| io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted
|
|
27154
27421
|
| io.flow.internal.v0.models.CarrierAccountUpsertedV2
|
|
27155
27422
|
| io.flow.internal.v0.models.CarrierAccountDeleted
|
|
27423
|
+
| io.flow.internal.v0.models.LabelGenerationSettingsUpserted
|
|
27424
|
+
| io.flow.internal.v0.models.LabelGenerationSettingsDeleted
|
|
27156
27425
|
| io.flow.internal.v0.models.CatalogImportRequest
|
|
27157
27426
|
| io.flow.internal.v0.models.ExclusionRuleUpserted
|
|
27158
27427
|
| io.flow.internal.v0.models.ExclusionRuleDeleted
|
|
@@ -27243,9 +27512,13 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
27243
27512
|
| io.flow.internal.v0.models.FraudReviewDecisionDeleted
|
|
27244
27513
|
| io.flow.internal.v0.models.FraudProviderConfigurationUpserted
|
|
27245
27514
|
| io.flow.internal.v0.models.FraudProviderConfigurationDeleted
|
|
27515
|
+
| io.flow.internal.v0.models.ManualReviewRuleUpserted
|
|
27516
|
+
| io.flow.internal.v0.models.ManualReviewRuleDeleted
|
|
27246
27517
|
| io.flow.internal.v0.models.FtpFileUpserted
|
|
27247
27518
|
| io.flow.internal.v0.models.FtpFileDeleted
|
|
27248
27519
|
| io.flow.internal.v0.models.FtpFileToProcessUploaded
|
|
27520
|
+
| io.flow.internal.v0.models.CenterDefaultsUpserted
|
|
27521
|
+
| io.flow.internal.v0.models.CenterDefaultsDeleted
|
|
27249
27522
|
| io.flow.internal.v0.models.PregeneratedRequestEvent
|
|
27250
27523
|
| io.flow.internal.v0.models.AllItemsExport
|
|
27251
27524
|
| io.flow.internal.v0.models.HarmonizedItemsHs6Export
|
|
@@ -27300,8 +27573,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
27300
27573
|
| io.flow.internal.v0.models.OrganizationBusinessEntityUpserted
|
|
27301
27574
|
| io.flow.internal.v0.models.OrganizationStatusChangeUpserted
|
|
27302
27575
|
| io.flow.internal.v0.models.OrganizationStatusChangeDeleted
|
|
27303
|
-
| io.flow.internal.v0.models.
|
|
27304
|
-
| io.flow.internal.v0.models.
|
|
27576
|
+
| io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted
|
|
27577
|
+
| io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted
|
|
27305
27578
|
| io.flow.internal.v0.models.InternalAuthorizationUpserted
|
|
27306
27579
|
| io.flow.internal.v0.models.InternalAuthorizationDeleted
|
|
27307
27580
|
| io.flow.internal.v0.models.AfterpayAuthorizationUpserted
|
|
@@ -27351,6 +27624,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
27351
27624
|
| io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted
|
|
27352
27625
|
| io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted
|
|
27353
27626
|
| io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted
|
|
27627
|
+
| io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted
|
|
27628
|
+
| io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted
|
|
27354
27629
|
| io.flow.internal.v0.models.ShopifyShopUpserted
|
|
27355
27630
|
| io.flow.internal.v0.models.ShopifyShopDeleted
|
|
27356
27631
|
| io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted
|
|
@@ -27359,6 +27634,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
27359
27634
|
| io.flow.internal.v0.models.ShopifyMarketsOrderDeleted
|
|
27360
27635
|
| io.flow.internal.v0.models.ShopifyMarketsShopUpserted
|
|
27361
27636
|
| io.flow.internal.v0.models.ShopifyMarketsShopDeleted
|
|
27637
|
+
| io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted
|
|
27638
|
+
| io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted
|
|
27362
27639
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted
|
|
27363
27640
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted
|
|
27364
27641
|
| io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted
|
|
@@ -28053,7 +28330,11 @@ export type CatalogSettingsPutForm =
|
|
|
28053
28330
|
export type CatalogSettingsUpserted =
|
|
28054
28331
|
io.flow.internal.v0.models.CatalogSettingsUpserted;
|
|
28055
28332
|
export type CenterDefaults = io.flow.internal.v0.models.CenterDefaults;
|
|
28333
|
+
export type CenterDefaultsDeleted =
|
|
28334
|
+
io.flow.internal.v0.models.CenterDefaultsDeleted;
|
|
28056
28335
|
export type CenterDefaultsForm = io.flow.internal.v0.models.CenterDefaultsForm;
|
|
28336
|
+
export type CenterDefaultsUpserted =
|
|
28337
|
+
io.flow.internal.v0.models.CenterDefaultsUpserted;
|
|
28057
28338
|
export type CenterQueryBuilder = io.flow.internal.v0.models.CenterQueryBuilder;
|
|
28058
28339
|
export type ChangeSettingsIndexTask =
|
|
28059
28340
|
io.flow.internal.v0.models.ChangeSettingsIndexTask;
|
|
@@ -29264,6 +29545,26 @@ export type CryptoAuthentication =
|
|
|
29264
29545
|
io.flow.internal.v0.models.CryptoAuthentication;
|
|
29265
29546
|
export type CryptoAuthenticationForm =
|
|
29266
29547
|
io.flow.internal.v0.models.CryptoAuthenticationForm;
|
|
29548
|
+
export type CsvActual = io.flow.internal.v0.models.CsvActual;
|
|
29549
|
+
export type CsvActualRatecard = io.flow.internal.v0.models.CsvActualRatecard;
|
|
29550
|
+
export type CsvDimensions = io.flow.internal.v0.models.CsvDimensions;
|
|
29551
|
+
export type CsvFlowRatecard = io.flow.internal.v0.models.CsvFlowRatecard;
|
|
29552
|
+
export type CsvFlowRatecardSurcharges =
|
|
29553
|
+
io.flow.internal.v0.models.CsvFlowRatecardSurcharges;
|
|
29554
|
+
export type CsvGlobalEProposition =
|
|
29555
|
+
io.flow.internal.v0.models.CsvGlobalEProposition;
|
|
29556
|
+
export type CsvGlobalEShippingMethod =
|
|
29557
|
+
io.flow.internal.v0.models.CsvGlobalEShippingMethod;
|
|
29558
|
+
export type CsvInput = io.flow.internal.v0.models.CsvInput;
|
|
29559
|
+
export type CsvLabel = io.flow.internal.v0.models.CsvLabel;
|
|
29560
|
+
export type CsvLabelCost = io.flow.internal.v0.models.CsvLabelCost;
|
|
29561
|
+
export type CsvOrder = io.flow.internal.v0.models.CsvOrder;
|
|
29562
|
+
export type CsvRecord = io.flow.internal.v0.models.CsvRecord;
|
|
29563
|
+
export type CsvServiceFee = io.flow.internal.v0.models.CsvServiceFee;
|
|
29564
|
+
export type CsvSurchargePercentage =
|
|
29565
|
+
io.flow.internal.v0.models.CsvSurchargePercentage;
|
|
29566
|
+
export type CsvSurcharges = io.flow.internal.v0.models.CsvSurcharges;
|
|
29567
|
+
export type CsvWeight = io.flow.internal.v0.models.CsvWeight;
|
|
29267
29568
|
export type CurrencyInternalRate =
|
|
29268
29569
|
io.flow.internal.v0.models.CurrencyInternalRate;
|
|
29269
29570
|
export type CustomerPurgeUpserted =
|
|
@@ -29987,8 +30288,13 @@ export type LabelCreationRequestForm =
|
|
|
29987
30288
|
export type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
|
|
29988
30289
|
export type LabelGenerationSettings =
|
|
29989
30290
|
io.flow.internal.v0.models.LabelGenerationSettings;
|
|
30291
|
+
export type LabelGenerationSettingsDeleted =
|
|
30292
|
+
io.flow.internal.v0.models.LabelGenerationSettingsDeleted;
|
|
29990
30293
|
export type LabelGenerationSettingsForm =
|
|
29991
30294
|
io.flow.internal.v0.models.LabelGenerationSettingsForm;
|
|
30295
|
+
export type LabelGenerationSettingsUpserted =
|
|
30296
|
+
io.flow.internal.v0.models.LabelGenerationSettingsUpserted;
|
|
30297
|
+
export type LabelInputSource = io.flow.internal.v0.enums.LabelInputSource;
|
|
29992
30298
|
export type LabelSummary = io.flow.internal.v0.models.LabelSummary;
|
|
29993
30299
|
export type LabelTaxonomy = io.flow.internal.v0.models.LabelTaxonomy;
|
|
29994
30300
|
export type LabelTrackingSummaryDeleted =
|
|
@@ -30006,6 +30312,7 @@ export type LabeledContent = io.flow.internal.v0.models.LabeledContent;
|
|
|
30006
30312
|
export type LabelsPrediction = io.flow.internal.v0.models.LabelsPrediction;
|
|
30007
30313
|
export type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
|
|
30008
30314
|
export type Landmark = io.flow.internal.v0.models.Landmark;
|
|
30315
|
+
export type LaneReference = io.flow.internal.v0.models.LaneReference;
|
|
30009
30316
|
export type LevyRateSummary = io.flow.internal.v0.models.LevyRateSummary;
|
|
30010
30317
|
export type LevyRateSummaryUpserted =
|
|
30011
30318
|
io.flow.internal.v0.models.LevyRateSummaryUpserted;
|
|
@@ -30084,10 +30391,14 @@ export type MainTransactionUpserted =
|
|
|
30084
30391
|
export type MainTransactionUpsertedV2 =
|
|
30085
30392
|
io.flow.internal.v0.models.MainTransactionUpsertedV2;
|
|
30086
30393
|
export type ManualReviewRule = io.flow.internal.v0.models.ManualReviewRule;
|
|
30394
|
+
export type ManualReviewRuleDeleted =
|
|
30395
|
+
io.flow.internal.v0.models.ManualReviewRuleDeleted;
|
|
30087
30396
|
export type ManualReviewRuleForm =
|
|
30088
30397
|
io.flow.internal.v0.models.ManualReviewRuleForm;
|
|
30089
30398
|
export type ManualReviewRuleStatus =
|
|
30090
30399
|
io.flow.internal.v0.enums.ManualReviewRuleStatus;
|
|
30400
|
+
export type ManualReviewRuleUpserted =
|
|
30401
|
+
io.flow.internal.v0.models.ManualReviewRuleUpserted;
|
|
30091
30402
|
export type ManualTransaction = io.flow.internal.v0.models.ManualTransaction;
|
|
30092
30403
|
export type ManualTransactionCategory =
|
|
30093
30404
|
io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
@@ -30241,6 +30552,8 @@ export type OnboardingAutomationTaskState =
|
|
|
30241
30552
|
io.flow.internal.v0.enums.OnboardingAutomationTaskState;
|
|
30242
30553
|
export type OnboardingOrganization =
|
|
30243
30554
|
io.flow.internal.v0.models.OnboardingOrganization;
|
|
30555
|
+
export type OnboardingStateForm =
|
|
30556
|
+
io.flow.internal.v0.models.OnboardingStateForm;
|
|
30244
30557
|
export type OneTimeTokenRedemptionForm =
|
|
30245
30558
|
io.flow.internal.v0.models.OneTimeTokenRedemptionForm;
|
|
30246
30559
|
export type OnlineAuthorizationCompleted =
|
|
@@ -30365,14 +30678,10 @@ export type OrganizationPaymentSettingVersion =
|
|
|
30365
30678
|
io.flow.internal.v0.models.OrganizationPaymentSettingVersion;
|
|
30366
30679
|
export type OrganizationPaymentStatus =
|
|
30367
30680
|
io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
30368
|
-
export type
|
|
30369
|
-
io.flow.internal.v0.models.
|
|
30370
|
-
export type OrganizationRestrictionApprovalDeleted =
|
|
30371
|
-
io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted;
|
|
30681
|
+
export type OrganizationReference =
|
|
30682
|
+
io.flow.internal.v0.models.OrganizationReference;
|
|
30372
30683
|
export type OrganizationRestrictionApprovalStatus =
|
|
30373
30684
|
io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
30374
|
-
export type OrganizationRestrictionApprovalUpserted =
|
|
30375
|
-
io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted;
|
|
30376
30685
|
export type OrganizationRestrictionNoteForm =
|
|
30377
30686
|
io.flow.internal.v0.models.OrganizationRestrictionNoteForm;
|
|
30378
30687
|
export type OrganizationRestrictionNoteType =
|
|
@@ -30391,8 +30700,12 @@ export type OrganizationRestrictionSnapshotUpserted =
|
|
|
30391
30700
|
io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted;
|
|
30392
30701
|
export type OrganizationRestrictionStatus =
|
|
30393
30702
|
io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
30703
|
+
export type OrganizationRestrictionStatusDeleted =
|
|
30704
|
+
io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted;
|
|
30394
30705
|
export type OrganizationRestrictionStatusNote =
|
|
30395
30706
|
io.flow.internal.v0.models.OrganizationRestrictionStatusNote;
|
|
30707
|
+
export type OrganizationRestrictionStatusUpserted =
|
|
30708
|
+
io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted;
|
|
30396
30709
|
export type OrganizationSettings =
|
|
30397
30710
|
io.flow.internal.v0.models.OrganizationSettings;
|
|
30398
30711
|
export type OrganizationSettingsForm =
|
|
@@ -30426,8 +30739,12 @@ export type PartnerOrganizationAuthorizationForm =
|
|
|
30426
30739
|
io.flow.internal.v0.models.PartnerOrganizationAuthorizationForm;
|
|
30427
30740
|
export type PartnerOrganizationSettings =
|
|
30428
30741
|
io.flow.internal.v0.models.PartnerOrganizationSettings;
|
|
30742
|
+
export type PartnerOrganizationSettingsDeleted =
|
|
30743
|
+
io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted;
|
|
30429
30744
|
export type PartnerOrganizationSettingsForm =
|
|
30430
30745
|
io.flow.internal.v0.models.PartnerOrganizationSettingsForm;
|
|
30746
|
+
export type PartnerOrganizationSettingsUpserted =
|
|
30747
|
+
io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted;
|
|
30431
30748
|
export type Passphrase = io.flow.internal.v0.models.Passphrase;
|
|
30432
30749
|
export type PassphraseForm = io.flow.internal.v0.models.PassphraseForm;
|
|
30433
30750
|
export type PassphraseSummary = io.flow.internal.v0.models.PassphraseSummary;
|
|
@@ -30795,6 +31112,7 @@ export type SessionCountryStatus =
|
|
|
30795
31112
|
export type SessionOrderData = io.flow.internal.v0.models.SessionOrderData;
|
|
30796
31113
|
export type SessionRollout = io.flow.internal.v0.models.SessionRollout;
|
|
30797
31114
|
export type SessionRolloutForm = io.flow.internal.v0.models.SessionRolloutForm;
|
|
31115
|
+
export type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
30798
31116
|
export type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
30799
31117
|
export type ShippedItemValue = io.flow.internal.v0.models.ShippedItemValue;
|
|
30800
31118
|
export type ShipperAccountInfoForm =
|
|
@@ -30862,6 +31180,10 @@ export type ShopifyMarketsTradeSector =
|
|
|
30862
31180
|
io.flow.internal.v0.enums.ShopifyMarketsTradeSector;
|
|
30863
31181
|
export type ShopifyMarketsWebhookRegistration =
|
|
30864
31182
|
io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
31183
|
+
export type ShopifyMarketsWebhookRegistrationDeleted =
|
|
31184
|
+
io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted;
|
|
31185
|
+
export type ShopifyMarketsWebhookRegistrationUpserted =
|
|
31186
|
+
io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
|
|
30865
31187
|
export type ShopifyMetadata = io.flow.internal.v0.models.ShopifyMetadata;
|
|
30866
31188
|
export type ShopifyMonitoringCarrierService =
|
|
30867
31189
|
io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
@@ -31070,6 +31392,8 @@ export type SubscriptionTransaction =
|
|
|
31070
31392
|
io.flow.internal.v0.models.SubscriptionTransaction;
|
|
31071
31393
|
export type SuggestionAction = io.flow.internal.v0.enums.SuggestionAction;
|
|
31072
31394
|
export type SupportedLabels = io.flow.internal.v0.models.SupportedLabels;
|
|
31395
|
+
export type Surcharge = io.flow.internal.v0.models.Surcharge;
|
|
31396
|
+
export type SurchargeType = io.flow.internal.v0.enums.SurchargeType;
|
|
31073
31397
|
export type SvbVirtualCardClearing =
|
|
31074
31398
|
io.flow.internal.v0.models.SvbVirtualCardClearing;
|
|
31075
31399
|
export type SvbVirtualCardClearingDeleted =
|
|
@@ -31232,6 +31556,7 @@ export type VirtualCardProviderUpserted =
|
|
|
31232
31556
|
io.flow.internal.v0.models.VirtualCardProviderUpserted;
|
|
31233
31557
|
export type VirtualCardTransaction =
|
|
31234
31558
|
io.flow.internal.v0.models.VirtualCardTransaction;
|
|
31559
|
+
export type WashExportRequest = io.flow.internal.v0.models.WashExportRequest;
|
|
31235
31560
|
export type WasteElectricalAndElectronicEquipmentComplianceData =
|
|
31236
31561
|
io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData;
|
|
31237
31562
|
export type WasteElectricalAndElectronicEquipmentComplianceForm =
|