@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-internal.ts
CHANGED
|
@@ -1710,6 +1710,17 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1710
1710
|
readonly display: string;
|
|
1711
1711
|
}
|
|
1712
1712
|
|
|
1713
|
+
interface AuthorizationRetry {
|
|
1714
|
+
readonly id: string;
|
|
1715
|
+
readonly authorization_request_id: string;
|
|
1716
|
+
readonly authorization_id: string;
|
|
1717
|
+
readonly organization_id: string;
|
|
1718
|
+
readonly attempt: number;
|
|
1719
|
+
readonly last_failure_code: string;
|
|
1720
|
+
readonly created_at: string;
|
|
1721
|
+
readonly updated_at: string;
|
|
1722
|
+
}
|
|
1723
|
+
|
|
1713
1724
|
interface AuthorizationVersion {
|
|
1714
1725
|
readonly id: string;
|
|
1715
1726
|
readonly timestamp: string;
|
|
@@ -1827,6 +1838,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1827
1838
|
readonly processor?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
|
|
1828
1839
|
readonly stored_method_usage_step?: io.flow.payment.v0.enums.StoredMethodUsageStep;
|
|
1829
1840
|
readonly authorized_at?: string;
|
|
1841
|
+
readonly authorization_request_id?: string;
|
|
1830
1842
|
}
|
|
1831
1843
|
|
|
1832
1844
|
interface CardBrowserActionConfiguration {
|
|
@@ -2108,6 +2120,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2108
2120
|
readonly processor?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
|
|
2109
2121
|
readonly confirmation_details?: io.flow.payment.v0.unions.ConfirmationDetails;
|
|
2110
2122
|
readonly authorized_at?: string;
|
|
2123
|
+
readonly authorization_request_id?: string;
|
|
2111
2124
|
}
|
|
2112
2125
|
|
|
2113
2126
|
interface OnlinePaymentAuthorizationForm {
|
|
@@ -3030,12 +3043,58 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
3030
3043
|
| 'unknown';
|
|
3031
3044
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
3032
3045
|
type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
|
|
3046
|
+
type ReportingReportRunStatus = 'pending' | 'succeeded' | 'failed';
|
|
3047
|
+
type ReportingReportType =
|
|
3048
|
+
| 'ending_balance_reconciliation.itemized.1'
|
|
3049
|
+
| 'ending_balance_reconciliation.itemized.2'
|
|
3050
|
+
| 'ending_balance_reconciliation.itemized.3'
|
|
3051
|
+
| 'ending_balance_reconciliation.itemized.4'
|
|
3052
|
+
| 'payout_reconciliation.itemized.5'
|
|
3053
|
+
| 'payout_reconciliation.by_id.itemized.1'
|
|
3054
|
+
| 'payout_reconciliation.by_id.itemized.2'
|
|
3055
|
+
| 'payout_reconciliation.by_id.itemized.3'
|
|
3056
|
+
| 'payout_reconciliation.by_id.itemized.4'
|
|
3057
|
+
| 'payout_reconciliation.by_id.summary.1'
|
|
3058
|
+
| 'ending_balance_reconciliation.summary.1'
|
|
3059
|
+
| 'payout_reconciliation.itemized.1'
|
|
3060
|
+
| 'payout_reconciliation.itemized.2'
|
|
3061
|
+
| 'payout_reconciliation.itemized.3'
|
|
3062
|
+
| 'payout_reconciliation.itemized.4'
|
|
3063
|
+
| 'payout_reconciliation.summary.1';
|
|
3033
3064
|
type RequestThreeDSecureType = 'automatic' | 'any';
|
|
3034
3065
|
type RequestedCapabilities =
|
|
3035
3066
|
| 'card_payments'
|
|
3036
3067
|
| 'legacy_payments'
|
|
3037
3068
|
| 'transfers';
|
|
3038
3069
|
type SetupFutureUsage = 'on_session' | 'off_session';
|
|
3070
|
+
type ShopifyPaymentStripeEventType =
|
|
3071
|
+
| 'charge.captured'
|
|
3072
|
+
| 'charge.dispute.created'
|
|
3073
|
+
| 'charge.dispute.closed'
|
|
3074
|
+
| 'charge.dispute.funds_reinstated'
|
|
3075
|
+
| 'charge.dispute.funds_withdrawn'
|
|
3076
|
+
| 'charge.dispute.updated'
|
|
3077
|
+
| 'charge.expired'
|
|
3078
|
+
| 'charge.failed'
|
|
3079
|
+
| 'charge.pending'
|
|
3080
|
+
| 'charge.refund.updated'
|
|
3081
|
+
| 'charge.refunded'
|
|
3082
|
+
| 'charge.succeeded'
|
|
3083
|
+
| 'charge.updated'
|
|
3084
|
+
| 'payment_intent.amount_capturable_updated'
|
|
3085
|
+
| 'payment_intent.canceled'
|
|
3086
|
+
| 'payment_intent.created'
|
|
3087
|
+
| 'payment_intent.partially_funded'
|
|
3088
|
+
| 'payment_intent.payment_failed'
|
|
3089
|
+
| 'payment_intent.processing'
|
|
3090
|
+
| 'payment_intent.requires_action'
|
|
3091
|
+
| 'payment_intent.succeeded'
|
|
3092
|
+
| 'transfer.created'
|
|
3093
|
+
| 'transfer.reversed'
|
|
3094
|
+
| 'transfer.updated'
|
|
3095
|
+
| 'reporting.report_run.succeeded'
|
|
3096
|
+
| 'reporting.report_type.updated'
|
|
3097
|
+
| 'reporting.report_type.failed';
|
|
3039
3098
|
type SourceFlow = 'redirect' | 'receiver' | 'code_verification' | 'none';
|
|
3040
3099
|
type SourceStatus =
|
|
3041
3100
|
| 'canceled'
|
|
@@ -3972,12 +4031,76 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3972
4031
|
readonly url: string;
|
|
3973
4032
|
}
|
|
3974
4033
|
|
|
4034
|
+
interface ReportRunParameters {
|
|
4035
|
+
readonly interval_start: number;
|
|
4036
|
+
readonly interval_end: number;
|
|
4037
|
+
readonly columns?: string[];
|
|
4038
|
+
readonly payout?: string;
|
|
4039
|
+
readonly connected_account?: string;
|
|
4040
|
+
readonly reporting_category?: string;
|
|
4041
|
+
}
|
|
4042
|
+
|
|
4043
|
+
interface ReportingReportRun {
|
|
4044
|
+
readonly id: string;
|
|
4045
|
+
readonly object: string;
|
|
4046
|
+
readonly created: number;
|
|
4047
|
+
readonly error?: string;
|
|
4048
|
+
readonly livemode: boolean;
|
|
4049
|
+
readonly status: io.flow.stripe.v0.enums.ReportingReportRunStatus;
|
|
4050
|
+
readonly result?: io.flow.stripe.v0.models.ReportingReportRunResult;
|
|
4051
|
+
readonly succeeded_at?: number;
|
|
4052
|
+
}
|
|
4053
|
+
|
|
4054
|
+
interface ReportingReportRunForm {
|
|
4055
|
+
readonly report_type: io.flow.stripe.v0.enums.ReportingReportType;
|
|
4056
|
+
readonly parameters: io.flow.stripe.v0.models.ReportRunParameters;
|
|
4057
|
+
}
|
|
4058
|
+
|
|
4059
|
+
interface ReportingReportRunResult {
|
|
4060
|
+
readonly id: string;
|
|
4061
|
+
readonly object: string;
|
|
4062
|
+
readonly created: number;
|
|
4063
|
+
readonly expires_at: number;
|
|
4064
|
+
readonly filename: string;
|
|
4065
|
+
readonly links: any /*object*/;
|
|
4066
|
+
readonly purpose: string;
|
|
4067
|
+
readonly size: number;
|
|
4068
|
+
readonly title: string;
|
|
4069
|
+
readonly type: string;
|
|
4070
|
+
readonly url: string;
|
|
4071
|
+
}
|
|
4072
|
+
|
|
4073
|
+
interface ReportingReportRuns {
|
|
4074
|
+
readonly object: string;
|
|
4075
|
+
readonly data: io.flow.stripe.v0.models.ReportingReportRun[];
|
|
4076
|
+
readonly has_more: boolean;
|
|
4077
|
+
readonly url?: string;
|
|
4078
|
+
}
|
|
4079
|
+
|
|
3975
4080
|
interface Shipping {
|
|
3976
4081
|
readonly address: io.flow.stripe.v0.models.Address;
|
|
3977
4082
|
readonly name?: string;
|
|
3978
4083
|
readonly phone?: string;
|
|
3979
4084
|
}
|
|
3980
4085
|
|
|
4086
|
+
interface ShopifyPaymentStripeEvent {
|
|
4087
|
+
readonly id: string;
|
|
4088
|
+
readonly api_version?: string;
|
|
4089
|
+
readonly data: io.flow.stripe.v0.models.ShopifyPaymentStripeEventData;
|
|
4090
|
+
readonly request?: any /*object*/;
|
|
4091
|
+
readonly type: io.flow.stripe.v0.enums.ShopifyPaymentStripeEventType;
|
|
4092
|
+
readonly object: string;
|
|
4093
|
+
readonly account?: string;
|
|
4094
|
+
readonly created: number;
|
|
4095
|
+
readonly livemode: boolean;
|
|
4096
|
+
readonly pending_webhooks: number;
|
|
4097
|
+
}
|
|
4098
|
+
|
|
4099
|
+
interface ShopifyPaymentStripeEventData {
|
|
4100
|
+
readonly object?: any /*object*/;
|
|
4101
|
+
readonly previous_attributes?: any /*object*/;
|
|
4102
|
+
}
|
|
4103
|
+
|
|
3981
4104
|
interface Source {
|
|
3982
4105
|
readonly id: string;
|
|
3983
4106
|
readonly object: string;
|
|
@@ -5407,7 +5530,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
5407
5530
|
readonly transaction_updated_date: string;
|
|
5408
5531
|
readonly transaction_status: io.flow.external.paypal.v1.enums.ReportingTransactionStatus;
|
|
5409
5532
|
readonly transaction_subject?: string;
|
|
5410
|
-
readonly invoice_id
|
|
5533
|
+
readonly invoice_id?: string;
|
|
5411
5534
|
readonly custom_field?: string;
|
|
5412
5535
|
readonly protection_eligibility?: string;
|
|
5413
5536
|
readonly instrument_type?: string;
|
|
@@ -7014,8 +7137,15 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
7014
7137
|
}
|
|
7015
7138
|
|
|
7016
7139
|
interface GraphqlMetafield {
|
|
7140
|
+
readonly id: string;
|
|
7017
7141
|
readonly key: string;
|
|
7018
7142
|
readonly value: string;
|
|
7143
|
+
readonly type?: string;
|
|
7144
|
+
}
|
|
7145
|
+
|
|
7146
|
+
interface GraphqlMetaobject {
|
|
7147
|
+
readonly id: string;
|
|
7148
|
+
readonly displayName: string;
|
|
7019
7149
|
}
|
|
7020
7150
|
|
|
7021
7151
|
interface GraphqlOption {
|
|
@@ -7191,6 +7321,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
7191
7321
|
readonly updated_at: string;
|
|
7192
7322
|
readonly has_variants_that_requires_components?: boolean;
|
|
7193
7323
|
readonly category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
7324
|
+
readonly metafields?: io.flow.shopify.external.v0.models.ProductMetafield[];
|
|
7194
7325
|
}
|
|
7195
7326
|
|
|
7196
7327
|
interface ProductDelete {
|
|
@@ -7208,6 +7339,17 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
7208
7339
|
readonly alt?: string;
|
|
7209
7340
|
}
|
|
7210
7341
|
|
|
7342
|
+
interface ProductMetafield {
|
|
7343
|
+
readonly id: number;
|
|
7344
|
+
readonly namespace: string;
|
|
7345
|
+
readonly key: string;
|
|
7346
|
+
readonly value: string;
|
|
7347
|
+
readonly created_at: string;
|
|
7348
|
+
readonly updated_at: string;
|
|
7349
|
+
readonly type: string;
|
|
7350
|
+
readonly admin_graphql_api_id: string;
|
|
7351
|
+
}
|
|
7352
|
+
|
|
7211
7353
|
interface ProductVariant {
|
|
7212
7354
|
readonly id: number;
|
|
7213
7355
|
readonly sku?: string;
|
|
@@ -10090,6 +10232,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
10090
10232
|
| 'item_out_of_stock'
|
|
10091
10233
|
| 'gift_card_not_accepted'
|
|
10092
10234
|
| 'total_changed';
|
|
10235
|
+
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
10093
10236
|
type OrderPaymentType =
|
|
10094
10237
|
| 'card'
|
|
10095
10238
|
| 'online'
|
|
@@ -10722,6 +10865,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
10722
10865
|
readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
|
|
10723
10866
|
readonly destination_contact_details?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
10724
10867
|
readonly incoterm_summary?: io.flow.experience.v0.models.IncotermSummary;
|
|
10868
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
10725
10869
|
}
|
|
10726
10870
|
|
|
10727
10871
|
interface OrderAddress {
|
|
@@ -10811,6 +10955,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
10811
10955
|
readonly authorization_keys?: string[];
|
|
10812
10956
|
readonly options?: io.flow.experience.v0.models.OrderOptions;
|
|
10813
10957
|
readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
|
|
10958
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
10814
10959
|
}
|
|
10815
10960
|
|
|
10816
10961
|
interface OrderGeo {
|
|
@@ -10922,6 +11067,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
10922
11067
|
readonly authorization_keys?: string[];
|
|
10923
11068
|
readonly options?: io.flow.experience.v0.models.OrderOptions;
|
|
10924
11069
|
readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
|
|
11070
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
10925
11071
|
}
|
|
10926
11072
|
|
|
10927
11073
|
interface OrderReference {
|
|
@@ -12552,7 +12698,9 @@ declare namespace io.flow.tracking.v0.enums {
|
|
|
12552
12698
|
| 'delivered'
|
|
12553
12699
|
| 'exception'
|
|
12554
12700
|
| 'returned'
|
|
12555
|
-
| 'expired'
|
|
12701
|
+
| 'expired'
|
|
12702
|
+
| 'unknown'
|
|
12703
|
+
| 'unmapped';
|
|
12556
12704
|
}
|
|
12557
12705
|
|
|
12558
12706
|
declare namespace io.flow.tracking.v0.models {
|
|
@@ -13654,7 +13802,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
13654
13802
|
| 'virtual_card_refund'
|
|
13655
13803
|
| 'failed_payout'
|
|
13656
13804
|
| 'tax_refund'
|
|
13657
|
-
| '
|
|
13805
|
+
| 'non_l4l_tax_duty_fx'
|
|
13658
13806
|
| 'ge_revenue_share'
|
|
13659
13807
|
| 'tax_duty_delta';
|
|
13660
13808
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
@@ -15570,21 +15718,22 @@ declare namespace io.flow.fraud.v0.unions {
|
|
|
15570
15718
|
|
|
15571
15719
|
declare namespace io.flow.sellability.v0.enums {
|
|
15572
15720
|
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
15721
|
+
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category';
|
|
15573
15722
|
}
|
|
15574
15723
|
|
|
15575
15724
|
declare namespace io.flow.sellability.v0.models {
|
|
15576
15725
|
interface ProductSellability {
|
|
15577
|
-
readonly
|
|
15726
|
+
readonly shop_id: string;
|
|
15578
15727
|
readonly product_id?: string;
|
|
15579
|
-
readonly
|
|
15728
|
+
readonly request_id: string;
|
|
15729
|
+
readonly hs6_code: string;
|
|
15580
15730
|
readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
15581
|
-
readonly in_review_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
15582
15731
|
}
|
|
15583
15732
|
|
|
15584
15733
|
interface ProductSellabilityForm {
|
|
15585
|
-
readonly
|
|
15734
|
+
readonly shop_id: string;
|
|
15586
15735
|
readonly product_id?: string;
|
|
15587
|
-
readonly
|
|
15736
|
+
readonly request_id: string;
|
|
15588
15737
|
readonly name: string;
|
|
15589
15738
|
readonly price: io.flow.sellability.v0.models.ProductSellabilityPrice;
|
|
15590
15739
|
readonly description: string;
|
|
@@ -15596,6 +15745,11 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
15596
15745
|
readonly amount: number;
|
|
15597
15746
|
}
|
|
15598
15747
|
|
|
15748
|
+
interface SellabilityError {
|
|
15749
|
+
readonly code: io.flow.sellability.v0.enums.SellabilityErrorCode;
|
|
15750
|
+
readonly messages: string[];
|
|
15751
|
+
}
|
|
15752
|
+
|
|
15599
15753
|
interface SellablilityRegionResult {
|
|
15600
15754
|
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
15601
15755
|
readonly regions: string[];
|
|
@@ -16162,7 +16316,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16162
16316
|
| 'duty'
|
|
16163
16317
|
| 'trueup'
|
|
16164
16318
|
| 'carrier_charge'
|
|
16165
|
-
| '
|
|
16319
|
+
| 'non_l4l_tax_duty_fx'
|
|
16166
16320
|
| 'tax_refund'
|
|
16167
16321
|
| 'duty_refund'
|
|
16168
16322
|
| 'ge_revenue_share'
|
|
@@ -16312,7 +16466,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16312
16466
|
| 'general'
|
|
16313
16467
|
| 'product'
|
|
16314
16468
|
| 'returns';
|
|
16315
|
-
type DisputeStatus = 'pending' | 'won' | 'lost' | 'expired';
|
|
16469
|
+
type DisputeStatus = 'pending' | 'won' | 'lost' | 'refunded' | 'expired';
|
|
16316
16470
|
type DisputeTransactionType = 'adjustment' | 'dispute';
|
|
16317
16471
|
type DisputeType = 'chargeback';
|
|
16318
16472
|
type DutyCompoundExpressionType = 'sum' | 'max' | 'min';
|
|
@@ -16535,8 +16689,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16535
16689
|
| 'rate_freshness_summary_deleted'
|
|
16536
16690
|
| 'item_harmonization_upserted'
|
|
16537
16691
|
| 'item_harmonization_deleted'
|
|
16538
|
-
| 'harmonization_item_classification_upserted'
|
|
16539
|
-
| 'harmonization_item_classification_deleted'
|
|
16540
16692
|
| 'harmonization_classification_statistics_published'
|
|
16541
16693
|
| 'issuer_upserted'
|
|
16542
16694
|
| 'issuer_deleted'
|
|
@@ -16549,17 +16701,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16549
16701
|
| 'order_validation_deleted'
|
|
16550
16702
|
| 'label_tracking_summary_upserted'
|
|
16551
16703
|
| 'label_tracking_summary_deleted'
|
|
16552
|
-
| 'localized_item_upserted_v2'
|
|
16553
|
-
| 'localized_item_deleted'
|
|
16554
|
-
| 'localized_item_deleted_v2'
|
|
16555
|
-
| 'localized_item_snapshot'
|
|
16556
|
-
| 'localized_price_book_item_upserted'
|
|
16557
|
-
| 'localized_price_book_item_deleted'
|
|
16558
16704
|
| 'logistics_capabilities_upserted'
|
|
16559
16705
|
| 'logistics_capabilities_deleted'
|
|
16560
|
-
| 'feed_upserted'
|
|
16561
|
-
| 'feed_deleted'
|
|
16562
|
-
| 'feeds_export'
|
|
16563
16706
|
| 'localized_item_prices_export_request'
|
|
16564
16707
|
| 'optin_prompt_upserted'
|
|
16565
16708
|
| 'optin_prompt_deleted'
|
|
@@ -16788,6 +16931,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16788
16931
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
16789
16932
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
16790
16933
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
16934
|
+
type LabelEventMedium = 'webhook' | 'pull' | 'post';
|
|
16791
16935
|
type LabelEventSource = 'aftership' | 'carrier' | 'flow';
|
|
16792
16936
|
type LabelRequestErrorHandlingResponsibility =
|
|
16793
16937
|
| 'merchant'
|
|
@@ -16796,7 +16940,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16796
16940
|
| 'globale_cx'
|
|
16797
16941
|
| 'globale_address_repair'
|
|
16798
16942
|
| 'merchant_operations'
|
|
16799
|
-
| 'globale_system'
|
|
16943
|
+
| 'globale_system'
|
|
16944
|
+
| 'carrier';
|
|
16800
16945
|
type LabelRequestResultOrganizationType =
|
|
16801
16946
|
| 'all'
|
|
16802
16947
|
| 'legacy_production'
|
|
@@ -16831,58 +16976,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16831
16976
|
| 'negative_balance_guarantee'
|
|
16832
16977
|
| 'bank_payment_failure'
|
|
16833
16978
|
| 'non_fraud_chargeback';
|
|
16834
|
-
type MarketingGatewayAccountConnectionStatus =
|
|
16835
|
-
| 'not_connected'
|
|
16836
|
-
| 'connecting'
|
|
16837
|
-
| 'connected'
|
|
16838
|
-
| 'disconnecting'
|
|
16839
|
-
| 'disconnected';
|
|
16840
|
-
type MarketingGatewayChannelIntegrationType = 'automated' | 'manual';
|
|
16841
|
-
type MarketingGatewayChannelStatus =
|
|
16842
|
-
| 'not_connected'
|
|
16843
|
-
| 'connecting'
|
|
16844
|
-
| 'connected'
|
|
16845
|
-
| 'disconnecting'
|
|
16846
|
-
| 'disconnected'
|
|
16847
|
-
| 'unavailable';
|
|
16848
|
-
type MarketingGatewayErrorCode =
|
|
16849
|
-
| 'generic_error'
|
|
16850
|
-
| 'google_api_error'
|
|
16851
|
-
| 'facebook_api_error'
|
|
16852
|
-
| 'invalid_oauth_token_error';
|
|
16853
|
-
type MarketingGatewayFacebookTokenStatus = 'unknown' | 'active' | 'expired';
|
|
16854
|
-
type MarketingGatewayFeedDownloadFormat = 'tsv' | 'csv' | 'txt';
|
|
16855
|
-
type MarketingGatewayFeedState =
|
|
16856
|
-
| 'initialized'
|
|
16857
|
-
| 'generated'
|
|
16858
|
-
| 'in_review'
|
|
16859
|
-
| 'rejected'
|
|
16860
|
-
| 'active';
|
|
16861
|
-
type MarketingGatewayPlatform =
|
|
16862
|
-
| 'google'
|
|
16863
|
-
| 'facebook'
|
|
16864
|
-
| 'adroll'
|
|
16865
|
-
| 'aliexpress'
|
|
16866
|
-
| 'amazon'
|
|
16867
|
-
| 'bing'
|
|
16868
|
-
| 'criteo'
|
|
16869
|
-
| 'fruugo'
|
|
16870
|
-
| 'pinterest'
|
|
16871
|
-
| 'rakuten_japan'
|
|
16872
|
-
| 'wish'
|
|
16873
|
-
| 'snapchat'
|
|
16874
|
-
| 'stylight';
|
|
16875
|
-
type MarketingGatewayProductStatus =
|
|
16876
|
-
| 'approved'
|
|
16877
|
-
| 'not_approved'
|
|
16878
|
-
| 'pending'
|
|
16879
|
-
| 'not_found'
|
|
16880
|
-
| 'excluded';
|
|
16881
|
-
type MarketingGatewaySchemaCompatibility =
|
|
16882
|
-
| 'google'
|
|
16883
|
-
| 'facebook_primary'
|
|
16884
|
-
| 'facebook_country_override'
|
|
16885
|
-
| 'supplemental';
|
|
16886
16979
|
type MixedBagWeight = '0' | '1' | '2';
|
|
16887
16980
|
type NatureOfSale =
|
|
16888
16981
|
| 'consumer'
|
|
@@ -16986,6 +17079,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16986
17079
|
| 'unscreened';
|
|
16987
17080
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
16988
17081
|
type Owner = 'flow' | 'organization';
|
|
17082
|
+
type PaymentShortUrlDiscriminator = 'adyen_3ds2';
|
|
16989
17083
|
type PaymentSummaryStatus =
|
|
16990
17084
|
| 'authorized'
|
|
16991
17085
|
| 'canceled'
|
|
@@ -21097,6 +21191,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21097
21191
|
readonly raw_carrier_event_code?: string;
|
|
21098
21192
|
readonly aggregator_status_code?: string;
|
|
21099
21193
|
readonly created_at?: string;
|
|
21194
|
+
readonly source?: io.flow.internal.v0.enums.LabelEventSource;
|
|
21195
|
+
readonly medium?: io.flow.internal.v0.enums.LabelEventMedium;
|
|
21100
21196
|
}
|
|
21101
21197
|
|
|
21102
21198
|
interface ExternalFulfillmentProof {
|
|
@@ -21250,31 +21346,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21250
21346
|
readonly description?: string;
|
|
21251
21347
|
}
|
|
21252
21348
|
|
|
21253
|
-
interface FeedDeleted {
|
|
21254
|
-
readonly discriminator: 'feed_deleted';
|
|
21255
|
-
readonly event_id: string;
|
|
21256
|
-
readonly timestamp: string;
|
|
21257
|
-
readonly organization_id: string;
|
|
21258
|
-
readonly feed: io.flow.internal.v0.models.MarketingGatewayFeed;
|
|
21259
|
-
}
|
|
21260
|
-
|
|
21261
|
-
interface FeedUpserted {
|
|
21262
|
-
readonly discriminator: 'feed_upserted';
|
|
21263
|
-
readonly event_id: string;
|
|
21264
|
-
readonly timestamp: string;
|
|
21265
|
-
readonly organization_id: string;
|
|
21266
|
-
readonly feed: io.flow.internal.v0.models.MarketingGatewayFeed;
|
|
21267
|
-
}
|
|
21268
|
-
|
|
21269
|
-
interface FeedsExport {
|
|
21270
|
-
readonly discriminator: 'feeds_export';
|
|
21271
|
-
readonly event_id: string;
|
|
21272
|
-
readonly timestamp: string;
|
|
21273
|
-
readonly organization: string;
|
|
21274
|
-
readonly export_id: string;
|
|
21275
|
-
readonly feed_ids: string[];
|
|
21276
|
-
}
|
|
21277
|
-
|
|
21278
21349
|
interface Fees {
|
|
21279
21350
|
readonly processing?: io.flow.internal.v0.models.Fee;
|
|
21280
21351
|
readonly rate_lock: io.flow.internal.v0.models.Fee;
|
|
@@ -22191,20 +22262,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22191
22262
|
readonly hs6_description?: string;
|
|
22192
22263
|
}
|
|
22193
22264
|
|
|
22194
|
-
interface HarmonizationItemClassificationDeleted {
|
|
22195
|
-
readonly discriminator: 'harmonization_item_classification_deleted';
|
|
22196
|
-
readonly event_id: string;
|
|
22197
|
-
readonly timestamp: string;
|
|
22198
|
-
readonly harmonization_item_classification: io.flow.internal.v0.models.HarmonizationItemClassification;
|
|
22199
|
-
}
|
|
22200
|
-
|
|
22201
|
-
interface HarmonizationItemClassificationUpserted {
|
|
22202
|
-
readonly discriminator: 'harmonization_item_classification_upserted';
|
|
22203
|
-
readonly event_id: string;
|
|
22204
|
-
readonly timestamp: string;
|
|
22205
|
-
readonly harmonization_item_classification: io.flow.internal.v0.models.HarmonizationItemClassification;
|
|
22206
|
-
}
|
|
22207
|
-
|
|
22208
22265
|
interface HarmonizationItemSummary {
|
|
22209
22266
|
readonly number: string;
|
|
22210
22267
|
readonly product_id?: string;
|
|
@@ -23257,22 +23314,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23257
23314
|
readonly source_localization_id: string;
|
|
23258
23315
|
}
|
|
23259
23316
|
|
|
23260
|
-
interface LocalizedItemDeleted {
|
|
23261
|
-
readonly discriminator: 'localized_item_deleted';
|
|
23262
|
-
readonly event_id: string;
|
|
23263
|
-
readonly timestamp: string;
|
|
23264
|
-
readonly organization: string;
|
|
23265
|
-
readonly number: string;
|
|
23266
|
-
}
|
|
23267
|
-
|
|
23268
|
-
interface LocalizedItemDeletedV2 {
|
|
23269
|
-
readonly discriminator: 'localized_item_deleted_v2';
|
|
23270
|
-
readonly event_id: string;
|
|
23271
|
-
readonly timestamp: string;
|
|
23272
|
-
readonly organization: string;
|
|
23273
|
-
readonly id: string;
|
|
23274
|
-
}
|
|
23275
|
-
|
|
23276
23317
|
interface LocalizedItemPricesExportRequest {
|
|
23277
23318
|
readonly discriminator: 'localized_item_prices_export_request';
|
|
23278
23319
|
readonly event_id: string;
|
|
@@ -23282,43 +23323,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23282
23323
|
readonly since?: string;
|
|
23283
23324
|
}
|
|
23284
23325
|
|
|
23285
|
-
interface LocalizedItemSnapshot {
|
|
23286
|
-
readonly discriminator: 'localized_item_snapshot';
|
|
23287
|
-
readonly event_id: string;
|
|
23288
|
-
readonly timestamp: string;
|
|
23289
|
-
readonly organization: string;
|
|
23290
|
-
readonly subcatalog_id: string;
|
|
23291
|
-
readonly url: string;
|
|
23292
|
-
}
|
|
23293
|
-
|
|
23294
|
-
interface LocalizedItemUpsertedV2 {
|
|
23295
|
-
readonly discriminator: 'localized_item_upserted_v2';
|
|
23296
|
-
readonly event_id: string;
|
|
23297
|
-
readonly timestamp: string;
|
|
23298
|
-
readonly organization: string;
|
|
23299
|
-
readonly id: string;
|
|
23300
|
-
readonly item: io.flow.catalog.v0.models.Item;
|
|
23301
|
-
readonly item_schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
23302
|
-
}
|
|
23303
|
-
|
|
23304
23326
|
interface LocalizedItemsExportSettings {
|
|
23305
23327
|
readonly content_type: io.flow.internal.v0.enums.ExportContentType;
|
|
23306
23328
|
readonly full_export_schedule?: io.flow.internal.v0.unions.ExportSchedule;
|
|
23307
23329
|
readonly delta_export_schedule?: io.flow.internal.v0.unions.ExportSchedule;
|
|
23308
23330
|
}
|
|
23309
23331
|
|
|
23310
|
-
interface LocalizedPriceBookItem {
|
|
23311
|
-
readonly id: string;
|
|
23312
|
-
readonly item_id: string;
|
|
23313
|
-
readonly item_number: string;
|
|
23314
|
-
readonly attributes: Record<string, string>;
|
|
23315
|
-
readonly local?: io.flow.catalog.v0.models.Local;
|
|
23316
|
-
readonly price_book_item_id: string;
|
|
23317
|
-
readonly price_book_key: string;
|
|
23318
|
-
readonly price_book_item_price: io.flow.common.v0.models.Price;
|
|
23319
|
-
readonly schedule: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
23320
|
-
}
|
|
23321
|
-
|
|
23322
23332
|
interface LocalizedPriceBookItemData {
|
|
23323
23333
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
23324
23334
|
readonly experience: io.flow.common.v0.models.ExperienceSummary;
|
|
@@ -23331,22 +23341,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23331
23341
|
readonly price_end_date?: string;
|
|
23332
23342
|
}
|
|
23333
23343
|
|
|
23334
|
-
interface LocalizedPriceBookItemDeleted {
|
|
23335
|
-
readonly discriminator: 'localized_price_book_item_deleted';
|
|
23336
|
-
readonly event_id: string;
|
|
23337
|
-
readonly timestamp: string;
|
|
23338
|
-
readonly organization: string;
|
|
23339
|
-
readonly id: string;
|
|
23340
|
-
}
|
|
23341
|
-
|
|
23342
|
-
interface LocalizedPriceBookItemUpserted {
|
|
23343
|
-
readonly discriminator: 'localized_price_book_item_upserted';
|
|
23344
|
-
readonly event_id: string;
|
|
23345
|
-
readonly timestamp: string;
|
|
23346
|
-
readonly organization: string;
|
|
23347
|
-
readonly item: io.flow.internal.v0.models.LocalizedPriceBookItem;
|
|
23348
|
-
}
|
|
23349
|
-
|
|
23350
23344
|
interface Location {
|
|
23351
23345
|
readonly type: io.flow.internal.v0.enums.ContentType;
|
|
23352
23346
|
readonly url: string;
|
|
@@ -23539,261 +23533,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23539
23533
|
readonly shipping: boolean;
|
|
23540
23534
|
}
|
|
23541
23535
|
|
|
23542
|
-
interface MarketingGatewayChannel {
|
|
23543
|
-
readonly id: string;
|
|
23544
|
-
readonly platform: io.flow.internal.v0.enums.MarketingGatewayPlatform;
|
|
23545
|
-
readonly integration_type: io.flow.internal.v0.enums.MarketingGatewayChannelIntegrationType;
|
|
23546
|
-
readonly status: io.flow.internal.v0.enums.MarketingGatewayChannelStatus;
|
|
23547
|
-
readonly details?: io.flow.internal.v0.unions.MarketingGatewayChannelDetails;
|
|
23548
|
-
readonly error?: io.flow.internal.v0.models.MarketingGatewayError;
|
|
23549
|
-
}
|
|
23550
|
-
|
|
23551
|
-
interface MarketingGatewayChannelConnectionForm {
|
|
23552
|
-
readonly default_feed_source?: io.flow.internal.v0.unions.MarketingGatewayFeedSource;
|
|
23553
|
-
}
|
|
23554
|
-
|
|
23555
|
-
interface MarketingGatewayChannelForm {
|
|
23556
|
-
readonly platform: io.flow.internal.v0.enums.MarketingGatewayPlatform;
|
|
23557
|
-
readonly account_id: number;
|
|
23558
|
-
}
|
|
23559
|
-
|
|
23560
|
-
interface MarketingGatewayChannelSourceSummary {
|
|
23561
|
-
readonly channel: io.flow.internal.v0.enums.MarketingGatewayPlatform;
|
|
23562
|
-
readonly platform: io.flow.internal.v0.enums.MarketingGatewayPlatform;
|
|
23563
|
-
readonly source: io.flow.internal.v0.unions.MarketingGatewaySourceSummary;
|
|
23564
|
-
}
|
|
23565
|
-
|
|
23566
|
-
interface MarketingGatewayDistributionChannelFacebook {
|
|
23567
|
-
readonly discriminator: 'marketing_gateway_distribution_channel_facebook';
|
|
23568
|
-
readonly catalog_id: number;
|
|
23569
|
-
}
|
|
23570
|
-
|
|
23571
|
-
interface MarketingGatewayDistributionChannelGoogle {
|
|
23572
|
-
readonly discriminator: 'marketing_gateway_distribution_channel_google';
|
|
23573
|
-
readonly account_id: number;
|
|
23574
|
-
}
|
|
23575
|
-
|
|
23576
|
-
interface MarketingGatewayError {
|
|
23577
|
-
readonly code: io.flow.internal.v0.enums.MarketingGatewayErrorCode;
|
|
23578
|
-
readonly messages: string[];
|
|
23579
|
-
}
|
|
23580
|
-
|
|
23581
|
-
interface MarketingGatewayFacebookBusiness {
|
|
23582
|
-
readonly business_id: number;
|
|
23583
|
-
readonly name: string;
|
|
23584
|
-
}
|
|
23585
|
-
|
|
23586
|
-
interface MarketingGatewayFacebookBusinessSummary {
|
|
23587
|
-
readonly business_id: number;
|
|
23588
|
-
readonly name: string;
|
|
23589
|
-
}
|
|
23590
|
-
|
|
23591
|
-
interface MarketingGatewayFacebookCatalogForm {
|
|
23592
|
-
readonly catalog_id: number;
|
|
23593
|
-
}
|
|
23594
|
-
|
|
23595
|
-
interface MarketingGatewayFacebookCatalogSummary {
|
|
23596
|
-
readonly catalog_id: number;
|
|
23597
|
-
readonly name: string;
|
|
23598
|
-
readonly item_count: number;
|
|
23599
|
-
}
|
|
23600
|
-
|
|
23601
|
-
interface MarketingGatewayFacebookChannelDetails {
|
|
23602
|
-
readonly discriminator: 'marketing_gateway_facebook_channel_details';
|
|
23603
|
-
readonly catalog_id: number;
|
|
23604
|
-
readonly catalog_name?: string;
|
|
23605
|
-
readonly business_name?: string;
|
|
23606
|
-
readonly datasources?: io.flow.internal.v0.models.MarketingGatewayProductDatasourceSummary[];
|
|
23607
|
-
readonly localized_feed_count?: number;
|
|
23608
|
-
readonly connected_at?: string;
|
|
23609
|
-
readonly token_summary?: io.flow.internal.v0.models.MarketingGatewayFacebookConnectionAccessTokenSummary;
|
|
23610
|
-
}
|
|
23611
|
-
|
|
23612
|
-
interface MarketingGatewayFacebookConnection {
|
|
23613
|
-
readonly organization_id: string;
|
|
23614
|
-
readonly businesses: io.flow.internal.v0.models.MarketingGatewayFacebookBusinessSummary[];
|
|
23615
|
-
}
|
|
23616
|
-
|
|
23617
|
-
interface MarketingGatewayFacebookConnectionAccessTokenSummary {
|
|
23618
|
-
readonly catalog_id?: number;
|
|
23619
|
-
readonly created_at?: number;
|
|
23620
|
-
readonly expires_at?: number;
|
|
23621
|
-
readonly user_id: string;
|
|
23622
|
-
readonly user_email?: string;
|
|
23623
|
-
readonly token_status: io.flow.internal.v0.enums.MarketingGatewayFacebookTokenStatus;
|
|
23624
|
-
}
|
|
23625
|
-
|
|
23626
|
-
interface MarketingGatewayFacebookConnectionDeauth {
|
|
23627
|
-
readonly user_id: number;
|
|
23628
|
-
}
|
|
23629
|
-
|
|
23630
|
-
interface MarketingGatewayFacebookConnectionForm {
|
|
23631
|
-
readonly access_token: string;
|
|
23632
|
-
}
|
|
23633
|
-
|
|
23634
|
-
interface MarketingGatewayFacebookSourceSummary {
|
|
23635
|
-
readonly discriminator: 'marketing_gateway_facebook_source_summary';
|
|
23636
|
-
readonly catalog_id: number;
|
|
23637
|
-
readonly catalog_name: string;
|
|
23638
|
-
readonly business_name: string;
|
|
23639
|
-
readonly country: string;
|
|
23640
|
-
readonly product_count: number;
|
|
23641
|
-
}
|
|
23642
|
-
|
|
23643
|
-
interface MarketingGatewayFeed {
|
|
23644
|
-
readonly id: string;
|
|
23645
|
-
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
23646
|
-
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
23647
|
-
readonly schema: io.flow.internal.v0.models.MarketingGatewaySchemaSummary;
|
|
23648
|
-
readonly filter: io.flow.internal.v0.models.MarketingGatewayFilterSummary;
|
|
23649
|
-
readonly country: string;
|
|
23650
|
-
readonly currency: string;
|
|
23651
|
-
readonly language: string;
|
|
23652
|
-
readonly feed_source: io.flow.internal.v0.unions.MarketingGatewayFeedSource;
|
|
23653
|
-
readonly feed_state: io.flow.internal.v0.enums.MarketingGatewayFeedState;
|
|
23654
|
-
readonly tsv_download_url: string;
|
|
23655
|
-
readonly tsv_channel_download_url?: string;
|
|
23656
|
-
readonly created_at: string;
|
|
23657
|
-
readonly updated_at?: string;
|
|
23658
|
-
readonly item_count?: number;
|
|
23659
|
-
readonly platform_feed_id?: string;
|
|
23660
|
-
}
|
|
23661
|
-
|
|
23662
|
-
interface MarketingGatewayFeedExportForm {
|
|
23663
|
-
readonly feed_ids: string[];
|
|
23664
|
-
readonly emails: string[];
|
|
23665
|
-
}
|
|
23666
|
-
|
|
23667
|
-
interface MarketingGatewayFeedForm {
|
|
23668
|
-
readonly schema_id: string;
|
|
23669
|
-
readonly filter_id: string;
|
|
23670
|
-
readonly country: string;
|
|
23671
|
-
readonly currency: string;
|
|
23672
|
-
readonly language: string;
|
|
23673
|
-
readonly feed_source: io.flow.internal.v0.unions.MarketingGatewayFeedSource;
|
|
23674
|
-
readonly distribution_channel?: io.flow.internal.v0.unions.MarketingGatewayDistributionChannel;
|
|
23675
|
-
}
|
|
23676
|
-
|
|
23677
|
-
interface MarketingGatewayFeedFormRequest {
|
|
23678
|
-
readonly feed_source: io.flow.internal.v0.unions.MarketingGatewayFeedSource;
|
|
23679
|
-
readonly channel_id?: string;
|
|
23680
|
-
readonly schema_compatibility?: io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility;
|
|
23681
|
-
}
|
|
23682
|
-
|
|
23683
|
-
interface MarketingGatewayFeedSourceFacebook {
|
|
23684
|
-
readonly discriminator: 'marketing_gateway_feed_source_facebook';
|
|
23685
|
-
readonly catalog_id: number;
|
|
23686
|
-
readonly feed_id: number;
|
|
23687
|
-
readonly name: string;
|
|
23688
|
-
readonly country: string;
|
|
23689
|
-
readonly currency: string;
|
|
23690
|
-
readonly language: string;
|
|
23691
|
-
readonly item_count?: number;
|
|
23692
|
-
readonly last_uploaded_at?: string;
|
|
23693
|
-
readonly feed_status?: io.flow.internal.v0.enums.MarketingGatewayFeedState;
|
|
23694
|
-
}
|
|
23695
|
-
|
|
23696
|
-
interface MarketingGatewayFeedSourceGoogle {
|
|
23697
|
-
readonly discriminator: 'marketing_gateway_feed_source_google';
|
|
23698
|
-
readonly account_id: number;
|
|
23699
|
-
readonly name: string;
|
|
23700
|
-
readonly country: string;
|
|
23701
|
-
readonly currency: string;
|
|
23702
|
-
readonly language: string;
|
|
23703
|
-
readonly item_count?: number;
|
|
23704
|
-
readonly last_uploaded_at?: string;
|
|
23705
|
-
}
|
|
23706
|
-
|
|
23707
|
-
interface MarketingGatewayFilterSummary {
|
|
23708
|
-
readonly id: string;
|
|
23709
|
-
readonly name: string;
|
|
23710
|
-
}
|
|
23711
|
-
|
|
23712
|
-
interface MarketingGatewayFlowSourceSummary {
|
|
23713
|
-
readonly discriminator: 'marketing_gateway_flow_source_summary';
|
|
23714
|
-
readonly item_count: number;
|
|
23715
|
-
}
|
|
23716
|
-
|
|
23717
|
-
interface MarketingGatewayGoogleAccountForm {
|
|
23718
|
-
readonly account_id: number;
|
|
23719
|
-
}
|
|
23720
|
-
|
|
23721
|
-
interface MarketingGatewayGoogleAccountSummary {
|
|
23722
|
-
readonly account_id: number;
|
|
23723
|
-
readonly id?: string;
|
|
23724
|
-
readonly name: string;
|
|
23725
|
-
readonly website_url: string;
|
|
23726
|
-
readonly domestic_feeds_count: number;
|
|
23727
|
-
}
|
|
23728
|
-
|
|
23729
|
-
interface MarketingGatewayGoogleChannelDetails {
|
|
23730
|
-
readonly discriminator: 'marketing_gateway_google_channel_details';
|
|
23731
|
-
readonly account_id: number;
|
|
23732
|
-
readonly account_name?: string;
|
|
23733
|
-
readonly datasources?: io.flow.internal.v0.models.MarketingGatewayProductDatasourceSummary[];
|
|
23734
|
-
readonly localized_feed_count?: number;
|
|
23735
|
-
readonly connected_at?: string;
|
|
23736
|
-
}
|
|
23737
|
-
|
|
23738
|
-
interface MarketingGatewayGoogleConnection {
|
|
23739
|
-
readonly status: io.flow.internal.v0.enums.MarketingGatewayAccountConnectionStatus;
|
|
23740
|
-
readonly accounts?: io.flow.internal.v0.models.MarketingGatewayGoogleAccountSummary[];
|
|
23741
|
-
}
|
|
23742
|
-
|
|
23743
|
-
interface MarketingGatewayGoogleConnectionForm {
|
|
23744
|
-
readonly access_token: string;
|
|
23745
|
-
readonly refresh_token: string;
|
|
23746
|
-
}
|
|
23747
|
-
|
|
23748
|
-
interface MarketingGatewayGoogleItem {
|
|
23749
|
-
readonly discriminator: 'marketing_gateway_google_item';
|
|
23750
|
-
readonly id: string;
|
|
23751
|
-
readonly title?: string;
|
|
23752
|
-
readonly image_link?: string;
|
|
23753
|
-
readonly brand?: string;
|
|
23754
|
-
readonly google_product_category?: string;
|
|
23755
|
-
readonly link?: string;
|
|
23756
|
-
readonly price?: string;
|
|
23757
|
-
readonly sale_price?: string;
|
|
23758
|
-
readonly shipping_price?: string;
|
|
23759
|
-
}
|
|
23760
|
-
|
|
23761
|
-
interface MarketingGatewayGoogleSourceSummary {
|
|
23762
|
-
readonly discriminator: 'marketing_gateway_google_source_summary';
|
|
23763
|
-
readonly account_id: number;
|
|
23764
|
-
readonly countries: string[];
|
|
23765
|
-
readonly product_count: number;
|
|
23766
|
-
}
|
|
23767
|
-
|
|
23768
|
-
interface MarketingGatewayLocalizedItem {
|
|
23769
|
-
readonly source: io.flow.internal.v0.unions.MarketingGatewayItem;
|
|
23770
|
-
readonly localized: io.flow.internal.v0.unions.MarketingGatewayItem;
|
|
23771
|
-
}
|
|
23772
|
-
|
|
23773
|
-
interface MarketingGatewayNewChannelRequestForm {
|
|
23774
|
-
readonly requested_by_user_id: string;
|
|
23775
|
-
readonly channel_name: string;
|
|
23776
|
-
}
|
|
23777
|
-
|
|
23778
|
-
interface MarketingGatewayProductDatasourceSummary {
|
|
23779
|
-
readonly name: string;
|
|
23780
|
-
readonly country?: string;
|
|
23781
|
-
readonly product_count?: number;
|
|
23782
|
-
}
|
|
23783
|
-
|
|
23784
|
-
interface MarketingGatewaySchemaSummary {
|
|
23785
|
-
readonly id: string;
|
|
23786
|
-
readonly name: string;
|
|
23787
|
-
readonly schema_compatibility: io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility;
|
|
23788
|
-
}
|
|
23789
|
-
|
|
23790
|
-
interface MarketingGatewaySupportedChannelDetails {
|
|
23791
|
-
readonly discriminator: 'marketing_gateway_supported_channel_details';
|
|
23792
|
-
readonly datasources?: io.flow.internal.v0.models.MarketingGatewayProductDatasourceSummary[];
|
|
23793
|
-
readonly localized_feed_count?: number;
|
|
23794
|
-
readonly connected_at?: string;
|
|
23795
|
-
}
|
|
23796
|
-
|
|
23797
23536
|
interface MarketsOrder {
|
|
23798
23537
|
readonly shopify_order: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
23799
23538
|
readonly flow_authorization?: io.flow.payment.v0.unions.Authorization;
|
|
@@ -23986,6 +23725,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23986
23725
|
readonly account: io.flow.internal.v0.models.ReportAccount;
|
|
23987
23726
|
}
|
|
23988
23727
|
|
|
23728
|
+
interface NonL4LTaxDutyFxTransaction {
|
|
23729
|
+
readonly discriminator: 'non_l4l_tax_duty_fx_transaction';
|
|
23730
|
+
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
23731
|
+
readonly fx: io.flow.internal.v0.models.Fee;
|
|
23732
|
+
readonly id: string;
|
|
23733
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
23734
|
+
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
23735
|
+
readonly posted_at?: string;
|
|
23736
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
23737
|
+
readonly description: string;
|
|
23738
|
+
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
23739
|
+
readonly created_at: string;
|
|
23740
|
+
}
|
|
23741
|
+
|
|
23989
23742
|
interface Notification {
|
|
23990
23743
|
readonly order: io.flow.internal.v0.models.Decision;
|
|
23991
23744
|
}
|
|
@@ -24266,20 +24019,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24266
24019
|
readonly center?: io.flow.fulfillment.v0.models.CenterSummary;
|
|
24267
24020
|
}
|
|
24268
24021
|
|
|
24269
|
-
interface OrderFxTransaction {
|
|
24270
|
-
readonly discriminator: 'order_fx_transaction';
|
|
24271
|
-
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
24272
|
-
readonly fx: io.flow.internal.v0.models.Fee;
|
|
24273
|
-
readonly id: string;
|
|
24274
|
-
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
24275
|
-
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
24276
|
-
readonly posted_at?: string;
|
|
24277
|
-
readonly value: io.flow.common.v0.models.Price;
|
|
24278
|
-
readonly description: string;
|
|
24279
|
-
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
24280
|
-
readonly created_at: string;
|
|
24281
|
-
}
|
|
24282
|
-
|
|
24283
24022
|
interface OrderNote {
|
|
24284
24023
|
readonly id: string;
|
|
24285
24024
|
readonly note: string;
|
|
@@ -25230,6 +24969,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25230
24969
|
readonly merchant: io.flow.internal.v0.unions.ProcessorMerchant;
|
|
25231
24970
|
}
|
|
25232
24971
|
|
|
24972
|
+
interface PaymentShortUrl {
|
|
24973
|
+
readonly id: string;
|
|
24974
|
+
readonly key: string;
|
|
24975
|
+
readonly original_url: string;
|
|
24976
|
+
readonly organization_id: string;
|
|
24977
|
+
readonly discriminator: io.flow.internal.v0.enums.PaymentShortUrlDiscriminator;
|
|
24978
|
+
readonly created_at: string;
|
|
24979
|
+
readonly updated_at: string;
|
|
24980
|
+
readonly expires_at: string;
|
|
24981
|
+
}
|
|
24982
|
+
|
|
25233
24983
|
interface PaymentSummary {
|
|
25234
24984
|
readonly psp: number;
|
|
25235
24985
|
readonly credit: number;
|
|
@@ -26877,7 +26627,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26877
26627
|
readonly negative_keywords: string[];
|
|
26878
26628
|
readonly value_threshold_usd?: number;
|
|
26879
26629
|
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
26880
|
-
readonly effects?: string[];
|
|
26881
26630
|
}
|
|
26882
26631
|
|
|
26883
26632
|
interface RestrictionRuleDecisionForm {
|
|
@@ -26895,6 +26644,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26895
26644
|
|
|
26896
26645
|
interface RestrictionRuleEffect {
|
|
26897
26646
|
readonly id: string;
|
|
26647
|
+
readonly rule_id: string;
|
|
26898
26648
|
readonly effect: io.flow.sellability.v0.enums.RuleEffectType;
|
|
26899
26649
|
readonly regions: string[];
|
|
26900
26650
|
readonly description?: string;
|
|
@@ -26908,6 +26658,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26908
26658
|
}
|
|
26909
26659
|
|
|
26910
26660
|
interface RestrictionRuleEffectForm {
|
|
26661
|
+
readonly rule_id: string;
|
|
26911
26662
|
readonly effect: io.flow.sellability.v0.enums.RuleEffectType;
|
|
26912
26663
|
readonly regions: string[];
|
|
26913
26664
|
readonly description?: string;
|
|
@@ -26929,7 +26680,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26929
26680
|
readonly negative_keywords: string[];
|
|
26930
26681
|
readonly value_threshold_usd?: number;
|
|
26931
26682
|
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
26932
|
-
readonly effects?: string[];
|
|
26933
26683
|
}
|
|
26934
26684
|
|
|
26935
26685
|
interface RestrictionRuleMetadata {
|
|
@@ -27287,13 +27037,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27287
27037
|
readonly customer_id: string;
|
|
27288
27038
|
}
|
|
27289
27039
|
|
|
27290
|
-
interface ShawnRoundtableWorkshopRate {
|
|
27291
|
-
readonly origin_country: string;
|
|
27292
|
-
readonly destination_country: string;
|
|
27293
|
-
readonly weight: number;
|
|
27294
|
-
readonly amount: number;
|
|
27295
|
-
}
|
|
27296
|
-
|
|
27297
27040
|
interface ShippedItemValue {
|
|
27298
27041
|
readonly item: io.flow.common.v0.models.CatalogItemReference;
|
|
27299
27042
|
readonly taxes: io.flow.common.v0.models.PriceWithBase;
|
|
@@ -27969,6 +27712,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27969
27712
|
interface ShopifyProductUpdateWebhookEvent {
|
|
27970
27713
|
readonly id: string;
|
|
27971
27714
|
readonly product: io.flow.shopify.external.v0.models.Product;
|
|
27715
|
+
readonly domain: string;
|
|
27716
|
+
readonly api_version: string;
|
|
27972
27717
|
}
|
|
27973
27718
|
|
|
27974
27719
|
interface ShopifyProductWrapper {
|
|
@@ -28746,6 +28491,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28746
28491
|
readonly category_code?: string;
|
|
28747
28492
|
}
|
|
28748
28493
|
|
|
28494
|
+
interface TaxDutyDeltaMetadataActual {
|
|
28495
|
+
readonly processing: io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
|
|
28496
|
+
}
|
|
28497
|
+
|
|
28498
|
+
interface TaxDutyDeltaMetadataActualProcessing {
|
|
28499
|
+
readonly capture: io.flow.common.v0.models.Money;
|
|
28500
|
+
readonly fees: io.flow.common.v0.models.Money;
|
|
28501
|
+
readonly transfer: io.flow.common.v0.models.Money;
|
|
28502
|
+
readonly total: io.flow.common.v0.models.Money;
|
|
28503
|
+
}
|
|
28504
|
+
|
|
28505
|
+
interface TaxDutyDeltaMetadataExpected {
|
|
28506
|
+
readonly processing: io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
|
|
28507
|
+
}
|
|
28508
|
+
|
|
28509
|
+
interface TaxDutyDeltaMetadataExpectedProcessing {
|
|
28510
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
28511
|
+
readonly duty: io.flow.common.v0.models.Money;
|
|
28512
|
+
readonly total: io.flow.common.v0.models.Money;
|
|
28513
|
+
}
|
|
28514
|
+
|
|
28749
28515
|
interface TaxDutyDeltaTransaction {
|
|
28750
28516
|
readonly discriminator: 'tax_duty_delta_transaction';
|
|
28751
28517
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -29756,8 +29522,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29756
29522
|
| io.flow.internal.v0.models.RateFreshnessSummaryDeleted
|
|
29757
29523
|
| io.flow.internal.v0.models.ItemHarmonizationUpserted
|
|
29758
29524
|
| io.flow.internal.v0.models.ItemHarmonizationDeleted
|
|
29759
|
-
| io.flow.internal.v0.models.HarmonizationItemClassificationUpserted
|
|
29760
|
-
| io.flow.internal.v0.models.HarmonizationItemClassificationDeleted
|
|
29761
29525
|
| io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished
|
|
29762
29526
|
| io.flow.internal.v0.models.IssuerUpserted
|
|
29763
29527
|
| io.flow.internal.v0.models.IssuerDeleted
|
|
@@ -29770,17 +29534,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29770
29534
|
| io.flow.internal.v0.models.OrderValidationDeleted
|
|
29771
29535
|
| io.flow.internal.v0.models.LabelTrackingSummaryUpserted
|
|
29772
29536
|
| io.flow.internal.v0.models.LabelTrackingSummaryDeleted
|
|
29773
|
-
| io.flow.internal.v0.models.LocalizedItemUpsertedV2
|
|
29774
|
-
| io.flow.internal.v0.models.LocalizedItemDeleted
|
|
29775
|
-
| io.flow.internal.v0.models.LocalizedItemDeletedV2
|
|
29776
|
-
| io.flow.internal.v0.models.LocalizedItemSnapshot
|
|
29777
|
-
| io.flow.internal.v0.models.LocalizedPriceBookItemUpserted
|
|
29778
|
-
| io.flow.internal.v0.models.LocalizedPriceBookItemDeleted
|
|
29779
29537
|
| io.flow.internal.v0.models.LogisticsCapabilitiesUpserted
|
|
29780
29538
|
| io.flow.internal.v0.models.LogisticsCapabilitiesDeleted
|
|
29781
|
-
| io.flow.internal.v0.models.FeedUpserted
|
|
29782
|
-
| io.flow.internal.v0.models.FeedDeleted
|
|
29783
|
-
| io.flow.internal.v0.models.FeedsExport
|
|
29784
29539
|
| io.flow.internal.v0.models.LocalizedItemPricesExportRequest
|
|
29785
29540
|
| io.flow.internal.v0.models.OptinPromptUpserted
|
|
29786
29541
|
| io.flow.internal.v0.models.OptinPromptDeleted
|
|
@@ -30011,22 +29766,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30011
29766
|
type LocalizableContent =
|
|
30012
29767
|
| io.flow.internal.v0.models.LocalizableContentReference
|
|
30013
29768
|
| io.flow.internal.v0.models.Localization;
|
|
30014
|
-
type MarketingGatewayChannelDetails =
|
|
30015
|
-
| io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails
|
|
30016
|
-
| io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails
|
|
30017
|
-
| io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
|
|
30018
|
-
type MarketingGatewayDistributionChannel =
|
|
30019
|
-
| io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle
|
|
30020
|
-
| io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook;
|
|
30021
|
-
type MarketingGatewayFeedSource =
|
|
30022
|
-
| io.flow.internal.v0.models.MarketingGatewayFeedSourceGoogle
|
|
30023
|
-
| io.flow.internal.v0.models.MarketingGatewayFeedSourceFacebook;
|
|
30024
|
-
type MarketingGatewayItem =
|
|
30025
|
-
io.flow.internal.v0.models.MarketingGatewayGoogleItem;
|
|
30026
|
-
type MarketingGatewaySourceSummary =
|
|
30027
|
-
| io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary
|
|
30028
|
-
| io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary
|
|
30029
|
-
| io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary;
|
|
30030
29769
|
type OptinPromptDisplay =
|
|
30031
29770
|
io.flow.internal.v0.models.OptinPromptCheckoutDisplay;
|
|
30032
29771
|
type OrderActionForm =
|
|
@@ -30157,7 +29896,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30157
29896
|
| io.flow.internal.v0.models.DutyTransaction
|
|
30158
29897
|
| io.flow.internal.v0.models.TrueupTransaction
|
|
30159
29898
|
| io.flow.internal.v0.models.CarrierChargeTransaction
|
|
30160
|
-
| io.flow.internal.v0.models.
|
|
29899
|
+
| io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction
|
|
30161
29900
|
| io.flow.internal.v0.models.GeRevenueShareTransaction
|
|
30162
29901
|
| io.flow.internal.v0.models.TaxDutyDeltaTransaction;
|
|
30163
29902
|
type TransactionSummary =
|
|
@@ -31226,9 +30965,6 @@ export type FeatureValueResult = io.flow.internal.v0.models.FeatureValueResult;
|
|
|
31226
30965
|
export type Fedex = io.flow.internal.v0.models.Fedex;
|
|
31227
30966
|
export type FedexCrossborder = io.flow.internal.v0.models.FedexCrossborder;
|
|
31228
30967
|
export type Fee = io.flow.internal.v0.models.Fee;
|
|
31229
|
-
export type FeedDeleted = io.flow.internal.v0.models.FeedDeleted;
|
|
31230
|
-
export type FeedUpserted = io.flow.internal.v0.models.FeedUpserted;
|
|
31231
|
-
export type FeedsExport = io.flow.internal.v0.models.FeedsExport;
|
|
31232
30968
|
export type Fees = io.flow.internal.v0.models.Fees;
|
|
31233
30969
|
export type FeesSource = io.flow.internal.v0.enums.FeesSource;
|
|
31234
30970
|
export type FinalEstimate = io.flow.internal.v0.models.FinalEstimate;
|
|
@@ -31452,10 +31188,6 @@ export type HarmonizationDecisionSource =
|
|
|
31452
31188
|
io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
31453
31189
|
export type HarmonizationItemClassification =
|
|
31454
31190
|
io.flow.internal.v0.models.HarmonizationItemClassification;
|
|
31455
|
-
export type HarmonizationItemClassificationDeleted =
|
|
31456
|
-
io.flow.internal.v0.models.HarmonizationItemClassificationDeleted;
|
|
31457
|
-
export type HarmonizationItemClassificationUpserted =
|
|
31458
|
-
io.flow.internal.v0.models.HarmonizationItemClassificationUpserted;
|
|
31459
31191
|
export type HarmonizationItemSummary =
|
|
31460
31192
|
io.flow.internal.v0.models.HarmonizationItemSummary;
|
|
31461
31193
|
export type HarmonizationMlModelSummary =
|
|
@@ -31620,6 +31352,7 @@ export type LabelCreationRequestForm =
|
|
|
31620
31352
|
io.flow.internal.v0.models.LabelCreationRequestForm;
|
|
31621
31353
|
export type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
|
|
31622
31354
|
export type LabelDestination = io.flow.internal.v0.models.LabelDestination;
|
|
31355
|
+
export type LabelEventMedium = io.flow.internal.v0.enums.LabelEventMedium;
|
|
31623
31356
|
export type LabelEventSource = io.flow.internal.v0.enums.LabelEventSource;
|
|
31624
31357
|
export type LabelGenerationSettings =
|
|
31625
31358
|
io.flow.internal.v0.models.LabelGenerationSettings;
|
|
@@ -31703,26 +31436,12 @@ export type LocalizedContentForm =
|
|
|
31703
31436
|
io.flow.internal.v0.models.LocalizedContentForm;
|
|
31704
31437
|
export type LocalizedContentUpserted =
|
|
31705
31438
|
io.flow.internal.v0.models.LocalizedContentUpserted;
|
|
31706
|
-
export type LocalizedItemDeleted =
|
|
31707
|
-
io.flow.internal.v0.models.LocalizedItemDeleted;
|
|
31708
|
-
export type LocalizedItemDeletedV2 =
|
|
31709
|
-
io.flow.internal.v0.models.LocalizedItemDeletedV2;
|
|
31710
31439
|
export type LocalizedItemPricesExportRequest =
|
|
31711
31440
|
io.flow.internal.v0.models.LocalizedItemPricesExportRequest;
|
|
31712
|
-
export type LocalizedItemSnapshot =
|
|
31713
|
-
io.flow.internal.v0.models.LocalizedItemSnapshot;
|
|
31714
|
-
export type LocalizedItemUpsertedV2 =
|
|
31715
|
-
io.flow.internal.v0.models.LocalizedItemUpsertedV2;
|
|
31716
31441
|
export type LocalizedItemsExportSettings =
|
|
31717
31442
|
io.flow.internal.v0.models.LocalizedItemsExportSettings;
|
|
31718
|
-
export type LocalizedPriceBookItem =
|
|
31719
|
-
io.flow.internal.v0.models.LocalizedPriceBookItem;
|
|
31720
31443
|
export type LocalizedPriceBookItemData =
|
|
31721
31444
|
io.flow.internal.v0.models.LocalizedPriceBookItemData;
|
|
31722
|
-
export type LocalizedPriceBookItemDeleted =
|
|
31723
|
-
io.flow.internal.v0.models.LocalizedPriceBookItemDeleted;
|
|
31724
|
-
export type LocalizedPriceBookItemUpserted =
|
|
31725
|
-
io.flow.internal.v0.models.LocalizedPriceBookItemUpserted;
|
|
31726
31445
|
export type Location = io.flow.internal.v0.models.Location;
|
|
31727
31446
|
export type LogisticsCapabilities =
|
|
31728
31447
|
io.flow.internal.v0.models.LogisticsCapabilities;
|
|
@@ -31775,110 +31494,6 @@ export type ManualTransactionForm =
|
|
|
31775
31494
|
export type ManualTransactionFormOrder =
|
|
31776
31495
|
io.flow.internal.v0.models.ManualTransactionFormOrder;
|
|
31777
31496
|
export type MarkedAsFinal = io.flow.internal.v0.models.MarkedAsFinal;
|
|
31778
|
-
export type MarketingGatewayAccountConnectionStatus =
|
|
31779
|
-
io.flow.internal.v0.enums.MarketingGatewayAccountConnectionStatus;
|
|
31780
|
-
export type MarketingGatewayChannel =
|
|
31781
|
-
io.flow.internal.v0.models.MarketingGatewayChannel;
|
|
31782
|
-
export type MarketingGatewayChannelConnectionForm =
|
|
31783
|
-
io.flow.internal.v0.models.MarketingGatewayChannelConnectionForm;
|
|
31784
|
-
export type MarketingGatewayChannelDetails =
|
|
31785
|
-
io.flow.internal.v0.unions.MarketingGatewayChannelDetails;
|
|
31786
|
-
export type MarketingGatewayChannelForm =
|
|
31787
|
-
io.flow.internal.v0.models.MarketingGatewayChannelForm;
|
|
31788
|
-
export type MarketingGatewayChannelIntegrationType =
|
|
31789
|
-
io.flow.internal.v0.enums.MarketingGatewayChannelIntegrationType;
|
|
31790
|
-
export type MarketingGatewayChannelSourceSummary =
|
|
31791
|
-
io.flow.internal.v0.models.MarketingGatewayChannelSourceSummary;
|
|
31792
|
-
export type MarketingGatewayChannelStatus =
|
|
31793
|
-
io.flow.internal.v0.enums.MarketingGatewayChannelStatus;
|
|
31794
|
-
export type MarketingGatewayDistributionChannel =
|
|
31795
|
-
io.flow.internal.v0.unions.MarketingGatewayDistributionChannel;
|
|
31796
|
-
export type MarketingGatewayDistributionChannelFacebook =
|
|
31797
|
-
io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook;
|
|
31798
|
-
export type MarketingGatewayDistributionChannelGoogle =
|
|
31799
|
-
io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle;
|
|
31800
|
-
export type MarketingGatewayError =
|
|
31801
|
-
io.flow.internal.v0.models.MarketingGatewayError;
|
|
31802
|
-
export type MarketingGatewayErrorCode =
|
|
31803
|
-
io.flow.internal.v0.enums.MarketingGatewayErrorCode;
|
|
31804
|
-
export type MarketingGatewayFacebookBusiness =
|
|
31805
|
-
io.flow.internal.v0.models.MarketingGatewayFacebookBusiness;
|
|
31806
|
-
export type MarketingGatewayFacebookBusinessSummary =
|
|
31807
|
-
io.flow.internal.v0.models.MarketingGatewayFacebookBusinessSummary;
|
|
31808
|
-
export type MarketingGatewayFacebookCatalogForm =
|
|
31809
|
-
io.flow.internal.v0.models.MarketingGatewayFacebookCatalogForm;
|
|
31810
|
-
export type MarketingGatewayFacebookCatalogSummary =
|
|
31811
|
-
io.flow.internal.v0.models.MarketingGatewayFacebookCatalogSummary;
|
|
31812
|
-
export type MarketingGatewayFacebookChannelDetails =
|
|
31813
|
-
io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails;
|
|
31814
|
-
export type MarketingGatewayFacebookConnection =
|
|
31815
|
-
io.flow.internal.v0.models.MarketingGatewayFacebookConnection;
|
|
31816
|
-
export type MarketingGatewayFacebookConnectionAccessTokenSummary =
|
|
31817
|
-
io.flow.internal.v0.models.MarketingGatewayFacebookConnectionAccessTokenSummary;
|
|
31818
|
-
export type MarketingGatewayFacebookConnectionDeauth =
|
|
31819
|
-
io.flow.internal.v0.models.MarketingGatewayFacebookConnectionDeauth;
|
|
31820
|
-
export type MarketingGatewayFacebookConnectionForm =
|
|
31821
|
-
io.flow.internal.v0.models.MarketingGatewayFacebookConnectionForm;
|
|
31822
|
-
export type MarketingGatewayFacebookSourceSummary =
|
|
31823
|
-
io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary;
|
|
31824
|
-
export type MarketingGatewayFacebookTokenStatus =
|
|
31825
|
-
io.flow.internal.v0.enums.MarketingGatewayFacebookTokenStatus;
|
|
31826
|
-
export type MarketingGatewayFeed =
|
|
31827
|
-
io.flow.internal.v0.models.MarketingGatewayFeed;
|
|
31828
|
-
export type MarketingGatewayFeedDownloadFormat =
|
|
31829
|
-
io.flow.internal.v0.enums.MarketingGatewayFeedDownloadFormat;
|
|
31830
|
-
export type MarketingGatewayFeedExportForm =
|
|
31831
|
-
io.flow.internal.v0.models.MarketingGatewayFeedExportForm;
|
|
31832
|
-
export type MarketingGatewayFeedForm =
|
|
31833
|
-
io.flow.internal.v0.models.MarketingGatewayFeedForm;
|
|
31834
|
-
export type MarketingGatewayFeedFormRequest =
|
|
31835
|
-
io.flow.internal.v0.models.MarketingGatewayFeedFormRequest;
|
|
31836
|
-
export type MarketingGatewayFeedSource =
|
|
31837
|
-
io.flow.internal.v0.unions.MarketingGatewayFeedSource;
|
|
31838
|
-
export type MarketingGatewayFeedSourceFacebook =
|
|
31839
|
-
io.flow.internal.v0.models.MarketingGatewayFeedSourceFacebook;
|
|
31840
|
-
export type MarketingGatewayFeedSourceGoogle =
|
|
31841
|
-
io.flow.internal.v0.models.MarketingGatewayFeedSourceGoogle;
|
|
31842
|
-
export type MarketingGatewayFeedState =
|
|
31843
|
-
io.flow.internal.v0.enums.MarketingGatewayFeedState;
|
|
31844
|
-
export type MarketingGatewayFilterSummary =
|
|
31845
|
-
io.flow.internal.v0.models.MarketingGatewayFilterSummary;
|
|
31846
|
-
export type MarketingGatewayFlowSourceSummary =
|
|
31847
|
-
io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary;
|
|
31848
|
-
export type MarketingGatewayGoogleAccountForm =
|
|
31849
|
-
io.flow.internal.v0.models.MarketingGatewayGoogleAccountForm;
|
|
31850
|
-
export type MarketingGatewayGoogleAccountSummary =
|
|
31851
|
-
io.flow.internal.v0.models.MarketingGatewayGoogleAccountSummary;
|
|
31852
|
-
export type MarketingGatewayGoogleChannelDetails =
|
|
31853
|
-
io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails;
|
|
31854
|
-
export type MarketingGatewayGoogleConnection =
|
|
31855
|
-
io.flow.internal.v0.models.MarketingGatewayGoogleConnection;
|
|
31856
|
-
export type MarketingGatewayGoogleConnectionForm =
|
|
31857
|
-
io.flow.internal.v0.models.MarketingGatewayGoogleConnectionForm;
|
|
31858
|
-
export type MarketingGatewayGoogleItem =
|
|
31859
|
-
io.flow.internal.v0.models.MarketingGatewayGoogleItem;
|
|
31860
|
-
export type MarketingGatewayGoogleSourceSummary =
|
|
31861
|
-
io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary;
|
|
31862
|
-
export type MarketingGatewayItem =
|
|
31863
|
-
io.flow.internal.v0.unions.MarketingGatewayItem;
|
|
31864
|
-
export type MarketingGatewayLocalizedItem =
|
|
31865
|
-
io.flow.internal.v0.models.MarketingGatewayLocalizedItem;
|
|
31866
|
-
export type MarketingGatewayNewChannelRequestForm =
|
|
31867
|
-
io.flow.internal.v0.models.MarketingGatewayNewChannelRequestForm;
|
|
31868
|
-
export type MarketingGatewayPlatform =
|
|
31869
|
-
io.flow.internal.v0.enums.MarketingGatewayPlatform;
|
|
31870
|
-
export type MarketingGatewayProductDatasourceSummary =
|
|
31871
|
-
io.flow.internal.v0.models.MarketingGatewayProductDatasourceSummary;
|
|
31872
|
-
export type MarketingGatewayProductStatus =
|
|
31873
|
-
io.flow.internal.v0.enums.MarketingGatewayProductStatus;
|
|
31874
|
-
export type MarketingGatewaySchemaCompatibility =
|
|
31875
|
-
io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility;
|
|
31876
|
-
export type MarketingGatewaySchemaSummary =
|
|
31877
|
-
io.flow.internal.v0.models.MarketingGatewaySchemaSummary;
|
|
31878
|
-
export type MarketingGatewaySourceSummary =
|
|
31879
|
-
io.flow.internal.v0.unions.MarketingGatewaySourceSummary;
|
|
31880
|
-
export type MarketingGatewaySupportedChannelDetails =
|
|
31881
|
-
io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
|
|
31882
31497
|
export type MarketsOrder = io.flow.internal.v0.models.MarketsOrder;
|
|
31883
31498
|
export type MarketsOrderSummary =
|
|
31884
31499
|
io.flow.internal.v0.models.MarketsOrderSummary;
|
|
@@ -31929,6 +31544,8 @@ export type NoLiabilityReasonCode =
|
|
|
31929
31544
|
io.flow.internal.v0.enums.NoLiabilityReasonCode;
|
|
31930
31545
|
export type NonChannelPaymentBankAccount =
|
|
31931
31546
|
io.flow.internal.v0.models.NonChannelPaymentBankAccount;
|
|
31547
|
+
export type NonL4LTaxDutyFxTransaction =
|
|
31548
|
+
io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction;
|
|
31932
31549
|
export type Notification = io.flow.internal.v0.models.Notification;
|
|
31933
31550
|
export type OnboardingAuditMessage =
|
|
31934
31551
|
io.flow.internal.v0.models.OnboardingAuditMessage;
|
|
@@ -32015,7 +31632,6 @@ export type OrderFulfillmentDeleted =
|
|
|
32015
31632
|
io.flow.internal.v0.models.OrderFulfillmentDeleted;
|
|
32016
31633
|
export type OrderFulfillmentUpserted =
|
|
32017
31634
|
io.flow.internal.v0.models.OrderFulfillmentUpserted;
|
|
32018
|
-
export type OrderFxTransaction = io.flow.internal.v0.models.OrderFxTransaction;
|
|
32019
31635
|
export type OrderLifecycleEvent = io.flow.internal.v0.enums.OrderLifecycleEvent;
|
|
32020
31636
|
export type OrderNote = io.flow.internal.v0.models.OrderNote;
|
|
32021
31637
|
export type OrderNoteForm = io.flow.internal.v0.models.OrderNoteForm;
|
|
@@ -32272,6 +31888,9 @@ export type PaymentProcessorMerchantDeleted =
|
|
|
32272
31888
|
export type PaymentProcessorMerchantUpserted =
|
|
32273
31889
|
io.flow.internal.v0.models.PaymentProcessorMerchantUpserted;
|
|
32274
31890
|
export type PaymentRedirect = io.flow.internal.v0.unions.PaymentRedirect;
|
|
31891
|
+
export type PaymentShortUrl = io.flow.internal.v0.models.PaymentShortUrl;
|
|
31892
|
+
export type PaymentShortUrlDiscriminator =
|
|
31893
|
+
io.flow.internal.v0.enums.PaymentShortUrlDiscriminator;
|
|
32275
31894
|
export type PaymentSummary = io.flow.internal.v0.models.PaymentSummary;
|
|
32276
31895
|
export type PaymentSummaryDetails =
|
|
32277
31896
|
io.flow.internal.v0.unions.PaymentSummaryDetails;
|
|
@@ -32771,8 +32390,6 @@ export type SessionRollout = io.flow.internal.v0.models.SessionRollout;
|
|
|
32771
32390
|
export type SessionRolloutForm = io.flow.internal.v0.models.SessionRolloutForm;
|
|
32772
32391
|
export type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
32773
32392
|
export type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
32774
|
-
export type ShawnRoundtableWorkshopRate =
|
|
32775
|
-
io.flow.internal.v0.models.ShawnRoundtableWorkshopRate;
|
|
32776
32393
|
export type ShippedItemValue = io.flow.internal.v0.models.ShippedItemValue;
|
|
32777
32394
|
export type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
32778
32395
|
export type ShippingMethodReference =
|
|
@@ -33196,6 +32813,14 @@ export type TaxCalculationLineItem =
|
|
|
33196
32813
|
io.flow.internal.v0.models.TaxCalculationLineItem;
|
|
33197
32814
|
export type TaxCalculationLineItemForm =
|
|
33198
32815
|
io.flow.internal.v0.models.TaxCalculationLineItemForm;
|
|
32816
|
+
export type TaxDutyDeltaMetadataActual =
|
|
32817
|
+
io.flow.internal.v0.models.TaxDutyDeltaMetadataActual;
|
|
32818
|
+
export type TaxDutyDeltaMetadataActualProcessing =
|
|
32819
|
+
io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
|
|
32820
|
+
export type TaxDutyDeltaMetadataExpected =
|
|
32821
|
+
io.flow.internal.v0.models.TaxDutyDeltaMetadataExpected;
|
|
32822
|
+
export type TaxDutyDeltaMetadataExpectedProcessing =
|
|
32823
|
+
io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
|
|
33199
32824
|
export type TaxDutyDeltaTransaction =
|
|
33200
32825
|
io.flow.internal.v0.models.TaxDutyDeltaTransaction;
|
|
33201
32826
|
export type TaxParty = io.flow.internal.v0.enums.TaxParty;
|