@stackframe/stack-shared 2.8.61 → 2.8.62

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.
@@ -82,10 +82,10 @@ declare const userApiKeysCreateInputSchema: yup.ObjectSchema<{
82
82
  }, "">;
83
83
  declare const userApiKeysCreateOutputSchema: yup.ObjectSchema<{
84
84
  type: "user";
85
+ description: string;
85
86
  user_id: string;
86
87
  id: string;
87
88
  created_at_millis: number;
88
- description: string;
89
89
  expires_at_millis: number | undefined;
90
90
  manually_revoked_at_millis: number | undefined;
91
91
  is_public: boolean;
@@ -182,9 +182,9 @@ declare const teamApiKeysCreateInputSchema: yup.ObjectSchema<{
182
182
  }, "">;
183
183
  declare const teamApiKeysCreateOutputSchema: yup.ObjectSchema<{
184
184
  type: "team";
185
+ description: string;
185
186
  id: string;
186
187
  created_at_millis: number;
187
- description: string;
188
188
  expires_at_millis: number | undefined;
189
189
  manually_revoked_at_millis: number | undefined;
190
190
  team_id: string;
@@ -82,10 +82,10 @@ declare const userApiKeysCreateInputSchema: yup.ObjectSchema<{
82
82
  }, "">;
83
83
  declare const userApiKeysCreateOutputSchema: yup.ObjectSchema<{
84
84
  type: "user";
85
+ description: string;
85
86
  user_id: string;
86
87
  id: string;
87
88
  created_at_millis: number;
88
- description: string;
89
89
  expires_at_millis: number | undefined;
90
90
  manually_revoked_at_millis: number | undefined;
91
91
  is_public: boolean;
@@ -182,9 +182,9 @@ declare const teamApiKeysCreateInputSchema: yup.ObjectSchema<{
182
182
  }, "">;
183
183
  declare const teamApiKeysCreateOutputSchema: yup.ObjectSchema<{
184
184
  type: "team";
185
+ description: string;
185
186
  id: string;
186
187
  created_at_millis: number;
187
- description: string;
188
188
  expires_at_millis: number | undefined;
189
189
  manually_revoked_at_millis: number | undefined;
190
190
  team_id: string;
@@ -10,8 +10,8 @@ declare class AccessToken {
10
10
  private constructor();
11
11
  get payload(): {
12
12
  exp?: number | undefined;
13
- name: string | null;
14
13
  sub: string;
14
+ name: string | null;
15
15
  iat: number;
16
16
  iss: string;
17
17
  aud: string;
@@ -10,8 +10,8 @@ declare class AccessToken {
10
10
  private constructor();
11
11
  get payload(): {
12
12
  exp?: number | undefined;
13
- name: string | null;
14
13
  sub: string;
14
+ name: string | null;
15
15
  iat: number;
16
16
  iss: string;
17
17
  aud: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackframe/stack-shared",
3
- "version": "2.8.61",
3
+ "version": "2.8.62",
4
4
  "repository": "https://github.com/stack-auth/stack-auth",
5
5
  "files": [
6
6
  "README.md",