@convex-dev/better-auth 0.11.5 → 0.12.0
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-options.d.ts.map +1 -1
- package/dist/auth-options.js +1 -0
- package/dist/auth-options.js.map +1 -1
- package/dist/client/adapter-utils.d.ts +8 -2
- package/dist/client/adapter-utils.d.ts.map +1 -1
- package/dist/client/adapter-utils.js +8 -3
- package/dist/client/adapter-utils.js.map +1 -1
- package/dist/client/adapter.d.ts.map +1 -1
- package/dist/client/adapter.js +5 -0
- package/dist/client/adapter.js.map +1 -1
- package/dist/client/create-api.d.ts +6 -0
- package/dist/client/create-api.d.ts.map +1 -1
- package/dist/client/create-api.js +1 -0
- package/dist/client/create-api.js.map +1 -1
- package/dist/client/create-schema.d.ts.map +1 -1
- package/dist/client/create-schema.js +38 -8
- package/dist/client/create-schema.js.map +1 -1
- package/dist/component/_generated/component.d.ts +543 -28
- package/dist/component/_generated/component.d.ts.map +1 -1
- package/dist/component/adapter.d.ts +6 -0
- package/dist/component/adapter.d.ts.map +1 -1
- package/dist/component/schema.d.ts +9 -4
- package/dist/component/schema.d.ts.map +1 -1
- package/dist/component/schema.js +4 -2
- package/dist/component/schema.js.map +1 -1
- package/dist/component/testProfiles/adapterAdditionalFields.d.ts +6 -0
- package/dist/component/testProfiles/adapterAdditionalFields.d.ts.map +1 -1
- package/dist/component/testProfiles/adapterOrganizationJoins.d.ts +6 -0
- package/dist/component/testProfiles/adapterOrganizationJoins.d.ts.map +1 -1
- package/dist/component/testProfiles/adapterPluginTable.d.ts +6 -0
- package/dist/component/testProfiles/adapterPluginTable.d.ts.map +1 -1
- package/dist/component/testProfiles/adapterRenameField.d.ts +6 -0
- package/dist/component/testProfiles/adapterRenameField.d.ts.map +1 -1
- package/dist/component/testProfiles/adapterRenameUserCustom.d.ts +6 -0
- package/dist/component/testProfiles/adapterRenameUserCustom.d.ts.map +1 -1
- package/dist/component/testProfiles/adapterRenameUserTable.d.ts +6 -0
- package/dist/component/testProfiles/adapterRenameUserTable.d.ts.map +1 -1
- package/dist/component/testProfiles/schema.profile-additional-fields.d.ts +3 -1
- package/dist/component/testProfiles/schema.profile-additional-fields.d.ts.map +1 -1
- package/dist/component/testProfiles/schema.profile-plugin-table.d.ts +3 -1
- package/dist/component/testProfiles/schema.profile-plugin-table.d.ts.map +1 -1
- package/dist/plugins/convex/client.d.ts +1 -0
- package/dist/plugins/convex/client.d.ts.map +1 -1
- package/dist/plugins/convex/client.js +2 -0
- package/dist/plugins/convex/client.js.map +1 -1
- package/dist/plugins/convex/index.d.ts +2 -1
- package/dist/plugins/convex/index.d.ts.map +1 -1
- package/dist/plugins/convex/index.js +15 -2
- package/dist/plugins/convex/index.js.map +1 -1
- package/dist/plugins/cross-domain/client.d.ts +1 -12
- package/dist/plugins/cross-domain/client.d.ts.map +1 -1
- package/dist/plugins/cross-domain/client.js +14 -26
- package/dist/plugins/cross-domain/client.js.map +1 -1
- package/dist/plugins/cross-domain/index.d.ts +1 -0
- package/dist/plugins/cross-domain/index.d.ts.map +1 -1
- package/dist/plugins/cross-domain/index.js +15 -4
- package/dist/plugins/cross-domain/index.js.map +1 -1
- package/dist/test/adapter-factory/basic.d.ts +4 -0
- package/dist/test/adapter-factory/basic.d.ts.map +1 -1
- package/dist/test/adapter-factory/convex-custom.d.ts +1 -1
- package/dist/test/adapter-factory/convex-custom.d.ts.map +1 -1
- package/dist/test/adapter-factory/convex-custom.js +20 -0
- package/dist/test/adapter-factory/convex-custom.js.map +1 -1
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +5 -1
- package/dist/utils/index.js.map +1 -1
- package/dist/version.d.ts +2 -0
- package/dist/version.d.ts.map +1 -0
- package/dist/version.js +2 -0
- package/dist/version.js.map +1 -0
- package/package.json +6 -5
- package/src/auth-options.ts +1 -0
- package/src/client/adapter-utils.ts +13 -5
- package/src/client/adapter.ts +7 -0
- package/src/client/create-api.ts +3 -0
- package/src/client/create-schema.ts +46 -8
- package/src/component/_generated/component.ts +718 -35
- package/src/component/schema.ts +5 -3
- package/src/plugins/convex/client.ts +2 -0
- package/src/plugins/convex/index.ts +16 -3
- package/src/plugins/cross-domain/client.test.ts +41 -30
- package/src/plugins/cross-domain/client.ts +17 -44
- package/src/plugins/cross-domain/index.test.ts +129 -51
- package/src/plugins/cross-domain/index.ts +20 -7
- package/src/test/adapter-factory/convex-custom.ts +23 -0
- package/src/utils/index.ts +6 -1
- package/src/version.ts +1 -0
|
@@ -13,6 +13,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
13
13
|
join?: any;
|
|
14
14
|
select?: string[] | undefined;
|
|
15
15
|
where?: {
|
|
16
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
16
17
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
17
18
|
connector?: "AND" | "OR" | undefined;
|
|
18
19
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -29,6 +30,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
29
30
|
direction: "asc" | "desc";
|
|
30
31
|
} | undefined;
|
|
31
32
|
where?: {
|
|
33
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
32
34
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
33
35
|
connector?: "AND" | "OR" | undefined;
|
|
34
36
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -47,6 +49,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
47
49
|
onUpdateHandle?: string | undefined;
|
|
48
50
|
input: {
|
|
49
51
|
where?: {
|
|
52
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
50
53
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
51
54
|
connector?: "AND" | "OR" | undefined;
|
|
52
55
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -63,6 +66,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
63
66
|
onUpdateHandle?: string | undefined;
|
|
64
67
|
input: {
|
|
65
68
|
where?: {
|
|
69
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
66
70
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
67
71
|
connector?: "AND" | "OR" | undefined;
|
|
68
72
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -94,6 +98,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
94
98
|
onDeleteHandle?: string | undefined;
|
|
95
99
|
input: {
|
|
96
100
|
where?: {
|
|
101
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
97
102
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
98
103
|
connector?: "AND" | "OR" | undefined;
|
|
99
104
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -105,6 +110,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
105
110
|
onDeleteHandle?: string | undefined;
|
|
106
111
|
input: {
|
|
107
112
|
where?: {
|
|
113
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
108
114
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
109
115
|
connector?: "AND" | "OR" | undefined;
|
|
110
116
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adapter.d.ts","sourceRoot":"","sources":["../../src/component/adapter.ts"],"names":[],"mappings":"AAIA,eAAO,MACL,MAAM;;;;;;;;;;;kBACN,OAAO
|
|
1
|
+
{"version":3,"file":"adapter.d.ts","sourceRoot":"","sources":["../../src/component/adapter.ts"],"names":[],"mappings":"AAIA,eAAO,MACL,MAAM;;;;;;;;;;;kBACN,OAAO;;;;;;;;;;;6DACP,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;gGACR,SAAS;;;;;;;;;;;;;;;;;kBACT,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KACV,SAAS;;;;;;;;;;;;kEACT,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;GACwB,CAAC"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* This file is auto-generated. Do not edit this file manually.
|
|
3
|
-
* To regenerate the schema,
|
|
4
|
-
*
|
|
3
|
+
* To regenerate the schema, from your project root:
|
|
4
|
+
*
|
|
5
|
+
* npx auth generate --output src/component/schema.ts
|
|
5
6
|
*
|
|
6
7
|
* To customize the schema, generate to an alternate file and import
|
|
7
8
|
* the table definitions to your schema file. See
|
|
@@ -114,6 +115,7 @@ export declare const tables: {
|
|
|
114
115
|
identifier: ["identifier", "_creationTime"];
|
|
115
116
|
}, {}, {}>;
|
|
116
117
|
twoFactor: import("convex/server").TableDefinition<import("convex/values").VObject<{
|
|
118
|
+
verified?: boolean | null | undefined;
|
|
117
119
|
userId: string;
|
|
118
120
|
secret: string;
|
|
119
121
|
backupCodes: string;
|
|
@@ -121,7 +123,8 @@ export declare const tables: {
|
|
|
121
123
|
secret: import("convex/values").VString<string, "required">;
|
|
122
124
|
backupCodes: import("convex/values").VString<string, "required">;
|
|
123
125
|
userId: import("convex/values").VString<string, "required">;
|
|
124
|
-
|
|
126
|
+
verified: import("convex/values").VUnion<boolean | null | undefined, [import("convex/values").VNull<null, "required">, import("convex/values").VBoolean<boolean, "required">], "optional", never>;
|
|
127
|
+
}, "required", "userId" | "secret" | "backupCodes" | "verified">, {
|
|
125
128
|
userId: ["userId", "_creationTime"];
|
|
126
129
|
}, {}, {}>;
|
|
127
130
|
oauthApplication: import("convex/server").TableDefinition<import("convex/values").VObject<{
|
|
@@ -326,6 +329,7 @@ declare const schema: import("convex/server").SchemaDefinition<{
|
|
|
326
329
|
identifier: ["identifier", "_creationTime"];
|
|
327
330
|
}, {}, {}>;
|
|
328
331
|
twoFactor: import("convex/server").TableDefinition<import("convex/values").VObject<{
|
|
332
|
+
verified?: boolean | null | undefined;
|
|
329
333
|
userId: string;
|
|
330
334
|
secret: string;
|
|
331
335
|
backupCodes: string;
|
|
@@ -333,7 +337,8 @@ declare const schema: import("convex/server").SchemaDefinition<{
|
|
|
333
337
|
secret: import("convex/values").VString<string, "required">;
|
|
334
338
|
backupCodes: import("convex/values").VString<string, "required">;
|
|
335
339
|
userId: import("convex/values").VString<string, "required">;
|
|
336
|
-
|
|
340
|
+
verified: import("convex/values").VUnion<boolean | null | undefined, [import("convex/values").VNull<null, "required">, import("convex/values").VBoolean<boolean, "required">], "optional", never>;
|
|
341
|
+
}, "required", "userId" | "secret" | "backupCodes" | "verified">, {
|
|
337
342
|
userId: ["userId", "_creationTime"];
|
|
338
343
|
}, {}, {}>;
|
|
339
344
|
oauthApplication: import("convex/server").TableDefinition<import("convex/values").VObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/component/schema.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/component/schema.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAKH,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwHlB,CAAC;AAEF,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAAuB,CAAC;AAEpC,eAAe,MAAM,CAAC"}
|
package/dist/component/schema.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* This file is auto-generated. Do not edit this file manually.
|
|
3
|
-
* To regenerate the schema,
|
|
4
|
-
*
|
|
3
|
+
* To regenerate the schema, from your project root:
|
|
4
|
+
*
|
|
5
|
+
* npx auth generate --output src/component/schema.ts
|
|
5
6
|
*
|
|
6
7
|
* To customize the schema, generate to an alternate file and import
|
|
7
8
|
* the table definitions to your schema file. See
|
|
@@ -74,6 +75,7 @@ export const tables = {
|
|
|
74
75
|
secret: v.string(),
|
|
75
76
|
backupCodes: v.string(),
|
|
76
77
|
userId: v.string(),
|
|
78
|
+
verified: v.optional(v.union(v.null(), v.boolean())),
|
|
77
79
|
})
|
|
78
80
|
.index("userId", ["userId"]),
|
|
79
81
|
oauthApplication: defineTable({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../src/component/schema.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../src/component/schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -13,6 +13,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
13
13
|
join?: any;
|
|
14
14
|
select?: string[] | undefined;
|
|
15
15
|
where?: {
|
|
16
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
16
17
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
17
18
|
connector?: "AND" | "OR" | undefined;
|
|
18
19
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -29,6 +30,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
29
30
|
direction: "asc" | "desc";
|
|
30
31
|
} | undefined;
|
|
31
32
|
where?: {
|
|
33
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
32
34
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
33
35
|
connector?: "AND" | "OR" | undefined;
|
|
34
36
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -47,6 +49,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
47
49
|
onUpdateHandle?: string | undefined;
|
|
48
50
|
input: {
|
|
49
51
|
where?: {
|
|
52
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
50
53
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
51
54
|
connector?: "AND" | "OR" | undefined;
|
|
52
55
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -63,6 +66,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
63
66
|
onUpdateHandle?: string | undefined;
|
|
64
67
|
input: {
|
|
65
68
|
where?: {
|
|
69
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
66
70
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
67
71
|
connector?: "AND" | "OR" | undefined;
|
|
68
72
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -94,6 +98,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
94
98
|
onDeleteHandle?: string | undefined;
|
|
95
99
|
input: {
|
|
96
100
|
where?: {
|
|
101
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
97
102
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
98
103
|
connector?: "AND" | "OR" | undefined;
|
|
99
104
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -105,6 +110,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
105
110
|
onDeleteHandle?: string | undefined;
|
|
106
111
|
input: {
|
|
107
112
|
where?: {
|
|
113
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
108
114
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
109
115
|
connector?: "AND" | "OR" | undefined;
|
|
110
116
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adapterAdditionalFields.d.ts","sourceRoot":"","sources":["../../../src/component/testProfiles/adapterAdditionalFields.ts"],"names":[],"mappings":"AAIA,eAAO,MACN,MAAM;;;;;;;;;;;kBACN,OAAO
|
|
1
|
+
{"version":3,"file":"adapterAdditionalFields.d.ts","sourceRoot":"","sources":["../../../src/component/testProfiles/adapterAdditionalFields.ts"],"names":[],"mappings":"AAIA,eAAO,MACN,MAAM;;;;;;;;;;;kBACN,OAAO;;;;;;;;;;;6DACP,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;gGACR,SAAS;;;;;;;;;;;;;;;;;kBACT,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KACV,SAAS;;;;;;;;;;;;kEACT,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;GACgD,CAAC"}
|
|
@@ -13,6 +13,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
13
13
|
join?: any;
|
|
14
14
|
select?: string[] | undefined;
|
|
15
15
|
where?: {
|
|
16
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
16
17
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
17
18
|
connector?: "AND" | "OR" | undefined;
|
|
18
19
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -29,6 +30,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
29
30
|
direction: "asc" | "desc";
|
|
30
31
|
} | undefined;
|
|
31
32
|
where?: {
|
|
33
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
32
34
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
33
35
|
connector?: "AND" | "OR" | undefined;
|
|
34
36
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -47,6 +49,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
47
49
|
onUpdateHandle?: string | undefined;
|
|
48
50
|
input: {
|
|
49
51
|
where?: {
|
|
52
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
50
53
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
51
54
|
connector?: "AND" | "OR" | undefined;
|
|
52
55
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -63,6 +66,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
63
66
|
onUpdateHandle?: string | undefined;
|
|
64
67
|
input: {
|
|
65
68
|
where?: {
|
|
69
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
66
70
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
67
71
|
connector?: "AND" | "OR" | undefined;
|
|
68
72
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -94,6 +98,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
94
98
|
onDeleteHandle?: string | undefined;
|
|
95
99
|
input: {
|
|
96
100
|
where?: {
|
|
101
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
97
102
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
98
103
|
connector?: "AND" | "OR" | undefined;
|
|
99
104
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -105,6 +110,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
105
110
|
onDeleteHandle?: string | undefined;
|
|
106
111
|
input: {
|
|
107
112
|
where?: {
|
|
113
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
108
114
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
109
115
|
connector?: "AND" | "OR" | undefined;
|
|
110
116
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adapterOrganizationJoins.d.ts","sourceRoot":"","sources":["../../../src/component/testProfiles/adapterOrganizationJoins.ts"],"names":[],"mappings":"AAIA,eAAO,MACL,MAAM;;;;;;;;;;;kBACN,OAAO
|
|
1
|
+
{"version":3,"file":"adapterOrganizationJoins.d.ts","sourceRoot":"","sources":["../../../src/component/testProfiles/adapterOrganizationJoins.ts"],"names":[],"mappings":"AAIA,eAAO,MACL,MAAM;;;;;;;;;;;kBACN,OAAO;;;;;;;;;;;6DACP,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;gGACR,SAAS;;;;;;;;;;;;;;;;;kBACT,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KACV,SAAS;;;;;;;;;;;;kEACT,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;GACgD,CAAC"}
|
|
@@ -13,6 +13,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
13
13
|
join?: any;
|
|
14
14
|
select?: string[] | undefined;
|
|
15
15
|
where?: {
|
|
16
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
16
17
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
17
18
|
connector?: "AND" | "OR" | undefined;
|
|
18
19
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -29,6 +30,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
29
30
|
direction: "asc" | "desc";
|
|
30
31
|
} | undefined;
|
|
31
32
|
where?: {
|
|
33
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
32
34
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
33
35
|
connector?: "AND" | "OR" | undefined;
|
|
34
36
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -47,6 +49,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
47
49
|
onUpdateHandle?: string | undefined;
|
|
48
50
|
input: {
|
|
49
51
|
where?: {
|
|
52
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
50
53
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
51
54
|
connector?: "AND" | "OR" | undefined;
|
|
52
55
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -63,6 +66,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
63
66
|
onUpdateHandle?: string | undefined;
|
|
64
67
|
input: {
|
|
65
68
|
where?: {
|
|
69
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
66
70
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
67
71
|
connector?: "AND" | "OR" | undefined;
|
|
68
72
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -94,6 +98,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
94
98
|
onDeleteHandle?: string | undefined;
|
|
95
99
|
input: {
|
|
96
100
|
where?: {
|
|
101
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
97
102
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
98
103
|
connector?: "AND" | "OR" | undefined;
|
|
99
104
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -105,6 +110,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
105
110
|
onDeleteHandle?: string | undefined;
|
|
106
111
|
input: {
|
|
107
112
|
where?: {
|
|
113
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
108
114
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
109
115
|
connector?: "AND" | "OR" | undefined;
|
|
110
116
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adapterPluginTable.d.ts","sourceRoot":"","sources":["../../../src/component/testProfiles/adapterPluginTable.ts"],"names":[],"mappings":"AAIA,eAAO,MACL,MAAM;;;;;;;;;;;kBACN,OAAO
|
|
1
|
+
{"version":3,"file":"adapterPluginTable.d.ts","sourceRoot":"","sources":["../../../src/component/testProfiles/adapterPluginTable.ts"],"names":[],"mappings":"AAIA,eAAO,MACL,MAAM;;;;;;;;;;;kBACN,OAAO;;;;;;;;;;;6DACP,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;gGACR,SAAS;;;;;;;;;;;;;;;;;kBACT,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KACV,SAAS;;;;;;;;;;;;kEACT,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;GAC0C,CAAC"}
|
|
@@ -13,6 +13,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
13
13
|
join?: any;
|
|
14
14
|
select?: string[] | undefined;
|
|
15
15
|
where?: {
|
|
16
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
16
17
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
17
18
|
connector?: "AND" | "OR" | undefined;
|
|
18
19
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -29,6 +30,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
29
30
|
direction: "asc" | "desc";
|
|
30
31
|
} | undefined;
|
|
31
32
|
where?: {
|
|
33
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
32
34
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
33
35
|
connector?: "AND" | "OR" | undefined;
|
|
34
36
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -47,6 +49,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
47
49
|
onUpdateHandle?: string | undefined;
|
|
48
50
|
input: {
|
|
49
51
|
where?: {
|
|
52
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
50
53
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
51
54
|
connector?: "AND" | "OR" | undefined;
|
|
52
55
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -63,6 +66,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
63
66
|
onUpdateHandle?: string | undefined;
|
|
64
67
|
input: {
|
|
65
68
|
where?: {
|
|
69
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
66
70
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
67
71
|
connector?: "AND" | "OR" | undefined;
|
|
68
72
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -94,6 +98,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
94
98
|
onDeleteHandle?: string | undefined;
|
|
95
99
|
input: {
|
|
96
100
|
where?: {
|
|
101
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
97
102
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
98
103
|
connector?: "AND" | "OR" | undefined;
|
|
99
104
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -105,6 +110,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
105
110
|
onDeleteHandle?: string | undefined;
|
|
106
111
|
input: {
|
|
107
112
|
where?: {
|
|
113
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
108
114
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
109
115
|
connector?: "AND" | "OR" | undefined;
|
|
110
116
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adapterRenameField.d.ts","sourceRoot":"","sources":["../../../src/component/testProfiles/adapterRenameField.ts"],"names":[],"mappings":"AAIA,eAAO,MACL,MAAM;;;;;;;;;;;kBACN,OAAO
|
|
1
|
+
{"version":3,"file":"adapterRenameField.d.ts","sourceRoot":"","sources":["../../../src/component/testProfiles/adapterRenameField.ts"],"names":[],"mappings":"AAIA,eAAO,MACL,MAAM;;;;;;;;;;;kBACN,OAAO;;;;;;;;;;;6DACP,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;gGACR,SAAS;;;;;;;;;;;;;;;;;kBACT,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KACV,SAAS;;;;;;;;;;;;kEACT,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;GAC0C,CAAC"}
|
|
@@ -13,6 +13,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
13
13
|
join?: any;
|
|
14
14
|
select?: string[] | undefined;
|
|
15
15
|
where?: {
|
|
16
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
16
17
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
17
18
|
connector?: "AND" | "OR" | undefined;
|
|
18
19
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -29,6 +30,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
29
30
|
direction: "asc" | "desc";
|
|
30
31
|
} | undefined;
|
|
31
32
|
where?: {
|
|
33
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
32
34
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
33
35
|
connector?: "AND" | "OR" | undefined;
|
|
34
36
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -47,6 +49,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
47
49
|
onUpdateHandle?: string | undefined;
|
|
48
50
|
input: {
|
|
49
51
|
where?: {
|
|
52
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
50
53
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
51
54
|
connector?: "AND" | "OR" | undefined;
|
|
52
55
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -63,6 +66,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
63
66
|
onUpdateHandle?: string | undefined;
|
|
64
67
|
input: {
|
|
65
68
|
where?: {
|
|
69
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
66
70
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
67
71
|
connector?: "AND" | "OR" | undefined;
|
|
68
72
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -94,6 +98,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
94
98
|
onDeleteHandle?: string | undefined;
|
|
95
99
|
input: {
|
|
96
100
|
where?: {
|
|
101
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
97
102
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
98
103
|
connector?: "AND" | "OR" | undefined;
|
|
99
104
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -105,6 +110,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
105
110
|
onDeleteHandle?: string | undefined;
|
|
106
111
|
input: {
|
|
107
112
|
where?: {
|
|
113
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
108
114
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
109
115
|
connector?: "AND" | "OR" | undefined;
|
|
110
116
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adapterRenameUserCustom.d.ts","sourceRoot":"","sources":["../../../src/component/testProfiles/adapterRenameUserCustom.ts"],"names":[],"mappings":"AAIA,eAAO,MACL,MAAM;;;;;;;;;;;kBACN,OAAO
|
|
1
|
+
{"version":3,"file":"adapterRenameUserCustom.d.ts","sourceRoot":"","sources":["../../../src/component/testProfiles/adapterRenameUserCustom.ts"],"names":[],"mappings":"AAIA,eAAO,MACL,MAAM;;;;;;;;;;;kBACN,OAAO;;;;;;;;;;;6DACP,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;gGACR,SAAS;;;;;;;;;;;;;;;;;kBACT,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KACV,SAAS;;;;;;;;;;;;kEACT,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;GACoD,CAAC"}
|
|
@@ -13,6 +13,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
13
13
|
join?: any;
|
|
14
14
|
select?: string[] | undefined;
|
|
15
15
|
where?: {
|
|
16
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
16
17
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
17
18
|
connector?: "AND" | "OR" | undefined;
|
|
18
19
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -29,6 +30,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
29
30
|
direction: "asc" | "desc";
|
|
30
31
|
} | undefined;
|
|
31
32
|
where?: {
|
|
33
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
32
34
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
33
35
|
connector?: "AND" | "OR" | undefined;
|
|
34
36
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -47,6 +49,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
47
49
|
onUpdateHandle?: string | undefined;
|
|
48
50
|
input: {
|
|
49
51
|
where?: {
|
|
52
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
50
53
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
51
54
|
connector?: "AND" | "OR" | undefined;
|
|
52
55
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -63,6 +66,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
63
66
|
onUpdateHandle?: string | undefined;
|
|
64
67
|
input: {
|
|
65
68
|
where?: {
|
|
69
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
66
70
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
67
71
|
connector?: "AND" | "OR" | undefined;
|
|
68
72
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -94,6 +98,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
94
98
|
onDeleteHandle?: string | undefined;
|
|
95
99
|
input: {
|
|
96
100
|
where?: {
|
|
101
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
97
102
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
98
103
|
connector?: "AND" | "OR" | undefined;
|
|
99
104
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -105,6 +110,7 @@ export declare const create: import("convex/server").RegisteredMutation<"public"
|
|
|
105
110
|
onDeleteHandle?: string | undefined;
|
|
106
111
|
input: {
|
|
107
112
|
where?: {
|
|
113
|
+
mode?: "sensitive" | "insensitive" | undefined;
|
|
108
114
|
operator?: "lt" | "lte" | "gt" | "gte" | "eq" | "in" | "not_in" | "ne" | "contains" | "starts_with" | "ends_with" | undefined;
|
|
109
115
|
connector?: "AND" | "OR" | undefined;
|
|
110
116
|
value: string | number | boolean | string[] | number[] | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adapterRenameUserTable.d.ts","sourceRoot":"","sources":["../../../src/component/testProfiles/adapterRenameUserTable.ts"],"names":[],"mappings":"AAIA,eAAO,MACL,MAAM;;;;;;;;;;;kBACN,OAAO
|
|
1
|
+
{"version":3,"file":"adapterRenameUserTable.d.ts","sourceRoot":"","sources":["../../../src/component/testProfiles/adapterRenameUserTable.ts"],"names":[],"mappings":"AAIA,eAAO,MACL,MAAM;;;;;;;;;;;kBACN,OAAO;;;;;;;;;;;6DACP,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;gGACR,SAAS;;;;;;;;;;;;;;;;;kBACT,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KACV,SAAS;;;;;;;;;;;;kEACT,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;GACmD,CAAC"}
|
|
@@ -118,6 +118,7 @@ declare const schema: import("convex/server").SchemaDefinition<{
|
|
|
118
118
|
identifier: ["identifier", "_creationTime"];
|
|
119
119
|
}, {}, {}>;
|
|
120
120
|
twoFactor: import("convex/server").TableDefinition<import("convex/values").VObject<{
|
|
121
|
+
verified?: boolean | null | undefined;
|
|
121
122
|
userId: string;
|
|
122
123
|
secret: string;
|
|
123
124
|
backupCodes: string;
|
|
@@ -125,7 +126,8 @@ declare const schema: import("convex/server").SchemaDefinition<{
|
|
|
125
126
|
secret: import("convex/values").VString<string, "required">;
|
|
126
127
|
backupCodes: import("convex/values").VString<string, "required">;
|
|
127
128
|
userId: import("convex/values").VString<string, "required">;
|
|
128
|
-
|
|
129
|
+
verified: import("convex/values").VUnion<boolean | null | undefined, [import("convex/values").VNull<null, "required">, import("convex/values").VBoolean<boolean, "required">], "optional", never>;
|
|
130
|
+
}, "required", "userId" | "secret" | "backupCodes" | "verified">, {
|
|
129
131
|
userId: ["userId", "_creationTime"];
|
|
130
132
|
}, {}, {}>;
|
|
131
133
|
oauthApplication: import("convex/server").TableDefinition<import("convex/values").VObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.profile-additional-fields.d.ts","sourceRoot":"","sources":["../../../src/component/testProfiles/schema.profile-additional-fields.ts"],"names":[],"mappings":"AAiCA,QAAA,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"schema.profile-additional-fields.d.ts","sourceRoot":"","sources":["../../../src/component/testProfiles/schema.profile-additional-fields.ts"],"names":[],"mappings":"AAiCA,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAGV,CAAC;AAEH,eAAe,MAAM,CAAC"}
|
|
@@ -341,6 +341,7 @@ declare const schema: import("convex/server").SchemaDefinition<{
|
|
|
341
341
|
identifier: ["identifier", "_creationTime"];
|
|
342
342
|
}, {}, {}>;
|
|
343
343
|
twoFactor: import("convex/server").TableDefinition<import("convex/values").VObject<{
|
|
344
|
+
verified?: boolean | null | undefined;
|
|
344
345
|
userId: string;
|
|
345
346
|
secret: string;
|
|
346
347
|
backupCodes: string;
|
|
@@ -348,7 +349,8 @@ declare const schema: import("convex/server").SchemaDefinition<{
|
|
|
348
349
|
secret: import("convex/values").VString<string, "required">;
|
|
349
350
|
backupCodes: import("convex/values").VString<string, "required">;
|
|
350
351
|
userId: import("convex/values").VString<string, "required">;
|
|
351
|
-
|
|
352
|
+
verified: import("convex/values").VUnion<boolean | null | undefined, [import("convex/values").VNull<null, "required">, import("convex/values").VBoolean<boolean, "required">], "optional", never>;
|
|
353
|
+
}, "required", "userId" | "secret" | "backupCodes" | "verified">, {
|
|
352
354
|
userId: ["userId", "_creationTime"];
|
|
353
355
|
}, {}, {}>;
|
|
354
356
|
oauthApplication: import("convex/server").TableDefinition<import("convex/values").VObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.profile-plugin-table.d.ts","sourceRoot":"","sources":["../../../src/component/testProfiles/schema.profile-plugin-table.ts"],"names":[],"mappings":"AAkHA,QAAA,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"schema.profile-plugin-table.d.ts","sourceRoot":"","sources":["../../../src/component/testProfiles/schema.profile-plugin-table.ts"],"names":[],"mappings":"AAkHA,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAaV,CAAC;AAEH,eAAe,MAAM,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../src/plugins/convex/client.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../src/plugins/convex/client.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,YAAY,CAAC;AAGzC,eAAO,MAAM,YAAY;;;wBAIK,UAAU,CAAC,OAAO,MAAM,CAAC;CAEtD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../src/plugins/convex/client.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../src/plugins/convex/client.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAE3C,MAAM,CAAC,MAAM,YAAY,GAAG,GAAG,EAAE;IAC/B,OAAO;QACL,EAAE,EAAE,QAAQ;QACZ,OAAO,EAAE,OAAO;QAChB,kBAAkB,EAAE,EAA+B;KACnB,CAAC;AACrC,CAAC,CAAC"}
|
|
@@ -93,7 +93,7 @@ export declare const convex: (opts: {
|
|
|
93
93
|
* Handles error that occurs when existing JWKS key does not match configured
|
|
94
94
|
* algorithm, which will be common for 0.10 upgrades switching from EdDSA to RS256.
|
|
95
95
|
*
|
|
96
|
-
* @default
|
|
96
|
+
* @default false
|
|
97
97
|
*/
|
|
98
98
|
jwksRotateOnTokenGenerationError?: boolean;
|
|
99
99
|
/**
|
|
@@ -103,6 +103,7 @@ export declare const convex: (opts: {
|
|
|
103
103
|
options?: BetterAuthOptions;
|
|
104
104
|
}) => {
|
|
105
105
|
id: "convex";
|
|
106
|
+
version: string;
|
|
106
107
|
init: (ctx: import("better-auth").AuthContext) => void;
|
|
107
108
|
hooks: {
|
|
108
109
|
before: ({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/plugins/convex/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAoB,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AACnE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAW7D,OAAO,KAAK,EAAE,UAAU,EAAgB,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/plugins/convex/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAoB,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AACnE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAW7D,OAAO,KAAK,EAAE,UAAU,EAAgB,MAAM,eAAe,CAAC;AAG9D,eAAO,MAAM,eAAe,eAAe,CAAC;AA6D5C,eAAO,MAAM,MAAM,GAAI,MAAM;IAC3B;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACH,UAAU,EAAE,UAAU,CAAC;IACvB;;;;OAIG;IACH,GAAG,CAAC,EAAE;QACJ,iBAAiB,CAAC,EAAE,MAAM,CAAC;QAC3B,aAAa,CAAC,EAAE,CAAC,OAAO,EAAE;YACxB,IAAI,EAAE,IAAI,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;YACjC,OAAO,EAAE,OAAO,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;SACxC,KAAK,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,SAAS,CAAC;KACtE,CAAC;IACF;;OAEG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAsCG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;;;;;;OASG;IACH,gCAAgC,CAAC,EAAE,OAAO,CAAC;IAC3C;;;OAGG;IACH,OAAO,CAAC,EAAE,iBAAiB,CAAC;CAC7B;;;;;;;;;;;;;;;;;;;;;;2DADmB,CAAC;;;;4CAGiC,CAAC;;;;;;;;;;;qCAO7C,CAAC;qCAEI,CAAC;;;;;;;;;iCAOW,CAAA;;;;;;;;;;;qCAQvB,CAAJ;qCAEW,CAAC;;;;;;;;;iCASJ,CAAR;;;;;;;;;;;qCAOY,CAAH;qCACuB,CAAC;;;;;;;;;iCASF,CAAC;;;;;;;;;;;;;;6EAqBkC,CAAA;;;;;;;;;;;;;;4BAamD,CAAC;;;;;;;;;;;;;;;;;;;mCAkBvD,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCA7NvB,CAAC;iCAE5B,CAAC;;;;;;;;;6BAOT,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyjBN,CAAC"}
|