@convex-dev/better-auth 0.11.4 → 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-client.d.ts.map +1 -1
- package/dist/client/create-client.js +19 -2
- package/dist/client/create-client.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/_generated/server.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/nextjs/index.d.ts.map +1 -1
- package/dist/nextjs/index.js +4 -0
- package/dist/nextjs/index.js.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/react-start/index.d.ts.map +1 -1
- package/dist/react-start/index.js +4 -0
- package/dist/react-start/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 +16 -19
- 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-client.test.ts +40 -0
- package/src/client/create-client.ts +25 -2
- package/src/client/create-schema.ts +46 -8
- package/src/component/_generated/component.ts +718 -35
- package/src/component/_generated/server.ts +0 -5
- package/src/component/schema.ts +5 -3
- package/src/nextjs/index.ts +4 -0
- 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/react-start/index.ts +4 -0
- package/src/test/adapter-factory/convex-custom.ts +23 -0
- package/src/utils/index.ts +6 -1
- package/src/version.ts +1 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../../src/component/_generated/server.ts"],"names":[],"mappings":"AACA;;;;;;;GAOG;AAEH,OAAO,KAAK,EACV,aAAa,EACb,iBAAiB,EACjB,eAAe,EACf,YAAY,EACZ,gBAAgB,EAChB,kBAAkB,EAClB,eAAe,EACf,qBAAqB,EACrB,qBAAqB,EACtB,MAAM,eAAe,CAAC;AAUvB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAEhD;;;;;;;GAOG;AACH,eAAO,MAAM,KAAK,EAAE,YAAY,CAAC,SAAS,EAAE,QAAQ,CAAgB,CAAC;AAErE;;;;;;;GAOG;AACH,eAAO,MAAM,aAAa,EAAE,YAAY,CAAC,SAAS,EAAE,UAAU,CACxC,CAAC;AAEvB;;;;;;;GAOG;AACH,eAAO,MAAM,QAAQ,EAAE,eAAe,CAAC,SAAS,EAAE,QAAQ,CAAmB,CAAC;AAE9E;;;;;;;GAOG;AACH,eAAO,MAAM,gBAAgB,EAAE,eAAe,CAAC,SAAS,EAAE,UAAU,CAC3C,CAAC;AAE1B;;;;;;;;;;GAUG;AACH,eAAO,MAAM,MAAM,EAAE,aAAa,CAAC,SAAS,EAAE,QAAQ,CAAiB,CAAC;AAExE;;;;;GAKG;AACH,eAAO,MAAM,cAAc,EAAE,aAAa,CAAC,SAAS,EAAE,UAAU,CACzC,CAAC;AAExB;;;;;;;;;;GAUG;AACH,eAAO,MAAM,UAAU,EAAE,iBAAqC,CAAC;
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../../src/component/_generated/server.ts"],"names":[],"mappings":"AACA;;;;;;;GAOG;AAEH,OAAO,KAAK,EACV,aAAa,EACb,iBAAiB,EACjB,eAAe,EACf,YAAY,EACZ,gBAAgB,EAChB,kBAAkB,EAClB,eAAe,EACf,qBAAqB,EACrB,qBAAqB,EACtB,MAAM,eAAe,CAAC;AAUvB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAEhD;;;;;;;GAOG;AACH,eAAO,MAAM,KAAK,EAAE,YAAY,CAAC,SAAS,EAAE,QAAQ,CAAgB,CAAC;AAErE;;;;;;;GAOG;AACH,eAAO,MAAM,aAAa,EAAE,YAAY,CAAC,SAAS,EAAE,UAAU,CACxC,CAAC;AAEvB;;;;;;;GAOG;AACH,eAAO,MAAM,QAAQ,EAAE,eAAe,CAAC,SAAS,EAAE,QAAQ,CAAmB,CAAC;AAE9E;;;;;;;GAOG;AACH,eAAO,MAAM,gBAAgB,EAAE,eAAe,CAAC,SAAS,EAAE,UAAU,CAC3C,CAAC;AAE1B;;;;;;;;;;GAUG;AACH,eAAO,MAAM,MAAM,EAAE,aAAa,CAAC,SAAS,EAAE,QAAQ,CAAiB,CAAC;AAExE;;;;;GAKG;AACH,eAAO,MAAM,cAAc,EAAE,aAAa,CAAC,SAAS,EAAE,UAAU,CACzC,CAAC;AAExB;;;;;;;;;;GAUG;AACH,eAAO,MAAM,UAAU,EAAE,iBAAqC,CAAC;AAE/D;;;;;;;GAOG;AACH,MAAM,MAAM,QAAQ,GAAG,eAAe,CAAC,SAAS,CAAC,CAAC;AAElD;;;;;;;GAOG;AACH,MAAM,MAAM,WAAW,GAAG,kBAAkB,CAAC,SAAS,CAAC,CAAC;AAExD;;;;;GAKG;AACH,MAAM,MAAM,SAAS,GAAG,gBAAgB,CAAC,SAAS,CAAC,CAAC;AAEpD;;;;;;GAMG;AACH,MAAM,MAAM,cAAc,GAAG,qBAAqB,CAAC,SAAS,CAAC,CAAC;AAE9D;;;;;;;;GAQG;AACH,MAAM,MAAM,cAAc,GAAG,qBAAqB,CAAC,SAAS,CAAC,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":"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":"index.d.ts","sourceRoot":"","sources":["../../src/nextjs/index.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,KAAK,EAEV,iBAAiB,EACjB,kBAAkB,EACnB,MAAM,eAAe,CAAC;AAGvB,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/nextjs/index.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,KAAK,EAEV,iBAAiB,EACjB,kBAAkB,EACnB,MAAM,eAAe,CAAC;AAGvB,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AA4ClD,KAAK,YAAY,CAAC,OAAO,SAAS,iBAAiB,CAAC,GAAG,EAAE,GAAG,CAAC,IAC3D,OAAO,CAAC,OAAO,CAAC,SAAS,WAAW,GAChC,CAAC,IAAI,CAAC,EAAE,WAAW,CAAC,GACpB,CAAC,IAAI,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC;AAS/B,eAAO,MAAM,sBAAsB,GACjC,MAAM,eAAe,GAAG;IAAE,SAAS,EAAE,MAAM,CAAC;IAAC,aAAa,EAAE,MAAM,CAAA;CAAE;;;uBAjBrD,OAAO;wBACN,OAAO;;;uBA+DI,KAAK,SAAS,iBAAiB,CAAC,OAAO,CAAC,SACxD,KAAK,WACH,YAAY,CAAC,KAAK,CAAC,KAC3B,OAAO,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;qBAML,KAAK,SAAS,iBAAiB,CAAC,OAAO,CAAC,SACtD,KAAK,WACH,YAAY,CAAC,KAAK,CAAC,KAC3B,OAAO,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC;wBAMX,QAAQ,SAAS,iBAAiB,CAAC,UAAU,CAAC,YAC5D,QAAQ,WACT,YAAY,CAAC,QAAQ,CAAC,KAC9B,OAAO,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC;sBAMhB,MAAM,SAAS,iBAAiB,CAAC,QAAQ,CAAC,UACxD,MAAM,WACL,YAAY,CAAC,MAAM,CAAC,KAC5B,OAAO,CAAC,kBAAkB,CAAC,MAAM,CAAC,CAAC;CAOzC,CAAC"}
|
package/dist/nextjs/index.js
CHANGED
|
@@ -29,6 +29,10 @@ const handler = (request, siteUrl) => {
|
|
|
29
29
|
const newRequest = new Request(nextUrl, request);
|
|
30
30
|
newRequest.headers.set("accept-encoding", "application/json");
|
|
31
31
|
newRequest.headers.set("host", new URL(siteUrl).host);
|
|
32
|
+
newRequest.headers.set("x-forwarded-host", requestUrl.host);
|
|
33
|
+
newRequest.headers.set("x-forwarded-proto", requestUrl.protocol.replace(/:$/, ""));
|
|
34
|
+
newRequest.headers.set("x-better-auth-forwarded-host", requestUrl.host);
|
|
35
|
+
newRequest.headers.set("x-better-auth-forwarded-proto", requestUrl.protocol.replace(/:$/, ""));
|
|
32
36
|
return fetch(newRequest, { method: request.method, redirect: "manual" });
|
|
33
37
|
};
|
|
34
38
|
const nextJsHandler = (siteUrl) => ({
|
package/dist/nextjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/nextjs/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/nextjs/index.ts"],"names":[],"mappings":"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"}
|