@ctxindex/profiles 0.1.0 → 0.1.1

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.
@@ -18,9 +18,9 @@ export declare const calendarEventSchema: z.ZodObject<{
18
18
  description: z.ZodOptional<z.ZodString>;
19
19
  location: z.ZodOptional<z.ZodString>;
20
20
  status: z.ZodEnum<{
21
+ cancelled: "cancelled";
21
22
  tentative: "tentative";
22
23
  confirmed: "confirmed";
23
- cancelled: "cancelled";
24
24
  }>;
25
25
  organizer: z.ZodOptional<z.ZodObject<{
26
26
  displayName: z.ZodOptional<z.ZodString>;
@@ -78,9 +78,9 @@ export declare const calendarEventProfile: import("@ctxindex/extension-sdk").Pro
78
78
  description: z.ZodOptional<z.ZodString>;
79
79
  location: z.ZodOptional<z.ZodString>;
80
80
  status: z.ZodEnum<{
81
+ cancelled: "cancelled";
81
82
  tentative: "tentative";
82
83
  confirmed: "confirmed";
83
- cancelled: "cancelled";
84
84
  }>;
85
85
  organizer: z.ZodOptional<z.ZodObject<{
86
86
  displayName: z.ZodOptional<z.ZodString>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctxindex/profiles",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Portable domain Profiles for ctxindex Resources.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://ctxindex.com",
@@ -48,7 +48,7 @@
48
48
  "registry": "https://registry.npmjs.org/"
49
49
  },
50
50
  "dependencies": {
51
- "@ctxindex/extension-sdk": "0.1.0",
51
+ "@ctxindex/extension-sdk": "0.1.1",
52
52
  "zod": "^4.4.3"
53
53
  }
54
54
  }