@fragment-dev/cli 2026.2.25 → 2026.2.27-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-C6EYFW5V.js → chunk-6HMNRFXL.js} +1 -1
- package/dist/{chunk-V4R2MRPF.js → chunk-6U6OXTL5.js} +121 -13
- package/dist/{chunk-RBQUCJPA.js → chunk-IHDHI5L3.js} +2 -2
- package/dist/{chunk-TFCZXSF7.js → chunk-LCILGA3X.js} +2 -2
- package/dist/{chunk-ZEDW3XRN.js → chunk-MLNBNNC2.js} +1 -1
- package/dist/{chunk-TUQN4LNR.js → chunk-VM67CP5S.js} +60 -38
- package/dist/commands/gen-graphql.js +3 -3
- package/dist/commands/verify-schema.js +3 -3
- package/dist/commands.js +6 -6
- package/dist/graphql.js +1 -1
- package/dist/index.js +6 -6
- package/dist/utils/schemaValidation.js +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
|
@@ -4568,7 +4568,12 @@ var BaseSchemaLedgerEntryConditionInput = z.object({
|
|
|
4568
4568
|
account: z.object({ path: z.string() }).optional(),
|
|
4569
4569
|
postcondition: SchemaCondition.optional(),
|
|
4570
4570
|
precondition: SchemaCondition.optional(),
|
|
4571
|
-
currency: SchemaCurrencyMatchInput.optional()
|
|
4571
|
+
currency: SchemaCurrencyMatchInput.optional(),
|
|
4572
|
+
repeated: z.object({
|
|
4573
|
+
key: SafeStringSchema.refine((k) => k.trim().length >= 1, {
|
|
4574
|
+
message: "repeated.key cannot be empty"
|
|
4575
|
+
})
|
|
4576
|
+
}).optional()
|
|
4572
4577
|
});
|
|
4573
4578
|
var BaseSchemaLedgerEntryLineInput = z.object({
|
|
4574
4579
|
account: z.object({ path: z.string() }).optional(),
|
|
@@ -4576,9 +4581,14 @@ var BaseSchemaLedgerEntryLineInput = z.object({
|
|
|
4576
4581
|
key: z.string(),
|
|
4577
4582
|
currency: SchemaCurrencyMatchInput.optional(),
|
|
4578
4583
|
description: z.string().optional(),
|
|
4579
|
-
tx: SchemaTxMatchInput.optional()
|
|
4584
|
+
tx: SchemaTxMatchInput.optional(),
|
|
4580
4585
|
// Not actually supportedc in the designer,
|
|
4581
4586
|
// and this is too strict, but it's needed for tests
|
|
4587
|
+
repeated: z.object({
|
|
4588
|
+
key: SafeStringSchema.refine((k) => k.trim().length >= 1, {
|
|
4589
|
+
message: "repeated.key cannot be empty"
|
|
4590
|
+
})
|
|
4591
|
+
}).optional()
|
|
4582
4592
|
});
|
|
4583
4593
|
var BaseSchemaLedgerEntryInput = z.object({
|
|
4584
4594
|
type: z.string(),
|
|
@@ -6105,7 +6115,7 @@ var validateLine = (entryType, entryParameters, entryHasTwoLines, entryHasAnyLin
|
|
|
6105
6115
|
var isKDefined = (k, line) => {
|
|
6106
6116
|
return line[k] !== void 0;
|
|
6107
6117
|
};
|
|
6108
|
-
var
|
|
6118
|
+
var validateBalancedLineGroup = (entryType, entryParameters, lines, accountPathToAccount) => {
|
|
6109
6119
|
const parameterizedLines = lines.map(
|
|
6110
6120
|
(line) => parameterizeSchemaLedgerLineInput({
|
|
6111
6121
|
line,
|
|
@@ -6152,6 +6162,42 @@ var validateBalancedLines = (entryType, entryParameters, lines, accountPathToAcc
|
|
|
6152
6162
|
}
|
|
6153
6163
|
return [];
|
|
6154
6164
|
};
|
|
6165
|
+
var validateBalancedLines = (entryType, entryParameters, lines, accountPathToAccount) => {
|
|
6166
|
+
const staticLines = lines.filter((line) => !line.repeated);
|
|
6167
|
+
const repeatedGroups = /* @__PURE__ */ new Map();
|
|
6168
|
+
lines.forEach((line) => {
|
|
6169
|
+
if (line.repeated) {
|
|
6170
|
+
const group = repeatedGroups.get(line.repeated.key) ?? [];
|
|
6171
|
+
group.push(line);
|
|
6172
|
+
repeatedGroups.set(line.repeated.key, group);
|
|
6173
|
+
}
|
|
6174
|
+
});
|
|
6175
|
+
const errors = [];
|
|
6176
|
+
if (staticLines.length > 0) {
|
|
6177
|
+
errors.push(
|
|
6178
|
+
...validateBalancedLineGroup(
|
|
6179
|
+
entryType,
|
|
6180
|
+
entryParameters,
|
|
6181
|
+
staticLines,
|
|
6182
|
+
accountPathToAccount
|
|
6183
|
+
)
|
|
6184
|
+
);
|
|
6185
|
+
}
|
|
6186
|
+
repeatedGroups.forEach((groupLines, key) => {
|
|
6187
|
+
errors.push(
|
|
6188
|
+
...validateBalancedLineGroup(
|
|
6189
|
+
entryType,
|
|
6190
|
+
entryParameters,
|
|
6191
|
+
groupLines,
|
|
6192
|
+
accountPathToAccount
|
|
6193
|
+
).map((error) => ({
|
|
6194
|
+
...error,
|
|
6195
|
+
message: `[repeated key '${key}'] ${error.message}`
|
|
6196
|
+
}))
|
|
6197
|
+
);
|
|
6198
|
+
});
|
|
6199
|
+
return errors;
|
|
6200
|
+
};
|
|
6155
6201
|
var validateEntryConditions = (entryConditions, staticParameters, entryType, entryStatus, accountPathToAccount, defaultConsistencyConfig) => {
|
|
6156
6202
|
const errors = [];
|
|
6157
6203
|
const conditions = entryConditions.map(
|
|
@@ -6618,12 +6664,15 @@ var validateEntry = (ledgerEntry, accountPathToAccount, defaultConsistencyConfig
|
|
|
6618
6664
|
})
|
|
6619
6665
|
);
|
|
6620
6666
|
errors.push(
|
|
6621
|
-
...ledgerEntry.lines.flatMap(
|
|
6622
|
-
|
|
6667
|
+
...ledgerEntry.lines.flatMap((line, idx) => {
|
|
6668
|
+
const groupLines = line.repeated ? ledgerEntry.lines.filter(
|
|
6669
|
+
(l) => l.repeated?.key === line.repeated?.key
|
|
6670
|
+
) : ledgerEntry.lines.filter((l) => !l.repeated);
|
|
6671
|
+
return validateLine(
|
|
6623
6672
|
ledgerEntry.type,
|
|
6624
6673
|
ledgerEntry.parameters,
|
|
6625
|
-
|
|
6626
|
-
|
|
6674
|
+
groupLines.length === 2,
|
|
6675
|
+
groupLines.some((l) => l.tx),
|
|
6627
6676
|
parameterizeSchemaLedgerLineInput({
|
|
6628
6677
|
line,
|
|
6629
6678
|
entryParameters: ledgerEntry.parameters
|
|
@@ -6632,20 +6681,69 @@ var validateEntry = (ledgerEntry, accountPathToAccount, defaultConsistencyConfig
|
|
|
6632
6681
|
).map(({ path, ...rest }) => ({
|
|
6633
6682
|
path: ["lines", idx, ...path],
|
|
6634
6683
|
...rest
|
|
6635
|
-
}))
|
|
6636
|
-
)
|
|
6684
|
+
}));
|
|
6685
|
+
})
|
|
6637
6686
|
);
|
|
6638
6687
|
errors.push(...validateDescription(ledgerEntry.description));
|
|
6639
6688
|
errors.push(...validateTags(ledgerEntry.tags));
|
|
6640
6689
|
errors.push(...validateGroups(ledgerEntry.groups));
|
|
6641
6690
|
errors.push(
|
|
6642
6691
|
...validateUniqueByKey({
|
|
6643
|
-
items: ledgerEntry.lines,
|
|
6644
6692
|
key: "key",
|
|
6693
|
+
items: ledgerEntry.lines,
|
|
6645
6694
|
pathPrefix: ["lines"],
|
|
6646
|
-
getErrorMessage: (
|
|
6695
|
+
getErrorMessage: (item) => `Entry (${ledgerEntry.type}) already has a line with key '${item.key}'`
|
|
6647
6696
|
})
|
|
6648
6697
|
);
|
|
6698
|
+
const lineRepeatedKeys = new Set(
|
|
6699
|
+
ledgerEntry.lines.filter((line) => line.repeated).map((line) => line.repeated.key)
|
|
6700
|
+
);
|
|
6701
|
+
const conditionRepeatedKeys = new Set(
|
|
6702
|
+
ledgerEntry.conditions.filter((condition) => condition.repeated).map((condition) => condition.repeated.key)
|
|
6703
|
+
);
|
|
6704
|
+
const allRepeatedKeys = /* @__PURE__ */ new Set([
|
|
6705
|
+
...lineRepeatedKeys,
|
|
6706
|
+
...conditionRepeatedKeys
|
|
6707
|
+
]);
|
|
6708
|
+
if (allRepeatedKeys.size > 1) {
|
|
6709
|
+
errors.push({
|
|
6710
|
+
path: ["lines"],
|
|
6711
|
+
message: `Entry (${ledgerEntry.type}) has ${allRepeatedKeys.size} repeated key groups across lines and conditions (${[...allRepeatedKeys].map((k) => `'${k}'`).join(
|
|
6712
|
+
", "
|
|
6713
|
+
)}). Only one repeated key group is allowed per entry. If you need multiple repeated key groups, please reach out.`
|
|
6714
|
+
});
|
|
6715
|
+
}
|
|
6716
|
+
lineRepeatedKeys.forEach((key) => {
|
|
6717
|
+
const groupSize = ledgerEntry.lines.filter(
|
|
6718
|
+
(line) => line.repeated?.key === key
|
|
6719
|
+
).length;
|
|
6720
|
+
if (groupSize < 2) {
|
|
6721
|
+
errors.push({
|
|
6722
|
+
path: ["lines"],
|
|
6723
|
+
message: `Entry (${ledgerEntry.type}) repeated key '${key}' must have at least 2 lines.`
|
|
6724
|
+
});
|
|
6725
|
+
}
|
|
6726
|
+
});
|
|
6727
|
+
if (allRepeatedKeys.size > 0) {
|
|
6728
|
+
const entryOnlyParams = getSchemaObjectParameters({
|
|
6729
|
+
...ledgerEntry,
|
|
6730
|
+
lines: void 0,
|
|
6731
|
+
conditions: void 0
|
|
6732
|
+
});
|
|
6733
|
+
const staticParams = [
|
|
6734
|
+
...ledgerEntry.lines.filter((line) => !line.repeated),
|
|
6735
|
+
...ledgerEntry.conditions.filter((cond) => !cond.repeated)
|
|
6736
|
+
].flatMap((item) => getSchemaObjectParameters(item));
|
|
6737
|
+
const collidingKeys = [...entryOnlyParams, ...staticParams].filter(
|
|
6738
|
+
(p) => allRepeatedKeys.has(p)
|
|
6739
|
+
);
|
|
6740
|
+
collidingKeys.forEach((key) => {
|
|
6741
|
+
errors.push({
|
|
6742
|
+
path: ["lines"],
|
|
6743
|
+
message: `Entry (${ledgerEntry.type}) has a template parameter '${key}' that collides with repeated key '${key}'. Rename the parameter or the repeated key to avoid ambiguity.`
|
|
6744
|
+
});
|
|
6745
|
+
});
|
|
6746
|
+
}
|
|
6649
6747
|
errors.push(
|
|
6650
6748
|
...validateBalancedLines(
|
|
6651
6749
|
ledgerEntry.type,
|
|
@@ -6965,7 +7063,12 @@ var SchemaLedgerLineInput = z.object({
|
|
|
6965
7063
|
key: SafeStringSchema,
|
|
6966
7064
|
currency: z.optional(SchemaCurrencyMatchInput2),
|
|
6967
7065
|
description: ParameterizedString.optional(),
|
|
6968
|
-
tx: SchemaTxMatchInput.optional()
|
|
7066
|
+
tx: SchemaTxMatchInput.optional(),
|
|
7067
|
+
repeated: z.object({
|
|
7068
|
+
key: SafeStringSchema.refine((k) => k.trim().length >= 1, {
|
|
7069
|
+
message: "repeated.key cannot be empty"
|
|
7070
|
+
})
|
|
7071
|
+
}).optional()
|
|
6969
7072
|
});
|
|
6970
7073
|
var parameterizeSchemaLedgerLineInput = ({
|
|
6971
7074
|
line,
|
|
@@ -7007,7 +7110,12 @@ var SchemaLedgerEntryConditionInput = z.object({
|
|
|
7007
7110
|
}),
|
|
7008
7111
|
postcondition: SchemaConditionInput.optional(),
|
|
7009
7112
|
precondition: SchemaConditionInput.optional(),
|
|
7010
|
-
currency: SchemaCurrencyMatchInput2.optional()
|
|
7113
|
+
currency: SchemaCurrencyMatchInput2.optional(),
|
|
7114
|
+
repeated: z.object({
|
|
7115
|
+
key: SafeStringSchema.refine((k) => k.trim().length >= 1, {
|
|
7116
|
+
message: "repeated.key cannot be empty"
|
|
7117
|
+
})
|
|
7118
|
+
}).optional()
|
|
7011
7119
|
});
|
|
7012
7120
|
var parameterizeSchemaLedgerEntryConditionInput = ({
|
|
7013
7121
|
condition,
|
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
} from "./chunk-BQKFODF3.js";
|
|
19
19
|
import {
|
|
20
20
|
VerifySchema
|
|
21
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-6HMNRFXL.js";
|
|
22
22
|
import {
|
|
23
23
|
Workspace
|
|
24
24
|
} from "./chunk-LP4CCN7Q.js";
|
|
@@ -66,7 +66,7 @@ import {
|
|
|
66
66
|
} from "./chunk-52XFYFJI.js";
|
|
67
67
|
import {
|
|
68
68
|
GenGraphQL
|
|
69
|
-
} from "./chunk-
|
|
69
|
+
} from "./chunk-LCILGA3X.js";
|
|
70
70
|
import {
|
|
71
71
|
init_cjs_shims
|
|
72
72
|
} from "./chunk-7GH3YGSC.js";
|
|
@@ -3,11 +3,11 @@ import {
|
|
|
3
3
|
generateQueryFiles,
|
|
4
4
|
schemaToEntryDefinitions,
|
|
5
5
|
validateOutputName
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-VM67CP5S.js";
|
|
7
7
|
import {
|
|
8
8
|
Schema,
|
|
9
9
|
parseWithError
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-6U6OXTL5.js";
|
|
11
11
|
import {
|
|
12
12
|
formatValidationErrors,
|
|
13
13
|
logValidationErrors
|
|
@@ -26,40 +26,50 @@ var import_chalk = __toESM(require_source(), 1);
|
|
|
26
26
|
var import_parser = __toESM(require_parser(), 1);
|
|
27
27
|
var import_printer = __toESM(require_printer(), 1);
|
|
28
28
|
import { statSync, existsSync } from "node:fs";
|
|
29
|
+
var getAccountParams = (accountPath, schema) => {
|
|
30
|
+
const subpaths = getStructuralSubpaths(accountPath);
|
|
31
|
+
return subpaths.flatMap(
|
|
32
|
+
(subp) => getSchemaObjectParameters(
|
|
33
|
+
schema.chartOfAccounts.accountPathToAccount.get(subp)
|
|
34
|
+
)
|
|
35
|
+
);
|
|
36
|
+
};
|
|
29
37
|
var schemaToEntryDefinitions = ({
|
|
30
38
|
schema
|
|
31
39
|
}) => {
|
|
32
40
|
return schema.ledgerEntries.types.flatMap((ledgerEntry) => {
|
|
33
|
-
const
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
41
|
+
const entryOnlyParams = getSchemaObjectParameters({
|
|
42
|
+
...ledgerEntry,
|
|
43
|
+
lines: void 0,
|
|
44
|
+
conditions: void 0
|
|
45
|
+
});
|
|
46
|
+
const staticLineParams = [];
|
|
47
|
+
const repeatedKeys = /* @__PURE__ */ new Set();
|
|
48
|
+
(ledgerEntry.lines ?? []).forEach((line) => {
|
|
49
|
+
if (line.repeated) {
|
|
50
|
+
repeatedKeys.add(line.repeated.key);
|
|
51
|
+
} else {
|
|
52
|
+
const lineParams = getSchemaObjectParameters(line);
|
|
53
|
+
const accountParams = getAccountParams(line.account.path, schema);
|
|
54
|
+
staticLineParams.push(...lineParams, ...accountParams);
|
|
42
55
|
}
|
|
43
|
-
);
|
|
44
|
-
|
|
45
|
-
(condition)
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
);
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
)
|
|
56
|
+
});
|
|
57
|
+
(ledgerEntry.conditions ?? []).forEach((condition) => {
|
|
58
|
+
if (condition.repeated) {
|
|
59
|
+
repeatedKeys.add(condition.repeated.key);
|
|
60
|
+
} else {
|
|
61
|
+
const condParams = getSchemaObjectParameters(condition);
|
|
62
|
+
const accountParams = getAccountParams(
|
|
63
|
+
condition.account.path,
|
|
64
|
+
schema
|
|
53
65
|
);
|
|
66
|
+
staticLineParams.push(...condParams, ...accountParams);
|
|
54
67
|
}
|
|
55
|
-
);
|
|
68
|
+
});
|
|
56
69
|
const parameters = Array.from(
|
|
57
|
-
/* @__PURE__ */ new Set([
|
|
58
|
-
...conditionAccountParameters,
|
|
59
|
-
...lineAccountParameters,
|
|
60
|
-
...entryParameters
|
|
61
|
-
])
|
|
70
|
+
/* @__PURE__ */ new Set([...entryOnlyParams, ...staticLineParams])
|
|
62
71
|
);
|
|
72
|
+
const repeatedParameterKeys = Array.from(repeatedKeys);
|
|
63
73
|
const isReconciliationEntry = (ledgerEntry.lines ?? []).some(
|
|
64
74
|
(line) => !!line.tx
|
|
65
75
|
);
|
|
@@ -68,7 +78,8 @@ var schemaToEntryDefinitions = ({
|
|
|
68
78
|
entryType: ledgerEntry.type,
|
|
69
79
|
typeVersion: ledgerEntry.typeVersion,
|
|
70
80
|
runtimeEntry: isRuntimeEntry,
|
|
71
|
-
parameters
|
|
81
|
+
parameters,
|
|
82
|
+
repeatedParameterKeys: repeatedParameterKeys.length > 0 ? repeatedParameterKeys : void 0
|
|
72
83
|
};
|
|
73
84
|
if (isRuntimeEntry) {
|
|
74
85
|
return [
|
|
@@ -208,18 +219,25 @@ var getPredefinedParameters = (definition) => {
|
|
|
208
219
|
var entryDefinitionToMutation = (definition) => {
|
|
209
220
|
const { typeVersion } = definition;
|
|
210
221
|
const predefinedParameters = getPredefinedParameters(definition);
|
|
222
|
+
const repeatedKeys = new Set(definition.repeatedParameterKeys ?? []);
|
|
211
223
|
const filteredParameters = definition.parameters.filter(
|
|
212
|
-
(p) => !Object.prototype.hasOwnProperty.call(predefinedParameters, p)
|
|
224
|
+
(p) => !Object.prototype.hasOwnProperty.call(predefinedParameters, p) && !repeatedKeys.has(p)
|
|
213
225
|
);
|
|
214
|
-
filteredParameters.forEach(
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
226
|
+
[...filteredParameters, ...definition.repeatedParameterKeys ?? []].forEach(
|
|
227
|
+
(param) => {
|
|
228
|
+
if (!isValidGraphQlName(param)) {
|
|
229
|
+
throw new InvalidGraphQlError(
|
|
230
|
+
`Parameter name ${param} is not a valid GraphQL name`
|
|
231
|
+
);
|
|
232
|
+
}
|
|
219
233
|
}
|
|
220
|
-
|
|
221
|
-
const readableEntryType = generateGraphQlEntryType(
|
|
234
|
+
);
|
|
235
|
+
const readableEntryType = generateGraphQlEntryType(
|
|
236
|
+
definition.entryType,
|
|
237
|
+
typeVersion
|
|
238
|
+
);
|
|
222
239
|
const mutationArgs = filteredParameters.map((p) => `$${p}: String!`).join("\n");
|
|
240
|
+
const repeatedParamArgs = (definition.repeatedParameterKeys ?? []).map((key) => `$${key}: [JSON!]!`).join("\n");
|
|
223
241
|
const graphQlFragment = definition.method === "addLedgerEntry" ? AddLedgerEntryFragment : ReconcileTxFragment;
|
|
224
242
|
const operationPrefix = definition.method === "addLedgerEntry" ? "Post" : "Reconcile";
|
|
225
243
|
const isIkRequired = Object.prototype.hasOwnProperty.call(
|
|
@@ -232,11 +250,11 @@ var entryDefinitionToMutation = (definition) => {
|
|
|
232
250
|
);
|
|
233
251
|
const operationName = `${operationPrefix}${readableEntryType}`;
|
|
234
252
|
const predefinedArgs = Object.entries(predefinedParameters).map(([name, type]) => `$${name}: ${type}`).join(",\n");
|
|
253
|
+
const allVarArgs = [predefinedArgs, mutationArgs, repeatedParamArgs].filter(Boolean).join(",\n");
|
|
235
254
|
const command = [
|
|
236
255
|
// Named mutation with input parameters block
|
|
237
256
|
`mutation ${operationName} (`,
|
|
238
|
-
`${
|
|
239
|
-
`${mutationArgs}) {`,
|
|
257
|
+
`${allVarArgs}) {`,
|
|
240
258
|
// The actual mutation method
|
|
241
259
|
`${definition.method}(`,
|
|
242
260
|
// The input object
|
|
@@ -254,9 +272,13 @@ var entryDefinitionToMutation = (definition) => {
|
|
|
254
272
|
if (definition.runtimeEntry) {
|
|
255
273
|
command.push(`lines: $lines, tags: $tags, groups: $groups,`);
|
|
256
274
|
}
|
|
257
|
-
|
|
275
|
+
const allParamKeys = [
|
|
276
|
+
...definition.parameters.filter((p) => !repeatedKeys.has(p)),
|
|
277
|
+
...definition.repeatedParameterKeys ?? []
|
|
278
|
+
];
|
|
279
|
+
if (allParamKeys.length > 0) {
|
|
258
280
|
command.push(`parameters: {`);
|
|
259
|
-
command.push(
|
|
281
|
+
command.push(allParamKeys.map((p) => `${p}: $${p}`).join("\n"));
|
|
260
282
|
command.push(`}`);
|
|
261
283
|
}
|
|
262
284
|
command.push(`}) { ${graphQlFragment} } }`);
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
GenGraphQL
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-LCILGA3X.js";
|
|
4
|
+
import "../chunk-VM67CP5S.js";
|
|
5
5
|
import "../chunk-ODU6I44Y.js";
|
|
6
6
|
import "../chunk-73ZTML2E.js";
|
|
7
|
-
import "../chunk-
|
|
7
|
+
import "../chunk-6U6OXTL5.js";
|
|
8
8
|
import "../chunk-5QYNAHTR.js";
|
|
9
9
|
import "../chunk-TCZZFGKB.js";
|
|
10
10
|
import "../chunk-ASSZY3L3.js";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
VerifySchema
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-6HMNRFXL.js";
|
|
4
|
+
import "../chunk-MLNBNNC2.js";
|
|
5
5
|
import "../chunk-A4BSWX5D.js";
|
|
6
|
-
import "../chunk-
|
|
6
|
+
import "../chunk-6U6OXTL5.js";
|
|
7
7
|
import "../chunk-5QYNAHTR.js";
|
|
8
8
|
import "../chunk-TCZZFGKB.js";
|
|
9
9
|
import "../chunk-ASSZY3L3.js";
|
package/dist/commands.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
COMMANDS
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-IHDHI5L3.js";
|
|
4
4
|
import "./chunk-7KPTGOLB.js";
|
|
5
5
|
import "./chunk-B4BVB4BK.js";
|
|
6
6
|
import "./chunk-LPIIJDWE.js";
|
|
7
7
|
import "./chunk-ILNNTDXN.js";
|
|
8
8
|
import "./chunk-OW7BUT3P.js";
|
|
9
9
|
import "./chunk-BQKFODF3.js";
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
10
|
+
import "./chunk-6HMNRFXL.js";
|
|
11
|
+
import "./chunk-MLNBNNC2.js";
|
|
12
12
|
import "./chunk-A4BSWX5D.js";
|
|
13
13
|
import "./chunk-LP4CCN7Q.js";
|
|
14
14
|
import "./chunk-XWLRTFUM.js";
|
|
@@ -28,11 +28,11 @@ import "./chunk-KRRHGRYV.js";
|
|
|
28
28
|
import "./chunk-52XFYFJI.js";
|
|
29
29
|
import "./chunk-KTBBROS4.js";
|
|
30
30
|
import "./chunk-H7VQ6EQO.js";
|
|
31
|
-
import "./chunk-
|
|
32
|
-
import "./chunk-
|
|
31
|
+
import "./chunk-LCILGA3X.js";
|
|
32
|
+
import "./chunk-VM67CP5S.js";
|
|
33
33
|
import "./chunk-ODU6I44Y.js";
|
|
34
34
|
import "./chunk-73ZTML2E.js";
|
|
35
|
-
import "./chunk-
|
|
35
|
+
import "./chunk-6U6OXTL5.js";
|
|
36
36
|
import "./chunk-5QYNAHTR.js";
|
|
37
37
|
import "./chunk-TCZZFGKB.js";
|
|
38
38
|
import "./chunk-ASSZY3L3.js";
|
package/dist/graphql.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
COMMANDS
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-IHDHI5L3.js";
|
|
4
4
|
import "./chunk-7KPTGOLB.js";
|
|
5
5
|
import "./chunk-B4BVB4BK.js";
|
|
6
6
|
import "./chunk-LPIIJDWE.js";
|
|
7
7
|
import "./chunk-ILNNTDXN.js";
|
|
8
8
|
import "./chunk-OW7BUT3P.js";
|
|
9
9
|
import "./chunk-BQKFODF3.js";
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
10
|
+
import "./chunk-6HMNRFXL.js";
|
|
11
|
+
import "./chunk-MLNBNNC2.js";
|
|
12
12
|
import "./chunk-A4BSWX5D.js";
|
|
13
13
|
import "./chunk-LP4CCN7Q.js";
|
|
14
14
|
import "./chunk-XWLRTFUM.js";
|
|
@@ -28,11 +28,11 @@ import "./chunk-KRRHGRYV.js";
|
|
|
28
28
|
import "./chunk-52XFYFJI.js";
|
|
29
29
|
import "./chunk-KTBBROS4.js";
|
|
30
30
|
import "./chunk-H7VQ6EQO.js";
|
|
31
|
-
import "./chunk-
|
|
32
|
-
import "./chunk-
|
|
31
|
+
import "./chunk-LCILGA3X.js";
|
|
32
|
+
import "./chunk-VM67CP5S.js";
|
|
33
33
|
import "./chunk-ODU6I44Y.js";
|
|
34
34
|
import "./chunk-73ZTML2E.js";
|
|
35
|
-
import "./chunk-
|
|
35
|
+
import "./chunk-6U6OXTL5.js";
|
|
36
36
|
import "./chunk-5QYNAHTR.js";
|
|
37
37
|
import "./chunk-TCZZFGKB.js";
|
|
38
38
|
import "./chunk-ASSZY3L3.js";
|
|
@@ -3,8 +3,8 @@ import {
|
|
|
3
3
|
extractSchemaMetadata,
|
|
4
4
|
isJsonParseError,
|
|
5
5
|
validateSchemaStructure
|
|
6
|
-
} from "../chunk-
|
|
7
|
-
import "../chunk-
|
|
6
|
+
} from "../chunk-MLNBNNC2.js";
|
|
7
|
+
import "../chunk-6U6OXTL5.js";
|
|
8
8
|
import "../chunk-5QYNAHTR.js";
|
|
9
9
|
import "../chunk-TCZZFGKB.js";
|
|
10
10
|
import "../chunk-ASSZY3L3.js";
|
package/oclif.manifest.json
CHANGED