@coast/service-common 2.0.62 → 2.0.63

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.
@@ -0,0 +1 @@
1
+ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=MakeOptional.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MakeOptional.js","sourceRoot":"","sources":["../../lib/types/MakeOptional.ts"],"names":[],"mappings":""}
@@ -0,0 +1 @@
1
+ export type MakeRequired<T, K extends keyof T> = Omit<T, K> & Required<Pick<T, K>>;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=MakeRequired.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MakeRequired.js","sourceRoot":"","sources":["../../lib/types/MakeRequired.ts"],"names":[],"mappings":""}
@@ -0,0 +1 @@
1
+ export declare function assertType<T extends true>(): void;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.assertType = assertType;
4
+ function assertType() { }
5
+ //# sourceMappingURL=assertType.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"assertType.js","sourceRoot":"","sources":["../../lib/types/assertType.ts"],"names":[],"mappings":";;AAKA,gCAA+C;AAA/C,SAAgB,UAAU,KAAoB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coast/service-common",
3
- "version": "2.0.62",
3
+ "version": "2.0.63",
4
4
  "description": "Common service package",
5
5
  "engines": {
6
6
  "node": ">=20.0.0"