@cmssy/mcp-server 0.66.0 → 0.67.0
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/__tests__/shared-bucket-round-trip.test.d.ts +2 -0
- package/dist/__tests__/shared-bucket-round-trip.test.d.ts.map +1 -0
- package/dist/__tests__/shared-bucket-round-trip.test.js +65 -0
- package/dist/__tests__/shared-bucket-round-trip.test.js.map +1 -0
- package/dist/queries.d.ts +5 -5
- package/dist/queries.d.ts.map +1 -1
- package/dist/queries.js +8 -3
- package/dist/queries.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shared-bucket-round-trip.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/shared-bucket-round-trip.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { describe, expect, it, vi } from "vitest";
|
|
2
|
+
import { createMcpWorkspaceOps } from "../ai-tools-ops.js";
|
|
3
|
+
import { PAGE_BY_ID_QUERY, DEV_DRAFT_QUERY } from "../queries.js";
|
|
4
|
+
const HEADER = {
|
|
5
|
+
id: "b1",
|
|
6
|
+
type: "header",
|
|
7
|
+
region: "header",
|
|
8
|
+
order: 0,
|
|
9
|
+
isActive: true,
|
|
10
|
+
content: { en: { navigation: [{ label: "Docs" }] } },
|
|
11
|
+
settings: {},
|
|
12
|
+
style: null,
|
|
13
|
+
advanced: null,
|
|
14
|
+
shared: {
|
|
15
|
+
logo: "logo-1",
|
|
16
|
+
navigation: [{ columns: "3", children: [{ url: "/docs", icon: "Code" }] }],
|
|
17
|
+
},
|
|
18
|
+
translations: { en: { status: "completed" } },
|
|
19
|
+
defaultLanguage: "en",
|
|
20
|
+
metadata: null,
|
|
21
|
+
blockVersion: null,
|
|
22
|
+
};
|
|
23
|
+
function pageClient() {
|
|
24
|
+
const sent = [];
|
|
25
|
+
const query = vi.fn(async (document, variables) => {
|
|
26
|
+
sent.push({ document, variables: (variables ?? {}) });
|
|
27
|
+
if (document.includes("updateLayout")) {
|
|
28
|
+
return { page: { updateLayout: { id: "p1", blockWarnings: null } } };
|
|
29
|
+
}
|
|
30
|
+
if (document.includes("resolvedLayouts")) {
|
|
31
|
+
return { page: { resolvedLayouts: [] } };
|
|
32
|
+
}
|
|
33
|
+
return {
|
|
34
|
+
page: {
|
|
35
|
+
get: {
|
|
36
|
+
id: "p1",
|
|
37
|
+
name: "Page",
|
|
38
|
+
slug: "/page",
|
|
39
|
+
version: 3,
|
|
40
|
+
blocks: [],
|
|
41
|
+
layoutBlocks: [HEADER],
|
|
42
|
+
},
|
|
43
|
+
},
|
|
44
|
+
};
|
|
45
|
+
});
|
|
46
|
+
return { client: { query }, sent };
|
|
47
|
+
}
|
|
48
|
+
describe("the shared bucket survives a round trip through MCP (CMS-1792)", () => {
|
|
49
|
+
it("asks for shared on every block selection", () => {
|
|
50
|
+
for (const document of [PAGE_BY_ID_QUERY, DEV_DRAFT_QUERY]) {
|
|
51
|
+
const selections = document.match(/advanced/g) ?? [];
|
|
52
|
+
expect(selections.length).toBeGreaterThan(0);
|
|
53
|
+
expect((document.match(/shared/g) ?? []).length).toBe(selections.length);
|
|
54
|
+
}
|
|
55
|
+
});
|
|
56
|
+
it("writes the stored shared bucket back untouched", async () => {
|
|
57
|
+
const { client, sent } = pageClient();
|
|
58
|
+
const ops = createMcpWorkspaceOps(client);
|
|
59
|
+
await ops.pages.updateBlock("p1", "b1", { en: { navigation: [{ label: "Dokumentacja" }] } }, undefined, "merge", undefined);
|
|
60
|
+
const write = sent.find((s) => s.document.includes("updateLayout"));
|
|
61
|
+
const written = (write?.variables.input).layoutBlocks[0];
|
|
62
|
+
expect(written.shared).toEqual(HEADER.shared);
|
|
63
|
+
});
|
|
64
|
+
});
|
|
65
|
+
//# sourceMappingURL=shared-bucket-round-trip.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shared-bucket-round-trip.test.js","sourceRoot":"","sources":["../../src/__tests__/shared-bucket-round-trip.test.ts"],"names":[],"mappings":"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"}
|
package/dist/queries.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const PAGES_QUERY = "\n query Pages($search: String) {\n page { list(search: $search) {\n id\n name\n slug\n description\n displayName\n published\n publishedAt\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n pageType\n parentId\n customFields { fieldKey value }\n order\n version\n createdAt\n updatedAt\n } }\n }\n";
|
|
2
2
|
export declare const PAGE_VERSION_QUERY = "\n query PageVersion($pageId: ID!) {\n page { get(pageId: $pageId) {\n id\n version\n } }\n }\n";
|
|
3
|
-
export declare const PAGE_BY_ID_QUERY = "\n query PageById($pageId: ID!) {\n page { get(pageId: $pageId) {\n id\n name\n slug\n description\n displayName\n seoTitle\n seoDescription\n seoKeywords\n customFields { fieldKey value }\n published\n publishedAt\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n pageType\n parentId\n order\n version\n blocks {\n id\n type\n content\n settings\n style\n advanced\n translations\n defaultLanguage\n metadata {\n createdAt\n updatedAt\n createdBy\n version\n }\n blockVersion\n }\n publishedBlocks {\n id\n type\n content\n settings\n style\n advanced\n translations\n defaultLanguage\n metadata {\n createdAt\n updatedAt\n createdBy\n version\n }\n blockVersion\n }\n layoutBlocks {\n id type region order isActive\n content settings style advanced\n translations defaultLanguage\n metadata { createdAt updatedAt createdBy version }\n blockVersion\n }\n publishedLayoutBlocks {\n id type region order isActive\n content settings style advanced\n translations defaultLanguage\n metadata { createdAt updatedAt createdBy version }\n blockVersion\n }\n layoutOverrides { region action blockId }\n layoutRegionSettings { region values }\n inheritsLayout\n createdAt\n updatedAt\n } }\n }\n";
|
|
3
|
+
export declare const PAGE_BY_ID_QUERY = "\n query PageById($pageId: ID!) {\n page { get(pageId: $pageId) {\n id\n name\n slug\n description\n displayName\n seoTitle\n seoDescription\n seoKeywords\n customFields { fieldKey value }\n published\n publishedAt\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n pageType\n parentId\n order\n version\n blocks {\n id\n type\n content\n settings\n style\n advanced\n shared\n translations\n defaultLanguage\n metadata {\n createdAt\n updatedAt\n createdBy\n version\n }\n blockVersion\n }\n publishedBlocks {\n id\n type\n content\n settings\n style\n advanced\n shared\n translations\n defaultLanguage\n metadata {\n createdAt\n updatedAt\n createdBy\n version\n }\n blockVersion\n }\n layoutBlocks {\n id type region order isActive\n content settings style advanced shared\n translations defaultLanguage\n metadata { createdAt updatedAt createdBy version }\n blockVersion\n }\n publishedLayoutBlocks {\n id type region order isActive\n content settings style advanced shared\n translations defaultLanguage\n metadata { createdAt updatedAt createdBy version }\n blockVersion\n }\n layoutOverrides { region action blockId }\n layoutRegionSettings { region values }\n inheritsLayout\n createdAt\n updatedAt\n } }\n }\n";
|
|
4
4
|
export declare const PAGE_RESOLVED_LAYOUTS_QUERY = "\n query PageResolvedLayouts($pageId: ID!) {\n page { resolvedLayouts(pageId: $pageId) {\n region\n isInherited\n sourcePageId\n settings\n settingsAreInherited\n settingsSourcePageId\n } }\n }\n";
|
|
5
5
|
export declare const LAYOUT_REGIONS_QUERY = "\n query LayoutRegions {\n blockManifest { get { regions } }\n }\n";
|
|
6
6
|
export declare const PAGE_REGION_SETTINGS_QUERY = "\n query PageRegionSettings($pageId: ID!) {\n page { get(pageId: $pageId) {\n id\n version\n layoutRegionSettings { region values }\n } }\n }\n";
|
|
@@ -18,9 +18,9 @@ export declare const MEDIA_FOLDERS_QUERY = "\n query MediaFolders($parentId: ID
|
|
|
18
18
|
export declare const CREATE_MEDIA_FOLDER_MUTATION = "\n mutation CreateMediaFolder($input: CreateMediaFolderInput!) {\n media {\n createFolder(input: $input) {\n id\n name\n parentId\n }\n }\n }\n";
|
|
19
19
|
export declare const UPDATE_MEDIA_FOLDER_MUTATION = "\n mutation UpdateMediaFolder($id: ID!, $input: UpdateMediaFolderInput!) {\n media {\n updateFolder(id: $id, input: $input) {\n id\n name\n parentId\n }\n }\n }\n";
|
|
20
20
|
export declare const DELETE_MEDIA_FOLDER_MUTATION = "\n mutation DeleteMediaFolder($id: ID!, $deleteContents: Boolean, $force: Boolean) {\n media {\n deleteFolder(id: $id, deleteContents: $deleteContents, force: $force) {\n id\n deleted\n }\n }\n }\n";
|
|
21
|
-
export declare const SAVE_PAGE_MUTATION = "\n mutation SavePage($input: SavePageInput!) {\n page { save(input: $input) {\n id\n blockWarnings\n version\n name\n slug\n description\n displayName\n seoTitle\n seoDescription\n seoKeywords\n customFields { fieldKey value }\n published\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n pageType\n parentId\n blocks {\n id\n type\n content\n settings\n style\n advanced\n translations\n defaultLanguage\n metadata {\n createdAt\n updatedAt\n createdBy\n version\n }\n blockVersion\n }\n createdAt\n updatedAt\n } }\n }\n";
|
|
21
|
+
export declare const SAVE_PAGE_MUTATION = "\n mutation SavePage($input: SavePageInput!) {\n page { save(input: $input) {\n id\n blockWarnings\n version\n name\n slug\n description\n displayName\n seoTitle\n seoDescription\n seoKeywords\n customFields { fieldKey value }\n published\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n pageType\n parentId\n blocks {\n id\n type\n content\n settings\n style\n advanced\n shared\n translations\n defaultLanguage\n metadata {\n createdAt\n updatedAt\n createdBy\n version\n }\n blockVersion\n }\n createdAt\n updatedAt\n } }\n }\n";
|
|
22
22
|
export declare const PATCH_BLOCK_CONTENT_MUTATION = "\n mutation PatchBlockContent($input: PatchBlockContentInput!) {\n page { patchBlockContent(input: $input) {\n id\n blockWarnings\n slug\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n } }\n }\n";
|
|
23
|
-
export declare const DEV_DRAFT_QUERY = "\n query DevDraft($pageId: String!) {\n page { devDraft(pageId: $pageId) {\n pageId\n updatedAt\n blocks {\n id\n type\n content\n settings\n style\n advanced\n translations\n defaultLanguage\n metadata {\n createdAt\n updatedAt\n createdBy\n version\n }\n blockVersion\n }\n } }\n }\n";
|
|
23
|
+
export declare const DEV_DRAFT_QUERY = "\n query DevDraft($pageId: String!) {\n page { devDraft(pageId: $pageId) {\n pageId\n updatedAt\n blocks {\n id\n type\n content\n settings\n style\n advanced\n shared\n translations\n defaultLanguage\n metadata {\n createdAt\n updatedAt\n createdBy\n version\n }\n blockVersion\n }\n } }\n }\n";
|
|
24
24
|
export declare const SAVE_DEV_DRAFT_MUTATION = "\n mutation SaveDevDraft($input: SaveDevDraftInput!) {\n page { saveDevDraft(input: $input) {\n pageId\n updatedAt\n } }\n }\n";
|
|
25
25
|
export declare const PROMOTE_DEV_DRAFT_MUTATION = "\n mutation PromoteDevDraft($input: PromoteDevDraftInput!) {\n page { promoteDevDraft(input: $input) {\n id\n blockWarnings\n updatedAt\n } }\n }\n";
|
|
26
26
|
export declare const UPDATE_PAGE_SETTINGS_MUTATION = "\n mutation UpdatePageSettings($input: UpdatePageSettingsInput!) {\n page { updateSettings(input: $input) {\n id\n name\n slug\n description\n displayName\n seoTitle\n seoDescription\n seoKeywords\n customFields { fieldKey value }\n pageType\n parentId\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n } }\n }\n";
|
|
@@ -31,12 +31,12 @@ export declare const DELETE_PAGE_TYPE_MUTATION = "\n mutation DeletePageType($i
|
|
|
31
31
|
export declare const CREATE_PAGE_TYPE_MUTATION = "\n mutation CreatePageType($input: CreatePageTypeInput!) {\n pageType {\n create(input: $input) {\n id\n name\n slug\n description\n icon\n schemaType\n urlPrefix\n allowChildren\n fields { key label type required description options defaultValue }\n }\n }\n }\n";
|
|
32
32
|
export declare const TAKE_OVER_PAGE_LOCK_MUTATION = "\n mutation TakeOverPageLock($pageId: ID!) {\n page { takeOverLock(pageId: $pageId) {\n lockHolderId\n lockHeldByMe\n } }\n }\n";
|
|
33
33
|
export declare const TOGGLE_PUBLISH_MUTATION = "\n mutation TogglePublish($id: ID!) {\n page { togglePublish(id: $id) {\n id\n slug\n published\n publishedAt\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n } }\n }\n";
|
|
34
|
-
export declare const PUBLISH_PAGE_CONTENT_MUTATION = "\n mutation PublishPageContent($id: ID!) {\n page { publishContent(id: $id) {\n id\n slug\n published\n publishedAt\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n blocks {\n id\n type\n content\n settings\n style\n advanced\n translations\n defaultLanguage\n metadata {\n createdAt\n updatedAt\n createdBy\n version\n }\n blockVersion\n }\n } }\n }\n";
|
|
34
|
+
export declare const PUBLISH_PAGE_CONTENT_MUTATION = "\n mutation PublishPageContent($id: ID!) {\n page { publishContent(id: $id) {\n id\n slug\n published\n publishedAt\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n blocks {\n id\n type\n content\n settings\n style\n advanced\n shared\n translations\n defaultLanguage\n metadata {\n createdAt\n updatedAt\n createdBy\n version\n }\n blockVersion\n }\n } }\n }\n";
|
|
35
35
|
export declare const PUBLISH_PAGE_LAYOUT_MUTATION = "\n mutation PublishPageLayout($id: ID!) {\n page { publishLayout(id: $id) {\n id\n slug\n published\n publishedAt\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n } }\n }\n";
|
|
36
36
|
export declare const REVERT_CONTENT_TO_PUBLISHED_MUTATION = "\n mutation RevertContentToPublished($id: ID!) {\n page { revertContentToPublished(id: $id) {\n id\n name\n slug\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n blocks {\n id type content settings style advanced\n translations defaultLanguage blockVersion\n }\n } }\n }\n";
|
|
37
37
|
export declare const REVERT_LAYOUT_TO_PUBLISHED_MUTATION = "\n mutation RevertLayoutToPublished($id: ID!) {\n page { revertLayoutToPublished(id: $id) {\n id\n name\n slug\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n } }\n }\n";
|
|
38
38
|
export declare const REMOVE_PAGE_MUTATION = "\n mutation RemovePage($id: ID!) {\n page { delete(id: $id) { deleted } }\n }\n";
|
|
39
|
-
export declare const UPDATE_PAGE_LAYOUT_MUTATION = "\n mutation UpdatePageLayout($input: UpdatePageLayoutInput!) {\n page { updateLayout(input: $input) {\n id\n blockWarnings\n slug\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n layoutBlocks {\n id type region order isActive\n content settings style advanced\n translations defaultLanguage\n metadata { createdAt updatedAt createdBy version }\n blockVersion\n }\n layoutOverrides { region action blockId }\n inheritsLayout\n } }\n }\n";
|
|
39
|
+
export declare const UPDATE_PAGE_LAYOUT_MUTATION = "\n mutation UpdatePageLayout($input: UpdatePageLayoutInput!) {\n page { updateLayout(input: $input) {\n id\n blockWarnings\n slug\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n layoutBlocks {\n id type region order isActive\n content settings style advanced shared\n translations defaultLanguage\n metadata { createdAt updatedAt createdBy version }\n blockVersion\n }\n layoutOverrides { region action blockId }\n inheritsLayout\n } }\n }\n";
|
|
40
40
|
export declare const UPDATE_LAYOUT_REGION_SETTINGS_MUTATION = "\n mutation UpdateLayoutRegionSettings($input: UpdatePageLayoutInput!) {\n page { updateLayout(input: $input) {\n id\n version\n blockWarnings\n hasUnpublishedLayoutChanges\n updatedAt\n layoutRegionSettings { region values }\n } }\n }\n";
|
|
41
41
|
export declare const FORMS_QUERY = "\n query Forms($status: String, $skip: Int, $limit: Int) {\n form {\n list(status: $status, skip: $skip, limit: $limit) {\n forms { \n id\n name\n slug\n description\n status\n fields {\n id name fieldType\n label placeholder helpText\n defaultValue\n validation { required minLength maxLength minValue maxValue pattern customMessage }\n options { value label disabled }\n width order showWhen\n }\n settings {\n actionType webhookUrl emailRecipients\n submitButtonLabel successMessage errorMessage\n redirectUrl requireLogin\n saveSubmissions sendEmailNotification emailConfigurationId\n }\n submissionCount\n createdAt updatedAt createdBy updatedBy\n }\n total\n hasMore\n }\n }\n }\n";
|
|
42
42
|
export declare const FORM_BY_ID_QUERY = "\n query Form($formId: ID!) {\n form {\n get(formId: $formId) {\n \n id\n name\n slug\n description\n status\n fields {\n id name fieldType\n label placeholder helpText\n defaultValue\n validation { required minLength maxLength minValue maxValue pattern customMessage }\n options { value label disabled }\n width order showWhen\n }\n settings {\n actionType webhookUrl emailRecipients\n submitButtonLabel successMessage errorMessage\n redirectUrl requireLogin\n saveSubmissions sendEmailNotification emailConfigurationId\n }\n submissionCount\n createdAt updatedAt createdBy updatedBy\n\n }\n }\n }\n";
|
package/dist/queries.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"queries.d.ts","sourceRoot":"","sources":["../src/queries.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW,mZAqBvB,CAAC;AAIF,eAAO,MAAM,kBAAkB,sHAO9B,CAAC;AAEF,eAAO,MAAM,gBAAgB,
|
|
1
|
+
{"version":3,"file":"queries.d.ts","sourceRoot":"","sources":["../src/queries.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW,mZAqBvB,CAAC;AAIF,eAAO,MAAM,kBAAkB,sHAO9B,CAAC;AAEF,eAAO,MAAM,gBAAgB,wqDA6E5B,CAAC;AAEF,eAAO,MAAM,2BAA2B,8OAWvC,CAAC;AAEF,eAAO,MAAM,oBAAoB,4EAIhC,CAAC;AAEF,eAAO,MAAM,0BAA0B,2KAQtC,CAAC;AAmBF,eAAO,MAAM,iBAAiB,qkBAa7B,CAAC;AAEF,eAAO,MAAM,2BAA2B,mHAQvC,CAAC;AAEF,eAAO,MAAM,2BAA2B,giBASvC,CAAC;AAEF,eAAO,MAAM,0BAA0B,qhBAStC,CAAC;AAEF,eAAO,MAAM,oBAAoB,wIAUhC,CAAC;AAIF,eAAO,MAAM,uBAAuB,geA0BnC,CAAC;AAIF,eAAO,MAAM,kBAAkB,4WAqB9B,CAAC;AAEF,eAAO,MAAM,+BAA+B,sSAW3C,CAAC;AAEF,eAAO,MAAM,8BAA8B,8NAa1C,CAAC;AAEF,eAAO,MAAM,qBAAqB,4JAQjC,CAAC;AAIF,eAAO,MAAM,mBAAmB,mNAa/B,CAAC;AAEF,eAAO,MAAM,4BAA4B,2LAUxC,CAAC;AAEF,eAAO,MAAM,4BAA4B,8MAUxC,CAAC;AAEF,eAAO,MAAM,4BAA4B,0OASxC,CAAC;AAIF,eAAO,MAAM,kBAAkB,ywBAyC9B,CAAC;AAOF,eAAO,MAAM,4BAA4B,wQAWxC,CAAC;AAEF,eAAO,MAAM,eAAe,+bAyB3B,CAAC;AAEF,eAAO,MAAM,uBAAuB,qJAOnC,CAAC;AAEF,eAAO,MAAM,0BAA0B,+KAQtC,CAAC;AAEF,eAAO,MAAM,6BAA6B,oaAmBzC,CAAC;AAIF,eAAO,MAAM,gBAAgB,2XAwB5B,CAAC;AA8BF,eAAO,MAAM,eAAe,knBAmB3B,CAAC;AAEF,eAAO,MAAM,yBAAyB,8KAUrC,CAAC;AAEF,eAAO,MAAM,yBAAyB,yIASrC,CAAC;AAEF,eAAO,MAAM,yBAAyB,4VAgBrC,CAAC;AAEF,eAAO,MAAM,4BAA4B,sJAOxC,CAAC;AAEF,eAAO,MAAM,uBAAuB,kPAYnC,CAAC;AAEF,eAAO,MAAM,6BAA6B,qjBA8BzC,CAAC;AAEF,eAAO,MAAM,4BAA4B,sPAYxC,CAAC;AAEF,eAAO,MAAM,oCAAoC,6WAehD,CAAC;AAEF,eAAO,MAAM,mCAAmC,8OAW/C,CAAC;AAEF,eAAO,MAAM,oBAAoB,yFAIhC,CAAC;AAEF,eAAO,MAAM,2BAA2B,sjBAoBvC,CAAC;AAEF,eAAO,MAAM,sCAAsC,wRAWlD,CAAC;AA4BF,eAAO,MAAM,WAAW,mwBAUvB,CAAC;AAEF,eAAO,MAAM,gBAAgB,+pBAQ5B,CAAC;AAEF,eAAO,MAAM,sBAAsB,maAclC,CAAC;AAEF,eAAO,MAAM,2BAA2B,qRAUvC,CAAC;AAIF,eAAO,MAAM,oBAAoB,qrBAQhC,CAAC;AAEF,eAAO,MAAM,oBAAoB,otBAQhC,CAAC;AAEF,eAAO,MAAM,oBAAoB,6IAShC,CAAC;AAEF,eAAO,MAAM,sCAAsC,uLAMlD,CAAC;AAEF,eAAO,MAAM,+BAA+B,mLAS3C,CAAC;AA8CF,eAAO,MAAM,uBAAuB,ivBAQnC,CAAC;AAKF,eAAO,MAAM,qCAAqC,sHASjD,CAAC;AAEF,eAAO,MAAM,4BAA4B,kwBAQxC,CAAC;AAEF,eAAO,MAAM,mBAAmB,wgBAwB/B,CAAC;AAEF,eAAO,MAAM,wBAAwB,mNAQpC,CAAC;AAIF,eAAO,MAAM,gCAAgC,+yBAQ5C,CAAC;AAEF,eAAO,MAAM,gCAAgC,+yBAQ5C,CAAC;AAEF,eAAO,MAAM,gCAAgC,6IAS5C,CAAC;AAEF,eAAO,MAAM,4BAA4B,4PAQxC,CAAC;AAEF,eAAO,MAAM,4BAA4B,4PAQxC,CAAC;AAEF,eAAO,MAAM,mCAAmC,2QAQ/C,CAAC;AAEF,eAAO,MAAM,4BAA4B,0KASxC,CAAC;AAEF,eAAO,MAAM,6BAA6B,mMASzC,CAAC;AAmGF,eAAO,MAAM,YAAY,q4BA8BxB,CAAC;AAEF,eAAO,MAAM,iBAAiB,glCAI7B,CAAC;AAEF,eAAO,MAAM,oBAAoB,qJAQhC,CAAC;AAEF,eAAO,MAAM,4BAA4B,+nCAIxC,CAAC;AAEF,eAAO,MAAM,mBAAmB,onCAI/B,CAAC;AAEF,eAAO,MAAM,6BAA6B,woCAIzC,CAAC;AAEF,eAAO,MAAM,wBAAwB,ynCAIpC,CAAC;AAEF,eAAO,MAAM,6BAA6B,woCAIzC,CAAC;AAEF,eAAO,MAAM,qBAAqB,mnCAIjC,CAAC;AAEF,eAAO,MAAM,qBAAqB,mnCAIjC,CAAC;AAEF,eAAO,MAAM,qCAAqC,kpCAIjD,CAAC;AAEF,eAAO,MAAM,iCAAiC,ipCAI7C,CAAC;AAEF,eAAO,MAAM,6BAA6B,woCAIzC,CAAC;AAIF,eAAO,MAAM,iBAAiB,mYAmB7B,CAAC;AAoBF,eAAO,MAAM,eAAe,+fAsB3B,CAAC;AAEF,eAAO,MAAM,oBAAoB,+NAIhC,CAAC;AAEF,eAAO,MAAM,wBAAwB,qQAIpC,CAAC;AAEF,eAAO,MAAM,wBAAwB,wRAIpC,CAAC;AAEF,eAAO,MAAM,6BAA6B,0RAIzC,CAAC;AAcF,eAAO,MAAM,uBAAuB,gJAInC,CAAC;AAEF,eAAO,MAAM,wBAAwB,6UAmBpC,CAAC;AAEF,eAAO,MAAM,yBAAyB,qEAIrC,CAAC;AAEF,eAAO,MAAM,gCAAgC,uQAS5C,CAAC;AAEF,eAAO,MAAM,gCAAgC,8MAI5C,CAAC;AAEF,eAAO,MAAM,8BAA8B,0OAS1C,CAAC;AAEF,eAAO,MAAM,gCAAgC,0GAI5C,CAAC;AAIF,eAAO,MAAM,qBAAqB,21BA4CjC,CAAC;AAEF,eAAO,MAAM,0BAA0B,oPAUtC,CAAC;AAEF,eAAO,MAAM,oCAAoC,6PAUhD,CAAC;AAEF,eAAO,MAAM,oCAAoC,0MAShD,CAAC;AAEF,eAAO,MAAM,aAAa,sTAoBzB,CAAC;AAEF,eAAO,MAAM,WAAW,kLAavB,CAAC"}
|
package/dist/queries.js
CHANGED
|
@@ -58,6 +58,7 @@ export const PAGE_BY_ID_QUERY = `
|
|
|
58
58
|
settings
|
|
59
59
|
style
|
|
60
60
|
advanced
|
|
61
|
+
shared
|
|
61
62
|
translations
|
|
62
63
|
defaultLanguage
|
|
63
64
|
metadata {
|
|
@@ -75,6 +76,7 @@ export const PAGE_BY_ID_QUERY = `
|
|
|
75
76
|
settings
|
|
76
77
|
style
|
|
77
78
|
advanced
|
|
79
|
+
shared
|
|
78
80
|
translations
|
|
79
81
|
defaultLanguage
|
|
80
82
|
metadata {
|
|
@@ -87,14 +89,14 @@ export const PAGE_BY_ID_QUERY = `
|
|
|
87
89
|
}
|
|
88
90
|
layoutBlocks {
|
|
89
91
|
id type region order isActive
|
|
90
|
-
content settings style advanced
|
|
92
|
+
content settings style advanced shared
|
|
91
93
|
translations defaultLanguage
|
|
92
94
|
metadata { createdAt updatedAt createdBy version }
|
|
93
95
|
blockVersion
|
|
94
96
|
}
|
|
95
97
|
publishedLayoutBlocks {
|
|
96
98
|
id type region order isActive
|
|
97
|
-
content settings style advanced
|
|
99
|
+
content settings style advanced shared
|
|
98
100
|
translations defaultLanguage
|
|
99
101
|
metadata { createdAt updatedAt createdBy version }
|
|
100
102
|
blockVersion
|
|
@@ -362,6 +364,7 @@ export const SAVE_PAGE_MUTATION = `
|
|
|
362
364
|
settings
|
|
363
365
|
style
|
|
364
366
|
advanced
|
|
367
|
+
shared
|
|
365
368
|
translations
|
|
366
369
|
defaultLanguage
|
|
367
370
|
metadata {
|
|
@@ -406,6 +409,7 @@ export const DEV_DRAFT_QUERY = `
|
|
|
406
409
|
settings
|
|
407
410
|
style
|
|
408
411
|
advanced
|
|
412
|
+
shared
|
|
409
413
|
translations
|
|
410
414
|
defaultLanguage
|
|
411
415
|
metadata {
|
|
@@ -605,6 +609,7 @@ export const PUBLISH_PAGE_CONTENT_MUTATION = `
|
|
|
605
609
|
settings
|
|
606
610
|
style
|
|
607
611
|
advanced
|
|
612
|
+
shared
|
|
608
613
|
translations
|
|
609
614
|
defaultLanguage
|
|
610
615
|
metadata {
|
|
@@ -675,7 +680,7 @@ export const UPDATE_PAGE_LAYOUT_MUTATION = `
|
|
|
675
680
|
updatedAt
|
|
676
681
|
layoutBlocks {
|
|
677
682
|
id type region order isActive
|
|
678
|
-
content settings style advanced
|
|
683
|
+
content settings style advanced shared
|
|
679
684
|
translations defaultLanguage
|
|
680
685
|
metadata { createdAt updatedAt createdBy version }
|
|
681
686
|
blockVersion
|
package/dist/queries.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"queries.js","sourceRoot":"","sources":["../src/queries.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAEhE,MAAM,CAAC,MAAM,WAAW,GAAG;;;;;;;;;;;;;;;;;;;;;CAqB1B,CAAC;AAEF,8EAA8E;AAC9E,2EAA2E;AAC3E,MAAM,CAAC,MAAM,kBAAkB,GAAG;;;;;;;CAOjC,CAAC;AAEF,MAAM,CAAC,MAAM,gBAAgB,GAAG
|
|
1
|
+
{"version":3,"file":"queries.js","sourceRoot":"","sources":["../src/queries.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cmssy/mcp-server",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "MCP server for Cmssy CMS
|
|
3
|
+
"version": "0.67.0",
|
|
4
|
+
"description": "MCP server for Cmssy CMS \u2014 enables AI-driven page creation and management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"cmssy-mcp": "./dist/index.js"
|