@cmssy/mcp-server 0.57.0 → 0.58.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/queries.d.ts CHANGED
@@ -37,12 +37,12 @@ export declare const REVERT_LAYOUT_TO_PUBLISHED_MUTATION = "\n mutation RevertL
37
37
  export declare const REMOVE_PAGE_MUTATION = "\n mutation RemovePage($id: ID!) {\n page { delete(id: $id) { deleted } }\n }\n";
38
38
  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
39
  export declare const UPDATE_LAYOUT_REGION_SETTINGS_MUTATION = "\n mutation UpdateLayoutRegionSettings($input: UpdateLayoutRegionSettingsInput!) {\n page { updateLayoutRegionSettings(input: $input) {\n id\n version\n blockWarnings\n hasUnpublishedLayoutChanges\n updatedAt\n layoutRegionSettings { region values }\n } }\n }\n";
40
- 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 enableCaptcha requireLogin\n saveSubmissions sendEmailNotification emailConfigurationId\n }\n submissionCount\n createdAt updatedAt createdBy updatedBy\n }\n total\n hasMore\n }\n }\n }\n";
41
- 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 enableCaptcha requireLogin\n saveSubmissions sendEmailNotification emailConfigurationId\n }\n submissionCount\n createdAt updatedAt createdBy updatedBy\n\n }\n }\n }\n";
40
+ 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";
41
+ 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";
42
42
  export declare const FORM_SUBMISSIONS_QUERY = "\n query FormSubmissions($formId: ID, $status: String, $skip: Int, $limit: Int) {\n form {\n submissions(formId: $formId, status: $status, skip: $skip, limit: $limit) {\n submissions {\n id formId formSlug data status\n ipAddress userAgent referrer customerId\n processedAt emailSent webhookSent createdAt\n }\n total\n hasMore\n }\n }\n }\n";
43
43
  export declare const FORM_SUBMISSION_BY_ID_QUERY = "\n query FormSubmission($submissionId: ID!) {\n form {\n submission(submissionId: $submissionId) {\n id formId formSlug data status\n ipAddress userAgent referrer customerId\n processedAt emailSent webhookSent createdAt\n }\n }\n }\n";
44
- export declare const CREATE_FORM_MUTATION = "\n mutation CreateForm($input: CreateFormInput!) {\n form {\n create(input: $input) {\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 enableCaptcha requireLogin\n saveSubmissions sendEmailNotification emailConfigurationId\n }\n submissionCount\n createdAt updatedAt createdBy updatedBy\n\n }\n }\n }\n";
45
- export declare const UPDATE_FORM_MUTATION = "\n mutation UpdateForm($formId: ID!, $input: UpdateFormInput!) {\n form {\n update(formId: $formId, input: $input) {\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 enableCaptcha requireLogin\n saveSubmissions sendEmailNotification emailConfigurationId\n }\n submissionCount\n createdAt updatedAt createdBy updatedBy\n\n }\n }\n }\n";
44
+ export declare const CREATE_FORM_MUTATION = "\n mutation CreateForm($input: CreateFormInput!) {\n form {\n create(input: $input) {\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";
45
+ export declare const UPDATE_FORM_MUTATION = "\n mutation UpdateForm($formId: ID!, $input: UpdateFormInput!) {\n form {\n update(formId: $formId, input: $input) {\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";
46
46
  export declare const DELETE_FORM_MUTATION = "\n mutation DeleteForm($formId: ID!) {\n form {\n delete(formId: $formId) {\n id\n deleted\n }\n }\n }\n";
47
47
  export declare const UPDATE_FORM_SUBMISSION_STATUS_MUTATION = "\n mutation UpdateFormSubmissionStatus($submissionId: ID!, $status: String!) {\n form {\n setSubmissionStatus(submissionId: $submissionId, status: $status)\n }\n }\n";
48
48
  export declare const DELETE_FORM_SUBMISSION_MUTATION = "\n mutation DeleteFormSubmission($submissionId: ID!) {\n form {\n deleteSubmission(submissionId: $submissionId) {\n id\n deleted\n }\n }\n }\n";
@@ -1 +1 @@
1
- {"version":3,"file":"queries.d.ts","sourceRoot":"","sources":["../src/queries.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"queries.d.ts","sourceRoot":"","sources":["../src/queries.ts"],"names":[],"mappings":"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"}
package/dist/queries.js CHANGED
@@ -691,7 +691,7 @@ const FORM_FIELDS_FRAGMENT = `
691
691
  settings {
692
692
  actionType webhookUrl emailRecipients
693
693
  submitButtonLabel successMessage errorMessage
694
- redirectUrl enableCaptcha requireLogin
694
+ redirectUrl requireLogin
695
695
  saveSubmissions sendEmailNotification emailConfigurationId
696
696
  }
697
697
  submissionCount
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cmssy/mcp-server",
3
- "version": "0.57.0",
3
+ "version": "0.58.0",
4
4
  "description": "MCP server for Cmssy CMS \u2014 enables AI-driven page creation and management",
5
5
  "type": "module",
6
6
  "bin": {