@hexclave/shared 1.0.8 → 1.0.9

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.
@@ -8,14 +8,14 @@ declare const currentUserCrud: CrudSchemaFromOptions<{
8
8
  type: "anonymous" | "email_not_verified" | "restricted_by_administrator";
9
9
  } | null;
10
10
  primary_email: string | null;
11
- selected_team_id: string | null;
12
- is_anonymous: boolean;
13
- is_restricted: boolean;
14
- requires_totp_mfa: boolean;
15
11
  display_name: string | null;
16
12
  client_metadata: {} | null;
17
13
  client_read_only_metadata: {} | null;
18
14
  id: string;
15
+ selected_team_id: string | null;
16
+ is_anonymous: boolean;
17
+ is_restricted: boolean;
18
+ requires_totp_mfa: boolean;
19
19
  profile_image_url: string | null;
20
20
  signed_up_at_millis: number;
21
21
  primary_email_verified: boolean;
@@ -173,9 +173,9 @@ declare const currentUserCrud: CrudSchemaFromOptions<{
173
173
  }, "">;
174
174
  clientUpdateSchema: yup$1.ObjectSchema<{
175
175
  primary_email: string | null | undefined;
176
- selected_team_id: string | null | undefined;
177
176
  display_name: string | null | undefined;
178
177
  client_metadata: {} | null | undefined;
178
+ selected_team_id: string | null | undefined;
179
179
  profile_image_url: string | null | undefined;
180
180
  otp_auth_enabled: boolean | undefined;
181
181
  passkey_auth_enabled: boolean | undefined;
@@ -24,15 +24,15 @@ declare const teamMemberProfilesCrudServerReadSchema: yup$1.ObjectSchema<{
24
24
  type: "anonymous" | "email_not_verified" | "restricted_by_administrator";
25
25
  } | null;
26
26
  primary_email: string | null;
27
- selected_team_id: string | null;
28
- is_anonymous: boolean;
29
- is_restricted: boolean;
30
- requires_totp_mfa: boolean;
31
27
  display_name: string | null;
32
28
  client_metadata: {} | null;
33
29
  client_read_only_metadata: {} | null;
34
30
  server_metadata: {} | null;
35
31
  id: string;
32
+ selected_team_id: string | null;
33
+ is_anonymous: boolean;
34
+ is_restricted: boolean;
35
+ requires_totp_mfa: boolean;
36
36
  country_code: string | null;
37
37
  profile_image_url: string | null;
38
38
  signed_up_at_millis: number;
@@ -147,15 +147,15 @@ declare const teamMemberProfilesCrud: CrudSchemaFromOptions<{
147
147
  type: "anonymous" | "email_not_verified" | "restricted_by_administrator";
148
148
  } | null;
149
149
  primary_email: string | null;
150
- selected_team_id: string | null;
151
- is_anonymous: boolean;
152
- is_restricted: boolean;
153
- requires_totp_mfa: boolean;
154
150
  display_name: string | null;
155
151
  client_metadata: {} | null;
156
152
  client_read_only_metadata: {} | null;
157
153
  server_metadata: {} | null;
158
154
  id: string;
155
+ selected_team_id: string | null;
156
+ is_anonymous: boolean;
157
+ is_restricted: boolean;
158
+ requires_totp_mfa: boolean;
159
159
  country_code: string | null;
160
160
  profile_image_url: string | null;
161
161
  signed_up_at_millis: number;
@@ -163,11 +163,11 @@ declare const usersCrudServerReadSchema: yup$1.ObjectSchema<{
163
163
  }, "">;
164
164
  declare const usersCrudServerCreateSchema: yup$1.ObjectSchema<{
165
165
  primary_email: string | null | undefined;
166
- is_anonymous: boolean | undefined;
167
166
  display_name: string | null | undefined;
168
167
  client_metadata: {} | null | undefined;
169
168
  client_read_only_metadata: {} | null | undefined;
170
169
  server_metadata: {} | null | undefined;
170
+ is_anonymous: boolean | undefined;
171
171
  password: string | null | undefined;
172
172
  country_code: string | null | undefined;
173
173
  profile_image_url: string | null | undefined;
@@ -369,11 +369,11 @@ declare const usersCrud: CrudSchemaFromOptions<{
369
369
  }, "">;
370
370
  serverCreateSchema: yup$1.ObjectSchema<{
371
371
  primary_email: string | null | undefined;
372
- is_anonymous: boolean | undefined;
373
372
  display_name: string | null | undefined;
374
373
  client_metadata: {} | null | undefined;
375
374
  client_read_only_metadata: {} | null | undefined;
376
375
  server_metadata: {} | null | undefined;
376
+ is_anonymous: boolean | undefined;
377
377
  password: string | null | undefined;
378
378
  country_code: string | null | undefined;
379
379
  profile_image_url: string | null | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hexclave/shared",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "repository": "https://github.com/hexclave/hexclave",
5
5
  "files": [
6
6
  "README.md",
@@ -744,6 +744,8 @@ export function getSdkSetupPrompt(mainType: "ai-prompt" | "nextjs" | "react" | "
744
744
  }
745
745
  }
746
746
  \`\`\`
747
+
748
+ \`hexclave dev\` injects all necessary environment variables into the app process automatically, so the app is ready to use without any extra environment variable setup.
747
749
  </Accordion>
748
750
 
749
751
  <Accordion title="Option 2: Connecting to a production project hosted in the cloud">