@xyo-network/diviner-forecasting-model 2.73.4 → 2.74.1
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/dist/Config/Config.d.mts +12 -0
- package/dist/Config/Config.d.mts.map +1 -0
- package/dist/Config/Config.d.ts +12 -0
- package/dist/Config/Config.d.ts.map +1 -0
- package/dist/Config/ForecastingSettings.d.mts +9 -0
- package/dist/Config/ForecastingSettings.d.mts.map +1 -0
- package/dist/Config/ForecastingSettings.d.ts +9 -0
- package/dist/Config/ForecastingSettings.d.ts.map +1 -0
- package/dist/Config/TransformerSettings.d.mts +4 -0
- package/dist/Config/TransformerSettings.d.mts.map +1 -0
- package/dist/Config/TransformerSettings.d.ts +4 -0
- package/dist/Config/TransformerSettings.d.ts.map +1 -0
- package/dist/Config/index.d.mts +4 -0
- package/dist/Config/index.d.mts.map +1 -0
- package/dist/Config/index.d.ts +4 -0
- package/dist/Config/index.d.ts.map +1 -0
- package/dist/ForecastingMethod.d.mts +6 -0
- package/dist/ForecastingMethod.d.mts.map +1 -0
- package/dist/ForecastingMethod.d.ts +6 -0
- package/dist/ForecastingMethod.d.ts.map +1 -0
- package/dist/Payload/Forecast.d.mts +6 -0
- package/dist/Payload/Forecast.d.mts.map +1 -0
- package/dist/Payload/Forecast.d.ts +6 -0
- package/dist/Payload/Forecast.d.ts.map +1 -0
- package/dist/Payload/Payload.d.mts +14 -0
- package/dist/Payload/Payload.d.mts.map +1 -0
- package/dist/Payload/Payload.d.ts +14 -0
- package/dist/Payload/Payload.d.ts.map +1 -0
- package/dist/Payload/index.d.mts +3 -0
- package/dist/Payload/index.d.mts.map +1 -0
- package/dist/Payload/index.d.ts +3 -0
- package/dist/Payload/index.d.ts.map +1 -0
- package/dist/PayloadValueTransformer.d.mts +3 -0
- package/dist/PayloadValueTransformer.d.mts.map +1 -0
- package/dist/PayloadValueTransformer.d.ts +3 -0
- package/dist/PayloadValueTransformer.d.ts.map +1 -0
- package/dist/Query.d.mts +12 -0
- package/dist/Query.d.mts.map +1 -0
- package/dist/Query.d.ts +12 -0
- package/dist/Query.d.ts.map +1 -0
- package/dist/Schema.d.mts +3 -0
- package/dist/Schema.d.mts.map +1 -0
- package/dist/Schema.d.ts +3 -0
- package/dist/Schema.d.ts.map +1 -0
- package/dist/docs.json +188 -340
- package/dist/index.d.mts +7 -64
- package/dist/index.d.mts.map +1 -0
- package/dist/index.d.ts +7 -64
- package/dist/index.d.ts.map +1 -0
- package/package.json +7 -13
- package/tsup.config.ts +0 -16
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
2
|
+
import { ModuleFilter } from '@xyo-network/module-model';
|
|
3
|
+
import { ForecastingDivinerSchema } from '../Schema';
|
|
4
|
+
import { ForecastingSettings } from './ForecastingSettings';
|
|
5
|
+
import { TransformerSettings } from './TransformerSettings';
|
|
6
|
+
export type ForecastingDivinerConfigSchema = `${ForecastingDivinerSchema}.config`;
|
|
7
|
+
export declare const ForecastingDivinerConfigSchema: ForecastingDivinerConfigSchema;
|
|
8
|
+
export type ForecastingDivinerConfig = DivinerConfig<{
|
|
9
|
+
boundWitnessDiviner?: ModuleFilter;
|
|
10
|
+
schema: ForecastingDivinerConfigSchema;
|
|
11
|
+
} & ForecastingSettings & TransformerSettings>;
|
|
12
|
+
//# sourceMappingURL=Config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/Config/Config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAA;AAExD,OAAO,EAAE,wBAAwB,EAAE,MAAM,WAAW,CAAA;AACpD,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAE3D,MAAM,MAAM,8BAA8B,GAAG,GAAG,wBAAwB,SAAS,CAAA;AACjF,eAAO,MAAM,8BAA8B,EAAE,8BAAqE,CAAA;AAElH,MAAM,MAAM,wBAAwB,GAAG,aAAa,CAClD;IACE,mBAAmB,CAAC,EAAE,YAAY,CAAA;IAClC,MAAM,EAAE,8BAA8B,CAAA;CACvC,GAAG,mBAAmB,GACrB,mBAAmB,CACtB,CAAA"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
2
|
+
import { ModuleFilter } from '@xyo-network/module-model';
|
|
3
|
+
import { ForecastingDivinerSchema } from '../Schema';
|
|
4
|
+
import { ForecastingSettings } from './ForecastingSettings';
|
|
5
|
+
import { TransformerSettings } from './TransformerSettings';
|
|
6
|
+
export type ForecastingDivinerConfigSchema = `${ForecastingDivinerSchema}.config`;
|
|
7
|
+
export declare const ForecastingDivinerConfigSchema: ForecastingDivinerConfigSchema;
|
|
8
|
+
export type ForecastingDivinerConfig = DivinerConfig<{
|
|
9
|
+
boundWitnessDiviner?: ModuleFilter;
|
|
10
|
+
schema: ForecastingDivinerConfigSchema;
|
|
11
|
+
} & ForecastingSettings & TransformerSettings>;
|
|
12
|
+
//# sourceMappingURL=Config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/Config/Config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAA;AAExD,OAAO,EAAE,wBAAwB,EAAE,MAAM,WAAW,CAAA;AACpD,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAE3D,MAAM,MAAM,8BAA8B,GAAG,GAAG,wBAAwB,SAAS,CAAA;AACjF,eAAO,MAAM,8BAA8B,EAAE,8BAAqE,CAAA;AAElH,MAAM,MAAM,wBAAwB,GAAG,aAAa,CAClD;IACE,mBAAmB,CAAC,EAAE,YAAY,CAAA;IAClC,MAAM,EAAE,8BAA8B,CAAA;CACvC,GAAG,mBAAmB,GACrB,mBAAmB,CACtB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ForecastingSettings.d.ts","sourceRoot":"","sources":["../../src/Config/ForecastingSettings.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,mBAAmB;IAClC,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAA;IAC3B,aAAa,CAAC,EAAE,MAAM,CAAA;CACvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ForecastingSettings.d.ts","sourceRoot":"","sources":["../../src/Config/ForecastingSettings.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,mBAAmB;IAClC,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAA;IAC3B,aAAa,CAAC,EAAE,MAAM,CAAA;CACvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TransformerSettings.d.ts","sourceRoot":"","sources":["../../src/Config/TransformerSettings.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,mBAAmB;IAClC,kBAAkB,CAAC,EAAE,MAAM,CAAA;CAC5B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TransformerSettings.d.ts","sourceRoot":"","sources":["../../src/Config/TransformerSettings.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,mBAAmB;IAClC,kBAAkB,CAAC,EAAE,MAAM,CAAA;CAC5B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Config/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,uBAAuB,CAAA;AACrC,cAAc,uBAAuB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Config/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,uBAAuB,CAAA;AACrC,cAAc,uBAAuB,CAAA"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
+
import { Promisable } from '@xyo-network/promise';
|
|
3
|
+
import { Forecast } from './Payload';
|
|
4
|
+
import { PayloadValueTransformer } from './PayloadValueTransformer';
|
|
5
|
+
export type ForecastingMethod = (payloads: Payload[], transformers: PayloadValueTransformer) => Promisable<Forecast[]>;
|
|
6
|
+
//# sourceMappingURL=ForecastingMethod.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ForecastingMethod.d.ts","sourceRoot":"","sources":["../src/ForecastingMethod.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AACpD,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AAEjD,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AACpC,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAA;AAEnE,MAAM,MAAM,iBAAiB,GAAG,CAAC,QAAQ,EAAE,OAAO,EAAE,EAAE,YAAY,EAAE,uBAAuB,KAAK,UAAU,CAAC,QAAQ,EAAE,CAAC,CAAA"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
+
import { Promisable } from '@xyo-network/promise';
|
|
3
|
+
import { Forecast } from './Payload';
|
|
4
|
+
import { PayloadValueTransformer } from './PayloadValueTransformer';
|
|
5
|
+
export type ForecastingMethod = (payloads: Payload[], transformers: PayloadValueTransformer) => Promisable<Forecast[]>;
|
|
6
|
+
//# sourceMappingURL=ForecastingMethod.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ForecastingMethod.d.ts","sourceRoot":"","sources":["../src/ForecastingMethod.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AACpD,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AAEjD,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AACpC,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAA;AAEnE,MAAM,MAAM,iBAAiB,GAAG,CAAC,QAAQ,EAAE,OAAO,EAAE,EAAE,YAAY,EAAE,uBAAuB,KAAK,UAAU,CAAC,QAAQ,EAAE,CAAC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Forecast.d.ts","sourceRoot":"","sources":["../../src/Payload/Forecast.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,QAAQ;IACvB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,EAAE,MAAM,CAAA;CACd"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Forecast.d.ts","sourceRoot":"","sources":["../../src/Payload/Forecast.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,QAAQ;IACvB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,EAAE,MAAM,CAAA;CACd"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
+
import { ForecastingDivinerSchema } from '../Schema';
|
|
3
|
+
import { Forecast } from './Forecast';
|
|
4
|
+
export type ForecastPayloadSchema = `${ForecastingDivinerSchema}.forecast`;
|
|
5
|
+
export declare const ForecastPayloadSchema: ForecastPayloadSchema;
|
|
6
|
+
export type ForecastPayload = Payload<{
|
|
7
|
+
schema: ForecastPayloadSchema;
|
|
8
|
+
values: Forecast[];
|
|
9
|
+
}>;
|
|
10
|
+
export declare const isForecastPayload: (x?: Payload | null) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
11
|
+
schema: ForecastPayloadSchema;
|
|
12
|
+
values: Forecast[];
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=Payload.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Payload.d.ts","sourceRoot":"","sources":["../../src/Payload/Payload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAEpD,OAAO,EAAE,wBAAwB,EAAE,MAAM,WAAW,CAAA;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAErC,MAAM,MAAM,qBAAqB,GAAG,GAAG,wBAAwB,WAAW,CAAA;AAC1E,eAAO,MAAM,qBAAqB,EAAE,qBAA8D,CAAA;AAElG,MAAM,MAAM,eAAe,GAAG,OAAO,CAAC;IACpC,MAAM,EAAE,qBAAqB,CAAA;IAC7B,MAAM,EAAE,QAAQ,EAAE,CAAA;CACnB,CAAC,CAAA;AACF,eAAO,MAAM,iBAAiB,OAAQ,OAAO,GAAG,IAAI;YAH1C,qBAAqB;YACrB,QAAQ,EAAE;CAE8F,CAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
+
import { ForecastingDivinerSchema } from '../Schema';
|
|
3
|
+
import { Forecast } from './Forecast';
|
|
4
|
+
export type ForecastPayloadSchema = `${ForecastingDivinerSchema}.forecast`;
|
|
5
|
+
export declare const ForecastPayloadSchema: ForecastPayloadSchema;
|
|
6
|
+
export type ForecastPayload = Payload<{
|
|
7
|
+
schema: ForecastPayloadSchema;
|
|
8
|
+
values: Forecast[];
|
|
9
|
+
}>;
|
|
10
|
+
export declare const isForecastPayload: (x?: Payload | null) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
11
|
+
schema: ForecastPayloadSchema;
|
|
12
|
+
values: Forecast[];
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=Payload.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Payload.d.ts","sourceRoot":"","sources":["../../src/Payload/Payload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAEpD,OAAO,EAAE,wBAAwB,EAAE,MAAM,WAAW,CAAA;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAErC,MAAM,MAAM,qBAAqB,GAAG,GAAG,wBAAwB,WAAW,CAAA;AAC1E,eAAO,MAAM,qBAAqB,EAAE,qBAA8D,CAAA;AAElG,MAAM,MAAM,eAAe,GAAG,OAAO,CAAC;IACpC,MAAM,EAAE,qBAAqB,CAAA;IAC7B,MAAM,EAAE,QAAQ,EAAE,CAAA;CACnB,CAAC,CAAA;AACF,eAAO,MAAM,iBAAiB,OAAQ,OAAO,GAAG,IAAI;YAH1C,qBAAqB;YACrB,QAAQ,EAAE;CAE8F,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Payload/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Payload/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PayloadValueTransformer.d.ts","sourceRoot":"","sources":["../src/PayloadValueTransformer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAEpD,MAAM,MAAM,uBAAuB,GAAG,CAAC,OAAO,EAAE,OAAO,KAAK,MAAM,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PayloadValueTransformer.d.ts","sourceRoot":"","sources":["../src/PayloadValueTransformer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAEpD,MAAM,MAAM,uBAAuB,GAAG,CAAC,OAAO,EAAE,OAAO,KAAK,MAAM,CAAA"}
|
package/dist/Query.d.mts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Payload, Query } from '@xyo-network/payload-model';
|
|
2
|
+
import { ForecastingSettings } from './Config';
|
|
3
|
+
import { ForecastingDivinerSchema } from './Schema';
|
|
4
|
+
export type ForecastingDivinerQuerySchema = `${ForecastingDivinerSchema}.query`;
|
|
5
|
+
export declare const ForecastingDivinerQuerySchema: ForecastingDivinerQuerySchema;
|
|
6
|
+
export type ForecastingDivinerQueryPayload = Query<{
|
|
7
|
+
schema: ForecastingDivinerQuerySchema;
|
|
8
|
+
} & Partial<ForecastingSettings>>;
|
|
9
|
+
export declare const isForecastingDivinerQueryPayload: (x?: Payload | null) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
10
|
+
schema: ForecastingDivinerQuerySchema;
|
|
11
|
+
} & Partial<ForecastingSettings> & import("@xyo-network/payload-model").QueryFields;
|
|
12
|
+
//# sourceMappingURL=Query.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Query.d.ts","sourceRoot":"","sources":["../src/Query.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,4BAA4B,CAAA;AAE3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAA;AAC9C,OAAO,EAAE,wBAAwB,EAAE,MAAM,UAAU,CAAA;AAEnD,MAAM,MAAM,6BAA6B,GAAG,GAAG,wBAAwB,QAAQ,CAAA;AAC/E,eAAO,MAAM,6BAA6B,EAAE,6BAAmE,CAAA;AAE/G,MAAM,MAAM,8BAA8B,GAAG,KAAK,CAAC;IAAE,MAAM,EAAE,6BAA6B,CAAA;CAAE,GAAG,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAA;AAC5H,eAAO,MAAM,gCAAgC,OAAQ,OAAO,GAAG,IAAI;YADN,6BAA6B;mFAE7C,CAAA"}
|
package/dist/Query.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Payload, Query } from '@xyo-network/payload-model';
|
|
2
|
+
import { ForecastingSettings } from './Config';
|
|
3
|
+
import { ForecastingDivinerSchema } from './Schema';
|
|
4
|
+
export type ForecastingDivinerQuerySchema = `${ForecastingDivinerSchema}.query`;
|
|
5
|
+
export declare const ForecastingDivinerQuerySchema: ForecastingDivinerQuerySchema;
|
|
6
|
+
export type ForecastingDivinerQueryPayload = Query<{
|
|
7
|
+
schema: ForecastingDivinerQuerySchema;
|
|
8
|
+
} & Partial<ForecastingSettings>>;
|
|
9
|
+
export declare const isForecastingDivinerQueryPayload: (x?: Payload | null) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
10
|
+
schema: ForecastingDivinerQuerySchema;
|
|
11
|
+
} & Partial<ForecastingSettings> & import("@xyo-network/payload-model").QueryFields;
|
|
12
|
+
//# sourceMappingURL=Query.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Query.d.ts","sourceRoot":"","sources":["../src/Query.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,4BAA4B,CAAA;AAE3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAA;AAC9C,OAAO,EAAE,wBAAwB,EAAE,MAAM,UAAU,CAAA;AAEnD,MAAM,MAAM,6BAA6B,GAAG,GAAG,wBAAwB,QAAQ,CAAA;AAC/E,eAAO,MAAM,6BAA6B,EAAE,6BAAmE,CAAA;AAE/G,MAAM,MAAM,8BAA8B,GAAG,KAAK,CAAC;IAAE,MAAM,EAAE,6BAA6B,CAAA;CAAE,GAAG,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAA;AAC5H,eAAO,MAAM,gCAAgC,OAAQ,OAAO,GAAG,IAAI;YADN,6BAA6B;mFAE7C,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../src/Schema.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,wBAAwB,GAAG,iCAAiC,CAAA;AACxE,eAAO,MAAM,wBAAwB,EAAE,wBAA4D,CAAA"}
|
package/dist/Schema.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../src/Schema.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,wBAAwB,GAAG,iCAAiC,CAAA;AACxE,eAAO,MAAM,wBAAwB,EAAE,wBAA4D,CAAA"}
|