@fragment-dev/cli 2025.9.16 → 2025.9.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,7 +3,7 @@ import {
3
3
  getInstanceValueByAccountPath,
4
4
  getSchemaObjectParameters,
5
5
  getStructuralPath
6
- } from "./chunk-MZOZSRIG.js";
6
+ } from "./chunk-C3HNQQDL.js";
7
7
  import {
8
8
  BadRequestError,
9
9
  CurrencyMatchInputSchema,
@@ -18,7 +18,7 @@ import {
18
18
  assert_default,
19
19
  currencyCodes,
20
20
  safe
21
- } from "./chunk-SVOY3WJA.js";
21
+ } from "./chunk-YWVJMLFY.js";
22
22
  import {
23
23
  z
24
24
  } from "./chunk-5TQBOAE7.js";
@@ -4621,9 +4621,9 @@ var FlowKey = z.object({
4621
4621
  var SchemaLedgerFlowInput = z.object({
4622
4622
  type: SafeStringSchema,
4623
4623
  typeVersion: z.number().int().positive(),
4624
- description: z.string().optional(),
4624
+ description: ParameterizedString.optional(),
4625
4625
  clearingAccountPath: ParameterizedString,
4626
- initializingEntry: BaseSchemaLedgerEntryInput,
4626
+ initializingEntry: FlowKey,
4627
4627
  entries: z.array(FlowKey),
4628
4628
  flows: z.array(FlowKey)
4629
4629
  });
@@ -5522,6 +5522,93 @@ var getStructuralPathToAccount = (validatedCoA) => {
5522
5522
  validatedCoA.accounts.forEach((account) => walk(account));
5523
5523
  return accountPathToAccount;
5524
5524
  };
5525
+ var validateAccountPathExists = (accountPath, accountPathToAccount, context, path) => {
5526
+ const structuralPath = getStructuralPath(accountPath);
5527
+ const account = accountPathToAccount.get(structuralPath);
5528
+ if (!account) {
5529
+ return [
5530
+ {
5531
+ message: `${context} refers to a non-existent account path: ${accountPath}`,
5532
+ path
5533
+ }
5534
+ ];
5535
+ }
5536
+ return [];
5537
+ };
5538
+ var validateAccountPathFormat = (accountPath, context, path) => {
5539
+ if (accountPath.includes("#")) {
5540
+ return [
5541
+ {
5542
+ message: `${context} account path '${accountPath}' cannot contain '#'`,
5543
+ path
5544
+ }
5545
+ ];
5546
+ }
5547
+ return [];
5548
+ };
5549
+ var validateAccountPathNotEmpty = (accountPath, context, path) => {
5550
+ if (!accountPath || accountPath.trim() === "") {
5551
+ return [
5552
+ {
5553
+ message: `${context} must specify an account path`,
5554
+ path
5555
+ }
5556
+ ];
5557
+ }
5558
+ return [];
5559
+ };
5560
+ var validateAccountPath = (accountPath, accountPathToAccount, context, path) => {
5561
+ const errors = [];
5562
+ errors.push(...validateAccountPathNotEmpty(accountPath, context, path));
5563
+ if (errors.length > 0) {
5564
+ return errors;
5565
+ }
5566
+ errors.push(...validateAccountPathFormat(accountPath, context, path));
5567
+ errors.push(
5568
+ ...validateAccountPathExists(
5569
+ accountPath,
5570
+ accountPathToAccount,
5571
+ context,
5572
+ path
5573
+ )
5574
+ );
5575
+ return errors;
5576
+ };
5577
+ var validateAccountIsActive = (accountPath, accountPathToAccount, context, path) => {
5578
+ const structuralPath = getStructuralPath(accountPath);
5579
+ const account = accountPathToAccount.get(structuralPath);
5580
+ if (!account) {
5581
+ return [];
5582
+ }
5583
+ const accountStatus = getAccountStatus(account);
5584
+ if (accountStatus !== "active") {
5585
+ return [
5586
+ {
5587
+ message: `${context} refers to an account with status '${account.status}'. Only active accounts can be used.`,
5588
+ path
5589
+ }
5590
+ ];
5591
+ }
5592
+ return [];
5593
+ };
5594
+ var validateTemplateAccountParameters = (accountPath, accountPathToAccount, context, path) => {
5595
+ const instanceValueMap = getInstanceValueByAccountPath(accountPath);
5596
+ const errors = [];
5597
+ Array.from(instanceValueMap.keys()).forEach((ancestorPath) => {
5598
+ const structuralAncestorPath = getStructuralPath(ancestorPath);
5599
+ const ancestor = accountPathToAccount.get(structuralAncestorPath);
5600
+ if (!ancestor) {
5601
+ return;
5602
+ }
5603
+ if (ancestor.template && !instanceValueMap.get(ancestorPath)) {
5604
+ errors.push({
5605
+ message: `Invalid account path for ${context.toLowerCase()}. This ${context.toLowerCase()} refers to a Template Account, but is missing a variable that identifies the instance of the Template Account. For example: ${ancestorPath}:{{var}}`,
5606
+ path
5607
+ });
5608
+ }
5609
+ });
5610
+ return errors;
5611
+ };
5525
5612
 
5526
5613
  // ../../libs/schema-validation/utils/transformers/entries.ts
5527
5614
  var validateNonEmptySafeString = ({
@@ -6231,6 +6318,209 @@ var transformAndValidateEntries = ({
6231
6318
  };
6232
6319
  };
6233
6320
 
6321
+ // ../../libs/schema-validation/utils/transformers/flows.ts
6322
+ init_cjs_shims();
6323
+ var isAccountPathEquivalent = (path1, path2) => {
6324
+ return getStructuralPath(path1) === getStructuralPath(path2);
6325
+ };
6326
+ var validateMinimumSteps = (flow) => {
6327
+ const stepCount = flow.entries.length + (flow.flows?.length ?? 0);
6328
+ if (stepCount < 2) {
6329
+ return [
6330
+ {
6331
+ message: "Flow must have at least 2 elements (entries or flows)",
6332
+ path: []
6333
+ }
6334
+ ];
6335
+ }
6336
+ return [];
6337
+ };
6338
+ var validateInitializingEntryExists = (flow, validatedEntries) => {
6339
+ const initializingEntry = validatedEntries.types.find(
6340
+ (e) => e.type === flow.initializingEntry.type && (e.typeVersion ?? 1) === flow.initializingEntry.typeVersion
6341
+ );
6342
+ if (!initializingEntry) {
6343
+ return [
6344
+ {
6345
+ message: "Flow must have an initializing entry",
6346
+ path: ["initializingEntry"]
6347
+ }
6348
+ ];
6349
+ }
6350
+ return [];
6351
+ };
6352
+ var validateUniqueEntries = (flow) => {
6353
+ const entrySet = new Set(
6354
+ flow.entries.map((entry) => `${entry.type}:${entry.typeVersion}`)
6355
+ );
6356
+ if (entrySet.size !== flow.entries.length) {
6357
+ return [
6358
+ {
6359
+ message: "Cannot have duplicate entries in the flow",
6360
+ path: ["entries"]
6361
+ }
6362
+ ];
6363
+ }
6364
+ return [];
6365
+ };
6366
+ var validateUniqueFlows = (flow) => {
6367
+ const flowSet = new Set(flow.flows.map((f) => `${f.type}:${f.typeVersion}`));
6368
+ if (flowSet.size !== flow.flows.length) {
6369
+ return [
6370
+ { message: "Cannot have duplicate flows in the flow", path: ["flows"] }
6371
+ ];
6372
+ }
6373
+ return [];
6374
+ };
6375
+ var validateEntriesModifyClearingAccount = (flow, validatedEntries) => {
6376
+ const clearingAccount = flow.clearingAccountPath;
6377
+ const fullEntries = flow.entries.map((entry) => {
6378
+ const fullEntry = validatedEntries.types.find(
6379
+ (e) => e.type === entry.type && (e.typeVersion ?? 1) === entry.typeVersion
6380
+ );
6381
+ return fullEntry;
6382
+ });
6383
+ if (fullEntries.length !== flow.entries.length) {
6384
+ return [
6385
+ {
6386
+ message: "All entries in the flow must be present in the validated entries",
6387
+ path: ["entries"]
6388
+ }
6389
+ ];
6390
+ }
6391
+ const entriesMissingClearingAccount = fullEntries.filter(
6392
+ (e) => !e?.lines?.some(
6393
+ (l) => isAccountPathEquivalent(l.account.path, clearingAccount)
6394
+ )
6395
+ );
6396
+ if (entriesMissingClearingAccount.length > 0) {
6397
+ return entriesMissingClearingAccount.map((e) => ({
6398
+ message: `All entries in the flow must modify the clearing account, not present in the entries ${e?.type} v${e?.typeVersion}`,
6399
+ path: ["entries"]
6400
+ }));
6401
+ }
6402
+ return [];
6403
+ };
6404
+ var validateFlowsDepthAndCircularity = (flow, flows) => {
6405
+ if (!flows || !flow.flows || flow.flows.length === 0) {
6406
+ return [];
6407
+ }
6408
+ const errors = [];
6409
+ const visited = /* @__PURE__ */ new Set();
6410
+ const currentPath = [];
6411
+ const validateFlowRecursively = (currentFlow, depth, path) => {
6412
+ const flowId = `${currentFlow.type}:${currentFlow.typeVersion}`;
6413
+ if (visited.has(flowId)) {
6414
+ if (currentPath.includes(flowId)) {
6415
+ errors.push({
6416
+ message: `Circular reference detected in flow: ${flowId}`,
6417
+ path: ["flows", ...path]
6418
+ });
6419
+ return;
6420
+ }
6421
+ return;
6422
+ }
6423
+ if (depth > 5) {
6424
+ errors.push({
6425
+ message: `Flow depth exceeds maximum of 5 levels: ${flowId}`,
6426
+ path: ["flows", ...path]
6427
+ });
6428
+ return;
6429
+ }
6430
+ visited.add(flowId);
6431
+ currentPath.push(flowId);
6432
+ if (currentFlow.flows && currentFlow.flows.length > 0) {
6433
+ currentFlow.flows.forEach((flowKey, index) => {
6434
+ const childFlowId = `${flowKey.type}:${flowKey.typeVersion}`;
6435
+ const childFlow = flows.find(
6436
+ (f) => f.type === flowKey.type && f.typeVersion === flowKey.typeVersion
6437
+ );
6438
+ if (childFlow) {
6439
+ validateFlowRecursively(childFlow, depth + 1, [
6440
+ ...path,
6441
+ index.toString()
6442
+ ]);
6443
+ } else {
6444
+ errors.push({
6445
+ message: `Referenced flow not found: ${childFlowId}`,
6446
+ path: ["flows", ...path, index.toString()]
6447
+ });
6448
+ }
6449
+ });
6450
+ }
6451
+ currentPath.pop();
6452
+ };
6453
+ validateFlowRecursively(flow, 0, []);
6454
+ return errors;
6455
+ };
6456
+ var validateFlowEntryReferences = (flow, validatedEntries) => {
6457
+ const errors = [];
6458
+ flow.entries.forEach((entryRef, index) => {
6459
+ const matchingEntry = validatedEntries?.types?.find(
6460
+ (entry) => entry.type === entryRef.type && (entry.typeVersion ?? 1) === entryRef.typeVersion
6461
+ );
6462
+ if (!matchingEntry) {
6463
+ errors.push({
6464
+ message: `Flow entry not found in validated entries: ${entryRef.type}:${entryRef.typeVersion}`,
6465
+ path: ["entries", index]
6466
+ });
6467
+ } else {
6468
+ }
6469
+ });
6470
+ return errors;
6471
+ };
6472
+ var validateClearingAccount = (flow, validatedCoA) => {
6473
+ const clearingAccount = flow.clearingAccountPath;
6474
+ const accountPathToAccount = getStructuralPathToAccount(validatedCoA);
6475
+ const errors = [];
6476
+ errors.push(
6477
+ ...validateAccountPath(
6478
+ clearingAccount,
6479
+ accountPathToAccount,
6480
+ "Flow clearing account",
6481
+ ["clearingAccountPath"]
6482
+ )
6483
+ );
6484
+ errors.push(
6485
+ ...validateAccountIsActive(
6486
+ clearingAccount,
6487
+ accountPathToAccount,
6488
+ "Flow clearing account",
6489
+ ["clearingAccountPath"]
6490
+ )
6491
+ );
6492
+ errors.push(
6493
+ ...validateTemplateAccountParameters(
6494
+ clearingAccount,
6495
+ accountPathToAccount,
6496
+ "Flow clearing account",
6497
+ ["clearingAccountPath"]
6498
+ )
6499
+ );
6500
+ return errors;
6501
+ };
6502
+ var validateFlow = (flow, validatedCoA, validatedEntries, flows) => {
6503
+ const errors = [];
6504
+ const zodErrors = safeGetZodErrors(SchemaLedgerFlowInput, flow, []);
6505
+ errors.push(...zodErrors);
6506
+ if (errors.length > 0) {
6507
+ return errors;
6508
+ }
6509
+ errors.push(...validateMinimumSteps(flow));
6510
+ errors.push(...validateInitializingEntryExists(flow, validatedEntries));
6511
+ errors.push(...validateUniqueEntries(flow));
6512
+ errors.push(...validateUniqueFlows(flow));
6513
+ if (errors.length === 0) {
6514
+ errors.push(...validateFlowEntryReferences(flow, validatedEntries));
6515
+ errors.push(...validateFlowsDepthAndCircularity(flow, flows));
6516
+ errors.push(...validateClearingAccount(flow, validatedCoA));
6517
+ errors.push(
6518
+ ...validateEntriesModifyClearingAccount(flow, validatedEntries)
6519
+ );
6520
+ }
6521
+ return errors;
6522
+ };
6523
+
6234
6524
  // ../../libs/schema-validation/types.ts
6235
6525
  var SchemaCurrencyMatchInput2 = z.object({
6236
6526
  customCurrencyId: ParameterizedString.optional(),
@@ -6464,10 +6754,11 @@ var Schema = z.object({
6464
6754
  chartOfAccounts: ChartOfAccounts,
6465
6755
  ledgerEntries: SchemaLedgerEntriesInput.optional(),
6466
6756
  consistencyConfig: z.optional(LedgerConsistencyConfigSchema),
6467
- scenes: z.array(Scene).optional()
6757
+ scenes: z.array(Scene).optional(),
6758
+ flows: z.array(SchemaLedgerFlowInput).optional()
6468
6759
  }).transform((schema, ctx) => {
6469
- const { chartOfAccounts, ledgerEntries, consistencyConfig } = schema;
6470
- const { errors } = transformAndValidateEntries({
6760
+ const { chartOfAccounts, ledgerEntries, consistencyConfig, flows } = schema;
6761
+ const { errors, filledIn: validatedLedgerEntries } = transformAndValidateEntries({
6471
6762
  ledgerEntries: ledgerEntries ?? { types: [] },
6472
6763
  validatedCoA: chartOfAccounts
6473
6764
  });
@@ -6478,6 +6769,23 @@ var Schema = z.object({
6478
6769
  path
6479
6770
  })
6480
6771
  );
6772
+ if (flows && flows.length > 0) {
6773
+ flows.forEach((flow, index) => {
6774
+ const flowErrors = validateFlow(
6775
+ flow,
6776
+ chartOfAccounts,
6777
+ validatedLedgerEntries,
6778
+ flows
6779
+ );
6780
+ flowErrors.forEach(
6781
+ ({ message, path }) => ctx.addIssue({
6782
+ code: z.ZodIssueCode.custom,
6783
+ message,
6784
+ path: ["flows", index, ...path]
6785
+ })
6786
+ );
6787
+ });
6788
+ }
6481
6789
  return {
6482
6790
  ...schema,
6483
6791
  ledgerEntries: {
@@ -18,7 +18,7 @@ import {
18
18
  } from "./chunk-SIANE5YG.js";
19
19
  import {
20
20
  VerifySchema
21
- } from "./chunk-VDFDR5ZV.js";
21
+ } from "./chunk-RBWQUXGR.js";
22
22
  import {
23
23
  Workspace
24
24
  } from "./chunk-QBIZ7TKK.js";
@@ -66,7 +66,7 @@ import {
66
66
  } from "./chunk-EW6ZJJMC.js";
67
67
  import {
68
68
  GenGraphQL
69
- } from "./chunk-5NNGFUR2.js";
69
+ } from "./chunk-NWJJ3KZQ.js";
70
70
  import {
71
71
  init_cjs_shims
72
72
  } from "./chunk-7GH3YGSC.js";
@@ -1,13 +1,13 @@
1
1
  import {
2
2
  Schema,
3
3
  parseWithError
4
- } from "./chunk-TQRNHCRL.js";
4
+ } from "./chunk-2L2ZCHD7.js";
5
5
  import {
6
6
  formatValidationErrors
7
- } from "./chunk-GX2Y7J77.js";
7
+ } from "./chunk-EUDPQTGG.js";
8
8
  import {
9
9
  BadRequestError
10
- } from "./chunk-SVOY3WJA.js";
10
+ } from "./chunk-YWVJMLFY.js";
11
11
  import {
12
12
  init_cjs_shims
13
13
  } from "./chunk-7GH3YGSC.js";
@@ -3,7 +3,7 @@ import {
3
3
  assert_default,
4
4
  codes,
5
5
  getStringParametersInternal
6
- } from "./chunk-SVOY3WJA.js";
6
+ } from "./chunk-YWVJMLFY.js";
7
7
  import {
8
8
  init_cjs_shims
9
9
  } from "./chunk-7GH3YGSC.js";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  BadRequestError
3
- } from "./chunk-SVOY3WJA.js";
3
+ } from "./chunk-YWVJMLFY.js";
4
4
  import {
5
5
  ZodError
6
6
  } from "./chunk-5TQBOAE7.js";
@@ -3,18 +3,18 @@ import {
3
3
  generateQueryFiles,
4
4
  schemaToEntryDefinitions,
5
5
  validateOutputName
6
- } from "./chunk-3UMWAIEH.js";
6
+ } from "./chunk-WVPWSZFV.js";
7
7
  import {
8
8
  Schema,
9
9
  parseWithError
10
- } from "./chunk-TQRNHCRL.js";
10
+ } from "./chunk-2L2ZCHD7.js";
11
11
  import {
12
12
  formatValidationErrors,
13
13
  logValidationErrors
14
- } from "./chunk-GX2Y7J77.js";
14
+ } from "./chunk-EUDPQTGG.js";
15
15
  import {
16
16
  BadRequestError
17
- } from "./chunk-SVOY3WJA.js";
17
+ } from "./chunk-YWVJMLFY.js";
18
18
  import {
19
19
  FragmentCommand,
20
20
  require_lib
@@ -2,13 +2,13 @@ import {
2
2
  extractSchemaMetadata,
3
3
  isJsonParseError,
4
4
  validateSchemaStructure
5
- } from "./chunk-SHWFFRUQ.js";
5
+ } from "./chunk-5YFHCTKF.js";
6
6
  import {
7
7
  DEFAULT_SCHEMA_PATH
8
8
  } from "./chunk-A4BSWX5D.js";
9
9
  import {
10
10
  logValidationErrors
11
- } from "./chunk-GX2Y7J77.js";
11
+ } from "./chunk-EUDPQTGG.js";
12
12
  import {
13
13
  FragmentCommand,
14
14
  require_lib
@@ -7,7 +7,7 @@ import {
7
7
  import {
8
8
  getSchemaObjectParameters,
9
9
  getStructuralSubpaths
10
- } from "./chunk-MZOZSRIG.js";
10
+ } from "./chunk-C3HNQQDL.js";
11
11
  import {
12
12
  require_parser,
13
13
  require_printer
@@ -7714,7 +7714,8 @@ var codes = {
7714
7714
  schema: {
7715
7715
  not_found: "schema_not_found",
7716
7716
  entry_type_not_found: "schema_entry_type_not_found",
7717
- max_size_exceeded: "schema_max_size_exceeded"
7717
+ max_size_exceeded: "schema_max_size_exceeded",
7718
+ flows_not_supported: "schema_flows_not_supported"
7718
7719
  },
7719
7720
  schema_ledger: {
7720
7721
  not_found: "schema_ledger_not_found"
@@ -1,13 +1,13 @@
1
1
  import {
2
2
  GenGraphQL
3
- } from "../chunk-5NNGFUR2.js";
4
- import "../chunk-3UMWAIEH.js";
3
+ } from "../chunk-NWJJ3KZQ.js";
4
+ import "../chunk-WVPWSZFV.js";
5
5
  import "../chunk-ODU6I44Y.js";
6
6
  import "../chunk-73ZTML2E.js";
7
- import "../chunk-TQRNHCRL.js";
8
- import "../chunk-GX2Y7J77.js";
9
- import "../chunk-MZOZSRIG.js";
10
- import "../chunk-SVOY3WJA.js";
7
+ import "../chunk-2L2ZCHD7.js";
8
+ import "../chunk-EUDPQTGG.js";
9
+ import "../chunk-C3HNQQDL.js";
10
+ import "../chunk-YWVJMLFY.js";
11
11
  import "../chunk-EBRMLGNI.js";
12
12
  import "../chunk-UDU5PBTV.js";
13
13
  import "../chunk-LJSFUVJW.js";
@@ -1,12 +1,12 @@
1
1
  import {
2
2
  VerifySchema
3
- } from "../chunk-VDFDR5ZV.js";
4
- import "../chunk-SHWFFRUQ.js";
3
+ } from "../chunk-RBWQUXGR.js";
4
+ import "../chunk-5YFHCTKF.js";
5
5
  import "../chunk-A4BSWX5D.js";
6
- import "../chunk-TQRNHCRL.js";
7
- import "../chunk-GX2Y7J77.js";
8
- import "../chunk-MZOZSRIG.js";
9
- import "../chunk-SVOY3WJA.js";
6
+ import "../chunk-2L2ZCHD7.js";
7
+ import "../chunk-EUDPQTGG.js";
8
+ import "../chunk-C3HNQQDL.js";
9
+ import "../chunk-YWVJMLFY.js";
10
10
  import "../chunk-EBRMLGNI.js";
11
11
  import "../chunk-UDU5PBTV.js";
12
12
  import "../chunk-LJSFUVJW.js";
package/dist/commands.js CHANGED
@@ -1,14 +1,14 @@
1
1
  import {
2
2
  COMMANDS
3
- } from "./chunk-AB5MEBC5.js";
3
+ } from "./chunk-3OTXTYWJ.js";
4
4
  import "./chunk-S2W7I2OB.js";
5
5
  import "./chunk-CQC265GZ.js";
6
6
  import "./chunk-TRKCW3NY.js";
7
7
  import "./chunk-JVTCCEVF.js";
8
8
  import "./chunk-SXU2Z4NO.js";
9
9
  import "./chunk-SIANE5YG.js";
10
- import "./chunk-VDFDR5ZV.js";
11
- import "./chunk-SHWFFRUQ.js";
10
+ import "./chunk-RBWQUXGR.js";
11
+ import "./chunk-5YFHCTKF.js";
12
12
  import "./chunk-A4BSWX5D.js";
13
13
  import "./chunk-QBIZ7TKK.js";
14
14
  import "./chunk-7VJJQFG3.js";
@@ -28,14 +28,14 @@ import "./chunk-GH45O4YP.js";
28
28
  import "./chunk-EW6ZJJMC.js";
29
29
  import "./chunk-PWYEYSX5.js";
30
30
  import "./chunk-UXTOXY2F.js";
31
- import "./chunk-5NNGFUR2.js";
32
- import "./chunk-3UMWAIEH.js";
31
+ import "./chunk-NWJJ3KZQ.js";
32
+ import "./chunk-WVPWSZFV.js";
33
33
  import "./chunk-ODU6I44Y.js";
34
34
  import "./chunk-73ZTML2E.js";
35
- import "./chunk-TQRNHCRL.js";
36
- import "./chunk-GX2Y7J77.js";
37
- import "./chunk-MZOZSRIG.js";
38
- import "./chunk-SVOY3WJA.js";
35
+ import "./chunk-2L2ZCHD7.js";
36
+ import "./chunk-EUDPQTGG.js";
37
+ import "./chunk-C3HNQQDL.js";
38
+ import "./chunk-YWVJMLFY.js";
39
39
  import "./chunk-EBRMLGNI.js";
40
40
  import "./chunk-UDU5PBTV.js";
41
41
  import "./chunk-LJSFUVJW.js";
package/dist/graphql.js CHANGED
@@ -8,11 +8,11 @@ import {
8
8
  isValidGraphQlName,
9
9
  schemaToEntryDefinitions,
10
10
  validateOutputName
11
- } from "./chunk-3UMWAIEH.js";
11
+ } from "./chunk-WVPWSZFV.js";
12
12
  import "./chunk-ODU6I44Y.js";
13
13
  import "./chunk-73ZTML2E.js";
14
- import "./chunk-MZOZSRIG.js";
15
- import "./chunk-SVOY3WJA.js";
14
+ import "./chunk-C3HNQQDL.js";
15
+ import "./chunk-YWVJMLFY.js";
16
16
  import "./chunk-7K4RMTU4.js";
17
17
  import "./chunk-5TQBOAE7.js";
18
18
  import "./chunk-M5OAS5QZ.js";
package/dist/index.js CHANGED
@@ -1,14 +1,14 @@
1
1
  import {
2
2
  COMMANDS
3
- } from "./chunk-AB5MEBC5.js";
3
+ } from "./chunk-3OTXTYWJ.js";
4
4
  import "./chunk-S2W7I2OB.js";
5
5
  import "./chunk-CQC265GZ.js";
6
6
  import "./chunk-TRKCW3NY.js";
7
7
  import "./chunk-JVTCCEVF.js";
8
8
  import "./chunk-SXU2Z4NO.js";
9
9
  import "./chunk-SIANE5YG.js";
10
- import "./chunk-VDFDR5ZV.js";
11
- import "./chunk-SHWFFRUQ.js";
10
+ import "./chunk-RBWQUXGR.js";
11
+ import "./chunk-5YFHCTKF.js";
12
12
  import "./chunk-A4BSWX5D.js";
13
13
  import "./chunk-QBIZ7TKK.js";
14
14
  import "./chunk-7VJJQFG3.js";
@@ -28,14 +28,14 @@ import "./chunk-GH45O4YP.js";
28
28
  import "./chunk-EW6ZJJMC.js";
29
29
  import "./chunk-PWYEYSX5.js";
30
30
  import "./chunk-UXTOXY2F.js";
31
- import "./chunk-5NNGFUR2.js";
32
- import "./chunk-3UMWAIEH.js";
31
+ import "./chunk-NWJJ3KZQ.js";
32
+ import "./chunk-WVPWSZFV.js";
33
33
  import "./chunk-ODU6I44Y.js";
34
34
  import "./chunk-73ZTML2E.js";
35
- import "./chunk-TQRNHCRL.js";
36
- import "./chunk-GX2Y7J77.js";
37
- import "./chunk-MZOZSRIG.js";
38
- import "./chunk-SVOY3WJA.js";
35
+ import "./chunk-2L2ZCHD7.js";
36
+ import "./chunk-EUDPQTGG.js";
37
+ import "./chunk-C3HNQQDL.js";
38
+ import "./chunk-YWVJMLFY.js";
39
39
  import {
40
40
  require_lib
41
41
  } from "./chunk-EBRMLGNI.js";
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  formatValidationErrors,
3
3
  logValidationErrors
4
- } from "../chunk-GX2Y7J77.js";
5
- import "../chunk-SVOY3WJA.js";
4
+ } from "../chunk-EUDPQTGG.js";
5
+ import "../chunk-YWVJMLFY.js";
6
6
  import "../chunk-5TQBOAE7.js";
7
7
  import "../chunk-M5OAS5QZ.js";
8
8
  import "../chunk-7GH3YGSC.js";
@@ -3,11 +3,11 @@ import {
3
3
  extractSchemaMetadata,
4
4
  isJsonParseError,
5
5
  validateSchemaStructure
6
- } from "../chunk-SHWFFRUQ.js";
7
- import "../chunk-TQRNHCRL.js";
8
- import "../chunk-GX2Y7J77.js";
9
- import "../chunk-MZOZSRIG.js";
10
- import "../chunk-SVOY3WJA.js";
6
+ } from "../chunk-5YFHCTKF.js";
7
+ import "../chunk-2L2ZCHD7.js";
8
+ import "../chunk-EUDPQTGG.js";
9
+ import "../chunk-C3HNQQDL.js";
10
+ import "../chunk-YWVJMLFY.js";
11
11
  import "../chunk-5TQBOAE7.js";
12
12
  import "../chunk-M5OAS5QZ.js";
13
13
  import "../chunk-7GH3YGSC.js";
@@ -973,5 +973,5 @@
973
973
  "help": "Generate GraphQL queries from your Schema for your SDK."
974
974
  }
975
975
  },
976
- "version": "2025.9.16"
976
+ "version": "2025.9.17"
977
977
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fragment-dev/cli",
3
- "version": "2025.9.16",
3
+ "version": "2025.9.17",
4
4
  "description": "FRAGMENT CLI",
5
5
  "author": "hello@fragment.dev",
6
6
  "bin": {