@stryke/type-checks 0.3.6 → 0.3.7

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.
@@ -1,8 +1,8 @@
1
- import type { ITyped } from "@stryke/types/base";
1
+ import type { Typed } from "@stryke/types/base";
2
2
  /**
3
3
  * Check if the provided value has a `__typename` property
4
4
  *
5
5
  * @param value - The value to type check
6
6
  * @returns An indicator specifying if the value provided has a `__typename` property
7
7
  */
8
- export declare const isTyped: (value: unknown) => value is ITyped;
8
+ export declare const isTyped: (value: unknown) => value is Typed;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stryke/type-checks",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
4
4
  "type": "module",
5
5
  "description": "A package containing various type-check functions to validate TypeScript values.",
6
6
  "repository": {
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "private": false,
12
12
  "publishConfig": { "access": "public" },
13
- "dependencies": { "@stryke/types": "^0.8.5" },
13
+ "dependencies": { "@stryke/types": "^0.8.6" },
14
14
  "devDependencies": {},
15
15
  "sideEffects": false,
16
16
  "files": ["dist/**/*"],
@@ -664,5 +664,5 @@
664
664
  "main": "./dist/index.cjs",
665
665
  "module": "./dist/index.mjs",
666
666
  "types": "./dist/index.d.ts",
667
- "gitHead": "a8c829509eefd6d8e5fcdc84bd5b9a0b8e02ee7e"
667
+ "gitHead": "57da58e3434302b35f798674d9f18f92ca7f7ac9"
668
668
  }