@power-plant/schema 0.0.75 → 0.0.78

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.
@@ -2036,24 +2036,26 @@ var ReflectionTransformer = class {
2036
2036
  followExport(declarationName, statement, sourceFile) {
2037
2037
  if (statement.exportClause) {
2038
2038
  if (isNamedExports(statement.exportClause)) {
2039
- for (const element of statement.exportClause.elements) if (getEscapedText(element.name) === declarationName) if (!statement.moduleSpecifier || !isStringLiteral(statement.moduleSpecifier)) {
2039
+ for (const element of statement.exportClause.elements) if (getEscapedText(element.name) === declarationName) {
2040
2040
  if (!statement.moduleSpecifier || !isStringLiteral(statement.moduleSpecifier)) {
2041
- if (isNodeWithLocals(sourceFile) && sourceFile.locals) {
2042
- const found = sourceFile.locals.get(declarationName);
2043
- if (found && found.declarations && found.declarations[0]) {
2044
- const declaration = found.declarations[0];
2045
- if (declaration && isImportSpecifier(declaration)) {
2046
- const importOrExport = declaration.parent.parent.parent;
2047
- const found = this.resolveImportSpecifier(element.propertyName ? getEscapedText(element.propertyName) : declarationName, importOrExport, sourceFile);
2048
- if (found) return found;
2049
- } else if (declaration) {}
2050
- return declaration;
2041
+ if (!statement.moduleSpecifier || !isStringLiteral(statement.moduleSpecifier)) {
2042
+ if (isNodeWithLocals(sourceFile) && sourceFile.locals) {
2043
+ const found = sourceFile.locals.get(declarationName);
2044
+ if (found && found.declarations && found.declarations[0]) {
2045
+ const declaration = found.declarations[0];
2046
+ if (declaration && isImportSpecifier(declaration)) {
2047
+ const importOrExport = declaration.parent.parent.parent;
2048
+ const found = this.resolveImportSpecifier(element.propertyName ? getEscapedText(element.propertyName) : declarationName, importOrExport, sourceFile);
2049
+ if (found) return found;
2050
+ } else if (declaration) {}
2051
+ return declaration;
2052
+ }
2051
2053
  }
2052
2054
  }
2055
+ } else {
2056
+ const found = this.resolveImportSpecifier(element.propertyName ? getEscapedText(element.propertyName) : declarationName, statement, sourceFile);
2057
+ if (found) return found;
2053
2058
  }
2054
- } else {
2055
- const found = this.resolveImportSpecifier(element.propertyName ? getEscapedText(element.propertyName) : declarationName, statement, sourceFile);
2056
- if (found) return found;
2057
2059
  }
2058
2060
  }
2059
2061
  } else {
@@ -2312,4 +2314,4 @@ var DeepkitLoader = class {
2312
2314
 
2313
2315
  //#endregion
2314
2316
  export { debugPackStruct as a, packSize as c, ReflectionTransformer as i, packSizeByte as l, Cache as n, declarationTransformer as o, DeclarationTransformer as r, encodeOps as s, DeepkitLoader as t, transformer as u };
2315
- //# sourceMappingURL=deepkit-uLIKI-S-.mjs.map
2317
+ //# sourceMappingURL=deepkit-BdYKLoLI.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deepkit-BdYKLoLI.mjs","names":[],"sources":[],"mappings":""}
@@ -2032,24 +2032,26 @@ var ReflectionTransformer = class {
2032
2032
  followExport(declarationName, statement, sourceFile) {
2033
2033
  if (statement.exportClause) {
2034
2034
  if (isNamedExports(statement.exportClause)) {
2035
- for (const element of statement.exportClause.elements) if (getEscapedText(element.name) === declarationName) if (!statement.moduleSpecifier || !isStringLiteral(statement.moduleSpecifier)) {
2035
+ for (const element of statement.exportClause.elements) if (getEscapedText(element.name) === declarationName) {
2036
2036
  if (!statement.moduleSpecifier || !isStringLiteral(statement.moduleSpecifier)) {
2037
- if (isNodeWithLocals(sourceFile) && sourceFile.locals) {
2038
- const found = sourceFile.locals.get(declarationName);
2039
- if (found && found.declarations && found.declarations[0]) {
2040
- const declaration = found.declarations[0];
2041
- if (declaration && isImportSpecifier(declaration)) {
2042
- const importOrExport = declaration.parent.parent.parent;
2043
- const found = this.resolveImportSpecifier(element.propertyName ? getEscapedText(element.propertyName) : declarationName, importOrExport, sourceFile);
2044
- if (found) return found;
2045
- } else if (declaration) {}
2046
- return declaration;
2037
+ if (!statement.moduleSpecifier || !isStringLiteral(statement.moduleSpecifier)) {
2038
+ if (isNodeWithLocals(sourceFile) && sourceFile.locals) {
2039
+ const found = sourceFile.locals.get(declarationName);
2040
+ if (found && found.declarations && found.declarations[0]) {
2041
+ const declaration = found.declarations[0];
2042
+ if (declaration && isImportSpecifier(declaration)) {
2043
+ const importOrExport = declaration.parent.parent.parent;
2044
+ const found = this.resolveImportSpecifier(element.propertyName ? getEscapedText(element.propertyName) : declarationName, importOrExport, sourceFile);
2045
+ if (found) return found;
2046
+ } else if (declaration) {}
2047
+ return declaration;
2048
+ }
2047
2049
  }
2048
2050
  }
2051
+ } else {
2052
+ const found = this.resolveImportSpecifier(element.propertyName ? getEscapedText(element.propertyName) : declarationName, statement, sourceFile);
2053
+ if (found) return found;
2049
2054
  }
2050
- } else {
2051
- const found = this.resolveImportSpecifier(element.propertyName ? getEscapedText(element.propertyName) : declarationName, statement, sourceFile);
2052
- if (found) return found;
2053
2055
  }
2054
2056
  }
2055
2057
  } else {
package/dist/deepkit.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2
- const require_deepkit = require('./deepkit-DCeGGrOC.cjs');
2
+ const require_deepkit = require('./deepkit-Cmb6De3Q.cjs');
3
3
 
4
4
  exports.Cache = require_deepkit.Cache;
5
5
  exports.DeclarationTransformer = require_deepkit.DeclarationTransformer;
package/dist/deepkit.mjs CHANGED
@@ -1,3 +1,3 @@
1
- import { a as debugPackStruct, c as packSize, i as ReflectionTransformer, l as packSizeByte, n as Cache, o as declarationTransformer, r as DeclarationTransformer, s as encodeOps, t as DeepkitLoader, u as transformer } from "./deepkit-uLIKI-S-.mjs";
1
+ import { a as debugPackStruct, c as packSize, i as ReflectionTransformer, l as packSizeByte, n as Cache, o as declarationTransformer, r as DeclarationTransformer, s as encodeOps, t as DeepkitLoader, u as transformer } from "./deepkit-BdYKLoLI.mjs";
2
2
 
3
3
  export { Cache, DeclarationTransformer, DeepkitLoader, ReflectionTransformer, debugPackStruct, declarationTransformer, encodeOps, packSize, packSizeByte, transformer };
package/dist/index.cjs CHANGED
@@ -2,7 +2,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2
2
  const require_rolldown_runtime = require('./rolldown-runtime-C24Yb2bl.cjs');
3
3
  const require_constants = require('./constants-CPMTQEYP.cjs');
4
4
  const require_helpers = require('./helpers-C34rr_D0.cjs');
5
- const require_deepkit = require('./deepkit-DCeGGrOC.cjs');
5
+ const require_deepkit = require('./deepkit-Cmb6De3Q.cjs');
6
6
  const require_codegen = require('./codegen.cjs');
7
7
  const require_storage = require('./storage-BLfnq6kZ.cjs');
8
8
  let _stryke_type_checks_is_set_object = require("@stryke/type-checks/is-set-object");
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- import { i as ReflectionTransformer, n as Cache, r as DeclarationTransformer } from "./deepkit-uLIKI-S-.mjs";
1
+ import { i as ReflectionTransformer, n as Cache, r as DeclarationTransformer } from "./deepkit-BdYKLoLI.mjs";
2
2
  import { a as JSON_SCHEMA_TYPES, c as SCHEMA_RECORD_KEYWORDS, i as JSON_SCHEMA_PRIMITIVE_TYPES, l as SCHEMA_SINGLE_KEYWORDS, n as JSON_SCHEMA_CONSTRUCTOR_KEY, o as JsonSchemaTypeNames, r as JSON_SCHEMA_METADATA_KEYS, s as SCHEMA_ARRAY_CONCAT_KEYWORDS, t as JSON_SCHEMA_ANY } from "./constants-D0asFRyy.mjs";
3
3
  import { $ as isUntypedConfig, A as isJsonSchemaNativeEnum, B as isJsonSchemaSet, C as isJsonSchemaDate, D as isJsonSchemaKeywords, E as isJsonSchemaInteger, F as isJsonSchemaObject, G as isJsonSchemaUnion, H as isJsonSchemaTuple, I as isJsonSchemaPrimitiveType, J as isSchema, K as isJsonSchemaUnknown, L as isJsonSchemaPrimitiveUnion, M as isJsonSchemaNull, N as isJsonSchemaNullable, O as isJsonSchemaLiteral, P as isJsonSchemaNumber, Q as isStandardSchema, R as isJsonSchemaRecord, S as isJsonSchemaBoolean, T as isJsonSchemaEnum, U as isJsonSchemaType, V as isJsonSchemaString, W as isJsonSchemaUndefined, X as isSchemaOf, Y as isSchemaObject, Z as isSchemaWithSource, _ as isJsonSchemaAllOf, a as getPropertiesList, at as isValibotSchema, b as isJsonSchemaArray, c as isSchemaNullable, ct as readSchemaTypes, d as merge, et as isUntypedConfigStrict, f as mergeMetadata, g as isJsonSchema, h as isFileReference, i as getProperties, it as isUntypedSchemaStrict, j as isJsonSchemaNever, k as isJsonSchemaMap, l as isValidSchemaConfigFile, m as hasJsonSchemaConstructorFlag, n as getJsonSchema, nt as isUntypedInputStrict, o as getProperty, ot as applyJsonSchemaMetadata, p as traverseSchema, q as isNullOnlyJsonSchema, r as getJsonSchemaObject, rt as isUntypedSchema, s as isPropertyOptional, st as getPrimarySchemaType, t as addProperty, tt as isUntypedInput, u as isValidSchemaInputFile, v as isJsonSchemaAny, w as isJsonSchemaDecimal, x as isJsonSchemaBigint, y as isJsonSchemaAnyOf, z as isJsonSchemaRef } from "./helpers-BCP4VzlJ.mjs";
4
4
  import { getJsonSchemaType } from "./codegen.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@power-plant/schema",
3
- "version": "0.0.75",
3
+ "version": "0.0.78",
4
4
  "private": false,
5
5
  "description": "A Power Plant utility package to help managing schemas.",
6
6
  "keywords": [
@@ -185,5 +185,5 @@
185
185
  },
186
186
  "publishConfig": { "access": "public" },
187
187
  "inlinedDependencies": { "@deepkit/type-compiler": "1.0.19" },
188
- "gitHead": "5030d7876addbb22c300e7e5ee8ae5b505e6aa9f"
188
+ "gitHead": "8daaa449279190e2d2116a25ba8470a681a79ab8"
189
189
  }
@@ -1 +0,0 @@
1
- {"version":3,"file":"deepkit-uLIKI-S-.mjs","names":[],"sources":[],"mappings":""}