@hpcc-js/ddl-shim 2.21.0 → 2.24.0

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/types/ddl/v1.d.ts CHANGED
@@ -232,4 +232,3 @@ export declare function isGeohashMapping(mappings: IAnyChoroMapping): boolean;
232
232
  export type IAnyMapping = IPieMapping | ILineMapping | IGraphMapping | IAnyChoroMapping | ITableMapping | IHeatMapMapping;
233
233
  export type IAnySource = IPieSource | ILineSource | ITableSource | IChoroSource | IGraphSource | IHeatMapSource;
234
234
  export type IAnyVisualization = IPieVisualization | ILineVisualization | ITableVisualization | IChoroVisualization | IGraphVisualization | IHeatMapVisualization | ISliderVisualization | IFormVisualization;
235
- //# sourceMappingURL=v1.d.ts.map
package/types/ddl/v2.d.ts CHANGED
@@ -336,4 +336,3 @@ export interface Schema {
336
336
  };
337
337
  };
338
338
  }
339
- //# sourceMappingURL=v2.d.ts.map
@@ -1,4 +1,4 @@
1
- import * as DDL2 from "./ddl/v2";
1
+ import * as DDL2 from "./ddl/v2.ts";
2
2
  type CellPosition = {
3
3
  id: string;
4
4
  position: [number, number, number, number];
@@ -8,4 +8,3 @@ type DDLProperties = {
8
8
  };
9
9
  export declare function upgrade(ddl2: DDL2.Schema, dermObj: any): DDLProperties;
10
10
  export {};
11
- //# sourceMappingURL=dermatology.d.ts.map
package/types/index.d.ts CHANGED
@@ -1,8 +1,7 @@
1
- export * from "./__package__";
2
- import * as DDL1 from "./ddl/v1";
3
- import * as DDL2 from "./ddl/v2";
4
- export * from "./upgrade";
5
- export * from "./validate";
1
+ export * from "./__package__.ts";
2
+ import * as DDL1 from "./ddl/v1.ts";
3
+ import * as DDL2 from "./ddl/v2.ts";
4
+ export * from "./upgrade.ts";
5
+ export * from "./validate.ts";
6
6
  export { DDL1, DDL2 };
7
7
  export declare function isDDL2Schema(ref: DDL1.DDLSchema | DDL2.Schema): ref is DDL2.Schema;
8
- //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,3 @@
1
- import * as DDL1 from "./ddl/v1";
2
- import * as DDL2 from "./ddl/v2";
1
+ import * as DDL1 from "./ddl/v1.ts";
2
+ import * as DDL2 from "./ddl/v2.ts";
3
3
  export declare function upgrade(ddl: DDL1.IDDL, baseUrl?: string, wuid?: string, toLowerCase?: boolean, dermatologyJson?: {}): DDL2.Schema;
4
- //# sourceMappingURL=upgrade.d.ts.map
@@ -1,8 +1,7 @@
1
1
  import * as _Ajv from "ajv";
2
- import * as DDL2 from "./ddl/v2";
2
+ import * as DDL2 from "./ddl/v2.ts";
3
3
  export declare const ddl2Schema: object;
4
4
  export declare function validate2(ddl: DDL2.Schema): {
5
5
  success: boolean | PromiseLike<any>;
6
6
  errors: _Ajv.ErrorObject[];
7
7
  };
8
- //# sourceMappingURL=validate.d.ts.map