@flowio/api-internal-sdk 0.0.157 → 0.0.159
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/cjs/api-internal.js +219 -114
- package/dist/esm/api-internal.js +212 -108
- package/dist/types/api-internal.d.ts +134 -63
- package/package.json +2 -2
|
@@ -144,6 +144,10 @@ export interface AddressConfigurationSettingsPutParameters {
|
|
|
144
144
|
headers?: $HttpHeaders;
|
|
145
145
|
organization: string;
|
|
146
146
|
}
|
|
147
|
+
export interface AftershipWebhooksPostParameters {
|
|
148
|
+
body: any;
|
|
149
|
+
headers?: $HttpHeaders;
|
|
150
|
+
}
|
|
147
151
|
export interface AldoItemsPostParameters {
|
|
148
152
|
body: io.flow.internal.v0.models.AldoItemForm;
|
|
149
153
|
headers?: $HttpHeaders;
|
|
@@ -183,6 +187,23 @@ export interface AllOrganizationsMembershipsPostAllParameters {
|
|
|
183
187
|
body: io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
184
188
|
headers?: $HttpHeaders;
|
|
185
189
|
}
|
|
190
|
+
export interface AnshItemsPostParameters {
|
|
191
|
+
body: io.flow.internal.v0.models.AnshItemForm;
|
|
192
|
+
headers?: $HttpHeaders;
|
|
193
|
+
}
|
|
194
|
+
export interface AnshItemsGetByIdParameters {
|
|
195
|
+
headers?: $HttpHeaders;
|
|
196
|
+
id: string;
|
|
197
|
+
}
|
|
198
|
+
export interface AnshItemsPutByIdParameters {
|
|
199
|
+
body: io.flow.internal.v0.models.AnshItemForm;
|
|
200
|
+
headers?: $HttpHeaders;
|
|
201
|
+
id: string;
|
|
202
|
+
}
|
|
203
|
+
export interface AnshItemsDeleteByIdParameters {
|
|
204
|
+
headers?: $HttpHeaders;
|
|
205
|
+
id: string;
|
|
206
|
+
}
|
|
186
207
|
export interface AuthorizedChargeStatusesGetParameters {
|
|
187
208
|
headers?: $HttpHeaders;
|
|
188
209
|
organization: string;
|
|
@@ -889,13 +910,6 @@ export interface DeliveredDutyPreferencesPutParameters {
|
|
|
889
910
|
organization: string;
|
|
890
911
|
key: string;
|
|
891
912
|
}
|
|
892
|
-
export interface DhlEcommerceWebhooksGetParameters {
|
|
893
|
-
headers?: $HttpHeaders;
|
|
894
|
-
}
|
|
895
|
-
export interface DhlEcommerceWebhooksPostParameters {
|
|
896
|
-
body: any;
|
|
897
|
-
headers?: $HttpHeaders;
|
|
898
|
-
}
|
|
899
913
|
export interface DiscountCodesPutParameters {
|
|
900
914
|
body: io.flow.internal.v0.models.DiscountCode;
|
|
901
915
|
headers?: $HttpHeaders;
|
|
@@ -1186,6 +1200,14 @@ export interface FinancialReportingStatementsPostByStatementNumberParameters {
|
|
|
1186
1200
|
headers?: $HttpHeaders;
|
|
1187
1201
|
statement_number: string;
|
|
1188
1202
|
}
|
|
1203
|
+
export interface FlexeWebhooksPostReceiptParameters {
|
|
1204
|
+
body: any;
|
|
1205
|
+
headers?: $HttpHeaders;
|
|
1206
|
+
}
|
|
1207
|
+
export interface FlexeWebhooksPostShipmentParameters {
|
|
1208
|
+
body: any;
|
|
1209
|
+
headers?: $HttpHeaders;
|
|
1210
|
+
}
|
|
1189
1211
|
export interface FlowAccountsGetParameters {
|
|
1190
1212
|
headers?: $HttpHeaders;
|
|
1191
1213
|
source_type: string;
|
|
@@ -1764,14 +1786,6 @@ export interface WebhookEventsPostPaymentAndCallbacksAndPaypalParameters {
|
|
|
1764
1786
|
body: any;
|
|
1765
1787
|
headers?: $HttpHeaders;
|
|
1766
1788
|
}
|
|
1767
|
-
export interface ReceiptNotificationsPostParameters {
|
|
1768
|
-
body: any;
|
|
1769
|
-
headers?: $HttpHeaders;
|
|
1770
|
-
}
|
|
1771
|
-
export interface ShipmentNotificationsPostParameters {
|
|
1772
|
-
body: any;
|
|
1773
|
-
headers?: $HttpHeaders;
|
|
1774
|
-
}
|
|
1775
1789
|
export interface UltimateBeneficiaryOwnersPutParameters {
|
|
1776
1790
|
body: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
|
|
1777
1791
|
headers?: $HttpHeaders;
|
|
@@ -1962,14 +1976,6 @@ export interface ChannelTokensPostParameters {
|
|
|
1962
1976
|
body: io.flow.token.v0.models.ChannelTokenForm;
|
|
1963
1977
|
headers?: $HttpHeaders;
|
|
1964
1978
|
}
|
|
1965
|
-
export interface LabelTrackingSummariesGetByLabelIdParameters {
|
|
1966
|
-
headers?: $HttpHeaders;
|
|
1967
|
-
label_id: string;
|
|
1968
|
-
}
|
|
1969
|
-
export interface TrackingsPostParameters {
|
|
1970
|
-
body: any;
|
|
1971
|
-
headers?: $HttpHeaders;
|
|
1972
|
-
}
|
|
1973
1979
|
export interface ItemClassificationsPostPredictParameters {
|
|
1974
1980
|
body: io.flow.internal.v0.models.ItemClassificationForm[];
|
|
1975
1981
|
headers?: $HttpHeaders;
|
|
@@ -3666,6 +3672,29 @@ export interface RestrictionRulesPutInternalAndRestrictionAndRulesByIdParameters
|
|
|
3666
3672
|
headers?: $HttpHeaders;
|
|
3667
3673
|
id: string;
|
|
3668
3674
|
}
|
|
3675
|
+
export interface RestrictionRuleEffectsGetParameters {
|
|
3676
|
+
headers?: $HttpHeaders;
|
|
3677
|
+
ids?: string[];
|
|
3678
|
+
limit?: number;
|
|
3679
|
+
offset?: number;
|
|
3680
|
+
}
|
|
3681
|
+
export interface RestrictionRuleEffectsPostParameters {
|
|
3682
|
+
body: io.flow.internal.v0.models.RestrictionRuleEffectForm;
|
|
3683
|
+
headers?: $HttpHeaders;
|
|
3684
|
+
}
|
|
3685
|
+
export interface RestrictionRuleEffectsGetByIdParameters {
|
|
3686
|
+
headers?: $HttpHeaders;
|
|
3687
|
+
id: string;
|
|
3688
|
+
}
|
|
3689
|
+
export interface RestrictionRuleEffectsPutByIdParameters {
|
|
3690
|
+
body: io.flow.internal.v0.models.RestrictionRuleEffectForm;
|
|
3691
|
+
headers?: $HttpHeaders;
|
|
3692
|
+
id: string;
|
|
3693
|
+
}
|
|
3694
|
+
export interface RestrictionRuleEffectsDeleteByIdParameters {
|
|
3695
|
+
headers?: $HttpHeaders;
|
|
3696
|
+
id: string;
|
|
3697
|
+
}
|
|
3669
3698
|
export interface RestrictionRuleOverridesGetParameters {
|
|
3670
3699
|
headers?: $HttpHeaders;
|
|
3671
3700
|
limit?: number;
|
|
@@ -3729,6 +3758,13 @@ export interface SessionRolloutsPutParameters {
|
|
|
3729
3758
|
headers?: $HttpHeaders;
|
|
3730
3759
|
organization: string;
|
|
3731
3760
|
}
|
|
3761
|
+
export interface ShawnRoundtableWorkshopRatesGetRatesByWorkshopSlotNumberParameters {
|
|
3762
|
+
headers?: $HttpHeaders;
|
|
3763
|
+
workshop_slot_number: string;
|
|
3764
|
+
origin_country?: string;
|
|
3765
|
+
destination_country?: string;
|
|
3766
|
+
weight?: number;
|
|
3767
|
+
}
|
|
3732
3768
|
export interface ShippingLanesGetParameters {
|
|
3733
3769
|
headers?: $HttpHeaders;
|
|
3734
3770
|
ship_from_country?: string[];
|
|
@@ -3798,10 +3834,6 @@ export interface ShopifyMarketsQueuedRecordsGetParameters {
|
|
|
3798
3834
|
offset?: number;
|
|
3799
3835
|
sort?: string;
|
|
3800
3836
|
}
|
|
3801
|
-
export interface ShopifyMarketsQueuedRecordsPutIgnoreByIdParameters {
|
|
3802
|
-
headers?: $HttpHeaders;
|
|
3803
|
-
id: string;
|
|
3804
|
-
}
|
|
3805
3837
|
export interface ShopifyMarketsQueuedRecordsPutRequeueAndNowByIdParameters {
|
|
3806
3838
|
headers?: $HttpHeaders;
|
|
3807
3839
|
id: string;
|
|
@@ -3982,6 +4014,10 @@ export interface ShopifyStoreDetailsGetParameters {
|
|
|
3982
4014
|
headers?: $HttpHeaders;
|
|
3983
4015
|
organization: string;
|
|
3984
4016
|
}
|
|
4017
|
+
export interface ShopifyStripeEventsPostParameters {
|
|
4018
|
+
body: any;
|
|
4019
|
+
headers?: $HttpHeaders;
|
|
4020
|
+
}
|
|
3985
4021
|
export interface ShopifyWebhookEventsPostShopsByShopifyShopIdAndTopicAndActionParameters {
|
|
3986
4022
|
body: any;
|
|
3987
4023
|
headers?: $HttpHeaders;
|
|
@@ -4104,6 +4140,7 @@ export interface TestsGetParameters {
|
|
|
4104
4140
|
headers?: $HttpHeaders;
|
|
4105
4141
|
organization: string;
|
|
4106
4142
|
id?: string[];
|
|
4143
|
+
name?: string[];
|
|
4107
4144
|
limit?: number;
|
|
4108
4145
|
offset?: number;
|
|
4109
4146
|
sort?: string;
|
|
@@ -4138,10 +4175,20 @@ export interface TrackingDebugLabelsPostForceAndTransitByLabelIdParameters {
|
|
|
4138
4175
|
headers?: $HttpHeaders;
|
|
4139
4176
|
label_id: string;
|
|
4140
4177
|
}
|
|
4141
|
-
export interface
|
|
4178
|
+
export interface TrackingResyncsPostParameters {
|
|
4179
|
+
body: any;
|
|
4180
|
+
headers?: $HttpHeaders;
|
|
4181
|
+
}
|
|
4182
|
+
export interface TrackingWebhooksGetParameters {
|
|
4183
|
+
headers?: $HttpHeaders;
|
|
4184
|
+
carrier_id: string;
|
|
4185
|
+
account_identifier?: string;
|
|
4186
|
+
}
|
|
4187
|
+
export interface TrackingWebhooksPostParameters {
|
|
4188
|
+
body: any;
|
|
4142
4189
|
headers?: $HttpHeaders;
|
|
4143
|
-
|
|
4144
|
-
|
|
4190
|
+
carrier_id: string;
|
|
4191
|
+
account_identifier?: string;
|
|
4145
4192
|
}
|
|
4146
4193
|
export interface TransactionsGetOrdersByOrderNumberParameters {
|
|
4147
4194
|
headers?: $HttpHeaders;
|
|
@@ -4268,6 +4315,7 @@ export declare type AccountPaymentHoldsGetByIdResponse = $HttpOk<io.flow.interna
|
|
|
4268
4315
|
export declare type AccountPaymentHoldsDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4269
4316
|
export declare type AddressConfigurationSettingsGetResponse = $HttpOk<io.flow.internal.v0.models.AddressConfigurationSetting> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4270
4317
|
export declare type AddressConfigurationSettingsPutResponse = $HttpOk<io.flow.internal.v0.models.AddressConfigurationSetting> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4318
|
+
export declare type AftershipWebhooksPostResponse = $HttpOk<undefined> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4271
4319
|
export declare type AldoItemsPostResponse = $HttpCreated<io.flow.internal.v0.models.AldoItem> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4272
4320
|
export declare type AldoItemsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.AldoItem> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4273
4321
|
export declare type AldoItemsPutByIdResponse = $HttpOk<io.flow.internal.v0.models.AldoItem> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4277,6 +4325,10 @@ export declare type AlertFailureSummariesGetByDbResponse = $HttpOk<io.flow.inter
|
|
|
4277
4325
|
export declare type AlertFailureSummariesDeleteByDbAndQueueAndIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4278
4326
|
export declare type AlertRequeueSummariesPostResponse = $HttpCreated<io.flow.internal.v0.models.AlertRequeueSummary[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4279
4327
|
export declare type AllOrganizationsMembershipsPostAllResponse = $HttpCreated<undefined> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4328
|
+
export declare type AnshItemsPostResponse = $HttpCreated<io.flow.internal.v0.models.AnshItem> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4329
|
+
export declare type AnshItemsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.AnshItem> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4330
|
+
export declare type AnshItemsPutByIdResponse = $HttpOk<io.flow.internal.v0.models.AnshItem> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4331
|
+
export declare type AnshItemsDeleteByIdResponse = $HttpOk<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4280
4332
|
export declare type AuthorizedChargeStatusesGetResponse = $HttpOk<io.flow.internal.v0.models.OrderActionability> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4281
4333
|
export declare type BankPaymentsGetResponse = $HttpOk<io.flow.internal.v0.models.BankPayment[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4282
4334
|
export declare type BankPaymentsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.BankPayment> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
@@ -4396,8 +4448,6 @@ export declare type DebugOrderTransactionsPostResponse = $HttpCreated<io.flow.in
|
|
|
4396
4448
|
export declare type DeliveredDutyOptionsGetOptionsAndV2Response = $HttpOk<io.flow.internal.v0.models.DeliveredDutyOptions> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4397
4449
|
export declare type DeliveredDutyPreferencesGetResponse = $HttpOk<io.flow.internal.v0.models.DeliveredDutyPreference> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4398
4450
|
export declare type DeliveredDutyPreferencesPutResponse = $HttpOk<io.flow.internal.v0.models.DeliveredDutyPreference> | $HttpCreated<io.flow.internal.v0.models.DeliveredDutyPreference> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4399
|
-
export declare type DhlEcommerceWebhooksGetResponse = $HttpOk<string> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4400
|
-
export declare type DhlEcommerceWebhooksPostResponse = $HttpOk<string> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4401
4451
|
export declare type DiscountCodesPutResponse = $HttpOk<io.flow.experience.v0.models.OrderBuilder> | $HttpCreated<io.flow.experience.v0.models.OrderBuilder> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4402
4452
|
export declare type DiscountCodesDeleteByCodeResponse = $HttpOk<io.flow.experience.v0.models.OrderBuilder> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4403
4453
|
export declare type DisputesGetResponse = $HttpOk<io.flow.internal.v0.models.Dispute[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4443,6 +4493,8 @@ export declare type FinanceBankPaymentsGetResponse = $HttpOk<io.flow.internal.v0
|
|
|
4443
4493
|
export declare type FinancialMerchantCategoriesGetResponse = $HttpOk<io.flow.internal.v0.models.FinancialMerchantCategory[]> | $HttpUnauthorized<undefined>;
|
|
4444
4494
|
export declare type FinancialReportingStatementsGetByStatementNumberResponse = $HttpOk<io.flow.internal.v0.models.FinancialReportingStatement> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4445
4495
|
export declare type FinancialReportingStatementsPostByStatementNumberResponse = $HttpOk<io.flow.internal.v0.models.FinancialReportingStatement> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4496
|
+
export declare type FlexeWebhooksPostReceiptResponse = $HttpOk<undefined>;
|
|
4497
|
+
export declare type FlexeWebhooksPostShipmentResponse = $HttpOk<undefined>;
|
|
4446
4498
|
export declare type FlowAccountsGetResponse = $HttpOk<io.flow.internal.v0.models.FlowAccount[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4447
4499
|
export declare type FlowAccountsGetByKeyResponse = $HttpOk<io.flow.internal.v0.models.FlowAccount> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4448
4500
|
export declare type FlowAccountsDeleteByKeyResponse = $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError> | $HttpConflict<io.flow.error.v0.models.GenericError> | $HttpNoContent<undefined> | $HttpUnauthorized<undefined>;
|
|
@@ -4538,8 +4590,6 @@ export declare type OrdersPutSubmissionsAndCheckByNumberResponse = $HttpOk<io.fl
|
|
|
4538
4590
|
export declare type PaypalDisputeEventsPostResponse = $HttpCreated<any> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4539
4591
|
export declare type WebhookEventsPostDisputeAndNotificationsAndPaypalResponse = $HttpOk<undefined> | $HttpCreated<undefined>;
|
|
4540
4592
|
export declare type WebhookEventsPostPaymentAndCallbacksAndPaypalResponse = $HttpOk<any>;
|
|
4541
|
-
export declare type ReceiptNotificationsPostResponse = $HttpOk<undefined>;
|
|
4542
|
-
export declare type ShipmentNotificationsPostResponse = $HttpOk<undefined>;
|
|
4543
4593
|
export declare type UltimateBeneficiaryOwnersPutResponse = $HttpOk<io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplication> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4544
4594
|
export declare type OrderManagementEventsPostReplayByOrderLifecycleEventResponse = $HttpOk<io.flow.order.management.event.v0.unions.OrderManagementEvent> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4545
4595
|
export declare type OnboardingStatesPutInternalAndOnboardingAndStateByOrganizationResponse = $HttpCreated<io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4577,8 +4627,6 @@ export declare type ShopifyLocalizedVariantsGetExperienceAndMapByExperienceKeyRe
|
|
|
4577
4627
|
export declare type StripeDisputeEventsPostResponse = $HttpCreated<any> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4578
4628
|
export declare type StripeEventsPostStripeResponse = $HttpOk<any>;
|
|
4579
4629
|
export declare type ChannelTokensPostResponse = $HttpCreated<io.flow.token.v0.models.ChannelToken> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4580
|
-
export declare type LabelTrackingSummariesGetByLabelIdResponse = $HttpOk<io.flow.tracking.v0.models.LabelTrackingSummary> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4581
|
-
export declare type TrackingsPostResponse = $HttpOk<undefined> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4582
4630
|
export declare type ItemClassificationsPostPredictResponse = $HttpOk<io.flow.internal.v0.models.ItemClassification[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4583
4631
|
export declare type ItemClassificationsPostV2AndPredictResponse = $HttpOk<io.flow.internal.v0.models.ItemClassificationV2[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4584
4632
|
export declare type ItemClassificationSummariesGetResponse = $HttpOk<io.flow.internal.v0.models.ItemClassificationSummary[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4859,6 +4907,11 @@ export declare type RestrictionRulesGetByIdResponse = $HttpOk<io.flow.internal.v
|
|
|
4859
4907
|
export declare type RestrictionRulesGetByOrganizationAndStatusResponse = $HttpOk<io.flow.internal.v0.models.RestrictionRuleSummary[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4860
4908
|
export declare type RestrictionRulesPostInternalAndRestrictionAndRulesResponse = $HttpCreated<io.flow.internal.v0.models.RestrictionRule> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4861
4909
|
export declare type RestrictionRulesPutInternalAndRestrictionAndRulesByIdResponse = $HttpOk<io.flow.internal.v0.models.RestrictionRule> | $HttpCreated<io.flow.internal.v0.models.RestrictionRule> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4910
|
+
export declare type RestrictionRuleEffectsGetResponse = $HttpOk<io.flow.internal.v0.models.RestrictionRuleEffect[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4911
|
+
export declare type RestrictionRuleEffectsPostResponse = $HttpCreated<io.flow.internal.v0.models.RestrictionRuleEffect> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4912
|
+
export declare type RestrictionRuleEffectsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.RestrictionRuleEffect> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4913
|
+
export declare type RestrictionRuleEffectsPutByIdResponse = $HttpOk<io.flow.internal.v0.models.RestrictionRuleEffect> | $HttpCreated<io.flow.internal.v0.models.RestrictionRuleEffect> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4914
|
+
export declare type RestrictionRuleEffectsDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4862
4915
|
export declare type RestrictionRuleOverridesGetResponse = $HttpOk<io.flow.internal.v0.models.RestrictionRuleOverride[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4863
4916
|
export declare type RestrictionRuleOverridesGetByOrganizationIdResponse = $HttpOk<io.flow.internal.v0.models.RestrictionRuleOverride[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4864
4917
|
export declare type RoutingEntitiesGetResponse = $HttpOk<io.flow.internal.v0.unions.RoutingEntity[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4871,6 +4924,7 @@ export declare type SessionCountriesPutByCountryResponse = $HttpOk<io.flow.inter
|
|
|
4871
4924
|
export declare type SessionOrderDataGetBySessionIdResponse = $HttpOk<io.flow.internal.v0.models.SessionOrderData> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4872
4925
|
export declare type SessionRolloutsGetResponse = $HttpOk<io.flow.internal.v0.models.SessionRollout> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4873
4926
|
export declare type SessionRolloutsPutResponse = $HttpOk<io.flow.internal.v0.models.SessionRollout> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4927
|
+
export declare type ShawnRoundtableWorkshopRatesGetRatesByWorkshopSlotNumberResponse = $HttpOk<io.flow.internal.v0.models.ShawnRoundtableWorkshopRate[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4874
4928
|
export declare type ShippingLanesGetResponse = $HttpOk<io.flow.internal.v0.models.ShippingLane[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4875
4929
|
export declare type ShopsGetRedirectsAndOrderByAppResponse = $HttpSeeOther<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4876
4930
|
export declare type ShopsGetByMyshopifyDomainResponse = $HttpOk<io.flow.internal.v0.models.Shop> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
@@ -4884,7 +4938,6 @@ export declare type ShopifyGiftCardReversalsPostResponse = $HttpCreated<io.flow.
|
|
|
4884
4938
|
export declare type ShopifyGrantsChecksGetCheckHtmlResponse = $HttpOk<string> | $HttpUnauthorized<undefined>;
|
|
4885
4939
|
export declare type ShopifyMarketsOrderVersionWithShopIdsGetVersionsByNumberResponse = $HttpOk<io.flow.internal.v0.models.ShopifyMarketsOrderVersionWithShopId[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4886
4940
|
export declare type ShopifyMarketsQueuedRecordsGetResponse = $HttpOk<io.flow.internal.v0.models.ShopifyMarketsQueuedRecord[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4887
|
-
export declare type ShopifyMarketsQueuedRecordsPutIgnoreByIdResponse = $HttpOk<io.flow.internal.v0.models.ShopifyMarketsQueuedRecord> | $HttpCreated<io.flow.internal.v0.models.ShopifyMarketsQueuedRecord> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4888
4941
|
export declare type ShopifyMarketsQueuedRecordsPutRequeueAndNowByIdResponse = $HttpOk<io.flow.internal.v0.models.ShopifyMarketsQueuedRecord> | $HttpCreated<io.flow.internal.v0.models.ShopifyMarketsQueuedRecord> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4889
4942
|
export declare type ShopifyMarketsShopsGetResponse = $HttpOk<io.flow.internal.v0.models.ShopifyMarketsShop[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4890
4943
|
export declare type ShopifyMarketsShopsGetByOrganizationResponse = $HttpOk<io.flow.internal.v0.models.ShopifyMarketsShop> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4918,6 +4971,7 @@ export declare type ShopifyPromotionsPostResponse = $HttpCreated<io.flow.interna
|
|
|
4918
4971
|
export declare type ShopifyPromotionsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.ShopifyPromotion> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4919
4972
|
export declare type ShopifyPromotionsPutByIdResponse = $HttpOk<io.flow.internal.v0.models.ShopifyPromotion> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4920
4973
|
export declare type ShopifyStoreDetailsGetResponse = $HttpOk<io.flow.internal.v0.models.ShopifyStoreDetail> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4974
|
+
export declare type ShopifyStripeEventsPostResponse = $HttpCreated<any> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4921
4975
|
export declare type ShopifyWebhookEventsPostShopsByShopifyShopIdAndTopicAndActionResponse = $HttpNoContent<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4922
4976
|
export declare type ShopifyWebhookEventsPostByTopicAndActionResponse = $HttpNoContent<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4923
4977
|
export declare type SmpTaxCalculationFormsPostResponse = $HttpOk<io.flow.internal.v0.models.SmpTaxCalculation> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.internal.v0.models.TaxCalculationError>;
|
|
@@ -4945,7 +4999,9 @@ export declare type TestsPutByIdResponse = $HttpOk<io.flow.internal.v0.models.Te
|
|
|
4945
4999
|
export declare type TestsDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4946
5000
|
export declare type TrackingDebugLabelsGetByLabelIdResponse = $HttpOk<io.flow.internal.v0.models.TrackingDebugLabel> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4947
5001
|
export declare type TrackingDebugLabelsPostForceAndTransitByLabelIdResponse = $HttpOk<io.flow.tracking.v0.models.TrackingEvent> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4948
|
-
export declare type
|
|
5002
|
+
export declare type TrackingResyncsPostResponse = $HttpOk<undefined> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
5003
|
+
export declare type TrackingWebhooksGetResponse = $HttpOk<any> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
5004
|
+
export declare type TrackingWebhooksPostResponse = $HttpOk<any> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4949
5005
|
export declare type TransactionsGetOrdersByOrderNumberResponse = $HttpOk<io.flow.internal.v0.unions.Transaction[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4950
5006
|
export declare type TransactionAdjustmentsPostResponse = $HttpOk<io.flow.internal.v0.models.TransactionAdjustment> | $HttpCreated<io.flow.internal.v0.models.TransactionAdjustment> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4951
5007
|
export declare type TransactionAdjustmentsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.TransactionAdjustment> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
@@ -4982,6 +5038,9 @@ export declare class AddressConfigurationSettingsResource extends $Resource {
|
|
|
4982
5038
|
get(params: AddressConfigurationSettingsGetParameters): Promise<AddressConfigurationSettingsGetResponse>;
|
|
4983
5039
|
put(params: AddressConfigurationSettingsPutParameters): Promise<AddressConfigurationSettingsPutResponse>;
|
|
4984
5040
|
}
|
|
5041
|
+
export declare class AftershipWebhooksResource extends $Resource {
|
|
5042
|
+
post(params: AftershipWebhooksPostParameters): Promise<AftershipWebhooksPostResponse>;
|
|
5043
|
+
}
|
|
4985
5044
|
export declare class AldoItemsResource extends $Resource {
|
|
4986
5045
|
post(params: AldoItemsPostParameters): Promise<AldoItemsPostResponse>;
|
|
4987
5046
|
getById(params: AldoItemsGetByIdParameters): Promise<AldoItemsGetByIdResponse>;
|
|
@@ -4999,6 +5058,12 @@ export declare class AlertRequeueSummariesResource extends $Resource {
|
|
|
4999
5058
|
export declare class AllOrganizationsMembershipsResource extends $Resource {
|
|
5000
5059
|
postAll(params: AllOrganizationsMembershipsPostAllParameters): Promise<AllOrganizationsMembershipsPostAllResponse>;
|
|
5001
5060
|
}
|
|
5061
|
+
export declare class AnshItemsResource extends $Resource {
|
|
5062
|
+
post(params: AnshItemsPostParameters): Promise<AnshItemsPostResponse>;
|
|
5063
|
+
getById(params: AnshItemsGetByIdParameters): Promise<AnshItemsGetByIdResponse>;
|
|
5064
|
+
putById(params: AnshItemsPutByIdParameters): Promise<AnshItemsPutByIdResponse>;
|
|
5065
|
+
deleteById(params: AnshItemsDeleteByIdParameters): Promise<AnshItemsDeleteByIdResponse>;
|
|
5066
|
+
}
|
|
5002
5067
|
export declare class AuthorizedChargeStatusesResource extends $Resource {
|
|
5003
5068
|
get(params: AuthorizedChargeStatusesGetParameters): Promise<AuthorizedChargeStatusesGetResponse>;
|
|
5004
5069
|
}
|
|
@@ -5226,10 +5291,6 @@ export declare class DeliveredDutyPreferencesResource extends $Resource {
|
|
|
5226
5291
|
get(params: DeliveredDutyPreferencesGetParameters): Promise<DeliveredDutyPreferencesGetResponse>;
|
|
5227
5292
|
put(params: DeliveredDutyPreferencesPutParameters): Promise<DeliveredDutyPreferencesPutResponse>;
|
|
5228
5293
|
}
|
|
5229
|
-
export declare class DhlEcommerceWebhooksResource extends $Resource {
|
|
5230
|
-
get(params?: DhlEcommerceWebhooksGetParameters): Promise<DhlEcommerceWebhooksGetResponse>;
|
|
5231
|
-
post(params: DhlEcommerceWebhooksPostParameters): Promise<DhlEcommerceWebhooksPostResponse>;
|
|
5232
|
-
}
|
|
5233
5294
|
export declare class DiscountCodesResource extends $Resource {
|
|
5234
5295
|
put(params: DiscountCodesPutParameters): Promise<DiscountCodesPutResponse>;
|
|
5235
5296
|
deleteByCode(params: DiscountCodesDeleteByCodeParameters): Promise<DiscountCodesDeleteByCodeResponse>;
|
|
@@ -5307,6 +5368,10 @@ export declare class FinancialReportingStatementsResource extends $Resource {
|
|
|
5307
5368
|
getByStatementNumber(params: FinancialReportingStatementsGetByStatementNumberParameters): Promise<FinancialReportingStatementsGetByStatementNumberResponse>;
|
|
5308
5369
|
postByStatementNumber(params: FinancialReportingStatementsPostByStatementNumberParameters): Promise<FinancialReportingStatementsPostByStatementNumberResponse>;
|
|
5309
5370
|
}
|
|
5371
|
+
export declare class FlexeWebhooksResource extends $Resource {
|
|
5372
|
+
postReceipt(params: FlexeWebhooksPostReceiptParameters): Promise<FlexeWebhooksPostReceiptResponse>;
|
|
5373
|
+
postShipment(params: FlexeWebhooksPostShipmentParameters): Promise<FlexeWebhooksPostShipmentResponse>;
|
|
5374
|
+
}
|
|
5310
5375
|
export declare class FlowAccountsResource extends $Resource {
|
|
5311
5376
|
get(params: FlowAccountsGetParameters): Promise<FlowAccountsGetResponse>;
|
|
5312
5377
|
getByKey(params: FlowAccountsGetByKeyParameters): Promise<FlowAccountsGetByKeyResponse>;
|
|
@@ -5476,12 +5541,6 @@ export declare class WebhookEventsResource extends $Resource {
|
|
|
5476
5541
|
postDisputeAndNotificationsAndPaypal(params: WebhookEventsPostDisputeAndNotificationsAndPaypalParameters): Promise<WebhookEventsPostDisputeAndNotificationsAndPaypalResponse>;
|
|
5477
5542
|
postPaymentAndCallbacksAndPaypal(params: WebhookEventsPostPaymentAndCallbacksAndPaypalParameters): Promise<WebhookEventsPostPaymentAndCallbacksAndPaypalResponse>;
|
|
5478
5543
|
}
|
|
5479
|
-
export declare class ReceiptNotificationsResource extends $Resource {
|
|
5480
|
-
post(params: ReceiptNotificationsPostParameters): Promise<ReceiptNotificationsPostResponse>;
|
|
5481
|
-
}
|
|
5482
|
-
export declare class ShipmentNotificationsResource extends $Resource {
|
|
5483
|
-
post(params: ShipmentNotificationsPostParameters): Promise<ShipmentNotificationsPostResponse>;
|
|
5484
|
-
}
|
|
5485
5544
|
export declare class UltimateBeneficiaryOwnersResource extends $Resource {
|
|
5486
5545
|
put(params: UltimateBeneficiaryOwnersPutParameters): Promise<UltimateBeneficiaryOwnersPutResponse>;
|
|
5487
5546
|
}
|
|
@@ -5559,12 +5618,6 @@ export declare class StripeEventsResource extends $Resource {
|
|
|
5559
5618
|
export declare class ChannelTokensResource extends $Resource {
|
|
5560
5619
|
post(params: ChannelTokensPostParameters): Promise<ChannelTokensPostResponse>;
|
|
5561
5620
|
}
|
|
5562
|
-
export declare class LabelTrackingSummariesResource extends $Resource {
|
|
5563
|
-
getByLabelId(params: LabelTrackingSummariesGetByLabelIdParameters): Promise<LabelTrackingSummariesGetByLabelIdResponse>;
|
|
5564
|
-
}
|
|
5565
|
-
export declare class TrackingsResource extends $Resource {
|
|
5566
|
-
post(params: TrackingsPostParameters): Promise<TrackingsPostResponse>;
|
|
5567
|
-
}
|
|
5568
5621
|
export declare class ItemClassificationsResource extends $Resource {
|
|
5569
5622
|
postPredict(params: ItemClassificationsPostPredictParameters): Promise<ItemClassificationsPostPredictResponse>;
|
|
5570
5623
|
postV2AndPredict(params: ItemClassificationsPostV2AndPredictParameters): Promise<ItemClassificationsPostV2AndPredictResponse>;
|
|
@@ -6049,6 +6102,13 @@ export declare class RestrictionRulesResource extends $Resource {
|
|
|
6049
6102
|
postInternalAndRestrictionAndRules(params: RestrictionRulesPostInternalAndRestrictionAndRulesParameters): Promise<RestrictionRulesPostInternalAndRestrictionAndRulesResponse>;
|
|
6050
6103
|
putInternalAndRestrictionAndRulesById(params: RestrictionRulesPutInternalAndRestrictionAndRulesByIdParameters): Promise<RestrictionRulesPutInternalAndRestrictionAndRulesByIdResponse>;
|
|
6051
6104
|
}
|
|
6105
|
+
export declare class RestrictionRuleEffectsResource extends $Resource {
|
|
6106
|
+
get(params: RestrictionRuleEffectsGetParameters): Promise<RestrictionRuleEffectsGetResponse>;
|
|
6107
|
+
post(params: RestrictionRuleEffectsPostParameters): Promise<RestrictionRuleEffectsPostResponse>;
|
|
6108
|
+
getById(params: RestrictionRuleEffectsGetByIdParameters): Promise<RestrictionRuleEffectsGetByIdResponse>;
|
|
6109
|
+
putById(params: RestrictionRuleEffectsPutByIdParameters): Promise<RestrictionRuleEffectsPutByIdResponse>;
|
|
6110
|
+
deleteById(params: RestrictionRuleEffectsDeleteByIdParameters): Promise<RestrictionRuleEffectsDeleteByIdResponse>;
|
|
6111
|
+
}
|
|
6052
6112
|
export declare class RestrictionRuleOverridesResource extends $Resource {
|
|
6053
6113
|
get(params: RestrictionRuleOverridesGetParameters): Promise<RestrictionRuleOverridesGetResponse>;
|
|
6054
6114
|
getByOrganizationId(params: RestrictionRuleOverridesGetByOrganizationIdParameters): Promise<RestrictionRuleOverridesGetByOrganizationIdResponse>;
|
|
@@ -6077,6 +6137,9 @@ export declare class SessionRolloutsResource extends $Resource {
|
|
|
6077
6137
|
get(params: SessionRolloutsGetParameters): Promise<SessionRolloutsGetResponse>;
|
|
6078
6138
|
put(params: SessionRolloutsPutParameters): Promise<SessionRolloutsPutResponse>;
|
|
6079
6139
|
}
|
|
6140
|
+
export declare class ShawnRoundtableWorkshopRatesResource extends $Resource {
|
|
6141
|
+
getRatesByWorkshopSlotNumber(params: ShawnRoundtableWorkshopRatesGetRatesByWorkshopSlotNumberParameters): Promise<ShawnRoundtableWorkshopRatesGetRatesByWorkshopSlotNumberResponse>;
|
|
6142
|
+
}
|
|
6080
6143
|
export declare class ShippingLanesResource extends $Resource {
|
|
6081
6144
|
get(params?: ShippingLanesGetParameters): Promise<ShippingLanesGetResponse>;
|
|
6082
6145
|
}
|
|
@@ -6105,7 +6168,6 @@ export declare class ShopifyMarketsOrderVersionWithShopIdsResource extends $Reso
|
|
|
6105
6168
|
}
|
|
6106
6169
|
export declare class ShopifyMarketsQueuedRecordsResource extends $Resource {
|
|
6107
6170
|
get(params: ShopifyMarketsQueuedRecordsGetParameters): Promise<ShopifyMarketsQueuedRecordsGetResponse>;
|
|
6108
|
-
putIgnoreById(params: ShopifyMarketsQueuedRecordsPutIgnoreByIdParameters): Promise<ShopifyMarketsQueuedRecordsPutIgnoreByIdResponse>;
|
|
6109
6171
|
putRequeueAndNowById(params: ShopifyMarketsQueuedRecordsPutRequeueAndNowByIdParameters): Promise<ShopifyMarketsQueuedRecordsPutRequeueAndNowByIdResponse>;
|
|
6110
6172
|
}
|
|
6111
6173
|
export declare class ShopifyMarketsShopsResource extends $Resource {
|
|
@@ -6164,6 +6226,9 @@ export declare class ShopifyPromotionsResource extends $Resource {
|
|
|
6164
6226
|
export declare class ShopifyStoreDetailsResource extends $Resource {
|
|
6165
6227
|
get(params: ShopifyStoreDetailsGetParameters): Promise<ShopifyStoreDetailsGetResponse>;
|
|
6166
6228
|
}
|
|
6229
|
+
export declare class ShopifyStripeEventsResource extends $Resource {
|
|
6230
|
+
post(params: ShopifyStripeEventsPostParameters): Promise<ShopifyStripeEventsPostResponse>;
|
|
6231
|
+
}
|
|
6167
6232
|
export declare class ShopifyWebhookEventsResource extends $Resource {
|
|
6168
6233
|
postShopsByShopifyShopIdAndTopicAndAction(params: ShopifyWebhookEventsPostShopsByShopifyShopIdAndTopicAndActionParameters): Promise<ShopifyWebhookEventsPostShopsByShopifyShopIdAndTopicAndActionResponse>;
|
|
6169
6234
|
postByTopicAndAction(params: ShopifyWebhookEventsPostByTopicAndActionParameters): Promise<ShopifyWebhookEventsPostByTopicAndActionResponse>;
|
|
@@ -6213,8 +6278,12 @@ export declare class TrackingDebugLabelsResource extends $Resource {
|
|
|
6213
6278
|
getByLabelId(params: TrackingDebugLabelsGetByLabelIdParameters): Promise<TrackingDebugLabelsGetByLabelIdResponse>;
|
|
6214
6279
|
postForceAndTransitByLabelId(params: TrackingDebugLabelsPostForceAndTransitByLabelIdParameters): Promise<TrackingDebugLabelsPostForceAndTransitByLabelIdResponse>;
|
|
6215
6280
|
}
|
|
6216
|
-
export declare class
|
|
6217
|
-
|
|
6281
|
+
export declare class TrackingResyncsResource extends $Resource {
|
|
6282
|
+
post(params: TrackingResyncsPostParameters): Promise<TrackingResyncsPostResponse>;
|
|
6283
|
+
}
|
|
6284
|
+
export declare class TrackingWebhooksResource extends $Resource {
|
|
6285
|
+
get(params: TrackingWebhooksGetParameters): Promise<TrackingWebhooksGetResponse>;
|
|
6286
|
+
post(params: TrackingWebhooksPostParameters): Promise<TrackingWebhooksPostResponse>;
|
|
6218
6287
|
}
|
|
6219
6288
|
export declare class TransactionsResource extends $Resource {
|
|
6220
6289
|
getOrdersByOrderNumber(params: TransactionsGetOrdersByOrderNumberParameters): Promise<TransactionsGetOrdersByOrderNumberResponse>;
|
|
@@ -6269,10 +6338,12 @@ export declare class WebhooksResource extends $Resource {
|
|
|
6269
6338
|
export interface ClientInstance {
|
|
6270
6339
|
accountPaymentHolds: AccountPaymentHoldsResource;
|
|
6271
6340
|
addressConfigurationSettings: AddressConfigurationSettingsResource;
|
|
6341
|
+
aftershipWebhooks: AftershipWebhooksResource;
|
|
6272
6342
|
aldoItems: AldoItemsResource;
|
|
6273
6343
|
alertFailureSummaries: AlertFailureSummariesResource;
|
|
6274
6344
|
alertRequeueSummaries: AlertRequeueSummariesResource;
|
|
6275
6345
|
allOrganizationsMemberships: AllOrganizationsMembershipsResource;
|
|
6346
|
+
anshItems: AnshItemsResource;
|
|
6276
6347
|
authorizedChargeStatuses: AuthorizedChargeStatusesResource;
|
|
6277
6348
|
bankPayments: BankPaymentsResource;
|
|
6278
6349
|
bankPaymentOrders: BankPaymentOrdersResource;
|
|
@@ -6327,7 +6398,6 @@ export interface ClientInstance {
|
|
|
6327
6398
|
debugOrderTransactions: DebugOrderTransactionsResource;
|
|
6328
6399
|
deliveredDutyOptions: DeliveredDutyOptionsResource;
|
|
6329
6400
|
deliveredDutyPreferences: DeliveredDutyPreferencesResource;
|
|
6330
|
-
dhlEcommerceWebhooks: DhlEcommerceWebhooksResource;
|
|
6331
6401
|
discountCodes: DiscountCodesResource;
|
|
6332
6402
|
disputes: DisputesResource;
|
|
6333
6403
|
dutyInternalRates: DutyInternalRatesResource;
|
|
@@ -6344,6 +6414,7 @@ export interface ClientInstance {
|
|
|
6344
6414
|
financeBankPayments: FinanceBankPaymentsResource;
|
|
6345
6415
|
financialMerchantCategories: FinancialMerchantCategoriesResource;
|
|
6346
6416
|
financialReportingStatements: FinancialReportingStatementsResource;
|
|
6417
|
+
flexeWebhooks: FlexeWebhooksResource;
|
|
6347
6418
|
flowAccounts: FlowAccountsResource;
|
|
6348
6419
|
flowBillingStatements: FlowBillingStatementsResource;
|
|
6349
6420
|
flowChannelOrganizations: FlowChannelOrganizationsResource;
|
|
@@ -6381,8 +6452,6 @@ export interface ClientInstance {
|
|
|
6381
6452
|
orders: OrdersResource;
|
|
6382
6453
|
paypalDisputeEvents: PaypalDisputeEventsResource;
|
|
6383
6454
|
webhookEvents: WebhookEventsResource;
|
|
6384
|
-
receiptNotifications: ReceiptNotificationsResource;
|
|
6385
|
-
shipmentNotifications: ShipmentNotificationsResource;
|
|
6386
6455
|
ultimateBeneficiaryOwners: UltimateBeneficiaryOwnersResource;
|
|
6387
6456
|
orderManagementEvents: OrderManagementEventsResource;
|
|
6388
6457
|
onboardingStates: OnboardingStatesResource;
|
|
@@ -6403,8 +6472,6 @@ export interface ClientInstance {
|
|
|
6403
6472
|
stripeDisputeEvents: StripeDisputeEventsResource;
|
|
6404
6473
|
stripeEvents: StripeEventsResource;
|
|
6405
6474
|
channelTokens: ChannelTokensResource;
|
|
6406
|
-
labelTrackingSummaries: LabelTrackingSummariesResource;
|
|
6407
|
-
trackings: TrackingsResource;
|
|
6408
6475
|
itemClassifications: ItemClassificationsResource;
|
|
6409
6476
|
itemClassificationSummaries: ItemClassificationSummariesResource;
|
|
6410
6477
|
itemHarmonizations: ItemHarmonizationsResource;
|
|
@@ -6507,6 +6574,7 @@ export interface ClientInstance {
|
|
|
6507
6574
|
restrictionProducts: RestrictionProductsResource;
|
|
6508
6575
|
restrictionProductSummaries: RestrictionProductSummariesResource;
|
|
6509
6576
|
restrictionRules: RestrictionRulesResource;
|
|
6577
|
+
restrictionRuleEffects: RestrictionRuleEffectsResource;
|
|
6510
6578
|
restrictionRuleOverrides: RestrictionRuleOverridesResource;
|
|
6511
6579
|
routingEntities: RoutingEntitiesResource;
|
|
6512
6580
|
sandboxSetups: SandboxSetupsResource;
|
|
@@ -6515,6 +6583,7 @@ export interface ClientInstance {
|
|
|
6515
6583
|
sessionCountries: SessionCountriesResource;
|
|
6516
6584
|
sessionOrderData: SessionOrderDataResource;
|
|
6517
6585
|
sessionRollouts: SessionRolloutsResource;
|
|
6586
|
+
shawnRoundtableWorkshopRates: ShawnRoundtableWorkshopRatesResource;
|
|
6518
6587
|
shippingLanes: ShippingLanesResource;
|
|
6519
6588
|
shops: ShopsResource;
|
|
6520
6589
|
shopifyGiftCardBalances: ShopifyGiftCardBalancesResource;
|
|
@@ -6535,6 +6604,7 @@ export interface ClientInstance {
|
|
|
6535
6604
|
shopifyPartnerWebhooks: ShopifyPartnerWebhooksResource;
|
|
6536
6605
|
shopifyPromotions: ShopifyPromotionsResource;
|
|
6537
6606
|
shopifyStoreDetails: ShopifyStoreDetailsResource;
|
|
6607
|
+
shopifyStripeEvents: ShopifyStripeEventsResource;
|
|
6538
6608
|
shopifyWebhookEvents: ShopifyWebhookEventsResource;
|
|
6539
6609
|
smpTaxCalculationForms: SmpTaxCalculationFormsResource;
|
|
6540
6610
|
snoozes: SnoozesResource;
|
|
@@ -6546,7 +6616,8 @@ export interface ClientInstance {
|
|
|
6546
6616
|
techOnboardingDescriptions: TechOnboardingDescriptionsResource;
|
|
6547
6617
|
tests: TestsResource;
|
|
6548
6618
|
trackingDebugLabels: TrackingDebugLabelsResource;
|
|
6549
|
-
|
|
6619
|
+
trackingResyncs: TrackingResyncsResource;
|
|
6620
|
+
trackingWebhooks: TrackingWebhooksResource;
|
|
6550
6621
|
transactions: TransactionsResource;
|
|
6551
6622
|
transactionAdjustments: TransactionAdjustmentsResource;
|
|
6552
6623
|
tribes: TribesResource;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-internal-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.159",
|
|
4
4
|
"description": "Global TypeScript typings for Flow Commerce API",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"generate": "apibuilder update"
|
|
27
27
|
},
|
|
28
28
|
"sideEffects": false,
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "b6c2f519293efcf70e56cc356ba0b60292295b25"
|
|
30
30
|
}
|