@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
|
}>;
|