@caido/sdk-frontend 0.50.3-beta.3 → 0.50.3-beta.4
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/package.json
CHANGED
|
@@ -15140,6 +15140,7 @@ export type StorePluginPackageFullFragment = {
|
|
|
15140
15140
|
name?: string | undefined | null;
|
|
15141
15141
|
repository: string;
|
|
15142
15142
|
version: string;
|
|
15143
|
+
official: boolean;
|
|
15143
15144
|
author?: {
|
|
15144
15145
|
email?: string | undefined | null;
|
|
15145
15146
|
name?: string | undefined | null;
|
|
@@ -15229,6 +15230,7 @@ export type StorePluginPackagesQuery = {
|
|
|
15229
15230
|
name?: string | undefined | null;
|
|
15230
15231
|
repository: string;
|
|
15231
15232
|
version: string;
|
|
15233
|
+
official: boolean;
|
|
15232
15234
|
author?: {
|
|
15233
15235
|
email?: string | undefined | null;
|
|
15234
15236
|
name?: string | undefined | null;
|
|
@@ -22125,7 +22127,7 @@ export declare const PluginBackendFullFragmentDoc = "\n fragment pluginBacken
|
|
|
22125
22127
|
export declare const WorkflowMetaFragmentDoc = "\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
22126
22128
|
export declare const PluginWorkflowFullFragmentDoc = "\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n ";
|
|
22127
22129
|
export declare const PluginPackageFullFragmentDoc = "\n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n ";
|
|
22128
|
-
export declare const StorePluginPackageFullFragmentDoc = "\n fragment storePluginPackageFull on StorePluginPackage {\n author {\n email\n name\n url\n }\n description\n downloads\n license\n manifestId\n name\n repository\n version\n}\n ";
|
|
22130
|
+
export declare const StorePluginPackageFullFragmentDoc = "\n fragment storePluginPackageFull on StorePluginPackage {\n author {\n email\n name\n url\n }\n description\n downloads\n license\n manifestId\n name\n repository\n version\n official\n}\n ";
|
|
22129
22131
|
export declare const ProjectConfigStreamFullFragmentDoc = "\n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n ";
|
|
22130
22132
|
export declare const ProjectConfigFullFragmentDoc = "\n fragment projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n ";
|
|
22131
22133
|
export declare const CurrentProjectFullFragmentDoc = "\n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\n }\n}\n ";
|
|
@@ -22334,7 +22336,7 @@ export declare const ToggleTamperRuleDocument = "\n mutation toggleTamperRule
|
|
|
22334
22336
|
export declare const RankTamperRuleDocument = "\n mutation rankTamperRule($id: ID!, $input: RankTamperRuleInput!) {\n rankTamperRule(id: $id, input: $input) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
22335
22337
|
export declare const MoveTamperRuleDocument = "\n mutation moveTamperRule($id: ID!, $collectionId: ID!) {\n moveTamperRule(id: $id, collectionId: $collectionId) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
22336
22338
|
export declare const PluginPackagesDocument = "\n query pluginPackages {\n pluginPackages {\n ...pluginPackageFull\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n links {\n ...pluginLinksFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginLinksFull on PluginLinks {\n sponsor\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
22337
|
-
export declare const StorePluginPackagesDocument = "\n query storePluginPackages {\n store {\n pluginPackages {\n ...storePluginPackageFull\n }\n }\n}\n \n fragment storePluginPackageFull on StorePluginPackage {\n author {\n email\n name\n url\n }\n description\n downloads\n license\n manifestId\n name\n repository\n version\n}\n ";
|
|
22339
|
+
export declare const StorePluginPackagesDocument = "\n query storePluginPackages {\n store {\n pluginPackages {\n ...storePluginPackageFull\n }\n }\n}\n \n fragment storePluginPackageFull on StorePluginPackage {\n author {\n email\n name\n url\n }\n description\n downloads\n license\n manifestId\n name\n repository\n version\n official\n}\n ";
|
|
22338
22340
|
export declare const InstallPluginPackageDocument = "\n mutation installPluginPackage($input: InstallPluginPackageInput!) {\n installPluginPackage(input: $input) {\n package {\n ...pluginPackageFull\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n ... on StoreUserError {\n ...storeUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n links {\n ...pluginLinksFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginLinksFull on PluginLinks {\n sponsor\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment storeUserErrorFull on StoreUserError {\n ...userErrorFull\n storeReason: reason\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
22339
22341
|
export declare const UninstallPluginPackageDocument = "\n mutation uninstallPluginPackage($id: ID!) {\n uninstallPluginPackage(id: $id) {\n deletedId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n }\n }\n}\n \n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n ";
|
|
22340
22342
|
export declare const TogglePluginDocument = "\n mutation togglePlugin($id: ID!, $enabled: Boolean!) {\n togglePlugin(id: $id, enabled: $enabled) {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
|