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.
@@ -88,6 +88,10 @@ export type OnboardingAnalytics = {
88
88
  * How the user heard about Shoal.
89
89
  */
90
90
  referralSource?: string;
91
+ /**
92
+ * What the user plans to build with Shoal.
93
+ */
94
+ whatToBuild?: string;
91
95
  };
92
96
  export type SpaceOverview = {
93
97
  id: string;
@@ -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>;
@@ -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()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "0.0.146",
3
+ "version": "0.0.147",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",