@cmssy/mcp-server 0.21.0 → 0.21.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/queries.d.ts +4 -4
- package/dist/queries.d.ts.map +1 -1
- package/dist/queries.js +1 -1
- package/package.json +1 -1
package/dist/queries.d.ts
CHANGED
|
@@ -16,12 +16,12 @@ export declare const REVERT_CONTENT_TO_PUBLISHED_MUTATION = "\n mutation Revert
|
|
|
16
16
|
export declare const REVERT_LAYOUT_TO_PUBLISHED_MUTATION = "\n mutation RevertLayoutToPublished($id: ID!) {\n revertLayoutToPublished(id: $id) {\n id\n name\n slug\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n }\n }\n";
|
|
17
17
|
export declare const REMOVE_PAGE_MUTATION = "\n mutation RemovePage($id: ID!) {\n removePage(id: $id)\n }\n";
|
|
18
18
|
export declare const UPDATE_PAGE_LAYOUT_MUTATION = "\n mutation UpdatePageLayout($input: UpdatePageLayoutInput!) {\n updatePageLayout(input: $input) {\n id\n slug\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n layoutBlocks {\n id type position order isActive\n content settings style advanced\n translations defaultLanguage\n metadata { createdAt updatedAt createdBy version }\n blockVersion\n }\n layoutOverrides { position action blockId }\n inheritsLayout\n }\n }\n";
|
|
19
|
-
export declare const FORMS_QUERY = "\n query Forms($status: String, $skip: Int, $limit: Int) {\n forms(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
|
|
20
|
-
export declare const FORM_BY_ID_QUERY = "\n query Form($formId: ID!) {\n form(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
|
|
19
|
+
export declare const FORMS_QUERY = "\n query Forms($status: String, $skip: Int, $limit: Int) {\n forms(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 newsletterListId\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";
|
|
20
|
+
export declare const FORM_BY_ID_QUERY = "\n query Form($formId: ID!) {\n form(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 newsletterListId\n submitButtonLabel successMessage errorMessage\n redirectUrl enableCaptcha requireLogin\n saveSubmissions sendEmailNotification emailConfigurationId\n }\n submissionCount\n createdAt updatedAt createdBy updatedBy\n\n }\n }\n";
|
|
21
21
|
export declare const FORM_SUBMISSIONS_QUERY = "\n query FormSubmissions($formId: ID, $status: String, $skip: Int, $limit: Int) {\n formSubmissions(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";
|
|
22
22
|
export declare const FORM_SUBMISSION_BY_ID_QUERY = "\n query FormSubmission($submissionId: ID!) {\n formSubmission(submissionId: $submissionId) {\n id formId formSlug data status\n ipAddress userAgent referrer customerId\n processedAt emailSent webhookSent createdAt\n }\n }\n";
|
|
23
|
-
export declare const CREATE_FORM_MUTATION = "\n mutation CreateForm($input: CreateFormInput!) {\n createForm(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
|
|
24
|
-
export declare const UPDATE_FORM_MUTATION = "\n mutation UpdateForm($formId: ID!, $input: UpdateFormInput!) {\n updateForm(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
|
|
23
|
+
export declare const CREATE_FORM_MUTATION = "\n mutation CreateForm($input: CreateFormInput!) {\n createForm(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 newsletterListId\n submitButtonLabel successMessage errorMessage\n redirectUrl enableCaptcha requireLogin\n saveSubmissions sendEmailNotification emailConfigurationId\n }\n submissionCount\n createdAt updatedAt createdBy updatedBy\n\n }\n }\n";
|
|
24
|
+
export declare const UPDATE_FORM_MUTATION = "\n mutation UpdateForm($formId: ID!, $input: UpdateFormInput!) {\n updateForm(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 newsletterListId\n submitButtonLabel successMessage errorMessage\n redirectUrl enableCaptcha requireLogin\n saveSubmissions sendEmailNotification emailConfigurationId\n }\n submissionCount\n createdAt updatedAt createdBy updatedBy\n\n }\n }\n";
|
|
25
25
|
export declare const DELETE_FORM_MUTATION = "\n mutation DeleteForm($formId: ID!) {\n deleteForm(formId: $formId)\n }\n";
|
|
26
26
|
export declare const UPDATE_FORM_SUBMISSION_STATUS_MUTATION = "\n mutation UpdateFormSubmissionStatus($submissionId: ID!, $status: String!) {\n updateFormSubmissionStatus(submissionId: $submissionId, status: $status)\n }\n";
|
|
27
27
|
export declare const DELETE_FORM_SUBMISSION_MUTATION = "\n mutation DeleteFormSubmission($submissionId: ID!) {\n deleteFormSubmission(submissionId: $submissionId)\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,2YAqBvB,CAAC;AAIF,eAAO,MAAM,kBAAkB,8GAO9B,CAAC;AAEF,eAAO,MAAM,gBAAgB,0kDA0E5B,CAAC;AAIF,eAAO,MAAM,iBAAiB,2JAU7B,CAAC;AAIF,eAAO,MAAM,uBAAuB,yRAiBnC,CAAC;AAIF,eAAO,MAAM,kBAAkB,+TAmB9B,CAAC;AAIF,eAAO,MAAM,kBAAkB,+tBAuC9B,CAAC;AAOF,eAAO,MAAM,4BAA4B,0OAUxC,CAAC;AAEF,eAAO,MAAM,6BAA6B,+ZAmBzC,CAAC;AAIF,eAAO,MAAM,gBAAgB,mUAsB5B,CAAC;AAEF,eAAO,MAAM,yBAAyB,uTAcrC,CAAC;AAEF,eAAO,MAAM,uBAAuB,yOAYnC,CAAC;AAEF,eAAO,MAAM,6BAA6B,giBA6BzC,CAAC;AAEF,eAAO,MAAM,4BAA4B,iPAYxC,CAAC;AAEF,eAAO,MAAM,oCAAoC,oWAehD,CAAC;AAEF,eAAO,MAAM,mCAAmC,qOAW/C,CAAC;AAEF,eAAO,MAAM,oBAAoB,wEAIhC,CAAC;AAEF,eAAO,MAAM,2BAA2B,yhBAmBvC,CAAC;AA4BF,eAAO,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"queries.d.ts","sourceRoot":"","sources":["../src/queries.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW,2YAqBvB,CAAC;AAIF,eAAO,MAAM,kBAAkB,8GAO9B,CAAC;AAEF,eAAO,MAAM,gBAAgB,0kDA0E5B,CAAC;AAIF,eAAO,MAAM,iBAAiB,2JAU7B,CAAC;AAIF,eAAO,MAAM,uBAAuB,yRAiBnC,CAAC;AAIF,eAAO,MAAM,kBAAkB,+TAmB9B,CAAC;AAIF,eAAO,MAAM,kBAAkB,+tBAuC9B,CAAC;AAOF,eAAO,MAAM,4BAA4B,0OAUxC,CAAC;AAEF,eAAO,MAAM,6BAA6B,+ZAmBzC,CAAC;AAIF,eAAO,MAAM,gBAAgB,mUAsB5B,CAAC;AAEF,eAAO,MAAM,yBAAyB,uTAcrC,CAAC;AAEF,eAAO,MAAM,uBAAuB,yOAYnC,CAAC;AAEF,eAAO,MAAM,6BAA6B,giBA6BzC,CAAC;AAEF,eAAO,MAAM,4BAA4B,iPAYxC,CAAC;AAEF,eAAO,MAAM,oCAAoC,oWAehD,CAAC;AAEF,eAAO,MAAM,mCAAmC,qOAW/C,CAAC;AAEF,eAAO,MAAM,oBAAoB,wEAIhC,CAAC;AAEF,eAAO,MAAM,2BAA2B,yhBAmBvC,CAAC;AA4BF,eAAO,MAAM,WAAW,swBAQvB,CAAC;AAEF,eAAO,MAAM,gBAAgB,sqBAM5B,CAAC;AAEF,eAAO,MAAM,sBAAsB,kYAYlC,CAAC;AAEF,eAAO,MAAM,2BAA2B,4PAQvC,CAAC;AAIF,eAAO,MAAM,oBAAoB,+rBAMhC,CAAC;AAEF,eAAO,MAAM,oBAAoB,8tBAMhC,CAAC;AAEF,eAAO,MAAM,oBAAoB,oFAIhC,CAAC;AAEF,eAAO,MAAM,sCAAsC,yKAIlD,CAAC;AAEF,eAAO,MAAM,+BAA+B,0HAI3C,CAAC;AAiEF,eAAO,MAAM,uBAAuB,0mBAMnC,CAAC;AAKF,eAAO,MAAM,qCAAqC,sGAOjD,CAAC;AAEF,eAAO,MAAM,4BAA4B,2nBAMxC,CAAC;AAEF,eAAO,MAAM,mBAAmB,meAsB/B,CAAC;AAEF,eAAO,MAAM,wBAAwB,gMAMpC,CAAC;AAIF,eAAO,MAAM,gCAAgC,2qBAM5C,CAAC;AAEF,eAAO,MAAM,gCAAgC,2qBAM5C,CAAC;AAEF,eAAO,MAAM,gCAAgC,8FAI5C,CAAC;AAEF,eAAO,MAAM,4BAA4B,4OAMxC,CAAC;AAEF,eAAO,MAAM,4BAA4B,4OAMxC,CAAC;AAEF,eAAO,MAAM,mCAAmC,8PAM/C,CAAC;AAEF,eAAO,MAAM,4BAA4B,sFAIxC,CAAC;AAEF,eAAO,MAAM,6BAA6B,kLAOzC,CAAC;AA6EF,eAAO,MAAM,YAAY,g3BA8BxB,CAAC;AAEF,eAAO,MAAM,iBAAiB,izBAI7B,CAAC;AAEF,eAAO,MAAM,oBAAoB,8KAMhC,CAAC;AAEF,eAAO,MAAM,4BAA4B,2zBAIxC,CAAC;AAEF,eAAO,MAAM,mBAAmB,myBAI/B,CAAC;AAEF,eAAO,MAAM,6BAA6B,8zBAIzC,CAAC;AAEF,eAAO,MAAM,wBAAwB,+yBAIpC,CAAC;AAEF,eAAO,MAAM,6BAA6B,8zBAIzC,CAAC;AAEF,eAAO,MAAM,qBAAqB,yyBAIjC,CAAC;AAEF,eAAO,MAAM,qBAAqB,yyBAIjC,CAAC;AAEF,eAAO,MAAM,qCAAqC,w0BAIjD,CAAC;AAEF,eAAO,MAAM,iCAAiC,u0BAI7C,CAAC;AAEF,eAAO,MAAM,6BAA6B,8zBAIzC,CAAC;AAIF,eAAO,MAAM,iBAAiB,mYAiB7B,CAAC;AAoBF,eAAO,MAAM,eAAe,+gBAsB3B,CAAC;AAEF,eAAO,MAAM,oBAAoB,qQAIhC,CAAC;AAEF,eAAO,MAAM,wBAAwB,8SAIpC,CAAC;AAEF,eAAO,MAAM,wBAAwB,iUAIpC,CAAC;AAEF,eAAO,MAAM,6BAA6B,mUAIzC,CAAC;AAcF,eAAO,MAAM,uBAAuB,8LAInC,CAAC;AAEF,eAAO,MAAM,wBAAwB,gVAiBpC,CAAC;AAEF,eAAO,MAAM,yBAAyB,8GAIrC,CAAC;AAEF,eAAO,MAAM,gCAAgC,wPAO5C,CAAC;AAEF,eAAO,MAAM,gCAAgC,iNAI5C,CAAC;AAEF,eAAO,MAAM,8BAA8B,iQAO1C,CAAC;AAEF,eAAO,MAAM,gCAAgC,4IAI5C,CAAC;AAIF,eAAO,MAAM,qBAAqB,2sBAwCjC,CAAC;AAEF,eAAO,MAAM,oCAAoC,6QAYhD,CAAC;AAEF,eAAO,MAAM,oCAAoC,gMAOhD,CAAC;AAEF,eAAO,MAAM,aAAa,oRAmBzB,CAAC;AAEF,eAAO,MAAM,WAAW,yJAWvB,CAAC"}
|
package/dist/queries.js
CHANGED
|
@@ -396,7 +396,7 @@ const FORM_FIELDS_FRAGMENT = `
|
|
|
396
396
|
defaultValue
|
|
397
397
|
validation { required minLength maxLength minValue maxValue pattern customMessage }
|
|
398
398
|
options { value label disabled }
|
|
399
|
-
width order
|
|
399
|
+
width order showWhen
|
|
400
400
|
}
|
|
401
401
|
settings {
|
|
402
402
|
actionType webhookUrl emailRecipients newsletterListId
|