shoal-web-sdk 0.0.146 → 0.0.147
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/sdk/types.gen.d.ts +4 -0
- package/dist/sdk/zod.gen.d.ts +2 -0
- package/dist/sdk/zod.gen.js +2 -1
- package/package.json +1 -1
package/dist/sdk/types.gen.d.ts
CHANGED
package/dist/sdk/zod.gen.d.ts
CHANGED
|
@@ -135,6 +135,7 @@ export declare const zOnboardingAnalytics: z.ZodObject<{
|
|
|
135
135
|
occupation: z.ZodOptional<z.ZodString>;
|
|
136
136
|
companySize: z.ZodOptional<z.ZodString>;
|
|
137
137
|
referralSource: z.ZodOptional<z.ZodString>;
|
|
138
|
+
whatToBuild: z.ZodOptional<z.ZodString>;
|
|
138
139
|
}, z.core.$strip>;
|
|
139
140
|
export declare const zSpaceOrgCodeResponse: z.ZodObject<{
|
|
140
141
|
orgCode: z.ZodString;
|
|
@@ -1918,6 +1919,7 @@ export declare const zRecordOnboardingAnalyticsData: z.ZodObject<{
|
|
|
1918
1919
|
occupation: z.ZodOptional<z.ZodString>;
|
|
1919
1920
|
companySize: z.ZodOptional<z.ZodString>;
|
|
1920
1921
|
referralSource: z.ZodOptional<z.ZodString>;
|
|
1922
|
+
whatToBuild: z.ZodOptional<z.ZodString>;
|
|
1921
1923
|
}, z.core.$strip>;
|
|
1922
1924
|
path: z.ZodOptional<z.ZodNever>;
|
|
1923
1925
|
query: z.ZodOptional<z.ZodNever>;
|
package/dist/sdk/zod.gen.js
CHANGED
|
@@ -97,7 +97,8 @@ export const zCreateEnvironment = z.object({
|
|
|
97
97
|
export const zOnboardingAnalytics = z.object({
|
|
98
98
|
occupation: z.optional(z.string()),
|
|
99
99
|
companySize: z.optional(z.string()),
|
|
100
|
-
referralSource: z.optional(z.string())
|
|
100
|
+
referralSource: z.optional(z.string()),
|
|
101
|
+
whatToBuild: z.optional(z.string())
|
|
101
102
|
});
|
|
102
103
|
export const zSpaceOrgCodeResponse = z.object({
|
|
103
104
|
orgCode: z.string()
|