sandly 0.3.1 → 0.4.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/README.md +2501 -123
- package/dist/index.d.ts +1 -1
- package/package.json +1 -2
package/dist/index.d.ts
CHANGED
|
@@ -1832,6 +1832,6 @@ declare function autoService<T extends ServiceTag<TagId, unknown>>(tag: T, spec:
|
|
|
1832
1832
|
* const config = Layer.merge(apiKey, dbUrl);
|
|
1833
1833
|
* ```
|
|
1834
1834
|
*/
|
|
1835
|
-
declare function value<
|
|
1835
|
+
declare function value<T extends ValueTag<TagId, unknown>>(tag: T, constantValue: TagType<T>): Layer<never, T>;
|
|
1836
1836
|
//#endregion
|
|
1837
1837
|
export { type AnyLayer, type AnyTag, CircularDependencyError, Container, ContainerDestroyedError, ContainerError, DependencyAlreadyInstantiatedError, DependencyCreationError, DependencyFinalizationError, type DependencyLifecycle, type DependencySpec, type Factory, type Finalizer, type IContainer, type Inject, InjectSource, Layer, type PromiseOrValue, type ResolutionContext, type Scope, ScopedContainer, type ServiceDependencies, type ServiceDepsTuple, type ServiceTag, Tag, type TagType, UnknownDependencyError, type ValueTag, autoService, layer, scoped, service, value };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sandly",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"typescript",
|
|
6
6
|
"sandly",
|
|
@@ -42,7 +42,6 @@
|
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@changesets/cli": "^2.29.5",
|
|
44
44
|
"@eslint/js": "^9.26.0",
|
|
45
|
-
"@total-typescript/ts-reset": "^0.6.1",
|
|
46
45
|
"@types/aws-lambda": "^8.10.149",
|
|
47
46
|
"@types/node": "^22.15.3",
|
|
48
47
|
"@types/node-fetch": "^2.6.12",
|