@camstack/core 0.1.20 → 0.1.21
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/auth/auth-manager.d.ts +1 -16
- package/dist/auth/auth-manager.d.ts.map +1 -1
- package/dist/builtins/local-auth/local-auth.addon.d.ts.map +1 -1
- package/dist/builtins/local-auth/local-auth.addon.js +1 -23
- package/dist/builtins/local-auth/local-auth.addon.js.map +1 -1
- package/dist/builtins/local-auth/local-auth.addon.mjs +1 -23
- package/dist/builtins/local-auth/local-auth.addon.mjs.map +1 -1
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -37,7 +37,7 @@ let node_vm = require("node:vm");
|
|
|
37
37
|
node_vm = require_chunk.__toESM(node_vm);
|
|
38
38
|
let node_os = require("node:os");
|
|
39
39
|
node_os = require_chunk.__toESM(node_os);
|
|
40
|
-
//#region ../types/dist/auth-records-
|
|
40
|
+
//#region ../types/dist/auth-records-DaPoK6Cr.mjs
|
|
41
41
|
var MODEL_FORMATS = [
|
|
42
42
|
"onnx",
|
|
43
43
|
"coreml",
|
|
@@ -4609,11 +4609,12 @@ var ScopedTokenSummarySchema = zod.z.object({
|
|
|
4609
4609
|
name: zod.z.string(),
|
|
4610
4610
|
tokenPrefix: zod.z.string(),
|
|
4611
4611
|
scopes: zod.z.array(TokenScopeSchema$1),
|
|
4612
|
-
expiresAt: zod.z.number().
|
|
4613
|
-
lastUsedAt: zod.z.number().
|
|
4612
|
+
expiresAt: zod.z.number().nullish(),
|
|
4613
|
+
lastUsedAt: zod.z.number().nullish(),
|
|
4614
4614
|
createdAt: zod.z.number()
|
|
4615
4615
|
});
|
|
4616
4616
|
var CreateScopedTokenInputSchema = zod.z.object({
|
|
4617
|
+
userId: zod.z.string(),
|
|
4617
4618
|
name: zod.z.string(),
|
|
4618
4619
|
scopes: zod.z.array(TokenScopeSchema$1),
|
|
4619
4620
|
expiresAt: zod.z.number().optional()
|