randmar-api-client 1.77.0 → 1.79.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.
|
@@ -2222,6 +2222,7 @@ export type PostV4ResellerByRouteResellerIdReportUniversalEmailApiArg = {
|
|
|
2222
2222
|
routeResellerId: string;
|
|
2223
2223
|
/** The recipient's email address. */
|
|
2224
2224
|
emailAddress?: string;
|
|
2225
|
+
manufacturerId?: string;
|
|
2225
2226
|
};
|
|
2226
2227
|
export type PostV4ResellerByRouteResellerIdReportProductsEmailApiResponse = unknown;
|
|
2227
2228
|
export type PostV4ResellerByRouteResellerIdReportProductsEmailApiArg = {
|
|
@@ -2229,26 +2230,31 @@ export type PostV4ResellerByRouteResellerIdReportProductsEmailApiArg = {
|
|
|
2229
2230
|
routeResellerId: string;
|
|
2230
2231
|
/** The recipient's email address. */
|
|
2231
2232
|
emailAddress?: string;
|
|
2233
|
+
manufacturerId?: string;
|
|
2232
2234
|
};
|
|
2233
2235
|
export type PostV4ResellerByRouteResellerIdReportUniversalFileApiResponse = unknown;
|
|
2234
2236
|
export type PostV4ResellerByRouteResellerIdReportUniversalFileApiArg = {
|
|
2235
2237
|
/** The ID of the reseller making the request. */
|
|
2236
2238
|
routeResellerId: string;
|
|
2239
|
+
manufacturerId?: string;
|
|
2237
2240
|
};
|
|
2238
2241
|
export type PostV4ResellerByRouteResellerIdReportProductsFileApiResponse = unknown;
|
|
2239
2242
|
export type PostV4ResellerByRouteResellerIdReportProductsFileApiArg = {
|
|
2240
2243
|
/** The ID of the reseller making the request. */
|
|
2241
2244
|
routeResellerId: string;
|
|
2245
|
+
manufacturerId?: string;
|
|
2242
2246
|
};
|
|
2243
2247
|
export type PostV4ResellerByRouteResellerIdReportUniversalJsonApiResponse = unknown;
|
|
2244
2248
|
export type PostV4ResellerByRouteResellerIdReportUniversalJsonApiArg = {
|
|
2245
2249
|
/** The ID of the reseller making the request. */
|
|
2246
2250
|
routeResellerId: string;
|
|
2251
|
+
manufacturerId?: string;
|
|
2247
2252
|
};
|
|
2248
2253
|
export type PostV4ResellerByRouteResellerIdReportProductsJsonApiResponse = unknown;
|
|
2249
2254
|
export type PostV4ResellerByRouteResellerIdReportProductsJsonApiArg = {
|
|
2250
2255
|
/** The ID of the reseller making the request. */
|
|
2251
2256
|
routeResellerId: string;
|
|
2257
|
+
manufacturerId?: string;
|
|
2252
2258
|
};
|
|
2253
2259
|
export type PostV4ResellerByRouteResellerIdReportShipmentsEmailApiResponse = unknown;
|
|
2254
2260
|
export type PostV4ResellerByRouteResellerIdReportShipmentsEmailApiArg = {
|
package/dist/store/randmarApi.js
CHANGED
|
@@ -1612,6 +1612,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
1612
1612
|
method: "POST",
|
|
1613
1613
|
params: {
|
|
1614
1614
|
emailAddress: queryArg.emailAddress,
|
|
1615
|
+
manufacturerId: queryArg.manufacturerId,
|
|
1615
1616
|
},
|
|
1616
1617
|
}),
|
|
1617
1618
|
}),
|
|
@@ -1621,6 +1622,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
1621
1622
|
method: "POST",
|
|
1622
1623
|
params: {
|
|
1623
1624
|
emailAddress: queryArg.emailAddress,
|
|
1625
|
+
manufacturerId: queryArg.manufacturerId,
|
|
1624
1626
|
},
|
|
1625
1627
|
}),
|
|
1626
1628
|
}),
|
|
@@ -1628,24 +1630,36 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
1628
1630
|
query: (queryArg) => ({
|
|
1629
1631
|
url: `/V4/Reseller/${queryArg.routeResellerId}/Report/Universal/File`,
|
|
1630
1632
|
method: "POST",
|
|
1633
|
+
params: {
|
|
1634
|
+
manufacturerId: queryArg.manufacturerId,
|
|
1635
|
+
},
|
|
1631
1636
|
}),
|
|
1632
1637
|
}),
|
|
1633
1638
|
postV4ResellerByRouteResellerIdReportProductsFile: build.mutation({
|
|
1634
1639
|
query: (queryArg) => ({
|
|
1635
1640
|
url: `/V4/Reseller/${queryArg.routeResellerId}/Report/Products/File`,
|
|
1636
1641
|
method: "POST",
|
|
1642
|
+
params: {
|
|
1643
|
+
manufacturerId: queryArg.manufacturerId,
|
|
1644
|
+
},
|
|
1637
1645
|
}),
|
|
1638
1646
|
}),
|
|
1639
1647
|
postV4ResellerByRouteResellerIdReportUniversalJson: build.mutation({
|
|
1640
1648
|
query: (queryArg) => ({
|
|
1641
1649
|
url: `/V4/Reseller/${queryArg.routeResellerId}/Report/Universal/JSON`,
|
|
1642
1650
|
method: "POST",
|
|
1651
|
+
params: {
|
|
1652
|
+
manufacturerId: queryArg.manufacturerId,
|
|
1653
|
+
},
|
|
1643
1654
|
}),
|
|
1644
1655
|
}),
|
|
1645
1656
|
postV4ResellerByRouteResellerIdReportProductsJson: build.mutation({
|
|
1646
1657
|
query: (queryArg) => ({
|
|
1647
1658
|
url: `/V4/Reseller/${queryArg.routeResellerId}/Report/Products/JSON`,
|
|
1648
1659
|
method: "POST",
|
|
1660
|
+
params: {
|
|
1661
|
+
manufacturerId: queryArg.manufacturerId,
|
|
1662
|
+
},
|
|
1649
1663
|
}),
|
|
1650
1664
|
}),
|
|
1651
1665
|
postV4ResellerByRouteResellerIdReportShipmentsEmail: build.mutation({
|