repzo 1.0.95 → 1.0.97

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.95",
3
+ "version": "1.0.97",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",
package/src/index.ts CHANGED
@@ -2718,7 +2718,7 @@ export default class Repzo {
2718
2718
  };
2719
2719
 
2720
2720
  static ActionLogs = class {
2721
- _path: string = "/integration-action-log";
2721
+ _path: string = "integration-action-log";
2722
2722
  available_app_name: string = "";
2723
2723
  available_app_id: StringId = "";
2724
2724
  app_id: StringId = "";
@@ -2842,7 +2842,7 @@ export default class Repzo {
2842
2842
  };
2843
2843
 
2844
2844
  static CommandLog = class {
2845
- _path: string = "/integration-command-log";
2845
+ _path: string = "integration-command-log";
2846
2846
  available_app_name: string;
2847
2847
  available_app_id: StringId;
2848
2848
  app_id: StringId;
@@ -8289,7 +8289,22 @@ export namespace Service {
8289
8289
  receival_warehouse:
8290
8290
  | string
8291
8291
  | Pick<Warehouse.WarehouseSchema, "_id" | "code" | "type" | "name">;
8292
- asset_part: StringId | AssetPart.Data;
8292
+ asset_part:
8293
+ | StringId
8294
+ | (Pick<
8295
+ AssetPart.Data,
8296
+ | "name"
8297
+ | "local_name"
8298
+ | "barcode"
8299
+ | "model"
8300
+ | "asset_part_types"
8301
+ | "media"
8302
+ | "cover_photo"
8303
+ > & {
8304
+ asset_part_types?: AssetPartType.Data[];
8305
+ media?: MediaDoc[];
8306
+ cover_photo?: MediaDoc;
8307
+ });
8293
8308
  asset_part_name: string;
8294
8309
  qty: number;
8295
8310
  custom_status?: