@the-inkwell/shared 0.2.131 → 0.2.132

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,8 +1,8 @@
1
1
  import { z } from 'zod/v4';
2
- export declare const AdminFileParamsSchema: z.ZodObject<{
2
+ export declare const AdminFileSignedQueryParamsSchema: z.ZodObject<{
3
3
  name: z.ZodString;
4
4
  }, z.core.$strip>;
5
- export type AdminFileParams = z.infer<typeof AdminFileParamsSchema>;
5
+ export type AdminFileSignedQueryParams = z.infer<typeof AdminFileSignedQueryParamsSchema>;
6
6
  export type AdminFileUploadResult = {
7
7
  uri: string;
8
8
  };
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AdminFileParamsSchema = void 0;
3
+ exports.AdminFileSignedQueryParamsSchema = void 0;
4
4
  const v4_1 = require("zod/v4");
5
- exports.AdminFileParamsSchema = v4_1.z.object({
5
+ exports.AdminFileSignedQueryParamsSchema = v4_1.z.object({
6
6
  name: v4_1.z.string()
7
7
  });
8
8
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/schema/admin/files/index.ts"],"names":[],"mappings":";;;AAAA,+BAA0B;AAEb,QAAA,qBAAqB,GAAG,MAAC,CAAC,MAAM,CAAC;IAC5C,IAAI,EAAE,MAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAA","sourcesContent":["import { z } from 'zod/v4'\n\nexport const AdminFileParamsSchema = z.object({\n name: z.string()\n})\n\nexport type AdminFileParams = z.infer<typeof AdminFileParamsSchema>\nexport type AdminFileUploadResult = {\n uri: string\n}\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/schema/admin/files/index.ts"],"names":[],"mappings":";;;AAAA,+BAA0B;AAEb,QAAA,gCAAgC,GAAG,MAAC,CAAC,MAAM,CAAC;IACvD,IAAI,EAAE,MAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAA","sourcesContent":["import { z } from 'zod/v4'\n\nexport const AdminFileSignedQueryParamsSchema = z.object({\n name: z.string()\n})\n\nexport type AdminFileSignedQueryParams = z.infer<\n typeof AdminFileSignedQueryParamsSchema\n>\nexport type AdminFileUploadResult = {\n uri: string\n}\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-inkwell/shared",
3
- "version": "0.2.131",
3
+ "version": "0.2.132",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin & Saimon Alam)",