faros-js-client 0.2.26 → 0.2.28
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/README.md +42 -0
- package/lib/client.d.ts +2 -1
- package/lib/client.js +12 -4
- package/lib/client.js.map +1 -1
- package/lib/graphql/query-builder.d.ts +87 -0
- package/lib/graphql/query-builder.js +159 -0
- package/lib/graphql/query-builder.js.map +1 -0
- package/lib/index.d.ts +2 -1
- package/lib/index.js +5 -1
- package/lib/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types.d.ts +22 -0
- package/lib/types.js.map +1 -1
- package/lib/utils.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -30,6 +30,48 @@ const query = `{
|
|
|
30
30
|
const data = await client.gql('default', query);
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
+
## GraphQL Query Builder
|
|
34
|
+
|
|
35
|
+
The QueryBuilder class is a utility to help construct GraphQL mutations from Faros models.
|
|
36
|
+
|
|
37
|
+
Example constructing the GraphQL mutation that upserts an application and deployment.
|
|
38
|
+
|
|
39
|
+
```ts
|
|
40
|
+
// The QueryBuilder manages origin for you
|
|
41
|
+
const qb = new QueryBuilder(ORIGIN);
|
|
42
|
+
|
|
43
|
+
const application: MutationParams = {
|
|
44
|
+
model: 'compute_Application',
|
|
45
|
+
key: {
|
|
46
|
+
name: '<application_name>',
|
|
47
|
+
platform: '<application_platform>',
|
|
48
|
+
},
|
|
49
|
+
};
|
|
50
|
+
const deployment: MutationParams = {
|
|
51
|
+
model: 'cicd_Deployment',
|
|
52
|
+
key: {
|
|
53
|
+
uid: '<deployment_uid',
|
|
54
|
+
source: '<deployment_source>',
|
|
55
|
+
},
|
|
56
|
+
body: {
|
|
57
|
+
// Fields that reference another model need to be refs
|
|
58
|
+
application: qb.ref(application),
|
|
59
|
+
status: {
|
|
60
|
+
category: 'Success',
|
|
61
|
+
detail: '<status_detail>',
|
|
62
|
+
},
|
|
63
|
+
},
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
const mutations = [
|
|
67
|
+
qb.upsert(application),
|
|
68
|
+
qb.upsert(deployment)
|
|
69
|
+
];
|
|
70
|
+
|
|
71
|
+
// Send your mutations to Faros!
|
|
72
|
+
await client.sendMutations(mutations);
|
|
73
|
+
```
|
|
74
|
+
|
|
33
75
|
Please read the [Faros documentation][farosdocs] to learn more.
|
|
34
76
|
|
|
35
77
|
[farosdocs]: https://docs.faros.ai
|
package/lib/client.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as gql from 'graphql';
|
|
|
3
3
|
import { Logger } from 'pino';
|
|
4
4
|
import { paginatedQuery } from './graphql/graphql';
|
|
5
5
|
import { Schema } from './graphql/types';
|
|
6
|
-
import { Account, FarosClientConfig, GraphVersion, Location, Model, NamedQuery, Phantom, SecretName, UpdateAccount } from './types';
|
|
6
|
+
import { Account, FarosClientConfig, GraphVersion, Location, Model, Mutation, NamedQuery, Phantom, SecretName, UpdateAccount } from './types';
|
|
7
7
|
export declare const DEFAULT_AXIOS_CONFIG: AxiosRequestConfig;
|
|
8
8
|
export declare const GRAPH_VERSION_HEADER = "x-faros-graph-version";
|
|
9
9
|
/** Faros API client **/
|
|
@@ -25,6 +25,7 @@ export declare class FarosClient {
|
|
|
25
25
|
queryParameters(): string | undefined;
|
|
26
26
|
private doGql;
|
|
27
27
|
gql(graph: string, query: string, variables?: any): Promise<any>;
|
|
28
|
+
sendMutations(graph: string, mutations: Mutation[]): Promise<any>;
|
|
28
29
|
rawGql(graph: string, query: string, variables?: any): Promise<any>;
|
|
29
30
|
gqlNoDirectives(graph: string, rawQuery: string, variables?: unknown): Promise<any>;
|
|
30
31
|
gqlSchema(graph: string): Promise<Schema>;
|
package/lib/client.js
CHANGED
|
@@ -34,6 +34,7 @@ const verror_1 = __importDefault(require("verror"));
|
|
|
34
34
|
const axios_1 = require("./axios");
|
|
35
35
|
const errors_1 = require("./errors");
|
|
36
36
|
const graphql_1 = require("./graphql/graphql");
|
|
37
|
+
const query_builder_1 = require("./graphql/query-builder");
|
|
37
38
|
const types_1 = require("./types");
|
|
38
39
|
const utils_1 = require("./utils");
|
|
39
40
|
exports.DEFAULT_AXIOS_CONFIG = { timeout: 60000 };
|
|
@@ -128,7 +129,7 @@ class FarosClient {
|
|
|
128
129
|
await this.api.post(`/graphs/${graph}/models`, models, {
|
|
129
130
|
headers: { 'content-type': 'application/graphql' },
|
|
130
131
|
params: {
|
|
131
|
-
...(schema && { schema })
|
|
132
|
+
...(schema && { schema }),
|
|
132
133
|
},
|
|
133
134
|
});
|
|
134
135
|
}
|
|
@@ -165,9 +166,9 @@ class FarosClient {
|
|
|
165
166
|
}
|
|
166
167
|
}
|
|
167
168
|
queryParameters() {
|
|
168
|
-
return this.graphVersion === types_1.GraphVersion.V2
|
|
169
|
-
`phantoms=${this.phantoms}`
|
|
170
|
-
undefined;
|
|
169
|
+
return this.graphVersion === types_1.GraphVersion.V2
|
|
170
|
+
? `phantoms=${this.phantoms}`
|
|
171
|
+
: undefined;
|
|
171
172
|
}
|
|
172
173
|
async doGql(graph, query, variables) {
|
|
173
174
|
try {
|
|
@@ -187,6 +188,13 @@ class FarosClient {
|
|
|
187
188
|
const data = await this.doGql(graph, query, variables);
|
|
188
189
|
return data.data;
|
|
189
190
|
}
|
|
191
|
+
async sendMutations(graph, mutations) {
|
|
192
|
+
const gql = (0, query_builder_1.batchMutation)(mutations);
|
|
193
|
+
if (gql) {
|
|
194
|
+
return await this.gql(graph, gql);
|
|
195
|
+
}
|
|
196
|
+
return undefined;
|
|
197
|
+
}
|
|
190
198
|
/* returns both data (as res.data) and errors (as res.errors) */
|
|
191
199
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
|
192
200
|
async rawGql(graph, query, variables) {
|
package/lib/client.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,6CAA+B;AAC/B,mCAAgD;AAChD,gDAAkC;AAClC,oDAA4B;AAE5B,mCAAmD;AACnD,qCAAsC;AACtC,+CAAiD;
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { Mutation } from '../types';
|
|
2
|
+
export interface MutationFields {
|
|
3
|
+
[field: string]: MutationFieldValue;
|
|
4
|
+
}
|
|
5
|
+
export declare class Ref {
|
|
6
|
+
readonly params: RefParams;
|
|
7
|
+
constructor(params: RefParams);
|
|
8
|
+
}
|
|
9
|
+
export interface RefParams {
|
|
10
|
+
model: string;
|
|
11
|
+
key: MutationFields;
|
|
12
|
+
}
|
|
13
|
+
export interface MutationParams extends RefParams {
|
|
14
|
+
body?: MutationFields;
|
|
15
|
+
mask?: string[];
|
|
16
|
+
}
|
|
17
|
+
interface CategoryDetail {
|
|
18
|
+
category: string;
|
|
19
|
+
detail: string;
|
|
20
|
+
}
|
|
21
|
+
export declare type MutationFieldValue = string | number | CategoryDetail | Ref;
|
|
22
|
+
export declare class QueryBuilder {
|
|
23
|
+
private readonly origin;
|
|
24
|
+
constructor(origin: string);
|
|
25
|
+
/**
|
|
26
|
+
* Creates an upsert mutation.
|
|
27
|
+
* @param model The Faros model
|
|
28
|
+
* @param key The object's key fields
|
|
29
|
+
* @param body The object's non key fields
|
|
30
|
+
* @param mask The column mask of what to update on conflict
|
|
31
|
+
* @returns The upsert mutation
|
|
32
|
+
*/
|
|
33
|
+
upsert(params: MutationParams): Mutation;
|
|
34
|
+
/**
|
|
35
|
+
* Creates a Ref with the given RefParams that can be used inside the key
|
|
36
|
+
* or body of an upsert.
|
|
37
|
+
*/
|
|
38
|
+
ref(params: RefParams): Ref;
|
|
39
|
+
/**
|
|
40
|
+
* Create a mutation object that will update every field unless an explicit
|
|
41
|
+
* mask is provided. If the model contains fields that reference another
|
|
42
|
+
* model, those fields will be recursively turned into MutationReferences.
|
|
43
|
+
* @param model The Faros model
|
|
44
|
+
* @param key The object's key fields
|
|
45
|
+
* @param body The object's fields non reference fields
|
|
46
|
+
* @param mask An explicit column mask for onConflict clause
|
|
47
|
+
* @returns The mutation object
|
|
48
|
+
*/
|
|
49
|
+
private mutationObj;
|
|
50
|
+
/**
|
|
51
|
+
* Creates a reference to an object. The object is unchanged if it exists.
|
|
52
|
+
* If the object does not exist already, then a phantom node is created
|
|
53
|
+
* using the models key fields and null origin. Recursively turns any
|
|
54
|
+
* fields that are references into MutationReferences.
|
|
55
|
+
* @param model The Faros model
|
|
56
|
+
* @param key An object containing the model's key fields
|
|
57
|
+
* @returns The mutation reference
|
|
58
|
+
*/
|
|
59
|
+
private mutationRef;
|
|
60
|
+
private createConflictClause;
|
|
61
|
+
}
|
|
62
|
+
export declare function mask(object: any): string[];
|
|
63
|
+
/**
|
|
64
|
+
* Constructs a gql query from an array of json mutations.
|
|
65
|
+
* The outputted qql mutation might look like:
|
|
66
|
+
*
|
|
67
|
+
* mutation {
|
|
68
|
+
* i1: insert_cicd_Artifact_one(object: {uid: "u1b"}) {
|
|
69
|
+
* id
|
|
70
|
+
* refreshedAt
|
|
71
|
+
* }
|
|
72
|
+
* i2: insert_cicd_Artifact_one(object: {uid: "u2b"}) {
|
|
73
|
+
* id
|
|
74
|
+
* refreshedAt
|
|
75
|
+
* }
|
|
76
|
+
* }
|
|
77
|
+
*
|
|
78
|
+
* Notable here are the i1/i2 aliases.
|
|
79
|
+
* These are required when multiple operations share the same
|
|
80
|
+
* name (e.g. insert_cicd_Artifact_one) and are supported in
|
|
81
|
+
* jsonToGraphQLQuery with __aliasFor directive.
|
|
82
|
+
*
|
|
83
|
+
* @return batch gql mutation or undefined if the input is undefined, empty
|
|
84
|
+
* or doesn't contain any mutations.
|
|
85
|
+
*/
|
|
86
|
+
export declare function batchMutation(mutations: Mutation[]): string | undefined;
|
|
87
|
+
export {};
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.batchMutation = exports.mask = exports.QueryBuilder = exports.Ref = void 0;
|
|
4
|
+
const json_to_graphql_query_1 = require("json-to-graphql-query");
|
|
5
|
+
class Ref {
|
|
6
|
+
constructor(params) {
|
|
7
|
+
this.params = params;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
exports.Ref = Ref;
|
|
11
|
+
class QueryBuilder {
|
|
12
|
+
constructor(origin) {
|
|
13
|
+
this.origin = origin;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Creates an upsert mutation.
|
|
17
|
+
* @param model The Faros model
|
|
18
|
+
* @param key The object's key fields
|
|
19
|
+
* @param body The object's non key fields
|
|
20
|
+
* @param mask The column mask of what to update on conflict
|
|
21
|
+
* @returns The upsert mutation
|
|
22
|
+
*/
|
|
23
|
+
upsert(params) {
|
|
24
|
+
const { model } = params;
|
|
25
|
+
const mutationObj = this.mutationObj(params);
|
|
26
|
+
return {
|
|
27
|
+
mutation: {
|
|
28
|
+
[`insert_${model}_one`]: { __args: mutationObj, id: true },
|
|
29
|
+
},
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Creates a Ref with the given RefParams that can be used inside the key
|
|
34
|
+
* or body of an upsert.
|
|
35
|
+
*/
|
|
36
|
+
ref(params) {
|
|
37
|
+
return new Ref(params);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Create a mutation object that will update every field unless an explicit
|
|
41
|
+
* mask is provided. If the model contains fields that reference another
|
|
42
|
+
* model, those fields will be recursively turned into MutationReferences.
|
|
43
|
+
* @param model The Faros model
|
|
44
|
+
* @param key The object's key fields
|
|
45
|
+
* @param body The object's fields non reference fields
|
|
46
|
+
* @param mask An explicit column mask for onConflict clause
|
|
47
|
+
* @returns The mutation object
|
|
48
|
+
*/
|
|
49
|
+
mutationObj(params) {
|
|
50
|
+
var _a;
|
|
51
|
+
const { model, key, body, mask } = params;
|
|
52
|
+
const cleanObj = removeUndefinedProperties((_a = { ...key, ...body }) !== null && _a !== void 0 ? _a : {});
|
|
53
|
+
const mutObj = {};
|
|
54
|
+
const fullMask = [];
|
|
55
|
+
for (const [k, v] of Object.entries(cleanObj)) {
|
|
56
|
+
if (v instanceof Ref) {
|
|
57
|
+
mutObj[k] = this.mutationRef(v.params);
|
|
58
|
+
// ref's key should be suffixed with Id for onConflict field
|
|
59
|
+
fullMask.push(`${k}Id`);
|
|
60
|
+
}
|
|
61
|
+
else {
|
|
62
|
+
mutObj[k] = v;
|
|
63
|
+
fullMask.push(k);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
const conflictMask = mask !== null && mask !== void 0 ? mask : fullMask;
|
|
67
|
+
mutObj.origin = this.origin;
|
|
68
|
+
conflictMask.push('origin');
|
|
69
|
+
return {
|
|
70
|
+
object: mutObj,
|
|
71
|
+
on_conflict: this.createConflictClause(model, conflictMask),
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* Creates a reference to an object. The object is unchanged if it exists.
|
|
76
|
+
* If the object does not exist already, then a phantom node is created
|
|
77
|
+
* using the models key fields and null origin. Recursively turns any
|
|
78
|
+
* fields that are references into MutationReferences.
|
|
79
|
+
* @param model The Faros model
|
|
80
|
+
* @param key An object containing the model's key fields
|
|
81
|
+
* @returns The mutation reference
|
|
82
|
+
*/
|
|
83
|
+
mutationRef(params) {
|
|
84
|
+
const { model, key } = params;
|
|
85
|
+
const mutData = {};
|
|
86
|
+
for (const [k, v] of Object.entries(key)) {
|
|
87
|
+
if (v instanceof Ref) {
|
|
88
|
+
mutData[k] = this.mutationRef(v.params);
|
|
89
|
+
}
|
|
90
|
+
else {
|
|
91
|
+
mutData[k] = v;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
return {
|
|
95
|
+
data: mutData,
|
|
96
|
+
on_conflict: this.createConflictClause(model, ['refreshedAt']),
|
|
97
|
+
};
|
|
98
|
+
}
|
|
99
|
+
createConflictClause(model, mask) {
|
|
100
|
+
return {
|
|
101
|
+
constraint: new json_to_graphql_query_1.EnumType(`${model}_pkey`),
|
|
102
|
+
update_columns: mask.map((c) => new json_to_graphql_query_1.EnumType(c)),
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
exports.QueryBuilder = QueryBuilder;
|
|
107
|
+
function mask(object) {
|
|
108
|
+
return Object.keys(removeUndefinedProperties(object));
|
|
109
|
+
}
|
|
110
|
+
exports.mask = mask;
|
|
111
|
+
function removeUndefinedProperties(object) {
|
|
112
|
+
const result = { ...object };
|
|
113
|
+
Object.keys(result).forEach((key) => result[key] === undefined && delete result[key]);
|
|
114
|
+
return result;
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
* Constructs a gql query from an array of json mutations.
|
|
118
|
+
* The outputted qql mutation might look like:
|
|
119
|
+
*
|
|
120
|
+
* mutation {
|
|
121
|
+
* i1: insert_cicd_Artifact_one(object: {uid: "u1b"}) {
|
|
122
|
+
* id
|
|
123
|
+
* refreshedAt
|
|
124
|
+
* }
|
|
125
|
+
* i2: insert_cicd_Artifact_one(object: {uid: "u2b"}) {
|
|
126
|
+
* id
|
|
127
|
+
* refreshedAt
|
|
128
|
+
* }
|
|
129
|
+
* }
|
|
130
|
+
*
|
|
131
|
+
* Notable here are the i1/i2 aliases.
|
|
132
|
+
* These are required when multiple operations share the same
|
|
133
|
+
* name (e.g. insert_cicd_Artifact_one) and are supported in
|
|
134
|
+
* jsonToGraphQLQuery with __aliasFor directive.
|
|
135
|
+
*
|
|
136
|
+
* @return batch gql mutation or undefined if the input is undefined, empty
|
|
137
|
+
* or doesn't contain any mutations.
|
|
138
|
+
*/
|
|
139
|
+
function batchMutation(mutations) {
|
|
140
|
+
if (mutations.length) {
|
|
141
|
+
const queryObj = {};
|
|
142
|
+
mutations.forEach((query, idx) => {
|
|
143
|
+
if (query.mutation) {
|
|
144
|
+
const queryType = Object.keys(query.mutation)[0];
|
|
145
|
+
const queryBody = query.mutation[queryType];
|
|
146
|
+
queryObj[`m${idx}`] = {
|
|
147
|
+
__aliasFor: queryType,
|
|
148
|
+
...queryBody,
|
|
149
|
+
};
|
|
150
|
+
}
|
|
151
|
+
});
|
|
152
|
+
if (Object.keys(queryObj).length > 0) {
|
|
153
|
+
return (0, json_to_graphql_query_1.jsonToGraphQLQuery)({ mutation: queryObj });
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
return undefined;
|
|
157
|
+
}
|
|
158
|
+
exports.batchMutation = batchMutation;
|
|
159
|
+
//# sourceMappingURL=query-builder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"query-builder.js","sourceRoot":"","sources":["../../src/graphql/query-builder.ts"],"names":[],"mappings":"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"}
|
package/lib/index.d.ts
CHANGED
|
@@ -5,7 +5,8 @@ export { Account, Address, Coordinates, FarosClientConfig, GraphVersion, Locatio
|
|
|
5
5
|
export { foreignKeyForArray, foreignKeyForObj, SchemaLoader, } from './graphql/schema';
|
|
6
6
|
export { ArrayForeignKey, ArrayRelationship, ManualConfiguration, ObjectForeignKey, ObjectRelationship, Reference, BackReference, Schema, PathToModel, Query, } from './graphql/types';
|
|
7
7
|
export { HasuraSchemaLoader } from './graphql/hasura-schema-loader';
|
|
8
|
+
export { QueryBuilder, mask, batchMutation } from './graphql/query-builder';
|
|
8
9
|
export { AnyRecord, FlattenContext, PaginatedQuery, Reader, RecordIterable, buildIncrementalQueryV1, buildIncrementalQueryV2, createIncrementalQueriesV1, createIncrementalQueriesV2, createIncrementalReadersV1, createIncrementalReadersV2, createNonIncrementalReaders, crossMerge, flatten, flattenIterable, flattenV2, paginatedQuery, paginatedQueryV2, pathToModelV1, pathToModelV2, queryNodesPaths, readerFromQuery, toIncrementalV1, toIncrementalV2, } from './graphql/graphql';
|
|
9
10
|
export { FarosGraphSchema } from './schema';
|
|
10
11
|
export { Utils } from './utils';
|
|
11
|
-
export { FieldPaths, getFieldPaths, asV2AST, QueryAdapter
|
|
12
|
+
export { FieldPaths, getFieldPaths, asV2AST, QueryAdapter } from './adapter';
|
package/lib/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.QueryAdapter = exports.asV2AST = exports.getFieldPaths = exports.Utils = exports.FarosGraphSchema = exports.toIncrementalV2 = exports.toIncrementalV1 = exports.readerFromQuery = exports.queryNodesPaths = exports.pathToModelV2 = exports.pathToModelV1 = exports.paginatedQueryV2 = exports.paginatedQuery = exports.flattenV2 = exports.flattenIterable = exports.flatten = exports.crossMerge = exports.createNonIncrementalReaders = exports.createIncrementalReadersV2 = exports.createIncrementalReadersV1 = exports.createIncrementalQueriesV2 = exports.createIncrementalQueriesV1 = exports.buildIncrementalQueryV2 = exports.buildIncrementalQueryV1 = exports.HasuraSchemaLoader = exports.foreignKeyForObj = exports.foreignKeyForArray = exports.GraphVersion = exports.FarosClient = exports.wrapApiError = exports.makeAxiosInstanceWithRetry = exports.makeAxiosInstance = exports.DEFAULT_RETRIES = exports.DEFAULT_RETRY_DELAY = void 0;
|
|
3
|
+
exports.QueryAdapter = exports.asV2AST = exports.getFieldPaths = exports.Utils = exports.FarosGraphSchema = exports.toIncrementalV2 = exports.toIncrementalV1 = exports.readerFromQuery = exports.queryNodesPaths = exports.pathToModelV2 = exports.pathToModelV1 = exports.paginatedQueryV2 = exports.paginatedQuery = exports.flattenV2 = exports.flattenIterable = exports.flatten = exports.crossMerge = exports.createNonIncrementalReaders = exports.createIncrementalReadersV2 = exports.createIncrementalReadersV1 = exports.createIncrementalQueriesV2 = exports.createIncrementalQueriesV1 = exports.buildIncrementalQueryV2 = exports.buildIncrementalQueryV1 = exports.batchMutation = exports.mask = exports.QueryBuilder = exports.HasuraSchemaLoader = exports.foreignKeyForObj = exports.foreignKeyForArray = exports.GraphVersion = exports.FarosClient = exports.wrapApiError = exports.makeAxiosInstanceWithRetry = exports.makeAxiosInstance = exports.DEFAULT_RETRIES = exports.DEFAULT_RETRY_DELAY = void 0;
|
|
4
4
|
var axios_1 = require("./axios");
|
|
5
5
|
Object.defineProperty(exports, "DEFAULT_RETRY_DELAY", { enumerable: true, get: function () { return axios_1.DEFAULT_RETRY_DELAY; } });
|
|
6
6
|
Object.defineProperty(exports, "DEFAULT_RETRIES", { enumerable: true, get: function () { return axios_1.DEFAULT_RETRIES; } });
|
|
@@ -17,6 +17,10 @@ Object.defineProperty(exports, "foreignKeyForArray", { enumerable: true, get: fu
|
|
|
17
17
|
Object.defineProperty(exports, "foreignKeyForObj", { enumerable: true, get: function () { return schema_1.foreignKeyForObj; } });
|
|
18
18
|
var hasura_schema_loader_1 = require("./graphql/hasura-schema-loader");
|
|
19
19
|
Object.defineProperty(exports, "HasuraSchemaLoader", { enumerable: true, get: function () { return hasura_schema_loader_1.HasuraSchemaLoader; } });
|
|
20
|
+
var query_builder_1 = require("./graphql/query-builder");
|
|
21
|
+
Object.defineProperty(exports, "QueryBuilder", { enumerable: true, get: function () { return query_builder_1.QueryBuilder; } });
|
|
22
|
+
Object.defineProperty(exports, "mask", { enumerable: true, get: function () { return query_builder_1.mask; } });
|
|
23
|
+
Object.defineProperty(exports, "batchMutation", { enumerable: true, get: function () { return query_builder_1.batchMutation; } });
|
|
20
24
|
var graphql_1 = require("./graphql/graphql");
|
|
21
25
|
Object.defineProperty(exports, "buildIncrementalQueryV1", { enumerable: true, get: function () { return graphql_1.buildIncrementalQueryV1; } });
|
|
22
26
|
Object.defineProperty(exports, "buildIncrementalQueryV2", { enumerable: true, get: function () { return graphql_1.buildIncrementalQueryV2; } });
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,iCAKiB;AAJf,4GAAA,mBAAmB,OAAA;AACnB,wGAAA,eAAe,OAAA;AACf,0GAAA,iBAAiB,OAAA;AACjB,mHAAA,0BAA0B,OAAA;AAE5B,mCAAsC;AAA9B,sGAAA,YAAY,OAAA;AACpB,mCAAqC;AAA7B,qGAAA,WAAW,OAAA;AACnB,iCAWiB;AANf,qGAAA,YAAY,OAAA;AAOd,2CAI0B;AAHxB,4GAAA,kBAAkB,OAAA;AAClB,0GAAA,gBAAgB,OAAA;AAelB,uEAAkE;AAA1D,0HAAA,kBAAkB,OAAA;AAC1B,6CAyB2B;AAnBzB,kHAAA,uBAAuB,OAAA;AACvB,kHAAA,uBAAuB,OAAA;AACvB,qHAAA,0BAA0B,OAAA;AAC1B,qHAAA,0BAA0B,OAAA;AAC1B,qHAAA,0BAA0B,OAAA;AAC1B,qHAAA,0BAA0B,OAAA;AAC1B,sHAAA,2BAA2B,OAAA;AAC3B,qGAAA,UAAU,OAAA;AACV,kGAAA,OAAO,OAAA;AACP,0GAAA,eAAe,OAAA;AACf,oGAAA,SAAS,OAAA;AACT,yGAAA,cAAc,OAAA;AACd,2GAAA,gBAAgB,OAAA;AAChB,wGAAA,aAAa,OAAA;AACb,wGAAA,aAAa,OAAA;AACb,0GAAA,eAAe,OAAA;AACf,0GAAA,eAAe,OAAA;AACf,0GAAA,eAAe,OAAA;AACf,0GAAA,eAAe,OAAA;AAEjB,mCAA0C;AAAlC,0GAAA,gBAAgB,OAAA;AACxB,iCAA8B;AAAtB,8FAAA,KAAK,OAAA;AACb,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,iCAKiB;AAJf,4GAAA,mBAAmB,OAAA;AACnB,wGAAA,eAAe,OAAA;AACf,0GAAA,iBAAiB,OAAA;AACjB,mHAAA,0BAA0B,OAAA;AAE5B,mCAAsC;AAA9B,sGAAA,YAAY,OAAA;AACpB,mCAAqC;AAA7B,qGAAA,WAAW,OAAA;AACnB,iCAWiB;AANf,qGAAA,YAAY,OAAA;AAOd,2CAI0B;AAHxB,4GAAA,kBAAkB,OAAA;AAClB,0GAAA,gBAAgB,OAAA;AAelB,uEAAkE;AAA1D,0HAAA,kBAAkB,OAAA;AAC1B,yDAA0E;AAAlE,6GAAA,YAAY,OAAA;AAAE,qGAAA,IAAI,OAAA;AAAE,8GAAA,aAAa,OAAA;AACzC,6CAyB2B;AAnBzB,kHAAA,uBAAuB,OAAA;AACvB,kHAAA,uBAAuB,OAAA;AACvB,qHAAA,0BAA0B,OAAA;AAC1B,qHAAA,0BAA0B,OAAA;AAC1B,qHAAA,0BAA0B,OAAA;AAC1B,qHAAA,0BAA0B,OAAA;AAC1B,sHAAA,2BAA2B,OAAA;AAC3B,qGAAA,UAAU,OAAA;AACV,kGAAA,OAAO,OAAA;AACP,0GAAA,eAAe,OAAA;AACf,oGAAA,SAAS,OAAA;AACT,yGAAA,cAAc,OAAA;AACd,2GAAA,gBAAgB,OAAA;AAChB,wGAAA,aAAa,OAAA;AACb,wGAAA,aAAa,OAAA;AACb,0GAAA,eAAe,OAAA;AACf,0GAAA,eAAe,OAAA;AACf,0GAAA,eAAe,OAAA;AACf,0GAAA,eAAe,OAAA;AAEjB,mCAA0C;AAAlC,0GAAA,gBAAgB,OAAA;AACxB,iCAA8B;AAAtB,8FAAA,KAAK,OAAA;AACb,qCAA2E;AAAvD,wGAAA,aAAa,OAAA;AAAE,kGAAA,OAAO,OAAA;AAAE,uGAAA,YAAY,OAAA"}
|
package/lib/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.es2019.full.d.ts","../node_modules/axios/index.d.ts","../node_modules/axios-retry/index.d.ts","../node_modules/is-retry-allowed/index.d.ts","../node_modules/@types/node/ts4.8/assert.d.ts","../node_modules/@types/node/ts4.8/assert/strict.d.ts","../node_modules/@types/node/ts4.8/globals.d.ts","../node_modules/@types/node/ts4.8/async_hooks.d.ts","../node_modules/@types/node/ts4.8/buffer.d.ts","../node_modules/@types/node/ts4.8/child_process.d.ts","../node_modules/@types/node/ts4.8/cluster.d.ts","../node_modules/@types/node/ts4.8/console.d.ts","../node_modules/@types/node/ts4.8/constants.d.ts","../node_modules/@types/node/ts4.8/crypto.d.ts","../node_modules/@types/node/ts4.8/dgram.d.ts","../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../node_modules/@types/node/ts4.8/dns.d.ts","../node_modules/@types/node/ts4.8/dns/promises.d.ts","../node_modules/@types/node/ts4.8/domain.d.ts","../node_modules/@types/node/ts4.8/events.d.ts","../node_modules/@types/node/ts4.8/fs.d.ts","../node_modules/@types/node/ts4.8/fs/promises.d.ts","../node_modules/@types/node/ts4.8/http.d.ts","../node_modules/@types/node/ts4.8/http2.d.ts","../node_modules/@types/node/ts4.8/https.d.ts","../node_modules/@types/node/ts4.8/inspector.d.ts","../node_modules/@types/node/ts4.8/module.d.ts","../node_modules/@types/node/ts4.8/net.d.ts","../node_modules/@types/node/ts4.8/os.d.ts","../node_modules/@types/node/ts4.8/path.d.ts","../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../node_modules/@types/node/ts4.8/process.d.ts","../node_modules/@types/node/ts4.8/punycode.d.ts","../node_modules/@types/node/ts4.8/querystring.d.ts","../node_modules/@types/node/ts4.8/readline.d.ts","../node_modules/@types/node/ts4.8/repl.d.ts","../node_modules/@types/node/ts4.8/stream.d.ts","../node_modules/@types/node/ts4.8/stream/promises.d.ts","../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../node_modules/@types/node/ts4.8/stream/web.d.ts","../node_modules/@types/node/ts4.8/string_decoder.d.ts","../node_modules/@types/node/ts4.8/test.d.ts","../node_modules/@types/node/ts4.8/timers.d.ts","../node_modules/@types/node/ts4.8/timers/promises.d.ts","../node_modules/@types/node/ts4.8/tls.d.ts","../node_modules/@types/node/ts4.8/trace_events.d.ts","../node_modules/@types/node/ts4.8/tty.d.ts","../node_modules/@types/node/ts4.8/url.d.ts","../node_modules/@types/node/ts4.8/util.d.ts","../node_modules/@types/node/ts4.8/v8.d.ts","../node_modules/@types/node/ts4.8/vm.d.ts","../node_modules/@types/node/ts4.8/wasi.d.ts","../node_modules/@types/node/ts4.8/worker_threads.d.ts","../node_modules/@types/node/ts4.8/zlib.d.ts","../node_modules/@types/node/ts4.8/globals.global.d.ts","../node_modules/@types/node/ts4.8/index.d.ts","../node_modules/pino-std-serializers/index.d.ts","../node_modules/pino/node_modules/sonic-boom/types/index.d.ts","../node_modules/pino/pino.d.ts","../node_modules/@types/verror/index.d.ts","../src/errors.ts","../src/axios.ts","../node_modules/graphql/version.d.ts","../node_modules/graphql/jsutils/Maybe.d.ts","../node_modules/graphql/language/source.d.ts","../node_modules/graphql/jsutils/ObjMap.d.ts","../node_modules/graphql/jsutils/Path.d.ts","../node_modules/graphql/jsutils/PromiseOrValue.d.ts","../node_modules/graphql/language/kinds.d.ts","../node_modules/graphql/language/tokenKind.d.ts","../node_modules/graphql/language/ast.d.ts","../node_modules/graphql/language/location.d.ts","../node_modules/graphql/error/GraphQLError.d.ts","../node_modules/graphql/language/directiveLocation.d.ts","../node_modules/graphql/type/directives.d.ts","../node_modules/graphql/type/schema.d.ts","../node_modules/graphql/type/definition.d.ts","../node_modules/graphql/execution/execute.d.ts","../node_modules/graphql/graphql.d.ts","../node_modules/graphql/type/scalars.d.ts","../node_modules/graphql/type/introspection.d.ts","../node_modules/graphql/type/validate.d.ts","../node_modules/graphql/type/assertName.d.ts","../node_modules/graphql/type/index.d.ts","../node_modules/graphql/language/printLocation.d.ts","../node_modules/graphql/language/lexer.d.ts","../node_modules/graphql/language/parser.d.ts","../node_modules/graphql/language/printer.d.ts","../node_modules/graphql/language/visitor.d.ts","../node_modules/graphql/language/predicates.d.ts","../node_modules/graphql/language/index.d.ts","../node_modules/graphql/execution/subscribe.d.ts","../node_modules/graphql/execution/values.d.ts","../node_modules/graphql/execution/index.d.ts","../node_modules/graphql/subscription/index.d.ts","../node_modules/graphql/utilities/TypeInfo.d.ts","../node_modules/graphql/validation/ValidationContext.d.ts","../node_modules/graphql/validation/validate.d.ts","../node_modules/graphql/validation/specifiedRules.d.ts","../node_modules/graphql/validation/rules/ExecutableDefinitionsRule.d.ts","../node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.d.ts","../node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.d.ts","../node_modules/graphql/validation/rules/KnownArgumentNamesRule.d.ts","../node_modules/graphql/validation/rules/KnownDirectivesRule.d.ts","../node_modules/graphql/validation/rules/KnownFragmentNamesRule.d.ts","../node_modules/graphql/validation/rules/KnownTypeNamesRule.d.ts","../node_modules/graphql/validation/rules/LoneAnonymousOperationRule.d.ts","../node_modules/graphql/validation/rules/NoFragmentCyclesRule.d.ts","../node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts","../node_modules/graphql/validation/rules/NoUnusedFragmentsRule.d.ts","../node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts","../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.d.ts","../node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.d.ts","../node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.d.ts","../node_modules/graphql/validation/rules/ScalarLeafsRule.d.ts","../node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.d.ts","../node_modules/graphql/validation/rules/UniqueArgumentNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.d.ts","../node_modules/graphql/validation/rules/UniqueFragmentNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueOperationNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueVariableNamesRule.d.ts","../node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.d.ts","../node_modules/graphql/validation/rules/VariablesAreInputTypesRule.d.ts","../node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.d.ts","../node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.d.ts","../node_modules/graphql/validation/rules/UniqueOperationTypesRule.d.ts","../node_modules/graphql/validation/rules/UniqueTypeNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.d.ts","../node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.d.ts","../node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.d.ts","../node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.d.ts","../node_modules/graphql/validation/index.d.ts","../node_modules/graphql/error/syntaxError.d.ts","../node_modules/graphql/error/locatedError.d.ts","../node_modules/graphql/error/index.d.ts","../node_modules/graphql/utilities/getIntrospectionQuery.d.ts","../node_modules/graphql/utilities/getOperationAST.d.ts","../node_modules/graphql/utilities/getOperationRootType.d.ts","../node_modules/graphql/utilities/introspectionFromSchema.d.ts","../node_modules/graphql/utilities/buildClientSchema.d.ts","../node_modules/graphql/utilities/buildASTSchema.d.ts","../node_modules/graphql/utilities/extendSchema.d.ts","../node_modules/graphql/utilities/lexicographicSortSchema.d.ts","../node_modules/graphql/utilities/printSchema.d.ts","../node_modules/graphql/utilities/typeFromAST.d.ts","../node_modules/graphql/utilities/valueFromAST.d.ts","../node_modules/graphql/utilities/valueFromASTUntyped.d.ts","../node_modules/graphql/utilities/astFromValue.d.ts","../node_modules/graphql/utilities/coerceInputValue.d.ts","../node_modules/graphql/utilities/concatAST.d.ts","../node_modules/graphql/utilities/separateOperations.d.ts","../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts","../node_modules/graphql/utilities/typeComparators.d.ts","../node_modules/graphql/utilities/assertValidName.d.ts","../node_modules/graphql/utilities/findBreakingChanges.d.ts","../node_modules/graphql/utilities/typedQueryDocumentNode.d.ts","../node_modules/graphql/utilities/index.d.ts","../node_modules/graphql/index.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../node_modules/json-to-graphql-query/lib/jsonToGraphQLQuery.d.ts","../node_modules/json-to-graphql-query/lib/types/EnumType.d.ts","../node_modules/json-to-graphql-query/lib/types/VariableType.d.ts","../node_modules/json-to-graphql-query/lib/index.d.ts","../node_modules/@types/pluralize/index.d.ts","../node_modules/ts-essentials/dist/types.d.ts","../node_modules/ts-essentials/dist/functions.d.ts","../node_modules/ts-essentials/dist/index.d.ts","../node_modules/typescript-memoize/dist/memoize-decorator.d.ts","../src/graphql/types.ts","../src/graphql/graphql.ts","../src/types.ts","../node_modules/@types/luxon/src/zone.d.ts","../node_modules/@types/luxon/src/misc.d.ts","../node_modules/@types/luxon/src/duration.d.ts","../node_modules/@types/luxon/src/interval.d.ts","../node_modules/@types/luxon/src/datetime.d.ts","../node_modules/@types/luxon/src/info.d.ts","../node_modules/@types/luxon/src/settings.d.ts","../node_modules/@types/luxon/src/luxon.d.ts","../node_modules/@types/luxon/index.d.ts","../src/utils.ts","../src/client.ts","../src/graphql/schema.ts","../node_modules/@types/fs-extra/index.d.ts","../node_modules/@types/toposort/index.d.ts","../src/graphql/hasura-schema-loader.ts","../src/schema.ts","../src/adapter/types.ts","../src/adapter/index.ts","../src/index.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/jest-diff/build/cleanupSemantic.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/diffLines.d.ts","../node_modules/jest-diff/build/printDiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/tmp/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"3260e3386d9535b804205bdddb5618a9a27735bd22927f48ad54363abcd23d45","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","3154a026075044aa102298fe9e6a7a14aaa26a06270680c7478a1765af8ffb09","e112c923b00f99b5c274bef936b2ff3e684113406202570e824a5d6f7d1f3744","d696addc0a27420d2df47c0162b9def0b1c5bb114b7ff0222d5bb6151529407a","4911d4c3a7f7c11bad0e2cec329a19a385d10ea83b0b69c76e032359e388f624","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"2f6c9750131d5d2fdaba85c164a930dc07d2d7e7e8970b89d32864aa6c72620c","affectsGlobalScope":true},"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0",{"version":"4ffef5c4698e94e49dcf150e3270bad2b24a2aeab48b24acbe7c1366edff377d","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","67a12e6c992d3f770078bacc562f767cf6142ae4453759a482f8f5ed30a99027","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","c993aac3b6d4a4620ef9651497069eb84806a131420e4f158ea9396fb8eb9b8c","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","06ccebc2c2db57d6bdbca63b71c4ae5e6ddc42d972fd8f122d4c1a28aa111b25",{"version":"81e8508d1e82278f5d3fee936f267e00c308af36219bfcee2631f9513c9c4017","affectsGlobalScope":true},"413a4be7f94f631235bbc83dad36c4d15e5a2ff02bca1efdbd03636d6454631b","20c468256fd68d3ef1fa53526e76d51d6aa91711e84d72c0343589b99238287e","4198acced75d48a039c078734c4efca7788ff8c78609c270a2b63ec20e3e1676","8d4c16a26d59e3ce49741a7d4a6e8206b884e226cf308667c7778a0b2c0fee7f","ee3bad055a79f188626b1a7046f04ab151fdd3581e55c51d32face175bd9d06f","d61c7c41eb1960b1285e242fd102c162b65c0522985b839fadda59874308a170",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"1805e0e4d1ed00f6361db25dff6887c7fa9b5b39f32599a34e8551da7daaa9c2","d10f4929cd610c26926d6784fc3f9f4120b789c03081b5d65fb2d2670a00fa04","fb0989383c6109f20281b3d31265293daefdd76d0d30551782c1654e93704f48","a4210a84a82b3e7a8cec5b2f3616e46d523f4f10cc1576d8f2fb89d0987b341e",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","22d48bfb37261136423ac687f1fa7bd4dda3083f767416d409a8260cf92bc8fc","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","f142151303f0792b81eff90b554081d2b78b146a83a4bc573228338e70afa420","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","698ab660b477b9c2cd5ccbd99e7e7df8b4a6134c1f5711fa615ed7aab51cb7f7","33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637","a4471d2bdba495b2a6a30b8765d5e0282fa7009d88345a9528f73c37869d3b93",{"version":"aee7013623e7632fba449d4df1da92925b27d9b816cb05546044dbfe54c88ef4","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","c9d70d3d7191a66a81cb554557f8ed1cf736ea8397c44a864fe52689de18865a","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"1aad825534c73852a1f3275e527d729a2c0640f539198fdfdfeb83b839851910","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e3685a8957b4e2af64c3f04a58289ee0858a649dbcd963a2b897fe85858ae18a","043e933c8127f2215f940035bfac94354b82a49f419bb77af0045f0c57e6a05e","9d9f4da63084ac107eddda8b4ea92d7ee443e0c86601e8c844943b82fd3ef6f8","bf6a6c97153fdaaa33105ad573d1d0069ebcdf075f9d66459a6c1ed4073feb3d","4b5e3faff10d6bbeac24f4ceec4b5fc6212159aef9cbd650e480b09513430cbd",{"version":"f930d2f54bd389841b5aa4da0717868dbbca53205ecc43541fa0025797d774c0","signature":"0005fbc0ce949c770dbf96ab77129e41cf20a13fc187c0558da2ae0c9ab11f40"},{"version":"4d70c04758da28304805b8ccf0310a770d4d51d76445506e5d3b5fc82cffa632","signature":"c654ce27bf476fdedbb93c5a1da876f4e3f9d1c4adab6b3599d34604fdce9107"},"78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","de21641eb8edcbc08dd0db4ee70eea907cd07fe72267340b5571c92647f10a77","a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","da679a5bb46df3c6d84f637f09e6689d6c2d07e907ea16adc161e4529a4954d6","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","4beaf337ee755b8c6115ff8a17e22ceab986b588722a52c776b8834af64e0f38","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","f0ff1c010d5046af3874d3b4df746c6f3921e4b3fbdec61dee0792fc0cb36ccd","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","67c6de7a9c490bda48eb401bea93904b6bbfc60e47427e887e6a3da6195540be","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","764150c107451d2fd5b6de305cff0a9dcecf799e08e6f14b5a6748724db46d8a","b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","3d06897c536b4aad2b2b015d529270439f2cadd89ca2ff7bd8898ee84898dd88","ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68","902997f91b09620835afd88e292eb217fbd55d01706b82b9a014ff408f357559","a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","83f36c0792d352f641a213ee547d21ea02084a148355aa26b6ef82c4f61c1280","dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","6e14fc6c27cb2cb203fe1727bb3a923588f0be8c2604673ad9f879182548daca","12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","ebe8f07bb402102c5a764b0f8e34bd92d6f50bd7ac61a2452e76b80e02f9bb4b","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","a4cc469f3561ea3edc57e091f4c9dcaf7485a70d3836be23a6945db46f0acd0b","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","c37aa3657fa4d1e7d22565ae609b1370c6b92bafb8c92b914403d45f0e610ddc","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","7fc9b18b6aafa8a1fc1441670c6c9da63e3d7942c7f451300c48bafd988545e9","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","9c41e412e6d07b29d8772641d4016dec5984225f7ecc2008bd8173ff14465047","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"dc9ae23e05eab83ed4257278c3b96bd28a27656a07fdba59ba529381ac752c26","b0e8bc6ca2ce1a456ef7bddc4d98f65d4e7dd375b4df9e249789b729caddffba","b38ded1bc42bc9d987434040011df50573a397b9db285b173fd95693f5ebc7d1","177892f747c73743827a133d1e367bb3a4cea5434102abce488e8ab422a8648d","8f7a2387ecc680872d09a6edbca1612d699f77ee5a5129944935c3798a613d04","1ab6ca7264748a8974210e75d43b181ff9fc5a8a1d600f44f2ec70537871e544","d939831bbcbbcb25d93d49c4a2106e743f268f4fdf358b784542fc5473c3dc17","117d53e8b22b4b1bd0d8d0a83f0444baa285f1187b7430de0a3861b6e3a41515","3e08915d754e9fa1bccf3641c724ab9e8a50d4c301b80d7ace911e43eb298e54",{"version":"5dc6e4216fafe02fc7557867859916fe6167e88bbbc9cb99241764ae5af30b21","signature":"e3c4bc98072a9f69a8bfd8dd7856e718a29ab49caabc6ca0a844b8e596c9ca98"},{"version":"7d6c6075f00a4e8c68bfbb3e278f4376d552c06de4f26d26cce538aae96c12ad","signature":"f833ed12e5345bdc47892380046b3a6795bc50aa90cb27d7d1032c65931c25ec"},{"version":"c472e2afb64add084adb4833b1a7beb83ebbf031f76c68fe7c4e08fac9f80a29","signature":"bccbc57bb35ebaf563ced5fcf9a8bbd04d2cc22f8c5604a73619bea33f44528e"},"45938045285af93edb0065d83c44410e18b34fd1285b5ce46e025a46d5042a46","52ed17fe2c0a4bb27a4f13e99234b3d1f364dc27f9bd7964946d5ec62792a0cc","8730165f29194af5ede515a69201c6e744ac1fd19baf6c10d4dbb6e2bba82969","2f007f7338e8e2fe4691511ab9564fa8924d2ed4294f195bc4848a43bba8c004","d1a198a52f14bc491d502b9319a7bda1f5b2c187a2b094bfee3b94df36796721","ed4be5a31cd8dbb8e31ccde91e7b8c1552eb191c4787d19ed028763577674772","d40e7cb322841e538e686b8a39f05e8b3e0b6d5b7c6687efa69f0cbf9124c4ec","c5641bb951da5d5252e7d8a806ec3c84f42555b5bd6a0879dbf1c7df1b8bd850","75348dfabaedb3b40928c1dfa3dade30173c46629fa9b8087db5be661344d950",{"version":"3655bcb755a1841b65adff2800cb088b32742c4d3977204335b84d7acc8f33f6","signature":"9c3ccb26b1d847fa94a2fcbad3f30557948666078beac7f908dee721205cdcae"},{"version":"5ebea994851127e09d77624d47b9d10de7f5dc10f48102237d8bb5a65344a2a8","signature":"9ac5639e12dee9f131a525d67c936eb67c9b72294d848995b67add5637482a19"},{"version":"474b3448cc255b02e91538eef5dba3318d54d190c1b4a00e17f31cb20570b3d2","signature":"849d4248db9b1308f7e668f1a498a0e4015b9e3921a06a5338106257619113e3"},"ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","1d84555c17c5f9130c232f700e0776f2c5ade64f84baf35fc67b2968b49f5a1a",{"version":"307bc80d489d34349a74eab42fb8f9836cd0f674ba7e684f00bba5ac87c446e4","signature":"25e57373f8ce4884a48b89b5be9d6c3a950a95d030030d88c4ac7dfb015e57ef"},{"version":"499878843025e02d4d771c74b88d4d8b35b217cf2930ebc50965fad8168edd68","signature":"92abdb3ac1067e7c2497a0e010a98eea24c014bc2b70f4e79f27473c3c18973d"},{"version":"f7c186a8bbcdfafe871d8dcf4cc22bb611bc6acf2c485ec2d9c4bcae1ed4a180","signature":"7e5a1d827eb80ea51af4bb1854fa20d12874c6ca3b1974e1329c438a7ec38f82"},{"version":"f08f53948df20db2ae193f62ea7bdd1b0507c8f5373e92db790f95629dc64d15","signature":"519906202662289b3c79a00ef3805f637365f0a04186f2624ecd7476d40225ac"},{"version":"c327ea8c3f49807a12b65b2b2277255bfa48867b3858dda984af319679c77ab6","signature":"12fbadb8dcf6042fe1435127c35763cff73b2b745582220c8eafd4231a77cd7f"},"497d9c40ac3fbb712314a26d91994a3c0770b0e742918f4f58c722c5514263be","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","7ec238b220ea991b6643e24191b1f552a65956d5f6de4c6144e700b9985265d8","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","dae3d1adc67ac3dbd1cd471889301339ec439837b5df565982345be20c8fca9a","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","6061aa83817c30d3a590f037b3cba22cdd809fbe697926d6511b45147928a342","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"outDir":"./","rootDir":"../src","sourceMap":true,"strict":true,"target":6},"fileIdsList":[[93,251],[93],[93,251,252,253,254,255],[93,251,253],[65,93,100],[93,258],[93,259],[93,264,269],[93,207,209,210,211,212,213,214,215,216,217,218,219],[93,207,208,210,211,212,213,214,215,216,217,218,219],[93,208,209,210,211,212,213,214,215,216,217,218,219],[93,207,208,209,211,212,213,214,215,216,217,218,219],[93,207,208,209,210,212,213,214,215,216,217,218,219],[93,207,208,209,210,211,213,214,215,216,217,218,219],[93,207,208,209,210,211,212,214,215,216,217,218,219],[93,207,208,209,210,211,212,213,215,216,217,218,219],[93,207,208,209,210,211,212,213,214,216,217,218,219],[93,207,208,209,210,211,212,213,214,215,217,218,219],[93,207,208,209,210,211,212,213,214,215,216,218,219],[93,207,208,209,210,211,212,213,214,215,216,217,219],[93,207,208,209,210,211,212,213,214,215,216,217,218],[93,239],[93,232,234,235,240],[93,233,236],[93,232,233],[93,234,236],[93,232,233,234,235,236,237,238],[93,232],[49,93],[52,93],[53,58,84,93],[54,64,65,72,81,92,93],[54,55,64,72,93],[56,93],[57,58,65,73,93],[58,81,89,93],[59,61,64,72,93],[60,93],[61,62,93],[63,64,93],[64,93],[64,65,66,81,92,93],[64,65,66,81,93],[67,72,81,92,93],[64,65,67,68,72,81,89,92,93],[67,69,81,89,92,93],[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99],[64,70,93],[71,92,93],[61,64,72,81,93],[73,93],[74,93],[52,75,93],[76,91,93,97],[77,93],[78,93],[64,79,93],[79,80,93,95],[53,64,81,82,83,93],[53,81,83,93],[81,82,93],[84,93],[85,93],[64,87,88,93],[87,88,93],[58,72,89,93],[90,93],[72,91,93],[53,67,78,92,93],[58,93],[81,93,94],[93,95],[93,96],[53,58,64,66,75,81,92,93,95,97],[81,93,98],[93,273,312],[93,273,297,312],[93,312],[93,273],[93,273,298,312],[93,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311],[93,298,312],[93,315],[46,47,93],[93,108,109,115,116],[93,117,181,182],[93,108,115,117],[93,109,117],[93,108,110,111,112,115,117,120,121],[93,111,122,136,137],[93,108,115,120,121,122],[93,108,110,115,117,119,120,121],[93,108,109,120,121,122],[93,107,123,128,135,138,139,180,183,205],[93,108],[93,109,113,114],[93,109,113,114,115,116,118,129,130,131,132,133,134],[93,109,114,115],[93,109],[93,108,109,114,115,117,130],[93,115],[93,109,115,116],[93,113,115],[93,122,136],[93,108,110,111,112,115,120],[93,108,115,118,121],[93,111,119,120,121,124,125,126,127],[93,121],[93,108,110,115,117,119,121],[93,117,120],[93,108,115,119,120,121,133],[93,117],[93,108,115,121],[93,109,115,120,131],[93,120,184],[93,117,121],[93,115,120],[93,120],[93,108,118],[93,108,115],[93,115,120,121],[93,140,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204],[93,120,121],[93,110,115],[93,108,110,115,121],[93,108,110,115],[93,108,115,117,119,120,121,133,140],[93,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],[93,133,141],[93,141],[93,108,115,117,120,140,141],[93,262,265],[93,262,265,266,267],[93,264],[93,261,268],[93,220,221,222],[67,93,100],[64,93,100],[64,93,97,101,102],[93,263],[93,225,226],[93,104,206,219,224,227,230,240,242,248],[93,104,206,219],[46,47,48,93,103,105],[46,47,93,103,104,105,106,206,219,229,230,231,241],[46,47,81,93,104],[49,93,104,115,206,219,223,224,227,228,229,242],[46,47,49,74,93,103,104,219,227,229,243,244,245],[49,93,219,229],[93,227],[93,105,106,229,230,231,241,242,243,246,247,249],[93,104,206,219,227],[93,104,240],[206,242,248],[206],[46,47,103],[46,47,103,206,229,230,231],[206,227,229,242],[103,227,229,243],[229],[227],[105,106,229,230,231,241,242,243,246,247,249],[206,227],[240]],"referencedMap":[[253,1],[251,2],[256,3],[252,1],[254,4],[255,1],[244,5],[257,5],[258,2],[259,6],[260,7],[270,8],[271,2],[208,9],[209,10],[207,11],[210,12],[211,13],[212,14],[213,15],[214,16],[215,17],[216,18],[217,19],[218,20],[219,21],[240,22],[236,23],[234,24],[237,25],[235,26],[239,27],[233,2],[238,28],[232,2],[49,29],[50,29],[52,30],[53,31],[54,32],[55,33],[56,34],[57,35],[58,36],[59,37],[60,38],[61,39],[62,39],[63,40],[64,41],[65,42],[66,43],[51,2],[99,2],[67,44],[68,45],[69,46],[100,47],[70,48],[71,49],[72,50],[73,51],[74,52],[75,53],[76,54],[77,55],[78,56],[79,57],[80,58],[81,59],[83,60],[82,61],[84,62],[85,63],[86,2],[87,64],[88,65],[89,66],[90,67],[91,68],[92,69],[93,70],[94,71],[95,72],[96,73],[97,74],[98,75],[224,2],[272,2],[297,76],[298,77],[273,78],[276,78],[295,76],[296,76],[286,76],[285,79],[283,76],[278,76],[291,76],[289,76],[293,76],[277,76],[290,76],[294,76],[279,76],[280,76],[292,76],[274,76],[281,76],[282,76],[284,76],[288,76],[299,80],[287,76],[275,76],[312,81],[311,2],[306,80],[308,82],[307,80],[300,80],[301,80],[303,80],[305,80],[309,82],[310,82],[302,82],[304,82],[313,2],[314,2],[245,2],[104,2],[315,2],[316,83],[47,84],[46,2],[261,2],[117,85],[183,86],[182,87],[181,88],[122,89],[138,90],[136,91],[137,92],[123,93],[206,94],[108,2],[110,2],[111,95],[112,2],[115,96],[118,2],[135,97],[113,2],[130,98],[116,99],[131,100],[134,101],[129,102],[132,101],[109,2],[114,2],[133,103],[139,104],[127,2],[121,105],[119,106],[128,107],[125,108],[124,108],[120,109],[126,110],[140,111],[202,112],[196,113],[189,114],[188,115],[197,116],[198,101],[190,117],[203,118],[184,119],[185,120],[186,121],[205,122],[187,115],[191,118],[192,123],[199,124],[200,99],[201,123],[193,121],[204,101],[194,125],[195,126],[141,127],[180,128],[144,129],[145,129],[146,129],[147,129],[148,129],[149,129],[150,129],[151,129],[170,129],[152,129],[153,129],[154,129],[155,129],[156,129],[157,129],[177,129],[158,129],[159,129],[160,129],[175,129],[161,129],[176,129],[162,129],[173,129],[174,129],[163,129],[164,129],[165,129],[171,129],[172,129],[166,129],[167,129],[168,129],[169,129],[178,129],[179,129],[143,130],[142,131],[107,2],[48,2],[262,2],[266,132],[268,133],[267,132],[265,134],[269,135],[223,136],[220,2],[221,2],[222,2],[101,137],[102,138],[103,139],[264,140],[263,2],[226,2],[227,141],[225,2],[228,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[45,2],[33,2],[34,2],[35,2],[36,2],[7,2],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[1,2],[44,2],[11,2],[10,2],[249,142],[248,143],[106,144],[242,145],[105,146],[230,147],[246,148],[243,149],[229,150],[250,151],[247,152],[231,2],[241,153]],"exportedModulesMap":[[253,1],[251,2],[256,3],[252,1],[254,4],[255,1],[244,5],[257,5],[258,2],[259,6],[260,7],[270,8],[271,2],[208,9],[209,10],[207,11],[210,12],[211,13],[212,14],[213,15],[214,16],[215,17],[216,18],[217,19],[218,20],[219,21],[240,22],[236,23],[234,24],[237,25],[235,26],[239,27],[233,2],[238,28],[232,2],[49,29],[50,29],[52,30],[53,31],[54,32],[55,33],[56,34],[57,35],[58,36],[59,37],[60,38],[61,39],[62,39],[63,40],[64,41],[65,42],[66,43],[51,2],[99,2],[67,44],[68,45],[69,46],[100,47],[70,48],[71,49],[72,50],[73,51],[74,52],[75,53],[76,54],[77,55],[78,56],[79,57],[80,58],[81,59],[83,60],[82,61],[84,62],[85,63],[86,2],[87,64],[88,65],[89,66],[90,67],[91,68],[92,69],[93,70],[94,71],[95,72],[96,73],[97,74],[98,75],[224,2],[272,2],[297,76],[298,77],[273,78],[276,78],[295,76],[296,76],[286,76],[285,79],[283,76],[278,76],[291,76],[289,76],[293,76],[277,76],[290,76],[294,76],[279,76],[280,76],[292,76],[274,76],[281,76],[282,76],[284,76],[288,76],[299,80],[287,76],[275,76],[312,81],[311,2],[306,80],[308,82],[307,80],[300,80],[301,80],[303,80],[305,80],[309,82],[310,82],[302,82],[304,82],[313,2],[314,2],[245,2],[104,2],[315,2],[316,83],[47,84],[46,2],[261,2],[117,85],[183,86],[182,87],[181,88],[122,89],[138,90],[136,91],[137,92],[123,93],[206,94],[108,2],[110,2],[111,95],[112,2],[115,96],[118,2],[135,97],[113,2],[130,98],[116,99],[131,100],[134,101],[129,102],[132,101],[109,2],[114,2],[133,103],[139,104],[127,2],[121,105],[119,106],[128,107],[125,108],[124,108],[120,109],[126,110],[140,111],[202,112],[196,113],[189,114],[188,115],[197,116],[198,101],[190,117],[203,118],[184,119],[185,120],[186,121],[205,122],[187,115],[191,118],[192,123],[199,124],[200,99],[201,123],[193,121],[204,101],[194,125],[195,126],[141,127],[180,128],[144,129],[145,129],[146,129],[147,129],[148,129],[149,129],[150,129],[151,129],[170,129],[152,129],[153,129],[154,129],[155,129],[156,129],[157,129],[177,129],[158,129],[159,129],[160,129],[175,129],[161,129],[176,129],[162,129],[173,129],[174,129],[163,129],[164,129],[165,129],[171,129],[172,129],[166,129],[167,129],[168,129],[169,129],[178,129],[179,129],[143,130],[142,131],[107,2],[48,2],[262,2],[266,132],[268,133],[267,132],[265,134],[269,135],[223,136],[220,2],[221,2],[222,2],[101,137],[102,138],[103,139],[264,140],[263,2],[226,2],[227,141],[225,2],[228,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[45,2],[33,2],[34,2],[35,2],[36,2],[7,2],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[1,2],[44,2],[11,2],[10,2],[249,154],[248,155],[106,156],[242,157],[230,158],[246,159],[243,160],[229,161],[250,162],[247,163],[241,164]],"semanticDiagnosticsPerFile":[253,251,256,252,254,255,244,257,258,259,260,270,271,208,209,207,210,211,212,213,214,215,216,217,218,219,240,236,234,237,235,239,233,238,232,49,50,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,51,99,67,68,69,100,70,71,72,73,74,75,76,77,78,79,80,81,83,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,224,272,297,298,273,276,295,296,286,285,283,278,291,289,293,277,290,294,279,280,292,274,281,282,284,288,299,287,275,312,311,306,308,307,300,301,303,305,309,310,302,304,313,314,245,104,315,316,47,46,261,117,183,182,181,122,138,136,137,123,206,108,110,111,112,115,118,135,113,130,116,131,134,129,132,109,114,133,139,127,121,119,128,125,124,120,126,140,202,196,189,188,197,198,190,203,184,185,186,205,187,191,192,199,200,201,193,204,194,195,141,180,144,145,146,147,148,149,150,151,170,152,153,154,155,156,157,177,158,159,160,175,161,176,162,173,174,163,164,165,171,172,166,167,168,169,178,179,143,142,107,48,262,266,268,267,265,269,223,220,221,222,101,102,103,264,263,226,227,225,228,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,45,33,34,35,36,7,37,42,43,38,39,40,41,1,44,11,10,249,248,106,242,105,230,246,243,229,250,247,231,241],"latestChangedDtsFile":"./index.d.ts"},"version":"4.8.4"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.es2019.full.d.ts","../node_modules/axios/index.d.ts","../node_modules/axios-retry/index.d.ts","../node_modules/is-retry-allowed/index.d.ts","../node_modules/@types/node/ts4.8/assert.d.ts","../node_modules/@types/node/ts4.8/assert/strict.d.ts","../node_modules/@types/node/ts4.8/globals.d.ts","../node_modules/@types/node/ts4.8/async_hooks.d.ts","../node_modules/@types/node/ts4.8/buffer.d.ts","../node_modules/@types/node/ts4.8/child_process.d.ts","../node_modules/@types/node/ts4.8/cluster.d.ts","../node_modules/@types/node/ts4.8/console.d.ts","../node_modules/@types/node/ts4.8/constants.d.ts","../node_modules/@types/node/ts4.8/crypto.d.ts","../node_modules/@types/node/ts4.8/dgram.d.ts","../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../node_modules/@types/node/ts4.8/dns.d.ts","../node_modules/@types/node/ts4.8/dns/promises.d.ts","../node_modules/@types/node/ts4.8/domain.d.ts","../node_modules/@types/node/ts4.8/events.d.ts","../node_modules/@types/node/ts4.8/fs.d.ts","../node_modules/@types/node/ts4.8/fs/promises.d.ts","../node_modules/@types/node/ts4.8/http.d.ts","../node_modules/@types/node/ts4.8/http2.d.ts","../node_modules/@types/node/ts4.8/https.d.ts","../node_modules/@types/node/ts4.8/inspector.d.ts","../node_modules/@types/node/ts4.8/module.d.ts","../node_modules/@types/node/ts4.8/net.d.ts","../node_modules/@types/node/ts4.8/os.d.ts","../node_modules/@types/node/ts4.8/path.d.ts","../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../node_modules/@types/node/ts4.8/process.d.ts","../node_modules/@types/node/ts4.8/punycode.d.ts","../node_modules/@types/node/ts4.8/querystring.d.ts","../node_modules/@types/node/ts4.8/readline.d.ts","../node_modules/@types/node/ts4.8/repl.d.ts","../node_modules/@types/node/ts4.8/stream.d.ts","../node_modules/@types/node/ts4.8/stream/promises.d.ts","../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../node_modules/@types/node/ts4.8/stream/web.d.ts","../node_modules/@types/node/ts4.8/string_decoder.d.ts","../node_modules/@types/node/ts4.8/test.d.ts","../node_modules/@types/node/ts4.8/timers.d.ts","../node_modules/@types/node/ts4.8/timers/promises.d.ts","../node_modules/@types/node/ts4.8/tls.d.ts","../node_modules/@types/node/ts4.8/trace_events.d.ts","../node_modules/@types/node/ts4.8/tty.d.ts","../node_modules/@types/node/ts4.8/url.d.ts","../node_modules/@types/node/ts4.8/util.d.ts","../node_modules/@types/node/ts4.8/v8.d.ts","../node_modules/@types/node/ts4.8/vm.d.ts","../node_modules/@types/node/ts4.8/wasi.d.ts","../node_modules/@types/node/ts4.8/worker_threads.d.ts","../node_modules/@types/node/ts4.8/zlib.d.ts","../node_modules/@types/node/ts4.8/globals.global.d.ts","../node_modules/@types/node/ts4.8/index.d.ts","../node_modules/pino-std-serializers/index.d.ts","../node_modules/pino/node_modules/sonic-boom/types/index.d.ts","../node_modules/pino/pino.d.ts","../node_modules/@types/verror/index.d.ts","../src/errors.ts","../src/axios.ts","../node_modules/graphql/version.d.ts","../node_modules/graphql/jsutils/Maybe.d.ts","../node_modules/graphql/language/source.d.ts","../node_modules/graphql/jsutils/ObjMap.d.ts","../node_modules/graphql/jsutils/Path.d.ts","../node_modules/graphql/jsutils/PromiseOrValue.d.ts","../node_modules/graphql/language/kinds.d.ts","../node_modules/graphql/language/tokenKind.d.ts","../node_modules/graphql/language/ast.d.ts","../node_modules/graphql/language/location.d.ts","../node_modules/graphql/error/GraphQLError.d.ts","../node_modules/graphql/language/directiveLocation.d.ts","../node_modules/graphql/type/directives.d.ts","../node_modules/graphql/type/schema.d.ts","../node_modules/graphql/type/definition.d.ts","../node_modules/graphql/execution/execute.d.ts","../node_modules/graphql/graphql.d.ts","../node_modules/graphql/type/scalars.d.ts","../node_modules/graphql/type/introspection.d.ts","../node_modules/graphql/type/validate.d.ts","../node_modules/graphql/type/assertName.d.ts","../node_modules/graphql/type/index.d.ts","../node_modules/graphql/language/printLocation.d.ts","../node_modules/graphql/language/lexer.d.ts","../node_modules/graphql/language/parser.d.ts","../node_modules/graphql/language/printer.d.ts","../node_modules/graphql/language/visitor.d.ts","../node_modules/graphql/language/predicates.d.ts","../node_modules/graphql/language/index.d.ts","../node_modules/graphql/execution/subscribe.d.ts","../node_modules/graphql/execution/values.d.ts","../node_modules/graphql/execution/index.d.ts","../node_modules/graphql/subscription/index.d.ts","../node_modules/graphql/utilities/TypeInfo.d.ts","../node_modules/graphql/validation/ValidationContext.d.ts","../node_modules/graphql/validation/validate.d.ts","../node_modules/graphql/validation/specifiedRules.d.ts","../node_modules/graphql/validation/rules/ExecutableDefinitionsRule.d.ts","../node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.d.ts","../node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.d.ts","../node_modules/graphql/validation/rules/KnownArgumentNamesRule.d.ts","../node_modules/graphql/validation/rules/KnownDirectivesRule.d.ts","../node_modules/graphql/validation/rules/KnownFragmentNamesRule.d.ts","../node_modules/graphql/validation/rules/KnownTypeNamesRule.d.ts","../node_modules/graphql/validation/rules/LoneAnonymousOperationRule.d.ts","../node_modules/graphql/validation/rules/NoFragmentCyclesRule.d.ts","../node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts","../node_modules/graphql/validation/rules/NoUnusedFragmentsRule.d.ts","../node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts","../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.d.ts","../node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.d.ts","../node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.d.ts","../node_modules/graphql/validation/rules/ScalarLeafsRule.d.ts","../node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.d.ts","../node_modules/graphql/validation/rules/UniqueArgumentNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.d.ts","../node_modules/graphql/validation/rules/UniqueFragmentNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueOperationNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueVariableNamesRule.d.ts","../node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.d.ts","../node_modules/graphql/validation/rules/VariablesAreInputTypesRule.d.ts","../node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.d.ts","../node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.d.ts","../node_modules/graphql/validation/rules/UniqueOperationTypesRule.d.ts","../node_modules/graphql/validation/rules/UniqueTypeNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.d.ts","../node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.d.ts","../node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.d.ts","../node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.d.ts","../node_modules/graphql/validation/index.d.ts","../node_modules/graphql/error/syntaxError.d.ts","../node_modules/graphql/error/locatedError.d.ts","../node_modules/graphql/error/index.d.ts","../node_modules/graphql/utilities/getIntrospectionQuery.d.ts","../node_modules/graphql/utilities/getOperationAST.d.ts","../node_modules/graphql/utilities/getOperationRootType.d.ts","../node_modules/graphql/utilities/introspectionFromSchema.d.ts","../node_modules/graphql/utilities/buildClientSchema.d.ts","../node_modules/graphql/utilities/buildASTSchema.d.ts","../node_modules/graphql/utilities/extendSchema.d.ts","../node_modules/graphql/utilities/lexicographicSortSchema.d.ts","../node_modules/graphql/utilities/printSchema.d.ts","../node_modules/graphql/utilities/typeFromAST.d.ts","../node_modules/graphql/utilities/valueFromAST.d.ts","../node_modules/graphql/utilities/valueFromASTUntyped.d.ts","../node_modules/graphql/utilities/astFromValue.d.ts","../node_modules/graphql/utilities/coerceInputValue.d.ts","../node_modules/graphql/utilities/concatAST.d.ts","../node_modules/graphql/utilities/separateOperations.d.ts","../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts","../node_modules/graphql/utilities/typeComparators.d.ts","../node_modules/graphql/utilities/assertValidName.d.ts","../node_modules/graphql/utilities/findBreakingChanges.d.ts","../node_modules/graphql/utilities/typedQueryDocumentNode.d.ts","../node_modules/graphql/utilities/index.d.ts","../node_modules/graphql/index.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../node_modules/json-to-graphql-query/lib/jsonToGraphQLQuery.d.ts","../node_modules/json-to-graphql-query/lib/types/EnumType.d.ts","../node_modules/json-to-graphql-query/lib/types/VariableType.d.ts","../node_modules/json-to-graphql-query/lib/index.d.ts","../node_modules/@types/pluralize/index.d.ts","../node_modules/ts-essentials/dist/types.d.ts","../node_modules/ts-essentials/dist/functions.d.ts","../node_modules/ts-essentials/dist/index.d.ts","../node_modules/typescript-memoize/dist/memoize-decorator.d.ts","../src/graphql/types.ts","../src/graphql/graphql.ts","../src/types.ts","../src/graphql/query-builder.ts","../node_modules/@types/luxon/src/zone.d.ts","../node_modules/@types/luxon/src/misc.d.ts","../node_modules/@types/luxon/src/duration.d.ts","../node_modules/@types/luxon/src/interval.d.ts","../node_modules/@types/luxon/src/datetime.d.ts","../node_modules/@types/luxon/src/info.d.ts","../node_modules/@types/luxon/src/settings.d.ts","../node_modules/@types/luxon/src/luxon.d.ts","../node_modules/@types/luxon/index.d.ts","../src/utils.ts","../src/client.ts","../src/graphql/schema.ts","../node_modules/@types/fs-extra/index.d.ts","../node_modules/@types/toposort/index.d.ts","../src/graphql/hasura-schema-loader.ts","../src/schema.ts","../src/adapter/types.ts","../src/adapter/index.ts","../src/index.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/jest-diff/build/cleanupSemantic.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/diffLines.d.ts","../node_modules/jest-diff/build/printDiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/tmp/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"3260e3386d9535b804205bdddb5618a9a27735bd22927f48ad54363abcd23d45","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","3154a026075044aa102298fe9e6a7a14aaa26a06270680c7478a1765af8ffb09","e112c923b00f99b5c274bef936b2ff3e684113406202570e824a5d6f7d1f3744","d696addc0a27420d2df47c0162b9def0b1c5bb114b7ff0222d5bb6151529407a","4911d4c3a7f7c11bad0e2cec329a19a385d10ea83b0b69c76e032359e388f624","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"2f6c9750131d5d2fdaba85c164a930dc07d2d7e7e8970b89d32864aa6c72620c","affectsGlobalScope":true},"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0",{"version":"4ffef5c4698e94e49dcf150e3270bad2b24a2aeab48b24acbe7c1366edff377d","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","67a12e6c992d3f770078bacc562f767cf6142ae4453759a482f8f5ed30a99027","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","c993aac3b6d4a4620ef9651497069eb84806a131420e4f158ea9396fb8eb9b8c","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","06ccebc2c2db57d6bdbca63b71c4ae5e6ddc42d972fd8f122d4c1a28aa111b25",{"version":"81e8508d1e82278f5d3fee936f267e00c308af36219bfcee2631f9513c9c4017","affectsGlobalScope":true},"413a4be7f94f631235bbc83dad36c4d15e5a2ff02bca1efdbd03636d6454631b","20c468256fd68d3ef1fa53526e76d51d6aa91711e84d72c0343589b99238287e","4198acced75d48a039c078734c4efca7788ff8c78609c270a2b63ec20e3e1676","8d4c16a26d59e3ce49741a7d4a6e8206b884e226cf308667c7778a0b2c0fee7f","ee3bad055a79f188626b1a7046f04ab151fdd3581e55c51d32face175bd9d06f","d61c7c41eb1960b1285e242fd102c162b65c0522985b839fadda59874308a170",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"1805e0e4d1ed00f6361db25dff6887c7fa9b5b39f32599a34e8551da7daaa9c2","d10f4929cd610c26926d6784fc3f9f4120b789c03081b5d65fb2d2670a00fa04","fb0989383c6109f20281b3d31265293daefdd76d0d30551782c1654e93704f48","a4210a84a82b3e7a8cec5b2f3616e46d523f4f10cc1576d8f2fb89d0987b341e",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","22d48bfb37261136423ac687f1fa7bd4dda3083f767416d409a8260cf92bc8fc","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","f142151303f0792b81eff90b554081d2b78b146a83a4bc573228338e70afa420","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","698ab660b477b9c2cd5ccbd99e7e7df8b4a6134c1f5711fa615ed7aab51cb7f7","33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637","a4471d2bdba495b2a6a30b8765d5e0282fa7009d88345a9528f73c37869d3b93",{"version":"aee7013623e7632fba449d4df1da92925b27d9b816cb05546044dbfe54c88ef4","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","c9d70d3d7191a66a81cb554557f8ed1cf736ea8397c44a864fe52689de18865a","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"1aad825534c73852a1f3275e527d729a2c0640f539198fdfdfeb83b839851910","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e3685a8957b4e2af64c3f04a58289ee0858a649dbcd963a2b897fe85858ae18a","043e933c8127f2215f940035bfac94354b82a49f419bb77af0045f0c57e6a05e","9d9f4da63084ac107eddda8b4ea92d7ee443e0c86601e8c844943b82fd3ef6f8","bf6a6c97153fdaaa33105ad573d1d0069ebcdf075f9d66459a6c1ed4073feb3d","4b5e3faff10d6bbeac24f4ceec4b5fc6212159aef9cbd650e480b09513430cbd",{"version":"f930d2f54bd389841b5aa4da0717868dbbca53205ecc43541fa0025797d774c0","signature":"0005fbc0ce949c770dbf96ab77129e41cf20a13fc187c0558da2ae0c9ab11f40"},{"version":"4d70c04758da28304805b8ccf0310a770d4d51d76445506e5d3b5fc82cffa632","signature":"c654ce27bf476fdedbb93c5a1da876f4e3f9d1c4adab6b3599d34604fdce9107"},"78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","de21641eb8edcbc08dd0db4ee70eea907cd07fe72267340b5571c92647f10a77","a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","da679a5bb46df3c6d84f637f09e6689d6c2d07e907ea16adc161e4529a4954d6","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","4beaf337ee755b8c6115ff8a17e22ceab986b588722a52c776b8834af64e0f38","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","f0ff1c010d5046af3874d3b4df746c6f3921e4b3fbdec61dee0792fc0cb36ccd","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","67c6de7a9c490bda48eb401bea93904b6bbfc60e47427e887e6a3da6195540be","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","764150c107451d2fd5b6de305cff0a9dcecf799e08e6f14b5a6748724db46d8a","b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","3d06897c536b4aad2b2b015d529270439f2cadd89ca2ff7bd8898ee84898dd88","ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68","902997f91b09620835afd88e292eb217fbd55d01706b82b9a014ff408f357559","a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","83f36c0792d352f641a213ee547d21ea02084a148355aa26b6ef82c4f61c1280","dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","6e14fc6c27cb2cb203fe1727bb3a923588f0be8c2604673ad9f879182548daca","12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","ebe8f07bb402102c5a764b0f8e34bd92d6f50bd7ac61a2452e76b80e02f9bb4b","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","a4cc469f3561ea3edc57e091f4c9dcaf7485a70d3836be23a6945db46f0acd0b","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","c37aa3657fa4d1e7d22565ae609b1370c6b92bafb8c92b914403d45f0e610ddc","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","7fc9b18b6aafa8a1fc1441670c6c9da63e3d7942c7f451300c48bafd988545e9","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","9c41e412e6d07b29d8772641d4016dec5984225f7ecc2008bd8173ff14465047","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"dc9ae23e05eab83ed4257278c3b96bd28a27656a07fdba59ba529381ac752c26","b0e8bc6ca2ce1a456ef7bddc4d98f65d4e7dd375b4df9e249789b729caddffba","b38ded1bc42bc9d987434040011df50573a397b9db285b173fd95693f5ebc7d1","177892f747c73743827a133d1e367bb3a4cea5434102abce488e8ab422a8648d","8f7a2387ecc680872d09a6edbca1612d699f77ee5a5129944935c3798a613d04","1ab6ca7264748a8974210e75d43b181ff9fc5a8a1d600f44f2ec70537871e544","d939831bbcbbcb25d93d49c4a2106e743f268f4fdf358b784542fc5473c3dc17","117d53e8b22b4b1bd0d8d0a83f0444baa285f1187b7430de0a3861b6e3a41515","3e08915d754e9fa1bccf3641c724ab9e8a50d4c301b80d7ace911e43eb298e54",{"version":"5dc6e4216fafe02fc7557867859916fe6167e88bbbc9cb99241764ae5af30b21","signature":"e3c4bc98072a9f69a8bfd8dd7856e718a29ab49caabc6ca0a844b8e596c9ca98"},{"version":"7d6c6075f00a4e8c68bfbb3e278f4376d552c06de4f26d26cce538aae96c12ad","signature":"f833ed12e5345bdc47892380046b3a6795bc50aa90cb27d7d1032c65931c25ec"},{"version":"4c233ffbcbbb3acb61d8bac29714adf9188a2ac462c9843efd6c7214c1d845c9","signature":"a0515741d9ff24ea0b388803a57c4e4416c48b9170986afcd2f6a3bf94c4aaf1"},{"version":"cd8ec86d30d3e7f0e725c4ddf61a8bb13c3382e45fd9c6e861a72f24ff138ea9","signature":"e06c5df6f83bd12e6997740b5afe0a69609157b46809b721ec17b3537f1626a6"},"45938045285af93edb0065d83c44410e18b34fd1285b5ce46e025a46d5042a46","52ed17fe2c0a4bb27a4f13e99234b3d1f364dc27f9bd7964946d5ec62792a0cc","8730165f29194af5ede515a69201c6e744ac1fd19baf6c10d4dbb6e2bba82969","2f007f7338e8e2fe4691511ab9564fa8924d2ed4294f195bc4848a43bba8c004","d1a198a52f14bc491d502b9319a7bda1f5b2c187a2b094bfee3b94df36796721","ed4be5a31cd8dbb8e31ccde91e7b8c1552eb191c4787d19ed028763577674772","d40e7cb322841e538e686b8a39f05e8b3e0b6d5b7c6687efa69f0cbf9124c4ec","c5641bb951da5d5252e7d8a806ec3c84f42555b5bd6a0879dbf1c7df1b8bd850","75348dfabaedb3b40928c1dfa3dade30173c46629fa9b8087db5be661344d950",{"version":"8a1f580c1f13bfa419ba38d9e7b776c1cb9fdc6e1cad47f9bfc8bbf1a5d0c9dd","signature":"9c3ccb26b1d847fa94a2fcbad3f30557948666078beac7f908dee721205cdcae"},{"version":"a58487016e2f70dbac84147caa3255d5f274d272bb84f5bd81fc68511fc60b0a","signature":"ddcdcfe8b5a85ef9682ff153b5ccca86042cb3c635adcadd8876f36992dd7f8a"},{"version":"474b3448cc255b02e91538eef5dba3318d54d190c1b4a00e17f31cb20570b3d2","signature":"849d4248db9b1308f7e668f1a498a0e4015b9e3921a06a5338106257619113e3"},"ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","1d84555c17c5f9130c232f700e0776f2c5ade64f84baf35fc67b2968b49f5a1a",{"version":"307bc80d489d34349a74eab42fb8f9836cd0f674ba7e684f00bba5ac87c446e4","signature":"25e57373f8ce4884a48b89b5be9d6c3a950a95d030030d88c4ac7dfb015e57ef"},{"version":"499878843025e02d4d771c74b88d4d8b35b217cf2930ebc50965fad8168edd68","signature":"92abdb3ac1067e7c2497a0e010a98eea24c014bc2b70f4e79f27473c3c18973d"},{"version":"f7c186a8bbcdfafe871d8dcf4cc22bb611bc6acf2c485ec2d9c4bcae1ed4a180","signature":"7e5a1d827eb80ea51af4bb1854fa20d12874c6ca3b1974e1329c438a7ec38f82"},{"version":"f08f53948df20db2ae193f62ea7bdd1b0507c8f5373e92db790f95629dc64d15","signature":"519906202662289b3c79a00ef3805f637365f0a04186f2624ecd7476d40225ac"},{"version":"ddade8559cfe67104d7bb80149da2765d585d1d4a416e71927f8626381f532e7","signature":"21cada592b72b16c537d7c0dd8b873b8c7dffd8e08fca069a048b4363b1a2df2"},"497d9c40ac3fbb712314a26d91994a3c0770b0e742918f4f58c722c5514263be","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","7ec238b220ea991b6643e24191b1f552a65956d5f6de4c6144e700b9985265d8","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","dae3d1adc67ac3dbd1cd471889301339ec439837b5df565982345be20c8fca9a","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","6061aa83817c30d3a590f037b3cba22cdd809fbe697926d6511b45147928a342","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"outDir":"./","rootDir":"../src","sourceMap":true,"strict":true,"target":6},"fileIdsList":[[93,252],[93],[93,252,253,254,255,256],[93,252,254],[65,93,100],[93,259],[93,260],[93,265,270],[93,207,209,210,211,212,213,214,215,216,217,218,219],[93,207,208,210,211,212,213,214,215,216,217,218,219],[93,208,209,210,211,212,213,214,215,216,217,218,219],[93,207,208,209,211,212,213,214,215,216,217,218,219],[93,207,208,209,210,212,213,214,215,216,217,218,219],[93,207,208,209,210,211,213,214,215,216,217,218,219],[93,207,208,209,210,211,212,214,215,216,217,218,219],[93,207,208,209,210,211,212,213,215,216,217,218,219],[93,207,208,209,210,211,212,213,214,216,217,218,219],[93,207,208,209,210,211,212,213,214,215,217,218,219],[93,207,208,209,210,211,212,213,214,215,216,218,219],[93,207,208,209,210,211,212,213,214,215,216,217,219],[93,207,208,209,210,211,212,213,214,215,216,217,218],[93,240],[93,233,235,236,241],[93,234,237],[93,233,234],[93,235,237],[93,233,234,235,236,237,238,239],[93,233],[49,93],[52,93],[53,58,84,93],[54,64,65,72,81,92,93],[54,55,64,72,93],[56,93],[57,58,65,73,93],[58,81,89,93],[59,61,64,72,93],[60,93],[61,62,93],[63,64,93],[64,93],[64,65,66,81,92,93],[64,65,66,81,93],[67,72,81,92,93],[64,65,67,68,72,81,89,92,93],[67,69,81,89,92,93],[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99],[64,70,93],[71,92,93],[61,64,72,81,93],[73,93],[74,93],[52,75,93],[76,91,93,97],[77,93],[78,93],[64,79,93],[79,80,93,95],[53,64,81,82,83,93],[53,81,83,93],[81,82,93],[84,93],[85,93],[64,87,88,93],[87,88,93],[58,72,89,93],[90,93],[72,91,93],[53,67,78,92,93],[58,93],[81,93,94],[93,95],[93,96],[53,58,64,66,75,81,92,93,95,97],[81,93,98],[93,274,313],[93,274,298,313],[93,313],[93,274],[93,274,299,313],[93,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312],[93,299,313],[93,316],[46,47,93],[93,108,109,115,116],[93,117,181,182],[93,108,115,117],[93,109,117],[93,108,110,111,112,115,117,120,121],[93,111,122,136,137],[93,108,115,120,121,122],[93,108,110,115,117,119,120,121],[93,108,109,120,121,122],[93,107,123,128,135,138,139,180,183,205],[93,108],[93,109,113,114],[93,109,113,114,115,116,118,129,130,131,132,133,134],[93,109,114,115],[93,109],[93,108,109,114,115,117,130],[93,115],[93,109,115,116],[93,113,115],[93,122,136],[93,108,110,111,112,115,120],[93,108,115,118,121],[93,111,119,120,121,124,125,126,127],[93,121],[93,108,110,115,117,119,121],[93,117,120],[93,108,115,119,120,121,133],[93,117],[93,108,115,121],[93,109,115,120,131],[93,120,184],[93,117,121],[93,115,120],[93,120],[93,108,118],[93,108,115],[93,115,120,121],[93,140,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204],[93,120,121],[93,110,115],[93,108,110,115,121],[93,108,110,115],[93,108,115,117,119,120,121,133,140],[93,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],[93,133,141],[93,141],[93,108,115,117,120,140,141],[93,263,266],[93,263,266,267,268],[93,265],[93,262,269],[93,220,221,222],[67,93,100],[64,93,100],[64,93,97,101,102],[93,264],[93,225,226],[93,104,206,219,224,227,230,241,243,249],[93,104,206,219],[46,47,48,93,103,105],[46,47,93,103,104,105,106,206,219,229,230,231,232,242],[46,47,81,93,104],[49,93,104,115,206,219,223,224,227,228,229,243],[46,47,49,74,93,103,104,219,227,229,244,245,246],[93,223,231],[49,93,219,229],[93,227],[93,105,106,229,230,231,232,242,243,244,247,248,250],[93,104,206,219,227],[93,223],[93,104,241],[206,243,249],[206],[46,47,103],[46,47,103,206,229,230,231],[206,227,229,243],[103,227,229,244],[231],[229],[227],[105,106,229,230,231,232,242,243,244,247,248,250],[206,227],[223],[241]],"referencedMap":[[254,1],[252,2],[257,3],[253,1],[255,4],[256,1],[245,5],[258,5],[259,2],[260,6],[261,7],[271,8],[272,2],[208,9],[209,10],[207,11],[210,12],[211,13],[212,14],[213,15],[214,16],[215,17],[216,18],[217,19],[218,20],[219,21],[241,22],[237,23],[235,24],[238,25],[236,26],[240,27],[234,2],[239,28],[233,2],[49,29],[50,29],[52,30],[53,31],[54,32],[55,33],[56,34],[57,35],[58,36],[59,37],[60,38],[61,39],[62,39],[63,40],[64,41],[65,42],[66,43],[51,2],[99,2],[67,44],[68,45],[69,46],[100,47],[70,48],[71,49],[72,50],[73,51],[74,52],[75,53],[76,54],[77,55],[78,56],[79,57],[80,58],[81,59],[83,60],[82,61],[84,62],[85,63],[86,2],[87,64],[88,65],[89,66],[90,67],[91,68],[92,69],[93,70],[94,71],[95,72],[96,73],[97,74],[98,75],[224,2],[273,2],[298,76],[299,77],[274,78],[277,78],[296,76],[297,76],[287,76],[286,79],[284,76],[279,76],[292,76],[290,76],[294,76],[278,76],[291,76],[295,76],[280,76],[281,76],[293,76],[275,76],[282,76],[283,76],[285,76],[289,76],[300,80],[288,76],[276,76],[313,81],[312,2],[307,80],[309,82],[308,80],[301,80],[302,80],[304,80],[306,80],[310,82],[311,82],[303,82],[305,82],[314,2],[315,2],[246,2],[104,2],[316,2],[317,83],[47,84],[46,2],[262,2],[117,85],[183,86],[182,87],[181,88],[122,89],[138,90],[136,91],[137,92],[123,93],[206,94],[108,2],[110,2],[111,95],[112,2],[115,96],[118,2],[135,97],[113,2],[130,98],[116,99],[131,100],[134,101],[129,102],[132,101],[109,2],[114,2],[133,103],[139,104],[127,2],[121,105],[119,106],[128,107],[125,108],[124,108],[120,109],[126,110],[140,111],[202,112],[196,113],[189,114],[188,115],[197,116],[198,101],[190,117],[203,118],[184,119],[185,120],[186,121],[205,122],[187,115],[191,118],[192,123],[199,124],[200,99],[201,123],[193,121],[204,101],[194,125],[195,126],[141,127],[180,128],[144,129],[145,129],[146,129],[147,129],[148,129],[149,129],[150,129],[151,129],[170,129],[152,129],[153,129],[154,129],[155,129],[156,129],[157,129],[177,129],[158,129],[159,129],[160,129],[175,129],[161,129],[176,129],[162,129],[173,129],[174,129],[163,129],[164,129],[165,129],[171,129],[172,129],[166,129],[167,129],[168,129],[169,129],[178,129],[179,129],[143,130],[142,131],[107,2],[48,2],[263,2],[267,132],[269,133],[268,132],[266,134],[270,135],[223,136],[220,2],[221,2],[222,2],[101,137],[102,138],[103,139],[265,140],[264,2],[226,2],[227,141],[225,2],[228,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[45,2],[33,2],[34,2],[35,2],[36,2],[7,2],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[1,2],[44,2],[11,2],[10,2],[250,142],[249,143],[106,144],[243,145],[105,146],[230,147],[247,148],[232,149],[244,150],[229,151],[251,152],[248,153],[231,154],[242,155]],"exportedModulesMap":[[254,1],[252,2],[257,3],[253,1],[255,4],[256,1],[245,5],[258,5],[259,2],[260,6],[261,7],[271,8],[272,2],[208,9],[209,10],[207,11],[210,12],[211,13],[212,14],[213,15],[214,16],[215,17],[216,18],[217,19],[218,20],[219,21],[241,22],[237,23],[235,24],[238,25],[236,26],[240,27],[234,2],[239,28],[233,2],[49,29],[50,29],[52,30],[53,31],[54,32],[55,33],[56,34],[57,35],[58,36],[59,37],[60,38],[61,39],[62,39],[63,40],[64,41],[65,42],[66,43],[51,2],[99,2],[67,44],[68,45],[69,46],[100,47],[70,48],[71,49],[72,50],[73,51],[74,52],[75,53],[76,54],[77,55],[78,56],[79,57],[80,58],[81,59],[83,60],[82,61],[84,62],[85,63],[86,2],[87,64],[88,65],[89,66],[90,67],[91,68],[92,69],[93,70],[94,71],[95,72],[96,73],[97,74],[98,75],[224,2],[273,2],[298,76],[299,77],[274,78],[277,78],[296,76],[297,76],[287,76],[286,79],[284,76],[279,76],[292,76],[290,76],[294,76],[278,76],[291,76],[295,76],[280,76],[281,76],[293,76],[275,76],[282,76],[283,76],[285,76],[289,76],[300,80],[288,76],[276,76],[313,81],[312,2],[307,80],[309,82],[308,80],[301,80],[302,80],[304,80],[306,80],[310,82],[311,82],[303,82],[305,82],[314,2],[315,2],[246,2],[104,2],[316,2],[317,83],[47,84],[46,2],[262,2],[117,85],[183,86],[182,87],[181,88],[122,89],[138,90],[136,91],[137,92],[123,93],[206,94],[108,2],[110,2],[111,95],[112,2],[115,96],[118,2],[135,97],[113,2],[130,98],[116,99],[131,100],[134,101],[129,102],[132,101],[109,2],[114,2],[133,103],[139,104],[127,2],[121,105],[119,106],[128,107],[125,108],[124,108],[120,109],[126,110],[140,111],[202,112],[196,113],[189,114],[188,115],[197,116],[198,101],[190,117],[203,118],[184,119],[185,120],[186,121],[205,122],[187,115],[191,118],[192,123],[199,124],[200,99],[201,123],[193,121],[204,101],[194,125],[195,126],[141,127],[180,128],[144,129],[145,129],[146,129],[147,129],[148,129],[149,129],[150,129],[151,129],[170,129],[152,129],[153,129],[154,129],[155,129],[156,129],[157,129],[177,129],[158,129],[159,129],[160,129],[175,129],[161,129],[176,129],[162,129],[173,129],[174,129],[163,129],[164,129],[165,129],[171,129],[172,129],[166,129],[167,129],[168,129],[169,129],[178,129],[179,129],[143,130],[142,131],[107,2],[48,2],[263,2],[267,132],[269,133],[268,132],[266,134],[270,135],[223,136],[220,2],[221,2],[222,2],[101,137],[102,138],[103,139],[265,140],[264,2],[226,2],[227,141],[225,2],[228,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[45,2],[33,2],[34,2],[35,2],[36,2],[7,2],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[1,2],[44,2],[11,2],[10,2],[250,156],[249,157],[106,158],[243,159],[230,160],[247,161],[232,162],[244,163],[229,164],[251,165],[248,166],[231,167],[242,168]],"semanticDiagnosticsPerFile":[254,252,257,253,255,256,245,258,259,260,261,271,272,208,209,207,210,211,212,213,214,215,216,217,218,219,241,237,235,238,236,240,234,239,233,49,50,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,51,99,67,68,69,100,70,71,72,73,74,75,76,77,78,79,80,81,83,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,224,273,298,299,274,277,296,297,287,286,284,279,292,290,294,278,291,295,280,281,293,275,282,283,285,289,300,288,276,313,312,307,309,308,301,302,304,306,310,311,303,305,314,315,246,104,316,317,47,46,262,117,183,182,181,122,138,136,137,123,206,108,110,111,112,115,118,135,113,130,116,131,134,129,132,109,114,133,139,127,121,119,128,125,124,120,126,140,202,196,189,188,197,198,190,203,184,185,186,205,187,191,192,199,200,201,193,204,194,195,141,180,144,145,146,147,148,149,150,151,170,152,153,154,155,156,157,177,158,159,160,175,161,176,162,173,174,163,164,165,171,172,166,167,168,169,178,179,143,142,107,48,263,267,269,268,266,270,223,220,221,222,101,102,103,265,264,226,227,225,228,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,45,33,34,35,36,7,37,42,43,38,39,40,41,1,44,11,10,250,249,106,243,105,230,247,232,244,229,251,248,231,242],"latestChangedDtsFile":"./index.d.ts"},"version":"4.8.4"}
|
package/lib/types.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EnumType } from 'json-to-graphql-query';
|
|
1
2
|
export interface FarosClientConfig {
|
|
2
3
|
readonly url: string;
|
|
3
4
|
readonly apiKey: string;
|
|
@@ -70,3 +71,24 @@ export interface Model {
|
|
|
70
71
|
keySchema: any;
|
|
71
72
|
dataSchema: any;
|
|
72
73
|
}
|
|
74
|
+
export interface Mutation {
|
|
75
|
+
mutation: {
|
|
76
|
+
[key: string]: {
|
|
77
|
+
__args: MutationObject;
|
|
78
|
+
id: boolean;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
export interface MutationObject {
|
|
83
|
+
object?: any;
|
|
84
|
+
data?: any;
|
|
85
|
+
on_conflict: ConflictClause;
|
|
86
|
+
}
|
|
87
|
+
export interface MutationReference {
|
|
88
|
+
data: any;
|
|
89
|
+
on_conflict: ConflictClause;
|
|
90
|
+
}
|
|
91
|
+
export interface ConflictClause {
|
|
92
|
+
constraint: EnumType;
|
|
93
|
+
update_columns: EnumType[];
|
|
94
|
+
}
|
package/lib/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":";;;AASA,IAAY,YAGX;AAHD,WAAY,YAAY;IACtB,yBAAS,CAAA;IACT,yBAAS,CAAA;AACX,CAAC,EAHW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAGvB;AAED,IAAY,OAKX;AALD,WAAY,OAAO;IACjB,wBAAa,CAAA;IACb,8BAAmB,CAAA;IACnB,8BAAmB,CAAA;IACnB,oDAAyC,CAAA;AAC3C,CAAC,EALW,OAAO,GAAP,eAAO,KAAP,eAAO,QAKlB"}
|
package/lib/utils.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":";;;;;;AAAA,iCAA+B;AAC/B,oDAA4B;
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "faros-js-client",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.28",
|
|
4
4
|
"description": "Faros API client for JavaScript/TypeScript",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"api-client",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"scripts": {
|
|
16
16
|
"build": "tsc -p src",
|
|
17
17
|
"clean": "rm -rf lib node_modules out",
|
|
18
|
-
"fix": "npm run lint -- --fix
|
|
18
|
+
"fix": "npm run lint -- --fix",
|
|
19
19
|
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
|
|
20
20
|
"prepare": "husky install",
|
|
21
21
|
"pretty": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
|