@candlerip/shared 0.0.22 → 0.0.23
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/package.json +1 -1
- package/src/environment/environment-variable-name/domains.d.ts +2 -2
- package/src/environment/environment-variables/domains.d.ts +1 -1
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/service/index.d.ts +1 -1
- package/src/service/index.js +1 -1
- package/src/service/service-environment-variable-names/constants.d.ts +2 -0
- package/src/service/{service-environment-variables → service-environment-variable-names}/constants.js +1 -1
- package/src/service/{service-environment-variables → service-environment-variable-names}/type.d.ts +1 -1
- package/src/type/array/index.d.ts +1 -0
- package/src/type/array/index.js +1 -0
- package/src/type/array/type-guards.d.ts +1 -0
- package/src/type/array/type-guards.js +9 -0
- package/src/type/index.d.ts +4 -0
- package/src/type/index.js +4 -0
- package/src/type/null/index.d.ts +1 -0
- package/src/type/null/index.js +1 -0
- package/src/type/null/type-guards.d.ts +1 -0
- package/src/type/null/type-guards.js +1 -0
- package/src/type/object/index.d.ts +1 -0
- package/src/type/object/index.js +1 -0
- package/src/type/object/type-guards.d.ts +1 -0
- package/src/type/object/type-guards.js +11 -0
- package/src/type/string/index.d.ts +1 -0
- package/src/type/string/index.js +1 -0
- package/src/type/string/type-guards.d.ts +1 -0
- package/src/type/string/type-guards.js +1 -0
- package/src/service/service-environment-variables/constants.d.ts +0 -2
- /package/src/service/{service-environment-variables → service-environment-variable-names}/index.d.ts +0 -0
- /package/src/service/{service-environment-variables → service-environment-variable-names}/index.js +0 -0
- /package/src/service/{service-environment-variables → service-environment-variable-names}/type.js +0 -0
package/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export type EnvironmentVariableName = keyof
|
|
1
|
+
import { EnvironmentVariables } from '../environment-variables/index.js';
|
|
2
|
+
export type EnvironmentVariableName = keyof EnvironmentVariables;
|
package/src/index.d.ts
CHANGED
package/src/index.js
CHANGED
package/src/service/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './service-environment-
|
|
1
|
+
export * from './service-environment-variable-names/index.js';
|
|
2
2
|
export * from './service-name/index.js';
|
package/src/service/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './service-environment-
|
|
1
|
+
export * from './service-environment-variable-names/index.js';
|
|
2
2
|
export * from './service-name/index.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './type-guards.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './type-guards.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const isArray: <T>(data?: unknown, typeGuard?: (data?: unknown) => data is T) => data is T[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './type-guards.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './type-guards.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const isNull: (data?: unknown) => data is null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const isNull = (data) => data === null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './type-guards.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './type-guards.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const isObject: (data?: unknown) => data is Record<string, unknown>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './type-guards.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './type-guards.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const isString: (data?: unknown) => data is string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const isString = (data) => typeof data === 'string';
|
/package/src/service/{service-environment-variables → service-environment-variable-names}/index.d.ts
RENAMED
|
File without changes
|
/package/src/service/{service-environment-variables → service-environment-variable-names}/index.js
RENAMED
|
File without changes
|
/package/src/service/{service-environment-variables → service-environment-variable-names}/type.js
RENAMED
|
File without changes
|