randmar-api-client 1.21.0 → 1.23.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.
@@ -1060,6 +1060,7 @@ export type GetV4ResellerByRouteResellerIdOpportunitiesApiArg = {
1060
1060
  };
1061
1061
  export type GetV4ManufacturerByRouteManufacturerIdOpportunitiesApiResponse = unknown;
1062
1062
  export type GetV4ManufacturerByRouteManufacturerIdOpportunitiesApiArg = {
1063
+ /** The application ID of the Manufacturer making the request. */
1063
1064
  routeManufacturerId: string;
1064
1065
  };
1065
1066
  export type GetV4ResellerByRouteResellerIdOpportunityAndManufacturerIdBidNumberApiResponse = unknown;
@@ -1119,9 +1120,13 @@ export type DeleteV4ManufacturerByRouteManufacturerIdOpportunityAndBidNumberApiA
1119
1120
  };
1120
1121
  export type PostV4ManufacturerByRouteManufacturerIdOpportunityAndBidNumberFieldNameApiResponse = unknown;
1121
1122
  export type PostV4ManufacturerByRouteManufacturerIdOpportunityAndBidNumberFieldNameApiArg = {
1123
+ /** The application ID of the requestor. */
1122
1124
  routeManufacturerId: string;
1125
+ /** The BidNumber of the opportunity to edit. */
1123
1126
  bidNumber: string;
1127
+ /** The name of the opportunity field to edit. Case-sensitive, so use the field name as seen in the JSON received from API. */
1124
1128
  fieldName: string;
1129
+ /** The new value for the field. */
1125
1130
  newValue?: string;
1126
1131
  };
1127
1132
  export type PutV4ManufacturerByRouteManufacturerIdOpportunityAndBidNumberResellerResellerIdApiResponse = unknown;
@@ -1196,8 +1201,11 @@ export type PostV4ResellerByRouteResellerIdOrderAndOrderNumberChangeLocationApiA
1196
1201
  };
1197
1202
  export type PostV4ResellerByRouteResellerIdOrderAndOrderNumberOnHoldApiResponse = unknown;
1198
1203
  export type PostV4ResellerByRouteResellerIdOrderAndOrderNumberOnHoldApiArg = {
1204
+ /** The application ID of the Reseller making the request. */
1199
1205
  routeResellerId: string;
1206
+ /** The order number of which to change the On Hold status. */
1200
1207
  orderNumber: string;
1208
+ /** boolean indicating the On Hold status of an active order */
1201
1209
  newValue?: boolean;
1202
1210
  };
1203
1211
  export type PostV4ResellerByRouteResellerIdOrderAndOrderNumberShipViaChangeApiResponse = unknown;
@@ -2195,6 +2203,7 @@ export type AgencyInfo = {
2195
2203
  Name?: string | null;
2196
2204
  PublicName?: string | null;
2197
2205
  Website?: string | null;
2206
+ ProgramPercentage?: number;
2198
2207
  };
2199
2208
  export type Account = {
2200
2209
  BillingInformation?: BillingInformation;
@@ -2564,6 +2573,7 @@ export type ManufacturerCategory = {
2564
2573
  ManufacturerId?: string | null;
2565
2574
  Niche?: string | null;
2566
2575
  Products?: Product[] | null;
2576
+ AvailableToBuy?: boolean;
2567
2577
  };
2568
2578
  export type SalesData = {
2569
2579
  LastCalculated?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "randmar-api-client",
3
- "version": "1.21.0",
3
+ "version": "1.23.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",