@supernova-studio/model 1.40.0 → 1.40.1
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/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -332,6 +332,7 @@ declare const AuthV2Request: z.ZodObject<{
|
|
|
332
332
|
codeChallengeMethod: z.ZodString;
|
|
333
333
|
redirectUri: z.ZodString;
|
|
334
334
|
sessionId: z.ZodString;
|
|
335
|
+
clientApp: z.ZodOptional<z.ZodString>;
|
|
335
336
|
}, "strip", z.ZodTypeAny, {
|
|
336
337
|
state: string;
|
|
337
338
|
codeChallenge: string;
|
|
@@ -339,6 +340,7 @@ declare const AuthV2Request: z.ZodObject<{
|
|
|
339
340
|
redirectUri: string;
|
|
340
341
|
sessionId: string;
|
|
341
342
|
code?: string | undefined;
|
|
343
|
+
clientApp?: string | undefined;
|
|
342
344
|
}, {
|
|
343
345
|
state: string;
|
|
344
346
|
codeChallenge: string;
|
|
@@ -346,6 +348,7 @@ declare const AuthV2Request: z.ZodObject<{
|
|
|
346
348
|
redirectUri: string;
|
|
347
349
|
sessionId: string;
|
|
348
350
|
code?: string | undefined;
|
|
351
|
+
clientApp?: string | undefined;
|
|
349
352
|
}>;
|
|
350
353
|
type AuthV2Request = z.infer<typeof AuthV2Request>;
|
|
351
354
|
|
package/dist/index.d.ts
CHANGED
|
@@ -332,6 +332,7 @@ declare const AuthV2Request: z.ZodObject<{
|
|
|
332
332
|
codeChallengeMethod: z.ZodString;
|
|
333
333
|
redirectUri: z.ZodString;
|
|
334
334
|
sessionId: z.ZodString;
|
|
335
|
+
clientApp: z.ZodOptional<z.ZodString>;
|
|
335
336
|
}, "strip", z.ZodTypeAny, {
|
|
336
337
|
state: string;
|
|
337
338
|
codeChallenge: string;
|
|
@@ -339,6 +340,7 @@ declare const AuthV2Request: z.ZodObject<{
|
|
|
339
340
|
redirectUri: string;
|
|
340
341
|
sessionId: string;
|
|
341
342
|
code?: string | undefined;
|
|
343
|
+
clientApp?: string | undefined;
|
|
342
344
|
}, {
|
|
343
345
|
state: string;
|
|
344
346
|
codeChallenge: string;
|
|
@@ -346,6 +348,7 @@ declare const AuthV2Request: z.ZodObject<{
|
|
|
346
348
|
redirectUri: string;
|
|
347
349
|
sessionId: string;
|
|
348
350
|
code?: string | undefined;
|
|
351
|
+
clientApp?: string | undefined;
|
|
349
352
|
}>;
|
|
350
353
|
type AuthV2Request = z.infer<typeof AuthV2Request>;
|
|
351
354
|
|
package/dist/index.js
CHANGED
|
@@ -35,7 +35,8 @@ var AuthV2Request = _zod.z.object({
|
|
|
35
35
|
codeChallenge: _zod.z.string(),
|
|
36
36
|
codeChallengeMethod: _zod.z.string(),
|
|
37
37
|
redirectUri: _zod.z.string(),
|
|
38
|
-
sessionId: _zod.z.string()
|
|
38
|
+
sessionId: _zod.z.string(),
|
|
39
|
+
clientApp: _zod.z.string().optional()
|
|
39
40
|
});
|
|
40
41
|
|
|
41
42
|
// src/auth/session.ts
|