@purpleschool/gptbot 0.14.64-stage2 → 0.14.65-stage2
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/build/commands/tools/photo-session/admin/index.d.ts +1 -0
- package/build/commands/tools/photo-session/admin/index.js +1 -0
- package/build/commands/tools/photo-session/admin/list-photo-session-styles.command.d.ts +8 -0
- package/build/commands/tools/photo-session/admin/list-photo-session-styles.command.js +11 -0
- package/package.json +1 -1
|
@@ -17,3 +17,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./create-photo-session-style.command"), exports);
|
|
18
18
|
__exportStar(require("./update-photo-session-style.command"), exports);
|
|
19
19
|
__exportStar(require("./delete-photo-session-style.command"), exports);
|
|
20
|
+
__exportStar(require("./list-photo-session-styles.command"), exports);
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare namespace ListPhotoSessionStylesCommand {
|
|
3
|
+
const RequestQuerySchema: z.ZodObject<{
|
|
4
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5
|
+
offset: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
type RequestQuery = z.infer<typeof RequestQuerySchema>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListPhotoSessionStylesCommand = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
var ListPhotoSessionStylesCommand;
|
|
6
|
+
(function (ListPhotoSessionStylesCommand) {
|
|
7
|
+
ListPhotoSessionStylesCommand.RequestQuerySchema = zod_1.z.object({
|
|
8
|
+
limit: zod_1.z.coerce.number().int().min(1).max(50).optional(),
|
|
9
|
+
offset: zod_1.z.coerce.number().int().min(0).optional(),
|
|
10
|
+
});
|
|
11
|
+
})(ListPhotoSessionStylesCommand || (exports.ListPhotoSessionStylesCommand = ListPhotoSessionStylesCommand = {}));
|