@rpcbase/db 0.107.0 → 0.109.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/model.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {}
|
|
@@ -14,9 +14,9 @@ export declare const ZRBTenantSubscriptionIntervalUnit: z.ZodEnum<{
|
|
|
14
14
|
}>;
|
|
15
15
|
export declare const ZRBTenantSubscriptionEventSource: z.ZodEnum<{
|
|
16
16
|
admin: "admin";
|
|
17
|
+
user: "user";
|
|
17
18
|
system: "system";
|
|
18
19
|
webhook: "webhook";
|
|
19
|
-
user: "user";
|
|
20
20
|
}>;
|
|
21
21
|
export declare const ZRBTenantSubscriptionChangeDirection: z.ZodEnum<{
|
|
22
22
|
upgrade: "upgrade";
|
|
@@ -67,9 +67,9 @@ export declare const ZRBTenantSubscriptionEvent: z.ZodObject<{
|
|
|
67
67
|
actorUserId: z.ZodOptional<z.ZodString>;
|
|
68
68
|
source: z.ZodOptional<z.ZodEnum<{
|
|
69
69
|
admin: "admin";
|
|
70
|
+
user: "user";
|
|
70
71
|
system: "system";
|
|
71
72
|
webhook: "webhook";
|
|
72
|
-
user: "user";
|
|
73
73
|
}>>;
|
|
74
74
|
reason: z.ZodOptional<z.ZodString>;
|
|
75
75
|
provider: z.ZodOptional<z.ZodString>;
|
package/dist/mongo.d.ts
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rpcbase/db",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.109.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -38,6 +38,9 @@
|
|
|
38
38
|
"wireit": {
|
|
39
39
|
"build": {
|
|
40
40
|
"command": "../../node_modules/.bin/vite build",
|
|
41
|
+
"dependencies": [
|
|
42
|
+
"../api:build"
|
|
43
|
+
],
|
|
41
44
|
"files": [
|
|
42
45
|
"src/**/*",
|
|
43
46
|
"../../tsconfig.json",
|
|
@@ -79,6 +82,7 @@
|
|
|
79
82
|
}
|
|
80
83
|
},
|
|
81
84
|
"peerDependencies": {
|
|
85
|
+
"@rpcbase/api": "*",
|
|
82
86
|
"mongoose": "^9",
|
|
83
87
|
"zod": "^4"
|
|
84
88
|
},
|