@flowio/api-internal-sdk 0.0.122 → 0.0.124
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 +381 -40
- package/dist/esm/api-internal.js +376 -35
- package/dist/types/api-internal.d.ts +244 -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;
|
|
@@ -3325,6 +3444,7 @@ export interface RestrictionOrganizationDecisionSummariesGetParameters {
|
|
|
3325
3444
|
earliest_pending_date_before?: string;
|
|
3326
3445
|
earliest_pending_date_after?: string;
|
|
3327
3446
|
approval_status?: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
3447
|
+
filter_orgs_with_pending_verifications?: boolean;
|
|
3328
3448
|
limit?: number;
|
|
3329
3449
|
offset?: number;
|
|
3330
3450
|
sort?: string;
|
|
@@ -3395,6 +3515,11 @@ export interface RoutingEntitiesGetParameters {
|
|
|
3395
3515
|
offset?: number;
|
|
3396
3516
|
sort?: string;
|
|
3397
3517
|
}
|
|
3518
|
+
export interface SandboxSetupsPutParameters {
|
|
3519
|
+
body: io.flow.internal.v0.models.SandboxSetupForm;
|
|
3520
|
+
headers?: $HttpHeaders;
|
|
3521
|
+
organization: string;
|
|
3522
|
+
}
|
|
3398
3523
|
export interface ScreensPutByKeyParameters {
|
|
3399
3524
|
body: io.flow.internal.v0.models.ScreenForm;
|
|
3400
3525
|
headers?: $HttpHeaders;
|
|
@@ -3658,6 +3783,10 @@ export interface ShopifyPromotionsPutByIdParameters {
|
|
|
3658
3783
|
organization: string;
|
|
3659
3784
|
id: string;
|
|
3660
3785
|
}
|
|
3786
|
+
export interface ShopifyStorePasswordsGetParameters {
|
|
3787
|
+
headers?: $HttpHeaders;
|
|
3788
|
+
organization: string;
|
|
3789
|
+
}
|
|
3661
3790
|
export interface ShopifyWebhookEventsPostShopsByShopifyShopIdAndTopicAndActionParameters {
|
|
3662
3791
|
body: any;
|
|
3663
3792
|
headers?: $HttpHeaders;
|
|
@@ -3767,6 +3896,7 @@ export interface TaxCalculationFormsPostParameters {
|
|
|
3767
3896
|
}
|
|
3768
3897
|
export interface TestsGetParameters {
|
|
3769
3898
|
headers?: $HttpHeaders;
|
|
3899
|
+
organization: string;
|
|
3770
3900
|
id?: string[];
|
|
3771
3901
|
limit?: number;
|
|
3772
3902
|
offset?: number;
|
|
@@ -3775,18 +3905,22 @@ export interface TestsGetParameters {
|
|
|
3775
3905
|
export interface TestsPostParameters {
|
|
3776
3906
|
body: io.flow.internal.v0.models.TestForm;
|
|
3777
3907
|
headers?: $HttpHeaders;
|
|
3908
|
+
organization: string;
|
|
3778
3909
|
}
|
|
3779
3910
|
export interface TestsGetByIdParameters {
|
|
3780
3911
|
headers?: $HttpHeaders;
|
|
3912
|
+
organization: string;
|
|
3781
3913
|
id: string;
|
|
3782
3914
|
}
|
|
3783
3915
|
export interface TestsPutByIdParameters {
|
|
3784
3916
|
body: io.flow.internal.v0.models.TestForm;
|
|
3785
3917
|
headers?: $HttpHeaders;
|
|
3918
|
+
organization: string;
|
|
3786
3919
|
id: string;
|
|
3787
3920
|
}
|
|
3788
3921
|
export interface TestsDeleteByIdParameters {
|
|
3789
3922
|
headers?: $HttpHeaders;
|
|
3923
|
+
organization: string;
|
|
3790
3924
|
id: string;
|
|
3791
3925
|
}
|
|
3792
3926
|
export interface TransactionsGetOrdersByOrderNumberParameters {
|
|
@@ -3939,6 +4073,14 @@ export interface ViesResultsGetByNumberParameters {
|
|
|
3939
4073
|
number: string;
|
|
3940
4074
|
name?: string;
|
|
3941
4075
|
}
|
|
4076
|
+
export interface WashCarrierActualFilesPostParameters {
|
|
4077
|
+
body: io.flow.internal.v0.models.WashCarrierActualFileForm;
|
|
4078
|
+
headers?: $HttpHeaders;
|
|
4079
|
+
}
|
|
4080
|
+
export interface WashCarrierActualFilesGetByIdParameters {
|
|
4081
|
+
headers?: $HttpHeaders;
|
|
4082
|
+
id: string;
|
|
4083
|
+
}
|
|
3942
4084
|
export interface WashExportRequestsPostParameters {
|
|
3943
4085
|
headers?: $HttpHeaders;
|
|
3944
4086
|
}
|
|
@@ -3973,10 +4115,11 @@ export declare type CalculatorOrganizationSettingsPostResponse = $HttpOk<io.flow
|
|
|
3973
4115
|
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
4116
|
export declare type CalculatorOrganizationSettingsDeleteResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
3975
4117
|
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>;
|
|
4118
|
+
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
4119
|
export declare type CarrierAccountsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.CarrierAccount> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
3978
4120
|
export declare type CarrierAccountsPutByIdResponse = $HttpOk<io.flow.internal.v0.models.CarrierAccount> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
3979
4121
|
export declare type CarrierAccountsDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4122
|
+
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
4123
|
export declare type CatalogSettingsGetResponse = $HttpOk<io.flow.internal.v0.models.CatalogSettings> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
3981
4124
|
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
4125
|
export declare type CenterDefaultsGetResponse = $HttpOk<io.flow.internal.v0.models.CenterDefaults> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
@@ -4033,7 +4176,9 @@ export declare type CheckoutHttpSequencedRequestsGetByIdResponse = $HttpOk<io.fl
|
|
|
4033
4176
|
export declare type CheckoutHttpSequencedResponsesGetResponse = $HttpOk<io.flow.internal.v0.models.CheckoutHttpSequencedResponse[]> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4034
4177
|
export declare type CheckoutSubmitOrderBundlesPutResponse = $HttpOk<io.flow.internal.v0.unions.CheckoutSubmitOrderBundles> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4035
4178
|
export declare type CiphersPostResponse = $HttpCreated<io.flow.internal.v0.models.Cipher> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4179
|
+
export declare type CiphersPostBatchResponse = $HttpCreated<io.flow.internal.v0.models.Cipher[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4036
4180
|
export declare type CiphersPostGetResponse = $HttpOk<io.flow.internal.v0.models.DecryptedCipher> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4181
|
+
export declare type CiphersPostGetAndBatchResponse = $HttpOk<io.flow.internal.v0.models.DecryptedCipher[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4037
4182
|
export declare type ClassificationsPostResponse = $HttpOk<io.flow.internal.v0.models.ClassificationWrapper> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4038
4183
|
export declare type ClassificationsGetClassifiedResponse = $HttpOk<io.flow.internal.v0.models.ClassifiedProductDetail[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4039
4184
|
export declare type ClassificationsGetOutstandingResponse = $HttpOk<io.flow.internal.v0.models.Classification[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
@@ -4079,6 +4224,9 @@ export declare type ErpPriorityFilesGetResponse = $HttpOk<io.flow.internal.v0.mo
|
|
|
4079
4224
|
export declare type ErpPriorityFilesPostResponse = $HttpCreated<io.flow.internal.v0.models.ErpPriorityFile> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4080
4225
|
export declare type ErpPriorityFilesGetByIdResponse = $HttpOk<io.flow.internal.v0.models.ErpPriorityFile> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4081
4226
|
export declare type ErpPriorityFilesDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4227
|
+
export declare type ErpPriorityVendorsGetResponse = $HttpOk<io.flow.internal.v0.models.ErpPriorityVendor[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4228
|
+
export declare type ErpPriorityVendorsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.ErpPriorityVendor> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4229
|
+
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
4230
|
export declare type ErpVendorStatusesGetStatusResponse = $HttpOk<io.flow.internal.v0.models.ErpVendorStatus> | $HttpUnauthorized<undefined>;
|
|
4083
4231
|
export declare type ExperimentsGetResponse = $HttpOk<io.flow.internal.v0.unions.Experiment[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4084
4232
|
export declare type ExperimentsPostResponse = $HttpCreated<io.flow.internal.v0.unions.Experiment> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4164,6 +4312,11 @@ export declare type GlobalSearchResultsGetResponse = $HttpOk<io.flow.internal.v0
|
|
|
4164
4312
|
export declare type GoogleShoppingSettingsGetResponse = $HttpOk<io.flow.internal.v0.models.GoogleShoppingSetting> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4165
4313
|
export declare type GoogleShoppingSettingsPostResponse = $HttpCreated<io.flow.internal.v0.models.GoogleShoppingSetting> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError> | $HttpUnauthorized<undefined>;
|
|
4166
4314
|
export declare type HarmonizationItemClassificationsGetVersionsResponse = $HttpOk<io.flow.internal.v0.models.HarmonizationItemClassification[]> | $HttpUnauthorized<undefined>;
|
|
4315
|
+
export declare type HarmonizationThresholdsGetThresholdsResponse = $HttpOk<io.flow.internal.v0.models.HarmonizationThreshold[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4316
|
+
export declare type HarmonizationThresholdsPostThresholdsResponse = $HttpCreated<io.flow.internal.v0.models.HarmonizationThreshold> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4317
|
+
export declare type HarmonizationThresholdsGetThresholdsAndDefaultResponse = $HttpOk<number> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4318
|
+
export declare type HarmonizationThresholdsPutThresholdsByIdResponse = $HttpOk<io.flow.internal.v0.models.HarmonizationThreshold> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4319
|
+
export declare type HarmonizationThresholdsDeleteThresholdsByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4167
4320
|
export declare type HarmonizationUnclassifiedStatisticsGetResponse = $HttpOk<io.flow.internal.v0.models.HarmonizationUnclassifiedStatistics[]> | $HttpUnauthorized<undefined>;
|
|
4168
4321
|
export declare type Hs6GetDescriptionByCodeResponse = $HttpOk<io.flow.internal.v0.models.Hs6> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4169
4322
|
export declare type InternalDebugTransactionsPostResponse = $HttpCreated<io.flow.internal.v0.models.InternalDebugTransaction[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4181,6 +4334,7 @@ export declare type InventoryOrganizationSettingsPutResponse = $HttpOk<io.flow.i
|
|
|
4181
4334
|
export declare type InventoryOrganizationSettingsDeleteResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4182
4335
|
export declare type NotificationRequestsPostResponse = $HttpOk<any> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4183
4336
|
export declare type InvoiceWebhookResponsesPostResponse = $HttpOk<any> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4337
|
+
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
4338
|
export declare type ChannelsGetResponse = $HttpOk<io.flow.channel.v0.models.Channel[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4185
4339
|
export declare type ChannelsPostResponse = $HttpCreated<io.flow.channel.v0.models.Channel> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4186
4340
|
export declare type ChannelsGetByChannelIdResponse = $HttpOk<io.flow.channel.v0.models.Channel> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
@@ -4240,6 +4394,7 @@ export declare type OrganizationSessionsDeleteBySessionResponse = $HttpNoContent
|
|
|
4240
4394
|
export declare type OrganizationSessionsPutOrganizationsBySessionAndOrganizationResponse = $HttpCreated<io.flow.session.v0.models.OrganizationSession> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4241
4395
|
export declare type OrganizationSessionsPutResetBySessionResponse = $HttpOk<io.flow.session.v0.unions.Session> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4242
4396
|
export declare type ShopifyOrdersGetTraceByShopifyOrderIdResponse = $HttpOk<any> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4397
|
+
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
4398
|
export declare type ShopifyCartsPutShopifyAndCartsAndPromotionByIdResponse = $HttpOk<io.flow.shopify.v0.models.ShopifyCart> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4244
4399
|
export declare type ShopifyCartsDeleteShopifyAndCartsAndPromotionByIdResponse = $HttpOk<io.flow.shopify.v0.models.ShopifyCart> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4245
4400
|
export declare type ShopifyCartsPostShopifyAndCartsAndFlowAndOrderByOrganizationResponse = $HttpCreated<io.flow.shopify.v0.models.ShopifyCart> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4248,6 +4403,7 @@ export declare type ShopifyLocalizedVariantsGetExperienceAndMapByExperienceKeyRe
|
|
|
4248
4403
|
export declare type StripeEventsPostStripeResponse = $HttpOk<any>;
|
|
4249
4404
|
export declare type SvbNotificationsPostResponse = $HttpOk<any> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4250
4405
|
export declare type ChannelTokensPostResponse = $HttpCreated<io.flow.token.v0.models.ChannelToken> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4406
|
+
export declare type TrackingsPostResponse = $HttpOk<undefined> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4251
4407
|
export declare type ItemClassificationsPostPredictResponse = $HttpOk<io.flow.internal.v0.models.ItemClassification[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4252
4408
|
export declare type ItemClassificationsPostV2AndPredictResponse = $HttpOk<io.flow.internal.v0.models.ItemClassificationV2[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4253
4409
|
export declare type ItemClassificationSummariesGetResponse = $HttpOk<io.flow.internal.v0.models.ItemClassificationSummary[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4290,7 +4446,6 @@ export declare type LocalizedContentsGetResponse = $HttpOk<io.flow.internal.v0.m
|
|
|
4290
4446
|
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
4447
|
export declare type LocalizedItemsExportSettingsGetResponse = $HttpOk<io.flow.internal.v0.models.LocalizedItemsExportSettings> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4292
4448
|
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
4449
|
export declare type LoyaltyProgramsGetResponse = $HttpOk<io.flow.internal.v0.models.LoyaltyProgram> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4295
4450
|
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
4451
|
export declare type LoyaltyProgramsDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
@@ -4342,6 +4497,7 @@ export declare type NotificationsPostRiskifiedResponse = $HttpAccepted<undefined
|
|
|
4342
4497
|
export declare type OnboardingAuditReportsGetResponse = $HttpOk<io.flow.internal.v0.models.OnboardingAuditReport> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4343
4498
|
export declare type OnboardingAuditSnapshotsGetResponse = $HttpOk<io.flow.internal.v0.models.OnboardingAuditSnapshot[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4344
4499
|
export declare type OnboardingOrganizationsGetResponse = $HttpOk<io.flow.internal.v0.models.OnboardingOrganization[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4500
|
+
export declare type OnboardingOrganizationsGetSearchResponse = $HttpOk<io.flow.internal.v0.models.MerchantSearchResult[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4345
4501
|
export declare type OptinAttributesGetResponse = $HttpOk<io.flow.internal.v0.models.OptinAttribute[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4346
4502
|
export declare type OptinAttributesGetByKeyResponse = $HttpOk<io.flow.internal.v0.models.OptinAttribute> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4347
4503
|
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 +4542,9 @@ export declare type OrganizationCurrencySettingsPostResponse = $HttpCreated<io.f
|
|
|
4386
4542
|
export declare type OrganizationCurrencySettingsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.OrganizationCurrencySetting> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4387
4543
|
export declare type OrganizationCurrencySettingsPutByIdResponse = $HttpOk<io.flow.internal.v0.models.OrganizationCurrencySetting> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4388
4544
|
export declare type OrganizationCurrencySettingsDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4545
|
+
export declare type OrganizationDeactivationsGetResponse = $HttpOk<io.flow.internal.v0.models.OrganizationDeactivation> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4546
|
+
export declare type OrganizationDeactivationsPutResponse = $HttpOk<io.flow.internal.v0.models.OrganizationDeactivation> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4547
|
+
export declare type OrganizationDeactivationsDeleteResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4389
4548
|
export declare type OrganizationDebugTransactionsPostResponse = $HttpCreated<io.flow.internal.v0.models.OrganizationDebugTransaction[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4390
4549
|
export declare type OrganizationMembershipCopiesPostMembershipAndCopiesResponse = $HttpOk<io.flow.internal.v0.models.OrganizationMembershipCopy> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4391
4550
|
export declare type OrganizationOnboardingStateAuditResultsGetAuditResponse = $HttpOk<io.flow.internal.v0.models.OrganizationOnboardingStateAuditResult[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4394,11 +4553,13 @@ export declare type OrganizationPaymentSettingsPutResponse = $HttpOk<io.flow.int
|
|
|
4394
4553
|
export declare type OrganizationPaymentSettingsGetVersionsResponse = $HttpOk<io.flow.internal.v0.models.OrganizationPaymentSettingVersion[]> | $HttpUnauthorized<undefined>;
|
|
4395
4554
|
export declare type OrganizationRestrictionSnapshotsPostResponse = $HttpCreated<undefined> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4396
4555
|
export declare type OrganizationRestrictionStatusesGetResponse = $HttpOk<io.flow.internal.v0.models.RestrictionOrganizationStatus> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4556
|
+
export declare type OrganizationRestrictionStatusesPostResetResponse = $HttpOk<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4397
4557
|
export declare type OrganizationRestrictionStatusNotesGetResponse = $HttpOk<io.flow.internal.v0.models.OrganizationRestrictionStatusNote[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4398
4558
|
export declare type OrganizationRestrictionStatusNotesPostResponse = $HttpCreated<io.flow.internal.v0.models.OrganizationRestrictionStatusNote> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4399
4559
|
export declare type OrganizationRestrictionStatusNotesPutByIdResponse = $HttpOk<io.flow.internal.v0.models.OrganizationRestrictionStatusNote> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4400
4560
|
export declare type OrganizationSettingsGetResponse = $HttpOk<io.flow.internal.v0.models.OrganizationSettings> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4401
4561
|
export declare type OrganizationSettingsPutResponse = $HttpOk<io.flow.internal.v0.models.OrganizationSettings> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4562
|
+
export declare type OrganizationsAuditCheckReportsGetResponse = $HttpOk<io.flow.internal.v0.models.OrganizationsAuditCheckReport[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4402
4563
|
export declare type PartnersPostResponse = $HttpCreated<io.flow.internal.v0.models.Partner> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4403
4564
|
export declare type PartnersGetByIdResponse = $HttpOk<io.flow.internal.v0.models.Partner> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4404
4565
|
export declare type PartnersDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
@@ -4446,6 +4607,7 @@ export declare type ProductClassificationsGetOrganizationAndProductByOrganizatio
|
|
|
4446
4607
|
export declare type ProductClassificationsPostOrganizationAndProductByOrganizationIdAndProductIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4447
4608
|
export declare type ProductClassificationsGetRefreshDefaultHs6Response = $HttpOk<io.flow.internal.v0.models.CustomsDescriptionStatistics> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4448
4609
|
export declare type ProductReviewHistoriesGetResponse = $HttpOk<io.flow.internal.v0.models.ProductReviewHistory> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4610
|
+
export declare type QueuedRecordsGetResponse = $HttpOk<io.flow.internal.v0.models.QueuedRecord[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4449
4611
|
export declare type RateAndRuleLookupsPostResponse = $HttpOk<io.flow.internal.v0.models.RateAndRuleLookup> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4450
4612
|
export declare type RateLevelsGetResponse = $HttpOk<io.flow.internal.v0.models.RateLevel[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4451
4613
|
export declare type RateLevelsPostResponse = $HttpCreated<io.flow.internal.v0.models.RateLevel> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4469,9 +4631,10 @@ export declare type RatesNamesSummariesGetDestinationAndOriginByDestinationAndOr
|
|
|
4469
4631
|
export declare type ReboundConfigurationsGetResponse = $HttpOk<io.flow.internal.v0.models.ReboundConfiguration> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4470
4632
|
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
4633
|
export declare type ReboundConfigurationsDeleteResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4634
|
+
export declare type ReportsPostResponse = $HttpOk<io.flow.internal.v0.models.Report> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4635
|
+
export declare type ReportsGetByKeyResponse = $HttpOk<io.flow.internal.v0.models.Report> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4472
4636
|
export declare type ReportRuleDecisionsPostAutoRestrictResponse = $HttpOk<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4473
4637
|
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
4638
|
export declare type ReportSummaryGetResponse = $HttpOk<io.flow.internal.v0.models.ReportSummary> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4476
4639
|
export declare type RestrictionCategoriesGetResponse = $HttpOk<io.flow.internal.v0.models.RestrictionCategory[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4477
4640
|
export declare type RestrictionFiltersGetResponse = $HttpOk<io.flow.internal.v0.models.RestrictionFilter> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4493,6 +4656,7 @@ export declare type RestrictionRulesGetByOrganizationAndStatusResponse = $HttpOk
|
|
|
4493
4656
|
export declare type RestrictionRulesPostInternalAndRestrictionAndRulesResponse = $HttpCreated<io.flow.internal.v0.models.RestrictionRule> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4494
4657
|
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
4658
|
export declare type RoutingEntitiesGetResponse = $HttpOk<io.flow.internal.v0.unions.RoutingEntity[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4659
|
+
export declare type SandboxSetupsPutResponse = $HttpOk<io.flow.internal.v0.models.SandboxSetup> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4496
4660
|
export declare type ScreensPutByKeyResponse = $HttpCreated<io.flow.internal.v0.models.Screen[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4497
4661
|
export declare type SearchProviderExportsPostResponse = $HttpAccepted<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4498
4662
|
export declare type SearchProviderExportsPostExperienceByExperienceKeyResponse = $HttpAccepted<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4542,6 +4706,7 @@ export declare type ShopifyPromotionsGetResponse = $HttpOk<io.flow.internal.v0.m
|
|
|
4542
4706
|
export declare type ShopifyPromotionsPostResponse = $HttpCreated<io.flow.internal.v0.models.ShopifyPromotion> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4543
4707
|
export declare type ShopifyPromotionsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.ShopifyPromotion> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4544
4708
|
export declare type ShopifyPromotionsPutByIdResponse = $HttpOk<io.flow.internal.v0.models.ShopifyPromotion> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4709
|
+
export declare type ShopifyStorePasswordsGetResponse = $HttpOk<io.flow.internal.v0.models.ShopifyStorePassword> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4545
4710
|
export declare type ShopifyWebhookEventsPostShopsByShopifyShopIdAndTopicAndActionResponse = $HttpNoContent<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4546
4711
|
export declare type ShopifyWebhookEventsPostByTopicAndActionResponse = $HttpNoContent<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4547
4712
|
export declare type SmpTaxCalculationFormsPostResponse = $HttpOk<io.flow.internal.v0.models.SmpTaxCalculation> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.internal.v0.models.TaxCalculationError>;
|
|
@@ -4598,6 +4763,8 @@ export declare type V2CheckoutsGetOrderAndViewsByIdResponse = $HttpOk<io.flow.in
|
|
|
4598
4763
|
export declare type V2CheckoutsGetResponseByIdResponse = $HttpOk<io.flow.internal.v0.models.CheckoutGetResponseSuccess> | $HttpNotFound<undefined>;
|
|
4599
4764
|
export declare type ViesResultsGetResponse = $HttpOk<io.flow.internal.v0.models.ViesResult[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4600
4765
|
export declare type ViesResultsGetByNumberResponse = $HttpOk<io.flow.internal.v0.models.ViesResult> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4766
|
+
export declare type WashCarrierActualFilesPostResponse = $HttpCreated<io.flow.internal.v0.models.WashCarrierActualFile> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4767
|
+
export declare type WashCarrierActualFilesGetByIdResponse = $HttpOk<io.flow.internal.v0.models.WashCarrierActualFile> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4601
4768
|
export declare type WashExportRequestsPostResponse = $HttpCreated<io.flow.internal.v0.models.WashExportRequest> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4602
4769
|
export declare type WebhooksPostResponse = $HttpOk<string> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4603
4770
|
export declare class AddressConfigurationSettingsResource extends $Resource {
|
|
@@ -4655,6 +4822,7 @@ export declare class CarrierAccountsResource extends $Resource {
|
|
|
4655
4822
|
getById(params: CarrierAccountsGetByIdParameters): Promise<CarrierAccountsGetByIdResponse>;
|
|
4656
4823
|
putById(params: CarrierAccountsPutByIdParameters): Promise<CarrierAccountsPutByIdResponse>;
|
|
4657
4824
|
deleteById(params: CarrierAccountsDeleteByIdParameters): Promise<CarrierAccountsDeleteByIdResponse>;
|
|
4825
|
+
getValidateById(params: CarrierAccountsGetValidateByIdParameters): Promise<CarrierAccountsGetValidateByIdResponse>;
|
|
4658
4826
|
}
|
|
4659
4827
|
export declare class CatalogSettingsResource extends $Resource {
|
|
4660
4828
|
get(params: CatalogSettingsGetParameters): Promise<CatalogSettingsGetResponse>;
|
|
@@ -4751,7 +4919,9 @@ export declare class CheckoutSubmitOrderBundlesResource extends $Resource {
|
|
|
4751
4919
|
}
|
|
4752
4920
|
export declare class CiphersResource extends $Resource {
|
|
4753
4921
|
post(params: CiphersPostParameters): Promise<CiphersPostResponse>;
|
|
4922
|
+
postBatch(params: CiphersPostBatchParameters): Promise<CiphersPostBatchResponse>;
|
|
4754
4923
|
postGet(params: CiphersPostGetParameters): Promise<CiphersPostGetResponse>;
|
|
4924
|
+
postGetAndBatch(params: CiphersPostGetAndBatchParameters): Promise<CiphersPostGetAndBatchResponse>;
|
|
4755
4925
|
}
|
|
4756
4926
|
export declare class ClassificationsResource extends $Resource {
|
|
4757
4927
|
post(params: ClassificationsPostParameters): Promise<ClassificationsPostResponse>;
|
|
@@ -4846,6 +5016,11 @@ export declare class ErpPriorityFilesResource extends $Resource {
|
|
|
4846
5016
|
getById(params: ErpPriorityFilesGetByIdParameters): Promise<ErpPriorityFilesGetByIdResponse>;
|
|
4847
5017
|
deleteById(params: ErpPriorityFilesDeleteByIdParameters): Promise<ErpPriorityFilesDeleteByIdResponse>;
|
|
4848
5018
|
}
|
|
5019
|
+
export declare class ErpPriorityVendorsResource extends $Resource {
|
|
5020
|
+
get(params: ErpPriorityVendorsGetParameters): Promise<ErpPriorityVendorsGetResponse>;
|
|
5021
|
+
getById(params: ErpPriorityVendorsGetByIdParameters): Promise<ErpPriorityVendorsGetByIdResponse>;
|
|
5022
|
+
putById(params: ErpPriorityVendorsPutByIdParameters): Promise<ErpPriorityVendorsPutByIdResponse>;
|
|
5023
|
+
}
|
|
4849
5024
|
export declare class ErpVendorStatusesResource extends $Resource {
|
|
4850
5025
|
getStatus(params: ErpVendorStatusesGetStatusParameters): Promise<ErpVendorStatusesGetStatusResponse>;
|
|
4851
5026
|
}
|
|
@@ -4985,6 +5160,13 @@ export declare class GoogleShoppingSettingsResource extends $Resource {
|
|
|
4985
5160
|
export declare class HarmonizationItemClassificationsResource extends $Resource {
|
|
4986
5161
|
getVersions(params: HarmonizationItemClassificationsGetVersionsParameters): Promise<HarmonizationItemClassificationsGetVersionsResponse>;
|
|
4987
5162
|
}
|
|
5163
|
+
export declare class HarmonizationThresholdsResource extends $Resource {
|
|
5164
|
+
getThresholds(params: HarmonizationThresholdsGetThresholdsParameters): Promise<HarmonizationThresholdsGetThresholdsResponse>;
|
|
5165
|
+
postThresholds(params: HarmonizationThresholdsPostThresholdsParameters): Promise<HarmonizationThresholdsPostThresholdsResponse>;
|
|
5166
|
+
getThresholdsAndDefault(params?: HarmonizationThresholdsGetThresholdsAndDefaultParameters): Promise<HarmonizationThresholdsGetThresholdsAndDefaultResponse>;
|
|
5167
|
+
putThresholdsById(params: HarmonizationThresholdsPutThresholdsByIdParameters): Promise<HarmonizationThresholdsPutThresholdsByIdResponse>;
|
|
5168
|
+
deleteThresholdsById(params: HarmonizationThresholdsDeleteThresholdsByIdParameters): Promise<HarmonizationThresholdsDeleteThresholdsByIdResponse>;
|
|
5169
|
+
}
|
|
4988
5170
|
export declare class HarmonizationUnclassifiedStatisticsResource extends $Resource {
|
|
4989
5171
|
get(params: HarmonizationUnclassifiedStatisticsGetParameters): Promise<HarmonizationUnclassifiedStatisticsGetResponse>;
|
|
4990
5172
|
}
|
|
@@ -5018,6 +5200,9 @@ export declare class NotificationRequestsResource extends $Resource {
|
|
|
5018
5200
|
export declare class InvoiceWebhookResponsesResource extends $Resource {
|
|
5019
5201
|
post(params: InvoiceWebhookResponsesPostParameters): Promise<InvoiceWebhookResponsesPostResponse>;
|
|
5020
5202
|
}
|
|
5203
|
+
export declare class ItemsResource extends $Resource {
|
|
5204
|
+
putBulk(params: ItemsPutBulkParameters): Promise<ItemsPutBulkResponse>;
|
|
5205
|
+
}
|
|
5021
5206
|
export declare class ChannelsResource extends $Resource {
|
|
5022
5207
|
get(params: ChannelsGetParameters): Promise<ChannelsGetResponse>;
|
|
5023
5208
|
post(params: ChannelsPostParameters): Promise<ChannelsPostResponse>;
|
|
@@ -5127,6 +5312,9 @@ export declare class OrganizationSessionsResource extends $Resource {
|
|
|
5127
5312
|
export declare class ShopifyOrdersResource extends $Resource {
|
|
5128
5313
|
getTraceByShopifyOrderId(params: ShopifyOrdersGetTraceByShopifyOrderIdParameters): Promise<ShopifyOrdersGetTraceByShopifyOrderIdResponse>;
|
|
5129
5314
|
}
|
|
5315
|
+
export declare class KnowYourBusinessesResource extends $Resource {
|
|
5316
|
+
get(params: KnowYourBusinessesGetParameters): Promise<KnowYourBusinessesGetResponse>;
|
|
5317
|
+
}
|
|
5130
5318
|
export declare class ShopifyCartsResource extends $Resource {
|
|
5131
5319
|
putShopifyAndCartsAndPromotionById(params: ShopifyCartsPutShopifyAndCartsAndPromotionByIdParameters): Promise<ShopifyCartsPutShopifyAndCartsAndPromotionByIdResponse>;
|
|
5132
5320
|
deleteShopifyAndCartsAndPromotionById(params: ShopifyCartsDeleteShopifyAndCartsAndPromotionByIdParameters): Promise<ShopifyCartsDeleteShopifyAndCartsAndPromotionByIdResponse>;
|
|
@@ -5147,6 +5335,9 @@ export declare class SvbNotificationsResource extends $Resource {
|
|
|
5147
5335
|
export declare class ChannelTokensResource extends $Resource {
|
|
5148
5336
|
post(params: ChannelTokensPostParameters): Promise<ChannelTokensPostResponse>;
|
|
5149
5337
|
}
|
|
5338
|
+
export declare class TrackingsResource extends $Resource {
|
|
5339
|
+
post(params: TrackingsPostParameters): Promise<TrackingsPostResponse>;
|
|
5340
|
+
}
|
|
5150
5341
|
export declare class ItemClassificationsResource extends $Resource {
|
|
5151
5342
|
postPredict(params: ItemClassificationsPostPredictParameters): Promise<ItemClassificationsPostPredictResponse>;
|
|
5152
5343
|
postV2AndPredict(params: ItemClassificationsPostV2AndPredictParameters): Promise<ItemClassificationsPostV2AndPredictResponse>;
|
|
@@ -5223,9 +5414,6 @@ export declare class LocalizedItemsExportSettingsResource extends $Resource {
|
|
|
5223
5414
|
get(params: LocalizedItemsExportSettingsGetParameters): Promise<LocalizedItemsExportSettingsGetResponse>;
|
|
5224
5415
|
put(params: LocalizedItemsExportSettingsPutParameters): Promise<LocalizedItemsExportSettingsPutResponse>;
|
|
5225
5416
|
}
|
|
5226
|
-
export declare class LogisticsCenterChecksResource extends $Resource {
|
|
5227
|
-
get(params: LogisticsCenterChecksGetParameters): Promise<LogisticsCenterChecksGetResponse>;
|
|
5228
|
-
}
|
|
5229
5417
|
export declare class LoyaltyProgramsResource extends $Resource {
|
|
5230
5418
|
get(params: LoyaltyProgramsGetParameters): Promise<LoyaltyProgramsGetResponse>;
|
|
5231
5419
|
post(params: LoyaltyProgramsPostParameters): Promise<LoyaltyProgramsPostResponse>;
|
|
@@ -5316,6 +5504,7 @@ export declare class OnboardingAuditSnapshotsResource extends $Resource {
|
|
|
5316
5504
|
}
|
|
5317
5505
|
export declare class OnboardingOrganizationsResource extends $Resource {
|
|
5318
5506
|
get(params: OnboardingOrganizationsGetParameters): Promise<OnboardingOrganizationsGetResponse>;
|
|
5507
|
+
getSearch(params: OnboardingOrganizationsGetSearchParameters): Promise<OnboardingOrganizationsGetSearchResponse>;
|
|
5319
5508
|
}
|
|
5320
5509
|
export declare class OptinAttributesResource extends $Resource {
|
|
5321
5510
|
get(params: OptinAttributesGetParameters): Promise<OptinAttributesGetResponse>;
|
|
@@ -5385,6 +5574,11 @@ export declare class OrganizationCurrencySettingsResource extends $Resource {
|
|
|
5385
5574
|
putById(params: OrganizationCurrencySettingsPutByIdParameters): Promise<OrganizationCurrencySettingsPutByIdResponse>;
|
|
5386
5575
|
deleteById(params: OrganizationCurrencySettingsDeleteByIdParameters): Promise<OrganizationCurrencySettingsDeleteByIdResponse>;
|
|
5387
5576
|
}
|
|
5577
|
+
export declare class OrganizationDeactivationsResource extends $Resource {
|
|
5578
|
+
get(params: OrganizationDeactivationsGetParameters): Promise<OrganizationDeactivationsGetResponse>;
|
|
5579
|
+
put(params: OrganizationDeactivationsPutParameters): Promise<OrganizationDeactivationsPutResponse>;
|
|
5580
|
+
delete(params: OrganizationDeactivationsDeleteParameters): Promise<OrganizationDeactivationsDeleteResponse>;
|
|
5581
|
+
}
|
|
5388
5582
|
export declare class OrganizationDebugTransactionsResource extends $Resource {
|
|
5389
5583
|
post(params: OrganizationDebugTransactionsPostParameters): Promise<OrganizationDebugTransactionsPostResponse>;
|
|
5390
5584
|
}
|
|
@@ -5404,6 +5598,7 @@ export declare class OrganizationRestrictionSnapshotsResource extends $Resource
|
|
|
5404
5598
|
}
|
|
5405
5599
|
export declare class OrganizationRestrictionStatusesResource extends $Resource {
|
|
5406
5600
|
get(params: OrganizationRestrictionStatusesGetParameters): Promise<OrganizationRestrictionStatusesGetResponse>;
|
|
5601
|
+
postReset(params: OrganizationRestrictionStatusesPostResetParameters): Promise<OrganizationRestrictionStatusesPostResetResponse>;
|
|
5407
5602
|
}
|
|
5408
5603
|
export declare class OrganizationRestrictionStatusNotesResource extends $Resource {
|
|
5409
5604
|
get(params: OrganizationRestrictionStatusNotesGetParameters): Promise<OrganizationRestrictionStatusNotesGetResponse>;
|
|
@@ -5414,6 +5609,9 @@ export declare class OrganizationSettingsResource extends $Resource {
|
|
|
5414
5609
|
get(params: OrganizationSettingsGetParameters): Promise<OrganizationSettingsGetResponse>;
|
|
5415
5610
|
put(params: OrganizationSettingsPutParameters): Promise<OrganizationSettingsPutResponse>;
|
|
5416
5611
|
}
|
|
5612
|
+
export declare class OrganizationsAuditCheckReportsResource extends $Resource {
|
|
5613
|
+
get(params: OrganizationsAuditCheckReportsGetParameters): Promise<OrganizationsAuditCheckReportsGetResponse>;
|
|
5614
|
+
}
|
|
5417
5615
|
export declare class PartnersResource extends $Resource {
|
|
5418
5616
|
post(params: PartnersPostParameters): Promise<PartnersPostResponse>;
|
|
5419
5617
|
getById(params: PartnersGetByIdParameters): Promise<PartnersGetByIdResponse>;
|
|
@@ -5491,6 +5689,9 @@ export declare class ProductClassificationsResource extends $Resource {
|
|
|
5491
5689
|
export declare class ProductReviewHistoriesResource extends $Resource {
|
|
5492
5690
|
get(params: ProductReviewHistoriesGetParameters): Promise<ProductReviewHistoriesGetResponse>;
|
|
5493
5691
|
}
|
|
5692
|
+
export declare class QueuedRecordsResource extends $Resource {
|
|
5693
|
+
get(params: QueuedRecordsGetParameters): Promise<QueuedRecordsGetResponse>;
|
|
5694
|
+
}
|
|
5494
5695
|
export declare class RateAndRuleLookupsResource extends $Resource {
|
|
5495
5696
|
post(params: RateAndRuleLookupsPostParameters): Promise<RateAndRuleLookupsPostResponse>;
|
|
5496
5697
|
}
|
|
@@ -5530,10 +5731,13 @@ export declare class ReboundConfigurationsResource extends $Resource {
|
|
|
5530
5731
|
put(params: ReboundConfigurationsPutParameters): Promise<ReboundConfigurationsPutResponse>;
|
|
5531
5732
|
delete(params: ReboundConfigurationsDeleteParameters): Promise<ReboundConfigurationsDeleteResponse>;
|
|
5532
5733
|
}
|
|
5734
|
+
export declare class ReportsResource extends $Resource {
|
|
5735
|
+
post(params: ReportsPostParameters): Promise<ReportsPostResponse>;
|
|
5736
|
+
getByKey(params: ReportsGetByKeyParameters): Promise<ReportsGetByKeyResponse>;
|
|
5737
|
+
}
|
|
5533
5738
|
export declare class ReportRuleDecisionsResource extends $Resource {
|
|
5534
5739
|
postAutoRestrict(params: ReportRuleDecisionsPostAutoRestrictParameters): Promise<ReportRuleDecisionsPostAutoRestrictResponse>;
|
|
5535
|
-
postReportAndSync(params
|
|
5536
|
-
postReportAndSyncByOrganizationId(params: ReportRuleDecisionsPostReportAndSyncByOrganizationIdParameters): Promise<ReportRuleDecisionsPostReportAndSyncByOrganizationIdResponse>;
|
|
5740
|
+
postReportAndSync(params: ReportRuleDecisionsPostReportAndSyncParameters): Promise<ReportRuleDecisionsPostReportAndSyncResponse>;
|
|
5537
5741
|
}
|
|
5538
5742
|
export declare class ReportSummaryResource extends $Resource {
|
|
5539
5743
|
get(params: ReportSummaryGetParameters): Promise<ReportSummaryGetResponse>;
|
|
@@ -5574,6 +5778,9 @@ export declare class RestrictionRulesResource extends $Resource {
|
|
|
5574
5778
|
export declare class RoutingEntitiesResource extends $Resource {
|
|
5575
5779
|
get(params: RoutingEntitiesGetParameters): Promise<RoutingEntitiesGetResponse>;
|
|
5576
5780
|
}
|
|
5781
|
+
export declare class SandboxSetupsResource extends $Resource {
|
|
5782
|
+
put(params: SandboxSetupsPutParameters): Promise<SandboxSetupsPutResponse>;
|
|
5783
|
+
}
|
|
5577
5784
|
export declare class ScreensResource extends $Resource {
|
|
5578
5785
|
putByKey(params: ScreensPutByKeyParameters): Promise<ScreensPutByKeyResponse>;
|
|
5579
5786
|
}
|
|
@@ -5665,6 +5872,9 @@ export declare class ShopifyPromotionsResource extends $Resource {
|
|
|
5665
5872
|
getById(params: ShopifyPromotionsGetByIdParameters): Promise<ShopifyPromotionsGetByIdResponse>;
|
|
5666
5873
|
putById(params: ShopifyPromotionsPutByIdParameters): Promise<ShopifyPromotionsPutByIdResponse>;
|
|
5667
5874
|
}
|
|
5875
|
+
export declare class ShopifyStorePasswordsResource extends $Resource {
|
|
5876
|
+
get(params: ShopifyStorePasswordsGetParameters): Promise<ShopifyStorePasswordsGetResponse>;
|
|
5877
|
+
}
|
|
5668
5878
|
export declare class ShopifyWebhookEventsResource extends $Resource {
|
|
5669
5879
|
postShopsByShopifyShopIdAndTopicAndAction(params: ShopifyWebhookEventsPostShopsByShopifyShopIdAndTopicAndActionParameters): Promise<ShopifyWebhookEventsPostShopsByShopifyShopIdAndTopicAndActionResponse>;
|
|
5670
5880
|
postByTopicAndAction(params: ShopifyWebhookEventsPostByTopicAndActionParameters): Promise<ShopifyWebhookEventsPostByTopicAndActionResponse>;
|
|
@@ -5765,6 +5975,10 @@ export declare class ViesResultsResource extends $Resource {
|
|
|
5765
5975
|
get(params: ViesResultsGetParameters): Promise<ViesResultsGetResponse>;
|
|
5766
5976
|
getByNumber(params: ViesResultsGetByNumberParameters): Promise<ViesResultsGetByNumberResponse>;
|
|
5767
5977
|
}
|
|
5978
|
+
export declare class WashCarrierActualFilesResource extends $Resource {
|
|
5979
|
+
post(params: WashCarrierActualFilesPostParameters): Promise<WashCarrierActualFilesPostResponse>;
|
|
5980
|
+
getById(params: WashCarrierActualFilesGetByIdParameters): Promise<WashCarrierActualFilesGetByIdResponse>;
|
|
5981
|
+
}
|
|
5768
5982
|
export declare class WashExportRequestsResource extends $Resource {
|
|
5769
5983
|
post(params?: WashExportRequestsPostParameters): Promise<WashExportRequestsPostResponse>;
|
|
5770
5984
|
}
|
|
@@ -5829,6 +6043,7 @@ export interface ClientInstance {
|
|
|
5829
6043
|
erpFlowFiles: ErpFlowFilesResource;
|
|
5830
6044
|
erpFlowVendors: ErpFlowVendorsResource;
|
|
5831
6045
|
erpPriorityFiles: ErpPriorityFilesResource;
|
|
6046
|
+
erpPriorityVendors: ErpPriorityVendorsResource;
|
|
5832
6047
|
erpVendorStatuses: ErpVendorStatusesResource;
|
|
5833
6048
|
experiments: ExperimentsResource;
|
|
5834
6049
|
experimentFormDefaults: ExperimentFormDefaultsResource;
|
|
@@ -5856,6 +6071,7 @@ export interface ClientInstance {
|
|
|
5856
6071
|
globalSearchResults: GlobalSearchResultsResource;
|
|
5857
6072
|
googleShoppingSettings: GoogleShoppingSettingsResource;
|
|
5858
6073
|
harmonizationItemClassifications: HarmonizationItemClassificationsResource;
|
|
6074
|
+
harmonizationThresholds: HarmonizationThresholdsResource;
|
|
5859
6075
|
harmonizationUnclassifiedStatistics: HarmonizationUnclassifiedStatisticsResource;
|
|
5860
6076
|
hs6: Hs6Resource;
|
|
5861
6077
|
internalDebugTransactions: InternalDebugTransactionsResource;
|
|
@@ -5864,6 +6080,7 @@ export interface ClientInstance {
|
|
|
5864
6080
|
inventoryOrganizationSettings: InventoryOrganizationSettingsResource;
|
|
5865
6081
|
notificationRequests: NotificationRequestsResource;
|
|
5866
6082
|
invoiceWebhookResponses: InvoiceWebhookResponsesResource;
|
|
6083
|
+
items: ItemsResource;
|
|
5867
6084
|
channels: ChannelsResource;
|
|
5868
6085
|
channelCurrencies: ChannelCurrenciesResource;
|
|
5869
6086
|
checkoutReferences: CheckoutReferencesResource;
|
|
@@ -5889,12 +6106,14 @@ export interface ClientInstance {
|
|
|
5889
6106
|
contexts: ContextsResource;
|
|
5890
6107
|
organizationSessions: OrganizationSessionsResource;
|
|
5891
6108
|
shopifyOrders: ShopifyOrdersResource;
|
|
6109
|
+
knowYourBusinesses: KnowYourBusinessesResource;
|
|
5892
6110
|
shopifyCarts: ShopifyCartsResource;
|
|
5893
6111
|
shopifyCartConversions: ShopifyCartConversionsResource;
|
|
5894
6112
|
shopifyLocalizedVariants: ShopifyLocalizedVariantsResource;
|
|
5895
6113
|
stripeEvents: StripeEventsResource;
|
|
5896
6114
|
svbNotifications: SvbNotificationsResource;
|
|
5897
6115
|
channelTokens: ChannelTokensResource;
|
|
6116
|
+
trackings: TrackingsResource;
|
|
5898
6117
|
itemClassifications: ItemClassificationsResource;
|
|
5899
6118
|
itemClassificationSummaries: ItemClassificationSummariesResource;
|
|
5900
6119
|
itemHarmonizations: ItemHarmonizationsResource;
|
|
@@ -5912,7 +6131,6 @@ export interface ClientInstance {
|
|
|
5912
6131
|
localizations: LocalizationsResource;
|
|
5913
6132
|
localizedContents: LocalizedContentsResource;
|
|
5914
6133
|
localizedItemsExportSettings: LocalizedItemsExportSettingsResource;
|
|
5915
|
-
logisticsCenterChecks: LogisticsCenterChecksResource;
|
|
5916
6134
|
loyaltyPrograms: LoyaltyProgramsResource;
|
|
5917
6135
|
manualReviewRules: ManualReviewRulesResource;
|
|
5918
6136
|
marketingGatewayChannels: MarketingGatewayChannelsResource;
|
|
@@ -5945,6 +6163,7 @@ export interface ClientInstance {
|
|
|
5945
6163
|
organizationAccounts: OrganizationAccountsResource;
|
|
5946
6164
|
organizationBillingStatements: OrganizationBillingStatementsResource;
|
|
5947
6165
|
organizationCurrencySettings: OrganizationCurrencySettingsResource;
|
|
6166
|
+
organizationDeactivations: OrganizationDeactivationsResource;
|
|
5948
6167
|
organizationDebugTransactions: OrganizationDebugTransactionsResource;
|
|
5949
6168
|
organizationMembershipCopies: OrganizationMembershipCopiesResource;
|
|
5950
6169
|
organizationOnboardingStateAuditResults: OrganizationOnboardingStateAuditResultsResource;
|
|
@@ -5953,6 +6172,7 @@ export interface ClientInstance {
|
|
|
5953
6172
|
organizationRestrictionStatuses: OrganizationRestrictionStatusesResource;
|
|
5954
6173
|
organizationRestrictionStatusNotes: OrganizationRestrictionStatusNotesResource;
|
|
5955
6174
|
organizationSettings: OrganizationSettingsResource;
|
|
6175
|
+
organizationsAuditCheckReports: OrganizationsAuditCheckReportsResource;
|
|
5956
6176
|
partners: PartnersResource;
|
|
5957
6177
|
partnerAuthorizations: PartnerAuthorizationsResource;
|
|
5958
6178
|
partnerMemberships: PartnerMembershipsResource;
|
|
@@ -5968,6 +6188,7 @@ export interface ClientInstance {
|
|
|
5968
6188
|
processorMerchants: ProcessorMerchantsResource;
|
|
5969
6189
|
productClassifications: ProductClassificationsResource;
|
|
5970
6190
|
productReviewHistories: ProductReviewHistoriesResource;
|
|
6191
|
+
queuedRecords: QueuedRecordsResource;
|
|
5971
6192
|
rateAndRuleLookups: RateAndRuleLookupsResource;
|
|
5972
6193
|
rateLevels: RateLevelsResource;
|
|
5973
6194
|
rateLevelOrganizations: RateLevelOrganizationsResource;
|
|
@@ -5976,6 +6197,7 @@ export interface ClientInstance {
|
|
|
5976
6197
|
ratecardStandardConfigurations: RatecardStandardConfigurationsResource;
|
|
5977
6198
|
ratesNamesSummaries: RatesNamesSummariesResource;
|
|
5978
6199
|
reboundConfigurations: ReboundConfigurationsResource;
|
|
6200
|
+
reports: ReportsResource;
|
|
5979
6201
|
reportRuleDecisions: ReportRuleDecisionsResource;
|
|
5980
6202
|
reportSummary: ReportSummaryResource;
|
|
5981
6203
|
restrictionCategories: RestrictionCategoriesResource;
|
|
@@ -5986,6 +6208,7 @@ export interface ClientInstance {
|
|
|
5986
6208
|
restrictionProducts: RestrictionProductsResource;
|
|
5987
6209
|
restrictionRules: RestrictionRulesResource;
|
|
5988
6210
|
routingEntities: RoutingEntitiesResource;
|
|
6211
|
+
sandboxSetups: SandboxSetupsResource;
|
|
5989
6212
|
screens: ScreensResource;
|
|
5990
6213
|
searchProviderExports: SearchProviderExportsResource;
|
|
5991
6214
|
sessionCountries: SessionCountriesResource;
|
|
@@ -6007,6 +6230,7 @@ export interface ClientInstance {
|
|
|
6007
6230
|
shopifyOrderFulfillmentsSnapshots: ShopifyOrderFulfillmentsSnapshotsResource;
|
|
6008
6231
|
shopifyOrganizationSettings: ShopifyOrganizationSettingsResource;
|
|
6009
6232
|
shopifyPromotions: ShopifyPromotionsResource;
|
|
6233
|
+
shopifyStorePasswords: ShopifyStorePasswordsResource;
|
|
6010
6234
|
shopifyWebhookEvents: ShopifyWebhookEventsResource;
|
|
6011
6235
|
smpTaxCalculationForms: SmpTaxCalculationFormsResource;
|
|
6012
6236
|
snoozes: SnoozesResource;
|
|
@@ -6029,6 +6253,7 @@ export interface ClientInstance {
|
|
|
6029
6253
|
v1Checkouts: V1CheckoutsResource;
|
|
6030
6254
|
v2Checkouts: V2CheckoutsResource;
|
|
6031
6255
|
viesResults: ViesResultsResource;
|
|
6256
|
+
washCarrierActualFiles: WashCarrierActualFilesResource;
|
|
6032
6257
|
washExportRequests: WashExportRequestsResource;
|
|
6033
6258
|
webhooks: WebhooksResource;
|
|
6034
6259
|
}
|