@floristcloud/api-lib 1.0.38 → 1.0.39
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ExportConsignmentContractCommand = void 0;
|
|
3
|
+
exports.ExportConsignmentForUpdateContractQuery = exports.ExportConsignmentContractCommand = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const ExportConsignmentRequestSchema = zod_1.z.object({
|
|
6
6
|
withImage: zod_1.z.coerce.boolean(),
|
|
@@ -16,3 +16,15 @@ var ExportConsignmentContractCommand;
|
|
|
16
16
|
ExportConsignmentContractCommand.RequestSchema = ExportConsignmentRequestSchema;
|
|
17
17
|
ExportConsignmentContractCommand.ResponseSchema = ExportConsignmentResponseSchema;
|
|
18
18
|
})(ExportConsignmentContractCommand || (exports.ExportConsignmentContractCommand = ExportConsignmentContractCommand = {}));
|
|
19
|
+
const ExportConsignmentForUpdateRequestSchema = zod_1.z.object({});
|
|
20
|
+
const ExportConsignmentForUpdateResponseSchema = zod_1.z.object({
|
|
21
|
+
message: zod_1.z.string().optional(),
|
|
22
|
+
data: zod_1.z.object({
|
|
23
|
+
fileUrl: zod_1.z.string(),
|
|
24
|
+
}),
|
|
25
|
+
});
|
|
26
|
+
var ExportConsignmentForUpdateContractQuery;
|
|
27
|
+
(function (ExportConsignmentForUpdateContractQuery) {
|
|
28
|
+
ExportConsignmentForUpdateContractQuery.RequestSchema = ExportConsignmentForUpdateRequestSchema;
|
|
29
|
+
ExportConsignmentForUpdateContractQuery.ResponseSchema = ExportConsignmentForUpdateResponseSchema;
|
|
30
|
+
})(ExportConsignmentForUpdateContractQuery || (exports.ExportConsignmentForUpdateContractQuery = ExportConsignmentForUpdateContractQuery = {}));
|
|
@@ -18,3 +18,20 @@ export namespace ExportConsignmentContractCommand {
|
|
|
18
18
|
export const ResponseSchema = ExportConsignmentResponseSchema;
|
|
19
19
|
export type Response = z.infer<typeof ResponseSchema>;
|
|
20
20
|
}
|
|
21
|
+
|
|
22
|
+
const ExportConsignmentForUpdateRequestSchema = z.object({});
|
|
23
|
+
|
|
24
|
+
const ExportConsignmentForUpdateResponseSchema = z.object({
|
|
25
|
+
message: z.string().optional(),
|
|
26
|
+
data: z.object({
|
|
27
|
+
fileUrl: z.string(),
|
|
28
|
+
}),
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
export namespace ExportConsignmentForUpdateContractQuery {
|
|
32
|
+
export const RequestSchema = ExportConsignmentForUpdateRequestSchema;
|
|
33
|
+
export type Request = z.infer<typeof RequestSchema>;
|
|
34
|
+
|
|
35
|
+
export const ResponseSchema = ExportConsignmentForUpdateResponseSchema;
|
|
36
|
+
export type Response = z.infer<typeof ResponseSchema>;
|
|
37
|
+
}
|