@typed/id 1.0.0-beta.1 → 1.0.0-beta.2
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/Cuid.d.ts +1 -1
- package/dist/Ids.d.ts +1 -1
- package/package.json +10 -10
package/dist/Cuid.d.ts
CHANGED
|
@@ -33,7 +33,7 @@ export declare class CuidState extends CuidState_base {
|
|
|
33
33
|
random: Uint8Array<ArrayBufferLike>;
|
|
34
34
|
fingerprint: string;
|
|
35
35
|
}, never, CuidState>;
|
|
36
|
-
static readonly Default: Layer.Layer<
|
|
36
|
+
static readonly Default: Layer.Layer<CuidState | DateTimes | RandomValues, never, never>;
|
|
37
37
|
}
|
|
38
38
|
export declare const cuid: Effect.Effect<Cuid, never, CuidState>;
|
|
39
39
|
export {};
|
package/dist/Ids.d.ts
CHANGED
|
@@ -44,7 +44,7 @@ declare const Ids_base: ServiceMap.ServiceClass<Ids, "@typed/id/Ids", {
|
|
|
44
44
|
readonly x500: (name: string) => Effect.Effect<Uuid5>;
|
|
45
45
|
};
|
|
46
46
|
uuid7: Effect.Effect<string & import("effect/Brand").Brand<"@typed/id/UUID7">, never, never>;
|
|
47
|
-
}, never,
|
|
47
|
+
}, never, CuidState | DateTimes | RandomValues | Uuid7State>;
|
|
48
48
|
};
|
|
49
49
|
export declare class Ids extends Ids_base {
|
|
50
50
|
static readonly cuid: Effect.Effect<Cuid, never, Ids>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typed/id",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -15,19 +15,19 @@
|
|
|
15
15
|
"publishConfig": {
|
|
16
16
|
"access": "public"
|
|
17
17
|
},
|
|
18
|
-
"scripts": {
|
|
19
|
-
"build": "[ -d dist ] || rm -f tsconfig.tsbuildinfo; tsc",
|
|
20
|
-
"test": "vitest run --passWithNoTests"
|
|
21
|
-
},
|
|
22
18
|
"dependencies": {
|
|
23
|
-
"effect": "
|
|
19
|
+
"effect": "4.0.0-beta.21"
|
|
24
20
|
},
|
|
25
21
|
"devDependencies": {
|
|
26
|
-
"typescript": "
|
|
27
|
-
"vitest": "
|
|
22
|
+
"typescript": "5.9.3",
|
|
23
|
+
"vitest": "4.0.18"
|
|
28
24
|
},
|
|
29
25
|
"files": [
|
|
30
26
|
"dist",
|
|
31
27
|
"src"
|
|
32
|
-
]
|
|
33
|
-
|
|
28
|
+
],
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "[ -d dist ] || rm -f tsconfig.tsbuildinfo; tsc",
|
|
31
|
+
"test": "vitest run --passWithNoTests"
|
|
32
|
+
}
|
|
33
|
+
}
|