onreza-release 1.0.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/README.md +881 -0
- package/dist/binaries.d.ts +74 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +9073 -0
- package/dist/cli.js.map +73 -0
- package/dist/config.d.ts +58 -0
- package/dist/gitverse.d.ts +91 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +8545 -0
- package/dist/index.js.map +71 -0
- package/dist/types.d.ts +862 -0
- package/dist/utils/binary-archive-extractor.d.ts +19 -0
- package/dist/utils/binary-package-generator.d.ts +24 -0
- package/dist/utils/binary-platforms.d.ts +113 -0
- package/dist/utils/binary-publisher.d.ts +53 -0
- package/dist/utils/binary-wrapper-generator.d.ts +34 -0
- package/dist/utils/changelog.d.ts +14 -0
- package/dist/utils/commitlint-generator.d.ts +5 -0
- package/dist/utils/git.d.ts +101 -0
- package/dist/utils/parser.d.ts +36 -0
- package/dist/utils/retry.d.ts +39 -0
- package/dist/utils/version.d.ts +18 -0
- package/package.json +66 -0
- package/schema.json +461 -0
package/schema.json
ADDED
|
@@ -0,0 +1,461 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"additionalProperties": false,
|
|
4
|
+
"description": "Configuration file for gitverse-release tool",
|
|
5
|
+
"properties": {
|
|
6
|
+
"$schema": {
|
|
7
|
+
"description": "JSON Schema reference for IDE support",
|
|
8
|
+
"type": "string"
|
|
9
|
+
},
|
|
10
|
+
"binaries": {
|
|
11
|
+
"default": {
|
|
12
|
+
"continueOnError": false,
|
|
13
|
+
"distDir": "./dist",
|
|
14
|
+
"enabled": false,
|
|
15
|
+
"inputFormat": "directory",
|
|
16
|
+
"mainPackage": "./package.json",
|
|
17
|
+
"name": "",
|
|
18
|
+
"outDir": "./npm",
|
|
19
|
+
"platforms": ["linux-x64", "linux-arm64", "darwin-x64", "darwin-arm64", "win32-x64"],
|
|
20
|
+
"publishCommand": "npm publish --access public",
|
|
21
|
+
"retryAttempts": 3
|
|
22
|
+
},
|
|
23
|
+
"description": "Binary distribution settings for publishing platform-specific npm packages",
|
|
24
|
+
"properties": {
|
|
25
|
+
"archiveNameTemplate": {
|
|
26
|
+
"default": "{{name}}-{{platform}}.tar.gz",
|
|
27
|
+
"description": "Template for archive file names. Placeholders: {{name}}, {{platform}}. Used only with inputFormat: 'tar.gz'",
|
|
28
|
+
"examples": ["{{platform}}.tar.gz", "{{name}}-{{platform}}.tar.gz", "{{name}}_{{platform}}_release.tar.gz"],
|
|
29
|
+
"type": "string"
|
|
30
|
+
},
|
|
31
|
+
"binName": {
|
|
32
|
+
"description": "Binary name in $PATH. Defaults to 'name' value",
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
35
|
+
"continueOnError": {
|
|
36
|
+
"default": false,
|
|
37
|
+
"description": "Continue publishing remaining packages if one fails",
|
|
38
|
+
"type": "boolean"
|
|
39
|
+
},
|
|
40
|
+
"distDir": {
|
|
41
|
+
"default": "./dist",
|
|
42
|
+
"description": "Directory containing platform-specific binaries (e.g., dist/yougile-linux-x64/yougile)",
|
|
43
|
+
"type": "string"
|
|
44
|
+
},
|
|
45
|
+
"enabled": {
|
|
46
|
+
"default": false,
|
|
47
|
+
"description": "Enable binary distribution",
|
|
48
|
+
"type": "boolean"
|
|
49
|
+
},
|
|
50
|
+
"inputFormat": {
|
|
51
|
+
"default": "directory",
|
|
52
|
+
"description": "Input format for binaries. 'directory' expects binaries in dist/name-platform/name, 'tar.gz' expects archives in dist/name-platform.tar.gz",
|
|
53
|
+
"enum": ["directory", "tar.gz"],
|
|
54
|
+
"type": "string"
|
|
55
|
+
},
|
|
56
|
+
"mainPackage": {
|
|
57
|
+
"default": "./package.json",
|
|
58
|
+
"description": "Path to main package.json for updating optionalDependencies",
|
|
59
|
+
"type": "string"
|
|
60
|
+
},
|
|
61
|
+
"name": {
|
|
62
|
+
"description": "Base name for packages (e.g., 'yougile' creates @scope/yougile-linux-x64)",
|
|
63
|
+
"type": "string"
|
|
64
|
+
},
|
|
65
|
+
"outDir": {
|
|
66
|
+
"default": "./npm",
|
|
67
|
+
"description": "Output directory for generated npm packages",
|
|
68
|
+
"type": "string"
|
|
69
|
+
},
|
|
70
|
+
"packageNameTemplate": {
|
|
71
|
+
"description": "Template for package names. Placeholders: {{scope}}, {{name}}, {{platform}}. Default: '{{name}}-{{platform}}' (without scope) or '@{{scope}}/{{name}}-{{platform}}' (with scope)",
|
|
72
|
+
"examples": ["{{name}}-{{platform}}", "@{{scope}}/{{name}}-{{platform}}", "{{name}}-bin-{{platform}}"],
|
|
73
|
+
"type": "string"
|
|
74
|
+
},
|
|
75
|
+
"platformMap": {
|
|
76
|
+
"additionalProperties": {
|
|
77
|
+
"enum": ["linux-x64", "linux-arm64", "darwin-x64", "darwin-arm64", "win32-x64", "win32-arm64"],
|
|
78
|
+
"type": "string"
|
|
79
|
+
},
|
|
80
|
+
"description": "Mapping of source file keys to npm platforms. Keys are identifiers in archive names (e.g., 'linux-x64'), values are npm platforms",
|
|
81
|
+
"type": "object"
|
|
82
|
+
},
|
|
83
|
+
"platforms": {
|
|
84
|
+
"default": ["linux-x64", "linux-arm64", "darwin-x64", "darwin-arm64", "win32-x64"],
|
|
85
|
+
"description": "Platforms to publish",
|
|
86
|
+
"items": {
|
|
87
|
+
"enum": ["linux-x64", "linux-arm64", "darwin-x64", "darwin-arm64", "win32-x64", "win32-arm64"],
|
|
88
|
+
"type": "string"
|
|
89
|
+
},
|
|
90
|
+
"type": "array",
|
|
91
|
+
"uniqueItems": true
|
|
92
|
+
},
|
|
93
|
+
"publishCommand": {
|
|
94
|
+
"default": "npm publish --access public",
|
|
95
|
+
"description": "Command to publish packages. Supports placeholders: {{packageDir}}, {{version}}, {{platform}}, {{scope}}, {{name}}",
|
|
96
|
+
"type": "string"
|
|
97
|
+
},
|
|
98
|
+
"retryAttempts": {
|
|
99
|
+
"default": 3,
|
|
100
|
+
"description": "Number of retry attempts for publish command",
|
|
101
|
+
"maximum": 10,
|
|
102
|
+
"minimum": 1,
|
|
103
|
+
"type": "integer"
|
|
104
|
+
},
|
|
105
|
+
"scope": {
|
|
106
|
+
"description": "npm scope for platform packages (e.g., '@rainypixel'). Optional - if not set, packages are published without scope",
|
|
107
|
+
"type": "string"
|
|
108
|
+
},
|
|
109
|
+
"sourceBinName": {
|
|
110
|
+
"description": "Binary name inside archive (if different from 'name'). Used only with inputFormat: 'tar.gz'",
|
|
111
|
+
"type": "string"
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
"type": "object"
|
|
115
|
+
},
|
|
116
|
+
"changelog": {
|
|
117
|
+
"default": {
|
|
118
|
+
"showAuthor": true,
|
|
119
|
+
"showHash": true,
|
|
120
|
+
"types": {}
|
|
121
|
+
},
|
|
122
|
+
"description": "CHANGELOG generation settings",
|
|
123
|
+
"properties": {
|
|
124
|
+
"showAuthor": {
|
|
125
|
+
"default": true,
|
|
126
|
+
"description": "Show commit author in changelog entries",
|
|
127
|
+
"type": "boolean"
|
|
128
|
+
},
|
|
129
|
+
"showHash": {
|
|
130
|
+
"default": true,
|
|
131
|
+
"description": "Show commit hash in changelog entries",
|
|
132
|
+
"type": "boolean"
|
|
133
|
+
},
|
|
134
|
+
"types": {
|
|
135
|
+
"additionalProperties": {
|
|
136
|
+
"type": "string"
|
|
137
|
+
},
|
|
138
|
+
"default": {
|
|
139
|
+
"build": "🏗️ Build System",
|
|
140
|
+
"chore": "🔧 Chores",
|
|
141
|
+
"ci": "👷 CI/CD",
|
|
142
|
+
"docs": "📝 Documentation",
|
|
143
|
+
"feat": "✨ Features",
|
|
144
|
+
"fix": "🐛 Bug Fixes",
|
|
145
|
+
"perf": "⚡ Performance",
|
|
146
|
+
"refactor": "♻️ Refactoring",
|
|
147
|
+
"revert": "⏪ Reverts",
|
|
148
|
+
"style": "💄 Styling",
|
|
149
|
+
"test": "✅ Tests"
|
|
150
|
+
},
|
|
151
|
+
"description": "Mapping of commit types to changelog section titles",
|
|
152
|
+
"type": "object"
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
"type": "object"
|
|
156
|
+
},
|
|
157
|
+
"commitlint": {
|
|
158
|
+
"default": {
|
|
159
|
+
"bodyMaxLineLength": null,
|
|
160
|
+
"comments": true,
|
|
161
|
+
"footerMaxLineLength": null,
|
|
162
|
+
"format": "ts",
|
|
163
|
+
"headerMaxLength": 100,
|
|
164
|
+
"headerMinLength": null,
|
|
165
|
+
"output": "commitlint.config.ts",
|
|
166
|
+
"scopeRequired": false,
|
|
167
|
+
"scopes": ["deps", "ci", "docs"],
|
|
168
|
+
"strictMode": false,
|
|
169
|
+
"subjectCase": null,
|
|
170
|
+
"subjectFullStop": false,
|
|
171
|
+
"warningRules": ["header-max-length"]
|
|
172
|
+
},
|
|
173
|
+
"description": "Commitlint config generation settings",
|
|
174
|
+
"properties": {
|
|
175
|
+
"bodyMaxLineLength": {
|
|
176
|
+
"default": null,
|
|
177
|
+
"description": "Maximum line length for commit body. Set to null to disable",
|
|
178
|
+
"type": ["number", "null"]
|
|
179
|
+
},
|
|
180
|
+
"comments": {
|
|
181
|
+
"default": true,
|
|
182
|
+
"description": "Include explanatory comments in generated config",
|
|
183
|
+
"type": "boolean"
|
|
184
|
+
},
|
|
185
|
+
"footerMaxLineLength": {
|
|
186
|
+
"default": null,
|
|
187
|
+
"description": "Maximum line length for commit footer. Set to null to disable",
|
|
188
|
+
"type": ["number", "null"]
|
|
189
|
+
},
|
|
190
|
+
"format": {
|
|
191
|
+
"default": "ts",
|
|
192
|
+
"description": "Output format for commitlint config",
|
|
193
|
+
"enum": ["ts", "js", "json"],
|
|
194
|
+
"type": "string"
|
|
195
|
+
},
|
|
196
|
+
"headerMaxLength": {
|
|
197
|
+
"default": 100,
|
|
198
|
+
"description": "Maximum commit header length",
|
|
199
|
+
"type": "number"
|
|
200
|
+
},
|
|
201
|
+
"headerMinLength": {
|
|
202
|
+
"default": null,
|
|
203
|
+
"description": "Minimum commit header length. Set to null to disable",
|
|
204
|
+
"type": ["number", "null"]
|
|
205
|
+
},
|
|
206
|
+
"output": {
|
|
207
|
+
"default": "commitlint.config.ts",
|
|
208
|
+
"description": "Output path for generated commitlint config",
|
|
209
|
+
"type": "string"
|
|
210
|
+
},
|
|
211
|
+
"scopeRequired": {
|
|
212
|
+
"default": false,
|
|
213
|
+
"description": "Whether scope is required in commit messages",
|
|
214
|
+
"type": "boolean"
|
|
215
|
+
},
|
|
216
|
+
"scopes": {
|
|
217
|
+
"default": ["deps", "ci", "docs"],
|
|
218
|
+
"description": "Additional scopes beyond monorepo package names",
|
|
219
|
+
"items": {
|
|
220
|
+
"type": "string"
|
|
221
|
+
},
|
|
222
|
+
"type": "array"
|
|
223
|
+
},
|
|
224
|
+
"strictMode": {
|
|
225
|
+
"default": false,
|
|
226
|
+
"description": "Enable strict mode: all rules become errors, subject-case enforced as lower-case, body/footer line lengths enforced",
|
|
227
|
+
"type": "boolean"
|
|
228
|
+
},
|
|
229
|
+
"subjectCase": {
|
|
230
|
+
"default": null,
|
|
231
|
+
"description": "Required case for commit subject. Set to null to allow any case",
|
|
232
|
+
"enum": [
|
|
233
|
+
"lower-case",
|
|
234
|
+
"upper-case",
|
|
235
|
+
"camel-case",
|
|
236
|
+
"kebab-case",
|
|
237
|
+
"pascal-case",
|
|
238
|
+
"sentence-case",
|
|
239
|
+
"snake-case",
|
|
240
|
+
"start-case",
|
|
241
|
+
null
|
|
242
|
+
],
|
|
243
|
+
"type": ["string", "null"]
|
|
244
|
+
},
|
|
245
|
+
"subjectFullStop": {
|
|
246
|
+
"default": false,
|
|
247
|
+
"description": "Forbid full stop (period) at the end of subject",
|
|
248
|
+
"type": "boolean"
|
|
249
|
+
},
|
|
250
|
+
"warningRules": {
|
|
251
|
+
"default": ["header-max-length"],
|
|
252
|
+
"description": "Rules that should be warnings (level 1) instead of errors (level 2). Ignored when strictMode is enabled",
|
|
253
|
+
"items": {
|
|
254
|
+
"type": "string"
|
|
255
|
+
},
|
|
256
|
+
"type": "array"
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
"type": "object"
|
|
260
|
+
},
|
|
261
|
+
"git": {
|
|
262
|
+
"default": {
|
|
263
|
+
"commitChanges": true,
|
|
264
|
+
"commitMessage": "chore(release): {{package}} v{{version}} [skip ci]",
|
|
265
|
+
"push": true,
|
|
266
|
+
"tagMessage": "Release {{package}} v{{version}}",
|
|
267
|
+
"useTokenForPush": false
|
|
268
|
+
},
|
|
269
|
+
"description": "Git operations configuration",
|
|
270
|
+
"properties": {
|
|
271
|
+
"beforeCommit": {
|
|
272
|
+
"description": "Command to run before creating commit (e.g., 'bun run format', 'npm run lint:fix'). Useful for formatting changed files",
|
|
273
|
+
"examples": ["bun run format", "npm run lint:fix", "prettier --write ."],
|
|
274
|
+
"type": "string"
|
|
275
|
+
},
|
|
276
|
+
"commitChanges": {
|
|
277
|
+
"default": true,
|
|
278
|
+
"description": "Create git commit with version changes",
|
|
279
|
+
"type": "boolean"
|
|
280
|
+
},
|
|
281
|
+
"commitMessage": {
|
|
282
|
+
"default": "chore(release): {{package}} v{{version}} [skip ci]",
|
|
283
|
+
"description": "Commit message template. Supports {{package}} and {{version}} placeholders",
|
|
284
|
+
"type": "string"
|
|
285
|
+
},
|
|
286
|
+
"push": {
|
|
287
|
+
"default": true,
|
|
288
|
+
"description": "Push changes and tags to remote repository",
|
|
289
|
+
"type": "boolean"
|
|
290
|
+
},
|
|
291
|
+
"tagMessage": {
|
|
292
|
+
"default": "Release {{package}} v{{version}}",
|
|
293
|
+
"description": "Git tag message template. Supports {{package}} and {{version}} placeholders",
|
|
294
|
+
"type": "string"
|
|
295
|
+
},
|
|
296
|
+
"useTokenForPush": {
|
|
297
|
+
"default": false,
|
|
298
|
+
"description": "Use GVR_TOKEN for HTTPS push instead of default git credentials. Useful for CI/CD when pushing to protected branches",
|
|
299
|
+
"type": "boolean"
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
"type": "object"
|
|
303
|
+
},
|
|
304
|
+
"gitverse": {
|
|
305
|
+
"default": {
|
|
306
|
+
"checkExisting": true,
|
|
307
|
+
"enabled": true,
|
|
308
|
+
"failOnError": true
|
|
309
|
+
},
|
|
310
|
+
"description": "GitVerse release creation settings",
|
|
311
|
+
"properties": {
|
|
312
|
+
"checkExisting": {
|
|
313
|
+
"default": true,
|
|
314
|
+
"description": "Check if release already exists before creating. Enables idempotent pipeline runs",
|
|
315
|
+
"type": "boolean"
|
|
316
|
+
},
|
|
317
|
+
"enabled": {
|
|
318
|
+
"default": true,
|
|
319
|
+
"description": "Enable GitVerse release creation via API. Requires GVR_TOKEN environment variable",
|
|
320
|
+
"type": "boolean"
|
|
321
|
+
},
|
|
322
|
+
"failOnError": {
|
|
323
|
+
"default": true,
|
|
324
|
+
"description": "Fail the entire release process if GitVerse release creation fails (after retries). When false, release creation errors are logged as warnings",
|
|
325
|
+
"type": "boolean"
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
"type": "object"
|
|
329
|
+
},
|
|
330
|
+
"monorepo": {
|
|
331
|
+
"default": {
|
|
332
|
+
"enabled": false,
|
|
333
|
+
"packages": []
|
|
334
|
+
},
|
|
335
|
+
"description": "Monorepo configuration for managing multiple packages",
|
|
336
|
+
"properties": {
|
|
337
|
+
"enabled": {
|
|
338
|
+
"default": false,
|
|
339
|
+
"description": "Enable monorepo mode. When true, requires --package flag in CLI",
|
|
340
|
+
"type": "boolean"
|
|
341
|
+
},
|
|
342
|
+
"packages": {
|
|
343
|
+
"default": [],
|
|
344
|
+
"description": "List of packages in the monorepo",
|
|
345
|
+
"items": {
|
|
346
|
+
"properties": {
|
|
347
|
+
"changelog": {
|
|
348
|
+
"default": "CHANGELOG.md",
|
|
349
|
+
"description": "Path to CHANGELOG file relative to package directory",
|
|
350
|
+
"type": "string"
|
|
351
|
+
},
|
|
352
|
+
"name": {
|
|
353
|
+
"description": "Short package name used in CLI (e.g., 'sdk', 'release')",
|
|
354
|
+
"type": "string"
|
|
355
|
+
},
|
|
356
|
+
"packageName": {
|
|
357
|
+
"description": "Package name in package.json (e.g., 'gitverse-api-sdk')",
|
|
358
|
+
"type": "string"
|
|
359
|
+
},
|
|
360
|
+
"path": {
|
|
361
|
+
"description": "Relative path to package directory from repository root",
|
|
362
|
+
"type": "string"
|
|
363
|
+
},
|
|
364
|
+
"tagPrefix": {
|
|
365
|
+
"description": "Git tag prefix for this package (e.g., 'v', 'sdk-v', 'release-v')",
|
|
366
|
+
"type": "string"
|
|
367
|
+
}
|
|
368
|
+
},
|
|
369
|
+
"required": ["name", "path", "packageName", "tagPrefix"],
|
|
370
|
+
"type": "object"
|
|
371
|
+
},
|
|
372
|
+
"type": "array"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
"type": "object"
|
|
376
|
+
},
|
|
377
|
+
"retry": {
|
|
378
|
+
"default": {
|
|
379
|
+
"enabled": true,
|
|
380
|
+
"initialDelay": 2000,
|
|
381
|
+
"maxAttempts": 5,
|
|
382
|
+
"maxDelay": 30000,
|
|
383
|
+
"operations": ["push", "createRelease"]
|
|
384
|
+
},
|
|
385
|
+
"description": "Retry mechanism for network operations (push, API calls)",
|
|
386
|
+
"properties": {
|
|
387
|
+
"enabled": {
|
|
388
|
+
"default": true,
|
|
389
|
+
"description": "Enable retry mechanism with exponential backoff",
|
|
390
|
+
"type": "boolean"
|
|
391
|
+
},
|
|
392
|
+
"initialDelay": {
|
|
393
|
+
"default": 2000,
|
|
394
|
+
"description": "Initial delay between retries in milliseconds",
|
|
395
|
+
"maximum": 10000,
|
|
396
|
+
"minimum": 100,
|
|
397
|
+
"type": "integer"
|
|
398
|
+
},
|
|
399
|
+
"maxAttempts": {
|
|
400
|
+
"default": 5,
|
|
401
|
+
"description": "Maximum number of retry attempts",
|
|
402
|
+
"maximum": 10,
|
|
403
|
+
"minimum": 1,
|
|
404
|
+
"type": "integer"
|
|
405
|
+
},
|
|
406
|
+
"maxDelay": {
|
|
407
|
+
"default": 30000,
|
|
408
|
+
"description": "Maximum delay between retries in milliseconds (caps exponential backoff)",
|
|
409
|
+
"maximum": 60000,
|
|
410
|
+
"minimum": 1000,
|
|
411
|
+
"type": "integer"
|
|
412
|
+
},
|
|
413
|
+
"operations": {
|
|
414
|
+
"default": ["push", "createRelease"],
|
|
415
|
+
"description": "List of operations to retry",
|
|
416
|
+
"items": {
|
|
417
|
+
"enum": ["push", "createRelease"],
|
|
418
|
+
"type": "string"
|
|
419
|
+
},
|
|
420
|
+
"type": "array",
|
|
421
|
+
"uniqueItems": true
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
"type": "object"
|
|
425
|
+
},
|
|
426
|
+
"versioning": {
|
|
427
|
+
"default": {
|
|
428
|
+
"allowPrerelease": false,
|
|
429
|
+
"preMajorMode": "auto",
|
|
430
|
+
"prereleasePrefix": "beta",
|
|
431
|
+
"tagPrefix": "v"
|
|
432
|
+
},
|
|
433
|
+
"description": "Semantic versioning configuration",
|
|
434
|
+
"properties": {
|
|
435
|
+
"allowPrerelease": {
|
|
436
|
+
"default": false,
|
|
437
|
+
"description": "Allow prerelease versions (e.g., 1.0.0-beta.0)",
|
|
438
|
+
"type": "boolean"
|
|
439
|
+
},
|
|
440
|
+
"preMajorMode": {
|
|
441
|
+
"default": "auto",
|
|
442
|
+
"description": "Pre-major version bump behavior for BREAKING CHANGES: 'auto' (< 1.0.0 → minor, >= 1.0.0 → major), 'enabled' (always minor), 'disabled' (always major), or version string (e.g., '2.0.0')",
|
|
443
|
+
"type": "string"
|
|
444
|
+
},
|
|
445
|
+
"prereleasePrefix": {
|
|
446
|
+
"default": "beta",
|
|
447
|
+
"description": "Prerelease identifier prefix (e.g., 'beta', 'alpha', 'rc')",
|
|
448
|
+
"type": "string"
|
|
449
|
+
},
|
|
450
|
+
"tagPrefix": {
|
|
451
|
+
"default": "v",
|
|
452
|
+
"description": "Git tag prefix (e.g., 'v', 'sdk-v'). Only used in single-package mode",
|
|
453
|
+
"type": "string"
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
"type": "object"
|
|
457
|
+
}
|
|
458
|
+
},
|
|
459
|
+
"title": "GitVerse Release Configuration",
|
|
460
|
+
"type": "object"
|
|
461
|
+
}
|