@payfit/nx-core 4.48.0-ephemeral-e2e-setup-7517b32.0 → 4.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/executors/publisher/lambda.js +1 -1
- package/dist/src/executors/release/executor.js +21 -12
- package/dist/src/executors/release/executor.js.map +1 -1
- package/dist/src/scripts/nx-core-updater.js +178 -0
- package/dist/src/utils/common/nx.d.ts +14 -0
- package/dist/src/utils/common/nx.js +79 -0
- package/dist/src/utils/common/nx.js.map +1 -1
- package/dist/src/utils/spacelift/lib/__generated__/graphql.d.ts +442 -8
- package/dist/src/utils/spacelift/lib/__generated__/graphql.js +7 -9
- package/dist/src/utils/spacelift/lib/__generated__/graphql.js.map +1 -1
- package/package.json +1 -1
|
@@ -39,7 +39,7 @@ async function publishLambda(options, context, version, projectRoot, projectDist
|
|
|
39
39
|
if (!gitBranchName)
|
|
40
40
|
throw new Error('Unable to get current Git branch');
|
|
41
41
|
if (!options.lambdaFunctions) {
|
|
42
|
-
logger_1.consola.
|
|
42
|
+
logger_1.consola.info(`No lambda functions provided in project ${context.projectName} no "lambdaFunctions" parameter in project.json metadata, skipping`);
|
|
43
43
|
return;
|
|
44
44
|
}
|
|
45
45
|
if (!options.lambdaStacks) {
|
|
@@ -4,9 +4,10 @@ const release_1 = require("nx/release");
|
|
|
4
4
|
const circleci_1 = require("../../utils/common/circleci");
|
|
5
5
|
const github_1 = require("../../utils/common/github");
|
|
6
6
|
const logger_1 = require("../../utils/common/logger");
|
|
7
|
+
const nx_1 = require("../../utils/common/nx");
|
|
7
8
|
const tsh_1 = require("../../utils/common/tsh");
|
|
8
9
|
const runExecutor = async (options, context) => {
|
|
9
|
-
const
|
|
10
|
+
const dryRun = process.env.NX_DRY_RUN === 'true' || options.dryRun || false;
|
|
10
11
|
if ((0, circleci_1.isCircleCIRunner)()) {
|
|
11
12
|
logger_1.consola.start('CircleCI runner detected, setting it up!');
|
|
12
13
|
await (0, circleci_1.setupCircleCIRunner)();
|
|
@@ -18,22 +19,32 @@ const runExecutor = async (options, context) => {
|
|
|
18
19
|
const isPreRelease = options?.preRelease != null
|
|
19
20
|
? options.preRelease
|
|
20
21
|
: branchName != 'main' && branchName != 'master';
|
|
22
|
+
const specifier = isPreRelease ? 'prerelease' : options.specifier;
|
|
23
|
+
const groups = options.groups && options.groups.length > 0 ? options.groups : undefined;
|
|
21
24
|
if (isPreRelease)
|
|
22
25
|
logger_1.consola.warn('This is an ephemeral release');
|
|
26
|
+
const allProjects = await (0, nx_1.getAffectedProjects)(groups);
|
|
27
|
+
if (allProjects.length === 0) {
|
|
28
|
+
logger_1.consola.warn('No projects to publish');
|
|
29
|
+
return {
|
|
30
|
+
success: true,
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
logger_1.consola.success(`Found ${allProjects.length} affected projects: ${allProjects.join(', ')}`);
|
|
23
34
|
// Step 1: Version Release
|
|
24
35
|
logger_1.consola.start('Calculating new versions');
|
|
25
36
|
const { projectsVersionData } = await (0, release_1.releaseVersion)({
|
|
26
|
-
dryRun
|
|
37
|
+
dryRun,
|
|
27
38
|
verbose: options.verbose,
|
|
28
|
-
|
|
29
|
-
|
|
39
|
+
specifier,
|
|
40
|
+
projects: allProjects,
|
|
30
41
|
preid: isPreRelease
|
|
31
42
|
? `ephemeral-${branchName.substring(0, 100)}-${commit.substring(0, 7)}`
|
|
32
43
|
: undefined,
|
|
33
44
|
});
|
|
34
45
|
logger_1.consola.success('New versions calculated successfully!');
|
|
35
46
|
// iterate over `projectsVersionData` to extract changed projects
|
|
36
|
-
const
|
|
47
|
+
const changedProjects = Object.entries(projectsVersionData)
|
|
37
48
|
.map(([projectName, versionData]) => {
|
|
38
49
|
if (versionData?.newVersion) {
|
|
39
50
|
logger_1.consola.info(`Project '${projectName}' will be updated to version ${versionData.newVersion}`);
|
|
@@ -42,7 +53,7 @@ const runExecutor = async (options, context) => {
|
|
|
42
53
|
return null; // filter out projects that didn't change
|
|
43
54
|
})
|
|
44
55
|
.filter(Boolean);
|
|
45
|
-
if (
|
|
56
|
+
if (changedProjects.length === 0) {
|
|
46
57
|
logger_1.consola.warn('No project to publish');
|
|
47
58
|
return {
|
|
48
59
|
success: true,
|
|
@@ -52,11 +63,10 @@ const runExecutor = async (options, context) => {
|
|
|
52
63
|
logger_1.consola.start('Generating & pushing changelogs');
|
|
53
64
|
await (0, release_1.releaseChangelog)({
|
|
54
65
|
versionData: projectsVersionData,
|
|
55
|
-
dryRun
|
|
66
|
+
dryRun,
|
|
56
67
|
verbose: options.verbose,
|
|
57
|
-
projects:
|
|
68
|
+
projects: changedProjects,
|
|
58
69
|
createRelease: isPreRelease ? false : 'github',
|
|
59
|
-
groups: options.groups && options.groups.length > 0 ? options.groups : undefined,
|
|
60
70
|
});
|
|
61
71
|
logger_1.consola.success('Generated & pushed changelogs successfully!');
|
|
62
72
|
if (options.skipPublish) {
|
|
@@ -68,11 +78,10 @@ const runExecutor = async (options, context) => {
|
|
|
68
78
|
// Step 3: Publish Release
|
|
69
79
|
logger_1.consola.start('Publishing packages');
|
|
70
80
|
const publishResults = await (0, release_1.releasePublish)({
|
|
71
|
-
projects:
|
|
72
|
-
dryRun
|
|
81
|
+
projects: changedProjects,
|
|
82
|
+
dryRun,
|
|
73
83
|
verbose: options.verbose,
|
|
74
84
|
tag: isPreRelease ? 'ephemeral' : undefined,
|
|
75
|
-
groups: options.groups && options.groups.length > 0 ? options.groups : undefined,
|
|
76
85
|
});
|
|
77
86
|
// Log publish results
|
|
78
87
|
let publishError = false;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../src/executors/release/executor.ts"],"names":[],"mappings":";;AACA,wCAA6E;AAE7E,0DAGoC;AACpC,sDAGkC;AAClC,sDAAmD;AACnD,gDAAkD;AAGlD,MAAM,WAAW,GAGqB,KAAK,EACzC,OAA+B,EAC/B,OAAwB,EACxB,EAAE;IACF,MAAM,
|
|
1
|
+
{"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../src/executors/release/executor.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const { exec } = require('child_process')
|
|
4
|
+
const fs = require('fs/promises')
|
|
5
|
+
const path = require('path')
|
|
6
|
+
const { promisify } = require('util')
|
|
7
|
+
|
|
8
|
+
const execAsync = promisify(exec)
|
|
9
|
+
|
|
10
|
+
// Configuration
|
|
11
|
+
const NX_CORE_VERSION = '4.47.3'
|
|
12
|
+
const REPOSITORIES = ['core-platform', 'documents']
|
|
13
|
+
const WORK_DIR = '/tmp/nx-core-updater'
|
|
14
|
+
|
|
15
|
+
// Execute command in directory
|
|
16
|
+
async function run(command, cwd = process.cwd()) {
|
|
17
|
+
try {
|
|
18
|
+
const { stdout, stderr } = await execAsync(command, { cwd })
|
|
19
|
+
if (stderr) {
|
|
20
|
+
console.error(`Warning from command "${command}": ${stderr}`)
|
|
21
|
+
}
|
|
22
|
+
return stdout.trim()
|
|
23
|
+
} catch (error) {
|
|
24
|
+
console.error(`Command "${command}" failed: ${error.message}`)
|
|
25
|
+
throw new Error(`${command} failed: ${error.message}`)
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
// Check if package.json exists and needs update
|
|
30
|
+
async function needsUpdate(repoPath) {
|
|
31
|
+
try {
|
|
32
|
+
const packageJsonPath = path.join(repoPath, 'package.json')
|
|
33
|
+
const packageJson = JSON.parse(await fs.readFile(packageJsonPath, 'utf8'))
|
|
34
|
+
const currentVersion = packageJson.devDependencies?.['@payfit/nx-core']
|
|
35
|
+
|
|
36
|
+
if (!currentVersion) {
|
|
37
|
+
console.log(` ℹ @payfit/nx-core not found in devDependencies`)
|
|
38
|
+
return false
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
if (currentVersion === NX_CORE_VERSION) {
|
|
42
|
+
console.log(` ℹ Already on version ${NX_CORE_VERSION}`)
|
|
43
|
+
return false
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
console.log(
|
|
47
|
+
` 📦 Current version: ${currentVersion}, target: ${NX_CORE_VERSION}`,
|
|
48
|
+
)
|
|
49
|
+
return true
|
|
50
|
+
} catch (error) {
|
|
51
|
+
console.error(` ❌ Could not read package.json: ${error.message}`)
|
|
52
|
+
return false
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
// Process a single repository
|
|
57
|
+
async function processRepo(repoName) {
|
|
58
|
+
console.log(`\n🚀 Processing ${repoName}`)
|
|
59
|
+
|
|
60
|
+
const repoPath = path.join(WORK_DIR, repoName)
|
|
61
|
+
|
|
62
|
+
try {
|
|
63
|
+
// Clone repo
|
|
64
|
+
console.log(` 📥 Cloning repository...`)
|
|
65
|
+
await run(
|
|
66
|
+
`git clone https://github.com/PayFit/${repoName}.git ${repoPath}`,
|
|
67
|
+
WORK_DIR,
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
// Check if update needed
|
|
71
|
+
if (!(await needsUpdate(repoPath))) {
|
|
72
|
+
console.log(` ⏭️ Skipping ${repoName} - no update needed`)
|
|
73
|
+
return
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
// Create branch
|
|
77
|
+
const branchName = `nx-core-v${NX_CORE_VERSION}`
|
|
78
|
+
console.log(` 🌿 Creating branch ${branchName}`)
|
|
79
|
+
await run('git checkout main', repoPath)
|
|
80
|
+
await run(`git checkout -b ${branchName}`, repoPath)
|
|
81
|
+
|
|
82
|
+
// Install dependencies and migrate
|
|
83
|
+
console.log(` 📦 Installing dependencies...`)
|
|
84
|
+
await run('yarn', repoPath)
|
|
85
|
+
|
|
86
|
+
console.log(` 🔄 Migrating nx-core to version ${NX_CORE_VERSION}...`)
|
|
87
|
+
await run(`yarn nx migrate '@payfit/nx-core@${NX_CORE_VERSION}'`, repoPath)
|
|
88
|
+
|
|
89
|
+
console.log(` 📦 Installing dependencies after migration...`)
|
|
90
|
+
await run('yarn', repoPath)
|
|
91
|
+
|
|
92
|
+
// Stage, commit and push
|
|
93
|
+
console.log(` 📝 Staging and committing changes...`)
|
|
94
|
+
await run('git add .', repoPath)
|
|
95
|
+
await run(
|
|
96
|
+
`git commit -m "chore(nx-core): update nx-core to version ${NX_CORE_VERSION}"`,
|
|
97
|
+
repoPath,
|
|
98
|
+
)
|
|
99
|
+
await run(`git push origin ${branchName}`, repoPath)
|
|
100
|
+
|
|
101
|
+
// Create PR if it doesn't exist
|
|
102
|
+
console.log(` 🔍 Checking for existing pull requests...`)
|
|
103
|
+
const existingPRs = await run(
|
|
104
|
+
`gh pr list --repo PayFit/${repoName} --head ${branchName} --json number`,
|
|
105
|
+
)
|
|
106
|
+
if (JSON.parse(existingPRs).length === 0) {
|
|
107
|
+
console.log(` 📋 Creating pull request...`)
|
|
108
|
+
await run(
|
|
109
|
+
`gh pr create --repo PayFit/${repoName} --title "chore(nx-core): update nx-core to version ${NX_CORE_VERSION}" --body "Update @payfit/nx-core to ${NX_CORE_VERSION}" --head ${branchName}`,
|
|
110
|
+
)
|
|
111
|
+
console.log(` ✅ Successfully created PR for ${repoName}`)
|
|
112
|
+
} else {
|
|
113
|
+
console.log(` ℹ️ PR already exists for ${repoName}`)
|
|
114
|
+
}
|
|
115
|
+
} catch (error) {
|
|
116
|
+
console.error(` ❌ Failed to process ${repoName}: ${error.message}`)
|
|
117
|
+
throw error
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
// Check if gh CLI is installed and user is authenticated
|
|
122
|
+
async function checkGhCli() {
|
|
123
|
+
try {
|
|
124
|
+
console.log('🔍 Checking if gh CLI is installed...')
|
|
125
|
+
await run('gh --version')
|
|
126
|
+
console.log('✅ gh CLI is installed')
|
|
127
|
+
|
|
128
|
+
console.log('🔐 Checking authentication status...')
|
|
129
|
+
await run('gh auth status')
|
|
130
|
+
console.log('✅ User is authenticated with gh CLI')
|
|
131
|
+
} catch (error) {
|
|
132
|
+
console.error(
|
|
133
|
+
'❌ gh CLI check failed. Please install gh CLI and authenticate.',
|
|
134
|
+
)
|
|
135
|
+
console.error('Install: https://cli.github.com/')
|
|
136
|
+
console.error('Authenticate: gh auth login')
|
|
137
|
+
throw new Error('gh CLI not properly configured')
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
// Main function
|
|
142
|
+
async function main() {
|
|
143
|
+
console.log(`🎯 nx-core Updater - version ${NX_CORE_VERSION}`)
|
|
144
|
+
console.log(`📋 Processing ${REPOSITORIES.length} repositories`)
|
|
145
|
+
|
|
146
|
+
try {
|
|
147
|
+
// Check gh CLI
|
|
148
|
+
await checkGhCli()
|
|
149
|
+
|
|
150
|
+
// Setup work directory
|
|
151
|
+
console.log(`🧹 Cleaning up work directory: ${WORK_DIR}`)
|
|
152
|
+
await fs.rm(WORK_DIR, { recursive: true, force: true }).catch(() => {
|
|
153
|
+
// ignore error if directory does not exist
|
|
154
|
+
})
|
|
155
|
+
await fs.mkdir(WORK_DIR, { recursive: true })
|
|
156
|
+
|
|
157
|
+
// Process repositories sequentially
|
|
158
|
+
console.log(`\n🔄 Processing repositories...`)
|
|
159
|
+
for (const repo of REPOSITORIES) {
|
|
160
|
+
await processRepo(repo)
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
// Cleanup
|
|
164
|
+
console.log(`\n🧹 Cleaning up work directory...`)
|
|
165
|
+
await fs.rm(WORK_DIR, { recursive: true, force: true }).catch(() => {
|
|
166
|
+
// ignore error if directory does not exist
|
|
167
|
+
})
|
|
168
|
+
console.log('\n🎉 Done!')
|
|
169
|
+
} catch (error) {
|
|
170
|
+
console.error(`\n💥 Script failed: ${error.message}`)
|
|
171
|
+
process.exit(1)
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
main().catch(error => {
|
|
176
|
+
console.error(`💥 Unhandled error: ${error.message}`)
|
|
177
|
+
process.exit(1)
|
|
178
|
+
})
|
|
@@ -6,3 +6,17 @@ export declare function getDistForApp(context: ExecutorContext): Promise<string>
|
|
|
6
6
|
* @returns {string | null} The project version from manifest files or null if not found
|
|
7
7
|
*/
|
|
8
8
|
export declare function getVersion(context: ExecutorContext): string | null;
|
|
9
|
+
/**
|
|
10
|
+
* Invoke Nx CLI to fetch affected projects with optional include/exclude filters.
|
|
11
|
+
*/
|
|
12
|
+
export declare const getAffectedProjectCliWithFilters: (includes: string[], excludes: string[]) => Promise<import("tinyexec").Output>;
|
|
13
|
+
export declare const nxFns: {
|
|
14
|
+
getAffectedProjectCliWithFilters: (includes: string[], excludes: string[]) => Promise<import("tinyexec").Output>;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* Get the list of currently affected projects that have the nx-release-publish target (which make them publishable)
|
|
18
|
+
* and are included in the release configuration.
|
|
19
|
+
*
|
|
20
|
+
* @param releaseGroups
|
|
21
|
+
*/
|
|
22
|
+
export declare function getAffectedProjects(releaseGroups?: string[]): Promise<string[]>;
|
|
@@ -1,11 +1,30 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.nxFns = exports.getAffectedProjectCliWithFilters = void 0;
|
|
3
4
|
exports.getDistForApp = getDistForApp;
|
|
4
5
|
exports.getVersion = getVersion;
|
|
6
|
+
exports.getAffectedProjects = getAffectedProjects;
|
|
5
7
|
const fs = require("node:fs");
|
|
6
8
|
const path_1 = require("path");
|
|
7
9
|
const devkit_1 = require("@nx/devkit");
|
|
8
10
|
const utils_1 = require("nx/src/tasks-runner/utils");
|
|
11
|
+
const exec_1 = require("./exec");
|
|
12
|
+
const logger_1 = require("./logger");
|
|
13
|
+
/**
|
|
14
|
+
* Read and return the Nx workspace nx.json configuration if present.
|
|
15
|
+
*/
|
|
16
|
+
function readNxJsonConfig() {
|
|
17
|
+
try {
|
|
18
|
+
const nxJsonPath = (0, path_1.join)(devkit_1.workspaceRoot, 'nx.json');
|
|
19
|
+
if (!fs.existsSync(nxJsonPath))
|
|
20
|
+
return undefined;
|
|
21
|
+
return (0, devkit_1.readJsonFile)(nxJsonPath);
|
|
22
|
+
}
|
|
23
|
+
catch (error) {
|
|
24
|
+
logger_1.consola.error('Failed to read nx.json configuration:', error);
|
|
25
|
+
return undefined;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
9
28
|
async function getDistForApp(context) {
|
|
10
29
|
const target = (0, devkit_1.parseTargetString)('build', context);
|
|
11
30
|
const project = context.projectGraph.nodes[target.project].data;
|
|
@@ -92,4 +111,64 @@ function getVersion(context) {
|
|
|
92
111
|
}
|
|
93
112
|
return null;
|
|
94
113
|
}
|
|
114
|
+
/**
|
|
115
|
+
* Invoke Nx CLI to fetch affected projects with optional include/exclude filters.
|
|
116
|
+
*/
|
|
117
|
+
const getAffectedProjectCliWithFilters = async (includes, excludes) => {
|
|
118
|
+
const args = [
|
|
119
|
+
'npx nx show projects --affected --with-target="nx-release-publish" --json',
|
|
120
|
+
];
|
|
121
|
+
if (includes && includes.length > 0) {
|
|
122
|
+
args.push(`--projects="${includes.join(',')}"`);
|
|
123
|
+
}
|
|
124
|
+
if (excludes && excludes.length > 0) {
|
|
125
|
+
args.push(`--exclude="${excludes.join(',')}"`);
|
|
126
|
+
}
|
|
127
|
+
return (0, exec_1.exec)(args.join(' '), {
|
|
128
|
+
throwOnError: true,
|
|
129
|
+
});
|
|
130
|
+
};
|
|
131
|
+
exports.getAffectedProjectCliWithFilters = getAffectedProjectCliWithFilters;
|
|
132
|
+
// Export a container to enable clean spying/mocking in tests while keeping functions local
|
|
133
|
+
exports.nxFns = { getAffectedProjectCliWithFilters: exports.getAffectedProjectCliWithFilters };
|
|
134
|
+
/**
|
|
135
|
+
* Get the list of currently affected projects that have the nx-release-publish target (which make them publishable)
|
|
136
|
+
* and are included in the release configuration.
|
|
137
|
+
*
|
|
138
|
+
* @param releaseGroups
|
|
139
|
+
*/
|
|
140
|
+
async function getAffectedProjects(releaseGroups) {
|
|
141
|
+
const includes = [];
|
|
142
|
+
const excludes = [];
|
|
143
|
+
let patterns = [];
|
|
144
|
+
const nxConfig = readNxJsonConfig();
|
|
145
|
+
// Get patterns list
|
|
146
|
+
// No groups: just return affected projects with the target
|
|
147
|
+
if (!releaseGroups || releaseGroups.length === 0) {
|
|
148
|
+
// If global release.projects is configured, honor it
|
|
149
|
+
if (nxConfig?.release?.projects.length > 0) {
|
|
150
|
+
patterns = patterns.concat(nxConfig?.release?.projects);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
else {
|
|
154
|
+
// Read nx.json
|
|
155
|
+
const nxConfig = readNxJsonConfig();
|
|
156
|
+
// Collect include/exclude patterns across release groups
|
|
157
|
+
const releaseGroupsConfig = nxConfig?.release?.groups || {};
|
|
158
|
+
for (const group of releaseGroups) {
|
|
159
|
+
patterns = patterns.concat(releaseGroupsConfig[group]?.projects);
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
for (const p of patterns) {
|
|
163
|
+
if (typeof p !== 'string')
|
|
164
|
+
continue;
|
|
165
|
+
if (p.startsWith('!'))
|
|
166
|
+
excludes.push(p.substring(1)); // remove the '!' character
|
|
167
|
+
else
|
|
168
|
+
includes.push(p);
|
|
169
|
+
}
|
|
170
|
+
const normalizedIncludes = includes.length > 0 ? includes : ['*'];
|
|
171
|
+
const result = await exports.nxFns.getAffectedProjectCliWithFilters(normalizedIncludes, excludes);
|
|
172
|
+
return JSON.parse(result.stdout);
|
|
173
|
+
}
|
|
95
174
|
//# sourceMappingURL=nx.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nx.js","sourceRoot":"","sources":["../../../../src/utils/common/nx.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"nx.js","sourceRoot":"","sources":["../../../../src/utils/common/nx.ts"],"names":[],"mappings":"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"}
|
|
@@ -520,6 +520,8 @@ export type AuditTrailEntry = {
|
|
|
520
520
|
* example a Blueprint that was used to create a stack. This is only populated for certain events.
|
|
521
521
|
*/
|
|
522
522
|
relatedResource?: Maybe<AuditTrailResource>;
|
|
523
|
+
/** RemoteIP is the IP address of the user who triggered the event */
|
|
524
|
+
remoteIP?: Maybe<Scalars['String']['output']>;
|
|
523
525
|
/** UpdatedAt is unix timestamp (in seconds) at which the entry was updated */
|
|
524
526
|
updatedAt: Scalars['Int']['output'];
|
|
525
527
|
};
|
|
@@ -613,7 +615,7 @@ export type AuditTrailResource = {
|
|
|
613
615
|
* Each AuditTrailResourceType has a corresponding metadata type containing additional information
|
|
614
616
|
* about that resource.
|
|
615
617
|
*/
|
|
616
|
-
export type AuditTrailResourceMetadata = AuditTrailApiKeyMetadata | AuditTrailApiKeyRoleBindingMetadata | AuditTrailAwsIntegrationMetadata | AuditTrailAccountMetadata | AuditTrailAzureDevOpsRepoIntegrationMetadata | AuditTrailAzureIntegrationMetadata | AuditTrailBitbucketCloudIntegrationMetadata | AuditTrailBitbucketDatacenterIntegrationMetadata | AuditTrailBlueprintMetadata | AuditTrailBlueprintVersionedGroupMetadata | AuditTrailContextMetadata | AuditTrailDriftDetectionIntegrationMetadata | AuditTrailExternalIntegrationMetadata | AuditTrailGpgKeyMetadata | AuditTrailGenericFormMetadata | AuditTrailGithubAppInstallationMetadata | AuditTrailGithubEnterpriseIntegrationMetadata | AuditTrailGitlabIntegrationMetadata | AuditTrailLoginMetadata | AuditTrailModuleMetadata | AuditTrailNamedWebhooksIntegrationMetadata | AuditTrailPolicyMetadata | AuditTrailRunMetadata | AuditTrailScheduledDeleteMetadata | AuditTrailScheduledRunMetadata | AuditTrailScheduledTaskMetadata | AuditTrailSecurityKeyMetadata | AuditTrailSessionMetadata | AuditTrailSpaceMetadata | AuditTrailStackMetadata | AuditTrailTaskMetadata | AuditTrailTerraformProviderMetadata | AuditTrailTerraformProviderVersionMetadata | AuditTrailUserGroupIntegrationMetadata | AuditTrailUserGroupMetadata | AuditTrailUserMetadata | AuditTrailVersionMetadata | AuditTrailWebhookMetadata | AuditTrailWorkerMetadata | AuditTrailWorkerPoolMetadata;
|
|
618
|
+
export type AuditTrailResourceMetadata = AuditTrailApiKeyMetadata | AuditTrailApiKeyRoleBindingMetadata | AuditTrailAwsIntegrationMetadata | AuditTrailAccountMetadata | AuditTrailAzureDevOpsRepoIntegrationMetadata | AuditTrailAzureIntegrationMetadata | AuditTrailBitbucketCloudIntegrationMetadata | AuditTrailBitbucketDatacenterIntegrationMetadata | AuditTrailBlueprintMetadata | AuditTrailBlueprintVersionedGroupMetadata | AuditTrailContextMetadata | AuditTrailDriftDetectionIntegrationMetadata | AuditTrailExternalIntegrationMetadata | AuditTrailGpgKeyMetadata | AuditTrailGenericFormMetadata | AuditTrailGithubAppInstallationMetadata | AuditTrailGithubEnterpriseIntegrationMetadata | AuditTrailGitlabIntegrationMetadata | AuditTrailLoginMetadata | AuditTrailModuleMetadata | AuditTrailNamedWebhooksIntegrationMetadata | AuditTrailPolicyMetadata | AuditTrailRoleMetadata | AuditTrailRunMetadata | AuditTrailScheduledDeleteMetadata | AuditTrailScheduledRunMetadata | AuditTrailScheduledTaskMetadata | AuditTrailSecurityKeyMetadata | AuditTrailSessionMetadata | AuditTrailSpaceMetadata | AuditTrailStackMetadata | AuditTrailTaskMetadata | AuditTrailTerraformProviderMetadata | AuditTrailTerraformProviderVersionMetadata | AuditTrailUserGroupIntegrationMetadata | AuditTrailUserGroupMetadata | AuditTrailUserGroupRoleBindingMetadata | AuditTrailUserMetadata | AuditTrailUserRoleBindingMetadata | AuditTrailVersionMetadata | AuditTrailWebhookMetadata | AuditTrailWorkerMetadata | AuditTrailWorkerPoolMetadata;
|
|
617
619
|
export declare enum AuditTrailResourceType {
|
|
618
620
|
Account = "ACCOUNT",
|
|
619
621
|
ApiKey = "API_KEY",
|
|
@@ -638,6 +640,7 @@ export declare enum AuditTrailResourceType {
|
|
|
638
640
|
NamedWebhooksIntegration = "NAMED_WEBHOOKS_INTEGRATION",
|
|
639
641
|
Notification = "NOTIFICATION",
|
|
640
642
|
Policy = "POLICY",
|
|
643
|
+
Role = "ROLE",
|
|
641
644
|
Run = "RUN",
|
|
642
645
|
ScheduledDelete = "SCHEDULED_DELETE",
|
|
643
646
|
ScheduledRun = "SCHEDULED_RUN",
|
|
@@ -653,11 +656,22 @@ export declare enum AuditTrailResourceType {
|
|
|
653
656
|
User = "USER",
|
|
654
657
|
UserGroup = "USER_GROUP",
|
|
655
658
|
UserGroupIntegration = "USER_GROUP_INTEGRATION",
|
|
659
|
+
UserGroupRoleBinding = "USER_GROUP_ROLE_BINDING",
|
|
660
|
+
UserRoleBinding = "USER_ROLE_BINDING",
|
|
656
661
|
Version = "VERSION",
|
|
657
662
|
Webhook = "WEBHOOK",
|
|
658
663
|
Worker = "WORKER",
|
|
659
664
|
WorkerPool = "WORKER_POOL"
|
|
660
665
|
}
|
|
666
|
+
export type AuditTrailRoleMetadata = {
|
|
667
|
+
__typename?: 'AuditTrailRoleMetadata';
|
|
668
|
+
/** The ID of the role. */
|
|
669
|
+
id: Scalars['ID']['output'];
|
|
670
|
+
/** The name of the role. */
|
|
671
|
+
name: Scalars['String']['output'];
|
|
672
|
+
/** The slug of the role. */
|
|
673
|
+
slug: Scalars['String']['output'];
|
|
674
|
+
};
|
|
661
675
|
export type AuditTrailRunMetadata = {
|
|
662
676
|
__typename?: 'AuditTrailRunMetadata';
|
|
663
677
|
/** The ID of the run. */
|
|
@@ -746,11 +760,35 @@ export type AuditTrailUserGroupMetadata = {
|
|
|
746
760
|
/** The name of the group. */
|
|
747
761
|
name: Scalars['String']['output'];
|
|
748
762
|
};
|
|
763
|
+
export type AuditTrailUserGroupRoleBindingMetadata = {
|
|
764
|
+
__typename?: 'AuditTrailUserGroupRoleBindingMetadata';
|
|
765
|
+
/** The ID of the user group role binding. */
|
|
766
|
+
id: Scalars['ID']['output'];
|
|
767
|
+
/** The ULID of the role. */
|
|
768
|
+
roleULID: Scalars['ID']['output'];
|
|
769
|
+
/** The ID of the space. */
|
|
770
|
+
spaceID: Scalars['ID']['output'];
|
|
771
|
+
/** The ID of the user group. */
|
|
772
|
+
userGroupID: Scalars['ID']['output'];
|
|
773
|
+
/** The name of the user group. */
|
|
774
|
+
userGroupName: Scalars['String']['output'];
|
|
775
|
+
};
|
|
749
776
|
export type AuditTrailUserMetadata = {
|
|
750
777
|
__typename?: 'AuditTrailUserMetadata';
|
|
751
778
|
/** The user's username. */
|
|
752
779
|
username: Scalars['String']['output'];
|
|
753
780
|
};
|
|
781
|
+
export type AuditTrailUserRoleBindingMetadata = {
|
|
782
|
+
__typename?: 'AuditTrailUserRoleBindingMetadata';
|
|
783
|
+
/** The ID of the user role binding. */
|
|
784
|
+
id: Scalars['ID']['output'];
|
|
785
|
+
/** The ULID of the role. */
|
|
786
|
+
roleULID: Scalars['ID']['output'];
|
|
787
|
+
/** The ID of the space. */
|
|
788
|
+
spaceID: Scalars['ID']['output'];
|
|
789
|
+
/** The username of the user. */
|
|
790
|
+
username: Scalars['String']['output'];
|
|
791
|
+
};
|
|
754
792
|
export type AuditTrailVersionMetadata = {
|
|
755
793
|
__typename?: 'AuditTrailVersionMetadata';
|
|
756
794
|
/** The ID of the version. */
|
|
@@ -935,6 +973,20 @@ export type AwsIntegrationExternalIdForStackArgs = {
|
|
|
935
973
|
stackId: Scalars['ID']['input'];
|
|
936
974
|
write: Scalars['Boolean']['input'];
|
|
937
975
|
};
|
|
976
|
+
/** AwsIntegrationIntentProjectAttachment represents the attachment of an AWS integration to an intent context. */
|
|
977
|
+
export type AwsIntegrationIntentProjectAttachment = {
|
|
978
|
+
__typename?: 'AwsIntegrationIntentProjectAttachment';
|
|
979
|
+
/** The AWS integration attached to the intent context. */
|
|
980
|
+
awsIntegration: AwsIntegration;
|
|
981
|
+
/** Globally unique attachment identifier. */
|
|
982
|
+
id: Scalars['ID']['output'];
|
|
983
|
+
/** The intent context the AWS integration is attached to. */
|
|
984
|
+
intentProject: IntentProject;
|
|
985
|
+
/** True if this attachment is used for read operations. */
|
|
986
|
+
read: Scalars['Boolean']['output'];
|
|
987
|
+
/** True if this attachment is used for write operations. */
|
|
988
|
+
write: Scalars['Boolean']['output'];
|
|
989
|
+
};
|
|
938
990
|
/** AwsIntegrationStackAttachment is the stack attachment viewed from the integration. */
|
|
939
991
|
export type AwsIntegrationStackAttachment = {
|
|
940
992
|
__typename?: 'AwsIntegrationStackAttachment';
|
|
@@ -1208,6 +1260,11 @@ export type BitbucketCloudIntegration = {
|
|
|
1208
1260
|
labels: Array<Scalars['String']['output']>;
|
|
1209
1261
|
name: Scalars['String']['output'];
|
|
1210
1262
|
space?: Maybe<Space>;
|
|
1263
|
+
/**
|
|
1264
|
+
* Indicates whether the integration should use git checkout. If false source code will be downloaded using the VCS API.
|
|
1265
|
+
* For Bitbucket Cloud this is always true because tarball download does not work with API Tokens.
|
|
1266
|
+
*/
|
|
1267
|
+
useGitCheckout: Scalars['Boolean']['output'];
|
|
1211
1268
|
/** Username to be used for authentication. */
|
|
1212
1269
|
username: Scalars['String']['output'];
|
|
1213
1270
|
vcsChecks: VcsCheck;
|
|
@@ -1307,12 +1364,6 @@ export type BlueprintCreateInput = {
|
|
|
1307
1364
|
/** Blueprint body */
|
|
1308
1365
|
template?: InputMaybe<Scalars['String']['input']>;
|
|
1309
1366
|
};
|
|
1310
|
-
export declare enum BlueprintFormat {
|
|
1311
|
-
/** Invalid "zero value" for the type. */
|
|
1312
|
-
Unknown = "UNKNOWN",
|
|
1313
|
-
/** YAML format */
|
|
1314
|
-
Yaml = "YAML"
|
|
1315
|
-
}
|
|
1316
1367
|
export type BlueprintInput = {
|
|
1317
1368
|
__typename?: 'BlueprintInput';
|
|
1318
1369
|
/** Default of the blueprint input. */
|
|
@@ -1634,6 +1685,11 @@ export type Context = Hookable & {
|
|
|
1634
1685
|
labels: Array<Scalars['String']['output']>;
|
|
1635
1686
|
/** Fancy, mutable name of the context to show in the UI. */
|
|
1636
1687
|
name: Scalars['String']['output'];
|
|
1688
|
+
/**
|
|
1689
|
+
* Plugin that is managing the context.
|
|
1690
|
+
* Used to indicate that modifications are restricted by a plugin action.
|
|
1691
|
+
*/
|
|
1692
|
+
plugin?: Maybe<Plugin>;
|
|
1637
1693
|
/** ID of the space this Context belongs to. */
|
|
1638
1694
|
space: Scalars['ID']['output'];
|
|
1639
1695
|
/** Details of the space this Context belongs to. */
|
|
@@ -2185,6 +2241,8 @@ export type GithubEnterpriseIntegrationInstallation = {
|
|
|
2185
2241
|
/** GithubIntegration shows build-in GitHub integration details. */
|
|
2186
2242
|
export type GithubIntegration = {
|
|
2187
2243
|
__typename?: 'GithubIntegration';
|
|
2244
|
+
apiHost: Scalars['String']['output'];
|
|
2245
|
+
isEnterprise: Scalars['Boolean']['output'];
|
|
2188
2246
|
useGitCheckout: Scalars['Boolean']['output'];
|
|
2189
2247
|
vcsChecks: VcsCheck;
|
|
2190
2248
|
};
|
|
@@ -2262,6 +2320,80 @@ export type IntegrationCustomConfigData = {
|
|
|
2262
2320
|
/** ServiceNow integration-specific data (optional) */
|
|
2263
2321
|
serviceNow?: InputMaybe<ServiceNowExtraDataInput>;
|
|
2264
2322
|
};
|
|
2323
|
+
/** IntentProject represents the execution context for MCP tool operations. */
|
|
2324
|
+
export type IntentProject = {
|
|
2325
|
+
__typename?: 'IntentProject';
|
|
2326
|
+
/** AWS integrations attached to this intent context. */
|
|
2327
|
+
awsIntegrationIntentProjectAttachments: Array<AwsIntegrationIntentProjectAttachment>;
|
|
2328
|
+
/** Unix timestamp representing the intent context creation. */
|
|
2329
|
+
createdAt: Scalars['Int']['output'];
|
|
2330
|
+
/** Who created this intent context. */
|
|
2331
|
+
createdBy?: Maybe<Scalars['String']['output']>;
|
|
2332
|
+
/** Free-form intent context description for the users, supports Markdown. */
|
|
2333
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
2334
|
+
/** Unique (within a single organization), immutable name of the intent context. */
|
|
2335
|
+
id: Scalars['ID']['output'];
|
|
2336
|
+
/** Unix timestamp when this intent context was last used. */
|
|
2337
|
+
lastUsedAt?: Maybe<Scalars['Int']['output']>;
|
|
2338
|
+
/** Unix timestamp when this intent context was locked. */
|
|
2339
|
+
lockedBySessionAt?: Maybe<Scalars['Int']['output']>;
|
|
2340
|
+
/** Session ID that has locked this intent context. */
|
|
2341
|
+
lockedBySessionID?: Maybe<Scalars['Int']['output']>;
|
|
2342
|
+
/** Fancy, mutable name of the intent context to show in the UI. */
|
|
2343
|
+
name: Scalars['String']['output'];
|
|
2344
|
+
/** Sessions associated with this intent context. */
|
|
2345
|
+
sessions: Array<IntentSession>;
|
|
2346
|
+
/** ID of the space this IntentProject belongs to. */
|
|
2347
|
+
space: Space;
|
|
2348
|
+
/** Unix timestamp of the last intent context update. */
|
|
2349
|
+
updatedAt: Scalars['Int']['output'];
|
|
2350
|
+
};
|
|
2351
|
+
export type IntentProjectsConnection = {
|
|
2352
|
+
__typename?: 'IntentProjectsConnection';
|
|
2353
|
+
cursor: Scalars['String']['output'];
|
|
2354
|
+
node: IntentProject;
|
|
2355
|
+
};
|
|
2356
|
+
/** Intent resource managed by intent contexts */
|
|
2357
|
+
export type IntentResource = {
|
|
2358
|
+
__typename?: 'IntentResource';
|
|
2359
|
+
/** Address of the IntentResource in the module. */
|
|
2360
|
+
address: Scalars['String']['output'];
|
|
2361
|
+
/** Who changed this resource. */
|
|
2362
|
+
changedBy: Scalars['String']['output'];
|
|
2363
|
+
/** IntentResource Name. */
|
|
2364
|
+
name: Scalars['String']['output'];
|
|
2365
|
+
/** Operation performed on this resource. */
|
|
2366
|
+
operation: Scalars['String']['output'];
|
|
2367
|
+
/** Provider name. */
|
|
2368
|
+
provider: Scalars['String']['output'];
|
|
2369
|
+
/** Resource ID from the state. */
|
|
2370
|
+
resourceID: Scalars['String']['output'];
|
|
2371
|
+
/** IntentResource Type. */
|
|
2372
|
+
resourceType: Scalars['String']['output'];
|
|
2373
|
+
};
|
|
2374
|
+
export type IntentResourceConnection = {
|
|
2375
|
+
__typename?: 'IntentResourceConnection';
|
|
2376
|
+
cursor: Scalars['String']['output'];
|
|
2377
|
+
node: IntentResource;
|
|
2378
|
+
};
|
|
2379
|
+
/** IntentSession represents a session for MCP tool operations within an intent context. */
|
|
2380
|
+
export type IntentSession = {
|
|
2381
|
+
__typename?: 'IntentSession';
|
|
2382
|
+
/** Unix timestamp representing the intent session creation. */
|
|
2383
|
+
createdAt: Scalars['Int']['output'];
|
|
2384
|
+
/** Unique (within a single organization), immutable name of the intent session. */
|
|
2385
|
+
id: Scalars['ID']['output'];
|
|
2386
|
+
/** Intent context this session belongs to. */
|
|
2387
|
+
intentProject: IntentProject;
|
|
2388
|
+
/** Login associated with this session. */
|
|
2389
|
+
login: Scalars['String']['output'];
|
|
2390
|
+
/** Fancy, mutable name of the intent session to show in the UI. */
|
|
2391
|
+
name: Scalars['String']['output'];
|
|
2392
|
+
/** Current status of the session. */
|
|
2393
|
+
status: Scalars['String']['output'];
|
|
2394
|
+
/** Unix timestamp of the last intent session update. */
|
|
2395
|
+
updatedAt: Scalars['Int']['output'];
|
|
2396
|
+
};
|
|
2265
2397
|
export type KeyValuePair = {
|
|
2266
2398
|
key: Scalars['String']['input'];
|
|
2267
2399
|
value: Scalars['String']['input'];
|
|
@@ -2940,6 +3072,44 @@ export type ModuleResource = {
|
|
|
2940
3072
|
name: Scalars['String']['output'];
|
|
2941
3073
|
type: Scalars['String']['output'];
|
|
2942
3074
|
};
|
|
3075
|
+
export type ModuleShare = {
|
|
3076
|
+
__typename?: 'ModuleShare';
|
|
3077
|
+
/** Source of the module share (where it's shared from). */
|
|
3078
|
+
from: ModuleShareScope;
|
|
3079
|
+
/** Unique identifier of the module share. */
|
|
3080
|
+
id: Scalars['ID']['output'];
|
|
3081
|
+
/** Module information for the shared item. */
|
|
3082
|
+
module: ModuleShareModule;
|
|
3083
|
+
/** Target of the module share (where it's shared to). */
|
|
3084
|
+
to: ModuleShareScope;
|
|
3085
|
+
};
|
|
3086
|
+
export type ModuleShareAccount = {
|
|
3087
|
+
__typename?: 'ModuleShareAccount';
|
|
3088
|
+
subdomain: Scalars['String']['output'];
|
|
3089
|
+
};
|
|
3090
|
+
export type ModuleShareInput = {
|
|
3091
|
+
accounts: Array<Scalars['ID']['input']>;
|
|
3092
|
+
spaces: Array<Scalars['ID']['input']>;
|
|
3093
|
+
};
|
|
3094
|
+
export type ModuleShareModule = {
|
|
3095
|
+
__typename?: 'ModuleShareModule';
|
|
3096
|
+
current?: Maybe<SharedVersion>;
|
|
3097
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
3098
|
+
labels: Array<Scalars['String']['output']>;
|
|
3099
|
+
latest?: Maybe<SharedVersion>;
|
|
3100
|
+
name: Scalars['String']['output'];
|
|
3101
|
+
};
|
|
3102
|
+
export type ModuleShareScope = {
|
|
3103
|
+
__typename?: 'ModuleShareScope';
|
|
3104
|
+
/** Account information, if the sharing scope is an account. */
|
|
3105
|
+
account: ModuleShareAccount;
|
|
3106
|
+
/** Space information, if the sharing scope is a space. */
|
|
3107
|
+
space?: Maybe<Space>;
|
|
3108
|
+
};
|
|
3109
|
+
export type ModuleShareSpace = {
|
|
3110
|
+
__typename?: 'ModuleShareSpace';
|
|
3111
|
+
name: Scalars['String']['output'];
|
|
3112
|
+
};
|
|
2943
3113
|
/** Arguments used to create and update an individual Module. */
|
|
2944
3114
|
export type ModuleUpdateInput = {
|
|
2945
3115
|
/** Administrative stacks can manage other Stacks at runtime. */
|
|
@@ -3094,6 +3264,10 @@ export type Mutation = {
|
|
|
3094
3264
|
awsIntegrationDelete?: Maybe<AwsIntegration>;
|
|
3095
3265
|
/** Detaches an AWS integration from a Stack, using the unique ID of the attachment. */
|
|
3096
3266
|
awsIntegrationDetach?: Maybe<AwsIntegrationStackAttachment>;
|
|
3267
|
+
/** Attach AWS integration to an intent context. */
|
|
3268
|
+
awsIntegrationIntentProjectAttach: AwsIntegrationIntentProjectAttachment;
|
|
3269
|
+
/** Detach AWS integration from an intent context. */
|
|
3270
|
+
awsIntegrationIntentProjectDetach: AwsIntegrationIntentProjectAttachment;
|
|
3097
3271
|
/** Updates the integration with the specified ID. */
|
|
3098
3272
|
awsIntegrationUpdate: AwsIntegration;
|
|
3099
3273
|
/** Creates the Azure DevOps Repo integration. */
|
|
@@ -3257,6 +3431,14 @@ export type Mutation = {
|
|
|
3257
3431
|
groupUserEvent: Scalars['Boolean']['output'];
|
|
3258
3432
|
/** Identify user event */
|
|
3259
3433
|
identifyUserEvent: Scalars['Boolean']['output'];
|
|
3434
|
+
/** Create a new intent context. */
|
|
3435
|
+
intentProjectCreate: IntentProject;
|
|
3436
|
+
/** Delete an existing intent context. */
|
|
3437
|
+
intentProjectDelete?: Maybe<IntentProject>;
|
|
3438
|
+
/** Unlock an intent context. */
|
|
3439
|
+
intentProjectUnlock: IntentProject;
|
|
3440
|
+
/** Update an existing intent context. */
|
|
3441
|
+
intentProjectUpdate: IntentProject;
|
|
3260
3442
|
/** End the current session. */
|
|
3261
3443
|
logout?: Maybe<Session>;
|
|
3262
3444
|
managedUserDelete: ManagedUser;
|
|
@@ -3284,6 +3466,8 @@ export type Mutation = {
|
|
|
3284
3466
|
moduleEnable: Module;
|
|
3285
3467
|
/** Change Terraform registry from private to public. */
|
|
3286
3468
|
modulePublish: Module;
|
|
3469
|
+
/** Share a module with another account or another space */
|
|
3470
|
+
moduleShare: Array<ModuleShare>;
|
|
3287
3471
|
/** Update an existing Module (v1 API, does not support updating source). */
|
|
3288
3472
|
moduleUpdate: Module;
|
|
3289
3473
|
/** Update an existing Module (v2 API). */
|
|
@@ -3312,6 +3496,16 @@ export type Mutation = {
|
|
|
3312
3496
|
oidcUpdate: OidcSettings;
|
|
3313
3497
|
/** Page user event */
|
|
3314
3498
|
pageUserEvent: Scalars['Boolean']['output'];
|
|
3499
|
+
/** Delete an existing Plugin. */
|
|
3500
|
+
pluginDelete?: Maybe<Plugin>;
|
|
3501
|
+
/** Install a plugin from a plugin template */
|
|
3502
|
+
pluginInstall: Plugin;
|
|
3503
|
+
/** Create a new Plugin Template. */
|
|
3504
|
+
pluginTemplateCreate: PluginTemplate;
|
|
3505
|
+
/** Delete an existing Plugin Template. */
|
|
3506
|
+
pluginTemplateDelete?: Maybe<PluginTemplate>;
|
|
3507
|
+
/** Update an existing Plugin. */
|
|
3508
|
+
pluginUpdate: Plugin;
|
|
3315
3509
|
/** Attach Policy to a Stack. */
|
|
3316
3510
|
policyAttach: PolicyStackAttachment;
|
|
3317
3511
|
/**
|
|
@@ -3713,6 +3907,16 @@ export type MutationAwsIntegrationDeleteArgs = {
|
|
|
3713
3907
|
export type MutationAwsIntegrationDetachArgs = {
|
|
3714
3908
|
id: Scalars['ID']['input'];
|
|
3715
3909
|
};
|
|
3910
|
+
export type MutationAwsIntegrationIntentProjectAttachArgs = {
|
|
3911
|
+
integration: Scalars['ID']['input'];
|
|
3912
|
+
intentProject: Scalars['ID']['input'];
|
|
3913
|
+
read: Scalars['Boolean']['input'];
|
|
3914
|
+
write: Scalars['Boolean']['input'];
|
|
3915
|
+
};
|
|
3916
|
+
export type MutationAwsIntegrationIntentProjectDetachArgs = {
|
|
3917
|
+
integration: Scalars['ID']['input'];
|
|
3918
|
+
intentProject: Scalars['ID']['input'];
|
|
3919
|
+
};
|
|
3716
3920
|
export type MutationAwsIntegrationUpdateArgs = {
|
|
3717
3921
|
durationSeconds: Scalars['Int']['input'];
|
|
3718
3922
|
externalID: Scalars['String']['input'];
|
|
@@ -4024,6 +4228,23 @@ export type MutationIdentifyUserEventArgs = {
|
|
|
4024
4228
|
context?: InputMaybe<Scalars['String']['input']>;
|
|
4025
4229
|
traits?: InputMaybe<Scalars['String']['input']>;
|
|
4026
4230
|
};
|
|
4231
|
+
export type MutationIntentProjectCreateArgs = {
|
|
4232
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4233
|
+
name: Scalars['String']['input'];
|
|
4234
|
+
space: Scalars['ID']['input'];
|
|
4235
|
+
};
|
|
4236
|
+
export type MutationIntentProjectDeleteArgs = {
|
|
4237
|
+
id: Scalars['ID']['input'];
|
|
4238
|
+
};
|
|
4239
|
+
export type MutationIntentProjectUnlockArgs = {
|
|
4240
|
+
id: Scalars['ID']['input'];
|
|
4241
|
+
};
|
|
4242
|
+
export type MutationIntentProjectUpdateArgs = {
|
|
4243
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4244
|
+
id: Scalars['ID']['input'];
|
|
4245
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4246
|
+
space?: InputMaybe<Scalars['ID']['input']>;
|
|
4247
|
+
};
|
|
4027
4248
|
export type MutationManagedUserDeleteArgs = {
|
|
4028
4249
|
id: Scalars['ID']['input'];
|
|
4029
4250
|
};
|
|
@@ -4086,6 +4307,10 @@ export type MutationModuleEnableArgs = {
|
|
|
4086
4307
|
export type MutationModulePublishArgs = {
|
|
4087
4308
|
id: Scalars['ID']['input'];
|
|
4088
4309
|
};
|
|
4310
|
+
export type MutationModuleShareArgs = {
|
|
4311
|
+
id: Scalars['ID']['input'];
|
|
4312
|
+
input: ModuleShareInput;
|
|
4313
|
+
};
|
|
4089
4314
|
export type MutationModuleUpdateArgs = {
|
|
4090
4315
|
id: Scalars['ID']['input'];
|
|
4091
4316
|
input: ModuleUpdateInput;
|
|
@@ -4134,6 +4359,22 @@ export type MutationPageUserEventArgs = {
|
|
|
4134
4359
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4135
4360
|
properties?: InputMaybe<Scalars['String']['input']>;
|
|
4136
4361
|
};
|
|
4362
|
+
export type MutationPluginDeleteArgs = {
|
|
4363
|
+
id: Scalars['ID']['input'];
|
|
4364
|
+
};
|
|
4365
|
+
export type MutationPluginInstallArgs = {
|
|
4366
|
+
input: PluginInstallInput;
|
|
4367
|
+
};
|
|
4368
|
+
export type MutationPluginTemplateCreateArgs = {
|
|
4369
|
+
input: PluginTemplateCreateInput;
|
|
4370
|
+
};
|
|
4371
|
+
export type MutationPluginTemplateDeleteArgs = {
|
|
4372
|
+
id: Scalars['ID']['input'];
|
|
4373
|
+
};
|
|
4374
|
+
export type MutationPluginUpdateArgs = {
|
|
4375
|
+
id: Scalars['ID']['input'];
|
|
4376
|
+
input: PluginUpdateInput;
|
|
4377
|
+
};
|
|
4137
4378
|
export type MutationPolicyAttachArgs = {
|
|
4138
4379
|
id: Scalars['ID']['input'];
|
|
4139
4380
|
stack: Scalars['ID']['input'];
|
|
@@ -4663,6 +4904,11 @@ export type NamedWebhooksIntegration = {
|
|
|
4663
4904
|
labels: Array<Scalars['String']['output']>;
|
|
4664
4905
|
/** Name of the webhooks endpoint */
|
|
4665
4906
|
name: Scalars['String']['output'];
|
|
4907
|
+
/**
|
|
4908
|
+
* Plugin that is managing the webhook.
|
|
4909
|
+
* Used to indicate that modifications are restricted by a plugin action.
|
|
4910
|
+
*/
|
|
4911
|
+
plugin?: Maybe<Plugin>;
|
|
4666
4912
|
/**
|
|
4667
4913
|
* Secret to be hashed and sent with payload
|
|
4668
4914
|
* @deprecated This property is no longer used.
|
|
@@ -4829,6 +5075,123 @@ export type PlanPoliciesOutcome = {
|
|
|
4829
5075
|
/** List of warning messages. */
|
|
4830
5076
|
warn: Array<Scalars['String']['output']>;
|
|
4831
5077
|
};
|
|
5078
|
+
/**
|
|
5079
|
+
* Plugin represents a reusable component that can be attached to various entities
|
|
5080
|
+
* to extend functionality within Spacelift.
|
|
5081
|
+
*/
|
|
5082
|
+
export type Plugin = {
|
|
5083
|
+
__typename?: 'Plugin';
|
|
5084
|
+
/** Unix timestamp representing the plugin creation. */
|
|
5085
|
+
createdAt: Scalars['Int']['output'];
|
|
5086
|
+
/** Description of the plugin. */
|
|
5087
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5088
|
+
/** Unique identifier of the plugin. */
|
|
5089
|
+
id: Scalars['ID']['output'];
|
|
5090
|
+
/** Label-based identifier for the plugin. */
|
|
5091
|
+
labelIdentifier: Scalars['String']['output'];
|
|
5092
|
+
/** Arbitrary labels set by the user. */
|
|
5093
|
+
labels: Array<Scalars['String']['output']>;
|
|
5094
|
+
/** Plugin manifest containing configuration and metadata. */
|
|
5095
|
+
manifest: Scalars['String']['output'];
|
|
5096
|
+
/** Human-readable name of the plugin. */
|
|
5097
|
+
name: Scalars['String']['output'];
|
|
5098
|
+
/** Original plugin template used to create the plugin */
|
|
5099
|
+
pluginTemplateDetails?: Maybe<PluginTemplate>;
|
|
5100
|
+
/** URL-safe slug for the plugin. */
|
|
5101
|
+
slug: Scalars['String']['output'];
|
|
5102
|
+
/** Details of the space this Plugin belongs to. */
|
|
5103
|
+
spaceDetails: Space;
|
|
5104
|
+
/** Unix timestamp representing the plugin last update. */
|
|
5105
|
+
updatedAt: Scalars['Int']['output'];
|
|
5106
|
+
};
|
|
5107
|
+
/** All arguments to install a Plugin. */
|
|
5108
|
+
export type PluginInstallInput = {
|
|
5109
|
+
/** Label-based identifier for the plugin. */
|
|
5110
|
+
labelIdentifier: Scalars['String']['input'];
|
|
5111
|
+
/** User-defined labels for the Plugin. */
|
|
5112
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5113
|
+
/** Name of the plugin. */
|
|
5114
|
+
name: Scalars['String']['input'];
|
|
5115
|
+
/** Plugin parameters with values */
|
|
5116
|
+
parameters?: InputMaybe<Array<PluginInstallParameterInput>>;
|
|
5117
|
+
/** Plugin template used to install the plugin */
|
|
5118
|
+
pluginTemplateID: Scalars['ID']['input'];
|
|
5119
|
+
/** ID of the space this Plugin will belong to. */
|
|
5120
|
+
space: Scalars['ID']['input'];
|
|
5121
|
+
};
|
|
5122
|
+
/** Plugin template parameter input. */
|
|
5123
|
+
export type PluginInstallParameterInput = {
|
|
5124
|
+
/** Unique identifier */
|
|
5125
|
+
id: Scalars['String']['input'];
|
|
5126
|
+
/** Value of the parameter */
|
|
5127
|
+
value: Scalars['String']['input'];
|
|
5128
|
+
};
|
|
5129
|
+
export type PluginLogsResponse = {
|
|
5130
|
+
__typename?: 'PluginLogsResponse';
|
|
5131
|
+
message: LogMessage;
|
|
5132
|
+
pluginName: Scalars['String']['output'];
|
|
5133
|
+
};
|
|
5134
|
+
/**
|
|
5135
|
+
* Plugin template represents a reusable plugin configuration that can be used
|
|
5136
|
+
* to create plugin instances.
|
|
5137
|
+
*/
|
|
5138
|
+
export type PluginTemplate = {
|
|
5139
|
+
__typename?: 'PluginTemplate';
|
|
5140
|
+
/** Unix timestamp representing the plugin template creation. */
|
|
5141
|
+
createdAt: Scalars['Int']['output'];
|
|
5142
|
+
/** Description of the plugin template. */
|
|
5143
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5144
|
+
/** Unique identifier of the plugin template. */
|
|
5145
|
+
id: Scalars['ID']['output'];
|
|
5146
|
+
/** Global plugins are native to Spacelift and cannot be removed */
|
|
5147
|
+
isGlobal: Scalars['Boolean']['output'];
|
|
5148
|
+
/** Arbitrary labels set by the user. */
|
|
5149
|
+
labels: Array<Scalars['String']['output']>;
|
|
5150
|
+
/** Plugin template manifest containing configuration and metadata. */
|
|
5151
|
+
manifest: Scalars['String']['output'];
|
|
5152
|
+
/** Human-readable name of the plugin template. */
|
|
5153
|
+
name: Scalars['String']['output'];
|
|
5154
|
+
/** Template parameters as JSON */
|
|
5155
|
+
parameters: Array<PluginTemplateParameter>;
|
|
5156
|
+
/** URL-safe slug for the plugin template. */
|
|
5157
|
+
slug: Scalars['String']['output'];
|
|
5158
|
+
/** Unix timestamp representing the plugin template last update. */
|
|
5159
|
+
updatedAt: Scalars['Int']['output'];
|
|
5160
|
+
};
|
|
5161
|
+
/** All arguments to create a Plugin Template. */
|
|
5162
|
+
export type PluginTemplateCreateInput = {
|
|
5163
|
+
/** Description of the plugin template. */
|
|
5164
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
5165
|
+
/** User-defined labels for the Plugin Template. */
|
|
5166
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5167
|
+
/** Plugin template manifest containing configuration and metadata. */
|
|
5168
|
+
manifest: Scalars['String']['input'];
|
|
5169
|
+
/** Name of the plugin template. */
|
|
5170
|
+
name: Scalars['String']['input'];
|
|
5171
|
+
};
|
|
5172
|
+
/** Plugin template parameter configuration */
|
|
5173
|
+
export type PluginTemplateParameter = {
|
|
5174
|
+
__typename?: 'PluginTemplateParameter';
|
|
5175
|
+
/** Parameter description */
|
|
5176
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5177
|
+
/** Unique identifier */
|
|
5178
|
+
id: Scalars['String']['output'];
|
|
5179
|
+
/** Parameter name */
|
|
5180
|
+
name: Scalars['String']['output'];
|
|
5181
|
+
/** Whether the parameter is required */
|
|
5182
|
+
required: Scalars['Boolean']['output'];
|
|
5183
|
+
/** Whether the parameter contains sensitive data */
|
|
5184
|
+
sensitive: Scalars['Boolean']['output'];
|
|
5185
|
+
};
|
|
5186
|
+
/** All arguments to update a Plugin. */
|
|
5187
|
+
export type PluginUpdateInput = {
|
|
5188
|
+
/** Description of the plugin. */
|
|
5189
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
5190
|
+
/** User-defined labels for the Plugin. */
|
|
5191
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5192
|
+
/** Name of the plugin. */
|
|
5193
|
+
name: Scalars['String']['input'];
|
|
5194
|
+
};
|
|
4832
5195
|
/**
|
|
4833
5196
|
* Policy is a rule or collection of rules that allow injecting custom logic into
|
|
4834
5197
|
* Spacelift's decision points.
|
|
@@ -4862,6 +5225,11 @@ export type Policy = Notifiable & {
|
|
|
4862
5225
|
name: Scalars['String']['output'];
|
|
4863
5226
|
/** Number of the new policy notifications. */
|
|
4864
5227
|
notificationCount: Scalars['Int']['output'];
|
|
5228
|
+
/**
|
|
5229
|
+
* Plugin that is managing the policy.
|
|
5230
|
+
* Used to indicate that modifications are restricted to plugin actions.
|
|
5231
|
+
*/
|
|
5232
|
+
plugin?: Maybe<Plugin>;
|
|
4865
5233
|
sampleCount: Scalars['Int']['output'];
|
|
4866
5234
|
searchEvaluationRecordSuggestions: SearchSuggestionsOutput;
|
|
4867
5235
|
searchEvaluationRecords: SearchPolicyEvaluationRecordOutput;
|
|
@@ -5030,6 +5398,8 @@ export declare enum PolicyType {
|
|
|
5030
5398
|
GitPush = "GIT_PUSH",
|
|
5031
5399
|
/** Initialization policy - allows blocking runs from executing. */
|
|
5032
5400
|
Initialization = "INITIALIZATION",
|
|
5401
|
+
/** Intent policy - allow/deny operations on resources */
|
|
5402
|
+
Intent = "INTENT",
|
|
5033
5403
|
/** Login policy - account-level RBAC. */
|
|
5034
5404
|
Login = "LOGIN",
|
|
5035
5405
|
/** Notification policy, allows to configure notifications and how they're sent. */
|
|
@@ -5327,6 +5697,12 @@ export type Query = {
|
|
|
5327
5697
|
id: Scalars['ID']['output'];
|
|
5328
5698
|
/** ID of the GitHub App installation linked to the current account. */
|
|
5329
5699
|
installationId?: Maybe<Scalars['String']['output']>;
|
|
5700
|
+
/** Returns IntentProject details */
|
|
5701
|
+
intentProject?: Maybe<IntentProject>;
|
|
5702
|
+
/** Returns all IntentProjects */
|
|
5703
|
+
intentProjects: Array<IntentProject>;
|
|
5704
|
+
/** Returns IntentSession details */
|
|
5705
|
+
intentSession?: Maybe<IntentSession>;
|
|
5330
5706
|
/** Returns true if the generic form is completed */
|
|
5331
5707
|
isGenericFormCompleted: Scalars['Boolean']['output'];
|
|
5332
5708
|
/** List of all supported kubectl versions. */
|
|
@@ -5372,6 +5748,14 @@ export type Query = {
|
|
|
5372
5748
|
openTofuVersions: Array<Scalars['String']['output']>;
|
|
5373
5749
|
/** List of Spacelift's outgoing addresses. */
|
|
5374
5750
|
outgoingIPAddresses: Array<Scalars['String']['output']>;
|
|
5751
|
+
/** Details of a single Plugin. */
|
|
5752
|
+
plugin?: Maybe<Plugin>;
|
|
5753
|
+
/** Details of a single Plugin Template. */
|
|
5754
|
+
pluginTemplate?: Maybe<PluginTemplate>;
|
|
5755
|
+
/** List of all the plugin templates in the account. */
|
|
5756
|
+
pluginTemplates: Array<PluginTemplate>;
|
|
5757
|
+
/** List of all the plugins in the account. */
|
|
5758
|
+
plugins: Array<Plugin>;
|
|
5375
5759
|
/** List of all the polices in the account. */
|
|
5376
5760
|
policies: Array<Policy>;
|
|
5377
5761
|
/** Details of a single Policy. */
|
|
@@ -5416,6 +5800,12 @@ export type Query = {
|
|
|
5416
5800
|
searchBlueprintsSuggestions: SearchSuggestionsOutput;
|
|
5417
5801
|
searchContexts: SearchContextsOutput;
|
|
5418
5802
|
searchContextsSuggestions: SearchSuggestionsOutput;
|
|
5803
|
+
searchIntentProjects: SearchIntentProjectsOutput;
|
|
5804
|
+
searchIntentProjectsSuggestions: SearchSuggestionsOutput;
|
|
5805
|
+
/** Search intent resources with a set of predicates, ordering and paging. */
|
|
5806
|
+
searchIntentResources: SearchIntentResourcesOutput;
|
|
5807
|
+
/** Information about fields available for searching intent resources. */
|
|
5808
|
+
searchIntentResourcesSuggestions: SearchSuggestionsOutput;
|
|
5419
5809
|
/** Search managed entities with a set of predicates, ordering and paging. */
|
|
5420
5810
|
searchManagedEntities: SearchManagedEntitiesOutput;
|
|
5421
5811
|
/** Search managed entities grouped by providers with a set of predicates, ordering and paging. */
|
|
@@ -5461,6 +5851,8 @@ export type Query = {
|
|
|
5461
5851
|
sessions: Array<Session>;
|
|
5462
5852
|
/** List of all the Modules shared with this account. */
|
|
5463
5853
|
sharedModules: Array<SharedModule>;
|
|
5854
|
+
/** List of all the Modules shared with this account or with spaces inside the account. */
|
|
5855
|
+
sharedModulesV2: Array<ModuleShare>;
|
|
5464
5856
|
/**
|
|
5465
5857
|
* Returns the instance-wide Slack App config information for a Self-Hosted instance. This is used by
|
|
5466
5858
|
* the Spacelift Slack integration to integrate with your Slack workspace. Always returns null on SaaS.
|
|
@@ -5638,6 +6030,12 @@ export type QueryGithubEnterpriseWebhooksEndpointArgs = {
|
|
|
5638
6030
|
export type QueryGitlabIntegrationArgs = {
|
|
5639
6031
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
5640
6032
|
};
|
|
6033
|
+
export type QueryIntentProjectArgs = {
|
|
6034
|
+
id: Scalars['ID']['input'];
|
|
6035
|
+
};
|
|
6036
|
+
export type QueryIntentSessionArgs = {
|
|
6037
|
+
id: Scalars['ID']['input'];
|
|
6038
|
+
};
|
|
5641
6039
|
export type QueryIsGenericFormCompletedArgs = {
|
|
5642
6040
|
name: Scalars['String']['input'];
|
|
5643
6041
|
};
|
|
@@ -5665,6 +6063,12 @@ export type QueryNamedWebhooksIntegrationArgs = {
|
|
|
5665
6063
|
export type QueryOpenTofuEffectiveVersionArgs = {
|
|
5666
6064
|
constraints: Scalars['String']['input'];
|
|
5667
6065
|
};
|
|
6066
|
+
export type QueryPluginArgs = {
|
|
6067
|
+
id: Scalars['ID']['input'];
|
|
6068
|
+
};
|
|
6069
|
+
export type QueryPluginTemplateArgs = {
|
|
6070
|
+
id: Scalars['ID']['input'];
|
|
6071
|
+
};
|
|
5668
6072
|
export type QueryPolicyArgs = {
|
|
5669
6073
|
id: Scalars['ID']['input'];
|
|
5670
6074
|
};
|
|
@@ -5726,6 +6130,18 @@ export type QuerySearchContextsArgs = {
|
|
|
5726
6130
|
export type QuerySearchContextsSuggestionsArgs = {
|
|
5727
6131
|
input: SearchSuggestionsInput;
|
|
5728
6132
|
};
|
|
6133
|
+
export type QuerySearchIntentProjectsArgs = {
|
|
6134
|
+
input: SearchInput;
|
|
6135
|
+
};
|
|
6136
|
+
export type QuerySearchIntentProjectsSuggestionsArgs = {
|
|
6137
|
+
input: SearchSuggestionsInput;
|
|
6138
|
+
};
|
|
6139
|
+
export type QuerySearchIntentResourcesArgs = {
|
|
6140
|
+
input: SearchInput;
|
|
6141
|
+
};
|
|
6142
|
+
export type QuerySearchIntentResourcesSuggestionsArgs = {
|
|
6143
|
+
input: SearchSuggestionsInput;
|
|
6144
|
+
};
|
|
5729
6145
|
export type QuerySearchManagedEntitiesArgs = {
|
|
5730
6146
|
input: SearchInput;
|
|
5731
6147
|
};
|
|
@@ -5960,6 +6376,10 @@ export type Run = {
|
|
|
5960
6376
|
next?: Maybe<Run>;
|
|
5961
6377
|
/** List of outcomes for policies evaluated against this runs plan. */
|
|
5962
6378
|
planPoliciesOutcomes: Array<PlanPoliciesOutcome>;
|
|
6379
|
+
/** The logs associated with the plugins of a run. */
|
|
6380
|
+
pluginLogs: Array<PluginLogsResponse>;
|
|
6381
|
+
/** A download URL for the logs of a plugin. */
|
|
6382
|
+
pluginLogsDownloadURL?: Maybe<LogsDownloadUrl>;
|
|
5963
6383
|
/** Policy evaluation sample for a given key, if available. */
|
|
5964
6384
|
policyReceiptSample?: Maybe<PolicyEvaluationSample>;
|
|
5965
6385
|
/** List of policy evaluations events that affected this run. */
|
|
@@ -6018,6 +6438,10 @@ export type RunLogsDownloadUrlArgs = {
|
|
|
6018
6438
|
stateVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
6019
6439
|
};
|
|
6020
6440
|
/** Run represents the main concept in Spacelift. */
|
|
6441
|
+
export type RunPluginLogsDownloadUrlArgs = {
|
|
6442
|
+
pluginName: Scalars['String']['input'];
|
|
6443
|
+
};
|
|
6444
|
+
/** Run represents the main concept in Spacelift. */
|
|
6021
6445
|
export type RunPolicyReceiptSampleArgs = {
|
|
6022
6446
|
id: Scalars['ID']['input'];
|
|
6023
6447
|
};
|
|
@@ -6658,6 +7082,16 @@ export type SearchInput = {
|
|
|
6658
7082
|
/** Which page to return. */
|
|
6659
7083
|
requestedPage?: InputMaybe<SearchQueryRequestedPage>;
|
|
6660
7084
|
};
|
|
7085
|
+
export type SearchIntentProjectsOutput = {
|
|
7086
|
+
__typename?: 'SearchIntentProjectsOutput';
|
|
7087
|
+
edges: Array<IntentProjectsConnection>;
|
|
7088
|
+
pageInfo: PageInfo;
|
|
7089
|
+
};
|
|
7090
|
+
export type SearchIntentResourcesOutput = {
|
|
7091
|
+
__typename?: 'SearchIntentResourcesOutput';
|
|
7092
|
+
edges: Array<IntentResourceConnection>;
|
|
7093
|
+
pageInfo: PageInfo;
|
|
7094
|
+
};
|
|
6661
7095
|
export type SearchManagedEntitiesGroupedByProvidersOutput = {
|
|
6662
7096
|
__typename?: 'SearchManagedEntitiesGroupedByProvidersOutput';
|
|
6663
7097
|
edges: Array<ManagedEntitiesGroupedByProvidersConnection>;
|
|
@@ -7025,7 +7459,7 @@ export type SharedModuleVersionsArgs = {
|
|
|
7025
7459
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
7026
7460
|
};
|
|
7027
7461
|
/**
|
|
7028
|
-
*
|
|
7462
|
+
* SharedVersion contains information about a module version that has been shared with this
|
|
7029
7463
|
* account by another Spacelift account.
|
|
7030
7464
|
*/
|
|
7031
7465
|
export type SharedVersion = {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UserStatus = exports.UserRole = exports.UserGroupStatus = exports.TerragruntTool = exports.TerraformWorkflowTool = exports.TerraformProviderVersionStatus = exports.SummaryProcessingStatus = exports.StripeSubscriptionStatus = exports.StackVendor = exports.StackState = exports.SpaceAccessLevel = exports.SearchSuggestionsFieldType = exports.SearchQueryRequestedPage = exports.SearchQueryOrderDirection = exports.SearchQueryFieldConstraintTimeInLast = exports.SamlNameIdFormat = exports.RunType = exports.RunState = exports.RunReviewDecision = exports.RunIgnoredTriggerReasonType = exports.RunExternalDependencyStatus = exports.PolicyType = exports.NotificationType = exports.NotificationSeverity = exports.ManagedUserGroupIntegrationType = exports.LlmVendor = exports.KubernetesWorkflowTool = exports.IdentityProvider = exports.GitHubAppStatus = exports.EntityChangeType = exports.EntityChangeResult = exports.EntityChangePhase = exports.ConfigType = exports.BlueprintState = exports.BlueprintInputType = exports.
|
|
4
|
-
exports.WorkerStatus = exports.VersionState = exports.VcsProvider = exports.VcsIntegrationTestType = exports.VcsIntegrationTestStatus =
|
|
3
|
+
exports.VcsCheck = exports.UserStatus = exports.UserRole = exports.UserGroupStatus = exports.TerragruntTool = exports.TerraformWorkflowTool = exports.TerraformProviderVersionStatus = exports.SummaryProcessingStatus = exports.StripeSubscriptionStatus = exports.StackVendor = exports.StackState = exports.SpaceAccessLevel = exports.SearchSuggestionsFieldType = exports.SearchQueryRequestedPage = exports.SearchQueryOrderDirection = exports.SearchQueryFieldConstraintTimeInLast = exports.SamlNameIdFormat = exports.RunType = exports.RunState = exports.RunReviewDecision = exports.RunIgnoredTriggerReasonType = exports.RunExternalDependencyStatus = exports.PolicyType = exports.NotificationType = exports.NotificationSeverity = exports.ManagedUserGroupIntegrationType = exports.LlmVendor = exports.KubernetesWorkflowTool = exports.IdentityProvider = exports.GitHubAppStatus = exports.EntityChangeType = exports.EntityChangeResult = exports.EntityChangePhase = exports.ConfigType = exports.BlueprintState = exports.BlueprintInputType = exports.BillingTierFeature = exports.BillingTier = exports.BillingCycleInterval = exports.BillingAddonType = exports.BillableRunState = exports.AuthorizationScheme = exports.AuditTrailResourceType = exports.AuditTrailEventType = exports.AspectType = exports.AspectGranularity = exports.AnsibleTaskStatus = exports.Action = exports.AccountType = exports.ApiKeyType = void 0;
|
|
4
|
+
exports.WorkerStatus = exports.VersionState = exports.VcsProvider = exports.VcsIntegrationTestType = exports.VcsIntegrationTestStatus = void 0;
|
|
5
5
|
/** APIKeyType represents the type of an API key. */
|
|
6
6
|
var ApiKeyType;
|
|
7
7
|
(function (ApiKeyType) {
|
|
@@ -154,6 +154,7 @@ var AuditTrailResourceType;
|
|
|
154
154
|
AuditTrailResourceType["NamedWebhooksIntegration"] = "NAMED_WEBHOOKS_INTEGRATION";
|
|
155
155
|
AuditTrailResourceType["Notification"] = "NOTIFICATION";
|
|
156
156
|
AuditTrailResourceType["Policy"] = "POLICY";
|
|
157
|
+
AuditTrailResourceType["Role"] = "ROLE";
|
|
157
158
|
AuditTrailResourceType["Run"] = "RUN";
|
|
158
159
|
AuditTrailResourceType["ScheduledDelete"] = "SCHEDULED_DELETE";
|
|
159
160
|
AuditTrailResourceType["ScheduledRun"] = "SCHEDULED_RUN";
|
|
@@ -169,6 +170,8 @@ var AuditTrailResourceType;
|
|
|
169
170
|
AuditTrailResourceType["User"] = "USER";
|
|
170
171
|
AuditTrailResourceType["UserGroup"] = "USER_GROUP";
|
|
171
172
|
AuditTrailResourceType["UserGroupIntegration"] = "USER_GROUP_INTEGRATION";
|
|
173
|
+
AuditTrailResourceType["UserGroupRoleBinding"] = "USER_GROUP_ROLE_BINDING";
|
|
174
|
+
AuditTrailResourceType["UserRoleBinding"] = "USER_ROLE_BINDING";
|
|
172
175
|
AuditTrailResourceType["Version"] = "VERSION";
|
|
173
176
|
AuditTrailResourceType["Webhook"] = "WEBHOOK";
|
|
174
177
|
AuditTrailResourceType["Worker"] = "WORKER";
|
|
@@ -282,13 +285,6 @@ var BillingTierFeature;
|
|
|
282
285
|
BillingTierFeature["UnlimitedSeats"] = "UNLIMITED_SEATS";
|
|
283
286
|
BillingTierFeature["WorkflowPolicies"] = "WORKFLOW_POLICIES";
|
|
284
287
|
})(BillingTierFeature || (exports.BillingTierFeature = BillingTierFeature = {}));
|
|
285
|
-
var BlueprintFormat;
|
|
286
|
-
(function (BlueprintFormat) {
|
|
287
|
-
/** Invalid "zero value" for the type. */
|
|
288
|
-
BlueprintFormat["Unknown"] = "UNKNOWN";
|
|
289
|
-
/** YAML format */
|
|
290
|
-
BlueprintFormat["Yaml"] = "YAML";
|
|
291
|
-
})(BlueprintFormat || (exports.BlueprintFormat = BlueprintFormat = {}));
|
|
292
288
|
var BlueprintInputType;
|
|
293
289
|
(function (BlueprintInputType) {
|
|
294
290
|
/** A boolean value */
|
|
@@ -456,6 +452,8 @@ var PolicyType;
|
|
|
456
452
|
PolicyType["GitPush"] = "GIT_PUSH";
|
|
457
453
|
/** Initialization policy - allows blocking runs from executing. */
|
|
458
454
|
PolicyType["Initialization"] = "INITIALIZATION";
|
|
455
|
+
/** Intent policy - allow/deny operations on resources */
|
|
456
|
+
PolicyType["Intent"] = "INTENT";
|
|
459
457
|
/** Login policy - account-level RBAC. */
|
|
460
458
|
PolicyType["Login"] = "LOGIN";
|
|
461
459
|
/** Notification policy, allows to configure notifications and how they're sent. */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graphql.js","sourceRoot":"","sources":["../../../../../../src/utils/spacelift/lib/__generated__/graphql.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"graphql.js","sourceRoot":"","sources":["../../../../../../src/utils/spacelift/lib/__generated__/graphql.ts"],"names":[],"mappings":"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"}
|