@xyo-network/diviner-jsonpath-aggregate-model 2.110.15 → 2.110.17

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.
Files changed (67) hide show
  1. package/dist/browser/Config.d.cts +2 -2
  2. package/dist/browser/Config.d.mts +2 -2
  3. package/dist/browser/Config.d.ts +2 -2
  4. package/dist/browser/Params.d.cts +1 -1
  5. package/dist/browser/Params.d.mts +1 -1
  6. package/dist/browser/Params.d.ts +1 -1
  7. package/dist/browser/index.cjs.map +1 -1
  8. package/dist/browser/index.d.cts +4 -4
  9. package/dist/browser/index.d.mts +4 -4
  10. package/dist/browser/index.d.ts +4 -4
  11. package/dist/browser/index.js.map +1 -1
  12. package/dist/browser/jsonpath/SchemaToJsonPathTransformExpressionDictionary.d.cts +1 -1
  13. package/dist/browser/jsonpath/SchemaToJsonPathTransformExpressionDictionary.d.mts +1 -1
  14. package/dist/browser/jsonpath/SchemaToJsonPathTransformExpressionDictionary.d.ts +1 -1
  15. package/dist/browser/jsonpath/SchemaToPayloadTransformersDictionary.d.cts +1 -1
  16. package/dist/browser/jsonpath/SchemaToPayloadTransformersDictionary.d.mts +1 -1
  17. package/dist/browser/jsonpath/SchemaToPayloadTransformersDictionary.d.ts +1 -1
  18. package/dist/browser/jsonpath/index.d.cts +4 -4
  19. package/dist/browser/jsonpath/index.d.mts +4 -4
  20. package/dist/browser/jsonpath/index.d.ts +4 -4
  21. package/dist/neutral/Config.d.cts +2 -2
  22. package/dist/neutral/Config.d.mts +2 -2
  23. package/dist/neutral/Config.d.ts +2 -2
  24. package/dist/neutral/Params.d.cts +1 -1
  25. package/dist/neutral/Params.d.mts +1 -1
  26. package/dist/neutral/Params.d.ts +1 -1
  27. package/dist/neutral/index.cjs.map +1 -1
  28. package/dist/neutral/index.d.cts +4 -4
  29. package/dist/neutral/index.d.mts +4 -4
  30. package/dist/neutral/index.d.ts +4 -4
  31. package/dist/neutral/index.js.map +1 -1
  32. package/dist/neutral/jsonpath/SchemaToJsonPathTransformExpressionDictionary.d.cts +1 -1
  33. package/dist/neutral/jsonpath/SchemaToJsonPathTransformExpressionDictionary.d.mts +1 -1
  34. package/dist/neutral/jsonpath/SchemaToJsonPathTransformExpressionDictionary.d.ts +1 -1
  35. package/dist/neutral/jsonpath/SchemaToPayloadTransformersDictionary.d.cts +1 -1
  36. package/dist/neutral/jsonpath/SchemaToPayloadTransformersDictionary.d.mts +1 -1
  37. package/dist/neutral/jsonpath/SchemaToPayloadTransformersDictionary.d.ts +1 -1
  38. package/dist/neutral/jsonpath/index.d.cts +4 -4
  39. package/dist/neutral/jsonpath/index.d.mts +4 -4
  40. package/dist/neutral/jsonpath/index.d.ts +4 -4
  41. package/dist/node/Config.d.cts +2 -2
  42. package/dist/node/Config.d.mts +2 -2
  43. package/dist/node/Config.d.ts +2 -2
  44. package/dist/node/Params.d.cts +1 -1
  45. package/dist/node/Params.d.mts +1 -1
  46. package/dist/node/Params.d.ts +1 -1
  47. package/dist/node/index.cjs.map +1 -1
  48. package/dist/node/index.d.cts +4 -4
  49. package/dist/node/index.d.mts +4 -4
  50. package/dist/node/index.d.ts +4 -4
  51. package/dist/node/index.js.map +1 -1
  52. package/dist/node/jsonpath/SchemaToJsonPathTransformExpressionDictionary.d.cts +1 -1
  53. package/dist/node/jsonpath/SchemaToJsonPathTransformExpressionDictionary.d.mts +1 -1
  54. package/dist/node/jsonpath/SchemaToJsonPathTransformExpressionDictionary.d.ts +1 -1
  55. package/dist/node/jsonpath/SchemaToPayloadTransformersDictionary.d.cts +1 -1
  56. package/dist/node/jsonpath/SchemaToPayloadTransformersDictionary.d.mts +1 -1
  57. package/dist/node/jsonpath/SchemaToPayloadTransformersDictionary.d.ts +1 -1
  58. package/dist/node/jsonpath/index.d.cts +4 -4
  59. package/dist/node/jsonpath/index.d.mts +4 -4
  60. package/dist/node/jsonpath/index.d.ts +4 -4
  61. package/package.json +4 -4
  62. package/src/Config.ts +2 -2
  63. package/src/Params.ts +1 -1
  64. package/src/index.ts +4 -4
  65. package/src/jsonpath/SchemaToJsonPathTransformExpressionDictionary.ts +1 -1
  66. package/src/jsonpath/SchemaToPayloadTransformersDictionary.ts +1 -1
  67. package/src/jsonpath/index.ts +4 -4
@@ -1,6 +1,6 @@
1
1
  import { DivinerConfig } from '@xyo-network/diviner-model';
2
- import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.js';
3
- import { JsonPathAggregateDivinerSchema } from './Schema.js';
2
+ import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.ts';
3
+ import { JsonPathAggregateDivinerSchema } from './Schema.ts';
4
4
  export type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`;
5
5
  export declare const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema;
6
6
  export type JsonPathAggregateDivinerConfig = DivinerConfig<{
@@ -1,6 +1,6 @@
1
1
  import { DivinerConfig } from '@xyo-network/diviner-model';
2
- import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.js';
3
- import { JsonPathAggregateDivinerSchema } from './Schema.js';
2
+ import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.ts';
3
+ import { JsonPathAggregateDivinerSchema } from './Schema.ts';
4
4
  export type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`;
5
5
  export declare const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema;
6
6
  export type JsonPathAggregateDivinerConfig = DivinerConfig<{
@@ -1,6 +1,6 @@
1
1
  import { DivinerConfig } from '@xyo-network/diviner-model';
2
- import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.js';
3
- import { JsonPathAggregateDivinerSchema } from './Schema.js';
2
+ import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.ts';
3
+ import { JsonPathAggregateDivinerSchema } from './Schema.ts';
4
4
  export type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`;
5
5
  export declare const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema;
6
6
  export type JsonPathAggregateDivinerConfig = DivinerConfig<{
@@ -1,5 +1,5 @@
1
1
  import { DivinerParams } from '@xyo-network/diviner-model';
2
2
  import { AnyConfigSchema } from '@xyo-network/module-model';
3
- import { JsonPathAggregateDivinerConfig } from './Config.js';
3
+ import { JsonPathAggregateDivinerConfig } from './Config.ts';
4
4
  export type JsonPathAggregateDivinerParams = DivinerParams<AnyConfigSchema<JsonPathAggregateDivinerConfig>>;
5
5
  //# sourceMappingURL=Params.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { DivinerParams } from '@xyo-network/diviner-model';
2
2
  import { AnyConfigSchema } from '@xyo-network/module-model';
3
- import { JsonPathAggregateDivinerConfig } from './Config.js';
3
+ import { JsonPathAggregateDivinerConfig } from './Config.ts';
4
4
  export type JsonPathAggregateDivinerParams = DivinerParams<AnyConfigSchema<JsonPathAggregateDivinerConfig>>;
5
5
  //# sourceMappingURL=Params.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { DivinerParams } from '@xyo-network/diviner-model';
2
2
  import { AnyConfigSchema } from '@xyo-network/module-model';
3
- import { JsonPathAggregateDivinerConfig } from './Config.js';
3
+ import { JsonPathAggregateDivinerConfig } from './Config.ts';
4
4
  export type JsonPathAggregateDivinerParams = DivinerParams<AnyConfigSchema<JsonPathAggregateDivinerConfig>>;
5
5
  //# sourceMappingURL=Params.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export * from './Config.js'\nexport * from './jsonpath/index.js'\nexport * from './Params.js'\nexport * from './Schema.js'\n","/**\n * The schema used for the JSONPath Diviner.\n */\nexport const JsonPathAggregateDivinerSchema = 'network.xyo.diviner.jsonpath.aggregate' as const\n\n/**\n * The schema type used for the JSONPath Diviner.\n */\nexport type JsonPathAggregateDivinerSchema = typeof JsonPathAggregateDivinerSchema\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.js'\nimport { JsonPathAggregateDivinerSchema } from './Schema.js'\n\n/**\n * The config schema type for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n/**\n * The config schema for the JSON Path diviner\n */\nexport const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n\n/**\n * The configuration for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfig = DivinerConfig<\n {\n /**\n * The schema to use for the destination payloads\n */\n destinationSchema?: string\n /**\n * Exclude the source hashes from the destination payload.\n */\n excludeSources?: boolean\n /**\n * The JSON Path transform expressions to apply to the payloads\n */\n schemaTransforms?: SchemaToJsonPathTransformExpressionsDictionary\n } & { schema: JsonPathAggregateDivinerConfigSchema }\n>\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;ACGO,IAAMA,iCAAiC;;;ACSvC,IAAMC,uCAA6E,GAAGC,8BAAAA;","names":["JsonPathAggregateDivinerSchema","JsonPathAggregateDivinerConfigSchema","JsonPathAggregateDivinerSchema"]}
1
+ {"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export * from './Config.ts'\nexport * from './jsonpath/index.ts'\nexport * from './Params.ts'\nexport * from './Schema.ts'\n","/**\n * The schema used for the JSONPath Diviner.\n */\nexport const JsonPathAggregateDivinerSchema = 'network.xyo.diviner.jsonpath.aggregate' as const\n\n/**\n * The schema type used for the JSONPath Diviner.\n */\nexport type JsonPathAggregateDivinerSchema = typeof JsonPathAggregateDivinerSchema\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.ts'\nimport { JsonPathAggregateDivinerSchema } from './Schema.ts'\n\n/**\n * The config schema type for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n/**\n * The config schema for the JSON Path diviner\n */\nexport const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n\n/**\n * The configuration for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfig = DivinerConfig<\n {\n /**\n * The schema to use for the destination payloads\n */\n destinationSchema?: string\n /**\n * Exclude the source hashes from the destination payload.\n */\n excludeSources?: boolean\n /**\n * The JSON Path transform expressions to apply to the payloads\n */\n schemaTransforms?: SchemaToJsonPathTransformExpressionsDictionary\n } & { schema: JsonPathAggregateDivinerConfigSchema }\n>\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;ACGO,IAAMA,iCAAiC;;;ACSvC,IAAMC,uCAA6E,GAAGC,8BAAAA;","names":["JsonPathAggregateDivinerSchema","JsonPathAggregateDivinerConfigSchema","JsonPathAggregateDivinerSchema"]}
@@ -1,5 +1,5 @@
1
- export * from './Config.js';
2
- export * from './jsonpath/index.js';
3
- export * from './Params.js';
4
- export * from './Schema.js';
1
+ export * from './Config.ts';
2
+ export * from './jsonpath/index.ts';
3
+ export * from './Params.ts';
4
+ export * from './Schema.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- export * from './Config.js';
2
- export * from './jsonpath/index.js';
3
- export * from './Params.js';
4
- export * from './Schema.js';
1
+ export * from './Config.ts';
2
+ export * from './jsonpath/index.ts';
3
+ export * from './Params.ts';
4
+ export * from './Schema.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- export * from './Config.js';
2
- export * from './jsonpath/index.js';
3
- export * from './Params.js';
4
- export * from './Schema.js';
1
+ export * from './Config.ts';
2
+ export * from './jsonpath/index.ts';
3
+ export * from './Params.ts';
4
+ export * from './Schema.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["/**\n * The schema used for the JSONPath Diviner.\n */\nexport const JsonPathAggregateDivinerSchema = 'network.xyo.diviner.jsonpath.aggregate' as const\n\n/**\n * The schema type used for the JSONPath Diviner.\n */\nexport type JsonPathAggregateDivinerSchema = typeof JsonPathAggregateDivinerSchema\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.js'\nimport { JsonPathAggregateDivinerSchema } from './Schema.js'\n\n/**\n * The config schema type for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n/**\n * The config schema for the JSON Path diviner\n */\nexport const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n\n/**\n * The configuration for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfig = DivinerConfig<\n {\n /**\n * The schema to use for the destination payloads\n */\n destinationSchema?: string\n /**\n * Exclude the source hashes from the destination payload.\n */\n excludeSources?: boolean\n /**\n * The JSON Path transform expressions to apply to the payloads\n */\n schemaTransforms?: SchemaToJsonPathTransformExpressionsDictionary\n } & { schema: JsonPathAggregateDivinerConfigSchema }\n>\n"],"mappings":";AAGO,IAAMA,iCAAiC;;;ACSvC,IAAMC,uCAA6E,GAAGC,8BAAAA;","names":["JsonPathAggregateDivinerSchema","JsonPathAggregateDivinerConfigSchema","JsonPathAggregateDivinerSchema"]}
1
+ {"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["/**\n * The schema used for the JSONPath Diviner.\n */\nexport const JsonPathAggregateDivinerSchema = 'network.xyo.diviner.jsonpath.aggregate' as const\n\n/**\n * The schema type used for the JSONPath Diviner.\n */\nexport type JsonPathAggregateDivinerSchema = typeof JsonPathAggregateDivinerSchema\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.ts'\nimport { JsonPathAggregateDivinerSchema } from './Schema.ts'\n\n/**\n * The config schema type for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n/**\n * The config schema for the JSON Path diviner\n */\nexport const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n\n/**\n * The configuration for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfig = DivinerConfig<\n {\n /**\n * The schema to use for the destination payloads\n */\n destinationSchema?: string\n /**\n * Exclude the source hashes from the destination payload.\n */\n excludeSources?: boolean\n /**\n * The JSON Path transform expressions to apply to the payloads\n */\n schemaTransforms?: SchemaToJsonPathTransformExpressionsDictionary\n } & { schema: JsonPathAggregateDivinerConfigSchema }\n>\n"],"mappings":";AAGO,IAAMA,iCAAiC;;;ACSvC,IAAMC,uCAA6E,GAAGC,8BAAAA;","names":["JsonPathAggregateDivinerSchema","JsonPathAggregateDivinerConfigSchema","JsonPathAggregateDivinerSchema"]}
@@ -1,4 +1,4 @@
1
- import { JsonPathTransformExpression } from './JsonPathTransformExpression.js';
1
+ import { JsonPathTransformExpression } from './JsonPathTransformExpression.ts';
2
2
  export type SchemaToJsonPathTransformExpressionsDictionary<T extends {
3
3
  [schema: string]: unknown;
4
4
  } = {
@@ -1,4 +1,4 @@
1
- import { JsonPathTransformExpression } from './JsonPathTransformExpression.js';
1
+ import { JsonPathTransformExpression } from './JsonPathTransformExpression.ts';
2
2
  export type SchemaToJsonPathTransformExpressionsDictionary<T extends {
3
3
  [schema: string]: unknown;
4
4
  } = {
@@ -1,4 +1,4 @@
1
- import { JsonPathTransformExpression } from './JsonPathTransformExpression.js';
1
+ import { JsonPathTransformExpression } from './JsonPathTransformExpression.ts';
2
2
  export type SchemaToJsonPathTransformExpressionsDictionary<T extends {
3
3
  [schema: string]: unknown;
4
4
  } = {
@@ -1,4 +1,4 @@
1
- import { PayloadTransformer } from './PayloadTransformer.js';
1
+ import { PayloadTransformer } from './PayloadTransformer.ts';
2
2
  export type SchemaToPayloadTransformersDictionary = {
3
3
  [schema: string]: PayloadTransformer[];
4
4
  };
@@ -1,4 +1,4 @@
1
- import { PayloadTransformer } from './PayloadTransformer.js';
1
+ import { PayloadTransformer } from './PayloadTransformer.ts';
2
2
  export type SchemaToPayloadTransformersDictionary = {
3
3
  [schema: string]: PayloadTransformer[];
4
4
  };
@@ -1,4 +1,4 @@
1
- import { PayloadTransformer } from './PayloadTransformer.js';
1
+ import { PayloadTransformer } from './PayloadTransformer.ts';
2
2
  export type SchemaToPayloadTransformersDictionary = {
3
3
  [schema: string]: PayloadTransformer[];
4
4
  };
@@ -1,5 +1,5 @@
1
- export * from './JsonPathTransformExpression.js';
2
- export * from './PayloadTransformer.js';
3
- export * from './SchemaToJsonPathTransformExpressionDictionary.js';
4
- export * from './SchemaToPayloadTransformersDictionary.js';
1
+ export * from './JsonPathTransformExpression.ts';
2
+ export * from './PayloadTransformer.ts';
3
+ export * from './SchemaToJsonPathTransformExpressionDictionary.ts';
4
+ export * from './SchemaToPayloadTransformersDictionary.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- export * from './JsonPathTransformExpression.js';
2
- export * from './PayloadTransformer.js';
3
- export * from './SchemaToJsonPathTransformExpressionDictionary.js';
4
- export * from './SchemaToPayloadTransformersDictionary.js';
1
+ export * from './JsonPathTransformExpression.ts';
2
+ export * from './PayloadTransformer.ts';
3
+ export * from './SchemaToJsonPathTransformExpressionDictionary.ts';
4
+ export * from './SchemaToPayloadTransformersDictionary.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- export * from './JsonPathTransformExpression.js';
2
- export * from './PayloadTransformer.js';
3
- export * from './SchemaToJsonPathTransformExpressionDictionary.js';
4
- export * from './SchemaToPayloadTransformersDictionary.js';
1
+ export * from './JsonPathTransformExpression.ts';
2
+ export * from './PayloadTransformer.ts';
3
+ export * from './SchemaToJsonPathTransformExpressionDictionary.ts';
4
+ export * from './SchemaToPayloadTransformersDictionary.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { DivinerConfig } from '@xyo-network/diviner-model';
2
- import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.js';
3
- import { JsonPathAggregateDivinerSchema } from './Schema.js';
2
+ import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.ts';
3
+ import { JsonPathAggregateDivinerSchema } from './Schema.ts';
4
4
  export type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`;
5
5
  export declare const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema;
6
6
  export type JsonPathAggregateDivinerConfig = DivinerConfig<{
@@ -1,6 +1,6 @@
1
1
  import { DivinerConfig } from '@xyo-network/diviner-model';
2
- import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.js';
3
- import { JsonPathAggregateDivinerSchema } from './Schema.js';
2
+ import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.ts';
3
+ import { JsonPathAggregateDivinerSchema } from './Schema.ts';
4
4
  export type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`;
5
5
  export declare const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema;
6
6
  export type JsonPathAggregateDivinerConfig = DivinerConfig<{
@@ -1,6 +1,6 @@
1
1
  import { DivinerConfig } from '@xyo-network/diviner-model';
2
- import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.js';
3
- import { JsonPathAggregateDivinerSchema } from './Schema.js';
2
+ import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.ts';
3
+ import { JsonPathAggregateDivinerSchema } from './Schema.ts';
4
4
  export type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`;
5
5
  export declare const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema;
6
6
  export type JsonPathAggregateDivinerConfig = DivinerConfig<{
@@ -1,5 +1,5 @@
1
1
  import { DivinerParams } from '@xyo-network/diviner-model';
2
2
  import { AnyConfigSchema } from '@xyo-network/module-model';
3
- import { JsonPathAggregateDivinerConfig } from './Config.js';
3
+ import { JsonPathAggregateDivinerConfig } from './Config.ts';
4
4
  export type JsonPathAggregateDivinerParams = DivinerParams<AnyConfigSchema<JsonPathAggregateDivinerConfig>>;
5
5
  //# sourceMappingURL=Params.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { DivinerParams } from '@xyo-network/diviner-model';
2
2
  import { AnyConfigSchema } from '@xyo-network/module-model';
3
- import { JsonPathAggregateDivinerConfig } from './Config.js';
3
+ import { JsonPathAggregateDivinerConfig } from './Config.ts';
4
4
  export type JsonPathAggregateDivinerParams = DivinerParams<AnyConfigSchema<JsonPathAggregateDivinerConfig>>;
5
5
  //# sourceMappingURL=Params.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { DivinerParams } from '@xyo-network/diviner-model';
2
2
  import { AnyConfigSchema } from '@xyo-network/module-model';
3
- import { JsonPathAggregateDivinerConfig } from './Config.js';
3
+ import { JsonPathAggregateDivinerConfig } from './Config.ts';
4
4
  export type JsonPathAggregateDivinerParams = DivinerParams<AnyConfigSchema<JsonPathAggregateDivinerConfig>>;
5
5
  //# sourceMappingURL=Params.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export * from './Config.js'\nexport * from './jsonpath/index.js'\nexport * from './Params.js'\nexport * from './Schema.js'\n","/**\n * The schema used for the JSONPath Diviner.\n */\nexport const JsonPathAggregateDivinerSchema = 'network.xyo.diviner.jsonpath.aggregate' as const\n\n/**\n * The schema type used for the JSONPath Diviner.\n */\nexport type JsonPathAggregateDivinerSchema = typeof JsonPathAggregateDivinerSchema\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.js'\nimport { JsonPathAggregateDivinerSchema } from './Schema.js'\n\n/**\n * The config schema type for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n/**\n * The config schema for the JSON Path diviner\n */\nexport const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n\n/**\n * The configuration for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfig = DivinerConfig<\n {\n /**\n * The schema to use for the destination payloads\n */\n destinationSchema?: string\n /**\n * Exclude the source hashes from the destination payload.\n */\n excludeSources?: boolean\n /**\n * The JSON Path transform expressions to apply to the payloads\n */\n schemaTransforms?: SchemaToJsonPathTransformExpressionsDictionary\n } & { schema: JsonPathAggregateDivinerConfigSchema }\n>\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;ACGO,IAAMA,iCAAiC;;;ACSvC,IAAMC,uCAA6E,GAAGC,8BAAAA;","names":["JsonPathAggregateDivinerSchema","JsonPathAggregateDivinerConfigSchema","JsonPathAggregateDivinerSchema"]}
1
+ {"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export * from './Config.ts'\nexport * from './jsonpath/index.ts'\nexport * from './Params.ts'\nexport * from './Schema.ts'\n","/**\n * The schema used for the JSONPath Diviner.\n */\nexport const JsonPathAggregateDivinerSchema = 'network.xyo.diviner.jsonpath.aggregate' as const\n\n/**\n * The schema type used for the JSONPath Diviner.\n */\nexport type JsonPathAggregateDivinerSchema = typeof JsonPathAggregateDivinerSchema\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.ts'\nimport { JsonPathAggregateDivinerSchema } from './Schema.ts'\n\n/**\n * The config schema type for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n/**\n * The config schema for the JSON Path diviner\n */\nexport const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n\n/**\n * The configuration for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfig = DivinerConfig<\n {\n /**\n * The schema to use for the destination payloads\n */\n destinationSchema?: string\n /**\n * Exclude the source hashes from the destination payload.\n */\n excludeSources?: boolean\n /**\n * The JSON Path transform expressions to apply to the payloads\n */\n schemaTransforms?: SchemaToJsonPathTransformExpressionsDictionary\n } & { schema: JsonPathAggregateDivinerConfigSchema }\n>\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;ACGO,IAAMA,iCAAiC;;;ACSvC,IAAMC,uCAA6E,GAAGC,8BAAAA;","names":["JsonPathAggregateDivinerSchema","JsonPathAggregateDivinerConfigSchema","JsonPathAggregateDivinerSchema"]}
@@ -1,5 +1,5 @@
1
- export * from './Config.js';
2
- export * from './jsonpath/index.js';
3
- export * from './Params.js';
4
- export * from './Schema.js';
1
+ export * from './Config.ts';
2
+ export * from './jsonpath/index.ts';
3
+ export * from './Params.ts';
4
+ export * from './Schema.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- export * from './Config.js';
2
- export * from './jsonpath/index.js';
3
- export * from './Params.js';
4
- export * from './Schema.js';
1
+ export * from './Config.ts';
2
+ export * from './jsonpath/index.ts';
3
+ export * from './Params.ts';
4
+ export * from './Schema.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- export * from './Config.js';
2
- export * from './jsonpath/index.js';
3
- export * from './Params.js';
4
- export * from './Schema.js';
1
+ export * from './Config.ts';
2
+ export * from './jsonpath/index.ts';
3
+ export * from './Params.ts';
4
+ export * from './Schema.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["/**\n * The schema used for the JSONPath Diviner.\n */\nexport const JsonPathAggregateDivinerSchema = 'network.xyo.diviner.jsonpath.aggregate' as const\n\n/**\n * The schema type used for the JSONPath Diviner.\n */\nexport type JsonPathAggregateDivinerSchema = typeof JsonPathAggregateDivinerSchema\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.js'\nimport { JsonPathAggregateDivinerSchema } from './Schema.js'\n\n/**\n * The config schema type for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n/**\n * The config schema for the JSON Path diviner\n */\nexport const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n\n/**\n * The configuration for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfig = DivinerConfig<\n {\n /**\n * The schema to use for the destination payloads\n */\n destinationSchema?: string\n /**\n * Exclude the source hashes from the destination payload.\n */\n excludeSources?: boolean\n /**\n * The JSON Path transform expressions to apply to the payloads\n */\n schemaTransforms?: SchemaToJsonPathTransformExpressionsDictionary\n } & { schema: JsonPathAggregateDivinerConfigSchema }\n>\n"],"mappings":";AAGO,IAAMA,iCAAiC;;;ACSvC,IAAMC,uCAA6E,GAAGC,8BAAAA;","names":["JsonPathAggregateDivinerSchema","JsonPathAggregateDivinerConfigSchema","JsonPathAggregateDivinerSchema"]}
1
+ {"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["/**\n * The schema used for the JSONPath Diviner.\n */\nexport const JsonPathAggregateDivinerSchema = 'network.xyo.diviner.jsonpath.aggregate' as const\n\n/**\n * The schema type used for the JSONPath Diviner.\n */\nexport type JsonPathAggregateDivinerSchema = typeof JsonPathAggregateDivinerSchema\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.ts'\nimport { JsonPathAggregateDivinerSchema } from './Schema.ts'\n\n/**\n * The config schema type for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n/**\n * The config schema for the JSON Path diviner\n */\nexport const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n\n/**\n * The configuration for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfig = DivinerConfig<\n {\n /**\n * The schema to use for the destination payloads\n */\n destinationSchema?: string\n /**\n * Exclude the source hashes from the destination payload.\n */\n excludeSources?: boolean\n /**\n * The JSON Path transform expressions to apply to the payloads\n */\n schemaTransforms?: SchemaToJsonPathTransformExpressionsDictionary\n } & { schema: JsonPathAggregateDivinerConfigSchema }\n>\n"],"mappings":";AAGO,IAAMA,iCAAiC;;;ACSvC,IAAMC,uCAA6E,GAAGC,8BAAAA;","names":["JsonPathAggregateDivinerSchema","JsonPathAggregateDivinerConfigSchema","JsonPathAggregateDivinerSchema"]}
@@ -1,4 +1,4 @@
1
- import { JsonPathTransformExpression } from './JsonPathTransformExpression.js';
1
+ import { JsonPathTransformExpression } from './JsonPathTransformExpression.ts';
2
2
  export type SchemaToJsonPathTransformExpressionsDictionary<T extends {
3
3
  [schema: string]: unknown;
4
4
  } = {
@@ -1,4 +1,4 @@
1
- import { JsonPathTransformExpression } from './JsonPathTransformExpression.js';
1
+ import { JsonPathTransformExpression } from './JsonPathTransformExpression.ts';
2
2
  export type SchemaToJsonPathTransformExpressionsDictionary<T extends {
3
3
  [schema: string]: unknown;
4
4
  } = {
@@ -1,4 +1,4 @@
1
- import { JsonPathTransformExpression } from './JsonPathTransformExpression.js';
1
+ import { JsonPathTransformExpression } from './JsonPathTransformExpression.ts';
2
2
  export type SchemaToJsonPathTransformExpressionsDictionary<T extends {
3
3
  [schema: string]: unknown;
4
4
  } = {
@@ -1,4 +1,4 @@
1
- import { PayloadTransformer } from './PayloadTransformer.js';
1
+ import { PayloadTransformer } from './PayloadTransformer.ts';
2
2
  export type SchemaToPayloadTransformersDictionary = {
3
3
  [schema: string]: PayloadTransformer[];
4
4
  };
@@ -1,4 +1,4 @@
1
- import { PayloadTransformer } from './PayloadTransformer.js';
1
+ import { PayloadTransformer } from './PayloadTransformer.ts';
2
2
  export type SchemaToPayloadTransformersDictionary = {
3
3
  [schema: string]: PayloadTransformer[];
4
4
  };
@@ -1,4 +1,4 @@
1
- import { PayloadTransformer } from './PayloadTransformer.js';
1
+ import { PayloadTransformer } from './PayloadTransformer.ts';
2
2
  export type SchemaToPayloadTransformersDictionary = {
3
3
  [schema: string]: PayloadTransformer[];
4
4
  };
@@ -1,5 +1,5 @@
1
- export * from './JsonPathTransformExpression.js';
2
- export * from './PayloadTransformer.js';
3
- export * from './SchemaToJsonPathTransformExpressionDictionary.js';
4
- export * from './SchemaToPayloadTransformersDictionary.js';
1
+ export * from './JsonPathTransformExpression.ts';
2
+ export * from './PayloadTransformer.ts';
3
+ export * from './SchemaToJsonPathTransformExpressionDictionary.ts';
4
+ export * from './SchemaToPayloadTransformersDictionary.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- export * from './JsonPathTransformExpression.js';
2
- export * from './PayloadTransformer.js';
3
- export * from './SchemaToJsonPathTransformExpressionDictionary.js';
4
- export * from './SchemaToPayloadTransformersDictionary.js';
1
+ export * from './JsonPathTransformExpression.ts';
2
+ export * from './PayloadTransformer.ts';
3
+ export * from './SchemaToJsonPathTransformExpressionDictionary.ts';
4
+ export * from './SchemaToPayloadTransformersDictionary.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- export * from './JsonPathTransformExpression.js';
2
- export * from './PayloadTransformer.js';
3
- export * from './SchemaToJsonPathTransformExpressionDictionary.js';
4
- export * from './SchemaToPayloadTransformersDictionary.js';
1
+ export * from './JsonPathTransformExpression.ts';
2
+ export * from './PayloadTransformer.ts';
3
+ export * from './SchemaToJsonPathTransformExpressionDictionary.ts';
4
+ export * from './SchemaToPayloadTransformersDictionary.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { DivinerConfig } from '@xyo-network/diviner-model';
2
- import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.js';
3
- import { JsonPathAggregateDivinerSchema } from './Schema.js';
2
+ import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.ts';
3
+ import { JsonPathAggregateDivinerSchema } from './Schema.ts';
4
4
  export type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`;
5
5
  export declare const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema;
6
6
  export type JsonPathAggregateDivinerConfig = DivinerConfig<{
@@ -1,6 +1,6 @@
1
1
  import { DivinerConfig } from '@xyo-network/diviner-model';
2
- import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.js';
3
- import { JsonPathAggregateDivinerSchema } from './Schema.js';
2
+ import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.ts';
3
+ import { JsonPathAggregateDivinerSchema } from './Schema.ts';
4
4
  export type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`;
5
5
  export declare const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema;
6
6
  export type JsonPathAggregateDivinerConfig = DivinerConfig<{
@@ -1,6 +1,6 @@
1
1
  import { DivinerConfig } from '@xyo-network/diviner-model';
2
- import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.js';
3
- import { JsonPathAggregateDivinerSchema } from './Schema.js';
2
+ import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.ts';
3
+ import { JsonPathAggregateDivinerSchema } from './Schema.ts';
4
4
  export type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`;
5
5
  export declare const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema;
6
6
  export type JsonPathAggregateDivinerConfig = DivinerConfig<{
@@ -1,5 +1,5 @@
1
1
  import { DivinerParams } from '@xyo-network/diviner-model';
2
2
  import { AnyConfigSchema } from '@xyo-network/module-model';
3
- import { JsonPathAggregateDivinerConfig } from './Config.js';
3
+ import { JsonPathAggregateDivinerConfig } from './Config.ts';
4
4
  export type JsonPathAggregateDivinerParams = DivinerParams<AnyConfigSchema<JsonPathAggregateDivinerConfig>>;
5
5
  //# sourceMappingURL=Params.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { DivinerParams } from '@xyo-network/diviner-model';
2
2
  import { AnyConfigSchema } from '@xyo-network/module-model';
3
- import { JsonPathAggregateDivinerConfig } from './Config.js';
3
+ import { JsonPathAggregateDivinerConfig } from './Config.ts';
4
4
  export type JsonPathAggregateDivinerParams = DivinerParams<AnyConfigSchema<JsonPathAggregateDivinerConfig>>;
5
5
  //# sourceMappingURL=Params.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { DivinerParams } from '@xyo-network/diviner-model';
2
2
  import { AnyConfigSchema } from '@xyo-network/module-model';
3
- import { JsonPathAggregateDivinerConfig } from './Config.js';
3
+ import { JsonPathAggregateDivinerConfig } from './Config.ts';
4
4
  export type JsonPathAggregateDivinerParams = DivinerParams<AnyConfigSchema<JsonPathAggregateDivinerConfig>>;
5
5
  //# sourceMappingURL=Params.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export * from './Config.js'\nexport * from './jsonpath/index.js'\nexport * from './Params.js'\nexport * from './Schema.js'\n","/**\n * The schema used for the JSONPath Diviner.\n */\nexport const JsonPathAggregateDivinerSchema = 'network.xyo.diviner.jsonpath.aggregate' as const\n\n/**\n * The schema type used for the JSONPath Diviner.\n */\nexport type JsonPathAggregateDivinerSchema = typeof JsonPathAggregateDivinerSchema\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.js'\nimport { JsonPathAggregateDivinerSchema } from './Schema.js'\n\n/**\n * The config schema type for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n/**\n * The config schema for the JSON Path diviner\n */\nexport const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n\n/**\n * The configuration for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfig = DivinerConfig<\n {\n /**\n * The schema to use for the destination payloads\n */\n destinationSchema?: string\n /**\n * Exclude the source hashes from the destination payload.\n */\n excludeSources?: boolean\n /**\n * The JSON Path transform expressions to apply to the payloads\n */\n schemaTransforms?: SchemaToJsonPathTransformExpressionsDictionary\n } & { schema: JsonPathAggregateDivinerConfigSchema }\n>\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;ACGO,IAAMA,iCAAiC;;;ACSvC,IAAMC,uCAA6E,GAAGC,8BAAAA;","names":["JsonPathAggregateDivinerSchema","JsonPathAggregateDivinerConfigSchema","JsonPathAggregateDivinerSchema"]}
1
+ {"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export * from './Config.ts'\nexport * from './jsonpath/index.ts'\nexport * from './Params.ts'\nexport * from './Schema.ts'\n","/**\n * The schema used for the JSONPath Diviner.\n */\nexport const JsonPathAggregateDivinerSchema = 'network.xyo.diviner.jsonpath.aggregate' as const\n\n/**\n * The schema type used for the JSONPath Diviner.\n */\nexport type JsonPathAggregateDivinerSchema = typeof JsonPathAggregateDivinerSchema\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.ts'\nimport { JsonPathAggregateDivinerSchema } from './Schema.ts'\n\n/**\n * The config schema type for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n/**\n * The config schema for the JSON Path diviner\n */\nexport const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n\n/**\n * The configuration for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfig = DivinerConfig<\n {\n /**\n * The schema to use for the destination payloads\n */\n destinationSchema?: string\n /**\n * Exclude the source hashes from the destination payload.\n */\n excludeSources?: boolean\n /**\n * The JSON Path transform expressions to apply to the payloads\n */\n schemaTransforms?: SchemaToJsonPathTransformExpressionsDictionary\n } & { schema: JsonPathAggregateDivinerConfigSchema }\n>\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;ACGO,IAAMA,iCAAiC;;;ACSvC,IAAMC,uCAA6E,GAAGC,8BAAAA;","names":["JsonPathAggregateDivinerSchema","JsonPathAggregateDivinerConfigSchema","JsonPathAggregateDivinerSchema"]}
@@ -1,5 +1,5 @@
1
- export * from './Config.js';
2
- export * from './jsonpath/index.js';
3
- export * from './Params.js';
4
- export * from './Schema.js';
1
+ export * from './Config.ts';
2
+ export * from './jsonpath/index.ts';
3
+ export * from './Params.ts';
4
+ export * from './Schema.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- export * from './Config.js';
2
- export * from './jsonpath/index.js';
3
- export * from './Params.js';
4
- export * from './Schema.js';
1
+ export * from './Config.ts';
2
+ export * from './jsonpath/index.ts';
3
+ export * from './Params.ts';
4
+ export * from './Schema.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- export * from './Config.js';
2
- export * from './jsonpath/index.js';
3
- export * from './Params.js';
4
- export * from './Schema.js';
1
+ export * from './Config.ts';
2
+ export * from './jsonpath/index.ts';
3
+ export * from './Params.ts';
4
+ export * from './Schema.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["/**\n * The schema used for the JSONPath Diviner.\n */\nexport const JsonPathAggregateDivinerSchema = 'network.xyo.diviner.jsonpath.aggregate' as const\n\n/**\n * The schema type used for the JSONPath Diviner.\n */\nexport type JsonPathAggregateDivinerSchema = typeof JsonPathAggregateDivinerSchema\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.js'\nimport { JsonPathAggregateDivinerSchema } from './Schema.js'\n\n/**\n * The config schema type for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n/**\n * The config schema for the JSON Path diviner\n */\nexport const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n\n/**\n * The configuration for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfig = DivinerConfig<\n {\n /**\n * The schema to use for the destination payloads\n */\n destinationSchema?: string\n /**\n * Exclude the source hashes from the destination payload.\n */\n excludeSources?: boolean\n /**\n * The JSON Path transform expressions to apply to the payloads\n */\n schemaTransforms?: SchemaToJsonPathTransformExpressionsDictionary\n } & { schema: JsonPathAggregateDivinerConfigSchema }\n>\n"],"mappings":";AAGO,IAAMA,iCAAiC;;;ACSvC,IAAMC,uCAA6E,GAAGC,8BAAAA;","names":["JsonPathAggregateDivinerSchema","JsonPathAggregateDivinerConfigSchema","JsonPathAggregateDivinerSchema"]}
1
+ {"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["/**\n * The schema used for the JSONPath Diviner.\n */\nexport const JsonPathAggregateDivinerSchema = 'network.xyo.diviner.jsonpath.aggregate' as const\n\n/**\n * The schema type used for the JSONPath Diviner.\n */\nexport type JsonPathAggregateDivinerSchema = typeof JsonPathAggregateDivinerSchema\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.ts'\nimport { JsonPathAggregateDivinerSchema } from './Schema.ts'\n\n/**\n * The config schema type for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n/**\n * The config schema for the JSON Path diviner\n */\nexport const JsonPathAggregateDivinerConfigSchema: JsonPathAggregateDivinerConfigSchema = `${JsonPathAggregateDivinerSchema}.config`\n\n/**\n * The configuration for the JSON Path diviner\n */\nexport type JsonPathAggregateDivinerConfig = DivinerConfig<\n {\n /**\n * The schema to use for the destination payloads\n */\n destinationSchema?: string\n /**\n * Exclude the source hashes from the destination payload.\n */\n excludeSources?: boolean\n /**\n * The JSON Path transform expressions to apply to the payloads\n */\n schemaTransforms?: SchemaToJsonPathTransformExpressionsDictionary\n } & { schema: JsonPathAggregateDivinerConfigSchema }\n>\n"],"mappings":";AAGO,IAAMA,iCAAiC;;;ACSvC,IAAMC,uCAA6E,GAAGC,8BAAAA;","names":["JsonPathAggregateDivinerSchema","JsonPathAggregateDivinerConfigSchema","JsonPathAggregateDivinerSchema"]}
@@ -1,4 +1,4 @@
1
- import { JsonPathTransformExpression } from './JsonPathTransformExpression.js';
1
+ import { JsonPathTransformExpression } from './JsonPathTransformExpression.ts';
2
2
  export type SchemaToJsonPathTransformExpressionsDictionary<T extends {
3
3
  [schema: string]: unknown;
4
4
  } = {
@@ -1,4 +1,4 @@
1
- import { JsonPathTransformExpression } from './JsonPathTransformExpression.js';
1
+ import { JsonPathTransformExpression } from './JsonPathTransformExpression.ts';
2
2
  export type SchemaToJsonPathTransformExpressionsDictionary<T extends {
3
3
  [schema: string]: unknown;
4
4
  } = {
@@ -1,4 +1,4 @@
1
- import { JsonPathTransformExpression } from './JsonPathTransformExpression.js';
1
+ import { JsonPathTransformExpression } from './JsonPathTransformExpression.ts';
2
2
  export type SchemaToJsonPathTransformExpressionsDictionary<T extends {
3
3
  [schema: string]: unknown;
4
4
  } = {
@@ -1,4 +1,4 @@
1
- import { PayloadTransformer } from './PayloadTransformer.js';
1
+ import { PayloadTransformer } from './PayloadTransformer.ts';
2
2
  export type SchemaToPayloadTransformersDictionary = {
3
3
  [schema: string]: PayloadTransformer[];
4
4
  };
@@ -1,4 +1,4 @@
1
- import { PayloadTransformer } from './PayloadTransformer.js';
1
+ import { PayloadTransformer } from './PayloadTransformer.ts';
2
2
  export type SchemaToPayloadTransformersDictionary = {
3
3
  [schema: string]: PayloadTransformer[];
4
4
  };
@@ -1,4 +1,4 @@
1
- import { PayloadTransformer } from './PayloadTransformer.js';
1
+ import { PayloadTransformer } from './PayloadTransformer.ts';
2
2
  export type SchemaToPayloadTransformersDictionary = {
3
3
  [schema: string]: PayloadTransformer[];
4
4
  };
@@ -1,5 +1,5 @@
1
- export * from './JsonPathTransformExpression.js';
2
- export * from './PayloadTransformer.js';
3
- export * from './SchemaToJsonPathTransformExpressionDictionary.js';
4
- export * from './SchemaToPayloadTransformersDictionary.js';
1
+ export * from './JsonPathTransformExpression.ts';
2
+ export * from './PayloadTransformer.ts';
3
+ export * from './SchemaToJsonPathTransformExpressionDictionary.ts';
4
+ export * from './SchemaToPayloadTransformersDictionary.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- export * from './JsonPathTransformExpression.js';
2
- export * from './PayloadTransformer.js';
3
- export * from './SchemaToJsonPathTransformExpressionDictionary.js';
4
- export * from './SchemaToPayloadTransformersDictionary.js';
1
+ export * from './JsonPathTransformExpression.ts';
2
+ export * from './PayloadTransformer.ts';
3
+ export * from './SchemaToJsonPathTransformExpressionDictionary.ts';
4
+ export * from './SchemaToPayloadTransformersDictionary.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,5 @@
1
- export * from './JsonPathTransformExpression.js';
2
- export * from './PayloadTransformer.js';
3
- export * from './SchemaToJsonPathTransformExpressionDictionary.js';
4
- export * from './SchemaToPayloadTransformersDictionary.js';
1
+ export * from './JsonPathTransformExpression.ts';
2
+ export * from './PayloadTransformer.ts';
3
+ export * from './SchemaToJsonPathTransformExpressionDictionary.ts';
4
+ export * from './SchemaToPayloadTransformersDictionary.ts';
5
5
  //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -11,9 +11,9 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "@xylabs/object": "^3.6.6",
14
- "@xyo-network/diviner-model": "^2.110.15",
15
- "@xyo-network/module-model": "^2.110.15",
16
- "@xyo-network/payload-model": "^2.110.15"
14
+ "@xyo-network/diviner-model": "^2.110.17",
15
+ "@xyo-network/module-model": "^2.110.17",
16
+ "@xyo-network/payload-model": "^2.110.17"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@xylabs/ts-scripts-yarn3": "^3.14.1",
@@ -59,6 +59,6 @@
59
59
  "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
60
60
  },
61
61
  "sideEffects": false,
62
- "version": "2.110.15",
62
+ "version": "2.110.17",
63
63
  "type": "module"
64
64
  }
package/src/Config.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { DivinerConfig } from '@xyo-network/diviner-model'
2
2
 
3
- import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.js'
4
- import { JsonPathAggregateDivinerSchema } from './Schema.js'
3
+ import { SchemaToJsonPathTransformExpressionsDictionary } from './jsonpath/index.ts'
4
+ import { JsonPathAggregateDivinerSchema } from './Schema.ts'
5
5
 
6
6
  /**
7
7
  * The config schema type for the JSON Path diviner
package/src/Params.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { DivinerParams } from '@xyo-network/diviner-model'
2
2
  import { AnyConfigSchema } from '@xyo-network/module-model'
3
3
 
4
- import { JsonPathAggregateDivinerConfig } from './Config.js'
4
+ import { JsonPathAggregateDivinerConfig } from './Config.ts'
5
5
 
6
6
  /**
7
7
  * The params type the JSON Path diviner
package/src/index.ts CHANGED
@@ -1,4 +1,4 @@
1
- export * from './Config.js'
2
- export * from './jsonpath/index.js'
3
- export * from './Params.js'
4
- export * from './Schema.js'
1
+ export * from './Config.ts'
2
+ export * from './jsonpath/index.ts'
3
+ export * from './Params.ts'
4
+ export * from './Schema.ts'
@@ -1,4 +1,4 @@
1
- import { JsonPathTransformExpression } from './JsonPathTransformExpression.js'
1
+ import { JsonPathTransformExpression } from './JsonPathTransformExpression.ts'
2
2
 
3
3
  /**
4
4
  * A dictionary of schema to JSON Path transform expressions.
@@ -1,4 +1,4 @@
1
- import { PayloadTransformer } from './PayloadTransformer.js'
1
+ import { PayloadTransformer } from './PayloadTransformer.ts'
2
2
 
3
3
  /**
4
4
  * A dictionary of schema to payload transformers
@@ -1,4 +1,4 @@
1
- export * from './JsonPathTransformExpression.js'
2
- export * from './PayloadTransformer.js'
3
- export * from './SchemaToJsonPathTransformExpressionDictionary.js'
4
- export * from './SchemaToPayloadTransformersDictionary.js'
1
+ export * from './JsonPathTransformExpression.ts'
2
+ export * from './PayloadTransformer.ts'
3
+ export * from './SchemaToJsonPathTransformExpressionDictionary.ts'
4
+ export * from './SchemaToPayloadTransformersDictionary.ts'