@fragment-dev/cli 2026.8.28-5 → 2026.8.31-10
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-VW6PUSWW.js → chunk-63YA3V3Q.js} +1 -1
- package/dist/{chunk-ITF55DZD.js → chunk-ATWSEAHA.js} +4 -4
- package/dist/{chunk-KBT3BC66.js → chunk-CD6IIPMQ.js} +9 -1
- package/dist/{chunk-YMJB2WZN.js → chunk-HDCHCYP4.js} +1 -1
- package/dist/{chunk-XUATLFJV.js → chunk-KCNKKLUY.js} +2 -2
- package/dist/{chunk-VMLOYHW5.js → chunk-LLGRPASC.js} +2 -2
- package/dist/{chunk-JBPRDFSG.js → chunk-V7GRLUPZ.js} +3 -3
- package/dist/{chunk-E5IF7OBV.js → chunk-WSLNK6AH.js} +129 -99
- package/dist/{chunk-XPLLK6U3.js → chunk-YK3VNOKP.js} +1 -1
- package/dist/commands/gen-graphql.js +6 -6
- package/dist/commands/verify-schema.js +6 -6
- package/dist/commands.js +9 -9
- package/dist/graphql.js +3 -3
- package/dist/index.js +9 -9
- package/dist/utils/formatValidationErrors.js +2 -2
- package/dist/utils/schemaValidation.js +5 -5
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
|
@@ -3,18 +3,18 @@ import {
|
|
|
3
3
|
generateQueryFiles,
|
|
4
4
|
schemaToEntryDefinitions,
|
|
5
5
|
validateOutputName
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-63YA3V3Q.js";
|
|
7
7
|
import {
|
|
8
8
|
Schema,
|
|
9
9
|
parseWithError
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-WSLNK6AH.js";
|
|
11
11
|
import {
|
|
12
12
|
formatValidationErrors,
|
|
13
13
|
logValidationErrors
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-YK3VNOKP.js";
|
|
15
15
|
import {
|
|
16
16
|
BadRequestError
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-CD6IIPMQ.js";
|
|
18
18
|
import {
|
|
19
19
|
FragmentCommand,
|
|
20
20
|
require_lib
|
|
@@ -4953,6 +4953,11 @@ var workspaceTypes = [
|
|
|
4953
4953
|
];
|
|
4954
4954
|
var WorkspaceTypeSchema = z.enum(workspaceTypes);
|
|
4955
4955
|
|
|
4956
|
+
// ../../libs/types/stripeModes.ts
|
|
4957
|
+
init_cjs_shims();
|
|
4958
|
+
var stripeModes = ["test", "live"];
|
|
4959
|
+
var StripeModeSchema = z.enum(stripeModes);
|
|
4960
|
+
|
|
4956
4961
|
// ../../libs/types/currencyCodes.ts
|
|
4957
4962
|
init_cjs_shims();
|
|
4958
4963
|
var nonISOCurrencyCodes = [
|
|
@@ -6104,7 +6109,10 @@ var codes = {
|
|
|
6104
6109
|
already_exists: "workspace_already_exists",
|
|
6105
6110
|
free_tier_limit: "workspace_free_tier_limit",
|
|
6106
6111
|
free_tier_entry_limit: "workspace_free_tier_entry_limit",
|
|
6107
|
-
type_not_allowed: "workspace_type_not_allowed"
|
|
6112
|
+
type_not_allowed: "workspace_type_not_allowed",
|
|
6113
|
+
parent_not_found: "workspace_parent_not_found",
|
|
6114
|
+
parent_access_needed: "workspace_parent_access_needed",
|
|
6115
|
+
parent_stripe_customer_missing: "workspace_parent_stripe_customer_missing"
|
|
6108
6116
|
},
|
|
6109
6117
|
workspace_access: {
|
|
6110
6118
|
already_exists: "workspace_access_already_exists"
|
|
@@ -2,13 +2,13 @@ import {
|
|
|
2
2
|
extractSchemaMetadata,
|
|
3
3
|
isJsonParseError,
|
|
4
4
|
validateSchemaStructure
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-V7GRLUPZ.js";
|
|
6
6
|
import {
|
|
7
7
|
DEFAULT_SCHEMA_PATH
|
|
8
8
|
} from "./chunk-A4BSWX5D.js";
|
|
9
9
|
import {
|
|
10
10
|
logValidationErrors
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-YK3VNOKP.js";
|
|
12
12
|
import {
|
|
13
13
|
FragmentCommand,
|
|
14
14
|
require_lib
|
|
@@ -27,10 +27,10 @@ import {
|
|
|
27
27
|
} from "./chunk-PISSWWTD.js";
|
|
28
28
|
import {
|
|
29
29
|
VerifySchema
|
|
30
|
-
} from "./chunk-
|
|
30
|
+
} from "./chunk-KCNKKLUY.js";
|
|
31
31
|
import {
|
|
32
32
|
GenGraphQL
|
|
33
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-ATWSEAHA.js";
|
|
34
34
|
import {
|
|
35
35
|
GetSchema
|
|
36
36
|
} from "./chunk-UZGZUY2H.js";
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
Schema,
|
|
3
3
|
parseWithError
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-WSLNK6AH.js";
|
|
5
5
|
import {
|
|
6
6
|
formatValidationErrors
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-YK3VNOKP.js";
|
|
8
8
|
import {
|
|
9
9
|
BadRequestError
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-CD6IIPMQ.js";
|
|
11
11
|
import {
|
|
12
12
|
init_cjs_shims
|
|
13
13
|
} from "./chunk-7GH3YGSC.js";
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
getStructuralPath,
|
|
6
6
|
getStructuralSubpaths,
|
|
7
7
|
getSubpaths
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-HDCHCYP4.js";
|
|
9
9
|
import {
|
|
10
10
|
BadRequestError,
|
|
11
11
|
CurrencyMatchInputSchema,
|
|
@@ -22,7 +22,7 @@ import {
|
|
|
22
22
|
getStringParameters,
|
|
23
23
|
safe,
|
|
24
24
|
z
|
|
25
|
-
} from "./chunk-
|
|
25
|
+
} from "./chunk-CD6IIPMQ.js";
|
|
26
26
|
import {
|
|
27
27
|
__commonJS,
|
|
28
28
|
__toESM,
|
|
@@ -4878,6 +4878,84 @@ var validateDefaultCurrencySettings = ({
|
|
|
4878
4878
|
};
|
|
4879
4879
|
};
|
|
4880
4880
|
|
|
4881
|
+
// ../../libs/schema-validation/utils/paymentAccountEligibility.ts
|
|
4882
|
+
init_cjs_shims();
|
|
4883
|
+
var paymentAccountRuleMessages = {
|
|
4884
|
+
asset: ({ key, name }) => `Payment Accounts must be asset accounts (key: ${key}, name: ${name})`,
|
|
4885
|
+
template: ({ key, name }) => `Payment Accounts cannot be Template Accounts or children of Template Accounts (key: ${key}, name: ${name})`,
|
|
4886
|
+
active: ({ key, name }) => `Payment Accounts must be active (key: ${key}, name: ${name})`,
|
|
4887
|
+
"single-currency": ({ key, name }) => `Payment Accounts must be single-currency (key: ${key}, name: ${name})`,
|
|
4888
|
+
usd: ({ key, name }) => `Payment Accounts must use USD (key: ${key}, name: ${name})`,
|
|
4889
|
+
"no-children": ({ key, name }) => `Payment Accounts cannot have children (key: ${key}, name: ${name})`,
|
|
4890
|
+
"strongly-consistent": ({ key, name }) => `Payment Accounts must be strongly consistent. Set ownBalanceUpdates or totalBalanceUpdates to 'strong' (key: ${key}, name: ${name})`
|
|
4891
|
+
};
|
|
4892
|
+
var paymentAccountUniquenessMessage = ({
|
|
4893
|
+
key
|
|
4894
|
+
}) => `Only one Payment Account is allowed per schema (key: ${key})`;
|
|
4895
|
+
var validatePaymentAccountRules = (input) => {
|
|
4896
|
+
const { key, name } = input;
|
|
4897
|
+
const violations = [];
|
|
4898
|
+
const addViolation = (rule) => violations.push({
|
|
4899
|
+
rule,
|
|
4900
|
+
message: paymentAccountRuleMessages[rule]({ key, name })
|
|
4901
|
+
});
|
|
4902
|
+
if (input.type !== "asset") {
|
|
4903
|
+
addViolation("asset");
|
|
4904
|
+
}
|
|
4905
|
+
if (input.isTemplateOrTemplateChild) {
|
|
4906
|
+
addViolation("template");
|
|
4907
|
+
}
|
|
4908
|
+
if (input.status !== SchemaLedgerEntityStatusSchema.Values.active) {
|
|
4909
|
+
addViolation("active");
|
|
4910
|
+
}
|
|
4911
|
+
if (input.currencyMode === "multi") {
|
|
4912
|
+
addViolation("single-currency");
|
|
4913
|
+
} else if (input.currencyCode !== "USD") {
|
|
4914
|
+
addViolation("usd");
|
|
4915
|
+
}
|
|
4916
|
+
if (input.hasChildren) {
|
|
4917
|
+
addViolation("no-children");
|
|
4918
|
+
}
|
|
4919
|
+
const { ownBalanceUpdates, totalBalanceUpdates } = resolveBalanceUpdatesConsistency({
|
|
4920
|
+
accountConsistencyConfig: input.consistencyConfig,
|
|
4921
|
+
defaultConsistencyConfig: input.defaultConsistencyConfig
|
|
4922
|
+
});
|
|
4923
|
+
if (ownBalanceUpdates !== "strong" && totalBalanceUpdates !== "strong") {
|
|
4924
|
+
addViolation("strongly-consistent");
|
|
4925
|
+
}
|
|
4926
|
+
return violations;
|
|
4927
|
+
};
|
|
4928
|
+
|
|
4929
|
+
// ../../libs/schema-validation/utils/resolveAccountInheritedFields.ts
|
|
4930
|
+
init_cjs_shims();
|
|
4931
|
+
var resolveAccountInheritedFields = ({
|
|
4932
|
+
own,
|
|
4933
|
+
inherited,
|
|
4934
|
+
isTotalBalance
|
|
4935
|
+
}) => {
|
|
4936
|
+
const currency = !own.currency && (own.currencyMode ?? inherited.currencyMode) === "multi" ? void 0 : own.currency ?? inherited.currency;
|
|
4937
|
+
const resolveBalanceUpdates = () => {
|
|
4938
|
+
if (!isTotalBalance) {
|
|
4939
|
+
return {
|
|
4940
|
+
ownBalanceUpdates: own.ownBalanceUpdates ?? inherited.ownBalanceUpdates
|
|
4941
|
+
};
|
|
4942
|
+
}
|
|
4943
|
+
return own.totalBalanceUpdates !== void 0 ? { totalBalanceUpdates: own.totalBalanceUpdates } : {};
|
|
4944
|
+
};
|
|
4945
|
+
return {
|
|
4946
|
+
type: own.type ?? inherited.type,
|
|
4947
|
+
currency,
|
|
4948
|
+
// An account with a currency is necessarily single-currency, unless it
|
|
4949
|
+
// overrides currencyMode itself.
|
|
4950
|
+
currencyMode: own.currencyMode ?? (currency ? "single" : inherited.currencyMode),
|
|
4951
|
+
...resolveBalanceUpdates()
|
|
4952
|
+
};
|
|
4953
|
+
};
|
|
4954
|
+
var inferAccountName = ({
|
|
4955
|
+
key,
|
|
4956
|
+
name
|
|
4957
|
+
}) => name && !key.startsWith(name) ? name : key;
|
|
4958
|
+
|
|
4881
4959
|
// ../../libs/schema-validation/utils/status.ts
|
|
4882
4960
|
init_cjs_shims();
|
|
4883
4961
|
var getAccountStatus = ({
|
|
@@ -5194,67 +5272,21 @@ var validateAccountPayment = ({
|
|
|
5194
5272
|
path,
|
|
5195
5273
|
defaultConsistencyConfig
|
|
5196
5274
|
}) => {
|
|
5197
|
-
|
|
5198
|
-
|
|
5199
|
-
payment,
|
|
5200
|
-
type,
|
|
5201
|
-
template,
|
|
5202
|
-
currencyMode,
|
|
5203
|
-
currency,
|
|
5204
|
-
children,
|
|
5205
|
-
consistencyConfig,
|
|
5206
|
-
key,
|
|
5207
|
-
name
|
|
5208
|
-
} = account;
|
|
5209
|
-
if (!payment) {
|
|
5210
|
-
return errors;
|
|
5211
|
-
}
|
|
5212
|
-
if (type !== "asset") {
|
|
5213
|
-
errors.push({
|
|
5214
|
-
message: `Payment Accounts must be asset accounts (key: ${key}, name: ${name})`,
|
|
5215
|
-
path: [...path, "payment"]
|
|
5216
|
-
});
|
|
5217
|
-
}
|
|
5218
|
-
if (template || isTemplateChild) {
|
|
5219
|
-
errors.push({
|
|
5220
|
-
message: `Payment Accounts cannot be Template Accounts or children of Template Accounts (key: ${key}, name: ${name})`,
|
|
5221
|
-
path: [...path, "payment"]
|
|
5222
|
-
});
|
|
5223
|
-
}
|
|
5224
|
-
if (getAccountStatus(account) !== SchemaLedgerEntityStatusSchema.Values.active) {
|
|
5225
|
-
errors.push({
|
|
5226
|
-
message: `Payment Accounts must be active (key: ${key}, name: ${name})`,
|
|
5227
|
-
path: [...path, "payment"]
|
|
5228
|
-
});
|
|
5229
|
-
}
|
|
5230
|
-
if (currencyMode === "multi") {
|
|
5231
|
-
errors.push({
|
|
5232
|
-
message: `Payment Accounts must be single-currency (key: ${key}, name: ${name})`,
|
|
5233
|
-
path: [...path, "payment"]
|
|
5234
|
-
});
|
|
5235
|
-
} else if (currency?.code !== "USD") {
|
|
5236
|
-
errors.push({
|
|
5237
|
-
message: `Payment Accounts must use USD (key: ${key}, name: ${name})`,
|
|
5238
|
-
path: [...path, "payment"]
|
|
5239
|
-
});
|
|
5240
|
-
}
|
|
5241
|
-
if ((children ?? []).length > 0) {
|
|
5242
|
-
errors.push({
|
|
5243
|
-
message: `Payment Accounts cannot have children (key: ${key}, name: ${name})`,
|
|
5244
|
-
path: [...path, "payment"]
|
|
5245
|
-
});
|
|
5275
|
+
if (!account.payment) {
|
|
5276
|
+
return [];
|
|
5246
5277
|
}
|
|
5247
|
-
|
|
5248
|
-
|
|
5278
|
+
return validatePaymentAccountRules({
|
|
5279
|
+
key: account.key,
|
|
5280
|
+
name: account.name,
|
|
5281
|
+
type: account.type,
|
|
5282
|
+
isTemplateOrTemplateChild: Boolean(account.template || isTemplateChild),
|
|
5283
|
+
status: getAccountStatus(account),
|
|
5284
|
+
currencyMode: account.currencyMode,
|
|
5285
|
+
currencyCode: account.currency?.code,
|
|
5286
|
+
hasChildren: (account.children ?? []).length > 0,
|
|
5287
|
+
consistencyConfig: account.consistencyConfig,
|
|
5249
5288
|
defaultConsistencyConfig
|
|
5250
|
-
});
|
|
5251
|
-
if (ownBalanceUpdates !== "strong" && totalBalanceUpdates !== "strong") {
|
|
5252
|
-
errors.push({
|
|
5253
|
-
message: `Payment Accounts must be strongly consistent. Set ownBalanceUpdates or totalBalanceUpdates to 'strong' (key: ${key}, name: ${name})`,
|
|
5254
|
-
path: [...path, "payment"]
|
|
5255
|
-
});
|
|
5256
|
-
}
|
|
5257
|
-
return errors;
|
|
5289
|
+
}).map(({ message }) => ({ message, path: [...path, "payment"] }));
|
|
5258
5290
|
};
|
|
5259
5291
|
var validateAccountCategory = ({
|
|
5260
5292
|
account,
|
|
@@ -5425,7 +5457,7 @@ var fillInDefaultsAndInferMetadata = ({
|
|
|
5425
5457
|
totalBalanceUpdates: defaultConsistencyConfigInput?.totalBalanceUpdates
|
|
5426
5458
|
}
|
|
5427
5459
|
};
|
|
5428
|
-
const
|
|
5460
|
+
const resolveSchemaAccountInheritedFields = ({
|
|
5429
5461
|
account,
|
|
5430
5462
|
fallbackDefaultCurrencyMode,
|
|
5431
5463
|
fallbackDefaultCurrency,
|
|
@@ -5433,46 +5465,39 @@ var fillInDefaultsAndInferMetadata = ({
|
|
|
5433
5465
|
parentAccountType,
|
|
5434
5466
|
isTemplateChild = false
|
|
5435
5467
|
}) => {
|
|
5436
|
-
let { type } = account;
|
|
5437
|
-
if (type === void 0) {
|
|
5438
|
-
type = parentAccountType;
|
|
5439
|
-
}
|
|
5440
|
-
let newCurrency;
|
|
5441
|
-
if (!account.currency && (account.currencyMode ?? fallbackDefaultCurrencyMode) === "multi") {
|
|
5442
|
-
newCurrency = void 0;
|
|
5443
|
-
} else {
|
|
5444
|
-
newCurrency = account.currency ?? fallbackDefaultCurrency;
|
|
5445
|
-
}
|
|
5446
|
-
const newCurrencyMode = account.currencyMode ?? (newCurrency ? "single" : fallbackDefaultCurrencyMode);
|
|
5447
5468
|
const partialConsistencyConfig = account.consistencyConfig ?? {};
|
|
5448
|
-
const
|
|
5449
|
-
|
|
5450
|
-
|
|
5451
|
-
|
|
5452
|
-
|
|
5453
|
-
|
|
5454
|
-
|
|
5455
|
-
|
|
5469
|
+
const {
|
|
5470
|
+
type,
|
|
5471
|
+
currency: newCurrency,
|
|
5472
|
+
currencyMode: newCurrencyMode,
|
|
5473
|
+
...balanceUpdates
|
|
5474
|
+
} = resolveAccountInheritedFields(
|
|
5475
|
+
{
|
|
5476
|
+
own: {
|
|
5477
|
+
type: account.type,
|
|
5478
|
+
currency: account.currency,
|
|
5479
|
+
currencyMode: account.currencyMode,
|
|
5480
|
+
ownBalanceUpdates: partialConsistencyConfig.ownBalanceUpdates,
|
|
5481
|
+
totalBalanceUpdates: partialConsistencyConfig.totalBalanceUpdates
|
|
5482
|
+
},
|
|
5483
|
+
inherited: {
|
|
5484
|
+
type: parentAccountType,
|
|
5485
|
+
currency: fallbackDefaultCurrency,
|
|
5486
|
+
currencyMode: fallbackDefaultCurrencyMode,
|
|
5487
|
+
ownBalanceUpdates: fallbackDefaultConsistencyMode.ownBalanceUpdates
|
|
5488
|
+
},
|
|
5489
|
+
isTotalBalance
|
|
5456
5490
|
}
|
|
5457
|
-
|
|
5458
|
-
ownBalanceUpdates: partialConsistencyConfig.ownBalanceUpdates ?? fallbackDefaultConsistencyMode.ownBalanceUpdates
|
|
5459
|
-
};
|
|
5460
|
-
};
|
|
5491
|
+
);
|
|
5461
5492
|
const newConsistencyConfig = {
|
|
5462
5493
|
lines: partialConsistencyConfig.lines ?? fallbackDefaultConsistencyMode.lines,
|
|
5463
5494
|
groups: partialConsistencyConfig.groups ?? fallbackDefaultConsistencyMode.groups,
|
|
5464
|
-
...
|
|
5495
|
+
...balanceUpdates
|
|
5465
5496
|
};
|
|
5466
|
-
|
|
5467
|
-
|
|
5468
|
-
|
|
5469
|
-
|
|
5470
|
-
} else {
|
|
5471
|
-
newName = account.name;
|
|
5472
|
-
}
|
|
5473
|
-
} else {
|
|
5474
|
-
newName = account.key;
|
|
5475
|
-
}
|
|
5497
|
+
const newName = inferAccountName({
|
|
5498
|
+
key: account.key,
|
|
5499
|
+
name: account.name
|
|
5500
|
+
});
|
|
5476
5501
|
const status = getAccountStatus(account);
|
|
5477
5502
|
const updatedAccount = {
|
|
5478
5503
|
...account,
|
|
@@ -5488,7 +5513,7 @@ var fillInDefaultsAndInferMetadata = ({
|
|
|
5488
5513
|
return {
|
|
5489
5514
|
...updatedAccount,
|
|
5490
5515
|
children: (account.children ?? []).map(
|
|
5491
|
-
(child) =>
|
|
5516
|
+
(child) => resolveSchemaAccountInheritedFields({
|
|
5492
5517
|
account: child,
|
|
5493
5518
|
fallbackDefaultCurrencyMode: newCurrencyMode,
|
|
5494
5519
|
fallbackDefaultCurrency: newCurrency,
|
|
@@ -5504,7 +5529,7 @@ var fillInDefaultsAndInferMetadata = ({
|
|
|
5504
5529
|
defaultCurrency,
|
|
5505
5530
|
defaultConsistencyConfig,
|
|
5506
5531
|
accounts: accounts.map(
|
|
5507
|
-
(child) =>
|
|
5532
|
+
(child) => resolveSchemaAccountInheritedFields({
|
|
5508
5533
|
account: child,
|
|
5509
5534
|
fallbackDefaultCurrencyMode: defaultCurrencyMode,
|
|
5510
5535
|
fallbackDefaultCurrency: defaultCurrency,
|
|
@@ -5632,7 +5657,7 @@ var transformAndValidateAccounts = ({
|
|
|
5632
5657
|
if (paymentAccounts.length > 1) {
|
|
5633
5658
|
paymentAccounts.forEach(
|
|
5634
5659
|
({ account, objPath }) => errors.push({
|
|
5635
|
-
message:
|
|
5660
|
+
message: paymentAccountUniquenessMessage({ key: account.key }),
|
|
5636
5661
|
path: [...objPath, "payment"]
|
|
5637
5662
|
})
|
|
5638
5663
|
);
|
|
@@ -6144,6 +6169,11 @@ var MAX_CONSISTENT_BALANCE_UPDATES = 30;
|
|
|
6144
6169
|
// ../../libs/types/entry.ts
|
|
6145
6170
|
init_cjs_shims();
|
|
6146
6171
|
var MAX_ENTRY_LINES = 30;
|
|
6172
|
+
var LedgerEntryFlavor = {
|
|
6173
|
+
/** "traditional" entries */
|
|
6174
|
+
journal: "journal"
|
|
6175
|
+
};
|
|
6176
|
+
var LedgerEntryFlavorSchema = z.nativeEnum(LedgerEntryFlavor);
|
|
6147
6177
|
|
|
6148
6178
|
// ../../libs/schema-validation/utils/transformers/utilities.ts
|
|
6149
6179
|
init_cjs_shims();
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
GenGraphQL
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-ATWSEAHA.js";
|
|
4
|
+
import "../chunk-63YA3V3Q.js";
|
|
5
5
|
import "../chunk-FMY4RHS4.js";
|
|
6
6
|
import "../chunk-ZMFGVGZP.js";
|
|
7
|
-
import "../chunk-
|
|
8
|
-
import "../chunk-
|
|
9
|
-
import "../chunk-
|
|
10
|
-
import "../chunk-
|
|
7
|
+
import "../chunk-WSLNK6AH.js";
|
|
8
|
+
import "../chunk-YK3VNOKP.js";
|
|
9
|
+
import "../chunk-HDCHCYP4.js";
|
|
10
|
+
import "../chunk-CD6IIPMQ.js";
|
|
11
11
|
import "../chunk-W33MLXYW.js";
|
|
12
12
|
import "../chunk-34NLRFFT.js";
|
|
13
13
|
import "../chunk-LFCNPXLH.js";
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
VerifySchema
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-KCNKKLUY.js";
|
|
4
|
+
import "../chunk-V7GRLUPZ.js";
|
|
5
5
|
import "../chunk-A4BSWX5D.js";
|
|
6
|
-
import "../chunk-
|
|
7
|
-
import "../chunk-
|
|
8
|
-
import "../chunk-
|
|
9
|
-
import "../chunk-
|
|
6
|
+
import "../chunk-WSLNK6AH.js";
|
|
7
|
+
import "../chunk-YK3VNOKP.js";
|
|
8
|
+
import "../chunk-HDCHCYP4.js";
|
|
9
|
+
import "../chunk-CD6IIPMQ.js";
|
|
10
10
|
import "../chunk-W33MLXYW.js";
|
|
11
11
|
import "../chunk-34NLRFFT.js";
|
|
12
12
|
import "../chunk-LFCNPXLH.js";
|
package/dist/commands.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
COMMANDS
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-LLGRPASC.js";
|
|
4
4
|
import "./chunk-EXE547EZ.js";
|
|
5
5
|
import "./chunk-IMKPDURF.js";
|
|
6
6
|
import "./chunk-XDMOC74J.js";
|
|
@@ -10,17 +10,17 @@ import "./chunk-C76SZWZQ.js";
|
|
|
10
10
|
import "./chunk-IJZAXY2T.js";
|
|
11
11
|
import "./chunk-LFLUV5JB.js";
|
|
12
12
|
import "./chunk-PISSWWTD.js";
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-KCNKKLUY.js";
|
|
14
|
+
import "./chunk-V7GRLUPZ.js";
|
|
15
15
|
import "./chunk-A4BSWX5D.js";
|
|
16
|
-
import "./chunk-
|
|
17
|
-
import "./chunk-
|
|
16
|
+
import "./chunk-ATWSEAHA.js";
|
|
17
|
+
import "./chunk-63YA3V3Q.js";
|
|
18
18
|
import "./chunk-FMY4RHS4.js";
|
|
19
19
|
import "./chunk-ZMFGVGZP.js";
|
|
20
|
-
import "./chunk-
|
|
21
|
-
import "./chunk-
|
|
22
|
-
import "./chunk-
|
|
23
|
-
import "./chunk-
|
|
20
|
+
import "./chunk-WSLNK6AH.js";
|
|
21
|
+
import "./chunk-YK3VNOKP.js";
|
|
22
|
+
import "./chunk-HDCHCYP4.js";
|
|
23
|
+
import "./chunk-CD6IIPMQ.js";
|
|
24
24
|
import "./chunk-UZGZUY2H.js";
|
|
25
25
|
import "./chunk-BYZNYEGH.js";
|
|
26
26
|
import "./chunk-52KK5CBJ.js";
|
package/dist/graphql.js
CHANGED
|
@@ -8,11 +8,11 @@ import {
|
|
|
8
8
|
isValidGraphQlName,
|
|
9
9
|
schemaToEntryDefinitions,
|
|
10
10
|
validateOutputName
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-63YA3V3Q.js";
|
|
12
12
|
import "./chunk-FMY4RHS4.js";
|
|
13
13
|
import "./chunk-ZMFGVGZP.js";
|
|
14
|
-
import "./chunk-
|
|
15
|
-
import "./chunk-
|
|
14
|
+
import "./chunk-HDCHCYP4.js";
|
|
15
|
+
import "./chunk-CD6IIPMQ.js";
|
|
16
16
|
import "./chunk-XK2D2Z44.js";
|
|
17
17
|
import "./chunk-7K4RMTU4.js";
|
|
18
18
|
import "./chunk-7GH3YGSC.js";
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
COMMANDS
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-LLGRPASC.js";
|
|
4
4
|
import "./chunk-EXE547EZ.js";
|
|
5
5
|
import "./chunk-IMKPDURF.js";
|
|
6
6
|
import "./chunk-XDMOC74J.js";
|
|
@@ -10,17 +10,17 @@ import "./chunk-C76SZWZQ.js";
|
|
|
10
10
|
import "./chunk-IJZAXY2T.js";
|
|
11
11
|
import "./chunk-LFLUV5JB.js";
|
|
12
12
|
import "./chunk-PISSWWTD.js";
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-KCNKKLUY.js";
|
|
14
|
+
import "./chunk-V7GRLUPZ.js";
|
|
15
15
|
import "./chunk-A4BSWX5D.js";
|
|
16
|
-
import "./chunk-
|
|
17
|
-
import "./chunk-
|
|
16
|
+
import "./chunk-ATWSEAHA.js";
|
|
17
|
+
import "./chunk-63YA3V3Q.js";
|
|
18
18
|
import "./chunk-FMY4RHS4.js";
|
|
19
19
|
import "./chunk-ZMFGVGZP.js";
|
|
20
|
-
import "./chunk-
|
|
21
|
-
import "./chunk-
|
|
22
|
-
import "./chunk-
|
|
23
|
-
import "./chunk-
|
|
20
|
+
import "./chunk-WSLNK6AH.js";
|
|
21
|
+
import "./chunk-YK3VNOKP.js";
|
|
22
|
+
import "./chunk-HDCHCYP4.js";
|
|
23
|
+
import "./chunk-CD6IIPMQ.js";
|
|
24
24
|
import "./chunk-UZGZUY2H.js";
|
|
25
25
|
import "./chunk-BYZNYEGH.js";
|
|
26
26
|
import "./chunk-52KK5CBJ.js";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
formatValidationErrors,
|
|
3
3
|
logValidationErrors
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-YK3VNOKP.js";
|
|
5
|
+
import "../chunk-CD6IIPMQ.js";
|
|
6
6
|
import "../chunk-XK2D2Z44.js";
|
|
7
7
|
import "../chunk-L7ZGDLYU.js";
|
|
8
8
|
import "../chunk-7GH3YGSC.js";
|
|
@@ -3,11 +3,11 @@ import {
|
|
|
3
3
|
extractSchemaMetadata,
|
|
4
4
|
isJsonParseError,
|
|
5
5
|
validateSchemaStructure
|
|
6
|
-
} from "../chunk-
|
|
7
|
-
import "../chunk-
|
|
8
|
-
import "../chunk-
|
|
9
|
-
import "../chunk-
|
|
10
|
-
import "../chunk-
|
|
6
|
+
} from "../chunk-V7GRLUPZ.js";
|
|
7
|
+
import "../chunk-WSLNK6AH.js";
|
|
8
|
+
import "../chunk-YK3VNOKP.js";
|
|
9
|
+
import "../chunk-HDCHCYP4.js";
|
|
10
|
+
import "../chunk-CD6IIPMQ.js";
|
|
11
11
|
import "../chunk-XK2D2Z44.js";
|
|
12
12
|
import "../chunk-L7ZGDLYU.js";
|
|
13
13
|
import "../chunk-7GH3YGSC.js";
|
package/oclif.manifest.json
CHANGED