repzo 1.0.177 → 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.
- package/lib/types/index.d.ts +3 -3
- package/package.json +1 -1
- package/src/types/index.ts +9 -3
package/lib/types/index.d.ts
CHANGED
|
@@ -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
|
|
15935
|
-
command
|
|
15934
|
+
executed?: boolean;
|
|
15935
|
+
command?: Data["command"] | Data["command"][];
|
|
15936
15936
|
}
|
|
15937
15937
|
type PopulatedKeys = "media";
|
|
15938
15938
|
export namespace Find {
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -15977,7 +15977,13 @@ export namespace Service {
|
|
|
15977
15977
|
to_name: string;
|
|
15978
15978
|
} & Pick<
|
|
15979
15979
|
Transfer.Data,
|
|
15980
|
-
|
|
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
|
|
17967
|
-
command
|
|
17972
|
+
executed?: boolean;
|
|
17973
|
+
command?: Data["command"] | Data["command"][];
|
|
17968
17974
|
}
|
|
17969
17975
|
|
|
17970
17976
|
type PopulatedKeys = "media";
|