@estifanos-sh/convex-auth 0.0.8 → 0.0.9

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.
Files changed (80) hide show
  1. package/README.md +2 -1
  2. package/dist/component/account.d.ts +29 -29
  3. package/dist/component/connection/audit.d.ts +7 -7
  4. package/dist/component/connection/cache.d.ts +6 -6
  5. package/dist/component/connection/domain/verification.d.ts +15 -15
  6. package/dist/component/connection/domain.d.ts +18 -18
  7. package/dist/component/connection/saml/assertion.d.ts +4 -4
  8. package/dist/component/connection/saml/request.d.ts +7 -7
  9. package/dist/component/connection/scim/config.d.ts +11 -11
  10. package/dist/component/connection/scim/identity.d.ts +47 -47
  11. package/dist/component/connection/secret.d.ts +13 -13
  12. package/dist/component/connection/webhook/delivery.d.ts +33 -33
  13. package/dist/component/connection/webhook/endpoint.d.ts +16 -16
  14. package/dist/component/connection.d.ts +25 -25
  15. package/dist/component/context.d.ts +16 -16
  16. package/dist/component/crons.d.ts +2 -2
  17. package/dist/component/event.d.ts +12 -12
  18. package/dist/component/factor/device.d.ts +21 -21
  19. package/dist/component/factor/passkey.d.ts +67 -67
  20. package/dist/component/factor/totp.d.ts +42 -42
  21. package/dist/component/group/active.d.ts +78 -78
  22. package/dist/component/group/invite.d.ts +21 -21
  23. package/dist/component/group/member.d.ts +26 -26
  24. package/dist/component/group.d.ts +33 -33
  25. package/dist/component/http.d.ts +2 -2
  26. package/dist/component/limits.d.ts +4 -4
  27. package/dist/component/maintenance.d.ts +2 -2
  28. package/dist/component/model.d.ts +440 -440
  29. package/dist/component/oauth/client.d.ts +18 -18
  30. package/dist/component/oauth/code.d.ts +11 -11
  31. package/dist/component/oauth/refresh.d.ts +16 -16
  32. package/dist/component/schema.d.ts +621 -621
  33. package/dist/component/session.d.ts +26 -26
  34. package/dist/component/token/continuation.d.ts +14 -14
  35. package/dist/component/token/enrollment.d.ts +7 -7
  36. package/dist/component/token/pkce.d.ts +22 -22
  37. package/dist/component/token/pkce.d.ts.map +1 -1
  38. package/dist/component/token/refresh.d.ts +31 -31
  39. package/dist/component/token/verification.d.ts +25 -25
  40. package/dist/component/user/email.d.ts +17 -17
  41. package/dist/component/user/key.d.ts +17 -17
  42. package/dist/component/user.d.ts +25 -25
  43. package/dist/component/user.d.ts.map +1 -1
  44. package/dist/providers/anonymous.d.ts +1 -1
  45. package/dist/providers/anonymous.js +1 -1
  46. package/dist/providers/anonymous.js.map +1 -1
  47. package/dist/providers/connection.d.ts +1 -1
  48. package/dist/providers/connection.js +1 -1
  49. package/dist/providers/connection.js.map +1 -1
  50. package/dist/providers/credentials.d.ts +1 -1
  51. package/dist/providers/credentials.js +1 -1
  52. package/dist/providers/credentials.js.map +1 -1
  53. package/dist/providers/custom.d.ts +2 -2
  54. package/dist/providers/custom.js +1 -1
  55. package/dist/providers/custom.js.map +1 -1
  56. package/dist/providers/device.d.ts +1 -1
  57. package/dist/providers/device.js +1 -1
  58. package/dist/providers/device.js.map +1 -1
  59. package/dist/providers/email.d.ts +2 -2
  60. package/dist/providers/email.js +1 -1
  61. package/dist/providers/email.js.map +1 -1
  62. package/dist/providers/password.js +1 -1
  63. package/dist/providers/password.js.map +1 -1
  64. package/dist/providers/phone.d.ts +2 -2
  65. package/dist/providers/phone.js +1 -1
  66. package/dist/providers/phone.js.map +1 -1
  67. package/dist/providers/totp.d.ts +1 -1
  68. package/dist/providers/totp.js +1 -1
  69. package/dist/providers/totp.js.map +1 -1
  70. package/dist/providers/webauthn/attestation.d.ts +1 -1
  71. package/dist/providers/webauthn/attestation.js +1 -1
  72. package/dist/providers/webauthn/attestation.js.map +1 -1
  73. package/dist/providers/webauthn.d.ts +1 -1
  74. package/dist/providers/webauthn.js +1 -1
  75. package/dist/providers/webauthn.js.map +1 -1
  76. package/dist/server/cors.d.ts +2 -2
  77. package/dist/server/validators.d.ts +625 -625
  78. package/package.json +1 -5
  79. package/dist/providers/index.d.ts +0 -17
  80. package/dist/providers/index.js +0 -16
package/README.md CHANGED
@@ -29,7 +29,8 @@ Then define your providers and permissions with `defineAuth`:
29
29
 
30
30
  ```ts
31
31
  import { definePermissions } from "@estifanos-sh/convex-auth/permissions";
32
- import { password, webauthn } from "@estifanos-sh/convex-auth/providers";
32
+ import { password } from "@estifanos-sh/convex-auth/providers/password";
33
+ import { webauthn } from "@estifanos-sh/convex-auth/providers/webauthn";
33
34
  import { defineAuth } from "@estifanos-sh/convex-auth/server";
34
35
  import { components } from "./_generated/api";
35
36
 
@@ -1,6 +1,6 @@
1
1
  import { SessionRows } from "./session.js";
2
- import * as convex_values2300 from "convex/values";
3
- import * as convex_server56 from "convex/server";
2
+ import * as convex_values2496 from "convex/values";
3
+ import * as convex_server96 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: convex_server56.RegisteredMutation<"public", {
13
+ declare const beginCredentialsSignIn: convex_server96.RegisteredMutation<"public", {
14
14
  provider: string;
15
15
  providerAccountId: string;
16
16
  limitIdentifier: string;
@@ -30,18 +30,18 @@ declare const beginCredentialsSignIn: convex_server56.RegisteredMutation<"public
30
30
  } | {
31
31
  status: "ready";
32
32
  account: {
33
- _id: convex_values2300.GenericId<"Account">;
33
+ _id: convex_values2496.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: convex_values2300.GenericId<"User">;
39
+ userId: convex_values2496.GenericId<"User">;
40
40
  provider: string;
41
41
  providerAccountId: string;
42
42
  };
43
43
  user: {
44
- _id: convex_values2300.GenericId<"User">;
44
+ _id: convex_values2496.GenericId<"User">;
45
45
  _creationTime: number;
46
46
  email?: string | undefined;
47
47
  phone?: string | undefined;
@@ -53,20 +53,20 @@ declare const beginCredentialsSignIn: convex_server56.RegisteredMutation<"public
53
53
  emailVerificationTime?: number | undefined;
54
54
  phoneVerificationTime?: number | undefined;
55
55
  isAnonymous?: boolean | undefined;
56
- lastActiveGroup?: convex_values2300.GenericId<"Group"> | undefined;
56
+ lastActiveGroup?: convex_values2496.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: convex_server56.RegisteredMutation<"public", {
62
+ declare const completeCredentialsSignIn: convex_server96.RegisteredMutation<"public", {
63
63
  replaceSession?: {
64
- sessionId: convex_values2300.GenericId<"Session">;
65
- authenticatedUserId: convex_values2300.GenericId<"User">;
64
+ sessionId: convex_values2496.GenericId<"Session">;
65
+ authenticatedUserId: convex_values2496.GenericId<"User">;
66
66
  } | undefined;
67
67
  sessionExpirationTime: number;
68
68
  refreshTokenExpirationTime: number;
69
- accountId: convex_values2300.GenericId<"Account">;
69
+ accountId: convex_values2496.GenericId<"Account">;
70
70
  limitIdentifier: string;
71
71
  issueSession: boolean;
72
72
  generateTokens: boolean;
@@ -79,18 +79,18 @@ declare const completeCredentialsSignIn: convex_server56.RegisteredMutation<"pub
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: convex_server56.RegisteredQuery<"public", {
83
- id?: convex_values2300.GenericId<"Account"> | undefined;
82
+ declare const get: convex_server96.RegisteredQuery<"public", {
83
+ id?: convex_values2496.GenericId<"Account"> | undefined;
84
84
  provider?: string | undefined;
85
85
  providerAccountId?: string | undefined;
86
86
  }, Promise<{
87
- _id: convex_values2300.GenericId<"Account">;
87
+ _id: convex_values2496.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: convex_values2300.GenericId<"User">;
93
+ userId: convex_values2496.GenericId<"User">;
94
94
  provider: string;
95
95
  providerAccountId: string;
96
96
  } | null>>;
@@ -101,34 +101,34 @@ declare const get: convex_server56.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: convex_server56.RegisteredQuery<"public", {
105
- userId?: convex_values2300.GenericId<"User"> | undefined;
104
+ declare const list: convex_server96.RegisteredQuery<"public", {
105
+ userId?: convex_values2496.GenericId<"User"> | undefined;
106
106
  provider?: string | undefined;
107
- userIds?: convex_values2300.GenericId<"User">[] | undefined;
107
+ userIds?: convex_values2496.GenericId<"User">[] | undefined;
108
108
  }, Promise<{
109
- _id: convex_values2300.GenericId<"Account">;
109
+ _id: convex_values2496.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: convex_values2300.GenericId<"User">;
115
+ userId: convex_values2496.GenericId<"User">;
116
116
  provider: string;
117
117
  providerAccountId: string;
118
118
  }[]>>;
119
119
  /** Insert a new account. */
120
- declare const create: convex_server56.RegisteredMutation<"public", {
120
+ declare const create: convex_server96.RegisteredMutation<"public", {
121
121
  extend?: any;
122
122
  secret?: string | undefined;
123
- userId: convex_values2300.GenericId<"User">;
123
+ userId: convex_values2496.GenericId<"User">;
124
124
  provider: string;
125
125
  providerAccountId: string;
126
- }, Promise<convex_values2300.GenericId<"Account">>>;
126
+ }, Promise<convex_values2496.GenericId<"Account">>>;
127
127
  /** Patch fields on an account. */
128
- declare const update: convex_server56.RegisteredMutation<"public", {
129
- id: convex_values2300.GenericId<"Account">;
128
+ declare const update: convex_server96.RegisteredMutation<"public", {
129
+ id: convex_values2496.GenericId<"Account">;
130
130
  patch: {
131
- userId?: convex_values2300.GenericId<"User"> | undefined;
131
+ userId?: convex_values2496.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_server56.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: convex_server56.RegisteredMutation<"public", {
145
- userId?: convex_values2300.GenericId<"User"> | undefined;
144
+ declare const remove: convex_server96.RegisteredMutation<"public", {
145
+ userId?: convex_values2496.GenericId<"User"> | undefined;
146
146
  requireOtherAccount?: boolean | undefined;
147
- id: convex_values2300.GenericId<"Account">;
147
+ id: convex_values2496.GenericId<"Account">;
148
148
  }, Promise<null>>;
149
149
  //#endregion
150
150
  export { account_d_exports };
@@ -1,5 +1,5 @@
1
- import * as convex_values2754 from "convex/values";
2
- import * as convex_server172 from "convex/server";
1
+ import * as convex_values2817 from "convex/values";
2
+ import * as convex_server194 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: convex_server172.RegisteredQuery<"public", {
18
+ declare const list: convex_server194.RegisteredQuery<"public", {
19
19
  paginationOpts: {
20
20
  id?: number;
21
21
  endCursor?: string | null;
@@ -25,12 +25,12 @@ declare const list: convex_server172.RegisteredQuery<"public", {
25
25
  cursor: string | null;
26
26
  };
27
27
  scope: {
28
- connectionId: convex_values2754.GenericId<"GroupConnection">;
28
+ connectionId: convex_values2817.GenericId<"GroupConnection">;
29
29
  } | {
30
- groupId: convex_values2754.GenericId<"Group">;
30
+ groupId: convex_values2817.GenericId<"Group">;
31
31
  };
32
- }, Promise<convex_server172.PaginationResult<{
33
- _id: convex_values2754.GenericId<"AuthEventProjection">;
32
+ }, Promise<convex_server194.PaginationResult<{
33
+ _id: convex_values2817.GenericId<"AuthEventProjection">;
34
34
  _creationTime: number;
35
35
  requestId?: string | undefined;
36
36
  ip?: string | undefined;
@@ -1,4 +1,4 @@
1
- import * as convex_server193 from "convex/server";
1
+ import * as convex_server196 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: convex_server193.RegisteredAction<"public", {
30
+ declare const oidcDiscovery: convex_server196.RegisteredAction<"public", {
31
31
  runtimeOrigin?: string | undefined;
32
32
  externalHost?: string | undefined;
33
33
  url: string;
@@ -45,7 +45,7 @@ declare const oidcDiscovery: convex_server193.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: convex_server193.RegisteredAction<"public", {
48
+ declare const oidcStatusDiscovery: convex_server196.RegisteredAction<"public", {
49
49
  runtimeOrigin?: string | undefined;
50
50
  externalHost?: string | undefined;
51
51
  url: string;
@@ -61,19 +61,19 @@ declare const oidcStatusDiscovery: convex_server193.RegisteredAction<"public", {
61
61
  /**
62
62
  * Read-through fetch for SAML IdP metadata XML. Cached 24h per URL.
63
63
  */
64
- declare const samlMetadata: convex_server193.RegisteredAction<"public", {
64
+ declare const samlMetadata: convex_server196.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: convex_server193.RegisteredMutation<"public", {
70
+ declare const invalidateOidcDiscovery: convex_server196.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: convex_server193.RegisteredMutation<"public", {
76
+ declare const invalidateSamlMetadata: convex_server196.RegisteredMutation<"public", {
77
77
  runtimeOrigin?: string | undefined;
78
78
  externalHost?: string | undefined;
79
79
  url: string;
@@ -1,5 +1,5 @@
1
- import * as convex_values2829 from "convex/values";
2
- import * as convex_server198 from "convex/server";
1
+ import * as convex_values2763 from "convex/values";
2
+ import * as convex_server179 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: convex_server198.RegisteredQuery<"public", {
16
- domainId: convex_values2829.GenericId<"GroupConnectionDomain">;
15
+ declare const get: convex_server179.RegisteredQuery<"public", {
16
+ domainId: convex_values2763.GenericId<"GroupConnectionDomain">;
17
17
  }, Promise<{
18
- _id: convex_values2829.GenericId<"GroupConnectionDomainVerification">;
18
+ _id: convex_values2763.GenericId<"GroupConnectionDomainVerification">;
19
19
  _creationTime: number;
20
- connectionId: convex_values2829.GenericId<"GroupConnection">;
20
+ connectionId: convex_values2763.GenericId<"GroupConnection">;
21
21
  domain: string;
22
22
  recordName: string;
23
23
  expiresAt: number;
24
- groupId: convex_values2829.GenericId<"Group">;
24
+ groupId: convex_values2763.GenericId<"Group">;
25
25
  tokenHash: string;
26
- domainId: convex_values2829.GenericId<"GroupConnectionDomain">;
26
+ domainId: convex_values2763.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: convex_server198.RegisteredMutation<"public", {
32
- connectionId: convex_values2829.GenericId<"GroupConnection">;
31
+ declare const upsert: convex_server179.RegisteredMutation<"public", {
32
+ connectionId: convex_values2763.GenericId<"GroupConnection">;
33
33
  domain: string;
34
34
  recordName: string;
35
35
  expiresAt: number;
36
- groupId: convex_values2829.GenericId<"Group">;
36
+ groupId: convex_values2763.GenericId<"Group">;
37
37
  tokenHash: string;
38
- domainId: convex_values2829.GenericId<"GroupConnectionDomain">;
38
+ domainId: convex_values2763.GenericId<"GroupConnectionDomain">;
39
39
  token: string;
40
40
  requestedAt: number;
41
- }, Promise<convex_values2829.GenericId<"GroupConnectionDomainVerification">>>;
41
+ }, Promise<convex_values2763.GenericId<"GroupConnectionDomainVerification">>>;
42
42
  /** Delete a domain's verification record, if any. */
43
- declare const remove: convex_server198.RegisteredMutation<"public", {
44
- domainId: convex_values2829.GenericId<"GroupConnectionDomain">;
43
+ declare const remove: convex_server179.RegisteredMutation<"public", {
44
+ domainId: convex_values2763.GenericId<"GroupConnectionDomain">;
45
45
  }, Promise<null>>;
46
46
  //#endregion
47
47
  export { verification_d_exports };
@@ -1,5 +1,5 @@
1
- import * as convex_values2817 from "convex/values";
2
- import * as convex_server189 from "convex/server";
1
+ import * as convex_values2751 from "convex/values";
2
+ import * as convex_server175 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: convex_server189.RegisteredQuery<"public", {
18
+ declare const list: convex_server175.RegisteredQuery<"public", {
19
19
  limit?: number | undefined;
20
- connectionId: convex_values2817.GenericId<"GroupConnection">;
20
+ connectionId: convex_values2751.GenericId<"GroupConnection">;
21
21
  }, Promise<{
22
- _id: convex_values2817.GenericId<"GroupConnectionDomain">;
22
+ _id: convex_values2751.GenericId<"GroupConnectionDomain">;
23
23
  _creationTime: number;
24
24
  verifiedAt?: number | undefined;
25
- connectionId: convex_values2817.GenericId<"GroupConnection">;
25
+ connectionId: convex_values2751.GenericId<"GroupConnection">;
26
26
  domain: string;
27
- groupId: convex_values2817.GenericId<"Group">;
27
+ groupId: convex_values2751.GenericId<"Group">;
28
28
  isPrimary: boolean;
29
29
  }[]>>;
30
30
  /**
@@ -33,30 +33,30 @@ declare const list: convex_server189.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: convex_server189.RegisteredMutation<"public", {
36
+ declare const create: convex_server175.RegisteredMutation<"public", {
37
37
  isPrimary?: boolean | undefined;
38
- connectionId: convex_values2817.GenericId<"GroupConnection">;
38
+ connectionId: convex_values2751.GenericId<"GroupConnection">;
39
39
  domain: string;
40
- groupId: convex_values2817.GenericId<"Group">;
41
- }, Promise<convex_values2817.GenericId<"GroupConnectionDomain">>>;
40
+ groupId: convex_values2751.GenericId<"Group">;
41
+ }, Promise<convex_values2751.GenericId<"GroupConnectionDomain">>>;
42
42
  /** Delete a domain and its dependent verification record, if any. */
43
- declare const remove: convex_server189.RegisteredMutation<"public", {
44
- id: convex_values2817.GenericId<"GroupConnectionDomain">;
43
+ declare const remove: convex_server175.RegisteredMutation<"public", {
44
+ id: convex_values2751.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: convex_server189.RegisteredMutation<"public", {
51
- id: convex_values2817.GenericId<"GroupConnectionDomain">;
50
+ declare const verify: convex_server175.RegisteredMutation<"public", {
51
+ id: convex_values2751.GenericId<"GroupConnectionDomain">;
52
52
  verifiedAt: number;
53
53
  }, Promise<{
54
- _id: convex_values2817.GenericId<"GroupConnectionDomain">;
54
+ _id: convex_values2751.GenericId<"GroupConnectionDomain">;
55
55
  _creationTime: number;
56
56
  verifiedAt?: number | undefined;
57
- connectionId: convex_values2817.GenericId<"GroupConnection">;
57
+ connectionId: convex_values2751.GenericId<"GroupConnection">;
58
58
  domain: string;
59
- groupId: convex_values2817.GenericId<"Group">;
59
+ groupId: convex_values2751.GenericId<"Group">;
60
60
  isPrimary: boolean;
61
61
  }>>;
62
62
  //#endregion
@@ -1,5 +1,5 @@
1
- import * as convex_values2816 from "convex/values";
2
- import * as convex_server188 from "convex/server";
1
+ import * as convex_values2750 from "convex/values";
2
+ import * as convex_server174 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: convex_server188.RegisteredMutation<"public", {
25
- connectionId: convex_values2816.GenericId<"GroupConnection">;
24
+ declare const accept: convex_server174.RegisteredMutation<"public", {
25
+ connectionId: convex_values2750.GenericId<"GroupConnection">;
26
26
  expiresAt: number;
27
27
  assertionId: string;
28
28
  }, Promise<boolean>>;
@@ -1,5 +1,5 @@
1
- import * as convex_values2813 from "convex/values";
2
- import * as convex_server186 from "convex/server";
1
+ import * as convex_values2747 from "convex/values";
2
+ import * as convex_server172 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: convex_server186.RegisteredMutation<"public", {
20
+ declare const create: convex_server172.RegisteredMutation<"public", {
21
21
  requestId: string;
22
- connectionId: convex_values2813.GenericId<"GroupConnection">;
22
+ connectionId: convex_values2747.GenericId<"GroupConnection">;
23
23
  expiresAt: number;
24
- }, Promise<convex_values2813.GenericId<"SamlLoginRequest">>>;
24
+ }, Promise<convex_values2747.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_server186.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: convex_server186.RegisteredMutation<"public", {
40
- connectionId?: convex_values2813.GenericId<"GroupConnection"> | undefined;
39
+ declare const accept: convex_server172.RegisteredMutation<"public", {
40
+ connectionId?: convex_values2747.GenericId<"GroupConnection"> | undefined;
41
41
  requestId: string;
42
42
  now: number;
43
43
  }, Promise<boolean>>;
@@ -1,5 +1,5 @@
1
- import * as convex_values2757 from "convex/values";
2
- import * as convex_server174 from "convex/server";
1
+ import * as convex_values2604 from "convex/values";
2
+ import * as convex_server130 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: convex_server174.RegisteredQuery<"public", {
22
- connectionId?: convex_values2757.GenericId<"GroupConnection"> | undefined;
21
+ declare const get: convex_server130.RegisteredQuery<"public", {
22
+ connectionId?: convex_values2604.GenericId<"GroupConnection"> | undefined;
23
23
  tokenHash?: string | undefined;
24
24
  }, Promise<{
25
- _id: convex_values2757.GenericId<"GroupConnectionScimConfig">;
25
+ _id: convex_values2604.GenericId<"GroupConnectionScimConfig">;
26
26
  _creationTime: number;
27
27
  extend?: any;
28
28
  lastRotatedAt?: number | undefined;
29
- connectionId: convex_values2757.GenericId<"GroupConnection">;
30
- groupId: convex_values2757.GenericId<"Group">;
29
+ connectionId: convex_values2604.GenericId<"GroupConnection">;
30
+ groupId: convex_values2604.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: convex_server174.RegisteredMutation<"public", {
36
+ declare const upsert: convex_server130.RegisteredMutation<"public", {
37
37
  extend?: any;
38
38
  lastRotatedAt?: number | undefined;
39
- connectionId: convex_values2757.GenericId<"GroupConnection">;
40
- groupId: convex_values2757.GenericId<"Group">;
39
+ connectionId: convex_values2604.GenericId<"GroupConnection">;
40
+ groupId: convex_values2604.GenericId<"Group">;
41
41
  status: "active" | "draft" | "disabled";
42
42
  tokenHash: string;
43
43
  basePath: string;
44
- }, Promise<convex_values2757.GenericId<"GroupConnectionScimConfig">>>;
44
+ }, Promise<convex_values2604.GenericId<"GroupConnectionScimConfig">>>;
45
45
  //#endregion
46
46
  export { config_d_exports };
47
47
  //# sourceMappingURL=config.d.ts.map