@estifanos-sh/convex-auth 0.0.11 → 0.0.12
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/account.d.ts +29 -29
- package/dist/component/account.d.ts.map +1 -1
- package/dist/component/connection/audit.d.ts +7 -7
- package/dist/component/connection/audit.d.ts.map +1 -1
- package/dist/component/connection/cache.d.ts +6 -6
- package/dist/component/connection/domain/verification.d.ts +15 -15
- package/dist/component/connection/domain.d.ts +18 -18
- package/dist/component/connection/saml/assertion.d.ts +4 -4
- package/dist/component/connection/saml/request.d.ts +7 -7
- package/dist/component/connection/scim/config.d.ts +11 -11
- package/dist/component/connection/scim/identity.d.ts +47 -47
- package/dist/component/connection/secret.d.ts +13 -13
- package/dist/component/connection/webhook/delivery.d.ts +33 -33
- package/dist/component/connection/webhook/endpoint.d.ts +21 -21
- package/dist/component/connection.d.ts +25 -25
- package/dist/component/context.d.ts +16 -16
- package/dist/component/crons.d.ts +2 -2
- package/dist/component/event.d.ts +12 -12
- package/dist/component/factor/device.d.ts +21 -21
- package/dist/component/factor/passkey.d.ts +67 -67
- package/dist/component/factor/passkey.d.ts.map +1 -1
- package/dist/component/factor/totp.d.ts +42 -42
- package/dist/component/group/active.d.ts +82 -82
- package/dist/component/group/active.d.ts.map +1 -1
- package/dist/component/group/invite.d.ts +28 -28
- package/dist/component/group/invite.d.ts.map +1 -1
- package/dist/component/group/member.d.ts +34 -34
- package/dist/component/group/member.d.ts.map +1 -1
- package/dist/component/group.d.ts +33 -33
- package/dist/component/http.d.ts +2 -2
- package/dist/component/limits.d.ts +4 -4
- package/dist/component/maintenance.d.ts +2 -2
- package/dist/component/model.d.ts +440 -440
- package/dist/component/oauth/client.d.ts +18 -18
- package/dist/component/oauth/code.d.ts +11 -11
- package/dist/component/oauth/refresh.d.ts +17 -17
- package/dist/component/schema.d.ts +621 -621
- package/dist/component/session.d.ts +26 -26
- package/dist/component/session.d.ts.map +1 -1
- package/dist/component/token/continuation.d.ts +14 -14
- package/dist/component/token/continuation.d.ts.map +1 -1
- package/dist/component/token/enrollment.d.ts +7 -7
- package/dist/component/token/enrollment.d.ts.map +1 -1
- package/dist/component/token/pkce.d.ts +22 -22
- package/dist/component/token/pkce.d.ts.map +1 -1
- package/dist/component/token/refresh.d.ts +31 -31
- package/dist/component/token/refresh.d.ts.map +1 -1
- package/dist/component/token/verification.d.ts +25 -25
- package/dist/component/token/verification.d.ts.map +1 -1
- package/dist/component/user/email.d.ts +17 -17
- package/dist/component/user/email.d.ts.map +1 -1
- package/dist/component/user/key.d.ts +26 -26
- package/dist/component/user/key.d.ts.map +1 -1
- package/dist/component/user.d.ts +25 -25
- package/dist/component/user.d.ts.map +1 -1
- package/dist/providers/password.js +4 -2
- package/dist/providers/password.js.map +1 -1
- package/dist/server/core.js +5 -3
- package/dist/server/core.js.map +1 -1
- package/dist/server/cors.d.ts +2 -2
- package/dist/server/domains/account.d.ts.map +1 -1
- package/dist/server/domains/account.js +15 -4
- package/dist/server/domains/account.js.map +1 -1
- package/dist/server/mutations/account.js +4 -3
- package/dist/server/mutations/account.js.map +1 -1
- package/dist/server/mutations/credentials/signin.js +7 -6
- package/dist/server/mutations/credentials/signin.js.map +1 -1
- package/dist/server/mutations/enrollment.js +2 -1
- package/dist/server/mutations/enrollment.js.map +1 -1
- package/dist/server/mutations/get.js +4 -3
- package/dist/server/mutations/get.js.map +1 -1
- package/dist/server/mutations/register.js +7 -5
- package/dist/server/mutations/register.js.map +1 -1
- package/dist/server/mutations/verify.js +1 -1
- package/dist/server/mutations/verify.js.map +1 -1
- package/dist/server/runtime.d.ts +4 -0
- package/dist/server/runtime.d.ts.map +1 -1
- package/dist/server/runtime.js +1 -1
- package/dist/server/runtime.js.map +1 -1
- package/dist/server/validators.d.ts +626 -626
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SessionRows } from "./session.js";
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
2
|
+
import * as convex_values1530 from "convex/values";
|
|
3
|
+
import * as convex_server81 from "convex/server";
|
|
4
4
|
|
|
5
5
|
//#region src/component/account.d.ts
|
|
6
6
|
declare namespace account_d_exports {
|
|
@@ -10,7 +10,7 @@ type AcceptedCredentialsSignIn = Omit<SessionRows, "epoch"> & {
|
|
|
10
10
|
status: "accepted";
|
|
11
11
|
};
|
|
12
12
|
/** Reserve a password attempt and load all sign-in state in one transaction. */
|
|
13
|
-
declare const beginCredentialsSignIn:
|
|
13
|
+
declare const beginCredentialsSignIn: convex_server81.RegisteredMutation<"public", {
|
|
14
14
|
provider: string;
|
|
15
15
|
providerAccountId: string;
|
|
16
16
|
limitIdentifier: string;
|
|
@@ -30,18 +30,18 @@ declare const beginCredentialsSignIn: convex_server150.RegisteredMutation<"publi
|
|
|
30
30
|
} | {
|
|
31
31
|
status: "ready";
|
|
32
32
|
account: {
|
|
33
|
-
_id:
|
|
33
|
+
_id: convex_values1530.GenericId<"Account">;
|
|
34
34
|
_creationTime: number;
|
|
35
35
|
extend?: any;
|
|
36
36
|
secret?: string | undefined;
|
|
37
37
|
emailVerified?: string | undefined;
|
|
38
38
|
phoneVerified?: string | undefined;
|
|
39
|
-
userId:
|
|
39
|
+
userId: convex_values1530.GenericId<"User">;
|
|
40
40
|
provider: string;
|
|
41
41
|
providerAccountId: string;
|
|
42
42
|
};
|
|
43
43
|
user: {
|
|
44
|
-
_id:
|
|
44
|
+
_id: convex_values1530.GenericId<"User">;
|
|
45
45
|
_creationTime: number;
|
|
46
46
|
email?: string | undefined;
|
|
47
47
|
phone?: string | undefined;
|
|
@@ -53,20 +53,20 @@ declare const beginCredentialsSignIn: convex_server150.RegisteredMutation<"publi
|
|
|
53
53
|
emailVerificationTime?: number | undefined;
|
|
54
54
|
phoneVerificationTime?: number | undefined;
|
|
55
55
|
isAnonymous?: boolean | undefined;
|
|
56
|
-
lastActiveGroup?:
|
|
56
|
+
lastActiveGroup?: convex_values1530.GenericId<"Group"> | undefined;
|
|
57
57
|
sessionEpoch: number;
|
|
58
58
|
};
|
|
59
59
|
hasTotp: boolean;
|
|
60
60
|
}>>;
|
|
61
61
|
/** Refund a verified password attempt and optionally issue its session atomically. */
|
|
62
|
-
declare const completeCredentialsSignIn:
|
|
62
|
+
declare const completeCredentialsSignIn: convex_server81.RegisteredMutation<"public", {
|
|
63
63
|
replaceSession?: {
|
|
64
|
-
sessionId:
|
|
65
|
-
authenticatedUserId:
|
|
64
|
+
sessionId: convex_values1530.GenericId<"Session">;
|
|
65
|
+
authenticatedUserId: convex_values1530.GenericId<"User">;
|
|
66
66
|
} | undefined;
|
|
67
67
|
sessionExpirationTime: number;
|
|
68
68
|
refreshTokenExpirationTime: number;
|
|
69
|
-
accountId:
|
|
69
|
+
accountId: convex_values1530.GenericId<"Account">;
|
|
70
70
|
limitIdentifier: string;
|
|
71
71
|
issueSession: boolean;
|
|
72
72
|
generateTokens: boolean;
|
|
@@ -79,18 +79,18 @@ declare const completeCredentialsSignIn: convex_server150.RegisteredMutation<"pu
|
|
|
79
79
|
* Read an account by id, or by `{ provider, providerAccountId }` when both
|
|
80
80
|
* are given. Returns `null` when no selector matches.
|
|
81
81
|
*/
|
|
82
|
-
declare const get:
|
|
83
|
-
id?:
|
|
82
|
+
declare const get: convex_server81.RegisteredQuery<"public", {
|
|
83
|
+
id?: convex_values1530.GenericId<"Account"> | undefined;
|
|
84
84
|
provider?: string | undefined;
|
|
85
85
|
providerAccountId?: string | undefined;
|
|
86
86
|
}, Promise<{
|
|
87
|
-
_id:
|
|
87
|
+
_id: convex_values1530.GenericId<"Account">;
|
|
88
88
|
_creationTime: number;
|
|
89
89
|
extend?: any;
|
|
90
90
|
secret?: string | undefined;
|
|
91
91
|
emailVerified?: string | undefined;
|
|
92
92
|
phoneVerified?: string | undefined;
|
|
93
|
-
userId:
|
|
93
|
+
userId: convex_values1530.GenericId<"User">;
|
|
94
94
|
provider: string;
|
|
95
95
|
providerAccountId: string;
|
|
96
96
|
} | null>>;
|
|
@@ -101,34 +101,34 @@ declare const get: convex_server150.RegisteredQuery<"public", {
|
|
|
101
101
|
* public server facade projects these raw records into safe capability
|
|
102
102
|
* summaries before exposing them to application code.
|
|
103
103
|
*/
|
|
104
|
-
declare const list:
|
|
105
|
-
userId?:
|
|
104
|
+
declare const list: convex_server81.RegisteredQuery<"public", {
|
|
105
|
+
userId?: convex_values1530.GenericId<"User"> | undefined;
|
|
106
106
|
provider?: string | undefined;
|
|
107
|
-
userIds?:
|
|
107
|
+
userIds?: convex_values1530.GenericId<"User">[] | undefined;
|
|
108
108
|
}, Promise<{
|
|
109
|
-
_id:
|
|
109
|
+
_id: convex_values1530.GenericId<"Account">;
|
|
110
110
|
_creationTime: number;
|
|
111
111
|
extend?: any;
|
|
112
112
|
secret?: string | undefined;
|
|
113
113
|
emailVerified?: string | undefined;
|
|
114
114
|
phoneVerified?: string | undefined;
|
|
115
|
-
userId:
|
|
115
|
+
userId: convex_values1530.GenericId<"User">;
|
|
116
116
|
provider: string;
|
|
117
117
|
providerAccountId: string;
|
|
118
118
|
}[]>>;
|
|
119
119
|
/** Insert a new account. */
|
|
120
|
-
declare const create:
|
|
120
|
+
declare const create: convex_server81.RegisteredMutation<"public", {
|
|
121
121
|
extend?: any;
|
|
122
122
|
secret?: string | undefined;
|
|
123
|
-
userId:
|
|
123
|
+
userId: convex_values1530.GenericId<"User">;
|
|
124
124
|
provider: string;
|
|
125
125
|
providerAccountId: string;
|
|
126
|
-
}, Promise<
|
|
126
|
+
}, Promise<convex_values1530.GenericId<"Account">>>;
|
|
127
127
|
/** Patch fields on an account. */
|
|
128
|
-
declare const update:
|
|
129
|
-
id:
|
|
128
|
+
declare const update: convex_server81.RegisteredMutation<"public", {
|
|
129
|
+
id: convex_values1530.GenericId<"Account">;
|
|
130
130
|
patch: {
|
|
131
|
-
userId?:
|
|
131
|
+
userId?: convex_values1530.GenericId<"User"> | undefined;
|
|
132
132
|
extend?: any;
|
|
133
133
|
provider?: string | undefined;
|
|
134
134
|
providerAccountId?: string | undefined;
|
|
@@ -141,10 +141,10 @@ declare const update: convex_server150.RegisteredMutation<"public", {
|
|
|
141
141
|
* Delete an account. When `requireOtherAccount` is set, refuses to delete the
|
|
142
142
|
* user's last remaining account so they are never left with none.
|
|
143
143
|
*/
|
|
144
|
-
declare const remove:
|
|
145
|
-
userId?:
|
|
144
|
+
declare const remove: convex_server81.RegisteredMutation<"public", {
|
|
145
|
+
userId?: convex_values1530.GenericId<"User"> | undefined;
|
|
146
146
|
requireOtherAccount?: boolean | undefined;
|
|
147
|
-
id:
|
|
147
|
+
id: convex_values1530.GenericId<"Account">;
|
|
148
148
|
}, Promise<null>>;
|
|
149
149
|
//#endregion
|
|
150
150
|
export { account_d_exports };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.d.ts","names":[],"sources":["../../src/component/account.ts"],"mappings":";;;;;;;;KAwBK,yBAAA,GAA4B,IAAA,CAAK,WAAA;EAA0B,MAAA;AAAA;;cAGnD,sBAAA,
|
|
1
|
+
{"version":3,"file":"account.d.ts","names":[],"sources":["../../src/component/account.ts"],"mappings":";;;;;;;;KAwBK,yBAAA,GAA4B,IAAA,CAAK,WAAA;EAA0B,MAAA;AAAA;;cAGnD,sBAAA,kBAAsB,kBAAA;;;;;;;;;;;;;;;;;;;;SAuDjC,iBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAGW,yBAAA,kBAAyB,kBAAA;;eA+CpC,iBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;cAMW,GAAA,kBAAG,eAAA;OAmBd,iBAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;cASW,IAAA,kBAAI,eAAA;WAgCf,iBAAA,CAAA,SAAA;;;;;;;;;;;;;;;cAGW,MAAA,kBAAM,kBAAA;;;UAqCjB,iBAAA,CAAA,SAAA;;;;;cAGW,MAAA,kBAAM,kBAAA;MAkBjB,iBAAA,CAAA,SAAA;;;;;;;;;;;;;;AA7FF;cAmGM,MAAA,kBAAM,kBAAA;WA6BV,iBAAA,CAAA,SAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as convex_values1594 from "convex/values";
|
|
2
|
+
import * as convex_server99 from "convex/server";
|
|
3
3
|
|
|
4
4
|
//#region src/component/connection/audit.d.ts
|
|
5
5
|
declare namespace audit_d_exports {
|
|
@@ -15,7 +15,7 @@ declare namespace audit_d_exports {
|
|
|
15
15
|
* paginated. Requires exactly one of `connectionId` or `groupId`, so a caller
|
|
16
16
|
* cannot scan the whole event log by omitting the scope.
|
|
17
17
|
*/
|
|
18
|
-
declare const list:
|
|
18
|
+
declare const list: convex_server99.RegisteredQuery<"public", {
|
|
19
19
|
paginationOpts: {
|
|
20
20
|
id?: number;
|
|
21
21
|
endCursor?: string | null;
|
|
@@ -25,12 +25,12 @@ declare const list: convex_server229.RegisteredQuery<"public", {
|
|
|
25
25
|
cursor: string | null;
|
|
26
26
|
};
|
|
27
27
|
scope: {
|
|
28
|
-
connectionId:
|
|
28
|
+
connectionId: convex_values1594.GenericId<"GroupConnection">;
|
|
29
29
|
} | {
|
|
30
|
-
groupId:
|
|
30
|
+
groupId: convex_values1594.GenericId<"Group">;
|
|
31
31
|
};
|
|
32
|
-
}, Promise<
|
|
33
|
-
_id:
|
|
32
|
+
}, Promise<convex_server99.PaginationResult<{
|
|
33
|
+
_id: convex_values1594.GenericId<"AuthEventProjection">;
|
|
34
34
|
_creationTime: number;
|
|
35
35
|
requestId?: string | undefined;
|
|
36
36
|
ip?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"audit.d.ts","names":[],"sources":["../../../src/component/connection/audit.ts"],"mappings":";;;;;;;;;;;;;AAoBA;;;;cAAa,IAAA,
|
|
1
|
+
{"version":3,"file":"audit.d.ts","names":[],"sources":["../../../src/component/connection/audit.ts"],"mappings":";;;;;;;;;;;;;AAoBA;;;;cAAa,IAAA,kBAAI,eAAA;;;;;;;;;;kBA6Bf,iBAAA,CAAA,SAAA;EAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as convex_server110 from "convex/server";
|
|
2
2
|
|
|
3
3
|
//#region src/component/connection/cache.d.ts
|
|
4
4
|
declare namespace cache_d_exports {
|
|
@@ -27,7 +27,7 @@ declare namespace cache_d_exports {
|
|
|
27
27
|
/**
|
|
28
28
|
* Read-through fetch for OIDC discovery JSON. Cached 1h per URL.
|
|
29
29
|
*/
|
|
30
|
-
declare const oidcDiscovery:
|
|
30
|
+
declare const oidcDiscovery: convex_server110.RegisteredAction<"public", {
|
|
31
31
|
runtimeOrigin?: string | undefined;
|
|
32
32
|
externalHost?: string | undefined;
|
|
33
33
|
url: string;
|
|
@@ -45,7 +45,7 @@ declare const oidcDiscovery: convex_server231.RegisteredAction<"public", {
|
|
|
45
45
|
* Cached 2h per URL (separate from the runtime sign-in path so admin
|
|
46
46
|
* dashboards don't share keys with hot-path traffic).
|
|
47
47
|
*/
|
|
48
|
-
declare const oidcStatusDiscovery:
|
|
48
|
+
declare const oidcStatusDiscovery: convex_server110.RegisteredAction<"public", {
|
|
49
49
|
runtimeOrigin?: string | undefined;
|
|
50
50
|
externalHost?: string | undefined;
|
|
51
51
|
url: string;
|
|
@@ -61,19 +61,19 @@ declare const oidcStatusDiscovery: convex_server231.RegisteredAction<"public", {
|
|
|
61
61
|
/**
|
|
62
62
|
* Read-through fetch for SAML IdP metadata XML. Cached 24h per URL.
|
|
63
63
|
*/
|
|
64
|
-
declare const samlMetadata:
|
|
64
|
+
declare const samlMetadata: convex_server110.RegisteredAction<"public", {
|
|
65
65
|
runtimeOrigin?: string | undefined;
|
|
66
66
|
externalHost?: string | undefined;
|
|
67
67
|
url: string;
|
|
68
68
|
}, Promise<string>>;
|
|
69
69
|
/** Invalidate a cached OIDC discovery entry (e.g. on `discoveryUrl` update). */
|
|
70
|
-
declare const invalidateOidcDiscovery:
|
|
70
|
+
declare const invalidateOidcDiscovery: convex_server110.RegisteredMutation<"public", {
|
|
71
71
|
runtimeOrigin?: string | undefined;
|
|
72
72
|
externalHost?: string | undefined;
|
|
73
73
|
url: string;
|
|
74
74
|
}, Promise<null>>;
|
|
75
75
|
/** Invalidate a cached SAML metadata entry (e.g. on `metadataUrl` update). */
|
|
76
|
-
declare const invalidateSamlMetadata:
|
|
76
|
+
declare const invalidateSamlMetadata: convex_server110.RegisteredMutation<"public", {
|
|
77
77
|
runtimeOrigin?: string | undefined;
|
|
78
78
|
externalHost?: string | undefined;
|
|
79
79
|
url: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as convex_values3744 from "convex/values";
|
|
2
|
+
import * as convex_server254 from "convex/server";
|
|
3
3
|
|
|
4
4
|
//#region src/component/connection/domain/verification.d.ts
|
|
5
5
|
declare namespace verification_d_exports {
|
|
@@ -12,36 +12,36 @@ declare namespace verification_d_exports {
|
|
|
12
12
|
* @module
|
|
13
13
|
*/
|
|
14
14
|
/** Read a domain's verification record by `domainId`, or `null` if none. */
|
|
15
|
-
declare const get:
|
|
16
|
-
domainId:
|
|
15
|
+
declare const get: convex_server254.RegisteredQuery<"public", {
|
|
16
|
+
domainId: convex_values3744.GenericId<"GroupConnectionDomain">;
|
|
17
17
|
}, Promise<{
|
|
18
|
-
_id:
|
|
18
|
+
_id: convex_values3744.GenericId<"GroupConnectionDomainVerification">;
|
|
19
19
|
_creationTime: number;
|
|
20
|
-
connectionId:
|
|
20
|
+
connectionId: convex_values3744.GenericId<"GroupConnection">;
|
|
21
21
|
domain: string;
|
|
22
22
|
recordName: string;
|
|
23
23
|
expiresAt: number;
|
|
24
|
-
groupId:
|
|
24
|
+
groupId: convex_values3744.GenericId<"Group">;
|
|
25
25
|
tokenHash: string;
|
|
26
|
-
domainId:
|
|
26
|
+
domainId: convex_values3744.GenericId<"GroupConnectionDomain">;
|
|
27
27
|
token: string;
|
|
28
28
|
requestedAt: number;
|
|
29
29
|
} | null>>;
|
|
30
30
|
/** Insert a verification record, or patch it when one already exists for the domain (keyed by `domainId`). */
|
|
31
|
-
declare const upsert:
|
|
32
|
-
connectionId:
|
|
31
|
+
declare const upsert: convex_server254.RegisteredMutation<"public", {
|
|
32
|
+
connectionId: convex_values3744.GenericId<"GroupConnection">;
|
|
33
33
|
domain: string;
|
|
34
34
|
recordName: string;
|
|
35
35
|
expiresAt: number;
|
|
36
|
-
groupId:
|
|
36
|
+
groupId: convex_values3744.GenericId<"Group">;
|
|
37
37
|
tokenHash: string;
|
|
38
|
-
domainId:
|
|
38
|
+
domainId: convex_values3744.GenericId<"GroupConnectionDomain">;
|
|
39
39
|
token: string;
|
|
40
40
|
requestedAt: number;
|
|
41
|
-
}, Promise<
|
|
41
|
+
}, Promise<convex_values3744.GenericId<"GroupConnectionDomainVerification">>>;
|
|
42
42
|
/** Delete a domain's verification record, if any. */
|
|
43
|
-
declare const remove:
|
|
44
|
-
domainId:
|
|
43
|
+
declare const remove: convex_server254.RegisteredMutation<"public", {
|
|
44
|
+
domainId: convex_values3744.GenericId<"GroupConnectionDomain">;
|
|
45
45
|
}, Promise<null>>;
|
|
46
46
|
//#endregion
|
|
47
47
|
export { verification_d_exports };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as convex_values3719 from "convex/values";
|
|
2
|
+
import * as convex_server244 from "convex/server";
|
|
3
3
|
|
|
4
4
|
//#region src/component/connection/domain.d.ts
|
|
5
5
|
declare namespace domain_d_exports {
|
|
@@ -15,16 +15,16 @@ declare namespace domain_d_exports {
|
|
|
15
15
|
* @module
|
|
16
16
|
*/
|
|
17
17
|
/** List the domains attached to a connection (`limit` clamped to 1..500, default 100). */
|
|
18
|
-
declare const list:
|
|
18
|
+
declare const list: convex_server244.RegisteredQuery<"public", {
|
|
19
19
|
limit?: number | undefined;
|
|
20
|
-
connectionId:
|
|
20
|
+
connectionId: convex_values3719.GenericId<"GroupConnection">;
|
|
21
21
|
}, Promise<{
|
|
22
|
-
_id:
|
|
22
|
+
_id: convex_values3719.GenericId<"GroupConnectionDomain">;
|
|
23
23
|
_creationTime: number;
|
|
24
24
|
verifiedAt?: number | undefined;
|
|
25
|
-
connectionId:
|
|
25
|
+
connectionId: convex_values3719.GenericId<"GroupConnection">;
|
|
26
26
|
domain: string;
|
|
27
|
-
groupId:
|
|
27
|
+
groupId: convex_values3719.GenericId<"Group">;
|
|
28
28
|
isPrimary: boolean;
|
|
29
29
|
}[]>>;
|
|
30
30
|
/**
|
|
@@ -33,30 +33,30 @@ declare const list: convex_server165.RegisteredQuery<"public", {
|
|
|
33
33
|
* domain already belongs to a different connection. Setting `isPrimary` demotes
|
|
34
34
|
* any current primary; the first domain on a connection becomes primary by default.
|
|
35
35
|
*/
|
|
36
|
-
declare const create:
|
|
36
|
+
declare const create: convex_server244.RegisteredMutation<"public", {
|
|
37
37
|
isPrimary?: boolean | undefined;
|
|
38
|
-
connectionId:
|
|
38
|
+
connectionId: convex_values3719.GenericId<"GroupConnection">;
|
|
39
39
|
domain: string;
|
|
40
|
-
groupId:
|
|
41
|
-
}, Promise<
|
|
40
|
+
groupId: convex_values3719.GenericId<"Group">;
|
|
41
|
+
}, Promise<convex_values3719.GenericId<"GroupConnectionDomain">>>;
|
|
42
42
|
/** Delete a domain and its dependent verification record, if any. */
|
|
43
|
-
declare const remove:
|
|
44
|
-
id:
|
|
43
|
+
declare const remove: convex_server244.RegisteredMutation<"public", {
|
|
44
|
+
id: convex_values3719.GenericId<"GroupConnectionDomain">;
|
|
45
45
|
}, Promise<null>>;
|
|
46
46
|
/**
|
|
47
47
|
* Mark a domain verified at `verifiedAt` and clear its pending verification
|
|
48
48
|
* record. Returns the updated domain doc.
|
|
49
49
|
*/
|
|
50
|
-
declare const verify:
|
|
51
|
-
id:
|
|
50
|
+
declare const verify: convex_server244.RegisteredMutation<"public", {
|
|
51
|
+
id: convex_values3719.GenericId<"GroupConnectionDomain">;
|
|
52
52
|
verifiedAt: number;
|
|
53
53
|
}, Promise<{
|
|
54
|
-
_id:
|
|
54
|
+
_id: convex_values3719.GenericId<"GroupConnectionDomain">;
|
|
55
55
|
_creationTime: number;
|
|
56
56
|
verifiedAt?: number | undefined;
|
|
57
|
-
connectionId:
|
|
57
|
+
connectionId: convex_values3719.GenericId<"GroupConnection">;
|
|
58
58
|
domain: string;
|
|
59
|
-
groupId:
|
|
59
|
+
groupId: convex_values3719.GenericId<"Group">;
|
|
60
60
|
isPrimary: boolean;
|
|
61
61
|
}>>;
|
|
62
62
|
//#endregion
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as convex_values3686 from "convex/values";
|
|
2
|
+
import * as convex_server235 from "convex/server";
|
|
3
3
|
|
|
4
4
|
//#region src/component/connection/saml/assertion.d.ts
|
|
5
5
|
declare namespace assertion_d_exports {
|
|
@@ -21,8 +21,8 @@ declare namespace assertion_d_exports {
|
|
|
21
21
|
* first sighting (the row is inserted); returns `false` if the assertion ID was
|
|
22
22
|
* already recorded, signalling a replay the caller must reject.
|
|
23
23
|
*/
|
|
24
|
-
declare const accept:
|
|
25
|
-
connectionId:
|
|
24
|
+
declare const accept: convex_server235.RegisteredMutation<"public", {
|
|
25
|
+
connectionId: convex_values3686.GenericId<"GroupConnection">;
|
|
26
26
|
expiresAt: number;
|
|
27
27
|
assertionId: string;
|
|
28
28
|
}, Promise<boolean>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as convex_values3621 from "convex/values";
|
|
2
|
+
import * as convex_server215 from "convex/server";
|
|
3
3
|
|
|
4
4
|
//#region src/component/connection/saml/request.d.ts
|
|
5
5
|
declare namespace request_d_exports {
|
|
@@ -17,11 +17,11 @@ declare namespace request_d_exports {
|
|
|
17
17
|
* @module
|
|
18
18
|
*/
|
|
19
19
|
/** Persist a pending SAML AuthnRequest ID so the ACS handler can accept it once. */
|
|
20
|
-
declare const create:
|
|
20
|
+
declare const create: convex_server215.RegisteredMutation<"public", {
|
|
21
21
|
requestId: string;
|
|
22
|
-
connectionId:
|
|
22
|
+
connectionId: convex_values3621.GenericId<"GroupConnection">;
|
|
23
23
|
expiresAt: number;
|
|
24
|
-
}, Promise<
|
|
24
|
+
}, Promise<convex_values3621.GenericId<"SamlLoginRequest">>>;
|
|
25
25
|
/**
|
|
26
26
|
* Atomically accept a pending SAML AuthnRequest by its `requestId`. Returns
|
|
27
27
|
* `true` only when a matching, unaccepted, unexpired row existed and was
|
|
@@ -36,8 +36,8 @@ declare const create: convex_server157.RegisteredMutation<"public", {
|
|
|
36
36
|
* connection can still accept it (a wrong-connection probe cannot burn a
|
|
37
37
|
* legitimate pending request).
|
|
38
38
|
*/
|
|
39
|
-
declare const accept:
|
|
40
|
-
connectionId?:
|
|
39
|
+
declare const accept: convex_server215.RegisteredMutation<"public", {
|
|
40
|
+
connectionId?: convex_values3621.GenericId<"GroupConnection"> | undefined;
|
|
41
41
|
requestId: string;
|
|
42
42
|
now: number;
|
|
43
43
|
}, Promise<boolean>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as convex_values3778 from "convex/values";
|
|
2
|
+
import * as convex_server267 from "convex/server";
|
|
3
3
|
|
|
4
4
|
//#region src/component/connection/scim/config.d.ts
|
|
5
5
|
declare namespace config_d_exports {
|
|
@@ -18,30 +18,30 @@ declare namespace config_d_exports {
|
|
|
18
18
|
* Read a SCIM config. Overloaded: lookup by `{ tokenHash }` (bearer-token
|
|
19
19
|
* resolution) or by `{ connectionId }`. Returns `null` when nothing matches.
|
|
20
20
|
*/
|
|
21
|
-
declare const get:
|
|
22
|
-
connectionId?:
|
|
21
|
+
declare const get: convex_server267.RegisteredQuery<"public", {
|
|
22
|
+
connectionId?: convex_values3778.GenericId<"GroupConnection"> | undefined;
|
|
23
23
|
tokenHash?: string | undefined;
|
|
24
24
|
}, Promise<{
|
|
25
|
-
_id:
|
|
25
|
+
_id: convex_values3778.GenericId<"GroupConnectionScimConfig">;
|
|
26
26
|
_creationTime: number;
|
|
27
27
|
extend?: any;
|
|
28
28
|
lastRotatedAt?: number | undefined;
|
|
29
|
-
connectionId:
|
|
30
|
-
groupId:
|
|
29
|
+
connectionId: convex_values3778.GenericId<"GroupConnection">;
|
|
30
|
+
groupId: convex_values3778.GenericId<"Group">;
|
|
31
31
|
status: "active" | "draft" | "disabled";
|
|
32
32
|
tokenHash: string;
|
|
33
33
|
basePath: string;
|
|
34
34
|
} | null>>;
|
|
35
35
|
/** Insert a SCIM config, or patch it when one already exists for the connection (keyed by `connectionId`). */
|
|
36
|
-
declare const upsert:
|
|
36
|
+
declare const upsert: convex_server267.RegisteredMutation<"public", {
|
|
37
37
|
extend?: any;
|
|
38
38
|
lastRotatedAt?: number | undefined;
|
|
39
|
-
connectionId:
|
|
40
|
-
groupId:
|
|
39
|
+
connectionId: convex_values3778.GenericId<"GroupConnection">;
|
|
40
|
+
groupId: convex_values3778.GenericId<"Group">;
|
|
41
41
|
status: "active" | "draft" | "disabled";
|
|
42
42
|
tokenHash: string;
|
|
43
43
|
basePath: string;
|
|
44
|
-
}, Promise<
|
|
44
|
+
}, Promise<convex_values3778.GenericId<"GroupConnectionScimConfig">>>;
|
|
45
45
|
//#endregion
|
|
46
46
|
export { config_d_exports };
|
|
47
47
|
//# sourceMappingURL=config.d.ts.map
|