@robelest/convex-auth 0.0.4-preview.19 → 0.0.4-preview.20
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/component/model.d.ts +75 -75
- package/dist/component/model.d.ts.map +1 -1
- package/dist/component/schema.d.ts +276 -276
- package/dist/component/server/runtime.d.ts +1 -1
- package/dist/server/http.d.ts +2 -2
- package/dist/server/http.d.ts.map +1 -1
- package/dist/server/mounts.d.ts +6 -6
- package/dist/server/mutations/account.d.ts +6 -6
- package/dist/server/mutations/account.d.ts.map +1 -1
- package/dist/server/mutations/code.d.ts +11 -11
- package/dist/server/mutations/code.d.ts.map +1 -1
- package/dist/server/mutations/invalidate.d.ts +4 -4
- package/dist/server/mutations/invalidate.d.ts.map +1 -1
- package/dist/server/mutations/oauth.d.ts +7 -7
- package/dist/server/mutations/oauth.d.ts.map +1 -1
- package/dist/server/mutations/refresh.d.ts +3 -3
- package/dist/server/mutations/refresh.d.ts.map +1 -1
- package/dist/server/mutations/register.d.ts +9 -9
- package/dist/server/mutations/register.d.ts.map +1 -1
- package/dist/server/mutations/retrieve.d.ts +6 -6
- package/dist/server/mutations/signature.d.ts +4 -4
- package/dist/server/mutations/signature.d.ts.map +1 -1
- package/dist/server/mutations/signin.d.ts +5 -5
- package/dist/server/mutations/signin.d.ts.map +1 -1
- package/dist/server/mutations/store.d.ts +77 -77
- package/dist/server/mutations/verify.d.ts +7 -7
- package/dist/server/mutations/verify.d.ts.map +1 -1
- package/dist/server/runtime.d.ts +5 -5
- package/package.json +2 -2
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as convex_values474 from "convex/values";
|
|
2
2
|
|
|
3
3
|
//#region src/component/model.d.ts
|
|
4
|
-
declare const vAuthVerifierDoc:
|
|
5
|
-
sessionId?:
|
|
4
|
+
declare const vAuthVerifierDoc: convex_values474.VObject<{
|
|
5
|
+
sessionId?: convex_values474.GenericId<"Session"> | undefined;
|
|
6
6
|
signature?: string | undefined;
|
|
7
7
|
_creationTime: number;
|
|
8
|
-
_id:
|
|
8
|
+
_id: convex_values474.GenericId<"AuthVerifier">;
|
|
9
9
|
}, {
|
|
10
|
-
sessionId:
|
|
11
|
-
signature:
|
|
12
|
-
_id:
|
|
13
|
-
_creationTime:
|
|
10
|
+
sessionId: convex_values474.VId<convex_values474.GenericId<"Session"> | undefined, "optional">;
|
|
11
|
+
signature: convex_values474.VString<string | undefined, "optional">;
|
|
12
|
+
_id: convex_values474.VId<convex_values474.GenericId<"AuthVerifier">, "required">;
|
|
13
|
+
_creationTime: convex_values474.VFloat64<number, "required">;
|
|
14
14
|
}, "required", "sessionId" | "signature" | "_creationTime" | "_id">;
|
|
15
|
-
declare const vPasskeyDoc:
|
|
15
|
+
declare const vPasskeyDoc: convex_values474.VObject<{
|
|
16
16
|
name?: string | undefined;
|
|
17
17
|
transports?: string[] | undefined;
|
|
18
18
|
lastUsedAt?: number | undefined;
|
|
19
|
-
userId:
|
|
19
|
+
userId: convex_values474.GenericId<"User">;
|
|
20
20
|
_creationTime: number;
|
|
21
21
|
credentialId: string;
|
|
22
22
|
publicKey: ArrayBuffer;
|
|
@@ -25,46 +25,46 @@ declare const vPasskeyDoc: convex_values121.VObject<{
|
|
|
25
25
|
deviceType: string;
|
|
26
26
|
backedUp: boolean;
|
|
27
27
|
createdAt: number;
|
|
28
|
-
_id:
|
|
28
|
+
_id: convex_values474.GenericId<"Passkey">;
|
|
29
29
|
}, {
|
|
30
|
-
userId:
|
|
31
|
-
credentialId:
|
|
32
|
-
publicKey:
|
|
33
|
-
algorithm:
|
|
34
|
-
counter:
|
|
35
|
-
transports:
|
|
36
|
-
deviceType:
|
|
37
|
-
backedUp:
|
|
38
|
-
name:
|
|
39
|
-
createdAt:
|
|
40
|
-
lastUsedAt:
|
|
41
|
-
_id:
|
|
42
|
-
_creationTime:
|
|
30
|
+
userId: convex_values474.VId<convex_values474.GenericId<"User">, "required">;
|
|
31
|
+
credentialId: convex_values474.VString<string, "required">;
|
|
32
|
+
publicKey: convex_values474.VBytes<ArrayBuffer, "required">;
|
|
33
|
+
algorithm: convex_values474.VFloat64<number, "required">;
|
|
34
|
+
counter: convex_values474.VFloat64<number, "required">;
|
|
35
|
+
transports: convex_values474.VArray<string[] | undefined, convex_values474.VString<string, "required">, "optional">;
|
|
36
|
+
deviceType: convex_values474.VString<string, "required">;
|
|
37
|
+
backedUp: convex_values474.VBoolean<boolean, "required">;
|
|
38
|
+
name: convex_values474.VString<string | undefined, "optional">;
|
|
39
|
+
createdAt: convex_values474.VFloat64<number, "required">;
|
|
40
|
+
lastUsedAt: convex_values474.VFloat64<number | undefined, "optional">;
|
|
41
|
+
_id: convex_values474.VId<convex_values474.GenericId<"Passkey">, "required">;
|
|
42
|
+
_creationTime: convex_values474.VFloat64<number, "required">;
|
|
43
43
|
}, "required", "name" | "userId" | "_creationTime" | "credentialId" | "publicKey" | "algorithm" | "counter" | "transports" | "deviceType" | "backedUp" | "createdAt" | "lastUsedAt" | "_id">;
|
|
44
|
-
declare const vTotpFactorDoc:
|
|
44
|
+
declare const vTotpFactorDoc: convex_values474.VObject<{
|
|
45
45
|
name?: string | undefined;
|
|
46
46
|
lastUsedAt?: number | undefined;
|
|
47
|
-
userId:
|
|
47
|
+
userId: convex_values474.GenericId<"User">;
|
|
48
48
|
secret: ArrayBuffer;
|
|
49
49
|
_creationTime: number;
|
|
50
50
|
createdAt: number;
|
|
51
51
|
digits: number;
|
|
52
52
|
period: number;
|
|
53
53
|
verified: boolean;
|
|
54
|
-
_id:
|
|
54
|
+
_id: convex_values474.GenericId<"TotpFactor">;
|
|
55
55
|
}, {
|
|
56
|
-
userId:
|
|
57
|
-
secret:
|
|
58
|
-
digits:
|
|
59
|
-
period:
|
|
60
|
-
verified:
|
|
61
|
-
name:
|
|
62
|
-
createdAt:
|
|
63
|
-
lastUsedAt:
|
|
64
|
-
_id:
|
|
65
|
-
_creationTime:
|
|
56
|
+
userId: convex_values474.VId<convex_values474.GenericId<"User">, "required">;
|
|
57
|
+
secret: convex_values474.VBytes<ArrayBuffer, "required">;
|
|
58
|
+
digits: convex_values474.VFloat64<number, "required">;
|
|
59
|
+
period: convex_values474.VFloat64<number, "required">;
|
|
60
|
+
verified: convex_values474.VBoolean<boolean, "required">;
|
|
61
|
+
name: convex_values474.VString<string | undefined, "optional">;
|
|
62
|
+
createdAt: convex_values474.VFloat64<number, "required">;
|
|
63
|
+
lastUsedAt: convex_values474.VFloat64<number | undefined, "optional">;
|
|
64
|
+
_id: convex_values474.VId<convex_values474.GenericId<"TotpFactor">, "required">;
|
|
65
|
+
_creationTime: convex_values474.VFloat64<number, "required">;
|
|
66
66
|
}, "required", "name" | "userId" | "secret" | "_creationTime" | "createdAt" | "lastUsedAt" | "digits" | "period" | "verified" | "_id">;
|
|
67
|
-
declare const vApiKeyDoc:
|
|
67
|
+
declare const vApiKeyDoc: convex_values474.VObject<{
|
|
68
68
|
lastUsedAt?: number | undefined;
|
|
69
69
|
expiresAt?: number | undefined;
|
|
70
70
|
metadata?: any;
|
|
@@ -77,7 +77,7 @@ declare const vApiKeyDoc: convex_values121.VObject<{
|
|
|
77
77
|
lastAttemptTime: number;
|
|
78
78
|
} | undefined;
|
|
79
79
|
name: string;
|
|
80
|
-
userId:
|
|
80
|
+
userId: convex_values474.GenericId<"User">;
|
|
81
81
|
_creationTime: number;
|
|
82
82
|
createdAt: number;
|
|
83
83
|
revoked: boolean;
|
|
@@ -87,47 +87,47 @@ declare const vApiKeyDoc: convex_values121.VObject<{
|
|
|
87
87
|
resource: string;
|
|
88
88
|
actions: string[];
|
|
89
89
|
}[];
|
|
90
|
-
_id:
|
|
90
|
+
_id: convex_values474.GenericId<"ApiKey">;
|
|
91
91
|
}, {
|
|
92
|
-
userId:
|
|
93
|
-
prefix:
|
|
94
|
-
hashedKey:
|
|
95
|
-
name:
|
|
96
|
-
scopes:
|
|
92
|
+
userId: convex_values474.VId<convex_values474.GenericId<"User">, "required">;
|
|
93
|
+
prefix: convex_values474.VString<string, "required">;
|
|
94
|
+
hashedKey: convex_values474.VString<string, "required">;
|
|
95
|
+
name: convex_values474.VString<string, "required">;
|
|
96
|
+
scopes: convex_values474.VArray<{
|
|
97
97
|
resource: string;
|
|
98
98
|
actions: string[];
|
|
99
|
-
}[],
|
|
99
|
+
}[], convex_values474.VObject<{
|
|
100
100
|
resource: string;
|
|
101
101
|
actions: string[];
|
|
102
102
|
}, {
|
|
103
|
-
resource:
|
|
104
|
-
actions:
|
|
103
|
+
resource: convex_values474.VString<string, "required">;
|
|
104
|
+
actions: convex_values474.VArray<string[], convex_values474.VString<string, "required">, "required">;
|
|
105
105
|
}, "required", "resource" | "actions">, "required">;
|
|
106
|
-
rateLimit:
|
|
106
|
+
rateLimit: convex_values474.VObject<{
|
|
107
107
|
maxRequests: number;
|
|
108
108
|
windowMs: number;
|
|
109
109
|
} | undefined, {
|
|
110
|
-
maxRequests:
|
|
111
|
-
windowMs:
|
|
110
|
+
maxRequests: convex_values474.VFloat64<number, "required">;
|
|
111
|
+
windowMs: convex_values474.VFloat64<number, "required">;
|
|
112
112
|
}, "optional", "maxRequests" | "windowMs">;
|
|
113
|
-
rateLimitState:
|
|
113
|
+
rateLimitState: convex_values474.VObject<{
|
|
114
114
|
attemptsLeft: number;
|
|
115
115
|
lastAttemptTime: number;
|
|
116
116
|
} | undefined, {
|
|
117
|
-
attemptsLeft:
|
|
118
|
-
lastAttemptTime:
|
|
117
|
+
attemptsLeft: convex_values474.VFloat64<number, "required">;
|
|
118
|
+
lastAttemptTime: convex_values474.VFloat64<number, "required">;
|
|
119
119
|
}, "optional", "attemptsLeft" | "lastAttemptTime">;
|
|
120
|
-
expiresAt:
|
|
121
|
-
lastUsedAt:
|
|
122
|
-
createdAt:
|
|
123
|
-
revoked:
|
|
124
|
-
metadata:
|
|
125
|
-
_id:
|
|
126
|
-
_creationTime:
|
|
120
|
+
expiresAt: convex_values474.VFloat64<number | undefined, "optional">;
|
|
121
|
+
lastUsedAt: convex_values474.VFloat64<number | undefined, "optional">;
|
|
122
|
+
createdAt: convex_values474.VFloat64<number, "required">;
|
|
123
|
+
revoked: convex_values474.VBoolean<boolean, "required">;
|
|
124
|
+
metadata: convex_values474.VAny<any, "optional", string>;
|
|
125
|
+
_id: convex_values474.VId<convex_values474.GenericId<"ApiKey">, "required">;
|
|
126
|
+
_creationTime: convex_values474.VFloat64<number, "required">;
|
|
127
127
|
}, "required", "name" | "userId" | "_creationTime" | "createdAt" | "lastUsedAt" | "expiresAt" | "revoked" | "metadata" | `metadata.${string}` | "prefix" | "hashedKey" | "scopes" | "rateLimit" | "rateLimitState" | "rateLimit.maxRequests" | "rateLimit.windowMs" | "rateLimitState.attemptsLeft" | "rateLimitState.lastAttemptTime" | "_id">;
|
|
128
|
-
declare const vDeviceCodeDoc:
|
|
129
|
-
userId?:
|
|
130
|
-
sessionId?:
|
|
128
|
+
declare const vDeviceCodeDoc: convex_values474.VObject<{
|
|
129
|
+
userId?: convex_values474.GenericId<"User"> | undefined;
|
|
130
|
+
sessionId?: convex_values474.GenericId<"Session"> | undefined;
|
|
131
131
|
lastPolledAt?: number | undefined;
|
|
132
132
|
status: "pending" | "authorized" | "denied";
|
|
133
133
|
_creationTime: number;
|
|
@@ -135,18 +135,18 @@ declare const vDeviceCodeDoc: convex_values121.VObject<{
|
|
|
135
135
|
userCode: string;
|
|
136
136
|
expiresAt: number;
|
|
137
137
|
interval: number;
|
|
138
|
-
_id:
|
|
138
|
+
_id: convex_values474.GenericId<"DeviceCode">;
|
|
139
139
|
}, {
|
|
140
|
-
deviceCodeHash:
|
|
141
|
-
userCode:
|
|
142
|
-
expiresAt:
|
|
143
|
-
interval:
|
|
144
|
-
status:
|
|
145
|
-
userId:
|
|
146
|
-
sessionId:
|
|
147
|
-
lastPolledAt:
|
|
148
|
-
_id:
|
|
149
|
-
_creationTime:
|
|
140
|
+
deviceCodeHash: convex_values474.VString<string, "required">;
|
|
141
|
+
userCode: convex_values474.VString<string, "required">;
|
|
142
|
+
expiresAt: convex_values474.VFloat64<number, "required">;
|
|
143
|
+
interval: convex_values474.VFloat64<number, "required">;
|
|
144
|
+
status: convex_values474.VUnion<"pending" | "authorized" | "denied", [convex_values474.VLiteral<"pending", "required">, convex_values474.VLiteral<"authorized", "required">, convex_values474.VLiteral<"denied", "required">], "required", never>;
|
|
145
|
+
userId: convex_values474.VId<convex_values474.GenericId<"User"> | undefined, "optional">;
|
|
146
|
+
sessionId: convex_values474.VId<convex_values474.GenericId<"Session"> | undefined, "optional">;
|
|
147
|
+
lastPolledAt: convex_values474.VFloat64<number | undefined, "optional">;
|
|
148
|
+
_id: convex_values474.VId<convex_values474.GenericId<"DeviceCode">, "required">;
|
|
149
|
+
_creationTime: convex_values474.VFloat64<number, "required">;
|
|
150
150
|
}, "required", "status" | "userId" | "sessionId" | "_creationTime" | "deviceCodeHash" | "userCode" | "expiresAt" | "interval" | "lastPolledAt" | "_id">;
|
|
151
151
|
//#endregion
|
|
152
152
|
export { vApiKeyDoc, vAuthVerifierDoc, vDeviceCodeDoc, vPasskeyDoc, vTotpFactorDoc };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model.d.ts","names":[],"sources":["../../src/component/model.ts"],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"model.d.ts","names":[],"sources":["../../src/component/model.ts"],"mappings":"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"}
|