randmar-api-client 1.108.0 → 1.110.0
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/store/randmarApi.d.ts +3584 -3640
- package/dist/store/randmarApi.js +26 -26
- package/dist/store/randmarApiWithTags.d.ts +52 -52
- package/dist/store/randmarApiWithTags.js +1 -1
- package/package.json +1 -1
package/dist/store/randmarApi.js
CHANGED
|
@@ -149,7 +149,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
149
149
|
query: (queryArg) => ({
|
|
150
150
|
url: `/V4/Partner/${queryArg.applicationId}/Account/Billing`,
|
|
151
151
|
method: "PUT",
|
|
152
|
-
body: queryArg.
|
|
152
|
+
body: queryArg.newBillingInformation,
|
|
153
153
|
}),
|
|
154
154
|
}),
|
|
155
155
|
putV4PartnerByApplicationIdAccountSalesAgency: build.mutation({
|
|
@@ -365,7 +365,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
365
365
|
query: (queryArg) => ({
|
|
366
366
|
url: `/V4/Partner/${queryArg.routeApplicationId}/BusinessDevelopment/Conversation/${queryArg.conversationId}/Link`,
|
|
367
367
|
method: "POST",
|
|
368
|
-
body: queryArg.
|
|
368
|
+
body: queryArg.createLinkRequest,
|
|
369
369
|
}),
|
|
370
370
|
}),
|
|
371
371
|
getV4PartnerByRouteApplicationIdBusinessDevelopmentConversationsHasUnreads: build.query({
|
|
@@ -419,21 +419,21 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
419
419
|
query: (queryArg) => ({
|
|
420
420
|
url: `/V4/Reseller/${queryArg.routeResellerId}/Cart/ShippingMethods/${queryArg.cartName}`,
|
|
421
421
|
method: "POST",
|
|
422
|
-
body: queryArg.
|
|
422
|
+
body: queryArg.shipToDetails,
|
|
423
423
|
}),
|
|
424
424
|
}),
|
|
425
425
|
postV4ResellerByRouteResellerIdCartProcessAndCartName: build.mutation({
|
|
426
426
|
query: (queryArg) => ({
|
|
427
427
|
url: `/V4/Reseller/${queryArg.routeResellerId}/Cart/Process/${queryArg.cartName}`,
|
|
428
428
|
method: "POST",
|
|
429
|
-
body: queryArg.
|
|
429
|
+
body: queryArg.shipToLocation,
|
|
430
430
|
}),
|
|
431
431
|
}),
|
|
432
432
|
postV4ResellerByRouteResellerIdCartProcessNewAndCartName: build.mutation({
|
|
433
433
|
query: (queryArg) => ({
|
|
434
434
|
url: `/V4/Reseller/${queryArg.routeResellerId}/Cart/ProcessNew/${queryArg.cartName}`,
|
|
435
435
|
method: "POST",
|
|
436
|
-
body: queryArg.
|
|
436
|
+
body: queryArg.processCartInput,
|
|
437
437
|
}),
|
|
438
438
|
}),
|
|
439
439
|
getV4ResellerByRouteResellerIdCarts: build.query({
|
|
@@ -743,7 +743,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
743
743
|
query: (queryArg) => ({
|
|
744
744
|
url: `/V4/Partner/${queryArg.applicationId}/GeneralDocument/${queryArg.generalDocumentNumber}/ShippingAddress`,
|
|
745
745
|
method: "POST",
|
|
746
|
-
body: queryArg.
|
|
746
|
+
body: queryArg.shippingAddress,
|
|
747
747
|
}),
|
|
748
748
|
}),
|
|
749
749
|
getV4PartnerByRouteApplicationIdGeneralDocuments: build.query({
|
|
@@ -762,7 +762,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
762
762
|
query: (queryArg) => ({
|
|
763
763
|
url: `/V4/Partner/${queryArg.applicationId}/Generation/GoogleGroundedText`,
|
|
764
764
|
method: "POST",
|
|
765
|
-
body: queryArg.
|
|
765
|
+
body: queryArg.generateGoogleGroundedTextBody,
|
|
766
766
|
}),
|
|
767
767
|
}),
|
|
768
768
|
postV4PartnerByApplicationIdGenerationJson: build.mutation({
|
|
@@ -776,7 +776,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
776
776
|
query: (queryArg) => ({
|
|
777
777
|
url: `/V4/Partner/${queryArg.applicationId}/Generation/Image`,
|
|
778
778
|
method: "POST",
|
|
779
|
-
body: queryArg.
|
|
779
|
+
body: queryArg.generateImageBody,
|
|
780
780
|
}),
|
|
781
781
|
}),
|
|
782
782
|
postV4PartnerByApplicationIdGenerationRandmarAssistant: build.mutation({
|
|
@@ -830,7 +830,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
830
830
|
query: (queryArg) => ({
|
|
831
831
|
url: `/V4/Manufacturer/${queryArg.routeManufacturerId}/Invoice/${queryArg.receiptNumber}`,
|
|
832
832
|
method: "PUT",
|
|
833
|
-
body: queryArg.
|
|
833
|
+
body: queryArg.invoiceToReceiptInput,
|
|
834
834
|
}),
|
|
835
835
|
}),
|
|
836
836
|
getV4PartnerByRouteApplicationIdJobs: build.query({
|
|
@@ -924,7 +924,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
924
924
|
query: (queryArg) => ({
|
|
925
925
|
url: `/V4/Reseller/${queryArg.routeResellerId}/Media/${queryArg.documentNumber}/${queryArg.subfolder}/Short`,
|
|
926
926
|
method: "PUT",
|
|
927
|
-
body: queryArg.
|
|
927
|
+
body: queryArg.convertToShortModel,
|
|
928
928
|
}),
|
|
929
929
|
}),
|
|
930
930
|
getV4PartnerByRouteApplicationIdMediaShorts: build.query({
|
|
@@ -956,21 +956,21 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
956
956
|
query: (queryArg) => ({
|
|
957
957
|
url: `/V4/Partner/${queryArg.routeApplicationId}/Media/TextToSpeech`,
|
|
958
958
|
method: "PUT",
|
|
959
|
-
body: queryArg.
|
|
959
|
+
body: queryArg.textToSpeechModel,
|
|
960
960
|
}),
|
|
961
961
|
}),
|
|
962
962
|
putV4PartnerByRouteApplicationIdMediaShortsFromLong: build.mutation({
|
|
963
963
|
query: (queryArg) => ({
|
|
964
964
|
url: `/V4/Partner/${queryArg.routeApplicationId}/Media/ShortsFromLong`,
|
|
965
965
|
method: "PUT",
|
|
966
|
-
body: queryArg.
|
|
966
|
+
body: queryArg.shortsFromLongModel,
|
|
967
967
|
}),
|
|
968
968
|
}),
|
|
969
969
|
putV4PartnerNew: build.mutation({
|
|
970
970
|
query: (queryArg) => ({
|
|
971
971
|
url: `/V4/Partner/New`,
|
|
972
972
|
method: "PUT",
|
|
973
|
-
body: queryArg.
|
|
973
|
+
body: queryArg.partnerInformation,
|
|
974
974
|
}),
|
|
975
975
|
}),
|
|
976
976
|
getV4ResellerByRouteResellerIdNicheAndNicheNameManufacturers: build.query({
|
|
@@ -1033,14 +1033,14 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
1033
1033
|
query: (queryArg) => ({
|
|
1034
1034
|
url: `/V4/Manufacturer/${queryArg.routeManufacturerId}/Opportunity`,
|
|
1035
1035
|
method: "PUT",
|
|
1036
|
-
body: queryArg.
|
|
1036
|
+
body: queryArg.createOpportunityInput,
|
|
1037
1037
|
}),
|
|
1038
1038
|
}),
|
|
1039
1039
|
putV4ManufacturerByRouteManufacturerIdOpportunityAndBidNumber: build.mutation({
|
|
1040
1040
|
query: (queryArg) => ({
|
|
1041
1041
|
url: `/V4/Manufacturer/${queryArg.routeManufacturerId}/Opportunity/${queryArg.bidNumber}`,
|
|
1042
1042
|
method: "PUT",
|
|
1043
|
-
body: queryArg.
|
|
1043
|
+
body: queryArg.renewOpportunityInput,
|
|
1044
1044
|
}),
|
|
1045
1045
|
}),
|
|
1046
1046
|
getV4ManufacturerByRouteManufacturerIdOpportunityAndBidNumber: build.query({
|
|
@@ -1390,7 +1390,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
1390
1390
|
query: (queryArg) => ({
|
|
1391
1391
|
url: `/V4/Partner/${queryArg.routeApplicationId}/Product/${queryArg.randmarSku}/Short`,
|
|
1392
1392
|
method: "PUT",
|
|
1393
|
-
body: queryArg.
|
|
1393
|
+
body: queryArg.productConvertToShortModel,
|
|
1394
1394
|
}),
|
|
1395
1395
|
}),
|
|
1396
1396
|
getV4ManufacturerByRouteManufacturerIdProductAndProductNumber: build.query({
|
|
@@ -1414,7 +1414,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
1414
1414
|
query: (queryArg) => ({
|
|
1415
1415
|
url: `/V4/Manufacturer/${queryArg.routeManufacturerId}/Product`,
|
|
1416
1416
|
method: "PUT",
|
|
1417
|
-
body: queryArg.
|
|
1417
|
+
body: queryArg.insertProductInput,
|
|
1418
1418
|
}),
|
|
1419
1419
|
}),
|
|
1420
1420
|
postV4ManufacturerByRouteManufacturerIdProductAndProductNumberFieldName: build.mutation({
|
|
@@ -1467,7 +1467,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
1467
1467
|
query: (queryArg) => ({
|
|
1468
1468
|
url: `/V4/Manufacturer/${queryArg.routeManufacturerId}/Product/${queryArg.randmarSku}/InstantRebate`,
|
|
1469
1469
|
method: "PUT",
|
|
1470
|
-
body: queryArg.
|
|
1470
|
+
body: queryArg.instantRebateInput,
|
|
1471
1471
|
}),
|
|
1472
1472
|
}),
|
|
1473
1473
|
putV4ManufacturerByRouteManufacturerIdProductAndRandmarSkuRequisition: build.mutation({
|
|
@@ -2078,7 +2078,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
2078
2078
|
query: (queryArg) => ({
|
|
2079
2079
|
url: `/V4/Manufacturer/${queryArg.routeManufacturerId}/Requisition`,
|
|
2080
2080
|
method: "PUT",
|
|
2081
|
-
body: queryArg.
|
|
2081
|
+
body: queryArg.createRequisitionInput,
|
|
2082
2082
|
}),
|
|
2083
2083
|
}),
|
|
2084
2084
|
getV4ManufacturerByRouteManufacturerIdResellerAndResellerId: build.query({
|
|
@@ -2143,7 +2143,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
2143
2143
|
query: (queryArg) => ({
|
|
2144
2144
|
url: `/V4/Reseller/${queryArg.routeResellerId}/Return/Create`,
|
|
2145
2145
|
method: "POST",
|
|
2146
|
-
body: queryArg.
|
|
2146
|
+
body: queryArg.returnRequest,
|
|
2147
2147
|
}),
|
|
2148
2148
|
}),
|
|
2149
2149
|
putV4ResellerByRouteResellerIdReturnAndReturnNumberClaim: build.mutation({
|
|
@@ -2156,7 +2156,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
2156
2156
|
query: (queryArg) => ({
|
|
2157
2157
|
url: `/V4/Reseller/${queryArg.routeResellerId}/Return/${queryArg.returnNumber}/ManufacturerRMA`,
|
|
2158
2158
|
method: "PUT",
|
|
2159
|
-
body: queryArg.
|
|
2159
|
+
body: queryArg.manufacturerRma,
|
|
2160
2160
|
}),
|
|
2161
2161
|
}),
|
|
2162
2162
|
postV4ResellerByRouteResellerIdReturnAndReturnNumberAddComment: build.mutation({
|
|
@@ -2300,21 +2300,21 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
2300
2300
|
query: (queryArg) => ({
|
|
2301
2301
|
url: `/V4/Reseller/${queryArg.routeResellerId}/ShippingLabel/Generate`,
|
|
2302
2302
|
method: "PUT",
|
|
2303
|
-
body: queryArg.
|
|
2303
|
+
body: queryArg.shipmentDetails,
|
|
2304
2304
|
}),
|
|
2305
2305
|
}),
|
|
2306
2306
|
putV4ResellerByRouteResellerIdShippingLabelLogistics: build.mutation({
|
|
2307
2307
|
query: (queryArg) => ({
|
|
2308
2308
|
url: `/V4/Reseller/${queryArg.routeResellerId}/ShippingLabel/Logistics`,
|
|
2309
2309
|
method: "PUT",
|
|
2310
|
-
body: queryArg.
|
|
2310
|
+
body: queryArg.shipmentDetails,
|
|
2311
2311
|
}),
|
|
2312
2312
|
}),
|
|
2313
2313
|
postV4ResellerByRouteResellerIdShippingLabelEstimate: build.mutation({
|
|
2314
2314
|
query: (queryArg) => ({
|
|
2315
2315
|
url: `/V4/Reseller/${queryArg.routeResellerId}/ShippingLabel/Estimate`,
|
|
2316
2316
|
method: "POST",
|
|
2317
|
-
body: queryArg.
|
|
2317
|
+
body: queryArg.shipmentDetails,
|
|
2318
2318
|
}),
|
|
2319
2319
|
}),
|
|
2320
2320
|
getV4ResellerByRouteResellerIdShopifyAccounts: build.query({
|
|
@@ -2479,7 +2479,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
2479
2479
|
query: (queryArg) => ({
|
|
2480
2480
|
url: `/V4/Partner/${queryArg.routeApplicationId}/Warehouse/${queryArg.warehouseId}/CarrierIntegration`,
|
|
2481
2481
|
method: "PUT",
|
|
2482
|
-
body: queryArg.
|
|
2482
|
+
body: queryArg.carrierIntegrationInput,
|
|
2483
2483
|
}),
|
|
2484
2484
|
}),
|
|
2485
2485
|
deleteV4PartnerByRouteApplicationIdWarehouseAndWarehouseIdCarrierIntegrationCarrierCode: build.mutation({
|
|
@@ -2501,7 +2501,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
2501
2501
|
query: (queryArg) => ({
|
|
2502
2502
|
url: `/V4/Partner/${queryArg.routeApplicationId}/Warehouse`,
|
|
2503
2503
|
method: "PUT",
|
|
2504
|
-
body: queryArg.
|
|
2504
|
+
body: queryArg.createWarehouseInput,
|
|
2505
2505
|
}),
|
|
2506
2506
|
}),
|
|
2507
2507
|
getV4PartnerByRouteApplicationIdWarehouses: build.query({
|