@substrat-run/engine-invites 0.3.4 → 0.3.6
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/entities.d.ts +4 -4
- package/dist/entities.d.ts.map +1 -1
- package/package.json +5 -5
package/dist/entities.d.ts
CHANGED
|
@@ -12,9 +12,9 @@ import { z } from 'zod';
|
|
|
12
12
|
* there it was shape (two columns → one `EntityRef`), here it is privacy.
|
|
13
13
|
*/
|
|
14
14
|
export declare const invitesEntities: {
|
|
15
|
-
invitation: {
|
|
16
|
-
table:
|
|
17
|
-
fields: z.ZodObject<{
|
|
15
|
+
readonly invitation: {
|
|
16
|
+
readonly table: "invites_invitation";
|
|
17
|
+
readonly fields: z.ZodObject<{
|
|
18
18
|
id: z.ZodString;
|
|
19
19
|
org_id: z.ZodString;
|
|
20
20
|
identifier_hash: z.ZodString;
|
|
@@ -26,7 +26,7 @@ export declare const invitesEntities: {
|
|
|
26
26
|
expires_at: z.ZodString;
|
|
27
27
|
settled_at: z.ZodNullable<z.ZodString>;
|
|
28
28
|
}, z.core.$strip>;
|
|
29
|
-
erasable: "identifier_hash"
|
|
29
|
+
readonly erasable: readonly ["identifier_hash"];
|
|
30
30
|
};
|
|
31
31
|
};
|
|
32
32
|
/** The stored row, including the hash. */
|
package/dist/entities.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../src/entities.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../src/entities.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;CAoB1B,CAAC;AAEH,0CAA0C;AAC1C,eAAO,MAAM,aAAa;;;;;;;;;;;iBAAoC,CAAC;AAE/D;;;;GAIG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;iBAAoE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@substrat-run/engine-invites",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.6",
|
|
4
4
|
"description": "Substrat engine: invitations — invite by verified hashed identifier, accept-required, non-enumerable",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"repository": {
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"access": "public"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@substrat-run/
|
|
29
|
-
"@substrat-run/
|
|
28
|
+
"@substrat-run/contracts": "^0.79.0",
|
|
29
|
+
"@substrat-run/kernel": "^0.79.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"typescript": "^7.0.0",
|
|
33
33
|
"vitest": "^3.2.7",
|
|
34
34
|
"zod": "^4.4.3",
|
|
35
|
-
"@substrat-run/
|
|
36
|
-
"@substrat-run/
|
|
35
|
+
"@substrat-run/engine-test-kit": "^0.3.6",
|
|
36
|
+
"@substrat-run/model-emit": "0.5.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"zod": "^4.4.0"
|