@s-hirano-ist/s-core 1.7.0 → 1.8.0

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.
@@ -15,7 +15,7 @@ import { UserId } from "../../common/entities/common-entity.js";
15
15
  *
16
16
  * @see {@link makePath} for factory function
17
17
  */
18
- export declare const Path: z.z.core.$ZodBranded<z.ZodString, "Path">;
18
+ export declare const Path: z.z.core.$ZodBranded<z.ZodString, "Path", "out">;
19
19
  /**
20
20
  * Branded type for validated image paths.
21
21
  */
@@ -58,7 +58,7 @@ export declare const ContentType: z.z.core.$ZodBranded<z.ZodEnum<{
58
58
  "image/gif": "image/gif";
59
59
  jpeg: "jpeg";
60
60
  png: "png";
61
- }>, "ContentType">;
61
+ }>, "ContentType", "out">;
62
62
  /**
63
63
  * Branded type for validated content types.
64
64
  */
@@ -89,7 +89,7 @@ export declare const makeContentType: (v: string) => ContentType;
89
89
  *
90
90
  * @see {@link makeFileSize} for factory function
91
91
  */
92
- export declare const FileSize: z.z.core.$ZodBranded<z.ZodNumber, "FileSize">;
92
+ export declare const FileSize: z.z.core.$ZodBranded<z.ZodNumber, "FileSize", "out">;
93
93
  /**
94
94
  * Branded type for validated file sizes.
95
95
  */
@@ -116,7 +116,7 @@ export declare const makeFileSize: (v: number) => FileSize;
116
116
  *
117
117
  * @see {@link makePixel} for factory function
118
118
  */
119
- export declare const Pixel: z.z.core.$ZodBranded<z.ZodOptional<z.ZodNumber>, "Pixel">;
119
+ export declare const Pixel: z.z.core.$ZodBranded<z.ZodOptional<z.ZodNumber>, "Pixel", "out">;
120
120
  /**
121
121
  * Branded type for validated pixel dimensions.
122
122
  */
@@ -137,7 +137,7 @@ export declare const makePixel: (v: number) => Pixel;
137
137
  *
138
138
  * @see {@link makeTag} for factory function
139
139
  */
140
- export declare const Tag: z.z.core.$ZodBranded<z.ZodString, "Tag">;
140
+ export declare const Tag: z.z.core.$ZodBranded<z.ZodString, "Tag", "out">;
141
141
  /**
142
142
  * Branded type for validated tags.
143
143
  */
@@ -158,7 +158,7 @@ export declare const makeTag: (v: string) => Tag;
158
158
  *
159
159
  * @see {@link makeDescription} for factory function
160
160
  */
161
- export declare const Description: z.z.core.$ZodBranded<z.ZodOptional<z.ZodString>, "Description">;
161
+ export declare const Description: z.z.core.$ZodBranded<z.ZodOptional<z.ZodString>, "Description", "out">;
162
162
  /**
163
163
  * Branded type for validated descriptions.
164
164
  */
@@ -239,22 +239,22 @@ export declare const makeMetadata: (buffer: Buffer) => Promise<sharp.Metadata>;
239
239
  * @see {@link ExportedImage} for the published state
240
240
  */
241
241
  export declare const UnexportedImage: z.ZodObject<{
242
- id: z.z.core.$ZodBranded<z.ZodDefault<z.ZodUUID>, "Id">;
243
- userId: z.z.core.$ZodBranded<z.ZodString, "UserId">;
244
- path: z.z.core.$ZodBranded<z.ZodString, "Path">;
242
+ id: z.z.core.$ZodBranded<z.ZodDefault<z.ZodUUID>, "Id", "out">;
243
+ userId: z.z.core.$ZodBranded<z.ZodString, "UserId", "out">;
244
+ path: z.z.core.$ZodBranded<z.ZodString, "Path", "out">;
245
245
  contentType: z.z.core.$ZodBranded<z.ZodEnum<{
246
246
  "image/jpeg": "image/jpeg";
247
247
  "image/png": "image/png";
248
248
  "image/gif": "image/gif";
249
249
  jpeg: "jpeg";
250
250
  png: "png";
251
- }>, "ContentType">;
252
- fileSize: z.z.core.$ZodBranded<z.ZodNumber, "FileSize">;
253
- width: z.z.core.$ZodBranded<z.ZodOptional<z.ZodNumber>, "Pixel">;
254
- height: z.z.core.$ZodBranded<z.ZodOptional<z.ZodNumber>, "Pixel">;
255
- tags: z.ZodOptional<z.ZodArray<z.z.core.$ZodBranded<z.ZodString, "Tag">>>;
256
- description: z.z.core.$ZodBranded<z.ZodOptional<z.ZodString>, "Description">;
257
- createdAt: z.z.core.$ZodBranded<z.ZodDate, "CreatedAt">;
251
+ }>, "ContentType", "out">;
252
+ fileSize: z.z.core.$ZodBranded<z.ZodNumber, "FileSize", "out">;
253
+ width: z.z.core.$ZodBranded<z.ZodOptional<z.ZodNumber>, "Pixel", "out">;
254
+ height: z.z.core.$ZodBranded<z.ZodOptional<z.ZodNumber>, "Pixel", "out">;
255
+ tags: z.ZodOptional<z.ZodArray<z.z.core.$ZodBranded<z.ZodString, "Tag", "out">>>;
256
+ description: z.z.core.$ZodBranded<z.ZodOptional<z.ZodString>, "Description", "out">;
257
+ createdAt: z.z.core.$ZodBranded<z.ZodDate, "CreatedAt", "out">;
258
258
  status: z.ZodLiteral<"UNEXPORTED">;
259
259
  }, z.z.core.$strip>;
260
260
  /**
@@ -274,24 +274,24 @@ export type UnexportedImage = Readonly<z.infer<typeof UnexportedImage>>;
274
274
  * @see {@link UnexportedImage} for the initial state
275
275
  */
276
276
  export declare const ExportedImage: z.ZodObject<{
277
- id: z.z.core.$ZodBranded<z.ZodDefault<z.ZodUUID>, "Id">;
278
- userId: z.z.core.$ZodBranded<z.ZodString, "UserId">;
279
- path: z.z.core.$ZodBranded<z.ZodString, "Path">;
277
+ id: z.z.core.$ZodBranded<z.ZodDefault<z.ZodUUID>, "Id", "out">;
278
+ userId: z.z.core.$ZodBranded<z.ZodString, "UserId", "out">;
279
+ path: z.z.core.$ZodBranded<z.ZodString, "Path", "out">;
280
280
  contentType: z.z.core.$ZodBranded<z.ZodEnum<{
281
281
  "image/jpeg": "image/jpeg";
282
282
  "image/png": "image/png";
283
283
  "image/gif": "image/gif";
284
284
  jpeg: "jpeg";
285
285
  png: "png";
286
- }>, "ContentType">;
287
- fileSize: z.z.core.$ZodBranded<z.ZodNumber, "FileSize">;
288
- width: z.z.core.$ZodBranded<z.ZodOptional<z.ZodNumber>, "Pixel">;
289
- height: z.z.core.$ZodBranded<z.ZodOptional<z.ZodNumber>, "Pixel">;
290
- tags: z.ZodOptional<z.ZodArray<z.z.core.$ZodBranded<z.ZodString, "Tag">>>;
291
- description: z.z.core.$ZodBranded<z.ZodOptional<z.ZodString>, "Description">;
292
- createdAt: z.z.core.$ZodBranded<z.ZodDate, "CreatedAt">;
286
+ }>, "ContentType", "out">;
287
+ fileSize: z.z.core.$ZodBranded<z.ZodNumber, "FileSize", "out">;
288
+ width: z.z.core.$ZodBranded<z.ZodOptional<z.ZodNumber>, "Pixel", "out">;
289
+ height: z.z.core.$ZodBranded<z.ZodOptional<z.ZodNumber>, "Pixel", "out">;
290
+ tags: z.ZodOptional<z.ZodArray<z.z.core.$ZodBranded<z.ZodString, "Tag", "out">>>;
291
+ description: z.z.core.$ZodBranded<z.ZodOptional<z.ZodString>, "Description", "out">;
292
+ createdAt: z.z.core.$ZodBranded<z.ZodDate, "CreatedAt", "out">;
293
293
  status: z.ZodLiteral<"EXPORTED">;
294
- exportedAt: z.z.core.$ZodBranded<z.ZodDate, "ExportedAt">;
294
+ exportedAt: z.z.core.$ZodBranded<z.ZodDate, "ExportedAt", "out">;
295
295
  }, z.z.core.$strip>;
296
296
  /**
297
297
  * Type for an exported image entity.
@@ -1 +1 @@
1
- {"version":3,"file":"image-entity.d.ts","sourceRoot":"","sources":["../../../images/entities/image-entity.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"image-entity.d.ts","sourceRoot":"","sources":["../../../images/entities/image-entity.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAQN,MAAM,EACN,MAAM,wCAAwC,CAAC;AAkBhD;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,IAAI,kDAAoC,CAAC;AAEtD;;GAEG;AACH,MAAM,MAAM,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC;AAExC;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,QAAQ,GAAI,GAAG,MAAM,EAAE,mBAAmB,OAAO,KAAG,IAOhE,CAAC;AAEF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,WAAW;;;;;;yBAEA,CAAC;AAEzB;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,eAAe,GAAI,GAAG,MAAM,KAAG,WAAmC,CAAC;AAEhF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,QAAQ,sDAKA,CAAC;AAEtB;;GAEG;AACH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC,CAAC;AAEhD;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,YAAY,GAAI,GAAG,MAAM,KAAG,QAA6B,CAAC;AAEvE;;;;;;;;GAQG;AACH,eAAO,MAAM,KAAK,kEAA0D,CAAC;AAE7E;;GAEG;AACH,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,KAAK,CAAC,CAAC;AAE1C;;;;;;GAMG;AACH,eAAO,MAAM,SAAS,GAAI,GAAG,MAAM,KAAG,KAAuB,CAAC;AAE9D;;;;;;;GAOG;AACH,eAAO,MAAM,GAAG,iDAAmC,CAAC;AAEpD;;GAEG;AACH,MAAM,MAAM,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,GAAG,CAAC,CAAC;AAEtC;;;;;;GAMG;AACH,eAAO,MAAM,OAAO,GAAI,GAAG,MAAM,KAAG,GAAmB,CAAC;AAExD;;;;;;;GAOG;AACH,eAAO,MAAM,WAAW,wEAAsD,CAAC;AAE/E;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD;;;;;;GAMG;AACH,eAAO,MAAM,eAAe,GAAI,GAAG,MAAM,KAAG,WAAmC,CAAC;AAEhF;;;;;;;;;;GAUG;AACH,eAAO,MAAM,kBAAkB,GAAU,MAAM,IAAI,iCAElD,CAAC;AAEF;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,2BAA2B,GAAU,MAAM,IAAI,qCAK3D,CAAC;AAEF;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,6BAA6B,GAAU,QAAQ,MAAM,qCAIjE,CAAC;AAEF;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,YAAY,GAAU,QAAQ,MAAM,4BAEhD,CAAC;AAsBF;;;;;;;;GAQG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;mBAA4C,CAAC;AAEzE;;;;;GAKG;AACH,MAAM,MAAM,eAAe,GAAG,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC,CAAC;AAExE;;;;;;;;GAQG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;mBAAoC,CAAC;AAE/D;;;;;GAKG;AACH,MAAM,MAAM,aAAa,GAAG,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC,CAAC;AAEpE;;;;;;;;;;;;;;;;;;GAkBG;AACH,MAAM,MAAM,eAAe,GAAG,QAAQ,CAAC;IACtC,kCAAkC;IAClC,MAAM,EAAE,MAAM,CAAC;IACf,qCAAqC;IACrC,IAAI,EAAE,IAAI,CAAC;IACX,iCAAiC;IACjC,WAAW,EAAE,WAAW,CAAC;IACzB,6BAA6B;IAC7B,QAAQ,EAAE,QAAQ,CAAC;IACnB,+BAA+B;IAC/B,KAAK,CAAC,EAAE,KAAK,CAAC;IACd,gCAAgC;IAChC,MAAM,CAAC,EAAE,KAAK,CAAC;IACf,qCAAqC;IACrC,IAAI,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;IAClB,2BAA2B;IAC3B,WAAW,CAAC,EAAE,WAAW,CAAC;CAC1B,CAAC,CAAC;AAEH;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,eAAO,MAAM,WAAW;IACvB;;;;;;;OAOG;mBACY,eAAe,KAAG,eAAe;IAWhD;;;;;;;OAOG;oBACa,eAAe,KAAG,aAAa;CAS/C,CAAC"}
@@ -13,7 +13,7 @@ import { UserId } from "../../common/entities/common-entity.js";
13
13
  *
14
14
  * @see {@link makeNoteTitle} for factory function
15
15
  */
16
- export declare const NoteTitle: z.core.$ZodBranded<z.ZodString, "NoteTitle">;
16
+ export declare const NoteTitle: z.core.$ZodBranded<z.ZodString, "NoteTitle", "out">;
17
17
  /**
18
18
  * Branded type for validated note titles.
19
19
  */
@@ -45,7 +45,7 @@ export declare const makeNoteTitle: (v: string) => NoteTitle;
45
45
  *
46
46
  * @see {@link makeMarkdown} for factory function
47
47
  */
48
- export declare const Markdown: z.core.$ZodBranded<z.ZodString, "Markdown">;
48
+ export declare const Markdown: z.core.$ZodBranded<z.ZodString, "Markdown", "out">;
49
49
  /**
50
50
  * Branded type for validated markdown content.
51
51
  */
@@ -73,11 +73,11 @@ export declare const makeMarkdown: (v: string) => Markdown;
73
73
  * @see {@link ExportedNote} for the published state
74
74
  */
75
75
  export declare const UnexportedNote: z.ZodObject<{
76
- id: z.core.$ZodBranded<z.ZodDefault<z.ZodUUID>, "Id">;
77
- userId: z.core.$ZodBranded<z.ZodString, "UserId">;
78
- title: z.core.$ZodBranded<z.ZodString, "NoteTitle">;
79
- markdown: z.core.$ZodBranded<z.ZodString, "Markdown">;
80
- createdAt: z.core.$ZodBranded<z.ZodDate, "CreatedAt">;
76
+ id: z.core.$ZodBranded<z.ZodDefault<z.ZodUUID>, "Id", "out">;
77
+ userId: z.core.$ZodBranded<z.ZodString, "UserId", "out">;
78
+ title: z.core.$ZodBranded<z.ZodString, "NoteTitle", "out">;
79
+ markdown: z.core.$ZodBranded<z.ZodString, "Markdown", "out">;
80
+ createdAt: z.core.$ZodBranded<z.ZodDate, "CreatedAt", "out">;
81
81
  status: z.ZodLiteral<"UNEXPORTED">;
82
82
  }, z.core.$strip>;
83
83
  /**
@@ -97,13 +97,13 @@ export type UnexportedNote = Readonly<z.infer<typeof UnexportedNote>>;
97
97
  * @see {@link UnexportedNote} for the initial state
98
98
  */
99
99
  export declare const ExportedNote: z.ZodObject<{
100
- id: z.core.$ZodBranded<z.ZodDefault<z.ZodUUID>, "Id">;
101
- userId: z.core.$ZodBranded<z.ZodString, "UserId">;
102
- title: z.core.$ZodBranded<z.ZodString, "NoteTitle">;
103
- markdown: z.core.$ZodBranded<z.ZodString, "Markdown">;
104
- createdAt: z.core.$ZodBranded<z.ZodDate, "CreatedAt">;
100
+ id: z.core.$ZodBranded<z.ZodDefault<z.ZodUUID>, "Id", "out">;
101
+ userId: z.core.$ZodBranded<z.ZodString, "UserId", "out">;
102
+ title: z.core.$ZodBranded<z.ZodString, "NoteTitle", "out">;
103
+ markdown: z.core.$ZodBranded<z.ZodString, "Markdown", "out">;
104
+ createdAt: z.core.$ZodBranded<z.ZodDate, "CreatedAt", "out">;
105
105
  status: z.ZodLiteral<"EXPORTED">;
106
- exportedAt: z.core.$ZodBranded<z.ZodDate, "ExportedAt">;
106
+ exportedAt: z.core.$ZodBranded<z.ZodDate, "ExportedAt", "out">;
107
107
  }, z.core.$strip>;
108
108
  /**
109
109
  * Type for an exported note entity.
@@ -1 +1 @@
1
- {"version":3,"file":"note-entity.d.ts","sourceRoot":"","sources":["../../../notes/entities/note-entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAQN,MAAM,EACN,MAAM,wCAAwC,CAAC;AAKhD;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,SAAS,8CAIA,CAAC;AAEvB;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAElD;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,aAAa,GAAI,GAAG,MAAM,KAAG,SAA+B,CAAC;AAE1E;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,QAAQ,6CAGA,CAAC;AAEtB;;GAEG;AACH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC,CAAC;AAEhD;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,YAAY,GAAI,GAAG,MAAM,KAAG,QAA6B,CAAC;AAiBvE;;;;;;;;GAQG;AACH,eAAO,MAAM,cAAc;;;;;;;iBAA4C,CAAC;AAExE;;;;;GAKG;AACH,MAAM,MAAM,cAAc,GAAG,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC,CAAC;AAEtE;;;;;;;;GAQG;AACH,eAAO,MAAM,YAAY;;;;;;;;iBAAoC,CAAC;AAE9D;;;;;GAKG;AACH,MAAM,MAAM,YAAY,GAAG,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC,CAAC;AAElE;;;;;;;;;;;;;;;GAeG;AACH,MAAM,MAAM,cAAc,GAAG,QAAQ,CAAC;IACrC,iCAAiC;IACjC,MAAM,EAAE,MAAM,CAAC;IACf,qBAAqB;IACrB,KAAK,EAAE,SAAS,CAAC;IACjB,2BAA2B;IAC3B,QAAQ,EAAE,QAAQ,CAAC;CACnB,CAAC,CAAC;AAEH;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,eAAO,MAAM,UAAU;IACtB;;;;;;;OAOG;mBACY,cAAc,KAAG,cAAc;IAW9C;;;;;;;OAOG;mBACY,cAAc,KAAG,YAAY;CAS5C,CAAC"}
1
+ {"version":3,"file":"note-entity.d.ts","sourceRoot":"","sources":["../../../notes/entities/note-entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAQN,MAAM,EACN,MAAM,wCAAwC,CAAC;AAKhD;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,SAAS,qDAIA,CAAC;AAEvB;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAElD;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,aAAa,GAAI,GAAG,MAAM,KAAG,SAA+B,CAAC;AAE1E;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,QAAQ,oDAGA,CAAC;AAEtB;;GAEG;AACH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC,CAAC;AAEhD;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,YAAY,GAAI,GAAG,MAAM,KAAG,QAA6B,CAAC;AAiBvE;;;;;;;;GAQG;AACH,eAAO,MAAM,cAAc;;;;;;;iBAA4C,CAAC;AAExE;;;;;GAKG;AACH,MAAM,MAAM,cAAc,GAAG,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC,CAAC;AAEtE;;;;;;;;GAQG;AACH,eAAO,MAAM,YAAY;;;;;;;;iBAAoC,CAAC;AAE9D;;;;;GAKG;AACH,MAAM,MAAM,YAAY,GAAG,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC,CAAC;AAElE;;;;;;;;;;;;;;;GAeG;AACH,MAAM,MAAM,cAAc,GAAG,QAAQ,CAAC;IACrC,iCAAiC;IACjC,MAAM,EAAE,MAAM,CAAC;IACf,qBAAqB;IACrB,KAAK,EAAE,SAAS,CAAC;IACjB,2BAA2B;IAC3B,QAAQ,EAAE,QAAQ,CAAC;CACnB,CAAC,CAAC;AAEH;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,eAAO,MAAM,UAAU;IACtB;;;;;;;OAOG;mBACY,cAAc,KAAG,cAAc;IAW9C;;;;;;;OAOG;mBACY,cAAc,KAAG,YAAY;CAS5C,CAAC"}