@transloadit/zod 4.1.4 → 4.1.6
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/dist/v3/assemblyReplay.d.ts +1373 -1373
- package/dist/v3/assemblyReplayNotification.d.ts +1373 -1373
- package/dist/v3/assemblyStatus.d.ts +40 -4
- package/dist/v3/assemblyStatus.d.ts.map +1 -1
- package/dist/v3/assemblyStatus.js +59 -1
- package/dist/v3/robots/_index.d.ts +5223 -5223
- package/dist/v3/robots/meta-write.d.ts +114 -114
- package/dist/v3/template.d.ts +12401 -12401
- package/dist/v3/templateCredential.d.ts +2 -2
- package/dist/v4/assemblyStatus.d.ts +48 -8
- package/dist/v4/assemblyStatus.d.ts.map +1 -1
- package/dist/v4/assemblyStatus.js +59 -1
- package/dist/v4/robots/_index.d.ts +595 -595
- package/dist/v4/robots/meta-write.d.ts +8 -8
- package/dist/v4/template.d.ts +768 -768
- package/dist/v4/templateCredential.d.ts +3 -3
- package/package.json +7 -1
|
@@ -20,11 +20,12 @@ export declare const templateCredentialsSchema: z.ZodObject<{
|
|
|
20
20
|
}, z.core.$strip>;
|
|
21
21
|
name: z.ZodString;
|
|
22
22
|
type: z.ZodEnum<{
|
|
23
|
-
ai: "ai";
|
|
24
23
|
http: "http";
|
|
24
|
+
cloudflare: "cloudflare";
|
|
25
|
+
ai: "ai";
|
|
26
|
+
vimeo: "vimeo";
|
|
25
27
|
azure: "azure";
|
|
26
28
|
backblaze: "backblaze";
|
|
27
|
-
cloudflare: "cloudflare";
|
|
28
29
|
companion: "companion";
|
|
29
30
|
digitalocean: "digitalocean";
|
|
30
31
|
dropbox: "dropbox";
|
|
@@ -37,7 +38,6 @@ export declare const templateCredentialsSchema: z.ZodObject<{
|
|
|
37
38
|
supabase: "supabase";
|
|
38
39
|
swift: "swift";
|
|
39
40
|
tigris: "tigris";
|
|
40
|
-
vimeo: "vimeo";
|
|
41
41
|
wasabi: "wasabi";
|
|
42
42
|
youtube: "youtube";
|
|
43
43
|
}>;
|
package/package.json
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@transloadit/zod",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.6",
|
|
4
4
|
"description": "Transloadit Zod schemas",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/transloadit/node-sdk",
|
|
10
|
+
"directory": "packages/zod"
|
|
11
|
+
},
|
|
7
12
|
"files": [
|
|
8
13
|
"dist",
|
|
9
14
|
"README.md"
|
|
@@ -38,6 +43,7 @@
|
|
|
38
43
|
"test:types": "yarn sync && ../../node_modules/.bin/tsc --noEmit --project tsconfig.test.json",
|
|
39
44
|
"test:unit": "yarn sync && node test/scripts-config.test.ts && node test/patch-ai-chat-schema.test.ts && node test/exports-sync.test.ts && node test/runtime-parity.test.ts",
|
|
40
45
|
"build": "yarn sync && ../../node_modules/.bin/tsc --build tsconfig.build.json",
|
|
46
|
+
"prepack": "yarn build",
|
|
41
47
|
"check": "yarn sync && ../../node_modules/.bin/tsc --build tsconfig.build.json && ../../node_modules/.bin/tsc --noEmit --project tsconfig.test.json && yarn test:unit"
|
|
42
48
|
},
|
|
43
49
|
"dependencies": {
|