gitlab-mcp-test 6.62.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/LICENSE +202 -0
- package/LICENSE.MIT +21 -0
- package/README.md +122 -0
- package/README.md.in +122 -0
- package/dist/generated/prisma/client.d.ts +13 -0
- package/dist/generated/prisma/client.js +46 -0
- package/dist/generated/prisma/client.js.map +1 -0
- package/dist/generated/prisma/commonInputTypes.d.ts +245 -0
- package/dist/generated/prisma/commonInputTypes.js +3 -0
- package/dist/generated/prisma/commonInputTypes.js.map +1 -0
- package/dist/generated/prisma/enums.d.ts +1 -0
- package/dist/generated/prisma/enums.js +3 -0
- package/dist/generated/prisma/enums.js.map +1 -0
- package/dist/generated/prisma/internal/class.d.ts +47 -0
- package/dist/generated/prisma/internal/class.js +75 -0
- package/dist/generated/prisma/internal/class.js.map +1 -0
- package/dist/generated/prisma/internal/prismaNamespace.d.ts +714 -0
- package/dist/generated/prisma/internal/prismaNamespace.js +141 -0
- package/dist/generated/prisma/internal/prismaNamespace.js.map +1 -0
- package/dist/generated/prisma/models/AuthCodeFlowState.d.ts +513 -0
- package/dist/generated/prisma/models/AuthCodeFlowState.js +3 -0
- package/dist/generated/prisma/models/AuthCodeFlowState.js.map +1 -0
- package/dist/generated/prisma/models/AuthorizationCode.d.ts +641 -0
- package/dist/generated/prisma/models/AuthorizationCode.js +3 -0
- package/dist/generated/prisma/models/AuthorizationCode.js.map +1 -0
- package/dist/generated/prisma/models/DeviceFlowState.d.ts +603 -0
- package/dist/generated/prisma/models/DeviceFlowState.js +3 -0
- package/dist/generated/prisma/models/DeviceFlowState.js.map +1 -0
- package/dist/generated/prisma/models/McpSessionMapping.d.ts +438 -0
- package/dist/generated/prisma/models/McpSessionMapping.js +3 -0
- package/dist/generated/prisma/models/McpSessionMapping.js.map +1 -0
- package/dist/generated/prisma/models/OAuthSession.d.ts +1037 -0
- package/dist/generated/prisma/models/OAuthSession.js +3 -0
- package/dist/generated/prisma/models/OAuthSession.js.map +1 -0
- package/dist/generated/prisma/models.d.ts +6 -0
- package/dist/generated/prisma/models.js +3 -0
- package/dist/generated/prisma/models.js.map +1 -0
- package/dist/src/cli/docker/container-runtime.d.ts +4 -0
- package/dist/src/cli/docker/container-runtime.js +85 -0
- package/dist/src/cli/docker/container-runtime.js.map +1 -0
- package/dist/src/cli/docker/docker-command.d.ts +15 -0
- package/dist/src/cli/docker/docker-command.js +421 -0
- package/dist/src/cli/docker/docker-command.js.map +1 -0
- package/dist/src/cli/docker/docker-utils.d.ts +25 -0
- package/dist/src/cli/docker/docker-utils.js +386 -0
- package/dist/src/cli/docker/docker-utils.js.map +1 -0
- package/dist/src/cli/docker/index.d.ts +4 -0
- package/dist/src/cli/docker/index.js +24 -0
- package/dist/src/cli/docker/index.js.map +1 -0
- package/dist/src/cli/docker/types.d.ts +83 -0
- package/dist/src/cli/docker/types.js +21 -0
- package/dist/src/cli/docker/types.js.map +1 -0
- package/dist/src/cli/init/browser.d.ts +7 -0
- package/dist/src/cli/init/browser.js +27 -0
- package/dist/src/cli/init/browser.js.map +1 -0
- package/dist/src/cli/init/config-generator.d.ts +11 -0
- package/dist/src/cli/init/config-generator.js +87 -0
- package/dist/src/cli/init/config-generator.js.map +1 -0
- package/dist/src/cli/init/connection.d.ts +8 -0
- package/dist/src/cli/init/connection.js +118 -0
- package/dist/src/cli/init/connection.js.map +1 -0
- package/dist/src/cli/init/index.d.ts +4 -0
- package/dist/src/cli/init/index.js +32 -0
- package/dist/src/cli/init/index.js.map +1 -0
- package/dist/src/cli/init/types.d.ts +31 -0
- package/dist/src/cli/init/types.js +66 -0
- package/dist/src/cli/init/types.js.map +1 -0
- package/dist/src/cli/init/wizard.d.ts +1 -0
- package/dist/src/cli/init/wizard.js +283 -0
- package/dist/src/cli/init/wizard.js.map +1 -0
- package/dist/src/cli/inject-tool-refs.d.ts +35 -0
- package/dist/src/cli/inject-tool-refs.js +261 -0
- package/dist/src/cli/inject-tool-refs.js.map +1 -0
- package/dist/src/cli/install/backup.d.ts +4 -0
- package/dist/src/cli/install/backup.js +63 -0
- package/dist/src/cli/install/backup.js.map +1 -0
- package/dist/src/cli/install/detector.d.ts +10 -0
- package/dist/src/cli/install/detector.js +133 -0
- package/dist/src/cli/install/detector.js.map +1 -0
- package/dist/src/cli/install/index.d.ts +5 -0
- package/dist/src/cli/install/index.js +27 -0
- package/dist/src/cli/install/index.js.map +1 -0
- package/dist/src/cli/install/install-command.d.ts +19 -0
- package/dist/src/cli/install/install-command.js +300 -0
- package/dist/src/cli/install/install-command.js.map +1 -0
- package/dist/src/cli/install/installers.d.ts +12 -0
- package/dist/src/cli/install/installers.js +439 -0
- package/dist/src/cli/install/installers.js.map +1 -0
- package/dist/src/cli/install/types.d.ts +52 -0
- package/dist/src/cli/install/types.js +87 -0
- package/dist/src/cli/install/types.js.map +1 -0
- package/dist/src/cli/instances/index.d.ts +2 -0
- package/dist/src/cli/instances/index.js +7 -0
- package/dist/src/cli/instances/index.js.map +1 -0
- package/dist/src/cli/instances/instances-command.d.ts +6 -0
- package/dist/src/cli/instances/instances-command.js +351 -0
- package/dist/src/cli/instances/instances-command.js.map +1 -0
- package/dist/src/cli/list-tools.d.ts +2 -0
- package/dist/src/cli/list-tools.js +1431 -0
- package/dist/src/cli/list-tools.js.map +1 -0
- package/dist/src/cli/setup/discovery.d.ts +3 -0
- package/dist/src/cli/setup/discovery.js +71 -0
- package/dist/src/cli/setup/discovery.js.map +1 -0
- package/dist/src/cli/setup/flows/configure-existing.d.ts +2 -0
- package/dist/src/cli/setup/flows/configure-existing.js +211 -0
- package/dist/src/cli/setup/flows/configure-existing.js.map +1 -0
- package/dist/src/cli/setup/flows/local-setup.d.ts +2 -0
- package/dist/src/cli/setup/flows/local-setup.js +206 -0
- package/dist/src/cli/setup/flows/local-setup.js.map +1 -0
- package/dist/src/cli/setup/flows/server-setup.d.ts +2 -0
- package/dist/src/cli/setup/flows/server-setup.js +185 -0
- package/dist/src/cli/setup/flows/server-setup.js.map +1 -0
- package/dist/src/cli/setup/flows/tool-selection.d.ts +3 -0
- package/dist/src/cli/setup/flows/tool-selection.js +275 -0
- package/dist/src/cli/setup/flows/tool-selection.js.map +1 -0
- package/dist/src/cli/setup/index.d.ts +4 -0
- package/dist/src/cli/setup/index.js +29 -0
- package/dist/src/cli/setup/index.js.map +1 -0
- package/dist/src/cli/setup/presets.d.ts +7 -0
- package/dist/src/cli/setup/presets.js +261 -0
- package/dist/src/cli/setup/presets.js.map +1 -0
- package/dist/src/cli/setup/types.d.ts +68 -0
- package/dist/src/cli/setup/types.js +3 -0
- package/dist/src/cli/setup/types.js.map +1 -0
- package/dist/src/cli/setup/wizard.d.ts +4 -0
- package/dist/src/cli/setup/wizard.js +128 -0
- package/dist/src/cli/setup/wizard.js.map +1 -0
- package/dist/src/cli/utils/index.d.ts +1 -0
- package/dist/src/cli/utils/index.js +6 -0
- package/dist/src/cli/utils/index.js.map +1 -0
- package/dist/src/cli/utils/path-utils.d.ts +1 -0
- package/dist/src/cli/utils/path-utils.js +18 -0
- package/dist/src/cli/utils/path-utils.js.map +1 -0
- package/dist/src/cli-utils.d.ts +19 -0
- package/dist/src/cli-utils.js +183 -0
- package/dist/src/cli-utils.js.map +1 -0
- package/dist/src/config/index.d.ts +4 -0
- package/dist/src/config/index.js +19 -0
- package/dist/src/config/index.js.map +1 -0
- package/dist/src/config/instances-loader.d.ts +10 -0
- package/dist/src/config/instances-loader.js +294 -0
- package/dist/src/config/instances-loader.js.map +1 -0
- package/dist/src/config/instances-schema.d.ts +89 -0
- package/dist/src/config/instances-schema.js +196 -0
- package/dist/src/config/instances-schema.js.map +1 -0
- package/dist/src/config.d.ts +82 -0
- package/dist/src/config.js +379 -0
- package/dist/src/config.js.map +1 -0
- package/dist/src/dashboard/handler.d.ts +4 -0
- package/dist/src/dashboard/handler.js +37 -0
- package/dist/src/dashboard/handler.js.map +1 -0
- package/dist/src/dashboard/html-template.d.ts +2 -0
- package/dist/src/dashboard/html-template.js +443 -0
- package/dist/src/dashboard/html-template.js.map +1 -0
- package/dist/src/dashboard/index.d.ts +4 -0
- package/dist/src/dashboard/index.js +15 -0
- package/dist/src/dashboard/index.js.map +1 -0
- package/dist/src/dashboard/metrics.d.ts +79 -0
- package/dist/src/dashboard/metrics.js +194 -0
- package/dist/src/dashboard/metrics.js.map +1 -0
- package/dist/src/discovery/auto.d.ts +22 -0
- package/dist/src/discovery/auto.js +170 -0
- package/dist/src/discovery/auto.js.map +1 -0
- package/dist/src/discovery/git-remote.d.ts +19 -0
- package/dist/src/discovery/git-remote.js +197 -0
- package/dist/src/discovery/git-remote.js.map +1 -0
- package/dist/src/discovery/index.d.ts +3 -0
- package/dist/src/discovery/index.js +16 -0
- package/dist/src/discovery/index.js.map +1 -0
- package/dist/src/discovery/profile-matcher.d.ts +8 -0
- package/dist/src/discovery/profile-matcher.js +48 -0
- package/dist/src/discovery/profile-matcher.js.map +1 -0
- package/dist/src/entities/context/context-manager.d.ts +31 -0
- package/dist/src/entities/context/context-manager.js +352 -0
- package/dist/src/entities/context/context-manager.js.map +1 -0
- package/dist/src/entities/context/handlers.d.ts +11 -0
- package/dist/src/entities/context/handlers.js +67 -0
- package/dist/src/entities/context/handlers.js.map +1 -0
- package/dist/src/entities/context/index.d.ts +11 -0
- package/dist/src/entities/context/index.js +34 -0
- package/dist/src/entities/context/index.js.map +1 -0
- package/dist/src/entities/context/registry.d.ts +5 -0
- package/dist/src/entities/context/registry.js +66 -0
- package/dist/src/entities/context/registry.js.map +1 -0
- package/dist/src/entities/context/schema.d.ts +60 -0
- package/dist/src/entities/context/schema.js +61 -0
- package/dist/src/entities/context/schema.js.map +1 -0
- package/dist/src/entities/context/types.d.ts +112 -0
- package/dist/src/entities/context/types.js +3 -0
- package/dist/src/entities/context/types.js.map +1 -0
- package/dist/src/entities/context/whoami.d.ts +2 -0
- package/dist/src/entities/context/whoami.js +267 -0
- package/dist/src/entities/context/whoami.js.map +1 -0
- package/dist/src/entities/core/index.d.ts +7 -0
- package/dist/src/entities/core/index.js +31 -0
- package/dist/src/entities/core/index.js.map +1 -0
- package/dist/src/entities/core/registry.d.ts +5 -0
- package/dist/src/entities/core/registry.js +784 -0
- package/dist/src/entities/core/registry.js.map +1 -0
- package/dist/src/entities/core/schema-readonly.d.ts +268 -0
- package/dist/src/entities/core/schema-readonly.js +289 -0
- package/dist/src/entities/core/schema-readonly.js.map +1 -0
- package/dist/src/entities/core/schema.d.ts +116 -0
- package/dist/src/entities/core/schema.js +173 -0
- package/dist/src/entities/core/schema.js.map +1 -0
- package/dist/src/entities/files/index.d.ts +7 -0
- package/dist/src/entities/files/index.js +31 -0
- package/dist/src/entities/files/index.js.map +1 -0
- package/dist/src/entities/files/registry.d.ts +5 -0
- package/dist/src/entities/files/registry.js +267 -0
- package/dist/src/entities/files/registry.js.map +1 -0
- package/dist/src/entities/files/schema-readonly.d.ts +83 -0
- package/dist/src/entities/files/schema-readonly.js +64 -0
- package/dist/src/entities/files/schema-readonly.js.map +1 -0
- package/dist/src/entities/files/schema.d.ts +43 -0
- package/dist/src/entities/files/schema.js +54 -0
- package/dist/src/entities/files/schema.js.map +1 -0
- package/dist/src/entities/index.d.ts +17 -0
- package/dist/src/entities/index.js +34 -0
- package/dist/src/entities/index.js.map +1 -0
- package/dist/src/entities/integrations/index.d.ts +4 -0
- package/dist/src/entities/integrations/index.js +21 -0
- package/dist/src/entities/integrations/index.js.map +1 -0
- package/dist/src/entities/integrations/registry.d.ts +5 -0
- package/dist/src/entities/integrations/registry.js +127 -0
- package/dist/src/entities/integrations/registry.js.map +1 -0
- package/dist/src/entities/integrations/schema-readonly.d.ts +63 -0
- package/dist/src/entities/integrations/schema-readonly.js +22 -0
- package/dist/src/entities/integrations/schema-readonly.js.map +1 -0
- package/dist/src/entities/integrations/schema.d.ts +180 -0
- package/dist/src/entities/integrations/schema.js +106 -0
- package/dist/src/entities/integrations/schema.js.map +1 -0
- package/dist/src/entities/iterations/index.d.ts +2 -0
- package/dist/src/entities/iterations/index.js +19 -0
- package/dist/src/entities/iterations/index.js.map +1 -0
- package/dist/src/entities/iterations/registry.d.ts +5 -0
- package/dist/src/entities/iterations/registry.js +106 -0
- package/dist/src/entities/iterations/registry.js.map +1 -0
- package/dist/src/entities/iterations/schema-readonly.d.ts +21 -0
- package/dist/src/entities/iterations/schema-readonly.js +28 -0
- package/dist/src/entities/iterations/schema-readonly.js.map +1 -0
- package/dist/src/entities/labels/index.d.ts +7 -0
- package/dist/src/entities/labels/index.js +31 -0
- package/dist/src/entities/labels/index.js.map +1 -0
- package/dist/src/entities/labels/registry.d.ts +5 -0
- package/dist/src/entities/labels/registry.js +131 -0
- package/dist/src/entities/labels/registry.js.map +1 -0
- package/dist/src/entities/labels/schema-readonly.d.ts +16 -0
- package/dist/src/entities/labels/schema-readonly.js +28 -0
- package/dist/src/entities/labels/schema-readonly.js.map +1 -0
- package/dist/src/entities/labels/schema.d.ts +23 -0
- package/dist/src/entities/labels/schema.js +46 -0
- package/dist/src/entities/labels/schema.js.map +1 -0
- package/dist/src/entities/members/index.d.ts +3 -0
- package/dist/src/entities/members/index.js +25 -0
- package/dist/src/entities/members/index.js.map +1 -0
- package/dist/src/entities/members/registry.d.ts +5 -0
- package/dist/src/entities/members/registry.js +224 -0
- package/dist/src/entities/members/registry.js.map +1 -0
- package/dist/src/entities/members/schema-readonly.d.ts +53 -0
- package/dist/src/entities/members/schema-readonly.js +79 -0
- package/dist/src/entities/members/schema-readonly.js.map +1 -0
- package/dist/src/entities/members/schema.d.ts +40 -0
- package/dist/src/entities/members/schema.js +80 -0
- package/dist/src/entities/members/schema.js.map +1 -0
- package/dist/src/entities/milestones/index.d.ts +7 -0
- package/dist/src/entities/milestones/index.js +31 -0
- package/dist/src/entities/milestones/index.js.map +1 -0
- package/dist/src/entities/milestones/registry.d.ts +5 -0
- package/dist/src/entities/milestones/registry.js +150 -0
- package/dist/src/entities/milestones/registry.js.map +1 -0
- package/dist/src/entities/milestones/schema-readonly.d.ts +57 -0
- package/dist/src/entities/milestones/schema-readonly.js +81 -0
- package/dist/src/entities/milestones/schema-readonly.js.map +1 -0
- package/dist/src/entities/milestones/schema.d.ts +30 -0
- package/dist/src/entities/milestones/schema.js +47 -0
- package/dist/src/entities/milestones/schema.js.map +1 -0
- package/dist/src/entities/mrs/index.d.ts +7 -0
- package/dist/src/entities/mrs/index.js +31 -0
- package/dist/src/entities/mrs/index.js.map +1 -0
- package/dist/src/entities/mrs/registry.d.ts +22 -0
- package/dist/src/entities/mrs/registry.js +495 -0
- package/dist/src/entities/mrs/registry.js.map +1 -0
- package/dist/src/entities/mrs/schema-readonly.d.ts +135 -0
- package/dist/src/entities/mrs/schema-readonly.js +326 -0
- package/dist/src/entities/mrs/schema-readonly.js.map +1 -0
- package/dist/src/entities/mrs/schema.d.ts +339 -0
- package/dist/src/entities/mrs/schema.js +259 -0
- package/dist/src/entities/mrs/schema.js.map +1 -0
- package/dist/src/entities/pipelines/index.d.ts +7 -0
- package/dist/src/entities/pipelines/index.js +31 -0
- package/dist/src/entities/pipelines/index.js.map +1 -0
- package/dist/src/entities/pipelines/registry.d.ts +5 -0
- package/dist/src/entities/pipelines/registry.js +323 -0
- package/dist/src/entities/pipelines/registry.js.map +1 -0
- package/dist/src/entities/pipelines/schema-readonly.d.ts +239 -0
- package/dist/src/entities/pipelines/schema-readonly.js +278 -0
- package/dist/src/entities/pipelines/schema-readonly.js.map +1 -0
- package/dist/src/entities/pipelines/schema.d.ts +47 -0
- package/dist/src/entities/pipelines/schema.js +73 -0
- package/dist/src/entities/pipelines/schema.js.map +1 -0
- package/dist/src/entities/refs/index.d.ts +3 -0
- package/dist/src/entities/refs/index.js +25 -0
- package/dist/src/entities/refs/index.js.map +1 -0
- package/dist/src/entities/refs/registry.d.ts +5 -0
- package/dist/src/entities/refs/registry.js +233 -0
- package/dist/src/entities/refs/registry.js.map +1 -0
- package/dist/src/entities/refs/schema-readonly.d.ts +48 -0
- package/dist/src/entities/refs/schema-readonly.js +76 -0
- package/dist/src/entities/refs/schema-readonly.js.map +1 -0
- package/dist/src/entities/refs/schema.d.ts +85 -0
- package/dist/src/entities/refs/schema.js +149 -0
- package/dist/src/entities/refs/schema.js.map +1 -0
- package/dist/src/entities/releases/index.d.ts +3 -0
- package/dist/src/entities/releases/index.js +13 -0
- package/dist/src/entities/releases/index.js.map +1 -0
- package/dist/src/entities/releases/registry.d.ts +5 -0
- package/dist/src/entities/releases/registry.js +183 -0
- package/dist/src/entities/releases/registry.js.map +1 -0
- package/dist/src/entities/releases/schema-readonly.d.ts +28 -0
- package/dist/src/entities/releases/schema-readonly.js +56 -0
- package/dist/src/entities/releases/schema-readonly.js.map +1 -0
- package/dist/src/entities/releases/schema.d.ts +56 -0
- package/dist/src/entities/releases/schema.js +97 -0
- package/dist/src/entities/releases/schema.js.map +1 -0
- package/dist/src/entities/search/index.d.ts +2 -0
- package/dist/src/entities/search/index.js +24 -0
- package/dist/src/entities/search/index.js.map +1 -0
- package/dist/src/entities/search/registry.d.ts +5 -0
- package/dist/src/entities/search/registry.js +113 -0
- package/dist/src/entities/search/registry.js.map +1 -0
- package/dist/src/entities/search/schema-readonly.d.ts +228 -0
- package/dist/src/entities/search/schema-readonly.js +64 -0
- package/dist/src/entities/search/schema-readonly.js.map +1 -0
- package/dist/src/entities/shared.d.ts +291 -0
- package/dist/src/entities/shared.js +269 -0
- package/dist/src/entities/shared.js.map +1 -0
- package/dist/src/entities/snippets/index.d.ts +7 -0
- package/dist/src/entities/snippets/index.js +31 -0
- package/dist/src/entities/snippets/index.js.map +1 -0
- package/dist/src/entities/snippets/registry.d.ts +5 -0
- package/dist/src/entities/snippets/registry.js +200 -0
- package/dist/src/entities/snippets/registry.js.map +1 -0
- package/dist/src/entities/snippets/schema-readonly.d.ts +25 -0
- package/dist/src/entities/snippets/schema-readonly.js +45 -0
- package/dist/src/entities/snippets/schema-readonly.js.map +1 -0
- package/dist/src/entities/snippets/schema.d.ts +56 -0
- package/dist/src/entities/snippets/schema.js +89 -0
- package/dist/src/entities/snippets/schema.js.map +1 -0
- package/dist/src/entities/utils.d.ts +16 -0
- package/dist/src/entities/utils.js +57 -0
- package/dist/src/entities/utils.js.map +1 -0
- package/dist/src/entities/variables/index.d.ts +7 -0
- package/dist/src/entities/variables/index.js +31 -0
- package/dist/src/entities/variables/index.js.map +1 -0
- package/dist/src/entities/variables/registry.d.ts +5 -0
- package/dist/src/entities/variables/registry.js +140 -0
- package/dist/src/entities/variables/registry.js.map +1 -0
- package/dist/src/entities/variables/schema-readonly.d.ts +15 -0
- package/dist/src/entities/variables/schema-readonly.js +33 -0
- package/dist/src/entities/variables/schema-readonly.js.map +1 -0
- package/dist/src/entities/variables/schema.d.ts +41 -0
- package/dist/src/entities/variables/schema.js +92 -0
- package/dist/src/entities/variables/schema.js.map +1 -0
- package/dist/src/entities/webhooks/index.d.ts +4 -0
- package/dist/src/entities/webhooks/index.js +21 -0
- package/dist/src/entities/webhooks/index.js.map +1 -0
- package/dist/src/entities/webhooks/registry.d.ts +5 -0
- package/dist/src/entities/webhooks/registry.js +162 -0
- package/dist/src/entities/webhooks/registry.js.map +1 -0
- package/dist/src/entities/webhooks/schema-readonly.d.ts +22 -0
- package/dist/src/entities/webhooks/schema-readonly.js +25 -0
- package/dist/src/entities/webhooks/schema-readonly.js.map +1 -0
- package/dist/src/entities/webhooks/schema.d.ts +101 -0
- package/dist/src/entities/webhooks/schema.js +101 -0
- package/dist/src/entities/webhooks/schema.js.map +1 -0
- package/dist/src/entities/wiki/index.d.ts +7 -0
- package/dist/src/entities/wiki/index.js +31 -0
- package/dist/src/entities/wiki/index.js.map +1 -0
- package/dist/src/entities/wiki/registry.d.ts +5 -0
- package/dist/src/entities/wiki/registry.js +127 -0
- package/dist/src/entities/wiki/registry.js.map +1 -0
- package/dist/src/entities/wiki/schema-readonly.d.ts +22 -0
- package/dist/src/entities/wiki/schema-readonly.js +27 -0
- package/dist/src/entities/wiki/schema-readonly.js.map +1 -0
- package/dist/src/entities/wiki/schema.d.ts +30 -0
- package/dist/src/entities/wiki/schema.js +38 -0
- package/dist/src/entities/wiki/schema.js.map +1 -0
- package/dist/src/entities/workitems/index.d.ts +7 -0
- package/dist/src/entities/workitems/index.js +31 -0
- package/dist/src/entities/workitems/index.js.map +1 -0
- package/dist/src/entities/workitems/registry.d.ts +5 -0
- package/dist/src/entities/workitems/registry.js +725 -0
- package/dist/src/entities/workitems/registry.js.map +1 -0
- package/dist/src/entities/workitems/schema-readonly.d.ts +49 -0
- package/dist/src/entities/workitems/schema-readonly.js +87 -0
- package/dist/src/entities/workitems/schema-readonly.js.map +1 -0
- package/dist/src/entities/workitems/schema.d.ts +97 -0
- package/dist/src/entities/workitems/schema.js +187 -0
- package/dist/src/entities/workitems/schema.js.map +1 -0
- package/dist/src/graphql/DynamicWorkItemsQuery.d.ts +56 -0
- package/dist/src/graphql/DynamicWorkItemsQuery.js +190 -0
- package/dist/src/graphql/DynamicWorkItemsQuery.js.map +1 -0
- package/dist/src/graphql/client.d.ts +17 -0
- package/dist/src/graphql/client.js +56 -0
- package/dist/src/graphql/client.js.map +1 -0
- package/dist/src/graphql/index.d.ts +2 -0
- package/dist/src/graphql/index.js +21 -0
- package/dist/src/graphql/index.js.map +1 -0
- package/dist/src/graphql/workItems.d.ts +659 -0
- package/dist/src/graphql/workItems.js +1545 -0
- package/dist/src/graphql/workItems.js.map +1 -0
- package/dist/src/handlers.d.ts +2 -0
- package/dist/src/handlers.js +346 -0
- package/dist/src/handlers.js.map +1 -0
- package/dist/src/http-client.d.ts +1 -0
- package/dist/src/http-client.js +9 -0
- package/dist/src/http-client.js.map +1 -0
- package/dist/src/logger.d.ts +9 -0
- package/dist/src/logger.js +129 -0
- package/dist/src/logger.js.map +1 -0
- package/dist/src/logging/access-log.d.ts +15 -0
- package/dist/src/logging/access-log.js +157 -0
- package/dist/src/logging/access-log.js.map +1 -0
- package/dist/src/logging/connection-tracker.d.ts +21 -0
- package/dist/src/logging/connection-tracker.js +106 -0
- package/dist/src/logging/connection-tracker.js.map +1 -0
- package/dist/src/logging/index.d.ts +5 -0
- package/dist/src/logging/index.js +27 -0
- package/dist/src/logging/index.js.map +1 -0
- package/dist/src/logging/request-tracker.d.ts +39 -0
- package/dist/src/logging/request-tracker.js +208 -0
- package/dist/src/logging/request-tracker.js.map +1 -0
- package/dist/src/logging/types.d.ts +55 -0
- package/dist/src/logging/types.js +5 -0
- package/dist/src/logging/types.js.map +1 -0
- package/dist/src/main.d.ts +2 -0
- package/dist/src/main.js +219 -0
- package/dist/src/main.js.map +1 -0
- package/dist/src/middleware/index.d.ts +2 -0
- package/dist/src/middleware/index.js +12 -0
- package/dist/src/middleware/index.js.map +1 -0
- package/dist/src/middleware/oauth-auth.d.ts +4 -0
- package/dist/src/middleware/oauth-auth.js +137 -0
- package/dist/src/middleware/oauth-auth.js.map +1 -0
- package/dist/src/middleware/rate-limiter.d.ts +11 -0
- package/dist/src/middleware/rate-limiter.js +183 -0
- package/dist/src/middleware/rate-limiter.js.map +1 -0
- package/dist/src/oauth/config.d.ts +25 -0
- package/dist/src/oauth/config.js +109 -0
- package/dist/src/oauth/config.js.map +1 -0
- package/dist/src/oauth/endpoints/authorize.d.ts +3 -0
- package/dist/src/oauth/endpoints/authorize.js +454 -0
- package/dist/src/oauth/endpoints/authorize.js.map +1 -0
- package/dist/src/oauth/endpoints/callback.d.ts +2 -0
- package/dist/src/oauth/endpoints/callback.js +134 -0
- package/dist/src/oauth/endpoints/callback.js.map +1 -0
- package/dist/src/oauth/endpoints/index.d.ts +5 -0
- package/dist/src/oauth/endpoints/index.js +19 -0
- package/dist/src/oauth/endpoints/index.js.map +1 -0
- package/dist/src/oauth/endpoints/metadata.d.ts +5 -0
- package/dist/src/oauth/endpoints/metadata.js +42 -0
- package/dist/src/oauth/endpoints/metadata.js.map +1 -0
- package/dist/src/oauth/endpoints/register.d.ts +15 -0
- package/dist/src/oauth/endpoints/register.js +85 -0
- package/dist/src/oauth/endpoints/register.js.map +1 -0
- package/dist/src/oauth/endpoints/token.d.ts +2 -0
- package/dist/src/oauth/endpoints/token.js +167 -0
- package/dist/src/oauth/endpoints/token.js.map +1 -0
- package/dist/src/oauth/gitlab-device-flow.d.ts +10 -0
- package/dist/src/oauth/gitlab-device-flow.js +215 -0
- package/dist/src/oauth/gitlab-device-flow.js.map +1 -0
- package/dist/src/oauth/index.d.ts +10 -0
- package/dist/src/oauth/index.js +69 -0
- package/dist/src/oauth/index.js.map +1 -0
- package/dist/src/oauth/session-store.d.ts +54 -0
- package/dist/src/oauth/session-store.js +311 -0
- package/dist/src/oauth/session-store.js.map +1 -0
- package/dist/src/oauth/storage/factory.d.ts +4 -0
- package/dist/src/oauth/storage/factory.js +73 -0
- package/dist/src/oauth/storage/factory.js.map +1 -0
- package/dist/src/oauth/storage/file.d.ts +48 -0
- package/dist/src/oauth/storage/file.js +307 -0
- package/dist/src/oauth/storage/file.js.map +1 -0
- package/dist/src/oauth/storage/index.d.ts +5 -0
- package/dist/src/oauth/storage/index.js +22 -0
- package/dist/src/oauth/storage/index.js.map +1 -0
- package/dist/src/oauth/storage/memory.d.ts +76 -0
- package/dist/src/oauth/storage/memory.js +280 -0
- package/dist/src/oauth/storage/memory.js.map +1 -0
- package/dist/src/oauth/storage/postgresql.d.ts +41 -0
- package/dist/src/oauth/storage/postgresql.js +444 -0
- package/dist/src/oauth/storage/postgresql.js.map +1 -0
- package/dist/src/oauth/storage/types.d.ts +66 -0
- package/dist/src/oauth/storage/types.js +5 -0
- package/dist/src/oauth/storage/types.js.map +1 -0
- package/dist/src/oauth/token-context.d.ts +10 -0
- package/dist/src/oauth/token-context.js +50 -0
- package/dist/src/oauth/token-context.js.map +1 -0
- package/dist/src/oauth/token-utils.d.ts +14 -0
- package/dist/src/oauth/token-utils.js +148 -0
- package/dist/src/oauth/token-utils.js.map +1 -0
- package/dist/src/oauth/types.d.ts +117 -0
- package/dist/src/oauth/types.js +3 -0
- package/dist/src/oauth/types.js.map +1 -0
- package/dist/src/profiles/applicator.d.ts +19 -0
- package/dist/src/profiles/applicator.js +256 -0
- package/dist/src/profiles/applicator.js.map +1 -0
- package/dist/src/profiles/builtin/admin.yaml +30 -0
- package/dist/src/profiles/builtin/ci.yaml +35 -0
- package/dist/src/profiles/builtin/code-reviewer.yaml +41 -0
- package/dist/src/profiles/builtin/developer.yaml +40 -0
- package/dist/src/profiles/builtin/devops.yaml +33 -0
- package/dist/src/profiles/builtin/full-access.yaml +29 -0
- package/dist/src/profiles/builtin/gitlab-com.yaml +40 -0
- package/dist/src/profiles/builtin/junior-dev.yaml +35 -0
- package/dist/src/profiles/builtin/pm.yaml +36 -0
- package/dist/src/profiles/builtin/readonly.yaml +33 -0
- package/dist/src/profiles/builtin/senior-dev.yaml +41 -0
- package/dist/src/profiles/builtin/team-lead.yaml +42 -0
- package/dist/src/profiles/index.d.ts +5 -0
- package/dist/src/profiles/index.js +34 -0
- package/dist/src/profiles/index.js.map +1 -0
- package/dist/src/profiles/loader.d.ts +32 -0
- package/dist/src/profiles/loader.js +319 -0
- package/dist/src/profiles/loader.js.map +1 -0
- package/dist/src/profiles/project-loader.d.ts +12 -0
- package/dist/src/profiles/project-loader.js +214 -0
- package/dist/src/profiles/project-loader.js.map +1 -0
- package/dist/src/profiles/scope-enforcer.d.ts +28 -0
- package/dist/src/profiles/scope-enforcer.js +236 -0
- package/dist/src/profiles/scope-enforcer.js.map +1 -0
- package/dist/src/profiles/types.d.ts +261 -0
- package/dist/src/profiles/types.js +153 -0
- package/dist/src/profiles/types.js.map +1 -0
- package/dist/src/registry-manager.d.ts +37 -0
- package/dist/src/registry-manager.js +488 -0
- package/dist/src/registry-manager.js.map +1 -0
- package/dist/src/server.d.ts +2 -0
- package/dist/src/server.js +624 -0
- package/dist/src/server.js.map +1 -0
- package/dist/src/services/ConnectionManager.d.ts +41 -0
- package/dist/src/services/ConnectionManager.js +438 -0
- package/dist/src/services/ConnectionManager.js.map +1 -0
- package/dist/src/services/GitLabVersionDetector.d.ts +52 -0
- package/dist/src/services/GitLabVersionDetector.js +215 -0
- package/dist/src/services/GitLabVersionDetector.js.map +1 -0
- package/dist/src/services/InstanceConnectionPool.d.ts +54 -0
- package/dist/src/services/InstanceConnectionPool.js +180 -0
- package/dist/src/services/InstanceConnectionPool.js.map +1 -0
- package/dist/src/services/InstanceRateLimiter.d.ts +35 -0
- package/dist/src/services/InstanceRateLimiter.js +131 -0
- package/dist/src/services/InstanceRateLimiter.js.map +1 -0
- package/dist/src/services/InstanceRegistry.d.ts +61 -0
- package/dist/src/services/InstanceRegistry.js +250 -0
- package/dist/src/services/InstanceRegistry.js.map +1 -0
- package/dist/src/services/NamespaceTierDetector.d.ts +9 -0
- package/dist/src/services/NamespaceTierDetector.js +249 -0
- package/dist/src/services/NamespaceTierDetector.js.map +1 -0
- package/dist/src/services/SchemaIntrospector.d.ts +39 -0
- package/dist/src/services/SchemaIntrospector.js +190 -0
- package/dist/src/services/SchemaIntrospector.js.map +1 -0
- package/dist/src/services/TokenScopeDetector.d.ts +35 -0
- package/dist/src/services/TokenScopeDetector.js +232 -0
- package/dist/src/services/TokenScopeDetector.js.map +1 -0
- package/dist/src/services/ToolAvailability.d.ts +32 -0
- package/dist/src/services/ToolAvailability.js +410 -0
- package/dist/src/services/ToolAvailability.js.map +1 -0
- package/dist/src/services/WidgetAvailability.d.ts +23 -0
- package/dist/src/services/WidgetAvailability.js +158 -0
- package/dist/src/services/WidgetAvailability.js.map +1 -0
- package/dist/src/session-manager.d.ts +19 -0
- package/dist/src/session-manager.js +131 -0
- package/dist/src/session-manager.js.map +1 -0
- package/dist/src/types.d.ts +28 -0
- package/dist/src/types.js +11 -0
- package/dist/src/types.js.map +1 -0
- package/dist/src/utils/description-utils.d.ts +2 -0
- package/dist/src/utils/description-utils.js +25 -0
- package/dist/src/utils/description-utils.js.map +1 -0
- package/dist/src/utils/error-handler.d.ts +93 -0
- package/dist/src/utils/error-handler.js +597 -0
- package/dist/src/utils/error-handler.js.map +1 -0
- package/dist/src/utils/fetch.d.ts +13 -0
- package/dist/src/utils/fetch.js +539 -0
- package/dist/src/utils/fetch.js.map +1 -0
- package/dist/src/utils/gitlab-api.d.ts +24 -0
- package/dist/src/utils/gitlab-api.js +139 -0
- package/dist/src/utils/gitlab-api.js.map +1 -0
- package/dist/src/utils/idConversion.d.ts +81 -0
- package/dist/src/utils/idConversion.js +193 -0
- package/dist/src/utils/idConversion.js.map +1 -0
- package/dist/src/utils/namespace.d.ts +7 -0
- package/dist/src/utils/namespace.js +59 -0
- package/dist/src/utils/namespace.js.map +1 -0
- package/dist/src/utils/projectIdentifier.d.ts +9 -0
- package/dist/src/utils/projectIdentifier.js +59 -0
- package/dist/src/utils/projectIdentifier.js.map +1 -0
- package/dist/src/utils/request-logger.d.ts +24 -0
- package/dist/src/utils/request-logger.js +55 -0
- package/dist/src/utils/request-logger.js.map +1 -0
- package/dist/src/utils/schema-utils.d.ts +31 -0
- package/dist/src/utils/schema-utils.js +288 -0
- package/dist/src/utils/schema-utils.js.map +1 -0
- package/dist/src/utils/smart-user-search.d.ts +33 -0
- package/dist/src/utils/smart-user-search.js +142 -0
- package/dist/src/utils/smart-user-search.js.map +1 -0
- package/dist/src/utils/version.d.ts +1 -0
- package/dist/src/utils/version.js +14 -0
- package/dist/src/utils/version.js.map +1 -0
- package/dist/src/utils/workItemTypes.d.ts +6 -0
- package/dist/src/utils/workItemTypes.js +14 -0
- package/dist/src/utils/workItemTypes.js.map +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/package.json +511 -0
|
@@ -0,0 +1,1545 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WORK_ITEM_REMOVE_LINKED_ITEMS = exports.WORK_ITEM_ADD_LINKED_ITEMS = exports.CREATE_WORK_ITEM_WITH_WIDGETS = exports.GET_WORK_ITEM_TYPES = exports.TIMELOG_DELETE = exports.DELETE_WORK_ITEM = exports.UPDATE_WORK_ITEM = exports.CREATE_WORK_ITEM_WITH_DESCRIPTION = exports.CREATE_WORK_ITEM = exports.GET_WORK_ITEM = exports.GET_WORK_ITEM_BY_IID = exports.GET_PROJECT_WORK_ITEMS = exports.GET_WORK_ITEMS = exports.GET_NAMESPACE_WORK_ITEMS = exports.GET_NAMESPACE_TYPE = exports.GET_GROUP_PROJECTS = exports.WorkItemWidgetTypes = void 0;
|
|
4
|
+
const graphql_tag_1 = require("graphql-tag");
|
|
5
|
+
exports.WorkItemWidgetTypes = {
|
|
6
|
+
ASSIGNEES: "ASSIGNEES",
|
|
7
|
+
DESCRIPTION: "DESCRIPTION",
|
|
8
|
+
HIERARCHY: "HIERARCHY",
|
|
9
|
+
LABELS: "LABELS",
|
|
10
|
+
MILESTONE: "MILESTONE",
|
|
11
|
+
NOTES: "NOTES",
|
|
12
|
+
START_AND_DUE_DATE: "START_AND_DUE_DATE",
|
|
13
|
+
HEALTH_STATUS: "HEALTH_STATUS",
|
|
14
|
+
WEIGHT: "WEIGHT",
|
|
15
|
+
ITERATION: "ITERATION",
|
|
16
|
+
PROGRESS: "PROGRESS",
|
|
17
|
+
STATUS: "STATUS",
|
|
18
|
+
REQUIREMENT_LEGACY: "REQUIREMENT_LEGACY",
|
|
19
|
+
TEST_REPORTS: "TEST_REPORTS",
|
|
20
|
+
NOTIFICATIONS: "NOTIFICATIONS",
|
|
21
|
+
CURRENT_USER_TODOS: "CURRENT_USER_TODOS",
|
|
22
|
+
AWARD_EMOJI: "AWARD_EMOJI",
|
|
23
|
+
LINKED_ITEMS: "LINKED_ITEMS",
|
|
24
|
+
COLOR: "COLOR",
|
|
25
|
+
PARTICIPANTS: "PARTICIPANTS",
|
|
26
|
+
DESIGNS: "DESIGNS",
|
|
27
|
+
DEVELOPMENT: "DEVELOPMENT",
|
|
28
|
+
CRM_CONTACTS: "CRM_CONTACTS",
|
|
29
|
+
TIME_TRACKING: "TIME_TRACKING",
|
|
30
|
+
EMAIL_PARTICIPANTS: "EMAIL_PARTICIPANTS",
|
|
31
|
+
CUSTOM_FIELDS: "CUSTOM_FIELDS",
|
|
32
|
+
ERROR_TRACKING: "ERROR_TRACKING",
|
|
33
|
+
LINKED_RESOURCES: "LINKED_RESOURCES",
|
|
34
|
+
VULNERABILITIES: "VULNERABILITIES",
|
|
35
|
+
VERIFICATION_STATUS: "VERIFICATION_STATUS",
|
|
36
|
+
};
|
|
37
|
+
exports.GET_GROUP_PROJECTS = (0, graphql_tag_1.gql) `
|
|
38
|
+
query GetGroupProjects($groupPath: ID!, $includeSubgroups: Boolean) {
|
|
39
|
+
group(fullPath: $groupPath) {
|
|
40
|
+
projects(includeSubgroups: $includeSubgroups) {
|
|
41
|
+
nodes {
|
|
42
|
+
id
|
|
43
|
+
fullPath
|
|
44
|
+
archived
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
`;
|
|
50
|
+
exports.GET_NAMESPACE_TYPE = (0, graphql_tag_1.gql) `
|
|
51
|
+
query GetNamespaceType($namespacePath: ID!) {
|
|
52
|
+
namespace(fullPath: $namespacePath) {
|
|
53
|
+
__typename
|
|
54
|
+
fullPath
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
`;
|
|
58
|
+
exports.GET_NAMESPACE_WORK_ITEMS = (0, graphql_tag_1.gql) `
|
|
59
|
+
query GetNamespaceWorkItems(
|
|
60
|
+
$namespacePath: ID!
|
|
61
|
+
$types: [IssueType!]
|
|
62
|
+
$first: Int
|
|
63
|
+
$after: String
|
|
64
|
+
) {
|
|
65
|
+
namespace(fullPath: $namespacePath) {
|
|
66
|
+
__typename
|
|
67
|
+
fullPath
|
|
68
|
+
workItems(types: $types, first: $first, after: $after) {
|
|
69
|
+
nodes {
|
|
70
|
+
id
|
|
71
|
+
iid
|
|
72
|
+
title
|
|
73
|
+
description
|
|
74
|
+
state
|
|
75
|
+
workItemType {
|
|
76
|
+
id
|
|
77
|
+
name
|
|
78
|
+
}
|
|
79
|
+
createdAt
|
|
80
|
+
updatedAt
|
|
81
|
+
closedAt
|
|
82
|
+
webUrl
|
|
83
|
+
widgets {
|
|
84
|
+
type
|
|
85
|
+
... on WorkItemWidgetAssignees {
|
|
86
|
+
allowsMultipleAssignees
|
|
87
|
+
canInviteMembers
|
|
88
|
+
assignees {
|
|
89
|
+
nodes {
|
|
90
|
+
id
|
|
91
|
+
username
|
|
92
|
+
name
|
|
93
|
+
webUrl
|
|
94
|
+
avatarUrl
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
... on WorkItemWidgetLabels {
|
|
99
|
+
allowsScopedLabels
|
|
100
|
+
labels {
|
|
101
|
+
nodes {
|
|
102
|
+
id
|
|
103
|
+
title
|
|
104
|
+
color
|
|
105
|
+
textColor
|
|
106
|
+
description
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
... on WorkItemWidgetMilestone {
|
|
111
|
+
milestone {
|
|
112
|
+
id
|
|
113
|
+
title
|
|
114
|
+
description
|
|
115
|
+
state
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
... on WorkItemWidgetHierarchy {
|
|
119
|
+
hasChildren
|
|
120
|
+
parent {
|
|
121
|
+
id
|
|
122
|
+
iid
|
|
123
|
+
title
|
|
124
|
+
workItemType {
|
|
125
|
+
id
|
|
126
|
+
name
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
... on WorkItemWidgetTimeTracking {
|
|
131
|
+
timeEstimate
|
|
132
|
+
totalTimeSpent
|
|
133
|
+
}
|
|
134
|
+
... on WorkItemWidgetVerificationStatus {
|
|
135
|
+
verificationStatus
|
|
136
|
+
}
|
|
137
|
+
... on WorkItemWidgetTestReports {
|
|
138
|
+
testReports {
|
|
139
|
+
nodes {
|
|
140
|
+
id
|
|
141
|
+
state
|
|
142
|
+
createdAt
|
|
143
|
+
author {
|
|
144
|
+
id
|
|
145
|
+
username
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
pageInfo {
|
|
153
|
+
hasNextPage
|
|
154
|
+
endCursor
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
`;
|
|
160
|
+
exports.GET_WORK_ITEMS = (0, graphql_tag_1.gql) `
|
|
161
|
+
query GetWorkItems($groupPath: ID!, $types: [IssueType!], $first: Int, $after: String) {
|
|
162
|
+
group(fullPath: $groupPath) {
|
|
163
|
+
workItems(types: $types, first: $first, after: $after) {
|
|
164
|
+
nodes {
|
|
165
|
+
id
|
|
166
|
+
iid
|
|
167
|
+
title
|
|
168
|
+
description
|
|
169
|
+
state
|
|
170
|
+
workItemType {
|
|
171
|
+
id
|
|
172
|
+
name
|
|
173
|
+
}
|
|
174
|
+
createdAt
|
|
175
|
+
updatedAt
|
|
176
|
+
closedAt
|
|
177
|
+
webUrl
|
|
178
|
+
widgets {
|
|
179
|
+
type
|
|
180
|
+
... on WorkItemWidgetAssignees {
|
|
181
|
+
allowsMultipleAssignees
|
|
182
|
+
canInviteMembers
|
|
183
|
+
assignees {
|
|
184
|
+
nodes {
|
|
185
|
+
id
|
|
186
|
+
username
|
|
187
|
+
name
|
|
188
|
+
avatarUrl
|
|
189
|
+
webUrl
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
... on WorkItemWidgetDescription {
|
|
194
|
+
description
|
|
195
|
+
descriptionHtml
|
|
196
|
+
edited
|
|
197
|
+
lastEditedAt
|
|
198
|
+
lastEditedBy {
|
|
199
|
+
id
|
|
200
|
+
username
|
|
201
|
+
name
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
... on WorkItemWidgetHierarchy {
|
|
205
|
+
parent {
|
|
206
|
+
id
|
|
207
|
+
iid
|
|
208
|
+
title
|
|
209
|
+
workItemType {
|
|
210
|
+
name
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
children {
|
|
214
|
+
nodes {
|
|
215
|
+
id
|
|
216
|
+
iid
|
|
217
|
+
title
|
|
218
|
+
workItemType {
|
|
219
|
+
name
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
hasChildren
|
|
224
|
+
}
|
|
225
|
+
... on WorkItemWidgetLabels {
|
|
226
|
+
allowsScopedLabels
|
|
227
|
+
labels {
|
|
228
|
+
nodes {
|
|
229
|
+
id
|
|
230
|
+
title
|
|
231
|
+
description
|
|
232
|
+
color
|
|
233
|
+
textColor
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
... on WorkItemWidgetMilestone {
|
|
238
|
+
milestone {
|
|
239
|
+
id
|
|
240
|
+
title
|
|
241
|
+
description
|
|
242
|
+
state
|
|
243
|
+
dueDate
|
|
244
|
+
startDate
|
|
245
|
+
webPath
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
... on WorkItemWidgetNotes {
|
|
249
|
+
discussions {
|
|
250
|
+
nodes {
|
|
251
|
+
id
|
|
252
|
+
resolvable
|
|
253
|
+
resolved
|
|
254
|
+
notes {
|
|
255
|
+
nodes {
|
|
256
|
+
id
|
|
257
|
+
body
|
|
258
|
+
author {
|
|
259
|
+
id
|
|
260
|
+
username
|
|
261
|
+
name
|
|
262
|
+
}
|
|
263
|
+
createdAt
|
|
264
|
+
updatedAt
|
|
265
|
+
system
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
... on WorkItemWidgetStartAndDueDate {
|
|
272
|
+
startDate
|
|
273
|
+
dueDate
|
|
274
|
+
isFixed
|
|
275
|
+
}
|
|
276
|
+
... on WorkItemWidgetHealthStatus {
|
|
277
|
+
healthStatus
|
|
278
|
+
}
|
|
279
|
+
... on WorkItemWidgetWeight {
|
|
280
|
+
weight
|
|
281
|
+
}
|
|
282
|
+
... on WorkItemWidgetStatus {
|
|
283
|
+
status {
|
|
284
|
+
name
|
|
285
|
+
color
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
... on WorkItemWidgetTimeTracking {
|
|
289
|
+
timeEstimate
|
|
290
|
+
totalTimeSpent
|
|
291
|
+
humanReadableAttributes {
|
|
292
|
+
timeEstimate
|
|
293
|
+
totalTimeSpent
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
... on WorkItemWidgetParticipants {
|
|
297
|
+
participants {
|
|
298
|
+
nodes {
|
|
299
|
+
id
|
|
300
|
+
username
|
|
301
|
+
name
|
|
302
|
+
avatarUrl
|
|
303
|
+
webUrl
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
... on WorkItemWidgetProgress {
|
|
308
|
+
currentValue
|
|
309
|
+
endValue
|
|
310
|
+
progress
|
|
311
|
+
startValue
|
|
312
|
+
}
|
|
313
|
+
... on WorkItemWidgetRequirementLegacy {
|
|
314
|
+
type
|
|
315
|
+
}
|
|
316
|
+
... on WorkItemWidgetTestReports {
|
|
317
|
+
testReports {
|
|
318
|
+
nodes {
|
|
319
|
+
id
|
|
320
|
+
state
|
|
321
|
+
createdAt
|
|
322
|
+
author {
|
|
323
|
+
id
|
|
324
|
+
username
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
... on WorkItemWidgetNotifications {
|
|
330
|
+
subscribed
|
|
331
|
+
}
|
|
332
|
+
... on WorkItemWidgetCurrentUserTodos {
|
|
333
|
+
currentUserTodos {
|
|
334
|
+
nodes {
|
|
335
|
+
id
|
|
336
|
+
action
|
|
337
|
+
author {
|
|
338
|
+
id
|
|
339
|
+
username
|
|
340
|
+
name
|
|
341
|
+
}
|
|
342
|
+
createdAt
|
|
343
|
+
state
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
... on WorkItemWidgetAwardEmoji {
|
|
348
|
+
awardEmoji {
|
|
349
|
+
nodes {
|
|
350
|
+
name
|
|
351
|
+
emoji
|
|
352
|
+
description
|
|
353
|
+
user {
|
|
354
|
+
id
|
|
355
|
+
username
|
|
356
|
+
name
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
upvotes
|
|
361
|
+
downvotes
|
|
362
|
+
}
|
|
363
|
+
... on WorkItemWidgetLinkedItems {
|
|
364
|
+
linkedItems {
|
|
365
|
+
nodes {
|
|
366
|
+
linkType
|
|
367
|
+
workItem {
|
|
368
|
+
id
|
|
369
|
+
iid
|
|
370
|
+
title
|
|
371
|
+
state
|
|
372
|
+
workItemType {
|
|
373
|
+
name
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
... on WorkItemWidgetColor {
|
|
380
|
+
color
|
|
381
|
+
}
|
|
382
|
+
... on WorkItemWidgetDesigns {
|
|
383
|
+
designCollection {
|
|
384
|
+
designs {
|
|
385
|
+
nodes {
|
|
386
|
+
id
|
|
387
|
+
filename
|
|
388
|
+
fullPath
|
|
389
|
+
image
|
|
390
|
+
imageV432x230
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
... on WorkItemWidgetDevelopment {
|
|
396
|
+
closingMergeRequests {
|
|
397
|
+
nodes {
|
|
398
|
+
id
|
|
399
|
+
mergeRequest {
|
|
400
|
+
id
|
|
401
|
+
iid
|
|
402
|
+
title
|
|
403
|
+
state
|
|
404
|
+
webUrl
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
featureFlags {
|
|
409
|
+
nodes {
|
|
410
|
+
id
|
|
411
|
+
name
|
|
412
|
+
path
|
|
413
|
+
reference
|
|
414
|
+
active
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
... on WorkItemWidgetCrmContacts {
|
|
419
|
+
contacts {
|
|
420
|
+
nodes {
|
|
421
|
+
id
|
|
422
|
+
firstName
|
|
423
|
+
lastName
|
|
424
|
+
email
|
|
425
|
+
phone
|
|
426
|
+
organization {
|
|
427
|
+
id
|
|
428
|
+
name
|
|
429
|
+
description
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
... on WorkItemWidgetEmailParticipants {
|
|
435
|
+
emailParticipants {
|
|
436
|
+
nodes {
|
|
437
|
+
email
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
... on WorkItemWidgetCustomFields {
|
|
442
|
+
type
|
|
443
|
+
}
|
|
444
|
+
... on WorkItemWidgetErrorTracking {
|
|
445
|
+
type
|
|
446
|
+
}
|
|
447
|
+
... on WorkItemWidgetLinkedResources {
|
|
448
|
+
linkedResources {
|
|
449
|
+
nodes {
|
|
450
|
+
url
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
... on WorkItemWidgetVulnerabilities {
|
|
455
|
+
type
|
|
456
|
+
relatedVulnerabilities(first: 25) {
|
|
457
|
+
nodes {
|
|
458
|
+
id
|
|
459
|
+
state
|
|
460
|
+
severity
|
|
461
|
+
name
|
|
462
|
+
webUrl
|
|
463
|
+
}
|
|
464
|
+
pageInfo {
|
|
465
|
+
hasNextPage
|
|
466
|
+
endCursor
|
|
467
|
+
}
|
|
468
|
+
count
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
`;
|
|
477
|
+
exports.GET_PROJECT_WORK_ITEMS = (0, graphql_tag_1.gql) `
|
|
478
|
+
query GetProjectWorkItems($projectPath: ID!, $types: [IssueType!], $first: Int, $after: String) {
|
|
479
|
+
project(fullPath: $projectPath) {
|
|
480
|
+
workItems(types: $types, first: $first, after: $after) {
|
|
481
|
+
pageInfo {
|
|
482
|
+
hasNextPage
|
|
483
|
+
endCursor
|
|
484
|
+
}
|
|
485
|
+
nodes {
|
|
486
|
+
id
|
|
487
|
+
iid
|
|
488
|
+
title
|
|
489
|
+
description
|
|
490
|
+
state
|
|
491
|
+
workItemType {
|
|
492
|
+
id
|
|
493
|
+
name
|
|
494
|
+
}
|
|
495
|
+
createdAt
|
|
496
|
+
updatedAt
|
|
497
|
+
closedAt
|
|
498
|
+
webUrl
|
|
499
|
+
widgets {
|
|
500
|
+
type
|
|
501
|
+
... on WorkItemWidgetAssignees {
|
|
502
|
+
allowsMultipleAssignees
|
|
503
|
+
canInviteMembers
|
|
504
|
+
assignees {
|
|
505
|
+
nodes {
|
|
506
|
+
id
|
|
507
|
+
username
|
|
508
|
+
name
|
|
509
|
+
avatarUrl
|
|
510
|
+
webUrl
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
... on WorkItemWidgetDescription {
|
|
515
|
+
description
|
|
516
|
+
descriptionHtml
|
|
517
|
+
edited
|
|
518
|
+
lastEditedAt
|
|
519
|
+
lastEditedBy {
|
|
520
|
+
id
|
|
521
|
+
username
|
|
522
|
+
name
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
... on WorkItemWidgetHierarchy {
|
|
526
|
+
parent {
|
|
527
|
+
id
|
|
528
|
+
iid
|
|
529
|
+
title
|
|
530
|
+
workItemType {
|
|
531
|
+
name
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
children {
|
|
535
|
+
nodes {
|
|
536
|
+
id
|
|
537
|
+
iid
|
|
538
|
+
title
|
|
539
|
+
state
|
|
540
|
+
workItemType {
|
|
541
|
+
name
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
}
|
|
546
|
+
... on WorkItemWidgetLabels {
|
|
547
|
+
allowsScopedLabels
|
|
548
|
+
labels {
|
|
549
|
+
nodes {
|
|
550
|
+
id
|
|
551
|
+
title
|
|
552
|
+
description
|
|
553
|
+
color
|
|
554
|
+
textColor
|
|
555
|
+
}
|
|
556
|
+
}
|
|
557
|
+
}
|
|
558
|
+
... on WorkItemWidgetMilestone {
|
|
559
|
+
milestone {
|
|
560
|
+
id
|
|
561
|
+
title
|
|
562
|
+
state
|
|
563
|
+
dueDate
|
|
564
|
+
startDate
|
|
565
|
+
webPath
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
... on WorkItemWidgetNotes {
|
|
569
|
+
discussions {
|
|
570
|
+
nodes {
|
|
571
|
+
id
|
|
572
|
+
resolvable
|
|
573
|
+
resolved
|
|
574
|
+
notes {
|
|
575
|
+
nodes {
|
|
576
|
+
id
|
|
577
|
+
body
|
|
578
|
+
author {
|
|
579
|
+
id
|
|
580
|
+
username
|
|
581
|
+
name
|
|
582
|
+
avatarUrl
|
|
583
|
+
}
|
|
584
|
+
createdAt
|
|
585
|
+
updatedAt
|
|
586
|
+
system
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
... on WorkItemWidgetStartAndDueDate {
|
|
593
|
+
startDate
|
|
594
|
+
dueDate
|
|
595
|
+
isFixed
|
|
596
|
+
}
|
|
597
|
+
... on WorkItemWidgetHealthStatus {
|
|
598
|
+
healthStatus
|
|
599
|
+
}
|
|
600
|
+
... on WorkItemWidgetWeight {
|
|
601
|
+
weight
|
|
602
|
+
}
|
|
603
|
+
... on WorkItemWidgetIteration {
|
|
604
|
+
iteration {
|
|
605
|
+
id
|
|
606
|
+
title
|
|
607
|
+
startDate
|
|
608
|
+
dueDate
|
|
609
|
+
webUrl
|
|
610
|
+
iterationCadence {
|
|
611
|
+
id
|
|
612
|
+
title
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
}
|
|
616
|
+
... on WorkItemWidgetProgress {
|
|
617
|
+
currentValue
|
|
618
|
+
endValue
|
|
619
|
+
progress
|
|
620
|
+
startValue
|
|
621
|
+
}
|
|
622
|
+
... on WorkItemWidgetRequirementLegacy {
|
|
623
|
+
type
|
|
624
|
+
}
|
|
625
|
+
... on WorkItemWidgetTestReports {
|
|
626
|
+
testReports {
|
|
627
|
+
nodes {
|
|
628
|
+
id
|
|
629
|
+
state
|
|
630
|
+
createdAt
|
|
631
|
+
author {
|
|
632
|
+
id
|
|
633
|
+
username
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
... on WorkItemWidgetNotifications {
|
|
639
|
+
subscribed
|
|
640
|
+
}
|
|
641
|
+
... on WorkItemWidgetCurrentUserTodos {
|
|
642
|
+
currentUserTodos {
|
|
643
|
+
nodes {
|
|
644
|
+
id
|
|
645
|
+
action
|
|
646
|
+
author {
|
|
647
|
+
id
|
|
648
|
+
username
|
|
649
|
+
}
|
|
650
|
+
createdAt
|
|
651
|
+
state
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
... on WorkItemWidgetAwardEmoji {
|
|
656
|
+
awardEmoji {
|
|
657
|
+
nodes {
|
|
658
|
+
name
|
|
659
|
+
emoji
|
|
660
|
+
description
|
|
661
|
+
user {
|
|
662
|
+
id
|
|
663
|
+
username
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
downvotes
|
|
668
|
+
upvotes
|
|
669
|
+
}
|
|
670
|
+
... on WorkItemWidgetLinkedItems {
|
|
671
|
+
linkedItems {
|
|
672
|
+
nodes {
|
|
673
|
+
linkType
|
|
674
|
+
workItem {
|
|
675
|
+
id
|
|
676
|
+
iid
|
|
677
|
+
title
|
|
678
|
+
state
|
|
679
|
+
workItemType {
|
|
680
|
+
name
|
|
681
|
+
}
|
|
682
|
+
}
|
|
683
|
+
}
|
|
684
|
+
}
|
|
685
|
+
}
|
|
686
|
+
... on WorkItemWidgetColor {
|
|
687
|
+
color
|
|
688
|
+
textColor
|
|
689
|
+
}
|
|
690
|
+
... on WorkItemWidgetParticipants {
|
|
691
|
+
participants {
|
|
692
|
+
nodes {
|
|
693
|
+
id
|
|
694
|
+
username
|
|
695
|
+
name
|
|
696
|
+
avatarUrl
|
|
697
|
+
}
|
|
698
|
+
}
|
|
699
|
+
}
|
|
700
|
+
... on WorkItemWidgetDesigns {
|
|
701
|
+
designCollection {
|
|
702
|
+
designs {
|
|
703
|
+
nodes {
|
|
704
|
+
id
|
|
705
|
+
filename
|
|
706
|
+
fullPath
|
|
707
|
+
image
|
|
708
|
+
imageV432x230
|
|
709
|
+
}
|
|
710
|
+
}
|
|
711
|
+
}
|
|
712
|
+
}
|
|
713
|
+
... on WorkItemWidgetDevelopment {
|
|
714
|
+
featureFlags {
|
|
715
|
+
nodes {
|
|
716
|
+
id
|
|
717
|
+
name
|
|
718
|
+
active
|
|
719
|
+
}
|
|
720
|
+
}
|
|
721
|
+
closingMergeRequests {
|
|
722
|
+
nodes {
|
|
723
|
+
id
|
|
724
|
+
mergeRequest {
|
|
725
|
+
id
|
|
726
|
+
iid
|
|
727
|
+
title
|
|
728
|
+
state
|
|
729
|
+
webUrl
|
|
730
|
+
}
|
|
731
|
+
}
|
|
732
|
+
}
|
|
733
|
+
}
|
|
734
|
+
... on WorkItemWidgetCrmContacts {
|
|
735
|
+
contacts {
|
|
736
|
+
nodes {
|
|
737
|
+
id
|
|
738
|
+
firstName
|
|
739
|
+
lastName
|
|
740
|
+
email
|
|
741
|
+
organization {
|
|
742
|
+
id
|
|
743
|
+
name
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
... on WorkItemWidgetTimeTracking {
|
|
749
|
+
timeEstimate
|
|
750
|
+
totalTimeSpent
|
|
751
|
+
timelogs {
|
|
752
|
+
nodes {
|
|
753
|
+
id
|
|
754
|
+
timeSpent
|
|
755
|
+
note {
|
|
756
|
+
body
|
|
757
|
+
}
|
|
758
|
+
spentAt
|
|
759
|
+
user {
|
|
760
|
+
id
|
|
761
|
+
username
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
}
|
|
765
|
+
}
|
|
766
|
+
... on WorkItemWidgetEmailParticipants {
|
|
767
|
+
emailParticipants {
|
|
768
|
+
nodes {
|
|
769
|
+
email
|
|
770
|
+
}
|
|
771
|
+
}
|
|
772
|
+
}
|
|
773
|
+
... on WorkItemWidgetCustomFields {
|
|
774
|
+
type
|
|
775
|
+
}
|
|
776
|
+
... on WorkItemWidgetErrorTracking {
|
|
777
|
+
type
|
|
778
|
+
}
|
|
779
|
+
... on WorkItemWidgetLinkedResources {
|
|
780
|
+
linkedResources {
|
|
781
|
+
nodes {
|
|
782
|
+
url
|
|
783
|
+
}
|
|
784
|
+
}
|
|
785
|
+
}
|
|
786
|
+
... on WorkItemWidgetVulnerabilities {
|
|
787
|
+
relatedVulnerabilities {
|
|
788
|
+
nodes {
|
|
789
|
+
id
|
|
790
|
+
state
|
|
791
|
+
severity
|
|
792
|
+
name
|
|
793
|
+
webUrl
|
|
794
|
+
}
|
|
795
|
+
pageInfo {
|
|
796
|
+
hasNextPage
|
|
797
|
+
endCursor
|
|
798
|
+
}
|
|
799
|
+
count
|
|
800
|
+
}
|
|
801
|
+
}
|
|
802
|
+
}
|
|
803
|
+
}
|
|
804
|
+
}
|
|
805
|
+
}
|
|
806
|
+
}
|
|
807
|
+
`;
|
|
808
|
+
exports.GET_WORK_ITEM_BY_IID = (0, graphql_tag_1.gql) `
|
|
809
|
+
query GetWorkItemByIid($namespacePath: ID!, $iid: String!) {
|
|
810
|
+
namespace(fullPath: $namespacePath) {
|
|
811
|
+
workItem(iid: $iid) {
|
|
812
|
+
id
|
|
813
|
+
iid
|
|
814
|
+
title
|
|
815
|
+
description
|
|
816
|
+
state
|
|
817
|
+
workItemType {
|
|
818
|
+
id
|
|
819
|
+
name
|
|
820
|
+
}
|
|
821
|
+
createdAt
|
|
822
|
+
updatedAt
|
|
823
|
+
closedAt
|
|
824
|
+
webUrl
|
|
825
|
+
widgets {
|
|
826
|
+
type
|
|
827
|
+
... on WorkItemWidgetAssignees {
|
|
828
|
+
allowsMultipleAssignees
|
|
829
|
+
canInviteMembers
|
|
830
|
+
assignees {
|
|
831
|
+
nodes {
|
|
832
|
+
id
|
|
833
|
+
username
|
|
834
|
+
name
|
|
835
|
+
avatarUrl
|
|
836
|
+
webUrl
|
|
837
|
+
}
|
|
838
|
+
}
|
|
839
|
+
}
|
|
840
|
+
... on WorkItemWidgetDescription {
|
|
841
|
+
description
|
|
842
|
+
descriptionHtml
|
|
843
|
+
edited
|
|
844
|
+
lastEditedAt
|
|
845
|
+
lastEditedBy {
|
|
846
|
+
id
|
|
847
|
+
username
|
|
848
|
+
name
|
|
849
|
+
}
|
|
850
|
+
}
|
|
851
|
+
... on WorkItemWidgetHierarchy {
|
|
852
|
+
parent {
|
|
853
|
+
id
|
|
854
|
+
iid
|
|
855
|
+
title
|
|
856
|
+
workItemType {
|
|
857
|
+
name
|
|
858
|
+
}
|
|
859
|
+
}
|
|
860
|
+
children {
|
|
861
|
+
nodes {
|
|
862
|
+
id
|
|
863
|
+
iid
|
|
864
|
+
title
|
|
865
|
+
workItemType {
|
|
866
|
+
name
|
|
867
|
+
}
|
|
868
|
+
}
|
|
869
|
+
}
|
|
870
|
+
hasChildren
|
|
871
|
+
}
|
|
872
|
+
... on WorkItemWidgetLabels {
|
|
873
|
+
allowsScopedLabels
|
|
874
|
+
labels {
|
|
875
|
+
nodes {
|
|
876
|
+
id
|
|
877
|
+
title
|
|
878
|
+
description
|
|
879
|
+
color
|
|
880
|
+
textColor
|
|
881
|
+
}
|
|
882
|
+
}
|
|
883
|
+
}
|
|
884
|
+
... on WorkItemWidgetMilestone {
|
|
885
|
+
milestone {
|
|
886
|
+
id
|
|
887
|
+
title
|
|
888
|
+
description
|
|
889
|
+
state
|
|
890
|
+
dueDate
|
|
891
|
+
startDate
|
|
892
|
+
webPath
|
|
893
|
+
}
|
|
894
|
+
}
|
|
895
|
+
... on WorkItemWidgetLinkedItems {
|
|
896
|
+
linkedItems {
|
|
897
|
+
nodes {
|
|
898
|
+
linkType
|
|
899
|
+
workItem {
|
|
900
|
+
id
|
|
901
|
+
iid
|
|
902
|
+
title
|
|
903
|
+
state
|
|
904
|
+
workItemType {
|
|
905
|
+
name
|
|
906
|
+
}
|
|
907
|
+
}
|
|
908
|
+
}
|
|
909
|
+
}
|
|
910
|
+
}
|
|
911
|
+
... on WorkItemWidgetTimeTracking {
|
|
912
|
+
timeEstimate
|
|
913
|
+
totalTimeSpent
|
|
914
|
+
timelogs {
|
|
915
|
+
nodes {
|
|
916
|
+
id
|
|
917
|
+
timeSpent
|
|
918
|
+
spentAt
|
|
919
|
+
summary
|
|
920
|
+
user {
|
|
921
|
+
id
|
|
922
|
+
username
|
|
923
|
+
}
|
|
924
|
+
}
|
|
925
|
+
}
|
|
926
|
+
}
|
|
927
|
+
... on WorkItemWidgetVerificationStatus {
|
|
928
|
+
verificationStatus
|
|
929
|
+
}
|
|
930
|
+
... on WorkItemWidgetTestReports {
|
|
931
|
+
testReports {
|
|
932
|
+
nodes {
|
|
933
|
+
id
|
|
934
|
+
state
|
|
935
|
+
createdAt
|
|
936
|
+
author {
|
|
937
|
+
id
|
|
938
|
+
username
|
|
939
|
+
}
|
|
940
|
+
}
|
|
941
|
+
}
|
|
942
|
+
}
|
|
943
|
+
}
|
|
944
|
+
}
|
|
945
|
+
}
|
|
946
|
+
}
|
|
947
|
+
`;
|
|
948
|
+
exports.GET_WORK_ITEM = (0, graphql_tag_1.gql) `
|
|
949
|
+
query GetWorkItem($id: WorkItemID!) {
|
|
950
|
+
workItem(id: $id) {
|
|
951
|
+
id
|
|
952
|
+
iid
|
|
953
|
+
title
|
|
954
|
+
description
|
|
955
|
+
state
|
|
956
|
+
workItemType {
|
|
957
|
+
id
|
|
958
|
+
name
|
|
959
|
+
}
|
|
960
|
+
createdAt
|
|
961
|
+
updatedAt
|
|
962
|
+
closedAt
|
|
963
|
+
webUrl
|
|
964
|
+
widgets {
|
|
965
|
+
type
|
|
966
|
+
... on WorkItemWidgetAssignees {
|
|
967
|
+
allowsMultipleAssignees
|
|
968
|
+
canInviteMembers
|
|
969
|
+
assignees {
|
|
970
|
+
nodes {
|
|
971
|
+
id
|
|
972
|
+
username
|
|
973
|
+
name
|
|
974
|
+
avatarUrl
|
|
975
|
+
webUrl
|
|
976
|
+
}
|
|
977
|
+
}
|
|
978
|
+
}
|
|
979
|
+
... on WorkItemWidgetDescription {
|
|
980
|
+
description
|
|
981
|
+
descriptionHtml
|
|
982
|
+
edited
|
|
983
|
+
lastEditedAt
|
|
984
|
+
lastEditedBy {
|
|
985
|
+
id
|
|
986
|
+
username
|
|
987
|
+
name
|
|
988
|
+
}
|
|
989
|
+
}
|
|
990
|
+
... on WorkItemWidgetHierarchy {
|
|
991
|
+
parent {
|
|
992
|
+
id
|
|
993
|
+
iid
|
|
994
|
+
title
|
|
995
|
+
workItemType {
|
|
996
|
+
name
|
|
997
|
+
}
|
|
998
|
+
}
|
|
999
|
+
children {
|
|
1000
|
+
nodes {
|
|
1001
|
+
id
|
|
1002
|
+
iid
|
|
1003
|
+
title
|
|
1004
|
+
workItemType {
|
|
1005
|
+
name
|
|
1006
|
+
}
|
|
1007
|
+
}
|
|
1008
|
+
}
|
|
1009
|
+
hasChildren
|
|
1010
|
+
}
|
|
1011
|
+
... on WorkItemWidgetLabels {
|
|
1012
|
+
allowsScopedLabels
|
|
1013
|
+
labels {
|
|
1014
|
+
nodes {
|
|
1015
|
+
id
|
|
1016
|
+
title
|
|
1017
|
+
description
|
|
1018
|
+
color
|
|
1019
|
+
textColor
|
|
1020
|
+
}
|
|
1021
|
+
}
|
|
1022
|
+
}
|
|
1023
|
+
... on WorkItemWidgetLinkedItems {
|
|
1024
|
+
linkedItems {
|
|
1025
|
+
nodes {
|
|
1026
|
+
linkType
|
|
1027
|
+
workItem {
|
|
1028
|
+
id
|
|
1029
|
+
iid
|
|
1030
|
+
title
|
|
1031
|
+
state
|
|
1032
|
+
workItemType {
|
|
1033
|
+
name
|
|
1034
|
+
}
|
|
1035
|
+
}
|
|
1036
|
+
}
|
|
1037
|
+
}
|
|
1038
|
+
}
|
|
1039
|
+
... on WorkItemWidgetTimeTracking {
|
|
1040
|
+
timeEstimate
|
|
1041
|
+
totalTimeSpent
|
|
1042
|
+
timelogs {
|
|
1043
|
+
nodes {
|
|
1044
|
+
id
|
|
1045
|
+
timeSpent
|
|
1046
|
+
spentAt
|
|
1047
|
+
summary
|
|
1048
|
+
user {
|
|
1049
|
+
id
|
|
1050
|
+
username
|
|
1051
|
+
}
|
|
1052
|
+
}
|
|
1053
|
+
}
|
|
1054
|
+
}
|
|
1055
|
+
... on WorkItemWidgetVerificationStatus {
|
|
1056
|
+
verificationStatus
|
|
1057
|
+
}
|
|
1058
|
+
... on WorkItemWidgetTestReports {
|
|
1059
|
+
testReports {
|
|
1060
|
+
nodes {
|
|
1061
|
+
id
|
|
1062
|
+
state
|
|
1063
|
+
createdAt
|
|
1064
|
+
author {
|
|
1065
|
+
id
|
|
1066
|
+
username
|
|
1067
|
+
}
|
|
1068
|
+
}
|
|
1069
|
+
}
|
|
1070
|
+
}
|
|
1071
|
+
}
|
|
1072
|
+
}
|
|
1073
|
+
}
|
|
1074
|
+
`;
|
|
1075
|
+
exports.CREATE_WORK_ITEM = (0, graphql_tag_1.gql) `
|
|
1076
|
+
mutation CreateWorkItem($namespacePath: ID!, $title: String!, $workItemTypeId: WorkItemsTypeID!) {
|
|
1077
|
+
workItemCreate(
|
|
1078
|
+
input: { namespacePath: $namespacePath, title: $title, workItemTypeId: $workItemTypeId }
|
|
1079
|
+
) {
|
|
1080
|
+
workItem {
|
|
1081
|
+
id
|
|
1082
|
+
iid
|
|
1083
|
+
title
|
|
1084
|
+
description
|
|
1085
|
+
state
|
|
1086
|
+
workItemType {
|
|
1087
|
+
id
|
|
1088
|
+
name
|
|
1089
|
+
}
|
|
1090
|
+
webUrl
|
|
1091
|
+
}
|
|
1092
|
+
errors
|
|
1093
|
+
}
|
|
1094
|
+
}
|
|
1095
|
+
`;
|
|
1096
|
+
exports.CREATE_WORK_ITEM_WITH_DESCRIPTION = (0, graphql_tag_1.gql) `
|
|
1097
|
+
mutation CreateWorkItemWithDescription(
|
|
1098
|
+
$namespacePath: ID!
|
|
1099
|
+
$title: String!
|
|
1100
|
+
$workItemTypeId: WorkItemsTypeID!
|
|
1101
|
+
$description: String!
|
|
1102
|
+
) {
|
|
1103
|
+
workItemCreate(
|
|
1104
|
+
input: {
|
|
1105
|
+
namespacePath: $namespacePath
|
|
1106
|
+
title: $title
|
|
1107
|
+
workItemTypeId: $workItemTypeId
|
|
1108
|
+
descriptionWidget: { description: $description }
|
|
1109
|
+
}
|
|
1110
|
+
) {
|
|
1111
|
+
workItem {
|
|
1112
|
+
id
|
|
1113
|
+
iid
|
|
1114
|
+
title
|
|
1115
|
+
description
|
|
1116
|
+
state
|
|
1117
|
+
workItemType {
|
|
1118
|
+
id
|
|
1119
|
+
name
|
|
1120
|
+
}
|
|
1121
|
+
webUrl
|
|
1122
|
+
}
|
|
1123
|
+
errors
|
|
1124
|
+
}
|
|
1125
|
+
}
|
|
1126
|
+
`;
|
|
1127
|
+
exports.UPDATE_WORK_ITEM = (0, graphql_tag_1.gql) `
|
|
1128
|
+
mutation UpdateWorkItem($input: WorkItemUpdateInput!) {
|
|
1129
|
+
workItemUpdate(input: $input) {
|
|
1130
|
+
workItem {
|
|
1131
|
+
id
|
|
1132
|
+
iid
|
|
1133
|
+
title
|
|
1134
|
+
description
|
|
1135
|
+
state
|
|
1136
|
+
workItemType {
|
|
1137
|
+
id
|
|
1138
|
+
name
|
|
1139
|
+
}
|
|
1140
|
+
webUrl
|
|
1141
|
+
widgets {
|
|
1142
|
+
type
|
|
1143
|
+
... on WorkItemWidgetAssignees {
|
|
1144
|
+
assignees {
|
|
1145
|
+
nodes {
|
|
1146
|
+
id
|
|
1147
|
+
username
|
|
1148
|
+
name
|
|
1149
|
+
avatarUrl
|
|
1150
|
+
webUrl
|
|
1151
|
+
}
|
|
1152
|
+
}
|
|
1153
|
+
}
|
|
1154
|
+
... on WorkItemWidgetLabels {
|
|
1155
|
+
labels {
|
|
1156
|
+
nodes {
|
|
1157
|
+
id
|
|
1158
|
+
title
|
|
1159
|
+
description
|
|
1160
|
+
color
|
|
1161
|
+
textColor
|
|
1162
|
+
}
|
|
1163
|
+
}
|
|
1164
|
+
}
|
|
1165
|
+
... on WorkItemWidgetMilestone {
|
|
1166
|
+
milestone {
|
|
1167
|
+
id
|
|
1168
|
+
title
|
|
1169
|
+
state
|
|
1170
|
+
startDate
|
|
1171
|
+
dueDate
|
|
1172
|
+
webPath
|
|
1173
|
+
}
|
|
1174
|
+
}
|
|
1175
|
+
... on WorkItemWidgetStartAndDueDate {
|
|
1176
|
+
startDate
|
|
1177
|
+
dueDate
|
|
1178
|
+
isFixed
|
|
1179
|
+
}
|
|
1180
|
+
... on WorkItemWidgetHierarchy {
|
|
1181
|
+
parent {
|
|
1182
|
+
id
|
|
1183
|
+
iid
|
|
1184
|
+
title
|
|
1185
|
+
workItemType {
|
|
1186
|
+
name
|
|
1187
|
+
}
|
|
1188
|
+
}
|
|
1189
|
+
children {
|
|
1190
|
+
nodes {
|
|
1191
|
+
id
|
|
1192
|
+
iid
|
|
1193
|
+
title
|
|
1194
|
+
workItemType {
|
|
1195
|
+
name
|
|
1196
|
+
}
|
|
1197
|
+
}
|
|
1198
|
+
}
|
|
1199
|
+
hasChildren
|
|
1200
|
+
}
|
|
1201
|
+
... on WorkItemWidgetTimeTracking {
|
|
1202
|
+
timeEstimate
|
|
1203
|
+
totalTimeSpent
|
|
1204
|
+
timelogs {
|
|
1205
|
+
nodes {
|
|
1206
|
+
id
|
|
1207
|
+
timeSpent
|
|
1208
|
+
spentAt
|
|
1209
|
+
summary
|
|
1210
|
+
user {
|
|
1211
|
+
id
|
|
1212
|
+
username
|
|
1213
|
+
}
|
|
1214
|
+
}
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
... on WorkItemWidgetWeight {
|
|
1218
|
+
weight
|
|
1219
|
+
}
|
|
1220
|
+
... on WorkItemWidgetIteration {
|
|
1221
|
+
iteration {
|
|
1222
|
+
id
|
|
1223
|
+
title
|
|
1224
|
+
startDate
|
|
1225
|
+
dueDate
|
|
1226
|
+
}
|
|
1227
|
+
}
|
|
1228
|
+
... on WorkItemWidgetHealthStatus {
|
|
1229
|
+
healthStatus
|
|
1230
|
+
}
|
|
1231
|
+
... on WorkItemWidgetProgress {
|
|
1232
|
+
currentValue
|
|
1233
|
+
endValue
|
|
1234
|
+
progress
|
|
1235
|
+
startValue
|
|
1236
|
+
}
|
|
1237
|
+
... on WorkItemWidgetColor {
|
|
1238
|
+
color
|
|
1239
|
+
}
|
|
1240
|
+
... on WorkItemWidgetLinkedItems {
|
|
1241
|
+
linkedItems {
|
|
1242
|
+
nodes {
|
|
1243
|
+
linkType
|
|
1244
|
+
workItem {
|
|
1245
|
+
id
|
|
1246
|
+
iid
|
|
1247
|
+
title
|
|
1248
|
+
state
|
|
1249
|
+
workItemType {
|
|
1250
|
+
name
|
|
1251
|
+
}
|
|
1252
|
+
}
|
|
1253
|
+
}
|
|
1254
|
+
}
|
|
1255
|
+
}
|
|
1256
|
+
... on WorkItemWidgetVerificationStatus {
|
|
1257
|
+
verificationStatus
|
|
1258
|
+
}
|
|
1259
|
+
... on WorkItemWidgetTestReports {
|
|
1260
|
+
testReports {
|
|
1261
|
+
nodes {
|
|
1262
|
+
id
|
|
1263
|
+
state
|
|
1264
|
+
createdAt
|
|
1265
|
+
author {
|
|
1266
|
+
id
|
|
1267
|
+
username
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
}
|
|
1271
|
+
}
|
|
1272
|
+
}
|
|
1273
|
+
}
|
|
1274
|
+
errors
|
|
1275
|
+
}
|
|
1276
|
+
}
|
|
1277
|
+
`;
|
|
1278
|
+
exports.DELETE_WORK_ITEM = (0, graphql_tag_1.gql) `
|
|
1279
|
+
mutation DeleteWorkItem($id: WorkItemID!) {
|
|
1280
|
+
workItemDelete(input: { id: $id }) {
|
|
1281
|
+
errors
|
|
1282
|
+
}
|
|
1283
|
+
}
|
|
1284
|
+
`;
|
|
1285
|
+
exports.TIMELOG_DELETE = (0, graphql_tag_1.gql) `
|
|
1286
|
+
mutation TimelogDelete($id: TimelogID!) {
|
|
1287
|
+
timelogDelete(input: { id: $id }) {
|
|
1288
|
+
timelog {
|
|
1289
|
+
id
|
|
1290
|
+
timeSpent
|
|
1291
|
+
spentAt
|
|
1292
|
+
summary
|
|
1293
|
+
}
|
|
1294
|
+
errors
|
|
1295
|
+
}
|
|
1296
|
+
}
|
|
1297
|
+
`;
|
|
1298
|
+
exports.GET_WORK_ITEM_TYPES = (0, graphql_tag_1.gql) `
|
|
1299
|
+
query GetWorkItemTypes($namespacePath: ID!) {
|
|
1300
|
+
namespace(fullPath: $namespacePath) {
|
|
1301
|
+
workItemTypes {
|
|
1302
|
+
nodes {
|
|
1303
|
+
id
|
|
1304
|
+
name
|
|
1305
|
+
}
|
|
1306
|
+
}
|
|
1307
|
+
}
|
|
1308
|
+
}
|
|
1309
|
+
`;
|
|
1310
|
+
exports.CREATE_WORK_ITEM_WITH_WIDGETS = (0, graphql_tag_1.gql) `
|
|
1311
|
+
mutation CreateWorkItemWithWidgets($input: WorkItemCreateInput!) {
|
|
1312
|
+
workItemCreate(input: $input) {
|
|
1313
|
+
workItem {
|
|
1314
|
+
id
|
|
1315
|
+
iid
|
|
1316
|
+
title
|
|
1317
|
+
description
|
|
1318
|
+
state
|
|
1319
|
+
workItemType {
|
|
1320
|
+
id
|
|
1321
|
+
name
|
|
1322
|
+
}
|
|
1323
|
+
createdAt
|
|
1324
|
+
updatedAt
|
|
1325
|
+
closedAt
|
|
1326
|
+
webUrl
|
|
1327
|
+
widgets {
|
|
1328
|
+
type
|
|
1329
|
+
... on WorkItemWidgetAssignees {
|
|
1330
|
+
allowsMultipleAssignees
|
|
1331
|
+
canInviteMembers
|
|
1332
|
+
assignees {
|
|
1333
|
+
nodes {
|
|
1334
|
+
id
|
|
1335
|
+
username
|
|
1336
|
+
name
|
|
1337
|
+
avatarUrl
|
|
1338
|
+
webUrl
|
|
1339
|
+
}
|
|
1340
|
+
}
|
|
1341
|
+
}
|
|
1342
|
+
... on WorkItemWidgetLabels {
|
|
1343
|
+
allowsScopedLabels
|
|
1344
|
+
labels {
|
|
1345
|
+
nodes {
|
|
1346
|
+
id
|
|
1347
|
+
title
|
|
1348
|
+
description
|
|
1349
|
+
color
|
|
1350
|
+
textColor
|
|
1351
|
+
}
|
|
1352
|
+
}
|
|
1353
|
+
}
|
|
1354
|
+
... on WorkItemWidgetDescription {
|
|
1355
|
+
description
|
|
1356
|
+
descriptionHtml
|
|
1357
|
+
edited
|
|
1358
|
+
lastEditedAt
|
|
1359
|
+
lastEditedBy {
|
|
1360
|
+
id
|
|
1361
|
+
username
|
|
1362
|
+
name
|
|
1363
|
+
}
|
|
1364
|
+
}
|
|
1365
|
+
... on WorkItemWidgetHierarchy {
|
|
1366
|
+
parent {
|
|
1367
|
+
id
|
|
1368
|
+
iid
|
|
1369
|
+
title
|
|
1370
|
+
workItemType {
|
|
1371
|
+
name
|
|
1372
|
+
}
|
|
1373
|
+
}
|
|
1374
|
+
children {
|
|
1375
|
+
nodes {
|
|
1376
|
+
id
|
|
1377
|
+
iid
|
|
1378
|
+
title
|
|
1379
|
+
workItemType {
|
|
1380
|
+
name
|
|
1381
|
+
}
|
|
1382
|
+
}
|
|
1383
|
+
}
|
|
1384
|
+
hasChildren
|
|
1385
|
+
}
|
|
1386
|
+
... on WorkItemWidgetMilestone {
|
|
1387
|
+
milestone {
|
|
1388
|
+
id
|
|
1389
|
+
title
|
|
1390
|
+
description
|
|
1391
|
+
state
|
|
1392
|
+
dueDate
|
|
1393
|
+
startDate
|
|
1394
|
+
webPath
|
|
1395
|
+
}
|
|
1396
|
+
}
|
|
1397
|
+
... on WorkItemWidgetStartAndDueDate {
|
|
1398
|
+
startDate
|
|
1399
|
+
dueDate
|
|
1400
|
+
}
|
|
1401
|
+
... on WorkItemWidgetHealthStatus {
|
|
1402
|
+
healthStatus
|
|
1403
|
+
}
|
|
1404
|
+
... on WorkItemWidgetNotifications {
|
|
1405
|
+
subscribed
|
|
1406
|
+
}
|
|
1407
|
+
... on WorkItemWidgetCurrentUserTodos {
|
|
1408
|
+
currentUserTodos {
|
|
1409
|
+
nodes {
|
|
1410
|
+
id
|
|
1411
|
+
state
|
|
1412
|
+
}
|
|
1413
|
+
}
|
|
1414
|
+
}
|
|
1415
|
+
... on WorkItemWidgetAwardEmoji {
|
|
1416
|
+
upvotes
|
|
1417
|
+
downvotes
|
|
1418
|
+
awardEmoji {
|
|
1419
|
+
nodes {
|
|
1420
|
+
name
|
|
1421
|
+
emoji
|
|
1422
|
+
user {
|
|
1423
|
+
id
|
|
1424
|
+
username
|
|
1425
|
+
name
|
|
1426
|
+
}
|
|
1427
|
+
}
|
|
1428
|
+
}
|
|
1429
|
+
}
|
|
1430
|
+
... on WorkItemWidgetColor {
|
|
1431
|
+
color
|
|
1432
|
+
}
|
|
1433
|
+
... on WorkItemWidgetParticipants {
|
|
1434
|
+
participants {
|
|
1435
|
+
nodes {
|
|
1436
|
+
id
|
|
1437
|
+
username
|
|
1438
|
+
name
|
|
1439
|
+
avatarUrl
|
|
1440
|
+
}
|
|
1441
|
+
}
|
|
1442
|
+
}
|
|
1443
|
+
... on WorkItemWidgetWeight {
|
|
1444
|
+
weight
|
|
1445
|
+
}
|
|
1446
|
+
... on WorkItemWidgetVerificationStatus {
|
|
1447
|
+
verificationStatus
|
|
1448
|
+
}
|
|
1449
|
+
... on WorkItemWidgetTimeTracking {
|
|
1450
|
+
timeEstimate
|
|
1451
|
+
totalTimeSpent
|
|
1452
|
+
}
|
|
1453
|
+
... on WorkItemWidgetIteration {
|
|
1454
|
+
iteration {
|
|
1455
|
+
id
|
|
1456
|
+
title
|
|
1457
|
+
description
|
|
1458
|
+
state
|
|
1459
|
+
startDate
|
|
1460
|
+
dueDate
|
|
1461
|
+
}
|
|
1462
|
+
}
|
|
1463
|
+
}
|
|
1464
|
+
}
|
|
1465
|
+
errors
|
|
1466
|
+
}
|
|
1467
|
+
}
|
|
1468
|
+
`;
|
|
1469
|
+
exports.WORK_ITEM_ADD_LINKED_ITEMS = (0, graphql_tag_1.gql) `
|
|
1470
|
+
mutation WorkItemAddLinkedItems($input: WorkItemAddLinkedItemsInput!) {
|
|
1471
|
+
workItemAddLinkedItems(input: $input) {
|
|
1472
|
+
workItem {
|
|
1473
|
+
id
|
|
1474
|
+
iid
|
|
1475
|
+
title
|
|
1476
|
+
state
|
|
1477
|
+
workItemType {
|
|
1478
|
+
id
|
|
1479
|
+
name
|
|
1480
|
+
}
|
|
1481
|
+
webUrl
|
|
1482
|
+
widgets {
|
|
1483
|
+
type
|
|
1484
|
+
... on WorkItemWidgetLinkedItems {
|
|
1485
|
+
linkedItems {
|
|
1486
|
+
nodes {
|
|
1487
|
+
linkType
|
|
1488
|
+
workItem {
|
|
1489
|
+
id
|
|
1490
|
+
iid
|
|
1491
|
+
title
|
|
1492
|
+
state
|
|
1493
|
+
workItemType {
|
|
1494
|
+
name
|
|
1495
|
+
}
|
|
1496
|
+
}
|
|
1497
|
+
}
|
|
1498
|
+
}
|
|
1499
|
+
}
|
|
1500
|
+
}
|
|
1501
|
+
}
|
|
1502
|
+
errors
|
|
1503
|
+
message
|
|
1504
|
+
}
|
|
1505
|
+
}
|
|
1506
|
+
`;
|
|
1507
|
+
exports.WORK_ITEM_REMOVE_LINKED_ITEMS = (0, graphql_tag_1.gql) `
|
|
1508
|
+
mutation WorkItemRemoveLinkedItems($input: WorkItemRemoveLinkedItemsInput!) {
|
|
1509
|
+
workItemRemoveLinkedItems(input: $input) {
|
|
1510
|
+
workItem {
|
|
1511
|
+
id
|
|
1512
|
+
iid
|
|
1513
|
+
title
|
|
1514
|
+
state
|
|
1515
|
+
workItemType {
|
|
1516
|
+
id
|
|
1517
|
+
name
|
|
1518
|
+
}
|
|
1519
|
+
webUrl
|
|
1520
|
+
widgets {
|
|
1521
|
+
type
|
|
1522
|
+
... on WorkItemWidgetLinkedItems {
|
|
1523
|
+
linkedItems {
|
|
1524
|
+
nodes {
|
|
1525
|
+
linkType
|
|
1526
|
+
workItem {
|
|
1527
|
+
id
|
|
1528
|
+
iid
|
|
1529
|
+
title
|
|
1530
|
+
state
|
|
1531
|
+
workItemType {
|
|
1532
|
+
name
|
|
1533
|
+
}
|
|
1534
|
+
}
|
|
1535
|
+
}
|
|
1536
|
+
}
|
|
1537
|
+
}
|
|
1538
|
+
}
|
|
1539
|
+
}
|
|
1540
|
+
errors
|
|
1541
|
+
message
|
|
1542
|
+
}
|
|
1543
|
+
}
|
|
1544
|
+
`;
|
|
1545
|
+
//# sourceMappingURL=workItems.js.map
|