@cntrl-site/sdk 1.26.4 → 1.26.5

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.
@@ -158,6 +158,7 @@ export declare const ProjectSchema: z.ZodObject<{
158
158
  google: string;
159
159
  adobe: string;
160
160
  }>;
161
+ primaryDomain: z.ZodOptional<z.ZodNullable<z.ZodString>>;
161
162
  }, "strip", z.ZodTypeAny, {
162
163
  html: {
163
164
  head: string;
@@ -204,6 +205,7 @@ export declare const ProjectSchema: z.ZodObject<{
204
205
  google: string;
205
206
  adobe: string;
206
207
  };
208
+ primaryDomain?: string | null | undefined;
207
209
  }, {
208
210
  html: {
209
211
  head: string;
@@ -250,4 +252,5 @@ export declare const ProjectSchema: z.ZodObject<{
250
252
  google: string;
251
253
  adobe: string;
252
254
  };
255
+ primaryDomain?: string | null | undefined;
253
256
  }>;
@@ -44,5 +44,6 @@ exports.ProjectSchema = zod_1.z.object({
44
44
  url: zod_1.z.string()
45
45
  }))
46
46
  }))
47
- })
47
+ }),
48
+ primaryDomain: zod_1.z.string().nullable().optional()
48
49
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cntrl-site/sdk",
3
- "version": "1.26.4",
3
+ "version": "1.26.5",
4
4
  "description": "Generic SDK for use in public websites.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",