@chainfuse/types 2.10.11 → 2.10.12

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.
@@ -766,8 +766,6 @@ export declare const azureCatalog: readonly [{
766
766
  readonly name: "gpt-4.1-nano";
767
767
  }, {
768
768
  readonly name: "gpt-4o";
769
- readonly inputTokenCost: 0.00000275;
770
- readonly outputTokenCost: 0.000011;
771
769
  }, {
772
770
  readonly name: "gpt-4o-mini";
773
771
  readonly inputTokenCost: 1.65e-7;
@@ -1018,8 +1018,6 @@ export const azureCatalog = [
1018
1018
  },
1019
1019
  {
1020
1020
  name: 'gpt-4o',
1021
- inputTokenCost: 0.00000275,
1022
- outputTokenCost: 0.000011,
1023
1021
  },
1024
1022
  {
1025
1023
  name: 'gpt-4o-mini',
@@ -1,8 +1,19 @@
1
- import { z } from 'zod/v4';
2
1
  export type D0Blob = [number, ...number[]];
3
- export declare const PrefixedUuid: z.ZodPipe<z.ZodString, z.ZodTransform<{
2
+ /**
3
+ * @deprecated
4
+ */
5
+ export declare const PrefixedUuid3: import("zod/v3").ZodEffects<import("zod/v3").ZodString, {
6
+ type: "dataspace" | "tenant" | "user";
7
+ value: string;
8
+ preview: boolean;
9
+ }, string>;
10
+ export declare const PrefixedUuid: import("zod/v4").ZodPipe<import("zod/v4").ZodString, import("zod/v4").ZodTransform<{
4
11
  type: "dataspace" | "tenant" | "user";
5
12
  value: string;
6
13
  preview: boolean;
7
14
  }, string>>;
8
- export declare const ZodUuid: z.ZodUnion<readonly [z.ZodString, z.ZodUUID, z.ZodString, z.ZodBase64, z.ZodBase64URL]>;
15
+ /**
16
+ * @deprecated
17
+ */
18
+ export declare const ZodUuid3: import("zod/v3").ZodUnion<[import("zod/v3").ZodString, import("zod/v3").ZodEffects<import("zod/v3").ZodString, string, string>, import("zod/v3").ZodEffects<import("zod/v3").ZodString, string, string>, import("zod/v3").ZodString, import("zod/v3").ZodString]>;
19
+ export declare const ZodUuid: import("zod/v4").ZodUnion<readonly [import("zod/v4").ZodString, import("zod/v4").ZodUUID, import("zod/v4").ZodString, import("zod/v4").ZodBase64, import("zod/v4").ZodBase64URL]>;
package/dist/d0/index.js CHANGED
@@ -1,11 +1,39 @@
1
- import { z } from 'zod/v4';
2
- const PrefixedUuidRaw = z
1
+ /**
2
+ * @deprecated
3
+ */
4
+ const PrefixedUuidRaw3 = await import('zod/v3').then(({ z }) => z
3
5
  .string()
4
6
  .trim()
5
7
  .toLowerCase()
6
8
  .min(38)
7
9
  .max(40)
8
- .regex(new RegExp(/^((d|t|u)_)?[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[0-9a-f]{4}-[0-9a-f]{12}(_p)?$/i));
10
+ .regex(new RegExp(/^((d|t|u)_)?[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[0-9a-f]{4}-[0-9a-f]{12}(_p)?$/i)));
11
+ const PrefixedUuidRaw = await import('zod/v4').then(({ z }) => z
12
+ .string()
13
+ .trim()
14
+ .toLowerCase()
15
+ .min(38)
16
+ .max(40)
17
+ .regex(new RegExp(/^((d|t|u)_)?[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[0-9a-f]{4}-[0-9a-f]{12}(_p)?$/i)));
18
+ /**
19
+ * @deprecated
20
+ */
21
+ export const PrefixedUuid3 = PrefixedUuidRaw3.transform((value) => {
22
+ let type;
23
+ if (value.startsWith('d_')) {
24
+ type = 'dataspace';
25
+ }
26
+ else if (value.startsWith('t_')) {
27
+ type = 'tenant';
28
+ }
29
+ else if (value.startsWith('u_')) {
30
+ type = 'user';
31
+ }
32
+ else {
33
+ throw new Error('Invalid UUID prefix');
34
+ }
35
+ return { type, value, preview: value.endsWith('_p') };
36
+ });
9
37
  export const PrefixedUuid = PrefixedUuidRaw.transform((value) => {
10
38
  let type;
11
39
  if (value.startsWith('d_')) {
@@ -22,9 +50,31 @@ export const PrefixedUuid = PrefixedUuidRaw.transform((value) => {
22
50
  }
23
51
  return { type, value, preview: value.endsWith('_p') };
24
52
  });
25
- export const ZodUuid = z.union([
53
+ /**
54
+ * @deprecated
55
+ */
56
+ export const ZodUuid3 = await import('zod/v3').then(({ z }) => z.union([
57
+ PrefixedUuidRaw3,
58
+ // utf-8
59
+ z
60
+ .string()
61
+ .trim()
62
+ .toLowerCase()
63
+ .uuid()
64
+ .refine((value) => import('validator/es/lib/isUUID').then(({ default: isUUID }) => isUUID(value, 7)).catch(() => import('validator').then(({ default: validator }) => validator.isUUID(value, 7)))),
65
+ // hex
66
+ z
67
+ .string()
68
+ .trim()
69
+ .toLowerCase()
70
+ .length(32)
71
+ .refine((value) => import('validator/es/lib/isHexadecimal').then(({ default: isHexadecimal }) => isHexadecimal(value)).catch(() => import('validator').then(({ default: validator }) => validator.isHexadecimal(value)))),
72
+ z.string().trim().nonempty().toLowerCase().base64(),
73
+ z.string().trim().nonempty().toLowerCase().base64url(),
74
+ ]));
75
+ export const ZodUuid = await import('zod/v4').then(({ z }) => z.union([
26
76
  PrefixedUuidRaw,
27
- // utf=8
77
+ // utf-8
28
78
  z.uuidv7().trim().toLowerCase(),
29
79
  // hex
30
80
  z
@@ -35,4 +85,4 @@ export const ZodUuid = z.union([
35
85
  .refine((value) => import('validator/es/lib/isHexadecimal').then(({ default: isHexadecimal }) => isHexadecimal(value)).catch(() => import('validator').then(({ default: validator }) => validator.isHexadecimal(value)))),
36
86
  z.base64().trim().nonempty().toLowerCase(),
37
87
  z.base64url().trim().nonempty().toLowerCase(),
38
- ]);
88
+ ]));
package/dist/wf/index.js CHANGED
@@ -7,7 +7,7 @@ export const ZodUuidExportInput = z.union([
7
7
  .min(38)
8
8
  .max(40)
9
9
  .regex(new RegExp(/^((d|t|u)_)?[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}(_p)?$/i)),
10
- // utf=8
10
+ // utf-8
11
11
  z.uuid().trim().toLowerCase(),
12
12
  // hex
13
13
  z
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chainfuse/types",
3
- "version": "2.10.11",
3
+ "version": "2.10.12",
4
4
  "description": "",
5
5
  "author": "ChainFuse",
6
6
  "homepage": "https://github.com/ChainFuse/packages/tree/main/packages/types#readme",
@@ -99,11 +99,11 @@
99
99
  "prettier": "@demosjarco/prettier-config",
100
100
  "dependencies": {
101
101
  "validator": "^13.15.0",
102
- "zod": "^3.25.7"
102
+ "zod": "^3.25.20"
103
103
  },
104
104
  "devDependencies": {
105
- "@cloudflare/workers-types": "^4.20250520.0",
106
- "@types/validator": "^13.15.0"
105
+ "@cloudflare/workers-types": "^4.20250521.0",
106
+ "@types/validator": "^13.15.1"
107
107
  },
108
- "gitHead": "3b6b779a75b5742f356f192a0e2e6506d572969d"
108
+ "gitHead": "8219e1206d620aa362f76107d3f7fe21e5c913b1"
109
109
  }