@flowio/api-internal-sdk 0.0.122 → 0.0.123
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 +380 -40
- package/dist/esm/api-internal.js +375 -35
- package/dist/types/api-internal.d.ts +243 -19
- package/package.json +2 -2
|
@@ -275,6 +275,11 @@ export interface CarrierAccountsDeleteByIdParameters {
|
|
|
275
275
|
organization: string;
|
|
276
276
|
id: string;
|
|
277
277
|
}
|
|
278
|
+
export interface CarrierAccountsGetValidateByIdParameters {
|
|
279
|
+
headers?: $HttpHeaders;
|
|
280
|
+
organization: string;
|
|
281
|
+
id: string;
|
|
282
|
+
}
|
|
278
283
|
export interface CatalogSettingsGetParameters {
|
|
279
284
|
headers?: $HttpHeaders;
|
|
280
285
|
organization: string;
|
|
@@ -621,10 +626,18 @@ export interface CiphersPostParameters {
|
|
|
621
626
|
body: io.flow.internal.v0.models.CipherForm;
|
|
622
627
|
headers?: $HttpHeaders;
|
|
623
628
|
}
|
|
629
|
+
export interface CiphersPostBatchParameters {
|
|
630
|
+
body: io.flow.internal.v0.models.CipherForm[];
|
|
631
|
+
headers?: $HttpHeaders;
|
|
632
|
+
}
|
|
624
633
|
export interface CiphersPostGetParameters {
|
|
625
634
|
body: io.flow.internal.v0.models.DecryptCipherForm;
|
|
626
635
|
headers?: $HttpHeaders;
|
|
627
636
|
}
|
|
637
|
+
export interface CiphersPostGetAndBatchParameters {
|
|
638
|
+
body: io.flow.internal.v0.models.DecryptCipherForm[];
|
|
639
|
+
headers?: $HttpHeaders;
|
|
640
|
+
}
|
|
628
641
|
export interface ClassificationsPostParameters {
|
|
629
642
|
body: io.flow.internal.v0.models.ClassificationFormWrapper;
|
|
630
643
|
headers?: $HttpHeaders;
|
|
@@ -852,9 +865,11 @@ export interface ErpFlowFilesGetByIdParameters {
|
|
|
852
865
|
export interface ErpFlowVendorsGetParameters {
|
|
853
866
|
headers?: $HttpHeaders;
|
|
854
867
|
organization: string;
|
|
855
|
-
id?: string[];
|
|
856
868
|
entity_id?: string;
|
|
869
|
+
company_id?: string;
|
|
857
870
|
different?: boolean;
|
|
871
|
+
status?: string;
|
|
872
|
+
id?: string[];
|
|
858
873
|
limit?: number;
|
|
859
874
|
offset?: number;
|
|
860
875
|
sort?: string;
|
|
@@ -888,6 +903,25 @@ export interface ErpPriorityFilesDeleteByIdParameters {
|
|
|
888
903
|
organization: string;
|
|
889
904
|
id: string;
|
|
890
905
|
}
|
|
906
|
+
export interface ErpPriorityVendorsGetParameters {
|
|
907
|
+
headers?: $HttpHeaders;
|
|
908
|
+
organization: string;
|
|
909
|
+
id?: string[];
|
|
910
|
+
limit?: number;
|
|
911
|
+
offset?: number;
|
|
912
|
+
sort?: string;
|
|
913
|
+
}
|
|
914
|
+
export interface ErpPriorityVendorsGetByIdParameters {
|
|
915
|
+
headers?: $HttpHeaders;
|
|
916
|
+
organization: string;
|
|
917
|
+
id: string;
|
|
918
|
+
}
|
|
919
|
+
export interface ErpPriorityVendorsPutByIdParameters {
|
|
920
|
+
body: io.flow.internal.v0.models.ErpPriorityVendorForm;
|
|
921
|
+
headers?: $HttpHeaders;
|
|
922
|
+
organization: string;
|
|
923
|
+
id: string;
|
|
924
|
+
}
|
|
891
925
|
export interface ErpVendorStatusesGetStatusParameters {
|
|
892
926
|
headers?: $HttpHeaders;
|
|
893
927
|
organization: string;
|
|
@@ -1434,6 +1468,29 @@ export interface HarmonizationItemClassificationsGetVersionsParameters {
|
|
|
1434
1468
|
offset?: number;
|
|
1435
1469
|
sort?: string;
|
|
1436
1470
|
}
|
|
1471
|
+
export interface HarmonizationThresholdsGetThresholdsParameters {
|
|
1472
|
+
headers?: $HttpHeaders;
|
|
1473
|
+
id?: string[];
|
|
1474
|
+
sort?: string;
|
|
1475
|
+
limit?: number;
|
|
1476
|
+
offset?: number;
|
|
1477
|
+
}
|
|
1478
|
+
export interface HarmonizationThresholdsPostThresholdsParameters {
|
|
1479
|
+
body: io.flow.internal.v0.models.HarmonizationThresholdForm;
|
|
1480
|
+
headers?: $HttpHeaders;
|
|
1481
|
+
}
|
|
1482
|
+
export interface HarmonizationThresholdsGetThresholdsAndDefaultParameters {
|
|
1483
|
+
headers?: $HttpHeaders;
|
|
1484
|
+
}
|
|
1485
|
+
export interface HarmonizationThresholdsPutThresholdsByIdParameters {
|
|
1486
|
+
body: io.flow.internal.v0.models.HarmonizationThresholdForm;
|
|
1487
|
+
headers?: $HttpHeaders;
|
|
1488
|
+
id: string;
|
|
1489
|
+
}
|
|
1490
|
+
export interface HarmonizationThresholdsDeleteThresholdsByIdParameters {
|
|
1491
|
+
headers?: $HttpHeaders;
|
|
1492
|
+
id: string;
|
|
1493
|
+
}
|
|
1437
1494
|
export interface HarmonizationUnclassifiedStatisticsGetParameters {
|
|
1438
1495
|
headers?: $HttpHeaders;
|
|
1439
1496
|
organization_id?: string[];
|
|
@@ -1517,6 +1574,11 @@ export interface InvoiceWebhookResponsesPostParameters {
|
|
|
1517
1574
|
body: any;
|
|
1518
1575
|
headers?: $HttpHeaders;
|
|
1519
1576
|
}
|
|
1577
|
+
export interface ItemsPutBulkParameters {
|
|
1578
|
+
body: io.flow.catalog.v0.models.ItemForm[];
|
|
1579
|
+
headers?: $HttpHeaders;
|
|
1580
|
+
organization: string;
|
|
1581
|
+
}
|
|
1520
1582
|
export interface ChannelsGetParameters {
|
|
1521
1583
|
headers?: $HttpHeaders;
|
|
1522
1584
|
id?: string[];
|
|
@@ -1847,6 +1909,15 @@ export interface ShopifyOrdersGetTraceByShopifyOrderIdParameters {
|
|
|
1847
1909
|
organization: string;
|
|
1848
1910
|
shopify_order_id: string;
|
|
1849
1911
|
}
|
|
1912
|
+
export interface KnowYourBusinessesGetParameters {
|
|
1913
|
+
headers?: $HttpHeaders;
|
|
1914
|
+
channel_id: string;
|
|
1915
|
+
id?: string[];
|
|
1916
|
+
organization_id?: string[];
|
|
1917
|
+
limit?: number;
|
|
1918
|
+
offset?: number;
|
|
1919
|
+
sort?: string;
|
|
1920
|
+
}
|
|
1850
1921
|
export interface ShopifyCartsPutShopifyAndCartsAndPromotionByIdParameters {
|
|
1851
1922
|
body: io.flow.internal.v0.models.ShopifyPromotionForm;
|
|
1852
1923
|
headers?: $HttpHeaders;
|
|
@@ -1895,6 +1966,10 @@ export interface ChannelTokensPostParameters {
|
|
|
1895
1966
|
body: io.flow.token.v0.models.ChannelTokenForm;
|
|
1896
1967
|
headers?: $HttpHeaders;
|
|
1897
1968
|
}
|
|
1969
|
+
export interface TrackingsPostParameters {
|
|
1970
|
+
body: any;
|
|
1971
|
+
headers?: $HttpHeaders;
|
|
1972
|
+
}
|
|
1898
1973
|
export interface ItemClassificationsPostPredictParameters {
|
|
1899
1974
|
body: io.flow.internal.v0.models.ItemClassificationForm[];
|
|
1900
1975
|
headers?: $HttpHeaders;
|
|
@@ -2152,11 +2227,6 @@ export interface LocalizedItemsExportSettingsPutParameters {
|
|
|
2152
2227
|
headers?: $HttpHeaders;
|
|
2153
2228
|
organization: string;
|
|
2154
2229
|
}
|
|
2155
|
-
export interface LogisticsCenterChecksGetParameters {
|
|
2156
|
-
headers?: $HttpHeaders;
|
|
2157
|
-
organization_id: string;
|
|
2158
|
-
center_id: string;
|
|
2159
|
-
}
|
|
2160
2230
|
export interface LoyaltyProgramsGetParameters {
|
|
2161
2231
|
headers?: $HttpHeaders;
|
|
2162
2232
|
organization: string;
|
|
@@ -2442,6 +2512,8 @@ export interface OnboardingOrganizationsGetParameters {
|
|
|
2442
2512
|
application_received_to?: string;
|
|
2443
2513
|
legal_name_contains?: string;
|
|
2444
2514
|
shop_name_contains?: string;
|
|
2515
|
+
audit_categories_warned_or_failed?: string[];
|
|
2516
|
+
last_audit_result?: string;
|
|
2445
2517
|
organization_id_contains?: string;
|
|
2446
2518
|
setup_completed_at_from?: string;
|
|
2447
2519
|
setup_completed_at_to?: string;
|
|
@@ -2451,6 +2523,13 @@ export interface OnboardingOrganizationsGetParameters {
|
|
|
2451
2523
|
limit?: number;
|
|
2452
2524
|
offset?: number;
|
|
2453
2525
|
}
|
|
2526
|
+
export interface OnboardingOrganizationsGetSearchParameters {
|
|
2527
|
+
headers?: $HttpHeaders;
|
|
2528
|
+
channel_id: string;
|
|
2529
|
+
q?: string;
|
|
2530
|
+
limit?: number;
|
|
2531
|
+
offset?: number;
|
|
2532
|
+
}
|
|
2454
2533
|
export interface OptinAttributesGetParameters {
|
|
2455
2534
|
headers?: $HttpHeaders;
|
|
2456
2535
|
organization: string;
|
|
@@ -2752,6 +2831,19 @@ export interface OrganizationCurrencySettingsDeleteByIdParameters {
|
|
|
2752
2831
|
headers?: $HttpHeaders;
|
|
2753
2832
|
id: string;
|
|
2754
2833
|
}
|
|
2834
|
+
export interface OrganizationDeactivationsGetParameters {
|
|
2835
|
+
headers?: $HttpHeaders;
|
|
2836
|
+
organization: string;
|
|
2837
|
+
}
|
|
2838
|
+
export interface OrganizationDeactivationsPutParameters {
|
|
2839
|
+
body: io.flow.internal.v0.models.OrganizationDeactivationForm;
|
|
2840
|
+
headers?: $HttpHeaders;
|
|
2841
|
+
organization: string;
|
|
2842
|
+
}
|
|
2843
|
+
export interface OrganizationDeactivationsDeleteParameters {
|
|
2844
|
+
headers?: $HttpHeaders;
|
|
2845
|
+
organization: string;
|
|
2846
|
+
}
|
|
2755
2847
|
export interface OrganizationDebugTransactionsPostParameters {
|
|
2756
2848
|
body: io.flow.internal.v0.models.DebugOrderTransactionForm;
|
|
2757
2849
|
headers?: $HttpHeaders;
|
|
@@ -2791,6 +2883,10 @@ export interface OrganizationRestrictionStatusesGetParameters {
|
|
|
2791
2883
|
headers?: $HttpHeaders;
|
|
2792
2884
|
organization: string;
|
|
2793
2885
|
}
|
|
2886
|
+
export interface OrganizationRestrictionStatusesPostResetParameters {
|
|
2887
|
+
headers?: $HttpHeaders;
|
|
2888
|
+
organization: string;
|
|
2889
|
+
}
|
|
2794
2890
|
export interface OrganizationRestrictionStatusNotesGetParameters {
|
|
2795
2891
|
headers?: $HttpHeaders;
|
|
2796
2892
|
organization: string;
|
|
@@ -2815,6 +2911,14 @@ export interface OrganizationSettingsPutParameters {
|
|
|
2815
2911
|
headers?: $HttpHeaders;
|
|
2816
2912
|
organization: string;
|
|
2817
2913
|
}
|
|
2914
|
+
export interface OrganizationsAuditCheckReportsGetParameters {
|
|
2915
|
+
headers?: $HttpHeaders;
|
|
2916
|
+
channel_id: string;
|
|
2917
|
+
organization_status?: string;
|
|
2918
|
+
onboarding_state?: string;
|
|
2919
|
+
limit?: number;
|
|
2920
|
+
offset?: number;
|
|
2921
|
+
}
|
|
2818
2922
|
export interface PartnersPostParameters {
|
|
2819
2923
|
body: io.flow.internal.v0.models.PartnerForm;
|
|
2820
2924
|
headers?: $HttpHeaders;
|
|
@@ -3111,6 +3215,14 @@ export interface ProductReviewHistoriesGetParameters {
|
|
|
3111
3215
|
organization: string;
|
|
3112
3216
|
id: string;
|
|
3113
3217
|
}
|
|
3218
|
+
export interface QueuedRecordsGetParameters {
|
|
3219
|
+
headers?: $HttpHeaders;
|
|
3220
|
+
type?: string[];
|
|
3221
|
+
include_errors_only?: boolean;
|
|
3222
|
+
limit?: number;
|
|
3223
|
+
offset?: number;
|
|
3224
|
+
sort?: string;
|
|
3225
|
+
}
|
|
3114
3226
|
export interface RateAndRuleLookupsPostParameters {
|
|
3115
3227
|
body: io.flow.internal.v0.models.RateAndRuleLookupForm;
|
|
3116
3228
|
headers?: $HttpHeaders;
|
|
@@ -3231,16 +3343,23 @@ export interface ReboundConfigurationsDeleteParameters {
|
|
|
3231
3343
|
headers?: $HttpHeaders;
|
|
3232
3344
|
organization: string;
|
|
3233
3345
|
}
|
|
3346
|
+
export interface ReportsPostParameters {
|
|
3347
|
+
body: io.flow.internal.v0.models.ReportForm;
|
|
3348
|
+
headers?: $HttpHeaders;
|
|
3349
|
+
}
|
|
3350
|
+
export interface ReportsGetByKeyParameters {
|
|
3351
|
+
headers?: $HttpHeaders;
|
|
3352
|
+
key: string;
|
|
3353
|
+
}
|
|
3234
3354
|
export interface ReportRuleDecisionsPostAutoRestrictParameters {
|
|
3235
3355
|
body: io.flow.internal.v0.enums.AutoRestrictRule[];
|
|
3236
3356
|
headers?: $HttpHeaders;
|
|
3357
|
+
screening_status?: string;
|
|
3237
3358
|
}
|
|
3238
3359
|
export interface ReportRuleDecisionsPostReportAndSyncParameters {
|
|
3360
|
+
body: string[];
|
|
3239
3361
|
headers?: $HttpHeaders;
|
|
3240
|
-
|
|
3241
|
-
export interface ReportRuleDecisionsPostReportAndSyncByOrganizationIdParameters {
|
|
3242
|
-
headers?: $HttpHeaders;
|
|
3243
|
-
organization_id: string;
|
|
3362
|
+
screening_status?: string;
|
|
3244
3363
|
}
|
|
3245
3364
|
export interface ReportSummaryGetParameters {
|
|
3246
3365
|
headers?: $HttpHeaders;
|
|
@@ -3395,6 +3514,11 @@ export interface RoutingEntitiesGetParameters {
|
|
|
3395
3514
|
offset?: number;
|
|
3396
3515
|
sort?: string;
|
|
3397
3516
|
}
|
|
3517
|
+
export interface SandboxSetupsPutParameters {
|
|
3518
|
+
body: io.flow.internal.v0.models.SandboxSetupForm;
|
|
3519
|
+
headers?: $HttpHeaders;
|
|
3520
|
+
organization: string;
|
|
3521
|
+
}
|
|
3398
3522
|
export interface ScreensPutByKeyParameters {
|
|
3399
3523
|
body: io.flow.internal.v0.models.ScreenForm;
|
|
3400
3524
|
headers?: $HttpHeaders;
|
|
@@ -3658,6 +3782,10 @@ export interface ShopifyPromotionsPutByIdParameters {
|
|
|
3658
3782
|
organization: string;
|
|
3659
3783
|
id: string;
|
|
3660
3784
|
}
|
|
3785
|
+
export interface ShopifyStorePasswordsGetParameters {
|
|
3786
|
+
headers?: $HttpHeaders;
|
|
3787
|
+
organization: string;
|
|
3788
|
+
}
|
|
3661
3789
|
export interface ShopifyWebhookEventsPostShopsByShopifyShopIdAndTopicAndActionParameters {
|
|
3662
3790
|
body: any;
|
|
3663
3791
|
headers?: $HttpHeaders;
|
|
@@ -3767,6 +3895,7 @@ export interface TaxCalculationFormsPostParameters {
|
|
|
3767
3895
|
}
|
|
3768
3896
|
export interface TestsGetParameters {
|
|
3769
3897
|
headers?: $HttpHeaders;
|
|
3898
|
+
organization: string;
|
|
3770
3899
|
id?: string[];
|
|
3771
3900
|
limit?: number;
|
|
3772
3901
|
offset?: number;
|
|
@@ -3775,18 +3904,22 @@ export interface TestsGetParameters {
|
|
|
3775
3904
|
export interface TestsPostParameters {
|
|
3776
3905
|
body: io.flow.internal.v0.models.TestForm;
|
|
3777
3906
|
headers?: $HttpHeaders;
|
|
3907
|
+
organization: string;
|
|
3778
3908
|
}
|
|
3779
3909
|
export interface TestsGetByIdParameters {
|
|
3780
3910
|
headers?: $HttpHeaders;
|
|
3911
|
+
organization: string;
|
|
3781
3912
|
id: string;
|
|
3782
3913
|
}
|
|
3783
3914
|
export interface TestsPutByIdParameters {
|
|
3784
3915
|
body: io.flow.internal.v0.models.TestForm;
|
|
3785
3916
|
headers?: $HttpHeaders;
|
|
3917
|
+
organization: string;
|
|
3786
3918
|
id: string;
|
|
3787
3919
|
}
|
|
3788
3920
|
export interface TestsDeleteByIdParameters {
|
|
3789
3921
|
headers?: $HttpHeaders;
|
|
3922
|
+
organization: string;
|
|
3790
3923
|
id: string;
|
|
3791
3924
|
}
|
|
3792
3925
|
export interface TransactionsGetOrdersByOrderNumberParameters {
|
|
@@ -3939,6 +4072,14 @@ export interface ViesResultsGetByNumberParameters {
|
|
|
3939
4072
|
number: string;
|
|
3940
4073
|
name?: string;
|
|
3941
4074
|
}
|
|
4075
|
+
export interface WashCarrierActualFilesPostParameters {
|
|
4076
|
+
body: io.flow.internal.v0.models.WashCarrierActualFileForm;
|
|
4077
|
+
headers?: $HttpHeaders;
|
|
4078
|
+
}
|
|
4079
|
+
export interface WashCarrierActualFilesGetByIdParameters {
|
|
4080
|
+
headers?: $HttpHeaders;
|
|
4081
|
+
id: string;
|
|
4082
|
+
}
|
|
3942
4083
|
export interface WashExportRequestsPostParameters {
|
|
3943
4084
|
headers?: $HttpHeaders;
|
|
3944
4085
|
}
|
|
@@ -3973,10 +4114,11 @@ export declare type CalculatorOrganizationSettingsPostResponse = $HttpOk<io.flow
|
|
|
3973
4114
|
export declare type CalculatorOrganizationSettingsPutResponse = $HttpOk<io.flow.internal.v0.models.CalculatorOrganizationSettings> | $HttpCreated<io.flow.internal.v0.models.CalculatorOrganizationSettings> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
3974
4115
|
export declare type CalculatorOrganizationSettingsDeleteResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
3975
4116
|
export declare type CarrierAccountsGetResponse = $HttpOk<io.flow.internal.v0.models.CarrierAccount[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
3976
|
-
export declare type CarrierAccountsPostResponse = $HttpCreated<io.flow.internal.v0.models.CarrierAccount> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4117
|
+
export declare type CarrierAccountsPostResponse = $HttpCreated<io.flow.internal.v0.models.CarrierAccount> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError> | $HttpTooManyRequests<io.flow.error.v0.models.GenericError>;
|
|
3977
4118
|
export declare type CarrierAccountsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.CarrierAccount> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
3978
4119
|
export declare type CarrierAccountsPutByIdResponse = $HttpOk<io.flow.internal.v0.models.CarrierAccount> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
3979
4120
|
export declare type CarrierAccountsDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4121
|
+
export declare type CarrierAccountsGetValidateByIdResponse = $HttpOk<io.flow.internal.v0.models.CarrierAccountValidation> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError> | $HttpTooManyRequests<io.flow.error.v0.models.GenericError>;
|
|
3980
4122
|
export declare type CatalogSettingsGetResponse = $HttpOk<io.flow.internal.v0.models.CatalogSettings> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
3981
4123
|
export declare type CatalogSettingsPutResponse = $HttpOk<io.flow.internal.v0.models.CatalogSettings> | $HttpCreated<io.flow.internal.v0.models.CatalogSettings> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
3982
4124
|
export declare type CenterDefaultsGetResponse = $HttpOk<io.flow.internal.v0.models.CenterDefaults> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
@@ -4033,7 +4175,9 @@ export declare type CheckoutHttpSequencedRequestsGetByIdResponse = $HttpOk<io.fl
|
|
|
4033
4175
|
export declare type CheckoutHttpSequencedResponsesGetResponse = $HttpOk<io.flow.internal.v0.models.CheckoutHttpSequencedResponse[]> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4034
4176
|
export declare type CheckoutSubmitOrderBundlesPutResponse = $HttpOk<io.flow.internal.v0.unions.CheckoutSubmitOrderBundles> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4035
4177
|
export declare type CiphersPostResponse = $HttpCreated<io.flow.internal.v0.models.Cipher> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4178
|
+
export declare type CiphersPostBatchResponse = $HttpCreated<io.flow.internal.v0.models.Cipher[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4036
4179
|
export declare type CiphersPostGetResponse = $HttpOk<io.flow.internal.v0.models.DecryptedCipher> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4180
|
+
export declare type CiphersPostGetAndBatchResponse = $HttpOk<io.flow.internal.v0.models.DecryptedCipher[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4037
4181
|
export declare type ClassificationsPostResponse = $HttpOk<io.flow.internal.v0.models.ClassificationWrapper> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4038
4182
|
export declare type ClassificationsGetClassifiedResponse = $HttpOk<io.flow.internal.v0.models.ClassifiedProductDetail[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4039
4183
|
export declare type ClassificationsGetOutstandingResponse = $HttpOk<io.flow.internal.v0.models.Classification[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
@@ -4079,6 +4223,9 @@ export declare type ErpPriorityFilesGetResponse = $HttpOk<io.flow.internal.v0.mo
|
|
|
4079
4223
|
export declare type ErpPriorityFilesPostResponse = $HttpCreated<io.flow.internal.v0.models.ErpPriorityFile> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4080
4224
|
export declare type ErpPriorityFilesGetByIdResponse = $HttpOk<io.flow.internal.v0.models.ErpPriorityFile> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4081
4225
|
export declare type ErpPriorityFilesDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4226
|
+
export declare type ErpPriorityVendorsGetResponse = $HttpOk<io.flow.internal.v0.models.ErpPriorityVendor[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4227
|
+
export declare type ErpPriorityVendorsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.ErpPriorityVendor> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4228
|
+
export declare type ErpPriorityVendorsPutByIdResponse = $HttpOk<io.flow.internal.v0.models.ErpPriorityVendor> | $HttpCreated<io.flow.internal.v0.models.ErpPriorityVendor> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4082
4229
|
export declare type ErpVendorStatusesGetStatusResponse = $HttpOk<io.flow.internal.v0.models.ErpVendorStatus> | $HttpUnauthorized<undefined>;
|
|
4083
4230
|
export declare type ExperimentsGetResponse = $HttpOk<io.flow.internal.v0.unions.Experiment[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4084
4231
|
export declare type ExperimentsPostResponse = $HttpCreated<io.flow.internal.v0.unions.Experiment> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4164,6 +4311,11 @@ export declare type GlobalSearchResultsGetResponse = $HttpOk<io.flow.internal.v0
|
|
|
4164
4311
|
export declare type GoogleShoppingSettingsGetResponse = $HttpOk<io.flow.internal.v0.models.GoogleShoppingSetting> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4165
4312
|
export declare type GoogleShoppingSettingsPostResponse = $HttpCreated<io.flow.internal.v0.models.GoogleShoppingSetting> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError> | $HttpUnauthorized<undefined>;
|
|
4166
4313
|
export declare type HarmonizationItemClassificationsGetVersionsResponse = $HttpOk<io.flow.internal.v0.models.HarmonizationItemClassification[]> | $HttpUnauthorized<undefined>;
|
|
4314
|
+
export declare type HarmonizationThresholdsGetThresholdsResponse = $HttpOk<io.flow.internal.v0.models.HarmonizationThreshold[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4315
|
+
export declare type HarmonizationThresholdsPostThresholdsResponse = $HttpCreated<io.flow.internal.v0.models.HarmonizationThreshold> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4316
|
+
export declare type HarmonizationThresholdsGetThresholdsAndDefaultResponse = $HttpOk<number> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4317
|
+
export declare type HarmonizationThresholdsPutThresholdsByIdResponse = $HttpOk<io.flow.internal.v0.models.HarmonizationThreshold> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4318
|
+
export declare type HarmonizationThresholdsDeleteThresholdsByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4167
4319
|
export declare type HarmonizationUnclassifiedStatisticsGetResponse = $HttpOk<io.flow.internal.v0.models.HarmonizationUnclassifiedStatistics[]> | $HttpUnauthorized<undefined>;
|
|
4168
4320
|
export declare type Hs6GetDescriptionByCodeResponse = $HttpOk<io.flow.internal.v0.models.Hs6> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4169
4321
|
export declare type InternalDebugTransactionsPostResponse = $HttpCreated<io.flow.internal.v0.models.InternalDebugTransaction[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4181,6 +4333,7 @@ export declare type InventoryOrganizationSettingsPutResponse = $HttpOk<io.flow.i
|
|
|
4181
4333
|
export declare type InventoryOrganizationSettingsDeleteResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4182
4334
|
export declare type NotificationRequestsPostResponse = $HttpOk<any> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4183
4335
|
export declare type InvoiceWebhookResponsesPostResponse = $HttpOk<any> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4336
|
+
export declare type ItemsPutBulkResponse = $HttpOk<io.flow.catalog.v0.models.Item[]> | $HttpCreated<io.flow.catalog.v0.models.Item[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4184
4337
|
export declare type ChannelsGetResponse = $HttpOk<io.flow.channel.v0.models.Channel[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4185
4338
|
export declare type ChannelsPostResponse = $HttpCreated<io.flow.channel.v0.models.Channel> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4186
4339
|
export declare type ChannelsGetByChannelIdResponse = $HttpOk<io.flow.channel.v0.models.Channel> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
@@ -4240,6 +4393,7 @@ export declare type OrganizationSessionsDeleteBySessionResponse = $HttpNoContent
|
|
|
4240
4393
|
export declare type OrganizationSessionsPutOrganizationsBySessionAndOrganizationResponse = $HttpCreated<io.flow.session.v0.models.OrganizationSession> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4241
4394
|
export declare type OrganizationSessionsPutResetBySessionResponse = $HttpOk<io.flow.session.v0.unions.Session> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4242
4395
|
export declare type ShopifyOrdersGetTraceByShopifyOrderIdResponse = $HttpOk<any> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4396
|
+
export declare type KnowYourBusinessesGetResponse = $HttpOk<io.flow.shopify.merchant.config.v0.unions.KnowYourBusiness[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4243
4397
|
export declare type ShopifyCartsPutShopifyAndCartsAndPromotionByIdResponse = $HttpOk<io.flow.shopify.v0.models.ShopifyCart> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4244
4398
|
export declare type ShopifyCartsDeleteShopifyAndCartsAndPromotionByIdResponse = $HttpOk<io.flow.shopify.v0.models.ShopifyCart> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4245
4399
|
export declare type ShopifyCartsPostShopifyAndCartsAndFlowAndOrderByOrganizationResponse = $HttpCreated<io.flow.shopify.v0.models.ShopifyCart> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4248,6 +4402,7 @@ export declare type ShopifyLocalizedVariantsGetExperienceAndMapByExperienceKeyRe
|
|
|
4248
4402
|
export declare type StripeEventsPostStripeResponse = $HttpOk<any>;
|
|
4249
4403
|
export declare type SvbNotificationsPostResponse = $HttpOk<any> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4250
4404
|
export declare type ChannelTokensPostResponse = $HttpCreated<io.flow.token.v0.models.ChannelToken> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4405
|
+
export declare type TrackingsPostResponse = $HttpOk<undefined> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4251
4406
|
export declare type ItemClassificationsPostPredictResponse = $HttpOk<io.flow.internal.v0.models.ItemClassification[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4252
4407
|
export declare type ItemClassificationsPostV2AndPredictResponse = $HttpOk<io.flow.internal.v0.models.ItemClassificationV2[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4253
4408
|
export declare type ItemClassificationSummariesGetResponse = $HttpOk<io.flow.internal.v0.models.ItemClassificationSummary[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4290,7 +4445,6 @@ export declare type LocalizedContentsGetResponse = $HttpOk<io.flow.internal.v0.m
|
|
|
4290
4445
|
export declare type LocalizedContentsPutByIdResponse = $HttpOk<io.flow.internal.v0.models.LocalizedContent> | $HttpCreated<io.flow.internal.v0.models.LocalizedContent> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4291
4446
|
export declare type LocalizedItemsExportSettingsGetResponse = $HttpOk<io.flow.internal.v0.models.LocalizedItemsExportSettings> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4292
4447
|
export declare type LocalizedItemsExportSettingsPutResponse = $HttpCreated<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4293
|
-
export declare type LogisticsCenterChecksGetResponse = $HttpOk<io.flow.internal.v0.models.LogisticsCenterCheck> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4294
4448
|
export declare type LoyaltyProgramsGetResponse = $HttpOk<io.flow.internal.v0.models.LoyaltyProgram> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4295
4449
|
export declare type LoyaltyProgramsPostResponse = $HttpOk<io.flow.internal.v0.models.LoyaltyProgram> | $HttpCreated<io.flow.internal.v0.models.LoyaltyProgram> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4296
4450
|
export declare type LoyaltyProgramsDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
@@ -4342,6 +4496,7 @@ export declare type NotificationsPostRiskifiedResponse = $HttpAccepted<undefined
|
|
|
4342
4496
|
export declare type OnboardingAuditReportsGetResponse = $HttpOk<io.flow.internal.v0.models.OnboardingAuditReport> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4343
4497
|
export declare type OnboardingAuditSnapshotsGetResponse = $HttpOk<io.flow.internal.v0.models.OnboardingAuditSnapshot[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4344
4498
|
export declare type OnboardingOrganizationsGetResponse = $HttpOk<io.flow.internal.v0.models.OnboardingOrganization[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4499
|
+
export declare type OnboardingOrganizationsGetSearchResponse = $HttpOk<io.flow.internal.v0.models.MerchantSearchResult[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4345
4500
|
export declare type OptinAttributesGetResponse = $HttpOk<io.flow.internal.v0.models.OptinAttribute[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4346
4501
|
export declare type OptinAttributesGetByKeyResponse = $HttpOk<io.flow.internal.v0.models.OptinAttribute> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4347
4502
|
export declare type OptinAttributesPutByKeyResponse = $HttpOk<io.flow.internal.v0.models.OptinAttribute> | $HttpCreated<io.flow.internal.v0.models.OptinAttribute> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4386,6 +4541,9 @@ export declare type OrganizationCurrencySettingsPostResponse = $HttpCreated<io.f
|
|
|
4386
4541
|
export declare type OrganizationCurrencySettingsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.OrganizationCurrencySetting> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4387
4542
|
export declare type OrganizationCurrencySettingsPutByIdResponse = $HttpOk<io.flow.internal.v0.models.OrganizationCurrencySetting> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4388
4543
|
export declare type OrganizationCurrencySettingsDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4544
|
+
export declare type OrganizationDeactivationsGetResponse = $HttpOk<io.flow.internal.v0.models.OrganizationDeactivation> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4545
|
+
export declare type OrganizationDeactivationsPutResponse = $HttpOk<io.flow.internal.v0.models.OrganizationDeactivation> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4546
|
+
export declare type OrganizationDeactivationsDeleteResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4389
4547
|
export declare type OrganizationDebugTransactionsPostResponse = $HttpCreated<io.flow.internal.v0.models.OrganizationDebugTransaction[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4390
4548
|
export declare type OrganizationMembershipCopiesPostMembershipAndCopiesResponse = $HttpOk<io.flow.internal.v0.models.OrganizationMembershipCopy> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4391
4549
|
export declare type OrganizationOnboardingStateAuditResultsGetAuditResponse = $HttpOk<io.flow.internal.v0.models.OrganizationOnboardingStateAuditResult[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4394,11 +4552,13 @@ export declare type OrganizationPaymentSettingsPutResponse = $HttpOk<io.flow.int
|
|
|
4394
4552
|
export declare type OrganizationPaymentSettingsGetVersionsResponse = $HttpOk<io.flow.internal.v0.models.OrganizationPaymentSettingVersion[]> | $HttpUnauthorized<undefined>;
|
|
4395
4553
|
export declare type OrganizationRestrictionSnapshotsPostResponse = $HttpCreated<undefined> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4396
4554
|
export declare type OrganizationRestrictionStatusesGetResponse = $HttpOk<io.flow.internal.v0.models.RestrictionOrganizationStatus> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4555
|
+
export declare type OrganizationRestrictionStatusesPostResetResponse = $HttpOk<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4397
4556
|
export declare type OrganizationRestrictionStatusNotesGetResponse = $HttpOk<io.flow.internal.v0.models.OrganizationRestrictionStatusNote[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4398
4557
|
export declare type OrganizationRestrictionStatusNotesPostResponse = $HttpCreated<io.flow.internal.v0.models.OrganizationRestrictionStatusNote> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4399
4558
|
export declare type OrganizationRestrictionStatusNotesPutByIdResponse = $HttpOk<io.flow.internal.v0.models.OrganizationRestrictionStatusNote> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4400
4559
|
export declare type OrganizationSettingsGetResponse = $HttpOk<io.flow.internal.v0.models.OrganizationSettings> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4401
4560
|
export declare type OrganizationSettingsPutResponse = $HttpOk<io.flow.internal.v0.models.OrganizationSettings> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4561
|
+
export declare type OrganizationsAuditCheckReportsGetResponse = $HttpOk<io.flow.internal.v0.models.OrganizationsAuditCheckReport[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4402
4562
|
export declare type PartnersPostResponse = $HttpCreated<io.flow.internal.v0.models.Partner> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4403
4563
|
export declare type PartnersGetByIdResponse = $HttpOk<io.flow.internal.v0.models.Partner> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4404
4564
|
export declare type PartnersDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
@@ -4446,6 +4606,7 @@ export declare type ProductClassificationsGetOrganizationAndProductByOrganizatio
|
|
|
4446
4606
|
export declare type ProductClassificationsPostOrganizationAndProductByOrganizationIdAndProductIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4447
4607
|
export declare type ProductClassificationsGetRefreshDefaultHs6Response = $HttpOk<io.flow.internal.v0.models.CustomsDescriptionStatistics> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4448
4608
|
export declare type ProductReviewHistoriesGetResponse = $HttpOk<io.flow.internal.v0.models.ProductReviewHistory> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4609
|
+
export declare type QueuedRecordsGetResponse = $HttpOk<io.flow.internal.v0.models.QueuedRecord[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4449
4610
|
export declare type RateAndRuleLookupsPostResponse = $HttpOk<io.flow.internal.v0.models.RateAndRuleLookup> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4450
4611
|
export declare type RateLevelsGetResponse = $HttpOk<io.flow.internal.v0.models.RateLevel[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4451
4612
|
export declare type RateLevelsPostResponse = $HttpCreated<io.flow.internal.v0.models.RateLevel> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4469,9 +4630,10 @@ export declare type RatesNamesSummariesGetDestinationAndOriginByDestinationAndOr
|
|
|
4469
4630
|
export declare type ReboundConfigurationsGetResponse = $HttpOk<io.flow.internal.v0.models.ReboundConfiguration> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4470
4631
|
export declare type ReboundConfigurationsPutResponse = $HttpOk<io.flow.internal.v0.models.ReboundConfiguration> | $HttpCreated<io.flow.internal.v0.models.ReboundConfiguration> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4471
4632
|
export declare type ReboundConfigurationsDeleteResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4633
|
+
export declare type ReportsPostResponse = $HttpOk<io.flow.internal.v0.models.Report> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4634
|
+
export declare type ReportsGetByKeyResponse = $HttpOk<io.flow.internal.v0.models.Report> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4472
4635
|
export declare type ReportRuleDecisionsPostAutoRestrictResponse = $HttpOk<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4473
4636
|
export declare type ReportRuleDecisionsPostReportAndSyncResponse = $HttpOk<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4474
|
-
export declare type ReportRuleDecisionsPostReportAndSyncByOrganizationIdResponse = $HttpOk<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4475
4637
|
export declare type ReportSummaryGetResponse = $HttpOk<io.flow.internal.v0.models.ReportSummary> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4476
4638
|
export declare type RestrictionCategoriesGetResponse = $HttpOk<io.flow.internal.v0.models.RestrictionCategory[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4477
4639
|
export declare type RestrictionFiltersGetResponse = $HttpOk<io.flow.internal.v0.models.RestrictionFilter> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4493,6 +4655,7 @@ export declare type RestrictionRulesGetByOrganizationAndStatusResponse = $HttpOk
|
|
|
4493
4655
|
export declare type RestrictionRulesPostInternalAndRestrictionAndRulesResponse = $HttpCreated<io.flow.internal.v0.models.RestrictionRule> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4494
4656
|
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>;
|
|
4495
4657
|
export declare type RoutingEntitiesGetResponse = $HttpOk<io.flow.internal.v0.unions.RoutingEntity[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4658
|
+
export declare type SandboxSetupsPutResponse = $HttpOk<io.flow.internal.v0.models.SandboxSetup> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4496
4659
|
export declare type ScreensPutByKeyResponse = $HttpCreated<io.flow.internal.v0.models.Screen[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4497
4660
|
export declare type SearchProviderExportsPostResponse = $HttpAccepted<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4498
4661
|
export declare type SearchProviderExportsPostExperienceByExperienceKeyResponse = $HttpAccepted<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4542,6 +4705,7 @@ export declare type ShopifyPromotionsGetResponse = $HttpOk<io.flow.internal.v0.m
|
|
|
4542
4705
|
export declare type ShopifyPromotionsPostResponse = $HttpCreated<io.flow.internal.v0.models.ShopifyPromotion> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4543
4706
|
export declare type ShopifyPromotionsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.ShopifyPromotion> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4544
4707
|
export declare type ShopifyPromotionsPutByIdResponse = $HttpOk<io.flow.internal.v0.models.ShopifyPromotion> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4708
|
+
export declare type ShopifyStorePasswordsGetResponse = $HttpOk<io.flow.internal.v0.models.ShopifyStorePassword> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4545
4709
|
export declare type ShopifyWebhookEventsPostShopsByShopifyShopIdAndTopicAndActionResponse = $HttpNoContent<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4546
4710
|
export declare type ShopifyWebhookEventsPostByTopicAndActionResponse = $HttpNoContent<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4547
4711
|
export declare type SmpTaxCalculationFormsPostResponse = $HttpOk<io.flow.internal.v0.models.SmpTaxCalculation> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.internal.v0.models.TaxCalculationError>;
|
|
@@ -4598,6 +4762,8 @@ export declare type V2CheckoutsGetOrderAndViewsByIdResponse = $HttpOk<io.flow.in
|
|
|
4598
4762
|
export declare type V2CheckoutsGetResponseByIdResponse = $HttpOk<io.flow.internal.v0.models.CheckoutGetResponseSuccess> | $HttpNotFound<undefined>;
|
|
4599
4763
|
export declare type ViesResultsGetResponse = $HttpOk<io.flow.internal.v0.models.ViesResult[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4600
4764
|
export declare type ViesResultsGetByNumberResponse = $HttpOk<io.flow.internal.v0.models.ViesResult> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4765
|
+
export declare type WashCarrierActualFilesPostResponse = $HttpCreated<io.flow.internal.v0.models.WashCarrierActualFile> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4766
|
+
export declare type WashCarrierActualFilesGetByIdResponse = $HttpOk<io.flow.internal.v0.models.WashCarrierActualFile> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4601
4767
|
export declare type WashExportRequestsPostResponse = $HttpCreated<io.flow.internal.v0.models.WashExportRequest> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4602
4768
|
export declare type WebhooksPostResponse = $HttpOk<string> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4603
4769
|
export declare class AddressConfigurationSettingsResource extends $Resource {
|
|
@@ -4655,6 +4821,7 @@ export declare class CarrierAccountsResource extends $Resource {
|
|
|
4655
4821
|
getById(params: CarrierAccountsGetByIdParameters): Promise<CarrierAccountsGetByIdResponse>;
|
|
4656
4822
|
putById(params: CarrierAccountsPutByIdParameters): Promise<CarrierAccountsPutByIdResponse>;
|
|
4657
4823
|
deleteById(params: CarrierAccountsDeleteByIdParameters): Promise<CarrierAccountsDeleteByIdResponse>;
|
|
4824
|
+
getValidateById(params: CarrierAccountsGetValidateByIdParameters): Promise<CarrierAccountsGetValidateByIdResponse>;
|
|
4658
4825
|
}
|
|
4659
4826
|
export declare class CatalogSettingsResource extends $Resource {
|
|
4660
4827
|
get(params: CatalogSettingsGetParameters): Promise<CatalogSettingsGetResponse>;
|
|
@@ -4751,7 +4918,9 @@ export declare class CheckoutSubmitOrderBundlesResource extends $Resource {
|
|
|
4751
4918
|
}
|
|
4752
4919
|
export declare class CiphersResource extends $Resource {
|
|
4753
4920
|
post(params: CiphersPostParameters): Promise<CiphersPostResponse>;
|
|
4921
|
+
postBatch(params: CiphersPostBatchParameters): Promise<CiphersPostBatchResponse>;
|
|
4754
4922
|
postGet(params: CiphersPostGetParameters): Promise<CiphersPostGetResponse>;
|
|
4923
|
+
postGetAndBatch(params: CiphersPostGetAndBatchParameters): Promise<CiphersPostGetAndBatchResponse>;
|
|
4755
4924
|
}
|
|
4756
4925
|
export declare class ClassificationsResource extends $Resource {
|
|
4757
4926
|
post(params: ClassificationsPostParameters): Promise<ClassificationsPostResponse>;
|
|
@@ -4846,6 +5015,11 @@ export declare class ErpPriorityFilesResource extends $Resource {
|
|
|
4846
5015
|
getById(params: ErpPriorityFilesGetByIdParameters): Promise<ErpPriorityFilesGetByIdResponse>;
|
|
4847
5016
|
deleteById(params: ErpPriorityFilesDeleteByIdParameters): Promise<ErpPriorityFilesDeleteByIdResponse>;
|
|
4848
5017
|
}
|
|
5018
|
+
export declare class ErpPriorityVendorsResource extends $Resource {
|
|
5019
|
+
get(params: ErpPriorityVendorsGetParameters): Promise<ErpPriorityVendorsGetResponse>;
|
|
5020
|
+
getById(params: ErpPriorityVendorsGetByIdParameters): Promise<ErpPriorityVendorsGetByIdResponse>;
|
|
5021
|
+
putById(params: ErpPriorityVendorsPutByIdParameters): Promise<ErpPriorityVendorsPutByIdResponse>;
|
|
5022
|
+
}
|
|
4849
5023
|
export declare class ErpVendorStatusesResource extends $Resource {
|
|
4850
5024
|
getStatus(params: ErpVendorStatusesGetStatusParameters): Promise<ErpVendorStatusesGetStatusResponse>;
|
|
4851
5025
|
}
|
|
@@ -4985,6 +5159,13 @@ export declare class GoogleShoppingSettingsResource extends $Resource {
|
|
|
4985
5159
|
export declare class HarmonizationItemClassificationsResource extends $Resource {
|
|
4986
5160
|
getVersions(params: HarmonizationItemClassificationsGetVersionsParameters): Promise<HarmonizationItemClassificationsGetVersionsResponse>;
|
|
4987
5161
|
}
|
|
5162
|
+
export declare class HarmonizationThresholdsResource extends $Resource {
|
|
5163
|
+
getThresholds(params: HarmonizationThresholdsGetThresholdsParameters): Promise<HarmonizationThresholdsGetThresholdsResponse>;
|
|
5164
|
+
postThresholds(params: HarmonizationThresholdsPostThresholdsParameters): Promise<HarmonizationThresholdsPostThresholdsResponse>;
|
|
5165
|
+
getThresholdsAndDefault(params?: HarmonizationThresholdsGetThresholdsAndDefaultParameters): Promise<HarmonizationThresholdsGetThresholdsAndDefaultResponse>;
|
|
5166
|
+
putThresholdsById(params: HarmonizationThresholdsPutThresholdsByIdParameters): Promise<HarmonizationThresholdsPutThresholdsByIdResponse>;
|
|
5167
|
+
deleteThresholdsById(params: HarmonizationThresholdsDeleteThresholdsByIdParameters): Promise<HarmonizationThresholdsDeleteThresholdsByIdResponse>;
|
|
5168
|
+
}
|
|
4988
5169
|
export declare class HarmonizationUnclassifiedStatisticsResource extends $Resource {
|
|
4989
5170
|
get(params: HarmonizationUnclassifiedStatisticsGetParameters): Promise<HarmonizationUnclassifiedStatisticsGetResponse>;
|
|
4990
5171
|
}
|
|
@@ -5018,6 +5199,9 @@ export declare class NotificationRequestsResource extends $Resource {
|
|
|
5018
5199
|
export declare class InvoiceWebhookResponsesResource extends $Resource {
|
|
5019
5200
|
post(params: InvoiceWebhookResponsesPostParameters): Promise<InvoiceWebhookResponsesPostResponse>;
|
|
5020
5201
|
}
|
|
5202
|
+
export declare class ItemsResource extends $Resource {
|
|
5203
|
+
putBulk(params: ItemsPutBulkParameters): Promise<ItemsPutBulkResponse>;
|
|
5204
|
+
}
|
|
5021
5205
|
export declare class ChannelsResource extends $Resource {
|
|
5022
5206
|
get(params: ChannelsGetParameters): Promise<ChannelsGetResponse>;
|
|
5023
5207
|
post(params: ChannelsPostParameters): Promise<ChannelsPostResponse>;
|
|
@@ -5127,6 +5311,9 @@ export declare class OrganizationSessionsResource extends $Resource {
|
|
|
5127
5311
|
export declare class ShopifyOrdersResource extends $Resource {
|
|
5128
5312
|
getTraceByShopifyOrderId(params: ShopifyOrdersGetTraceByShopifyOrderIdParameters): Promise<ShopifyOrdersGetTraceByShopifyOrderIdResponse>;
|
|
5129
5313
|
}
|
|
5314
|
+
export declare class KnowYourBusinessesResource extends $Resource {
|
|
5315
|
+
get(params: KnowYourBusinessesGetParameters): Promise<KnowYourBusinessesGetResponse>;
|
|
5316
|
+
}
|
|
5130
5317
|
export declare class ShopifyCartsResource extends $Resource {
|
|
5131
5318
|
putShopifyAndCartsAndPromotionById(params: ShopifyCartsPutShopifyAndCartsAndPromotionByIdParameters): Promise<ShopifyCartsPutShopifyAndCartsAndPromotionByIdResponse>;
|
|
5132
5319
|
deleteShopifyAndCartsAndPromotionById(params: ShopifyCartsDeleteShopifyAndCartsAndPromotionByIdParameters): Promise<ShopifyCartsDeleteShopifyAndCartsAndPromotionByIdResponse>;
|
|
@@ -5147,6 +5334,9 @@ export declare class SvbNotificationsResource extends $Resource {
|
|
|
5147
5334
|
export declare class ChannelTokensResource extends $Resource {
|
|
5148
5335
|
post(params: ChannelTokensPostParameters): Promise<ChannelTokensPostResponse>;
|
|
5149
5336
|
}
|
|
5337
|
+
export declare class TrackingsResource extends $Resource {
|
|
5338
|
+
post(params: TrackingsPostParameters): Promise<TrackingsPostResponse>;
|
|
5339
|
+
}
|
|
5150
5340
|
export declare class ItemClassificationsResource extends $Resource {
|
|
5151
5341
|
postPredict(params: ItemClassificationsPostPredictParameters): Promise<ItemClassificationsPostPredictResponse>;
|
|
5152
5342
|
postV2AndPredict(params: ItemClassificationsPostV2AndPredictParameters): Promise<ItemClassificationsPostV2AndPredictResponse>;
|
|
@@ -5223,9 +5413,6 @@ export declare class LocalizedItemsExportSettingsResource extends $Resource {
|
|
|
5223
5413
|
get(params: LocalizedItemsExportSettingsGetParameters): Promise<LocalizedItemsExportSettingsGetResponse>;
|
|
5224
5414
|
put(params: LocalizedItemsExportSettingsPutParameters): Promise<LocalizedItemsExportSettingsPutResponse>;
|
|
5225
5415
|
}
|
|
5226
|
-
export declare class LogisticsCenterChecksResource extends $Resource {
|
|
5227
|
-
get(params: LogisticsCenterChecksGetParameters): Promise<LogisticsCenterChecksGetResponse>;
|
|
5228
|
-
}
|
|
5229
5416
|
export declare class LoyaltyProgramsResource extends $Resource {
|
|
5230
5417
|
get(params: LoyaltyProgramsGetParameters): Promise<LoyaltyProgramsGetResponse>;
|
|
5231
5418
|
post(params: LoyaltyProgramsPostParameters): Promise<LoyaltyProgramsPostResponse>;
|
|
@@ -5316,6 +5503,7 @@ export declare class OnboardingAuditSnapshotsResource extends $Resource {
|
|
|
5316
5503
|
}
|
|
5317
5504
|
export declare class OnboardingOrganizationsResource extends $Resource {
|
|
5318
5505
|
get(params: OnboardingOrganizationsGetParameters): Promise<OnboardingOrganizationsGetResponse>;
|
|
5506
|
+
getSearch(params: OnboardingOrganizationsGetSearchParameters): Promise<OnboardingOrganizationsGetSearchResponse>;
|
|
5319
5507
|
}
|
|
5320
5508
|
export declare class OptinAttributesResource extends $Resource {
|
|
5321
5509
|
get(params: OptinAttributesGetParameters): Promise<OptinAttributesGetResponse>;
|
|
@@ -5385,6 +5573,11 @@ export declare class OrganizationCurrencySettingsResource extends $Resource {
|
|
|
5385
5573
|
putById(params: OrganizationCurrencySettingsPutByIdParameters): Promise<OrganizationCurrencySettingsPutByIdResponse>;
|
|
5386
5574
|
deleteById(params: OrganizationCurrencySettingsDeleteByIdParameters): Promise<OrganizationCurrencySettingsDeleteByIdResponse>;
|
|
5387
5575
|
}
|
|
5576
|
+
export declare class OrganizationDeactivationsResource extends $Resource {
|
|
5577
|
+
get(params: OrganizationDeactivationsGetParameters): Promise<OrganizationDeactivationsGetResponse>;
|
|
5578
|
+
put(params: OrganizationDeactivationsPutParameters): Promise<OrganizationDeactivationsPutResponse>;
|
|
5579
|
+
delete(params: OrganizationDeactivationsDeleteParameters): Promise<OrganizationDeactivationsDeleteResponse>;
|
|
5580
|
+
}
|
|
5388
5581
|
export declare class OrganizationDebugTransactionsResource extends $Resource {
|
|
5389
5582
|
post(params: OrganizationDebugTransactionsPostParameters): Promise<OrganizationDebugTransactionsPostResponse>;
|
|
5390
5583
|
}
|
|
@@ -5404,6 +5597,7 @@ export declare class OrganizationRestrictionSnapshotsResource extends $Resource
|
|
|
5404
5597
|
}
|
|
5405
5598
|
export declare class OrganizationRestrictionStatusesResource extends $Resource {
|
|
5406
5599
|
get(params: OrganizationRestrictionStatusesGetParameters): Promise<OrganizationRestrictionStatusesGetResponse>;
|
|
5600
|
+
postReset(params: OrganizationRestrictionStatusesPostResetParameters): Promise<OrganizationRestrictionStatusesPostResetResponse>;
|
|
5407
5601
|
}
|
|
5408
5602
|
export declare class OrganizationRestrictionStatusNotesResource extends $Resource {
|
|
5409
5603
|
get(params: OrganizationRestrictionStatusNotesGetParameters): Promise<OrganizationRestrictionStatusNotesGetResponse>;
|
|
@@ -5414,6 +5608,9 @@ export declare class OrganizationSettingsResource extends $Resource {
|
|
|
5414
5608
|
get(params: OrganizationSettingsGetParameters): Promise<OrganizationSettingsGetResponse>;
|
|
5415
5609
|
put(params: OrganizationSettingsPutParameters): Promise<OrganizationSettingsPutResponse>;
|
|
5416
5610
|
}
|
|
5611
|
+
export declare class OrganizationsAuditCheckReportsResource extends $Resource {
|
|
5612
|
+
get(params: OrganizationsAuditCheckReportsGetParameters): Promise<OrganizationsAuditCheckReportsGetResponse>;
|
|
5613
|
+
}
|
|
5417
5614
|
export declare class PartnersResource extends $Resource {
|
|
5418
5615
|
post(params: PartnersPostParameters): Promise<PartnersPostResponse>;
|
|
5419
5616
|
getById(params: PartnersGetByIdParameters): Promise<PartnersGetByIdResponse>;
|
|
@@ -5491,6 +5688,9 @@ export declare class ProductClassificationsResource extends $Resource {
|
|
|
5491
5688
|
export declare class ProductReviewHistoriesResource extends $Resource {
|
|
5492
5689
|
get(params: ProductReviewHistoriesGetParameters): Promise<ProductReviewHistoriesGetResponse>;
|
|
5493
5690
|
}
|
|
5691
|
+
export declare class QueuedRecordsResource extends $Resource {
|
|
5692
|
+
get(params: QueuedRecordsGetParameters): Promise<QueuedRecordsGetResponse>;
|
|
5693
|
+
}
|
|
5494
5694
|
export declare class RateAndRuleLookupsResource extends $Resource {
|
|
5495
5695
|
post(params: RateAndRuleLookupsPostParameters): Promise<RateAndRuleLookupsPostResponse>;
|
|
5496
5696
|
}
|
|
@@ -5530,10 +5730,13 @@ export declare class ReboundConfigurationsResource extends $Resource {
|
|
|
5530
5730
|
put(params: ReboundConfigurationsPutParameters): Promise<ReboundConfigurationsPutResponse>;
|
|
5531
5731
|
delete(params: ReboundConfigurationsDeleteParameters): Promise<ReboundConfigurationsDeleteResponse>;
|
|
5532
5732
|
}
|
|
5733
|
+
export declare class ReportsResource extends $Resource {
|
|
5734
|
+
post(params: ReportsPostParameters): Promise<ReportsPostResponse>;
|
|
5735
|
+
getByKey(params: ReportsGetByKeyParameters): Promise<ReportsGetByKeyResponse>;
|
|
5736
|
+
}
|
|
5533
5737
|
export declare class ReportRuleDecisionsResource extends $Resource {
|
|
5534
5738
|
postAutoRestrict(params: ReportRuleDecisionsPostAutoRestrictParameters): Promise<ReportRuleDecisionsPostAutoRestrictResponse>;
|
|
5535
|
-
postReportAndSync(params
|
|
5536
|
-
postReportAndSyncByOrganizationId(params: ReportRuleDecisionsPostReportAndSyncByOrganizationIdParameters): Promise<ReportRuleDecisionsPostReportAndSyncByOrganizationIdResponse>;
|
|
5739
|
+
postReportAndSync(params: ReportRuleDecisionsPostReportAndSyncParameters): Promise<ReportRuleDecisionsPostReportAndSyncResponse>;
|
|
5537
5740
|
}
|
|
5538
5741
|
export declare class ReportSummaryResource extends $Resource {
|
|
5539
5742
|
get(params: ReportSummaryGetParameters): Promise<ReportSummaryGetResponse>;
|
|
@@ -5574,6 +5777,9 @@ export declare class RestrictionRulesResource extends $Resource {
|
|
|
5574
5777
|
export declare class RoutingEntitiesResource extends $Resource {
|
|
5575
5778
|
get(params: RoutingEntitiesGetParameters): Promise<RoutingEntitiesGetResponse>;
|
|
5576
5779
|
}
|
|
5780
|
+
export declare class SandboxSetupsResource extends $Resource {
|
|
5781
|
+
put(params: SandboxSetupsPutParameters): Promise<SandboxSetupsPutResponse>;
|
|
5782
|
+
}
|
|
5577
5783
|
export declare class ScreensResource extends $Resource {
|
|
5578
5784
|
putByKey(params: ScreensPutByKeyParameters): Promise<ScreensPutByKeyResponse>;
|
|
5579
5785
|
}
|
|
@@ -5665,6 +5871,9 @@ export declare class ShopifyPromotionsResource extends $Resource {
|
|
|
5665
5871
|
getById(params: ShopifyPromotionsGetByIdParameters): Promise<ShopifyPromotionsGetByIdResponse>;
|
|
5666
5872
|
putById(params: ShopifyPromotionsPutByIdParameters): Promise<ShopifyPromotionsPutByIdResponse>;
|
|
5667
5873
|
}
|
|
5874
|
+
export declare class ShopifyStorePasswordsResource extends $Resource {
|
|
5875
|
+
get(params: ShopifyStorePasswordsGetParameters): Promise<ShopifyStorePasswordsGetResponse>;
|
|
5876
|
+
}
|
|
5668
5877
|
export declare class ShopifyWebhookEventsResource extends $Resource {
|
|
5669
5878
|
postShopsByShopifyShopIdAndTopicAndAction(params: ShopifyWebhookEventsPostShopsByShopifyShopIdAndTopicAndActionParameters): Promise<ShopifyWebhookEventsPostShopsByShopifyShopIdAndTopicAndActionResponse>;
|
|
5670
5879
|
postByTopicAndAction(params: ShopifyWebhookEventsPostByTopicAndActionParameters): Promise<ShopifyWebhookEventsPostByTopicAndActionResponse>;
|
|
@@ -5765,6 +5974,10 @@ export declare class ViesResultsResource extends $Resource {
|
|
|
5765
5974
|
get(params: ViesResultsGetParameters): Promise<ViesResultsGetResponse>;
|
|
5766
5975
|
getByNumber(params: ViesResultsGetByNumberParameters): Promise<ViesResultsGetByNumberResponse>;
|
|
5767
5976
|
}
|
|
5977
|
+
export declare class WashCarrierActualFilesResource extends $Resource {
|
|
5978
|
+
post(params: WashCarrierActualFilesPostParameters): Promise<WashCarrierActualFilesPostResponse>;
|
|
5979
|
+
getById(params: WashCarrierActualFilesGetByIdParameters): Promise<WashCarrierActualFilesGetByIdResponse>;
|
|
5980
|
+
}
|
|
5768
5981
|
export declare class WashExportRequestsResource extends $Resource {
|
|
5769
5982
|
post(params?: WashExportRequestsPostParameters): Promise<WashExportRequestsPostResponse>;
|
|
5770
5983
|
}
|
|
@@ -5829,6 +6042,7 @@ export interface ClientInstance {
|
|
|
5829
6042
|
erpFlowFiles: ErpFlowFilesResource;
|
|
5830
6043
|
erpFlowVendors: ErpFlowVendorsResource;
|
|
5831
6044
|
erpPriorityFiles: ErpPriorityFilesResource;
|
|
6045
|
+
erpPriorityVendors: ErpPriorityVendorsResource;
|
|
5832
6046
|
erpVendorStatuses: ErpVendorStatusesResource;
|
|
5833
6047
|
experiments: ExperimentsResource;
|
|
5834
6048
|
experimentFormDefaults: ExperimentFormDefaultsResource;
|
|
@@ -5856,6 +6070,7 @@ export interface ClientInstance {
|
|
|
5856
6070
|
globalSearchResults: GlobalSearchResultsResource;
|
|
5857
6071
|
googleShoppingSettings: GoogleShoppingSettingsResource;
|
|
5858
6072
|
harmonizationItemClassifications: HarmonizationItemClassificationsResource;
|
|
6073
|
+
harmonizationThresholds: HarmonizationThresholdsResource;
|
|
5859
6074
|
harmonizationUnclassifiedStatistics: HarmonizationUnclassifiedStatisticsResource;
|
|
5860
6075
|
hs6: Hs6Resource;
|
|
5861
6076
|
internalDebugTransactions: InternalDebugTransactionsResource;
|
|
@@ -5864,6 +6079,7 @@ export interface ClientInstance {
|
|
|
5864
6079
|
inventoryOrganizationSettings: InventoryOrganizationSettingsResource;
|
|
5865
6080
|
notificationRequests: NotificationRequestsResource;
|
|
5866
6081
|
invoiceWebhookResponses: InvoiceWebhookResponsesResource;
|
|
6082
|
+
items: ItemsResource;
|
|
5867
6083
|
channels: ChannelsResource;
|
|
5868
6084
|
channelCurrencies: ChannelCurrenciesResource;
|
|
5869
6085
|
checkoutReferences: CheckoutReferencesResource;
|
|
@@ -5889,12 +6105,14 @@ export interface ClientInstance {
|
|
|
5889
6105
|
contexts: ContextsResource;
|
|
5890
6106
|
organizationSessions: OrganizationSessionsResource;
|
|
5891
6107
|
shopifyOrders: ShopifyOrdersResource;
|
|
6108
|
+
knowYourBusinesses: KnowYourBusinessesResource;
|
|
5892
6109
|
shopifyCarts: ShopifyCartsResource;
|
|
5893
6110
|
shopifyCartConversions: ShopifyCartConversionsResource;
|
|
5894
6111
|
shopifyLocalizedVariants: ShopifyLocalizedVariantsResource;
|
|
5895
6112
|
stripeEvents: StripeEventsResource;
|
|
5896
6113
|
svbNotifications: SvbNotificationsResource;
|
|
5897
6114
|
channelTokens: ChannelTokensResource;
|
|
6115
|
+
trackings: TrackingsResource;
|
|
5898
6116
|
itemClassifications: ItemClassificationsResource;
|
|
5899
6117
|
itemClassificationSummaries: ItemClassificationSummariesResource;
|
|
5900
6118
|
itemHarmonizations: ItemHarmonizationsResource;
|
|
@@ -5912,7 +6130,6 @@ export interface ClientInstance {
|
|
|
5912
6130
|
localizations: LocalizationsResource;
|
|
5913
6131
|
localizedContents: LocalizedContentsResource;
|
|
5914
6132
|
localizedItemsExportSettings: LocalizedItemsExportSettingsResource;
|
|
5915
|
-
logisticsCenterChecks: LogisticsCenterChecksResource;
|
|
5916
6133
|
loyaltyPrograms: LoyaltyProgramsResource;
|
|
5917
6134
|
manualReviewRules: ManualReviewRulesResource;
|
|
5918
6135
|
marketingGatewayChannels: MarketingGatewayChannelsResource;
|
|
@@ -5945,6 +6162,7 @@ export interface ClientInstance {
|
|
|
5945
6162
|
organizationAccounts: OrganizationAccountsResource;
|
|
5946
6163
|
organizationBillingStatements: OrganizationBillingStatementsResource;
|
|
5947
6164
|
organizationCurrencySettings: OrganizationCurrencySettingsResource;
|
|
6165
|
+
organizationDeactivations: OrganizationDeactivationsResource;
|
|
5948
6166
|
organizationDebugTransactions: OrganizationDebugTransactionsResource;
|
|
5949
6167
|
organizationMembershipCopies: OrganizationMembershipCopiesResource;
|
|
5950
6168
|
organizationOnboardingStateAuditResults: OrganizationOnboardingStateAuditResultsResource;
|
|
@@ -5953,6 +6171,7 @@ export interface ClientInstance {
|
|
|
5953
6171
|
organizationRestrictionStatuses: OrganizationRestrictionStatusesResource;
|
|
5954
6172
|
organizationRestrictionStatusNotes: OrganizationRestrictionStatusNotesResource;
|
|
5955
6173
|
organizationSettings: OrganizationSettingsResource;
|
|
6174
|
+
organizationsAuditCheckReports: OrganizationsAuditCheckReportsResource;
|
|
5956
6175
|
partners: PartnersResource;
|
|
5957
6176
|
partnerAuthorizations: PartnerAuthorizationsResource;
|
|
5958
6177
|
partnerMemberships: PartnerMembershipsResource;
|
|
@@ -5968,6 +6187,7 @@ export interface ClientInstance {
|
|
|
5968
6187
|
processorMerchants: ProcessorMerchantsResource;
|
|
5969
6188
|
productClassifications: ProductClassificationsResource;
|
|
5970
6189
|
productReviewHistories: ProductReviewHistoriesResource;
|
|
6190
|
+
queuedRecords: QueuedRecordsResource;
|
|
5971
6191
|
rateAndRuleLookups: RateAndRuleLookupsResource;
|
|
5972
6192
|
rateLevels: RateLevelsResource;
|
|
5973
6193
|
rateLevelOrganizations: RateLevelOrganizationsResource;
|
|
@@ -5976,6 +6196,7 @@ export interface ClientInstance {
|
|
|
5976
6196
|
ratecardStandardConfigurations: RatecardStandardConfigurationsResource;
|
|
5977
6197
|
ratesNamesSummaries: RatesNamesSummariesResource;
|
|
5978
6198
|
reboundConfigurations: ReboundConfigurationsResource;
|
|
6199
|
+
reports: ReportsResource;
|
|
5979
6200
|
reportRuleDecisions: ReportRuleDecisionsResource;
|
|
5980
6201
|
reportSummary: ReportSummaryResource;
|
|
5981
6202
|
restrictionCategories: RestrictionCategoriesResource;
|
|
@@ -5986,6 +6207,7 @@ export interface ClientInstance {
|
|
|
5986
6207
|
restrictionProducts: RestrictionProductsResource;
|
|
5987
6208
|
restrictionRules: RestrictionRulesResource;
|
|
5988
6209
|
routingEntities: RoutingEntitiesResource;
|
|
6210
|
+
sandboxSetups: SandboxSetupsResource;
|
|
5989
6211
|
screens: ScreensResource;
|
|
5990
6212
|
searchProviderExports: SearchProviderExportsResource;
|
|
5991
6213
|
sessionCountries: SessionCountriesResource;
|
|
@@ -6007,6 +6229,7 @@ export interface ClientInstance {
|
|
|
6007
6229
|
shopifyOrderFulfillmentsSnapshots: ShopifyOrderFulfillmentsSnapshotsResource;
|
|
6008
6230
|
shopifyOrganizationSettings: ShopifyOrganizationSettingsResource;
|
|
6009
6231
|
shopifyPromotions: ShopifyPromotionsResource;
|
|
6232
|
+
shopifyStorePasswords: ShopifyStorePasswordsResource;
|
|
6010
6233
|
shopifyWebhookEvents: ShopifyWebhookEventsResource;
|
|
6011
6234
|
smpTaxCalculationForms: SmpTaxCalculationFormsResource;
|
|
6012
6235
|
snoozes: SnoozesResource;
|
|
@@ -6029,6 +6252,7 @@ export interface ClientInstance {
|
|
|
6029
6252
|
v1Checkouts: V1CheckoutsResource;
|
|
6030
6253
|
v2Checkouts: V2CheckoutsResource;
|
|
6031
6254
|
viesResults: ViesResultsResource;
|
|
6255
|
+
washCarrierActualFiles: WashCarrierActualFilesResource;
|
|
6032
6256
|
washExportRequests: WashExportRequestsResource;
|
|
6033
6257
|
webhooks: WebhooksResource;
|
|
6034
6258
|
}
|