@flowio/types 11.24.110 → 11.24.111
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 +168 -424
- package/dist/api.d.ts +169 -139
- package/package.json +2 -2
- package/src/api-internal.ts +235 -610
- package/src/api.ts +253 -166
package/src/api.ts
CHANGED
|
@@ -551,12 +551,58 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
551
551
|
| 'unknown';
|
|
552
552
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
553
553
|
type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
|
|
554
|
+
type ReportingReportRunStatus = 'pending' | 'succeeded' | 'failed';
|
|
555
|
+
type ReportingReportType =
|
|
556
|
+
| 'ending_balance_reconciliation.itemized.1'
|
|
557
|
+
| 'ending_balance_reconciliation.itemized.2'
|
|
558
|
+
| 'ending_balance_reconciliation.itemized.3'
|
|
559
|
+
| 'ending_balance_reconciliation.itemized.4'
|
|
560
|
+
| 'payout_reconciliation.itemized.5'
|
|
561
|
+
| 'payout_reconciliation.by_id.itemized.1'
|
|
562
|
+
| 'payout_reconciliation.by_id.itemized.2'
|
|
563
|
+
| 'payout_reconciliation.by_id.itemized.3'
|
|
564
|
+
| 'payout_reconciliation.by_id.itemized.4'
|
|
565
|
+
| 'payout_reconciliation.by_id.summary.1'
|
|
566
|
+
| 'ending_balance_reconciliation.summary.1'
|
|
567
|
+
| 'payout_reconciliation.itemized.1'
|
|
568
|
+
| 'payout_reconciliation.itemized.2'
|
|
569
|
+
| 'payout_reconciliation.itemized.3'
|
|
570
|
+
| 'payout_reconciliation.itemized.4'
|
|
571
|
+
| 'payout_reconciliation.summary.1';
|
|
554
572
|
type RequestThreeDSecureType = 'automatic' | 'any';
|
|
555
573
|
type RequestedCapabilities =
|
|
556
574
|
| 'card_payments'
|
|
557
575
|
| 'legacy_payments'
|
|
558
576
|
| 'transfers';
|
|
559
577
|
type SetupFutureUsage = 'on_session' | 'off_session';
|
|
578
|
+
type ShopifyPaymentStripeEventType =
|
|
579
|
+
| 'charge.captured'
|
|
580
|
+
| 'charge.dispute.created'
|
|
581
|
+
| 'charge.dispute.closed'
|
|
582
|
+
| 'charge.dispute.funds_reinstated'
|
|
583
|
+
| 'charge.dispute.funds_withdrawn'
|
|
584
|
+
| 'charge.dispute.updated'
|
|
585
|
+
| 'charge.expired'
|
|
586
|
+
| 'charge.failed'
|
|
587
|
+
| 'charge.pending'
|
|
588
|
+
| 'charge.refund.updated'
|
|
589
|
+
| 'charge.refunded'
|
|
590
|
+
| 'charge.succeeded'
|
|
591
|
+
| 'charge.updated'
|
|
592
|
+
| 'payment_intent.amount_capturable_updated'
|
|
593
|
+
| 'payment_intent.canceled'
|
|
594
|
+
| 'payment_intent.created'
|
|
595
|
+
| 'payment_intent.partially_funded'
|
|
596
|
+
| 'payment_intent.payment_failed'
|
|
597
|
+
| 'payment_intent.processing'
|
|
598
|
+
| 'payment_intent.requires_action'
|
|
599
|
+
| 'payment_intent.succeeded'
|
|
600
|
+
| 'transfer.created'
|
|
601
|
+
| 'transfer.reversed'
|
|
602
|
+
| 'transfer.updated'
|
|
603
|
+
| 'reporting.report_run.succeeded'
|
|
604
|
+
| 'reporting.report_type.updated'
|
|
605
|
+
| 'reporting.report_type.failed';
|
|
560
606
|
type SourceFlow = 'redirect' | 'receiver' | 'code_verification' | 'none';
|
|
561
607
|
type SourceStatus =
|
|
562
608
|
| 'canceled'
|
|
@@ -1493,12 +1539,76 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1493
1539
|
readonly url: string;
|
|
1494
1540
|
}
|
|
1495
1541
|
|
|
1542
|
+
interface ReportRunParameters {
|
|
1543
|
+
readonly interval_start: number;
|
|
1544
|
+
readonly interval_end: number;
|
|
1545
|
+
readonly columns?: string[];
|
|
1546
|
+
readonly payout?: string;
|
|
1547
|
+
readonly connected_account?: string;
|
|
1548
|
+
readonly reporting_category?: string;
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
interface ReportingReportRun {
|
|
1552
|
+
readonly id: string;
|
|
1553
|
+
readonly object: string;
|
|
1554
|
+
readonly created: number;
|
|
1555
|
+
readonly error?: string;
|
|
1556
|
+
readonly livemode: boolean;
|
|
1557
|
+
readonly status: io.flow.stripe.v0.enums.ReportingReportRunStatus;
|
|
1558
|
+
readonly result?: io.flow.stripe.v0.models.ReportingReportRunResult;
|
|
1559
|
+
readonly succeeded_at?: number;
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1562
|
+
interface ReportingReportRunForm {
|
|
1563
|
+
readonly report_type: io.flow.stripe.v0.enums.ReportingReportType;
|
|
1564
|
+
readonly parameters: io.flow.stripe.v0.models.ReportRunParameters;
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1567
|
+
interface ReportingReportRunResult {
|
|
1568
|
+
readonly id: string;
|
|
1569
|
+
readonly object: string;
|
|
1570
|
+
readonly created: number;
|
|
1571
|
+
readonly expires_at: number;
|
|
1572
|
+
readonly filename: string;
|
|
1573
|
+
readonly links: any /*object*/;
|
|
1574
|
+
readonly purpose: string;
|
|
1575
|
+
readonly size: number;
|
|
1576
|
+
readonly title: string;
|
|
1577
|
+
readonly type: string;
|
|
1578
|
+
readonly url: string;
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
interface ReportingReportRuns {
|
|
1582
|
+
readonly object: string;
|
|
1583
|
+
readonly data: io.flow.stripe.v0.models.ReportingReportRun[];
|
|
1584
|
+
readonly has_more: boolean;
|
|
1585
|
+
readonly url?: string;
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1496
1588
|
interface Shipping {
|
|
1497
1589
|
readonly address: io.flow.stripe.v0.models.Address;
|
|
1498
1590
|
readonly name?: string;
|
|
1499
1591
|
readonly phone?: string;
|
|
1500
1592
|
}
|
|
1501
1593
|
|
|
1594
|
+
interface ShopifyPaymentStripeEvent {
|
|
1595
|
+
readonly id: string;
|
|
1596
|
+
readonly api_version?: string;
|
|
1597
|
+
readonly data: io.flow.stripe.v0.models.ShopifyPaymentStripeEventData;
|
|
1598
|
+
readonly request?: any /*object*/;
|
|
1599
|
+
readonly type: io.flow.stripe.v0.enums.ShopifyPaymentStripeEventType;
|
|
1600
|
+
readonly object: string;
|
|
1601
|
+
readonly account?: string;
|
|
1602
|
+
readonly created: number;
|
|
1603
|
+
readonly livemode: boolean;
|
|
1604
|
+
readonly pending_webhooks: number;
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
interface ShopifyPaymentStripeEventData {
|
|
1608
|
+
readonly object?: any /*object*/;
|
|
1609
|
+
readonly previous_attributes?: any /*object*/;
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1502
1612
|
interface Source {
|
|
1503
1613
|
readonly id: string;
|
|
1504
1614
|
readonly object: string;
|
|
@@ -1955,8 +2065,15 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1955
2065
|
}
|
|
1956
2066
|
|
|
1957
2067
|
interface GraphqlMetafield {
|
|
2068
|
+
readonly id: string;
|
|
1958
2069
|
readonly key: string;
|
|
1959
2070
|
readonly value: string;
|
|
2071
|
+
readonly type?: string;
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2074
|
+
interface GraphqlMetaobject {
|
|
2075
|
+
readonly id: string;
|
|
2076
|
+
readonly displayName: string;
|
|
1960
2077
|
}
|
|
1961
2078
|
|
|
1962
2079
|
interface GraphqlOption {
|
|
@@ -2132,6 +2249,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2132
2249
|
readonly updated_at: string;
|
|
2133
2250
|
readonly has_variants_that_requires_components?: boolean;
|
|
2134
2251
|
readonly category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
2252
|
+
readonly metafields?: io.flow.shopify.external.v0.models.ProductMetafield[];
|
|
2135
2253
|
}
|
|
2136
2254
|
|
|
2137
2255
|
interface ProductDelete {
|
|
@@ -2149,6 +2267,17 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2149
2267
|
readonly alt?: string;
|
|
2150
2268
|
}
|
|
2151
2269
|
|
|
2270
|
+
interface ProductMetafield {
|
|
2271
|
+
readonly id: number;
|
|
2272
|
+
readonly namespace: string;
|
|
2273
|
+
readonly key: string;
|
|
2274
|
+
readonly value: string;
|
|
2275
|
+
readonly created_at: string;
|
|
2276
|
+
readonly updated_at: string;
|
|
2277
|
+
readonly type: string;
|
|
2278
|
+
readonly admin_graphql_api_id: string;
|
|
2279
|
+
}
|
|
2280
|
+
|
|
2152
2281
|
interface ProductVariant {
|
|
2153
2282
|
readonly id: number;
|
|
2154
2283
|
readonly sku?: string;
|
|
@@ -4774,13 +4903,6 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
4774
4903
|
readonly name: string;
|
|
4775
4904
|
}
|
|
4776
4905
|
|
|
4777
|
-
interface ShawnRoundtableWorkshopRate {
|
|
4778
|
-
readonly origin_country: string;
|
|
4779
|
-
readonly destination_country: string;
|
|
4780
|
-
readonly weight: number;
|
|
4781
|
-
readonly amount: number;
|
|
4782
|
-
}
|
|
4783
|
-
|
|
4784
4906
|
interface TechOnboardingDescription {
|
|
4785
4907
|
readonly description: string;
|
|
4786
4908
|
}
|
|
@@ -6082,10 +6204,14 @@ declare namespace io.flow.v0.enums {
|
|
|
6082
6204
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
6083
6205
|
type Environment = 'sandbox' | 'production';
|
|
6084
6206
|
type EventType =
|
|
6207
|
+
| 'authorization_retry_upserted'
|
|
6208
|
+
| 'authorization_retry_deleted'
|
|
6085
6209
|
| 'test_upserted'
|
|
6086
6210
|
| 'generate_load'
|
|
6087
6211
|
| 'aldo_item_upserted'
|
|
6088
6212
|
| 'aldo_item_deleted'
|
|
6213
|
+
| 'ansh_item_upserted'
|
|
6214
|
+
| 'ansh_item_deleted'
|
|
6089
6215
|
| 'transaction_upserted'
|
|
6090
6216
|
| 'organization_transaction_upserted'
|
|
6091
6217
|
| 'organization_transaction_deleted'
|
|
@@ -6195,6 +6321,11 @@ declare namespace io.flow.v0.enums {
|
|
|
6195
6321
|
| 'shipping_configuration_item_availability_deleted'
|
|
6196
6322
|
| 'shipping_configuration_item_shipping_pricing_upserted'
|
|
6197
6323
|
| 'shipping_configuration_item_shipping_pricing_deleted'
|
|
6324
|
+
| 'ge_item_inserted'
|
|
6325
|
+
| 'ge_item_updated'
|
|
6326
|
+
| 'ge_item_deleted'
|
|
6327
|
+
| 'ge_product_restriction_result_upserted'
|
|
6328
|
+
| 'ge_product_restriction_result_deleted'
|
|
6198
6329
|
| 'hs6_code_upserted'
|
|
6199
6330
|
| 'hs6_code_deleted'
|
|
6200
6331
|
| 'hs10_code_upserted'
|
|
@@ -6214,8 +6345,6 @@ declare namespace io.flow.v0.enums {
|
|
|
6214
6345
|
| 'manifested_label_deleted'
|
|
6215
6346
|
| 'label_processing_modification_upserted'
|
|
6216
6347
|
| 'label_processing_modification_deleted'
|
|
6217
|
-
| 'local_item_upserted'
|
|
6218
|
-
| 'local_item_deleted'
|
|
6219
6348
|
| 'merchant_application_upserted'
|
|
6220
6349
|
| 'merchant_application_deleted'
|
|
6221
6350
|
| 'checkout_optin_responses_upserted'
|
|
@@ -6477,6 +6606,7 @@ declare namespace io.flow.v0.enums {
|
|
|
6477
6606
|
| 'gift_card_not_accepted'
|
|
6478
6607
|
| 'total_changed';
|
|
6479
6608
|
type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
|
|
6609
|
+
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
6480
6610
|
type OrderPaymentType =
|
|
6481
6611
|
| 'card'
|
|
6482
6612
|
| 'online'
|
|
@@ -6804,7 +6934,6 @@ declare namespace io.flow.v0.enums {
|
|
|
6804
6934
|
type Role = 'admin' | 'member';
|
|
6805
6935
|
type RoundingMethod = 'up' | 'down' | 'nearest';
|
|
6806
6936
|
type RoundingType = 'pattern' | 'multiple';
|
|
6807
|
-
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
6808
6937
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
6809
6938
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
6810
6939
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
@@ -6878,13 +7007,6 @@ declare namespace io.flow.v0.enums {
|
|
|
6878
7007
|
| 'Pending_006'
|
|
6879
7008
|
| 'Expired_001';
|
|
6880
7009
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
6881
|
-
type SyncRecordFailureReason =
|
|
6882
|
-
| 'inventory'
|
|
6883
|
-
| 'address'
|
|
6884
|
-
| 'promotion'
|
|
6885
|
-
| 'other';
|
|
6886
|
-
type SyncStreamType = 'submitted_order' | 'placed_order';
|
|
6887
|
-
type SyncUnitOfTime = 'day' | 'hour' | 'minute' | 'second';
|
|
6888
7010
|
type TaxApplicability = 'none' | 'all';
|
|
6889
7011
|
type TaxReportType = 'consumer' | 'b2b';
|
|
6890
7012
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
@@ -6913,7 +7035,9 @@ declare namespace io.flow.v0.enums {
|
|
|
6913
7035
|
| 'delivered'
|
|
6914
7036
|
| 'exception'
|
|
6915
7037
|
| 'returned'
|
|
6916
|
-
| 'expired'
|
|
7038
|
+
| 'expired'
|
|
7039
|
+
| 'unknown'
|
|
7040
|
+
| 'unmapped';
|
|
6917
7041
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
6918
7042
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
6919
7043
|
type TransactionSource =
|
|
@@ -6943,7 +7067,7 @@ declare namespace io.flow.v0.enums {
|
|
|
6943
7067
|
| 'virtual_card_refund'
|
|
6944
7068
|
| 'failed_payout'
|
|
6945
7069
|
| 'tax_refund'
|
|
6946
|
-
| '
|
|
7070
|
+
| 'non_l4l_tax_duty_fx'
|
|
6947
7071
|
| 'ge_revenue_share'
|
|
6948
7072
|
| 'tax_duty_delta';
|
|
6949
7073
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
@@ -7441,6 +7565,20 @@ declare namespace io.flow.v0.models {
|
|
|
7441
7565
|
readonly interval?: io.flow.v0.enums.UnitOfTime;
|
|
7442
7566
|
}
|
|
7443
7567
|
|
|
7568
|
+
interface AnshItemDeleted {
|
|
7569
|
+
readonly discriminator: 'ansh_item_deleted';
|
|
7570
|
+
readonly event_id: string;
|
|
7571
|
+
readonly timestamp: string;
|
|
7572
|
+
readonly id: string;
|
|
7573
|
+
}
|
|
7574
|
+
|
|
7575
|
+
interface AnshItemUpserted {
|
|
7576
|
+
readonly discriminator: 'ansh_item_upserted';
|
|
7577
|
+
readonly event_id: string;
|
|
7578
|
+
readonly timestamp: string;
|
|
7579
|
+
readonly item: io.flow.tech.onboarding.playground.v0.models.AnshItem;
|
|
7580
|
+
}
|
|
7581
|
+
|
|
7444
7582
|
interface ApplePayMerchantValidationPayload {
|
|
7445
7583
|
readonly discriminator: 'apple_pay_merchant_validation_payload';
|
|
7446
7584
|
readonly validation_url: string;
|
|
@@ -7628,6 +7766,33 @@ declare namespace io.flow.v0.models {
|
|
|
7628
7766
|
readonly display: string;
|
|
7629
7767
|
}
|
|
7630
7768
|
|
|
7769
|
+
interface AuthorizationRetry {
|
|
7770
|
+
readonly id: string;
|
|
7771
|
+
readonly authorization_request_id: string;
|
|
7772
|
+
readonly authorization_id: string;
|
|
7773
|
+
readonly organization_id: string;
|
|
7774
|
+
readonly attempt: number;
|
|
7775
|
+
readonly last_failure_code: string;
|
|
7776
|
+
readonly created_at: string;
|
|
7777
|
+
readonly updated_at: string;
|
|
7778
|
+
}
|
|
7779
|
+
|
|
7780
|
+
interface AuthorizationRetryDeleted {
|
|
7781
|
+
readonly discriminator: 'authorization_retry_deleted';
|
|
7782
|
+
readonly event_id: string;
|
|
7783
|
+
readonly timestamp: string;
|
|
7784
|
+
readonly organization: string;
|
|
7785
|
+
readonly id: string;
|
|
7786
|
+
}
|
|
7787
|
+
|
|
7788
|
+
interface AuthorizationRetryUpserted {
|
|
7789
|
+
readonly discriminator: 'authorization_retry_upserted';
|
|
7790
|
+
readonly event_id: string;
|
|
7791
|
+
readonly timestamp: string;
|
|
7792
|
+
readonly organization: string;
|
|
7793
|
+
readonly authorization_retry: io.flow.v0.models.AuthorizationRetry;
|
|
7794
|
+
}
|
|
7795
|
+
|
|
7631
7796
|
interface AuthorizationStatusChanged {
|
|
7632
7797
|
readonly discriminator: 'authorization_status_changed';
|
|
7633
7798
|
readonly event_id: string;
|
|
@@ -8066,6 +8231,7 @@ declare namespace io.flow.v0.models {
|
|
|
8066
8231
|
readonly processor?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
8067
8232
|
readonly stored_method_usage_step?: io.flow.v0.enums.StoredMethodUsageStep;
|
|
8068
8233
|
readonly authorized_at?: string;
|
|
8234
|
+
readonly authorization_request_id?: string;
|
|
8069
8235
|
}
|
|
8070
8236
|
|
|
8071
8237
|
interface CardAuthorizationDeletedV2 {
|
|
@@ -10589,6 +10755,46 @@ declare namespace io.flow.v0.models {
|
|
|
10589
10755
|
readonly landed_costs: io.flow.v0.models.LaneLandedCost[];
|
|
10590
10756
|
}
|
|
10591
10757
|
|
|
10758
|
+
interface GeItemDeleted {
|
|
10759
|
+
readonly discriminator: 'ge_item_deleted';
|
|
10760
|
+
readonly event_id: string;
|
|
10761
|
+
readonly timestamp: string;
|
|
10762
|
+
readonly organization: string;
|
|
10763
|
+
readonly item: io.flow.v0.models.Item;
|
|
10764
|
+
}
|
|
10765
|
+
|
|
10766
|
+
interface GeItemInserted {
|
|
10767
|
+
readonly discriminator: 'ge_item_inserted';
|
|
10768
|
+
readonly event_id: string;
|
|
10769
|
+
readonly timestamp: string;
|
|
10770
|
+
readonly organization: string;
|
|
10771
|
+
readonly item: io.flow.v0.models.Item;
|
|
10772
|
+
}
|
|
10773
|
+
|
|
10774
|
+
interface GeItemUpdated {
|
|
10775
|
+
readonly discriminator: 'ge_item_updated';
|
|
10776
|
+
readonly event_id: string;
|
|
10777
|
+
readonly timestamp: string;
|
|
10778
|
+
readonly organization: string;
|
|
10779
|
+
readonly item: io.flow.v0.models.Item;
|
|
10780
|
+
}
|
|
10781
|
+
|
|
10782
|
+
interface GeProductRestrictionResultDeleted {
|
|
10783
|
+
readonly discriminator: 'ge_product_restriction_result_deleted';
|
|
10784
|
+
readonly event_id: string;
|
|
10785
|
+
readonly timestamp: string;
|
|
10786
|
+
readonly organization: string;
|
|
10787
|
+
readonly id: string;
|
|
10788
|
+
}
|
|
10789
|
+
|
|
10790
|
+
interface GeProductRestrictionResultUpserted {
|
|
10791
|
+
readonly discriminator: 'ge_product_restriction_result_upserted';
|
|
10792
|
+
readonly event_id: string;
|
|
10793
|
+
readonly timestamp: string;
|
|
10794
|
+
readonly organization: string;
|
|
10795
|
+
readonly ge_product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
|
|
10796
|
+
}
|
|
10797
|
+
|
|
10592
10798
|
interface GenerateLoad {
|
|
10593
10799
|
readonly discriminator: 'generate_load';
|
|
10594
10800
|
readonly event_id: string;
|
|
@@ -11601,14 +11807,6 @@ declare namespace io.flow.v0.models {
|
|
|
11601
11807
|
readonly price: io.flow.v0.models.LocalizedItemPrice;
|
|
11602
11808
|
}
|
|
11603
11809
|
|
|
11604
|
-
interface LocalItemDeleted {
|
|
11605
|
-
readonly discriminator: 'local_item_deleted';
|
|
11606
|
-
readonly event_id: string;
|
|
11607
|
-
readonly timestamp: string;
|
|
11608
|
-
readonly organization: string;
|
|
11609
|
-
readonly local_item: io.flow.v0.models.LocalItem;
|
|
11610
|
-
}
|
|
11611
|
-
|
|
11612
11810
|
interface LocalItemPricing {
|
|
11613
11811
|
readonly price: io.flow.v0.models.LocalizedItemPrice;
|
|
11614
11812
|
readonly vat?: io.flow.v0.models.LocalizedItemVat;
|
|
@@ -11621,14 +11819,6 @@ declare namespace io.flow.v0.models {
|
|
|
11621
11819
|
>;
|
|
11622
11820
|
}
|
|
11623
11821
|
|
|
11624
|
-
interface LocalItemUpserted {
|
|
11625
|
-
readonly discriminator: 'local_item_upserted';
|
|
11626
|
-
readonly event_id: string;
|
|
11627
|
-
readonly timestamp: string;
|
|
11628
|
-
readonly organization: string;
|
|
11629
|
-
readonly local_item: io.flow.v0.models.LocalItem;
|
|
11630
|
-
}
|
|
11631
|
-
|
|
11632
11822
|
interface LocalPriceDetails {
|
|
11633
11823
|
readonly base: io.flow.v0.models.PriceDetails;
|
|
11634
11824
|
readonly local: io.flow.v0.models.PriceDetails;
|
|
@@ -12104,6 +12294,7 @@ declare namespace io.flow.v0.models {
|
|
|
12104
12294
|
readonly processor?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
12105
12295
|
readonly confirmation_details?: io.flow.v0.unions.ConfirmationDetails;
|
|
12106
12296
|
readonly authorized_at?: string;
|
|
12297
|
+
readonly authorization_request_id?: string;
|
|
12107
12298
|
}
|
|
12108
12299
|
|
|
12109
12300
|
interface OnlineAuthorizationDeletedV2 {
|
|
@@ -12180,6 +12371,7 @@ declare namespace io.flow.v0.models {
|
|
|
12180
12371
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
12181
12372
|
readonly destination_contact_details?: io.flow.v0.models.DestinationContactDetail[];
|
|
12182
12373
|
readonly incoterm_summary?: io.flow.v0.models.IncotermSummary;
|
|
12374
|
+
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
12183
12375
|
}
|
|
12184
12376
|
|
|
12185
12377
|
interface OrderAddress {
|
|
@@ -12323,6 +12515,7 @@ declare namespace io.flow.v0.models {
|
|
|
12323
12515
|
readonly authorization_keys?: string[];
|
|
12324
12516
|
readonly options?: io.flow.v0.models.OrderOptions;
|
|
12325
12517
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
12518
|
+
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
12326
12519
|
}
|
|
12327
12520
|
|
|
12328
12521
|
interface OrderFraudStatus {
|
|
@@ -12542,6 +12735,7 @@ declare namespace io.flow.v0.models {
|
|
|
12542
12735
|
readonly authorization_keys?: string[];
|
|
12543
12736
|
readonly options?: io.flow.v0.models.OrderOptions;
|
|
12544
12737
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
12738
|
+
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
12545
12739
|
}
|
|
12546
12740
|
|
|
12547
12741
|
interface OrderReference {
|
|
@@ -14096,10 +14290,6 @@ declare namespace io.flow.v0.models {
|
|
|
14096
14290
|
readonly id: string;
|
|
14097
14291
|
}
|
|
14098
14292
|
|
|
14099
|
-
interface PriceBookItemExportOptions {
|
|
14100
|
-
readonly available_identifiers: io.flow.v0.enums.ItemIdentifier[];
|
|
14101
|
-
}
|
|
14102
|
-
|
|
14103
14293
|
interface PriceBookItemExportType {
|
|
14104
14294
|
readonly discriminator: 'price_book_item_export_type';
|
|
14105
14295
|
readonly price_book_key?: string;
|
|
@@ -14343,29 +14533,6 @@ declare namespace io.flow.v0.models {
|
|
|
14343
14533
|
readonly product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
|
|
14344
14534
|
}
|
|
14345
14535
|
|
|
14346
|
-
interface ProductSellability {
|
|
14347
|
-
readonly organization_id: string;
|
|
14348
|
-
readonly product_id?: string;
|
|
14349
|
-
readonly product_correlation_id: string;
|
|
14350
|
-
readonly restricted_regions: io.flow.v0.models.SellablilityRegionResult[];
|
|
14351
|
-
readonly in_review_regions: io.flow.v0.models.SellablilityRegionResult[];
|
|
14352
|
-
}
|
|
14353
|
-
|
|
14354
|
-
interface ProductSellabilityForm {
|
|
14355
|
-
readonly organization_id: string;
|
|
14356
|
-
readonly product_id?: string;
|
|
14357
|
-
readonly product_correlation_id: string;
|
|
14358
|
-
readonly name: string;
|
|
14359
|
-
readonly price: io.flow.v0.models.ProductSellabilityPrice;
|
|
14360
|
-
readonly description: string;
|
|
14361
|
-
readonly taxonomy_category: io.flow.v0.models.ProductTaxonomyCategory;
|
|
14362
|
-
}
|
|
14363
|
-
|
|
14364
|
-
interface ProductSellabilityPrice {
|
|
14365
|
-
readonly currency: string;
|
|
14366
|
-
readonly amount: number;
|
|
14367
|
-
}
|
|
14368
|
-
|
|
14369
14536
|
interface ProductTaxonomyCategory {
|
|
14370
14537
|
readonly name: string;
|
|
14371
14538
|
readonly full_name: string;
|
|
@@ -15329,11 +15496,6 @@ declare namespace io.flow.v0.models {
|
|
|
15329
15496
|
readonly issuer_options: io.flow.v0.models.IssuerReference[];
|
|
15330
15497
|
}
|
|
15331
15498
|
|
|
15332
|
-
interface SellablilityRegionResult {
|
|
15333
|
-
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
15334
|
-
readonly regions: string[];
|
|
15335
|
-
}
|
|
15336
|
-
|
|
15337
15499
|
interface ServiceReference {
|
|
15338
15500
|
readonly id: string;
|
|
15339
15501
|
}
|
|
@@ -16282,79 +16444,6 @@ declare namespace io.flow.v0.models {
|
|
|
16282
16444
|
readonly available: io.flow.v0.models.SurchargeResponsiblePartyDisplay[];
|
|
16283
16445
|
}
|
|
16284
16446
|
|
|
16285
|
-
interface SyncDuration {
|
|
16286
|
-
readonly unit: io.flow.v0.enums.SyncUnitOfTime;
|
|
16287
|
-
readonly value: number;
|
|
16288
|
-
}
|
|
16289
|
-
|
|
16290
|
-
interface SyncPendingRecord {
|
|
16291
|
-
readonly id: string;
|
|
16292
|
-
readonly stream: io.flow.v0.models.SyncStreamReference;
|
|
16293
|
-
readonly value: string;
|
|
16294
|
-
readonly system: string;
|
|
16295
|
-
}
|
|
16296
|
-
|
|
16297
|
-
interface SyncRecord {
|
|
16298
|
-
readonly id: string;
|
|
16299
|
-
readonly system: string;
|
|
16300
|
-
readonly value: string;
|
|
16301
|
-
readonly stream: io.flow.v0.models.SyncStreamReference;
|
|
16302
|
-
}
|
|
16303
|
-
|
|
16304
|
-
interface SyncRecordFailure {
|
|
16305
|
-
readonly id: string;
|
|
16306
|
-
readonly stream: io.flow.v0.models.SyncStreamReference;
|
|
16307
|
-
readonly value: string;
|
|
16308
|
-
readonly system: string;
|
|
16309
|
-
readonly reason: io.flow.v0.enums.SyncRecordFailureReason;
|
|
16310
|
-
readonly attributes?: Record<string, string>;
|
|
16311
|
-
}
|
|
16312
|
-
|
|
16313
|
-
interface SyncRecordFailureForm {
|
|
16314
|
-
readonly stream_key: string;
|
|
16315
|
-
readonly value: string;
|
|
16316
|
-
readonly system: string;
|
|
16317
|
-
readonly reason: io.flow.v0.enums.SyncRecordFailureReason;
|
|
16318
|
-
readonly attributes?: Record<string, string>;
|
|
16319
|
-
}
|
|
16320
|
-
|
|
16321
|
-
interface SyncRecordForm {
|
|
16322
|
-
readonly stream_key: string;
|
|
16323
|
-
readonly system: string;
|
|
16324
|
-
readonly value: string;
|
|
16325
|
-
}
|
|
16326
|
-
|
|
16327
|
-
interface SyncStream {
|
|
16328
|
-
readonly id: string;
|
|
16329
|
-
readonly key: string;
|
|
16330
|
-
readonly type: io.flow.v0.enums.SyncStreamType;
|
|
16331
|
-
readonly systems: string[];
|
|
16332
|
-
readonly settings: io.flow.v0.models.SyncStreamSettings;
|
|
16333
|
-
}
|
|
16334
|
-
|
|
16335
|
-
interface SyncStreamForm {
|
|
16336
|
-
readonly type: io.flow.v0.enums.SyncStreamType;
|
|
16337
|
-
readonly systems: string[];
|
|
16338
|
-
readonly settings?: io.flow.v0.models.SyncStreamSettingsForm;
|
|
16339
|
-
}
|
|
16340
|
-
|
|
16341
|
-
interface SyncStreamReference {
|
|
16342
|
-
readonly id: string;
|
|
16343
|
-
readonly key: string;
|
|
16344
|
-
}
|
|
16345
|
-
|
|
16346
|
-
interface SyncStreamSettings {
|
|
16347
|
-
readonly pending_record_after: io.flow.v0.models.SyncDuration;
|
|
16348
|
-
readonly warn_after: io.flow.v0.models.SyncDuration;
|
|
16349
|
-
readonly error_after: io.flow.v0.models.SyncDuration;
|
|
16350
|
-
}
|
|
16351
|
-
|
|
16352
|
-
interface SyncStreamSettingsForm {
|
|
16353
|
-
readonly pending_record_after: io.flow.v0.models.SyncDuration;
|
|
16354
|
-
readonly warn_after: io.flow.v0.models.SyncDuration;
|
|
16355
|
-
readonly error_after: io.flow.v0.models.SyncDuration;
|
|
16356
|
-
}
|
|
16357
|
-
|
|
16358
16447
|
interface Tax {
|
|
16359
16448
|
readonly name: string;
|
|
16360
16449
|
readonly rate: number;
|
|
@@ -17265,10 +17354,14 @@ declare namespace io.flow.v0.unions {
|
|
|
17265
17354
|
| io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
17266
17355
|
type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
|
|
17267
17356
|
type Event =
|
|
17357
|
+
| io.flow.v0.models.AuthorizationRetryUpserted
|
|
17358
|
+
| io.flow.v0.models.AuthorizationRetryDeleted
|
|
17268
17359
|
| io.flow.v0.models.TestUpserted
|
|
17269
17360
|
| io.flow.v0.models.GenerateLoad
|
|
17270
17361
|
| io.flow.v0.models.AldoItemUpserted
|
|
17271
17362
|
| io.flow.v0.models.AldoItemDeleted
|
|
17363
|
+
| io.flow.v0.models.AnshItemUpserted
|
|
17364
|
+
| io.flow.v0.models.AnshItemDeleted
|
|
17272
17365
|
| io.flow.v0.models.TransactionUpserted
|
|
17273
17366
|
| io.flow.v0.models.OrganizationTransactionUpserted
|
|
17274
17367
|
| io.flow.v0.models.OrganizationTransactionDeleted
|
|
@@ -17378,6 +17471,11 @@ declare namespace io.flow.v0.unions {
|
|
|
17378
17471
|
| io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted
|
|
17379
17472
|
| io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted
|
|
17380
17473
|
| io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted
|
|
17474
|
+
| io.flow.v0.models.GeItemInserted
|
|
17475
|
+
| io.flow.v0.models.GeItemUpdated
|
|
17476
|
+
| io.flow.v0.models.GeItemDeleted
|
|
17477
|
+
| io.flow.v0.models.GeProductRestrictionResultUpserted
|
|
17478
|
+
| io.flow.v0.models.GeProductRestrictionResultDeleted
|
|
17381
17479
|
| io.flow.v0.models.Hs6CodeUpserted
|
|
17382
17480
|
| io.flow.v0.models.Hs6CodeDeleted
|
|
17383
17481
|
| io.flow.v0.models.Hs10CodeUpserted
|
|
@@ -17397,8 +17495,6 @@ declare namespace io.flow.v0.unions {
|
|
|
17397
17495
|
| io.flow.v0.models.ManifestedLabelDeleted
|
|
17398
17496
|
| io.flow.v0.models.LabelProcessingModificationUpserted
|
|
17399
17497
|
| io.flow.v0.models.LabelProcessingModificationDeleted
|
|
17400
|
-
| io.flow.v0.models.LocalItemUpserted
|
|
17401
|
-
| io.flow.v0.models.LocalItemDeleted
|
|
17402
17498
|
| io.flow.v0.models.MerchantApplicationUpserted
|
|
17403
17499
|
| io.flow.v0.models.MerchantApplicationDeleted
|
|
17404
17500
|
| io.flow.v0.models.CheckoutOptinResponsesUpserted
|
|
@@ -17883,6 +17979,8 @@ export type AllocationV2 = io.flow.v0.models.AllocationV2;
|
|
|
17883
17979
|
export type AmountMargin = io.flow.v0.models.AmountMargin;
|
|
17884
17980
|
export type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
|
|
17885
17981
|
export type AnalyticsExportType = io.flow.v0.models.AnalyticsExportType;
|
|
17982
|
+
export type AnshItemDeleted = io.flow.v0.models.AnshItemDeleted;
|
|
17983
|
+
export type AnshItemUpserted = io.flow.v0.models.AnshItemUpserted;
|
|
17886
17984
|
export type ApplePayMerchantValidationPayload =
|
|
17887
17985
|
io.flow.v0.models.ApplePayMerchantValidationPayload;
|
|
17888
17986
|
export type ApplepaySdkCreateResultActionDetails =
|
|
@@ -17938,6 +18036,11 @@ export type AuthorizationResultActionWait =
|
|
|
17938
18036
|
io.flow.v0.models.AuthorizationResultActionWait;
|
|
17939
18037
|
export type AuthorizationResultDescription =
|
|
17940
18038
|
io.flow.v0.models.AuthorizationResultDescription;
|
|
18039
|
+
export type AuthorizationRetry = io.flow.v0.models.AuthorizationRetry;
|
|
18040
|
+
export type AuthorizationRetryDeleted =
|
|
18041
|
+
io.flow.v0.models.AuthorizationRetryDeleted;
|
|
18042
|
+
export type AuthorizationRetryUpserted =
|
|
18043
|
+
io.flow.v0.models.AuthorizationRetryUpserted;
|
|
17941
18044
|
export type AuthorizationStatus = io.flow.v0.enums.AuthorizationStatus;
|
|
17942
18045
|
export type AuthorizationStatusChanged =
|
|
17943
18046
|
io.flow.v0.models.AuthorizationStatusChanged;
|
|
@@ -18606,6 +18709,13 @@ export type GatewayAuthenticationData =
|
|
|
18606
18709
|
io.flow.v0.unions.GatewayAuthenticationData;
|
|
18607
18710
|
export type GatewayAuthenticationDataForm =
|
|
18608
18711
|
io.flow.v0.unions.GatewayAuthenticationDataForm;
|
|
18712
|
+
export type GeItemDeleted = io.flow.v0.models.GeItemDeleted;
|
|
18713
|
+
export type GeItemInserted = io.flow.v0.models.GeItemInserted;
|
|
18714
|
+
export type GeItemUpdated = io.flow.v0.models.GeItemUpdated;
|
|
18715
|
+
export type GeProductRestrictionResultDeleted =
|
|
18716
|
+
io.flow.v0.models.GeProductRestrictionResultDeleted;
|
|
18717
|
+
export type GeProductRestrictionResultUpserted =
|
|
18718
|
+
io.flow.v0.models.GeProductRestrictionResultUpserted;
|
|
18609
18719
|
export type GenerateLoad = io.flow.v0.models.GenerateLoad;
|
|
18610
18720
|
export type GenericError = io.flow.v0.models.GenericError;
|
|
18611
18721
|
export type GenericErrorCode = io.flow.v0.enums.GenericErrorCode;
|
|
@@ -18793,9 +18903,7 @@ export type Local = io.flow.v0.models.Local;
|
|
|
18793
18903
|
export type LocalItem = io.flow.v0.models.LocalItem;
|
|
18794
18904
|
export type LocalItemAttributePricing =
|
|
18795
18905
|
io.flow.v0.models.LocalItemAttributePricing;
|
|
18796
|
-
export type LocalItemDeleted = io.flow.v0.models.LocalItemDeleted;
|
|
18797
18906
|
export type LocalItemPricing = io.flow.v0.models.LocalItemPricing;
|
|
18798
|
-
export type LocalItemUpserted = io.flow.v0.models.LocalItemUpserted;
|
|
18799
18907
|
export type LocalPriceDetails = io.flow.v0.models.LocalPriceDetails;
|
|
18800
18908
|
export type LocalSession = io.flow.v0.models.LocalSession;
|
|
18801
18909
|
export type Locale = io.flow.v0.models.Locale;
|
|
@@ -18982,6 +19090,7 @@ export type OrderNumberGeneratorUuid =
|
|
|
18982
19090
|
export type OrderNumberReference = io.flow.v0.models.OrderNumberReference;
|
|
18983
19091
|
export type OrderOptions = io.flow.v0.models.OrderOptions;
|
|
18984
19092
|
export type OrderPayment = io.flow.v0.models.OrderPayment;
|
|
19093
|
+
export type OrderPaymentSourceType = io.flow.v0.enums.OrderPaymentSourceType;
|
|
18985
19094
|
export type OrderPaymentType = io.flow.v0.enums.OrderPaymentType;
|
|
18986
19095
|
export type OrderPlaced = io.flow.v0.models.OrderPlaced;
|
|
18987
19096
|
export type OrderPlacedDetails = io.flow.v0.models.OrderPlacedDetails;
|
|
@@ -19394,8 +19503,6 @@ export type PriceBookDeleted = io.flow.v0.models.PriceBookDeleted;
|
|
|
19394
19503
|
export type PriceBookForm = io.flow.v0.models.PriceBookForm;
|
|
19395
19504
|
export type PriceBookItem = io.flow.v0.models.PriceBookItem;
|
|
19396
19505
|
export type PriceBookItemDeleted = io.flow.v0.models.PriceBookItemDeleted;
|
|
19397
|
-
export type PriceBookItemExportOptions =
|
|
19398
|
-
io.flow.v0.models.PriceBookItemExportOptions;
|
|
19399
19506
|
export type PriceBookItemExportType = io.flow.v0.models.PriceBookItemExportType;
|
|
19400
19507
|
export type PriceBookItemForm = io.flow.v0.models.PriceBookItemForm;
|
|
19401
19508
|
export type PriceBookItemQueryForm = io.flow.v0.models.PriceBookItemQueryForm;
|
|
@@ -19438,9 +19545,6 @@ export type ProductRestrictionResultDeleted =
|
|
|
19438
19545
|
export type ProductRestrictionResultUpserted =
|
|
19439
19546
|
io.flow.v0.models.ProductRestrictionResultUpserted;
|
|
19440
19547
|
export type ProductRestrictionRule = io.flow.v0.enums.ProductRestrictionRule;
|
|
19441
|
-
export type ProductSellability = io.flow.v0.models.ProductSellability;
|
|
19442
|
-
export type ProductSellabilityForm = io.flow.v0.models.ProductSellabilityForm;
|
|
19443
|
-
export type ProductSellabilityPrice = io.flow.v0.models.ProductSellabilityPrice;
|
|
19444
19548
|
export type ProductTaxonomyCategory = io.flow.v0.models.ProductTaxonomyCategory;
|
|
19445
19549
|
export type ProductTaxonomyData = io.flow.v0.models.ProductTaxonomyData;
|
|
19446
19550
|
export type ProductUpdated = io.flow.v0.models.ProductUpdated;
|
|
@@ -19599,7 +19703,6 @@ export type Rounding = io.flow.v0.models.Rounding;
|
|
|
19599
19703
|
export type RoundingMethod = io.flow.v0.enums.RoundingMethod;
|
|
19600
19704
|
export type RoundingType = io.flow.v0.enums.RoundingType;
|
|
19601
19705
|
export type RouteAudit = io.flow.v0.models.RouteAudit;
|
|
19602
|
-
export type RuleEffectType = io.flow.v0.enums.RuleEffectType;
|
|
19603
19706
|
export type Schedule = io.flow.v0.models.Schedule;
|
|
19604
19707
|
export type ScheduleExceptionStatus = io.flow.v0.enums.ScheduleExceptionStatus;
|
|
19605
19708
|
export type ScheduledExport = io.flow.v0.models.ScheduledExport;
|
|
@@ -19611,8 +19714,6 @@ export type SecurityRatecardFee = io.flow.v0.models.SecurityRatecardFee;
|
|
|
19611
19714
|
export type SecurityServiceFee = io.flow.v0.models.SecurityServiceFee;
|
|
19612
19715
|
export type SelectIssuerOptionActionDetails =
|
|
19613
19716
|
io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
19614
|
-
export type SellablilityRegionResult =
|
|
19615
|
-
io.flow.v0.models.SellablilityRegionResult;
|
|
19616
19717
|
export type ServiceDescription = io.flow.v0.unions.ServiceDescription;
|
|
19617
19718
|
export type ServiceFee = io.flow.v0.unions.ServiceFee;
|
|
19618
19719
|
export type ServiceReference = io.flow.v0.models.ServiceReference;
|
|
@@ -19822,20 +19923,6 @@ export type SurchargeResponsiblePartyDisplay =
|
|
|
19822
19923
|
io.flow.v0.models.SurchargeResponsiblePartyDisplay;
|
|
19823
19924
|
export type SurchargeSetting = io.flow.v0.models.SurchargeSetting;
|
|
19824
19925
|
export type SurchargeSettingDisplay = io.flow.v0.models.SurchargeSettingDisplay;
|
|
19825
|
-
export type SyncDuration = io.flow.v0.models.SyncDuration;
|
|
19826
|
-
export type SyncPendingRecord = io.flow.v0.models.SyncPendingRecord;
|
|
19827
|
-
export type SyncRecord = io.flow.v0.models.SyncRecord;
|
|
19828
|
-
export type SyncRecordFailure = io.flow.v0.models.SyncRecordFailure;
|
|
19829
|
-
export type SyncRecordFailureForm = io.flow.v0.models.SyncRecordFailureForm;
|
|
19830
|
-
export type SyncRecordFailureReason = io.flow.v0.enums.SyncRecordFailureReason;
|
|
19831
|
-
export type SyncRecordForm = io.flow.v0.models.SyncRecordForm;
|
|
19832
|
-
export type SyncStream = io.flow.v0.models.SyncStream;
|
|
19833
|
-
export type SyncStreamForm = io.flow.v0.models.SyncStreamForm;
|
|
19834
|
-
export type SyncStreamReference = io.flow.v0.models.SyncStreamReference;
|
|
19835
|
-
export type SyncStreamSettings = io.flow.v0.models.SyncStreamSettings;
|
|
19836
|
-
export type SyncStreamSettingsForm = io.flow.v0.models.SyncStreamSettingsForm;
|
|
19837
|
-
export type SyncStreamType = io.flow.v0.enums.SyncStreamType;
|
|
19838
|
-
export type SyncUnitOfTime = io.flow.v0.enums.SyncUnitOfTime;
|
|
19839
19926
|
export type Tax = io.flow.v0.models.Tax;
|
|
19840
19927
|
export type TaxApplicability = io.flow.v0.enums.TaxApplicability;
|
|
19841
19928
|
export type TaxRegistration = io.flow.v0.models.TaxRegistration;
|