randmar-api-client 1.14.0 → 1.15.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.
@@ -2203,6 +2203,12 @@ export type ProblemDetails = {
2203
2203
  Instance?: string | null;
2204
2204
  [key: string]: any;
2205
2205
  };
2206
+ export type Qualification = {
2207
+ ManufacturerId?: string | null;
2208
+ QualificationId?: string | null;
2209
+ ResellerId?: string | null;
2210
+ DefaultOpportunityNumber?: string | null;
2211
+ };
2206
2212
  export type ManufacturerCategory = {
2207
2213
  AutoReorder?: boolean;
2208
2214
  QualificationRequired?: boolean;
@@ -2236,6 +2242,7 @@ export type SalesStatistic = {
2236
2242
  RandmarSKU?: string | null;
2237
2243
  };
2238
2244
  export type Manufacturer = {
2245
+ Qualification?: Qualification;
2239
2246
  AutoUpdate?: boolean;
2240
2247
  OpenToWork?: boolean;
2241
2248
  CreditLimit?: number;
@@ -2310,12 +2317,6 @@ export type OrderDetail = {
2310
2317
  ShipViaDescription?: string | null;
2311
2318
  WarehouseCode?: string | null;
2312
2319
  };
2313
- export type Qualification = {
2314
- ManufacturerId?: string | null;
2315
- QualificationId?: string | null;
2316
- ResellerId?: string | null;
2317
- DefaultOpportunityNumber?: string | null;
2318
- };
2319
2320
  export type Statement = {
2320
2321
  Over0?: number;
2321
2322
  Over30?: number;
@@ -2334,6 +2335,7 @@ export type Reseller = {
2334
2335
  PriceProfile?: number;
2335
2336
  ActiveOrderDetails?: OrderDetail[] | null;
2336
2337
  Qualifications?: Qualification[] | null;
2338
+ Qualification?: Qualification;
2337
2339
  SalesStatistics?: SalesStatistic[] | null;
2338
2340
  SalesData?: SalesData;
2339
2341
  Statement?: Statement;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "randmar-api-client",
3
- "version": "1.14.0",
3
+ "version": "1.15.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",