@warp-drive/core 5.7.0-alpha.1 → 5.7.0-alpha.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.
@@ -379,5 +379,12 @@ export interface SchemaService {
379
379
  * Retrieve the extension map for an array field
380
380
  */
381
381
  CAUTION_MEGA_DANGER_ZONE_arrayExtensions?(field: ExtensibleField): null | ProcessedExtension["features"];
382
+ /**
383
+ * Check if a specific extension has been registered previously
384
+ */
385
+ CAUTION_MEGA_DANGER_ZONE_hasExtension?(ext: {
386
+ kind: "object" | "array";
387
+ name: string;
388
+ }): boolean;
382
389
  }
383
390
  export {};
@@ -461,8 +461,6 @@ export interface Cache {
461
461
  * Query the cache for any validation errors applicable to the given resource.
462
462
  *
463
463
  * @public
464
- * @param identifier
465
- * @return {JsonApiError[]}
466
464
  */
467
465
  getErrors(identifier: StableRecordIdentifier): ApiError[];
468
466
  /**
@@ -1,6 +1,6 @@
1
1
  import { macroCondition, getGlobalConfig } from '@embroider/macros';
2
2
  const name = "@warp-drive/core";
3
- const version = "5.7.0-alpha.1";
3
+ const version = "5.7.0-alpha.2";
4
4
 
5
5
  // in testing mode, we utilize globals to ensure only one copy exists of
6
6
  // these maps, due to bugs in ember-auto-import
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@warp-drive/core",
3
- "version": "5.7.0-alpha.1",
3
+ "version": "5.7.0-alpha.2",
4
4
  "description": "Core package for WarpDrive | All the Universal Basics",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -37,13 +37,13 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@embroider/macros": "^1.16.12",
40
- "@warp-drive/build-config": "5.7.0-alpha.1"
40
+ "@warp-drive/build-config": "5.7.0-alpha.2"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@babel/core": "^7.26.10",
44
44
  "@babel/plugin-transform-typescript": "^7.27.0",
45
45
  "@babel/preset-typescript": "^7.27.0",
46
- "@warp-drive/internal-config": "5.7.0-alpha.1",
46
+ "@warp-drive/internal-config": "5.7.0-alpha.2",
47
47
  "decorator-transforms": "^2.3.0",
48
48
  "ember-source": "~6.3.0",
49
49
  "expect-type": "^1.2.1",