repzo 1.0.176 → 1.0.178

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.
@@ -14746,7 +14746,7 @@ export declare namespace Service {
14746
14746
  activity_type: "transfer";
14747
14747
  from_name: string;
14748
14748
  to_name: string;
14749
- } & Pick<Transfer.Data, "type" | "serial_number" | "from" | "to" | "items_count" | "comment">;
14749
+ } & Pick<Transfer.Data, "type" | "serial_number" | "from" | "to" | "items_count" | "comment" | "status">;
14750
14750
  export type ReceivingMaterialDetails = {
14751
14751
  activity_type: "receiving-material";
14752
14752
  to_name: string;
@@ -15931,8 +15931,8 @@ export declare namespace Service {
15931
15931
  updatedAt?: Date;
15932
15932
  }
15933
15933
  export interface PatchBody {
15934
- executed: boolean;
15935
- command: Data["command"] | Data["command"][];
15934
+ executed?: boolean;
15935
+ command?: Data["command"] | Data["command"][];
15936
15936
  }
15937
15937
  type PopulatedKeys = "media";
15938
15938
  export namespace Find {
@@ -16151,7 +16151,7 @@ export declare namespace Service {
16151
16151
  type AccumulatorOperator = "sum" | "count" | "avg" | "max" | "min" | "first" | "last" | "addToSet" | "push";
16152
16152
  type AccumulatorLabel = "Sum" | "Count" | "Average" | "Max" | "Min" | "First" | "Last" | "Unique" | "ALL";
16153
16153
  interface Accumulator {
16154
- value: AccumulatorOperator;
16154
+ operator: AccumulatorOperator;
16155
16155
  label?: AccumulatorLabel;
16156
16156
  }
16157
16157
  interface Field {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.176",
3
+ "version": "1.0.178",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -15977,7 +15977,13 @@ export namespace Service {
15977
15977
  to_name: string;
15978
15978
  } & Pick<
15979
15979
  Transfer.Data,
15980
- "type" | "serial_number" | "from" | "to" | "items_count" | "comment"
15980
+ | "type"
15981
+ | "serial_number"
15982
+ | "from"
15983
+ | "to"
15984
+ | "items_count"
15985
+ | "comment"
15986
+ | "status"
15981
15987
  >;
15982
15988
 
15983
15989
  // ReceivingMaterial ********************************************************************
@@ -17963,8 +17969,8 @@ export namespace Service {
17963
17969
  updatedAt?: Date;
17964
17970
  }
17965
17971
  export interface PatchBody {
17966
- executed: boolean;
17967
- command: Data["command"] | Data["command"][];
17972
+ executed?: boolean;
17973
+ command?: Data["command"] | Data["command"][];
17968
17974
  }
17969
17975
 
17970
17976
  type PopulatedKeys = "media";
@@ -18232,7 +18238,7 @@ export namespace Service {
18232
18238
  | "ALL";
18233
18239
 
18234
18240
  export interface Accumulator {
18235
- value: AccumulatorOperator;
18241
+ operator: AccumulatorOperator;
18236
18242
  label?: AccumulatorLabel;
18237
18243
  }
18238
18244