@flowio/types 11.24.107 → 11.24.108
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 +143 -283
- package/dist/api.d.ts +16 -164
- package/package.json +2 -2
- package/src/api-internal.ts +222 -345
- package/src/api.ts +28 -230
package/src/api-internal.ts
CHANGED
|
@@ -1099,6 +1099,24 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
1099
1099
|
| io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken;
|
|
1100
1100
|
}
|
|
1101
1101
|
|
|
1102
|
+
declare namespace io.flow.channel.currency.v0.models {
|
|
1103
|
+
interface ChannelCurrencyPair {
|
|
1104
|
+
readonly id: string;
|
|
1105
|
+
readonly base: string;
|
|
1106
|
+
readonly target: string;
|
|
1107
|
+
readonly rate: io.flow.channel.currency.v0.models.ChannelCurrencyRate;
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
interface ChannelCurrencyRate {
|
|
1111
|
+
readonly id: string;
|
|
1112
|
+
readonly value: number;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
interface ChannelRate {
|
|
1116
|
+
readonly placeholder?: string;
|
|
1117
|
+
}
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1102
1120
|
declare namespace io.flow.error.v0.enums {
|
|
1103
1121
|
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
1104
1122
|
}
|
|
@@ -3957,6 +3975,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3957
3975
|
readonly transfer_group?: string;
|
|
3958
3976
|
}
|
|
3959
3977
|
|
|
3978
|
+
interface PaymentIntents {
|
|
3979
|
+
readonly object: string;
|
|
3980
|
+
readonly data: io.flow.stripe.v0.models.PaymentIntent[];
|
|
3981
|
+
readonly has_more: boolean;
|
|
3982
|
+
readonly url?: string;
|
|
3983
|
+
}
|
|
3984
|
+
|
|
3960
3985
|
interface PaymentMethod {
|
|
3961
3986
|
readonly id: string;
|
|
3962
3987
|
readonly object: string;
|
|
@@ -6556,6 +6581,56 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
6556
6581
|
| 'visa'
|
|
6557
6582
|
| 'wechatpay'
|
|
6558
6583
|
| 'unknowncard';
|
|
6584
|
+
type PaymentRecordType =
|
|
6585
|
+
| 'Authorised'
|
|
6586
|
+
| 'AuthorisedPending'
|
|
6587
|
+
| 'Cancelled'
|
|
6588
|
+
| 'CaptureFailed'
|
|
6589
|
+
| 'Chargeback'
|
|
6590
|
+
| 'SecondChargeback'
|
|
6591
|
+
| 'ChargebackExternally'
|
|
6592
|
+
| 'ChargebackExternallyWithInfo'
|
|
6593
|
+
| 'ChargebackReversed'
|
|
6594
|
+
| 'ChargebackReversedExternallyWithInfo'
|
|
6595
|
+
| 'Error'
|
|
6596
|
+
| 'Expired'
|
|
6597
|
+
| 'PaidOut'
|
|
6598
|
+
| 'PaidOutExternally'
|
|
6599
|
+
| 'PaidOutExternallyWithInfo'
|
|
6600
|
+
| 'PaidOutReversed'
|
|
6601
|
+
| 'PayoutAuthorised'
|
|
6602
|
+
| 'PayoutError'
|
|
6603
|
+
| 'PayoutFailed'
|
|
6604
|
+
| 'Received'
|
|
6605
|
+
| 'ReceivedPayout'
|
|
6606
|
+
| 'RefundAuthorised'
|
|
6607
|
+
| 'Refunded'
|
|
6608
|
+
| 'RefundedBulk'
|
|
6609
|
+
| 'RefundedExternally'
|
|
6610
|
+
| 'RefundedExternallyWithInfo'
|
|
6611
|
+
| 'RefundFailed'
|
|
6612
|
+
| 'RefundedInInstallments'
|
|
6613
|
+
| 'RefundedInstallment'
|
|
6614
|
+
| 'RefundedReversed'
|
|
6615
|
+
| 'RefundNotProcessed'
|
|
6616
|
+
| 'Refused'
|
|
6617
|
+
| 'RefusedPayout'
|
|
6618
|
+
| 'Retried'
|
|
6619
|
+
| 'SentForPayout'
|
|
6620
|
+
| 'SentForRefund'
|
|
6621
|
+
| 'SentForSettle'
|
|
6622
|
+
| 'Settled'
|
|
6623
|
+
| 'SettledBulk'
|
|
6624
|
+
| 'SettledExternally'
|
|
6625
|
+
| 'SettledExternallyWithInfo'
|
|
6626
|
+
| 'SettledInInstallments'
|
|
6627
|
+
| 'SettledInstallment'
|
|
6628
|
+
| 'SettledReversed'
|
|
6629
|
+
| 'SuspendInstallment'
|
|
6630
|
+
| 'AdvancedInstallment'
|
|
6631
|
+
| 'AdvancedInstallmentCancelled'
|
|
6632
|
+
| 'OpenInstallment'
|
|
6633
|
+
| 'CloseInstallment';
|
|
6559
6634
|
type RecurringProcessingModel =
|
|
6560
6635
|
| 'Subscription'
|
|
6561
6636
|
| 'CardOnFile'
|
|
@@ -6718,9 +6793,9 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
6718
6793
|
}
|
|
6719
6794
|
|
|
6720
6795
|
interface ChargebackNotificationAdditionalData {
|
|
6721
|
-
readonly chargebackReasonCode
|
|
6796
|
+
readonly chargebackReasonCode?: string;
|
|
6722
6797
|
readonly modificationMerchantReferences: string;
|
|
6723
|
-
readonly chargebackSchemeCode
|
|
6798
|
+
readonly chargebackSchemeCode?: string;
|
|
6724
6799
|
readonly defensePeriodEndsAt?: string;
|
|
6725
6800
|
readonly disputeStatus?: io.flow.adyen.v0.enums.DisputeStatus;
|
|
6726
6801
|
readonly defendable?: string;
|
|
@@ -9224,7 +9299,6 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
9224
9299
|
}
|
|
9225
9300
|
|
|
9226
9301
|
interface OrderEditSummary {
|
|
9227
|
-
readonly external_order_edit_reference: string;
|
|
9228
9302
|
readonly edited_at: string;
|
|
9229
9303
|
}
|
|
9230
9304
|
}
|
|
@@ -10136,19 +10210,6 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
10136
10210
|
readonly shopify_markets_order: io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
|
|
10137
10211
|
}
|
|
10138
10212
|
|
|
10139
|
-
interface ShopifyMarketsOrderEditSummaryData {
|
|
10140
|
-
readonly channel_order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
10141
|
-
readonly edited_at: string;
|
|
10142
|
-
}
|
|
10143
|
-
|
|
10144
|
-
interface ShopifyMarketsOrderEditSummaryPublished {
|
|
10145
|
-
readonly discriminator: 'shopify_markets_order_edit_summary_published';
|
|
10146
|
-
readonly event_id: string;
|
|
10147
|
-
readonly timestamp: string;
|
|
10148
|
-
readonly organization: string;
|
|
10149
|
-
readonly data: io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderEditSummaryData;
|
|
10150
|
-
}
|
|
10151
|
-
|
|
10152
10213
|
interface ShopifyMarketsOrderUpserted {
|
|
10153
10214
|
readonly discriminator: 'shopify_markets_order_upserted';
|
|
10154
10215
|
readonly event_id: string;
|
|
@@ -10242,7 +10303,6 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
10242
10303
|
| io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted
|
|
10243
10304
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted
|
|
10244
10305
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted
|
|
10245
|
-
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderEditSummaryPublished
|
|
10246
10306
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished
|
|
10247
10307
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted
|
|
10248
10308
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted;
|
|
@@ -12113,30 +12173,6 @@ declare namespace io.flow.catalog.exclusion.v0.models {
|
|
|
12113
12173
|
}
|
|
12114
12174
|
}
|
|
12115
12175
|
|
|
12116
|
-
declare namespace io.flow.session.context.v0.models {
|
|
12117
|
-
interface Context {
|
|
12118
|
-
readonly id: string;
|
|
12119
|
-
readonly experiments: io.flow.session.context.v0.models.SessionContextExperiment[];
|
|
12120
|
-
}
|
|
12121
|
-
|
|
12122
|
-
interface ContextForm {
|
|
12123
|
-
readonly experiments: io.flow.session.context.v0.models.SessionContextExperiment[];
|
|
12124
|
-
}
|
|
12125
|
-
|
|
12126
|
-
interface ContextReference {
|
|
12127
|
-
readonly id: string;
|
|
12128
|
-
}
|
|
12129
|
-
|
|
12130
|
-
interface ExperimentVariant {
|
|
12131
|
-
readonly key: string;
|
|
12132
|
-
}
|
|
12133
|
-
|
|
12134
|
-
interface SessionContextExperiment {
|
|
12135
|
-
readonly key: string;
|
|
12136
|
-
readonly variant?: io.flow.session.context.v0.models.ExperimentVariant;
|
|
12137
|
-
}
|
|
12138
|
-
}
|
|
12139
|
-
|
|
12140
12176
|
declare namespace io.flow.crypto.v0.enums {
|
|
12141
12177
|
type ErrorType =
|
|
12142
12178
|
| 'authentication_error'
|
|
@@ -12759,6 +12795,7 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
12759
12795
|
readonly timestamp: string;
|
|
12760
12796
|
readonly description?: string;
|
|
12761
12797
|
readonly aggregator_status_code?: string;
|
|
12798
|
+
readonly created_at?: string;
|
|
12762
12799
|
}
|
|
12763
12800
|
|
|
12764
12801
|
interface TrackingEventForm {
|
|
@@ -15911,7 +15948,6 @@ declare namespace io.flow.session.v0.models {
|
|
|
15911
15948
|
readonly language: io.flow.reference.v0.models.Language;
|
|
15912
15949
|
readonly locale: io.flow.reference.v0.models.Locale;
|
|
15913
15950
|
readonly experience: io.flow.experience.v0.models.ExperienceGeo;
|
|
15914
|
-
readonly experiment?: io.flow.session.v0.models.SessionExperiment;
|
|
15915
15951
|
}
|
|
15916
15952
|
|
|
15917
15953
|
interface OrganizationSession {
|
|
@@ -15927,8 +15963,6 @@ declare namespace io.flow.session.v0.models {
|
|
|
15927
15963
|
readonly geo?: io.flow.session.v0.models.SessionGeo;
|
|
15928
15964
|
readonly experience?: io.flow.experience.v0.models.ExperienceGeo;
|
|
15929
15965
|
readonly format?: io.flow.session.v0.models.SessionFormat;
|
|
15930
|
-
readonly experiment?: io.flow.session.v0.models.SessionExperiment;
|
|
15931
|
-
readonly context?: io.flow.session.context.v0.models.ContextReference;
|
|
15932
15966
|
}
|
|
15933
15967
|
|
|
15934
15968
|
interface OrganizationSessionAuthorization {
|
|
@@ -15946,25 +15980,6 @@ declare namespace io.flow.session.v0.models {
|
|
|
15946
15980
|
readonly label_formatters: io.flow.common.v0.enums.CurrencyLabelFormatter[];
|
|
15947
15981
|
}
|
|
15948
15982
|
|
|
15949
|
-
interface SessionExperiment {
|
|
15950
|
-
readonly key: string;
|
|
15951
|
-
readonly variant?: io.flow.session.v0.models.SessionExperimentVariant;
|
|
15952
|
-
}
|
|
15953
|
-
|
|
15954
|
-
interface SessionExperimentForm {
|
|
15955
|
-
readonly key: string;
|
|
15956
|
-
readonly variant?: io.flow.session.v0.models.SessionExperimentVariantForm;
|
|
15957
|
-
}
|
|
15958
|
-
|
|
15959
|
-
interface SessionExperimentVariant {
|
|
15960
|
-
readonly key: string;
|
|
15961
|
-
readonly name: string;
|
|
15962
|
-
}
|
|
15963
|
-
|
|
15964
|
-
interface SessionExperimentVariantForm {
|
|
15965
|
-
readonly key: string;
|
|
15966
|
-
}
|
|
15967
|
-
|
|
15968
15983
|
interface SessionExpirationConfig {
|
|
15969
15984
|
readonly unit: io.flow.common.v0.enums.UnitOfTime;
|
|
15970
15985
|
readonly value: number;
|
|
@@ -16058,207 +16073,6 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
16058
16073
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoIta;
|
|
16059
16074
|
}
|
|
16060
16075
|
|
|
16061
|
-
declare namespace io.flow.experiment.internal.v0.enums {
|
|
16062
|
-
type ExperimentDiscriminatorKey = 'experience' | 'feature';
|
|
16063
|
-
type Scope = 'organization' | 'global';
|
|
16064
|
-
type SignificanceAction =
|
|
16065
|
-
| 'end_and_implement_winner'
|
|
16066
|
-
| 'end_and_revert'
|
|
16067
|
-
| 'do_nothing';
|
|
16068
|
-
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
16069
|
-
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
16070
|
-
}
|
|
16071
|
-
|
|
16072
|
-
declare namespace io.flow.experiment.internal.v0.models {
|
|
16073
|
-
interface DailyExperimentResults {
|
|
16074
|
-
readonly id: string;
|
|
16075
|
-
readonly day: string;
|
|
16076
|
-
readonly experiment_key: string;
|
|
16077
|
-
readonly experiment_variant_key: string;
|
|
16078
|
-
readonly visitor_count: number;
|
|
16079
|
-
readonly visitors_with_transactions_count: number;
|
|
16080
|
-
readonly conversion_rate: number;
|
|
16081
|
-
readonly lower_bound: number;
|
|
16082
|
-
readonly upper_bound: number;
|
|
16083
|
-
readonly probability_of_being_best?: number;
|
|
16084
|
-
readonly currency?: string;
|
|
16085
|
-
readonly average_order_value?: number;
|
|
16086
|
-
readonly revenue_generated?: number;
|
|
16087
|
-
readonly total_order_count?: number;
|
|
16088
|
-
readonly conversion_rate_uplift?: number;
|
|
16089
|
-
readonly average_order_value_uplift?: number;
|
|
16090
|
-
readonly revenue_generated_uplift?: number;
|
|
16091
|
-
}
|
|
16092
|
-
|
|
16093
|
-
interface ExperienceExperiment {
|
|
16094
|
-
readonly discriminator: 'experience';
|
|
16095
|
-
readonly id: string;
|
|
16096
|
-
readonly key: string;
|
|
16097
|
-
readonly name: string;
|
|
16098
|
-
readonly description?: string;
|
|
16099
|
-
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
16100
|
-
readonly emails: string[];
|
|
16101
|
-
readonly started_at?: string;
|
|
16102
|
-
readonly ended_at?: string;
|
|
16103
|
-
readonly variants: io.flow.experiment.internal.v0.models.ExperienceVariant[];
|
|
16104
|
-
readonly transitions?: io.flow.experiment.internal.v0.enums.Status[];
|
|
16105
|
-
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
16106
|
-
}
|
|
16107
|
-
|
|
16108
|
-
interface ExperienceVariant {
|
|
16109
|
-
readonly discriminator: 'experience_variant';
|
|
16110
|
-
readonly experience: io.flow.experiment.internal.v0.models.ExperienceVariantSummary;
|
|
16111
|
-
readonly traffic_percentage: number;
|
|
16112
|
-
readonly experiment_results?: io.flow.experiment.internal.v0.models.ExperimentResults;
|
|
16113
|
-
}
|
|
16114
|
-
|
|
16115
|
-
interface ExperienceVariantForm {
|
|
16116
|
-
readonly discriminator: 'experience';
|
|
16117
|
-
readonly key: string;
|
|
16118
|
-
readonly traffic_percentage: number;
|
|
16119
|
-
}
|
|
16120
|
-
|
|
16121
|
-
interface ExperienceVariantSummary {
|
|
16122
|
-
readonly key: string;
|
|
16123
|
-
readonly name?: string;
|
|
16124
|
-
}
|
|
16125
|
-
|
|
16126
|
-
interface ExperimentForm {
|
|
16127
|
-
readonly name: string;
|
|
16128
|
-
readonly description?: string;
|
|
16129
|
-
readonly emails: string[];
|
|
16130
|
-
readonly variants: io.flow.experiment.internal.v0.unions.VariantForm[];
|
|
16131
|
-
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
16132
|
-
readonly session_query?: string;
|
|
16133
|
-
}
|
|
16134
|
-
|
|
16135
|
-
interface ExperimentFormDefault {
|
|
16136
|
-
readonly discriminator: io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminator;
|
|
16137
|
-
readonly variants?: io.flow.experiment.internal.v0.models.ExperimentFormDefaultVariant[];
|
|
16138
|
-
}
|
|
16139
|
-
|
|
16140
|
-
interface ExperimentFormDefaultDiscriminator {
|
|
16141
|
-
readonly key: io.flow.experiment.internal.v0.enums.ExperimentDiscriminatorKey;
|
|
16142
|
-
readonly values: io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminatorValue[];
|
|
16143
|
-
}
|
|
16144
|
-
|
|
16145
|
-
interface ExperimentFormDefaultDiscriminatorValue {
|
|
16146
|
-
readonly key: string;
|
|
16147
|
-
readonly name: string;
|
|
16148
|
-
readonly scope: io.flow.experiment.internal.v0.enums.Scope;
|
|
16149
|
-
}
|
|
16150
|
-
|
|
16151
|
-
interface ExperimentFormDefaultVariant {
|
|
16152
|
-
readonly key: string;
|
|
16153
|
-
readonly name: string;
|
|
16154
|
-
readonly traffic_percentage?: number;
|
|
16155
|
-
}
|
|
16156
|
-
|
|
16157
|
-
interface ExperimentMilestone {
|
|
16158
|
-
readonly id: string;
|
|
16159
|
-
readonly experiment: io.flow.experiment.internal.v0.models.ExperimentReference;
|
|
16160
|
-
readonly timestamp: string;
|
|
16161
|
-
readonly description: string;
|
|
16162
|
-
}
|
|
16163
|
-
|
|
16164
|
-
interface ExperimentMilestoneForm {
|
|
16165
|
-
readonly timestamp?: string;
|
|
16166
|
-
readonly description: string;
|
|
16167
|
-
}
|
|
16168
|
-
|
|
16169
|
-
interface ExperimentReference {
|
|
16170
|
-
readonly key: string;
|
|
16171
|
-
}
|
|
16172
|
-
|
|
16173
|
-
interface ExperimentResults {
|
|
16174
|
-
readonly id: string;
|
|
16175
|
-
readonly experiment_key: string;
|
|
16176
|
-
readonly experiment_variant_key: string;
|
|
16177
|
-
readonly visitor_count: number;
|
|
16178
|
-
readonly visitors_with_transactions_count: number;
|
|
16179
|
-
readonly conversion_rate: number;
|
|
16180
|
-
readonly lower_bound: number;
|
|
16181
|
-
readonly upper_bound: number;
|
|
16182
|
-
readonly probability_of_being_best?: number;
|
|
16183
|
-
readonly currency?: string;
|
|
16184
|
-
readonly average_order_value?: number;
|
|
16185
|
-
readonly revenue_generated?: number;
|
|
16186
|
-
readonly total_order_count?: number;
|
|
16187
|
-
readonly conversion_rate_uplift?: number;
|
|
16188
|
-
readonly average_order_value_uplift?: number;
|
|
16189
|
-
readonly revenue_generated_uplift?: number;
|
|
16190
|
-
}
|
|
16191
|
-
|
|
16192
|
-
interface ExperimentResultsWithTimestamp {
|
|
16193
|
-
readonly timestamp: string;
|
|
16194
|
-
readonly results: io.flow.experiment.internal.v0.models.ExperimentResults[];
|
|
16195
|
-
}
|
|
16196
|
-
|
|
16197
|
-
interface ExperimentSessionQueryForm {
|
|
16198
|
-
readonly session_query?: string;
|
|
16199
|
-
}
|
|
16200
|
-
|
|
16201
|
-
interface ExperimentVersion {
|
|
16202
|
-
readonly id: string;
|
|
16203
|
-
readonly timestamp: string;
|
|
16204
|
-
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
16205
|
-
readonly experiment: io.flow.experiment.internal.v0.unions.Experiment;
|
|
16206
|
-
}
|
|
16207
|
-
|
|
16208
|
-
interface FeatureExperiment {
|
|
16209
|
-
readonly discriminator: 'feature';
|
|
16210
|
-
readonly id: string;
|
|
16211
|
-
readonly key: string;
|
|
16212
|
-
readonly name: string;
|
|
16213
|
-
readonly description?: string;
|
|
16214
|
-
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
16215
|
-
readonly emails: string[];
|
|
16216
|
-
readonly scope: io.flow.experiment.internal.v0.enums.Scope;
|
|
16217
|
-
readonly started_at?: string;
|
|
16218
|
-
readonly ended_at?: string;
|
|
16219
|
-
readonly variants: io.flow.experiment.internal.v0.models.FeatureVariant[];
|
|
16220
|
-
readonly transitions?: io.flow.experiment.internal.v0.enums.Status[];
|
|
16221
|
-
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
16222
|
-
readonly session_query?: string;
|
|
16223
|
-
}
|
|
16224
|
-
|
|
16225
|
-
interface FeatureValueReference {
|
|
16226
|
-
readonly feature_key: string;
|
|
16227
|
-
readonly value: string;
|
|
16228
|
-
}
|
|
16229
|
-
|
|
16230
|
-
interface FeatureVariant {
|
|
16231
|
-
readonly discriminator: 'feature_variant';
|
|
16232
|
-
readonly value: io.flow.experiment.internal.v0.models.FeatureVariantSummary;
|
|
16233
|
-
readonly traffic_percentage: number;
|
|
16234
|
-
readonly experiment_results?: io.flow.experiment.internal.v0.models.ExperimentResults;
|
|
16235
|
-
}
|
|
16236
|
-
|
|
16237
|
-
interface FeatureVariantForm {
|
|
16238
|
-
readonly discriminator: 'feature';
|
|
16239
|
-
readonly key: string;
|
|
16240
|
-
readonly traffic_percentage: number;
|
|
16241
|
-
}
|
|
16242
|
-
|
|
16243
|
-
interface FeatureVariantSummary {
|
|
16244
|
-
readonly key: string;
|
|
16245
|
-
readonly feature_value: io.flow.experiment.internal.v0.models.FeatureValueReference;
|
|
16246
|
-
readonly name?: string;
|
|
16247
|
-
}
|
|
16248
|
-
}
|
|
16249
|
-
|
|
16250
|
-
declare namespace io.flow.experiment.internal.v0.unions {
|
|
16251
|
-
type Experiment =
|
|
16252
|
-
| io.flow.experiment.internal.v0.models.ExperienceExperiment
|
|
16253
|
-
| io.flow.experiment.internal.v0.models.FeatureExperiment;
|
|
16254
|
-
type Variant =
|
|
16255
|
-
| io.flow.experiment.internal.v0.models.ExperienceVariant
|
|
16256
|
-
| io.flow.experiment.internal.v0.models.FeatureVariant;
|
|
16257
|
-
type VariantForm =
|
|
16258
|
-
| io.flow.experiment.internal.v0.models.ExperienceVariantForm
|
|
16259
|
-
| io.flow.experiment.internal.v0.models.FeatureVariantForm;
|
|
16260
|
-
}
|
|
16261
|
-
|
|
16262
16076
|
declare namespace io.flow.internal.v0.enums {
|
|
16263
16077
|
type AccountPaymentHoldReason =
|
|
16264
16078
|
| 'fraudulent'
|
|
@@ -16272,6 +16086,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16272
16086
|
| 'hosted_payment_page'
|
|
16273
16087
|
| 'checkout_payments_api'
|
|
16274
16088
|
| 'classic_authorise_api';
|
|
16089
|
+
type AldoItemType = 'physical' | 'digital';
|
|
16275
16090
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
16276
16091
|
type ApiCallReferenceId =
|
|
16277
16092
|
| 'duty_rates_data_event'
|
|
@@ -16430,9 +16245,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16430
16245
|
| 'accounts_with_payment_holds_count'
|
|
16431
16246
|
| 'accounts_with_payment_holds_pending_payment_promise_count'
|
|
16432
16247
|
| 'accounts_with_payment_holds_pending_payment_promise_total'
|
|
16433
|
-
| 'accounts_with_final_statements_count'
|
|
16434
|
-
| 'accounts_with_final_statements_pending_transaction_count'
|
|
16435
|
-
| 'accounts_with_final_statements_pending_transaction_total'
|
|
16436
16248
|
| 'edited_order_tax_amount_exceeding_transaction'
|
|
16437
16249
|
| 'edited_order_duty_amount_exceeding_transaction'
|
|
16438
16250
|
| 'negative_balance_scheduled_count'
|
|
@@ -16629,7 +16441,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16629
16441
|
| 'Age0_10'
|
|
16630
16442
|
| 'Age10_13'
|
|
16631
16443
|
| 'Age13_14';
|
|
16632
|
-
type ColmItemType = 'physical' | 'digital';
|
|
16633
16444
|
type Company = 'globale' | 'flow';
|
|
16634
16445
|
type ComplianceType = 'weee';
|
|
16635
16446
|
type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
|
|
@@ -16792,8 +16603,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16792
16603
|
| 'customer_purge_upserted'
|
|
16793
16604
|
| 'customs_description_import'
|
|
16794
16605
|
| 'customs_description_tariffs_import'
|
|
16795
|
-
| 'item_dimension_estimate_upserted_v2'
|
|
16796
|
-
| 'item_dimension_estimate_deleted_v2'
|
|
16797
16606
|
| 'dispute_upserted'
|
|
16798
16607
|
| 'dispute_deleted'
|
|
16799
16608
|
| 'duty_rates_published_v2'
|
|
@@ -16933,6 +16742,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16933
16742
|
| 'unassigned_merchant_guid_deleted'
|
|
16934
16743
|
| 'partner_tracking_subscription_upserted'
|
|
16935
16744
|
| 'partner_tracking_subscription_deleted'
|
|
16745
|
+
| 'spp_tracker_update_request_upserted'
|
|
16746
|
+
| 'spp_tracker_update_request_deleted'
|
|
16936
16747
|
| 'internal_authorization_upserted'
|
|
16937
16748
|
| 'internal_authorization_deleted'
|
|
16938
16749
|
| 'afterpay_authorization_upserted'
|
|
@@ -17009,7 +16820,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17009
16820
|
| 'order_tax_and_duty_inclusivity_setting_deleted'
|
|
17010
16821
|
| 'shopify_product_bundle_upserted'
|
|
17011
16822
|
| 'shopify_product_bundle_deleted'
|
|
17012
|
-
| 'shopify_markets_order_edit_summary_published'
|
|
17013
16823
|
| 'shopify_incoterm_summary_error_published'
|
|
17014
16824
|
| 'shopify_markets_best_selling_product_upserted'
|
|
17015
16825
|
| 'shopify_markets_best_selling_product_deleted'
|
|
@@ -17487,6 +17297,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17487
17297
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
17488
17298
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
17489
17299
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
17300
|
+
type SourceTypeFilter = 'organization' | 'channel';
|
|
17490
17301
|
type StatementStatus =
|
|
17491
17302
|
| 'created'
|
|
17492
17303
|
| 'no_transactions'
|
|
@@ -18254,6 +18065,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18254
18065
|
readonly afterpay_refund: io.flow.internal.v0.models.AfterpayRefund;
|
|
18255
18066
|
}
|
|
18256
18067
|
|
|
18068
|
+
interface AldoItem {
|
|
18069
|
+
readonly id: string;
|
|
18070
|
+
readonly number: string;
|
|
18071
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
18072
|
+
readonly description?: string;
|
|
18073
|
+
readonly type: io.flow.internal.v0.enums.AldoItemType;
|
|
18074
|
+
readonly added_on: string;
|
|
18075
|
+
}
|
|
18076
|
+
|
|
18077
|
+
interface AldoItemForm {
|
|
18078
|
+
readonly number: string;
|
|
18079
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
18080
|
+
readonly description?: string;
|
|
18081
|
+
readonly type: io.flow.internal.v0.enums.AldoItemType;
|
|
18082
|
+
readonly added_on: string;
|
|
18083
|
+
}
|
|
18084
|
+
|
|
18257
18085
|
interface AlertErrorSummary {
|
|
18258
18086
|
readonly event_id: number;
|
|
18259
18087
|
readonly error: string;
|
|
@@ -19339,6 +19167,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19339
19167
|
readonly capabilities: io.flow.channel.v0.enums.ChannelCurrencyCapability[];
|
|
19340
19168
|
}
|
|
19341
19169
|
|
|
19170
|
+
interface ChannelCurrencyPairInternal {
|
|
19171
|
+
readonly channel_currency_pair: io.flow.channel.currency.v0.models.ChannelCurrencyPair;
|
|
19172
|
+
}
|
|
19173
|
+
|
|
19342
19174
|
interface ChannelCurrencySetting {
|
|
19343
19175
|
readonly id: string;
|
|
19344
19176
|
readonly channel_id: string;
|
|
@@ -20106,23 +19938,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20106
19938
|
readonly task: string;
|
|
20107
19939
|
}
|
|
20108
19940
|
|
|
20109
|
-
interface ColmItem {
|
|
20110
|
-
readonly id: string;
|
|
20111
|
-
readonly number: string;
|
|
20112
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
20113
|
-
readonly description?: string;
|
|
20114
|
-
readonly type: io.flow.internal.v0.enums.ColmItemType;
|
|
20115
|
-
readonly added_on: string;
|
|
20116
|
-
}
|
|
20117
|
-
|
|
20118
|
-
interface ColmItemForm {
|
|
20119
|
-
readonly number: string;
|
|
20120
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
20121
|
-
readonly description?: string;
|
|
20122
|
-
readonly type: io.flow.internal.v0.enums.ColmItemType;
|
|
20123
|
-
readonly added_on: string;
|
|
20124
|
-
}
|
|
20125
|
-
|
|
20126
19941
|
interface CommercialInvoiceComparison {
|
|
20127
19942
|
readonly urls: string[];
|
|
20128
19943
|
}
|
|
@@ -20379,6 +20194,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20379
20194
|
readonly identifiers: io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
20380
20195
|
readonly created_at: string;
|
|
20381
20196
|
readonly updated_at: string;
|
|
20197
|
+
readonly posted_at?: string;
|
|
20382
20198
|
}
|
|
20383
20199
|
|
|
20384
20200
|
interface CurrencyInternalRate {
|
|
@@ -20519,6 +20335,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20519
20335
|
readonly transaction_id: string;
|
|
20520
20336
|
}
|
|
20521
20337
|
|
|
20338
|
+
interface DebugAdjustment {
|
|
20339
|
+
readonly transaction_id: string;
|
|
20340
|
+
readonly original_transaction: io.flow.internal.v0.models.DebugOriginalTransactionSummary;
|
|
20341
|
+
readonly description: string;
|
|
20342
|
+
}
|
|
20343
|
+
|
|
20522
20344
|
interface DebugBankingDetails {
|
|
20523
20345
|
readonly merchant: io.flow.internal.v0.models.MerchantDetails;
|
|
20524
20346
|
readonly account: io.flow.internal.v0.models.BankAccount;
|
|
@@ -20529,6 +20351,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20529
20351
|
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
20530
20352
|
readonly refunds: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
20531
20353
|
readonly allocation: io.flow.experience.v0.models.AllocationV2;
|
|
20354
|
+
readonly adjustments: io.flow.internal.v0.models.DebugAdjustment[];
|
|
20532
20355
|
}
|
|
20533
20356
|
|
|
20534
20357
|
interface DebugFulfillmentDelta {
|
|
@@ -20543,6 +20366,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20543
20366
|
readonly carrier_tracking_number: string;
|
|
20544
20367
|
readonly label_tracking_summary_id?: string;
|
|
20545
20368
|
readonly label_id?: string;
|
|
20369
|
+
readonly cost_estimate?: io.flow.label.v0.models.ShippingLabelHopSummary;
|
|
20546
20370
|
readonly transactions?: io.flow.internal.v0.models.DebugLabelTransactionSummary[];
|
|
20547
20371
|
}
|
|
20548
20372
|
|
|
@@ -20563,11 +20387,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20563
20387
|
interface DebugOrderTransaction {
|
|
20564
20388
|
readonly order: io.flow.internal.v0.models.DebugOrder;
|
|
20565
20389
|
readonly debug: io.flow.internal.v0.models.DebugDetails;
|
|
20566
|
-
readonly transactions: io.flow.
|
|
20390
|
+
readonly transactions: io.flow.internal.v0.models.DebugOrderTransactionDetails[];
|
|
20567
20391
|
readonly reporting: io.flow.internal.v0.models.ReportingDetails;
|
|
20568
20392
|
readonly banking: io.flow.internal.v0.models.DebugBankingDetails;
|
|
20569
20393
|
}
|
|
20570
20394
|
|
|
20395
|
+
interface DebugOrderTransactionDetails {
|
|
20396
|
+
readonly transaction: io.flow.billing.v0.models.Transaction;
|
|
20397
|
+
readonly payout_details?: io.flow.billing.v0.unions.PayoutStatus;
|
|
20398
|
+
}
|
|
20399
|
+
|
|
20571
20400
|
interface DebugOrderTransactionForm {
|
|
20572
20401
|
readonly order_id?: string;
|
|
20573
20402
|
readonly organization_id?: string;
|
|
@@ -20589,6 +20418,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20589
20418
|
readonly value?: string;
|
|
20590
20419
|
}
|
|
20591
20420
|
|
|
20421
|
+
interface DebugOriginalTransactionSummary {
|
|
20422
|
+
readonly id: string;
|
|
20423
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
20424
|
+
}
|
|
20425
|
+
|
|
20592
20426
|
interface DebugPaymentTransactionSummary {
|
|
20593
20427
|
readonly id: string;
|
|
20594
20428
|
readonly type: string;
|
|
@@ -20724,6 +20558,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20724
20558
|
readonly pickup_name: string;
|
|
20725
20559
|
}
|
|
20726
20560
|
|
|
20561
|
+
interface DhlEcommerceWebhook {
|
|
20562
|
+
readonly placeholder?: boolean;
|
|
20563
|
+
}
|
|
20564
|
+
|
|
20727
20565
|
interface Dict {
|
|
20728
20566
|
readonly discriminator: 'dict';
|
|
20729
20567
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
@@ -22819,22 +22657,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22819
22657
|
readonly dimensions: io.flow.ratecard.v0.models.EstimatedDimensions;
|
|
22820
22658
|
}
|
|
22821
22659
|
|
|
22822
|
-
interface ItemDimensionEstimateDeletedV2 {
|
|
22823
|
-
readonly discriminator: 'item_dimension_estimate_deleted_v2';
|
|
22824
|
-
readonly event_id: string;
|
|
22825
|
-
readonly timestamp: string;
|
|
22826
|
-
readonly organization: string;
|
|
22827
|
-
readonly id: string;
|
|
22828
|
-
}
|
|
22829
|
-
|
|
22830
|
-
interface ItemDimensionEstimateUpsertedV2 {
|
|
22831
|
-
readonly discriminator: 'item_dimension_estimate_upserted_v2';
|
|
22832
|
-
readonly event_id: string;
|
|
22833
|
-
readonly timestamp: string;
|
|
22834
|
-
readonly organization: string;
|
|
22835
|
-
readonly estimate: io.flow.internal.v0.models.ItemDimensionEstimate;
|
|
22836
|
-
}
|
|
22837
|
-
|
|
22838
22660
|
interface ItemFilterResponse {
|
|
22839
22661
|
readonly filter: string;
|
|
22840
22662
|
readonly responses: io.flow.internal.v0.models.ItemFilterValueResponse[];
|
|
@@ -23097,7 +22919,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23097
22919
|
|
|
23098
22920
|
interface LabelGenerationSettings {
|
|
23099
22921
|
readonly id: string;
|
|
23100
|
-
readonly item_identifier?: string;
|
|
23101
22922
|
readonly auto_generate_query?: string;
|
|
23102
22923
|
readonly commercial_invoice_only_query?: string;
|
|
23103
22924
|
}
|
|
@@ -24498,7 +24319,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24498
24319
|
}
|
|
24499
24320
|
|
|
24500
24321
|
interface OrderEditSummary {
|
|
24501
|
-
readonly external_order_edit_reference: string;
|
|
24502
24322
|
readonly edited_at: string;
|
|
24503
24323
|
}
|
|
24504
24324
|
|
|
@@ -25159,6 +24979,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25159
24979
|
readonly identifiers: io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
25160
24980
|
readonly created_at: string;
|
|
25161
24981
|
readonly updated_at: string;
|
|
24982
|
+
readonly posted_at?: string;
|
|
25162
24983
|
}
|
|
25163
24984
|
|
|
25164
24985
|
interface OtherRecordAccount {
|
|
@@ -25257,7 +25078,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25257
25078
|
}
|
|
25258
25079
|
|
|
25259
25080
|
interface OtherRecordOrderSummary {
|
|
25260
|
-
readonly organization: io.flow.
|
|
25081
|
+
readonly organization: io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
25261
25082
|
readonly number: string;
|
|
25262
25083
|
readonly identifiers: io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
25263
25084
|
}
|
|
@@ -25266,6 +25087,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25266
25087
|
readonly shopify_order_id?: string;
|
|
25267
25088
|
}
|
|
25268
25089
|
|
|
25090
|
+
interface OtherRecordOrganizationSummary {
|
|
25091
|
+
readonly id: string;
|
|
25092
|
+
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
25093
|
+
}
|
|
25094
|
+
|
|
25269
25095
|
interface OtherRecordUpserted {
|
|
25270
25096
|
readonly discriminator: 'other_record_upserted';
|
|
25271
25097
|
readonly event_id: string;
|
|
@@ -26084,6 +25910,38 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26084
25910
|
readonly created_at: string;
|
|
26085
25911
|
}
|
|
26086
25912
|
|
|
25913
|
+
interface PspDistribution {
|
|
25914
|
+
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
25915
|
+
readonly percentage: number;
|
|
25916
|
+
}
|
|
25917
|
+
|
|
25918
|
+
interface PspRoutingDistribution {
|
|
25919
|
+
readonly name: string;
|
|
25920
|
+
readonly environment?: io.flow.common.v0.enums.Environment;
|
|
25921
|
+
readonly payment_methods: string[];
|
|
25922
|
+
readonly countries: string[];
|
|
25923
|
+
readonly currencies: string[];
|
|
25924
|
+
readonly region?: string;
|
|
25925
|
+
readonly mcc?: string;
|
|
25926
|
+
readonly is_returning_card?: boolean;
|
|
25927
|
+
readonly priority: number;
|
|
25928
|
+
readonly distributions: io.flow.internal.v0.models.PspDistribution[];
|
|
25929
|
+
}
|
|
25930
|
+
|
|
25931
|
+
interface PspRoutingDistributionRevision {
|
|
25932
|
+
readonly id: string;
|
|
25933
|
+
readonly description?: string;
|
|
25934
|
+
readonly psp_routing_distributions: io.flow.internal.v0.models.PspRoutingDistribution[];
|
|
25935
|
+
readonly created_at: string;
|
|
25936
|
+
readonly updated_at: string;
|
|
25937
|
+
}
|
|
25938
|
+
|
|
25939
|
+
interface PspRoutingDistributionRevisionForm {
|
|
25940
|
+
readonly previous_revision?: string;
|
|
25941
|
+
readonly description?: string;
|
|
25942
|
+
readonly psp_routing_distributions: io.flow.internal.v0.models.PspRoutingDistribution[];
|
|
25943
|
+
}
|
|
25944
|
+
|
|
26087
25945
|
interface PublicHub {
|
|
26088
25946
|
readonly id: string;
|
|
26089
25947
|
readonly code: string;
|
|
@@ -26606,6 +26464,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26606
26464
|
readonly account_number: string;
|
|
26607
26465
|
}
|
|
26608
26466
|
|
|
26467
|
+
interface ReportFilter {
|
|
26468
|
+
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
26469
|
+
}
|
|
26470
|
+
|
|
26609
26471
|
interface ReportForm {
|
|
26610
26472
|
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
26611
26473
|
readonly from?: string;
|
|
@@ -26614,6 +26476,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26614
26476
|
readonly organizations?: io.flow.internal.v0.models.ReportOrganizationReference[];
|
|
26615
26477
|
readonly orders?: io.flow.internal.v0.models.ReportOrderReference[];
|
|
26616
26478
|
readonly recipients?: string[];
|
|
26479
|
+
readonly filter?: io.flow.internal.v0.models.ReportFilter;
|
|
26617
26480
|
}
|
|
26618
26481
|
|
|
26619
26482
|
interface ReportMerchant {
|
|
@@ -27374,13 +27237,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27374
27237
|
readonly status: io.flow.experience.v0.enums.ExperienceStatus;
|
|
27375
27238
|
}
|
|
27376
27239
|
|
|
27377
|
-
interface SearchExperimentSummary {
|
|
27378
|
-
readonly discriminator: 'search_experiment_summary';
|
|
27379
|
-
readonly key: string;
|
|
27380
|
-
readonly name: string;
|
|
27381
|
-
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
27382
|
-
}
|
|
27383
|
-
|
|
27384
27240
|
interface SearchItemSummary {
|
|
27385
27241
|
readonly discriminator: 'search_item_summary';
|
|
27386
27242
|
readonly number: string;
|
|
@@ -27664,19 +27520,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27664
27520
|
readonly shopify_markets_order: io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
27665
27521
|
}
|
|
27666
27522
|
|
|
27667
|
-
interface ShopifyMarketsOrderEditSummaryData {
|
|
27668
|
-
readonly channel_order_acceptance: io.flow.internal.v0.models.ChannelOrderAcceptance;
|
|
27669
|
-
readonly edited_at: string;
|
|
27670
|
-
}
|
|
27671
|
-
|
|
27672
|
-
interface ShopifyMarketsOrderEditSummaryPublished {
|
|
27673
|
-
readonly discriminator: 'shopify_markets_order_edit_summary_published';
|
|
27674
|
-
readonly event_id: string;
|
|
27675
|
-
readonly timestamp: string;
|
|
27676
|
-
readonly organization: string;
|
|
27677
|
-
readonly data: io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryData;
|
|
27678
|
-
}
|
|
27679
|
-
|
|
27680
27523
|
interface ShopifyMarketsOrderUpserted {
|
|
27681
27524
|
readonly discriminator: 'shopify_markets_order_upserted';
|
|
27682
27525
|
readonly event_id: string;
|
|
@@ -28322,6 +28165,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28322
28165
|
readonly spot_rate: io.flow.internal.v0.models.SpotRate;
|
|
28323
28166
|
}
|
|
28324
28167
|
|
|
28168
|
+
interface SppTrackerUpdateRequest {
|
|
28169
|
+
readonly id: string;
|
|
28170
|
+
readonly tracking_subscription: io.flow.internal.v0.models.TrackingSubscription;
|
|
28171
|
+
readonly created_at: string;
|
|
28172
|
+
}
|
|
28173
|
+
|
|
28174
|
+
interface SppTrackerUpdateRequestDeleted {
|
|
28175
|
+
readonly discriminator: 'spp_tracker_update_request_deleted';
|
|
28176
|
+
readonly event_id: string;
|
|
28177
|
+
readonly timestamp: string;
|
|
28178
|
+
readonly id: string;
|
|
28179
|
+
}
|
|
28180
|
+
|
|
28181
|
+
interface SppTrackerUpdateRequestUpserted {
|
|
28182
|
+
readonly discriminator: 'spp_tracker_update_request_upserted';
|
|
28183
|
+
readonly event_id: string;
|
|
28184
|
+
readonly timestamp: string;
|
|
28185
|
+
readonly spp_tracker_update_request: io.flow.internal.v0.models.SppTrackerUpdateRequest;
|
|
28186
|
+
}
|
|
28187
|
+
|
|
28325
28188
|
interface StandaloneAttachment {
|
|
28326
28189
|
readonly id: string;
|
|
28327
28190
|
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
@@ -29673,8 +29536,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29673
29536
|
| io.flow.internal.v0.models.CustomerPurgeUpserted
|
|
29674
29537
|
| io.flow.internal.v0.models.CustomsDescriptionImport
|
|
29675
29538
|
| io.flow.internal.v0.models.CustomsDescriptionTariffsImport
|
|
29676
|
-
| io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2
|
|
29677
|
-
| io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2
|
|
29678
29539
|
| io.flow.internal.v0.models.DisputeUpserted
|
|
29679
29540
|
| io.flow.internal.v0.models.DisputeDeleted
|
|
29680
29541
|
| io.flow.internal.v0.models.DutyRatesPublishedV2
|
|
@@ -29814,6 +29675,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29814
29675
|
| io.flow.internal.v0.models.UnassignedMerchantGuidDeleted
|
|
29815
29676
|
| io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted
|
|
29816
29677
|
| io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted
|
|
29678
|
+
| io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted
|
|
29679
|
+
| io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted
|
|
29817
29680
|
| io.flow.internal.v0.models.InternalAuthorizationUpserted
|
|
29818
29681
|
| io.flow.internal.v0.models.InternalAuthorizationDeleted
|
|
29819
29682
|
| io.flow.internal.v0.models.AfterpayAuthorizationUpserted
|
|
@@ -29890,7 +29753,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29890
29753
|
| io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted
|
|
29891
29754
|
| io.flow.internal.v0.models.ShopifyProductBundleUpserted
|
|
29892
29755
|
| io.flow.internal.v0.models.ShopifyProductBundleDeleted
|
|
29893
|
-
| io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryPublished
|
|
29894
29756
|
| io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished
|
|
29895
29757
|
| io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted
|
|
29896
29758
|
| io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted
|
|
@@ -29971,7 +29833,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29971
29833
|
| io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
29972
29834
|
type GlobalSearchResult =
|
|
29973
29835
|
| io.flow.internal.v0.models.SearchExperienceSummary
|
|
29974
|
-
| io.flow.internal.v0.models.SearchExperimentSummary
|
|
29975
29836
|
| io.flow.internal.v0.models.SearchOrderSummary
|
|
29976
29837
|
| io.flow.internal.v0.models.SearchItemSummary;
|
|
29977
29838
|
type IndexTaskType =
|
|
@@ -30319,6 +30180,9 @@ export type AfterpayRefundDeleted =
|
|
|
30319
30180
|
io.flow.internal.v0.models.AfterpayRefundDeleted;
|
|
30320
30181
|
export type AfterpayRefundUpserted =
|
|
30321
30182
|
io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
30183
|
+
export type AldoItem = io.flow.internal.v0.models.AldoItem;
|
|
30184
|
+
export type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
|
|
30185
|
+
export type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
|
|
30322
30186
|
export type AlertErrorSummary = io.flow.internal.v0.models.AlertErrorSummary;
|
|
30323
30187
|
export type AlertFailureSummary =
|
|
30324
30188
|
io.flow.internal.v0.models.AlertFailureSummary;
|
|
@@ -30614,6 +30478,8 @@ export type ChannelBillingStatement =
|
|
|
30614
30478
|
io.flow.internal.v0.models.ChannelBillingStatement;
|
|
30615
30479
|
export type ChannelCurrencyForm =
|
|
30616
30480
|
io.flow.internal.v0.models.ChannelCurrencyForm;
|
|
30481
|
+
export type ChannelCurrencyPairInternal =
|
|
30482
|
+
io.flow.internal.v0.models.ChannelCurrencyPairInternal;
|
|
30617
30483
|
export type ChannelCurrencySetting =
|
|
30618
30484
|
io.flow.internal.v0.models.ChannelCurrencySetting;
|
|
30619
30485
|
export type ChannelCurrencySettingDeleted =
|
|
@@ -30850,9 +30716,6 @@ export type CliLogEntry = io.flow.internal.v0.models.CliLogEntry;
|
|
|
30850
30716
|
export type CliLogEntryForm = io.flow.internal.v0.models.CliLogEntryForm;
|
|
30851
30717
|
export type ClothingAgeClassification =
|
|
30852
30718
|
io.flow.internal.v0.enums.ClothingAgeClassification;
|
|
30853
|
-
export type ColmItem = io.flow.internal.v0.models.ColmItem;
|
|
30854
|
-
export type ColmItemForm = io.flow.internal.v0.models.ColmItemForm;
|
|
30855
|
-
export type ColmItemType = io.flow.internal.v0.enums.ColmItemType;
|
|
30856
30719
|
export type CommercialInvoiceComparison =
|
|
30857
30720
|
io.flow.internal.v0.models.CommercialInvoiceComparison;
|
|
30858
30721
|
export type CommercialInvoiceInternal =
|
|
@@ -30947,6 +30810,7 @@ export type DebugAccountingTransaction =
|
|
|
30947
30810
|
io.flow.internal.v0.models.DebugAccountingTransaction;
|
|
30948
30811
|
export type DebugAccountingTransactionType =
|
|
30949
30812
|
io.flow.internal.v0.enums.DebugAccountingTransactionType;
|
|
30813
|
+
export type DebugAdjustment = io.flow.internal.v0.models.DebugAdjustment;
|
|
30950
30814
|
export type DebugBankingDetails =
|
|
30951
30815
|
io.flow.internal.v0.models.DebugBankingDetails;
|
|
30952
30816
|
export type DebugDetails = io.flow.internal.v0.models.DebugDetails;
|
|
@@ -30958,10 +30822,14 @@ export type DebugLabelTransactionSummary =
|
|
|
30958
30822
|
export type DebugOrder = io.flow.internal.v0.models.DebugOrder;
|
|
30959
30823
|
export type DebugOrderTransaction =
|
|
30960
30824
|
io.flow.internal.v0.models.DebugOrderTransaction;
|
|
30825
|
+
export type DebugOrderTransactionDetails =
|
|
30826
|
+
io.flow.internal.v0.models.DebugOrderTransactionDetails;
|
|
30961
30827
|
export type DebugOrderTransactionForm =
|
|
30962
30828
|
io.flow.internal.v0.models.DebugOrderTransactionForm;
|
|
30963
30829
|
export type DebugOrderTransactionFormOrderIdentifier =
|
|
30964
30830
|
io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
|
|
30831
|
+
export type DebugOriginalTransactionSummary =
|
|
30832
|
+
io.flow.internal.v0.models.DebugOriginalTransactionSummary;
|
|
30965
30833
|
export type DebugPaymentTransactionSummary =
|
|
30966
30834
|
io.flow.internal.v0.models.DebugPaymentTransactionSummary;
|
|
30967
30835
|
export type DebugTransactionDetails =
|
|
@@ -31002,6 +30870,8 @@ export type DeminimisAdjustmentType =
|
|
|
31002
30870
|
export type DestinationError = io.flow.internal.v0.models.DestinationError;
|
|
31003
30871
|
export type Dhl = io.flow.internal.v0.models.Dhl;
|
|
31004
30872
|
export type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
|
|
30873
|
+
export type DhlEcommerceWebhook =
|
|
30874
|
+
io.flow.internal.v0.models.DhlEcommerceWebhook;
|
|
31005
30875
|
export type Dict = io.flow.internal.v0.models.Dict;
|
|
31006
30876
|
export type DimensionEstimateOpsInput =
|
|
31007
30877
|
io.flow.internal.v0.models.DimensionEstimateOpsInput;
|
|
@@ -31521,10 +31391,6 @@ export type ItemClassificationV2 =
|
|
|
31521
31391
|
export type ItemCustomsDetails = io.flow.internal.v0.models.ItemCustomsDetails;
|
|
31522
31392
|
export type ItemDimensionEstimate =
|
|
31523
31393
|
io.flow.internal.v0.models.ItemDimensionEstimate;
|
|
31524
|
-
export type ItemDimensionEstimateDeletedV2 =
|
|
31525
|
-
io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2;
|
|
31526
|
-
export type ItemDimensionEstimateUpsertedV2 =
|
|
31527
|
-
io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2;
|
|
31528
31394
|
export type ItemFilterResponse = io.flow.internal.v0.models.ItemFilterResponse;
|
|
31529
31395
|
export type ItemFilterValueResponse =
|
|
31530
31396
|
io.flow.internal.v0.models.ItemFilterValueResponse;
|
|
@@ -32182,6 +32048,8 @@ export type OtherRecordOrderSummary =
|
|
|
32182
32048
|
io.flow.internal.v0.models.OtherRecordOrderSummary;
|
|
32183
32049
|
export type OtherRecordOrderSummaryIdentifiers =
|
|
32184
32050
|
io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
32051
|
+
export type OtherRecordOrganizationSummary =
|
|
32052
|
+
io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
32185
32053
|
export type OtherRecordUpserted =
|
|
32186
32054
|
io.flow.internal.v0.models.OtherRecordUpserted;
|
|
32187
32055
|
export type OtherRecordWithholdings =
|
|
@@ -32401,6 +32269,13 @@ export type ProofOfPostingShippingNotification =
|
|
|
32401
32269
|
io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
32402
32270
|
export type ProofOfPostingTimeElapsed =
|
|
32403
32271
|
io.flow.internal.v0.models.ProofOfPostingTimeElapsed;
|
|
32272
|
+
export type PspDistribution = io.flow.internal.v0.models.PspDistribution;
|
|
32273
|
+
export type PspRoutingDistribution =
|
|
32274
|
+
io.flow.internal.v0.models.PspRoutingDistribution;
|
|
32275
|
+
export type PspRoutingDistributionRevision =
|
|
32276
|
+
io.flow.internal.v0.models.PspRoutingDistributionRevision;
|
|
32277
|
+
export type PspRoutingDistributionRevisionForm =
|
|
32278
|
+
io.flow.internal.v0.models.PspRoutingDistributionRevisionForm;
|
|
32404
32279
|
export type PublicHub = io.flow.internal.v0.models.PublicHub;
|
|
32405
32280
|
export type PublicHubForm = io.flow.internal.v0.models.PublicHubForm;
|
|
32406
32281
|
export type Quote = io.flow.internal.v0.models.Quote;
|
|
@@ -32522,6 +32397,7 @@ export type ReportAccount = io.flow.internal.v0.models.ReportAccount;
|
|
|
32522
32397
|
export type ReportBankAccount = io.flow.internal.v0.models.ReportBankAccount;
|
|
32523
32398
|
export type ReportBankAccountCleartext =
|
|
32524
32399
|
io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
32400
|
+
export type ReportFilter = io.flow.internal.v0.models.ReportFilter;
|
|
32525
32401
|
export type ReportForm = io.flow.internal.v0.models.ReportForm;
|
|
32526
32402
|
export type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
32527
32403
|
export type ReportMerchant = io.flow.internal.v0.models.ReportMerchant;
|
|
@@ -32702,8 +32578,6 @@ export type SearchCustomerSummary =
|
|
|
32702
32578
|
io.flow.internal.v0.models.SearchCustomerSummary;
|
|
32703
32579
|
export type SearchExperienceSummary =
|
|
32704
32580
|
io.flow.internal.v0.models.SearchExperienceSummary;
|
|
32705
|
-
export type SearchExperimentSummary =
|
|
32706
|
-
io.flow.internal.v0.models.SearchExperimentSummary;
|
|
32707
32581
|
export type SearchItemSummary = io.flow.internal.v0.models.SearchItemSummary;
|
|
32708
32582
|
export type SearchOrderSummary = io.flow.internal.v0.models.SearchOrderSummary;
|
|
32709
32583
|
export type SearchProviderExport =
|
|
@@ -32792,10 +32666,6 @@ export type ShopifyMarketsOrder =
|
|
|
32792
32666
|
io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
32793
32667
|
export type ShopifyMarketsOrderDeleted =
|
|
32794
32668
|
io.flow.internal.v0.models.ShopifyMarketsOrderDeleted;
|
|
32795
|
-
export type ShopifyMarketsOrderEditSummaryData =
|
|
32796
|
-
io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryData;
|
|
32797
|
-
export type ShopifyMarketsOrderEditSummaryPublished =
|
|
32798
|
-
io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryPublished;
|
|
32799
32669
|
export type ShopifyMarketsOrderUpserted =
|
|
32800
32670
|
io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
|
|
32801
32671
|
export type ShopifyMarketsOrderVersionWithShopId =
|
|
@@ -32984,6 +32854,7 @@ export type SnoozeNextActionWith =
|
|
|
32984
32854
|
io.flow.internal.v0.enums.SnoozeNextActionWith;
|
|
32985
32855
|
export type SnoozeSource = io.flow.internal.v0.models.SnoozeSource;
|
|
32986
32856
|
export type SnoozeSourceType = io.flow.internal.v0.enums.SnoozeSourceType;
|
|
32857
|
+
export type SourceTypeFilter = io.flow.internal.v0.enums.SourceTypeFilter;
|
|
32987
32858
|
export type SpotRate = io.flow.internal.v0.models.SpotRate;
|
|
32988
32859
|
export type SpotRateDeleted = io.flow.internal.v0.models.SpotRateDeleted;
|
|
32989
32860
|
export type SpotRateMetadata = io.flow.internal.v0.unions.SpotRateMetadata;
|
|
@@ -32993,6 +32864,12 @@ export type SpotRateMetadataRate =
|
|
|
32993
32864
|
io.flow.internal.v0.models.SpotRateMetadataRate;
|
|
32994
32865
|
export type SpotRateUpserted = io.flow.internal.v0.models.SpotRateUpserted;
|
|
32995
32866
|
export type SpotRateVersion = io.flow.internal.v0.models.SpotRateVersion;
|
|
32867
|
+
export type SppTrackerUpdateRequest =
|
|
32868
|
+
io.flow.internal.v0.models.SppTrackerUpdateRequest;
|
|
32869
|
+
export type SppTrackerUpdateRequestDeleted =
|
|
32870
|
+
io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted;
|
|
32871
|
+
export type SppTrackerUpdateRequestUpserted =
|
|
32872
|
+
io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted;
|
|
32996
32873
|
export type StandaloneAttachment =
|
|
32997
32874
|
io.flow.internal.v0.models.StandaloneAttachment;
|
|
32998
32875
|
export type StandaloneAttachmentDeleted =
|