@forge/manifest 8.7.0-next.2 → 8.7.0-next.3
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/CHANGELOG.md +6 -0
- package/out/schema/manifest-schema.json +213 -99
- package/out/schema/manifest.d.ts +180 -88
- package/out/scopes/shipyard-scopes.json +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -12101,114 +12101,228 @@
|
|
|
12101
12101
|
"jira:jqlFunction": {
|
|
12102
12102
|
"type": "array",
|
|
12103
12103
|
"items": {
|
|
12104
|
-
"
|
|
12105
|
-
|
|
12106
|
-
|
|
12107
|
-
"
|
|
12108
|
-
|
|
12109
|
-
|
|
12110
|
-
|
|
12111
|
-
|
|
12112
|
-
|
|
12113
|
-
|
|
12114
|
-
"
|
|
12115
|
-
|
|
12116
|
-
"
|
|
12117
|
-
|
|
12118
|
-
|
|
12119
|
-
|
|
12120
|
-
|
|
12121
|
-
"
|
|
12122
|
-
"type": "
|
|
12104
|
+
"oneOf": [
|
|
12105
|
+
{
|
|
12106
|
+
"type": "object",
|
|
12107
|
+
"properties": {
|
|
12108
|
+
"function": {
|
|
12109
|
+
"type": "string",
|
|
12110
|
+
"minLength": 1,
|
|
12111
|
+
"maxLength": 255,
|
|
12112
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
12113
|
+
},
|
|
12114
|
+
"name": {
|
|
12115
|
+
"minLength": 1,
|
|
12116
|
+
"maxLength": 255,
|
|
12117
|
+
"type": "string"
|
|
12118
|
+
},
|
|
12119
|
+
"arguments": {
|
|
12120
|
+
"type": "array",
|
|
12121
|
+
"items": {
|
|
12122
|
+
"type": "object",
|
|
12123
|
+
"properties": {
|
|
12124
|
+
"name": {
|
|
12125
|
+
"minLength": 1,
|
|
12126
|
+
"maxLength": 255,
|
|
12127
|
+
"type": "string"
|
|
12128
|
+
},
|
|
12129
|
+
"required": {
|
|
12130
|
+
"type": "boolean"
|
|
12131
|
+
}
|
|
12132
|
+
},
|
|
12133
|
+
"required": [
|
|
12134
|
+
"name",
|
|
12135
|
+
"required"
|
|
12136
|
+
]
|
|
12137
|
+
}
|
|
12138
|
+
},
|
|
12139
|
+
"types": {
|
|
12140
|
+
"type": "array",
|
|
12141
|
+
"items": {
|
|
12142
|
+
"type": "string",
|
|
12143
|
+
"enum": [
|
|
12144
|
+
"issue",
|
|
12145
|
+
"project",
|
|
12146
|
+
"project_category",
|
|
12147
|
+
"project_type",
|
|
12148
|
+
"hierarchy_level",
|
|
12149
|
+
"version",
|
|
12150
|
+
"component",
|
|
12151
|
+
"user",
|
|
12152
|
+
"group",
|
|
12153
|
+
"team",
|
|
12154
|
+
"project_role",
|
|
12155
|
+
"priority",
|
|
12156
|
+
"resolution",
|
|
12157
|
+
"issue_type",
|
|
12158
|
+
"status",
|
|
12159
|
+
"status_category",
|
|
12160
|
+
"cascading_option",
|
|
12161
|
+
"option",
|
|
12162
|
+
"saved_filter",
|
|
12163
|
+
"issue_security_level",
|
|
12164
|
+
"issue_restriction",
|
|
12165
|
+
"label",
|
|
12166
|
+
"attachment",
|
|
12167
|
+
"issue_list",
|
|
12168
|
+
"issue_link_type",
|
|
12169
|
+
"date",
|
|
12170
|
+
"text",
|
|
12171
|
+
"number",
|
|
12172
|
+
"duration",
|
|
12173
|
+
"url"
|
|
12174
|
+
]
|
|
12175
|
+
}
|
|
12176
|
+
},
|
|
12177
|
+
"operators": {
|
|
12178
|
+
"type": "array",
|
|
12179
|
+
"items": {
|
|
12180
|
+
"type": "string",
|
|
12181
|
+
"enum": [
|
|
12182
|
+
"=",
|
|
12183
|
+
"!=",
|
|
12184
|
+
">",
|
|
12185
|
+
">=",
|
|
12186
|
+
"<",
|
|
12187
|
+
"<=",
|
|
12188
|
+
"in",
|
|
12189
|
+
"not in",
|
|
12190
|
+
"~",
|
|
12191
|
+
"!~",
|
|
12192
|
+
"is",
|
|
12193
|
+
"is not"
|
|
12194
|
+
]
|
|
12123
12195
|
}
|
|
12124
12196
|
},
|
|
12197
|
+
"key": {
|
|
12198
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
12199
|
+
}
|
|
12200
|
+
},
|
|
12201
|
+
"required": [
|
|
12202
|
+
"arguments",
|
|
12203
|
+
"function",
|
|
12204
|
+
"name",
|
|
12205
|
+
"operators",
|
|
12206
|
+
"types",
|
|
12207
|
+
"key"
|
|
12208
|
+
],
|
|
12209
|
+
"not": {
|
|
12125
12210
|
"required": [
|
|
12126
|
-
"
|
|
12127
|
-
"required"
|
|
12128
|
-
]
|
|
12129
|
-
}
|
|
12130
|
-
},
|
|
12131
|
-
"types": {
|
|
12132
|
-
"type": "array",
|
|
12133
|
-
"items": {
|
|
12134
|
-
"type": "string",
|
|
12135
|
-
"enum": [
|
|
12136
|
-
"issue",
|
|
12137
|
-
"project",
|
|
12138
|
-
"project_category",
|
|
12139
|
-
"project_type",
|
|
12140
|
-
"hierarchy_level",
|
|
12141
|
-
"version",
|
|
12142
|
-
"component",
|
|
12143
|
-
"user",
|
|
12144
|
-
"group",
|
|
12145
|
-
"team",
|
|
12146
|
-
"project_role",
|
|
12147
|
-
"priority",
|
|
12148
|
-
"resolution",
|
|
12149
|
-
"issue_type",
|
|
12150
|
-
"status",
|
|
12151
|
-
"status_category",
|
|
12152
|
-
"cascading_option",
|
|
12153
|
-
"option",
|
|
12154
|
-
"saved_filter",
|
|
12155
|
-
"issue_security_level",
|
|
12156
|
-
"issue_restriction",
|
|
12157
|
-
"label",
|
|
12158
|
-
"attachment",
|
|
12159
|
-
"issue_list",
|
|
12160
|
-
"issue_link_type",
|
|
12161
|
-
"date",
|
|
12162
|
-
"text",
|
|
12163
|
-
"number",
|
|
12164
|
-
"duration",
|
|
12165
|
-
"url"
|
|
12211
|
+
"unlicensedAccess"
|
|
12166
12212
|
]
|
|
12167
12213
|
}
|
|
12168
12214
|
},
|
|
12169
|
-
|
|
12170
|
-
"type": "
|
|
12171
|
-
"
|
|
12172
|
-
"
|
|
12173
|
-
|
|
12174
|
-
"
|
|
12175
|
-
"
|
|
12176
|
-
"
|
|
12177
|
-
|
|
12178
|
-
|
|
12179
|
-
"
|
|
12180
|
-
"
|
|
12181
|
-
"
|
|
12182
|
-
|
|
12183
|
-
|
|
12184
|
-
"
|
|
12185
|
-
"
|
|
12215
|
+
{
|
|
12216
|
+
"type": "object",
|
|
12217
|
+
"properties": {
|
|
12218
|
+
"endpoint": {
|
|
12219
|
+
"type": "string",
|
|
12220
|
+
"minLength": 1,
|
|
12221
|
+
"maxLength": 255,
|
|
12222
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
12223
|
+
},
|
|
12224
|
+
"name": {
|
|
12225
|
+
"minLength": 1,
|
|
12226
|
+
"maxLength": 255,
|
|
12227
|
+
"type": "string"
|
|
12228
|
+
},
|
|
12229
|
+
"arguments": {
|
|
12230
|
+
"type": "array",
|
|
12231
|
+
"items": {
|
|
12232
|
+
"type": "object",
|
|
12233
|
+
"properties": {
|
|
12234
|
+
"name": {
|
|
12235
|
+
"minLength": 1,
|
|
12236
|
+
"maxLength": 255,
|
|
12237
|
+
"type": "string"
|
|
12238
|
+
},
|
|
12239
|
+
"required": {
|
|
12240
|
+
"type": "boolean"
|
|
12241
|
+
}
|
|
12242
|
+
},
|
|
12243
|
+
"required": [
|
|
12244
|
+
"name",
|
|
12245
|
+
"required"
|
|
12246
|
+
]
|
|
12247
|
+
}
|
|
12248
|
+
},
|
|
12249
|
+
"types": {
|
|
12250
|
+
"type": "array",
|
|
12251
|
+
"items": {
|
|
12252
|
+
"type": "string",
|
|
12253
|
+
"enum": [
|
|
12254
|
+
"issue",
|
|
12255
|
+
"project",
|
|
12256
|
+
"project_category",
|
|
12257
|
+
"project_type",
|
|
12258
|
+
"hierarchy_level",
|
|
12259
|
+
"version",
|
|
12260
|
+
"component",
|
|
12261
|
+
"user",
|
|
12262
|
+
"group",
|
|
12263
|
+
"team",
|
|
12264
|
+
"project_role",
|
|
12265
|
+
"priority",
|
|
12266
|
+
"resolution",
|
|
12267
|
+
"issue_type",
|
|
12268
|
+
"status",
|
|
12269
|
+
"status_category",
|
|
12270
|
+
"cascading_option",
|
|
12271
|
+
"option",
|
|
12272
|
+
"saved_filter",
|
|
12273
|
+
"issue_security_level",
|
|
12274
|
+
"issue_restriction",
|
|
12275
|
+
"label",
|
|
12276
|
+
"attachment",
|
|
12277
|
+
"issue_list",
|
|
12278
|
+
"issue_link_type",
|
|
12279
|
+
"date",
|
|
12280
|
+
"text",
|
|
12281
|
+
"number",
|
|
12282
|
+
"duration",
|
|
12283
|
+
"url"
|
|
12284
|
+
]
|
|
12285
|
+
}
|
|
12286
|
+
},
|
|
12287
|
+
"operators": {
|
|
12288
|
+
"type": "array",
|
|
12289
|
+
"items": {
|
|
12290
|
+
"type": "string",
|
|
12291
|
+
"enum": [
|
|
12292
|
+
"=",
|
|
12293
|
+
"!=",
|
|
12294
|
+
">",
|
|
12295
|
+
">=",
|
|
12296
|
+
"<",
|
|
12297
|
+
"<=",
|
|
12298
|
+
"in",
|
|
12299
|
+
"not in",
|
|
12300
|
+
"~",
|
|
12301
|
+
"!~",
|
|
12302
|
+
"is",
|
|
12303
|
+
"is not"
|
|
12304
|
+
]
|
|
12305
|
+
}
|
|
12306
|
+
},
|
|
12307
|
+
"key": {
|
|
12308
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
12309
|
+
}
|
|
12310
|
+
},
|
|
12311
|
+
"required": [
|
|
12312
|
+
"arguments",
|
|
12313
|
+
"endpoint",
|
|
12314
|
+
"name",
|
|
12315
|
+
"operators",
|
|
12316
|
+
"types",
|
|
12317
|
+
"key"
|
|
12318
|
+
],
|
|
12319
|
+
"not": {
|
|
12320
|
+
"required": [
|
|
12321
|
+
"unlicensedAccess"
|
|
12186
12322
|
]
|
|
12187
12323
|
}
|
|
12188
|
-
},
|
|
12189
|
-
"function": {
|
|
12190
|
-
"type": "string",
|
|
12191
|
-
"minLength": 1,
|
|
12192
|
-
"maxLength": 255,
|
|
12193
|
-
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
12194
|
-
},
|
|
12195
|
-
"key": {
|
|
12196
|
-
"$ref": "#/definitions/ModuleKeySchema"
|
|
12197
12324
|
}
|
|
12198
|
-
|
|
12199
|
-
"required": [
|
|
12200
|
-
"arguments",
|
|
12201
|
-
"function",
|
|
12202
|
-
"name",
|
|
12203
|
-
"operators",
|
|
12204
|
-
"types",
|
|
12205
|
-
"key"
|
|
12206
|
-
],
|
|
12207
|
-
"not": {
|
|
12208
|
-
"required": [
|
|
12209
|
-
"unlicensedAccess"
|
|
12210
|
-
]
|
|
12211
|
-
}
|
|
12325
|
+
]
|
|
12212
12326
|
},
|
|
12213
12327
|
"minItems": 1
|
|
12214
12328
|
},
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -6431,94 +6431,186 @@ export interface Modules {
|
|
|
6431
6431
|
}[]
|
|
6432
6432
|
];
|
|
6433
6433
|
'jira:jqlFunction'?: [
|
|
6434
|
-
|
|
6435
|
-
|
|
6436
|
-
|
|
6437
|
-
|
|
6438
|
-
|
|
6439
|
-
|
|
6440
|
-
|
|
6441
|
-
|
|
6442
|
-
|
|
6443
|
-
|
|
6444
|
-
|
|
6445
|
-
|
|
6446
|
-
|
|
6447
|
-
|
|
6448
|
-
|
|
6449
|
-
|
|
6450
|
-
|
|
6451
|
-
|
|
6452
|
-
|
|
6453
|
-
|
|
6454
|
-
|
|
6455
|
-
|
|
6456
|
-
|
|
6457
|
-
|
|
6458
|
-
|
|
6459
|
-
|
|
6460
|
-
|
|
6461
|
-
|
|
6462
|
-
|
|
6463
|
-
|
|
6464
|
-
|
|
6465
|
-
|
|
6466
|
-
|
|
6467
|
-
|
|
6468
|
-
|
|
6469
|
-
|
|
6470
|
-
|
|
6471
|
-
|
|
6472
|
-
|
|
6473
|
-
|
|
6474
|
-
|
|
6475
|
-
|
|
6476
|
-
|
|
6477
|
-
|
|
6478
|
-
|
|
6479
|
-
|
|
6480
|
-
|
|
6481
|
-
|
|
6482
|
-
|
|
6483
|
-
|
|
6484
|
-
|
|
6485
|
-
|
|
6486
|
-
|
|
6487
|
-
|
|
6488
|
-
|
|
6489
|
-
|
|
6490
|
-
|
|
6491
|
-
|
|
6492
|
-
|
|
6493
|
-
|
|
6494
|
-
|
|
6495
|
-
|
|
6496
|
-
|
|
6497
|
-
|
|
6498
|
-
|
|
6499
|
-
|
|
6500
|
-
|
|
6501
|
-
|
|
6502
|
-
|
|
6503
|
-
|
|
6504
|
-
|
|
6505
|
-
|
|
6506
|
-
|
|
6507
|
-
|
|
6508
|
-
|
|
6509
|
-
|
|
6510
|
-
|
|
6511
|
-
|
|
6512
|
-
|
|
6513
|
-
|
|
6514
|
-
|
|
6515
|
-
|
|
6516
|
-
|
|
6517
|
-
|
|
6518
|
-
|
|
6519
|
-
|
|
6520
|
-
|
|
6521
|
-
|
|
6434
|
+
(
|
|
6435
|
+
| {
|
|
6436
|
+
function: string;
|
|
6437
|
+
name: string;
|
|
6438
|
+
arguments: {
|
|
6439
|
+
name: string;
|
|
6440
|
+
required: boolean;
|
|
6441
|
+
[k: string]: unknown;
|
|
6442
|
+
}[];
|
|
6443
|
+
types: (
|
|
6444
|
+
| 'issue'
|
|
6445
|
+
| 'project'
|
|
6446
|
+
| 'project_category'
|
|
6447
|
+
| 'project_type'
|
|
6448
|
+
| 'hierarchy_level'
|
|
6449
|
+
| 'version'
|
|
6450
|
+
| 'component'
|
|
6451
|
+
| 'user'
|
|
6452
|
+
| 'group'
|
|
6453
|
+
| 'team'
|
|
6454
|
+
| 'project_role'
|
|
6455
|
+
| 'priority'
|
|
6456
|
+
| 'resolution'
|
|
6457
|
+
| 'issue_type'
|
|
6458
|
+
| 'status'
|
|
6459
|
+
| 'status_category'
|
|
6460
|
+
| 'cascading_option'
|
|
6461
|
+
| 'option'
|
|
6462
|
+
| 'saved_filter'
|
|
6463
|
+
| 'issue_security_level'
|
|
6464
|
+
| 'issue_restriction'
|
|
6465
|
+
| 'label'
|
|
6466
|
+
| 'attachment'
|
|
6467
|
+
| 'issue_list'
|
|
6468
|
+
| 'issue_link_type'
|
|
6469
|
+
| 'date'
|
|
6470
|
+
| 'text'
|
|
6471
|
+
| 'number'
|
|
6472
|
+
| 'duration'
|
|
6473
|
+
| 'url'
|
|
6474
|
+
)[];
|
|
6475
|
+
operators: ('=' | '!=' | '>' | '>=' | '<' | '<=' | 'in' | 'not in' | '~' | '!~' | 'is' | 'is not')[];
|
|
6476
|
+
key: ModuleKeySchema;
|
|
6477
|
+
[k: string]: unknown;
|
|
6478
|
+
}
|
|
6479
|
+
| {
|
|
6480
|
+
endpoint: string;
|
|
6481
|
+
name: string;
|
|
6482
|
+
arguments: {
|
|
6483
|
+
name: string;
|
|
6484
|
+
required: boolean;
|
|
6485
|
+
[k: string]: unknown;
|
|
6486
|
+
}[];
|
|
6487
|
+
types: (
|
|
6488
|
+
| 'issue'
|
|
6489
|
+
| 'project'
|
|
6490
|
+
| 'project_category'
|
|
6491
|
+
| 'project_type'
|
|
6492
|
+
| 'hierarchy_level'
|
|
6493
|
+
| 'version'
|
|
6494
|
+
| 'component'
|
|
6495
|
+
| 'user'
|
|
6496
|
+
| 'group'
|
|
6497
|
+
| 'team'
|
|
6498
|
+
| 'project_role'
|
|
6499
|
+
| 'priority'
|
|
6500
|
+
| 'resolution'
|
|
6501
|
+
| 'issue_type'
|
|
6502
|
+
| 'status'
|
|
6503
|
+
| 'status_category'
|
|
6504
|
+
| 'cascading_option'
|
|
6505
|
+
| 'option'
|
|
6506
|
+
| 'saved_filter'
|
|
6507
|
+
| 'issue_security_level'
|
|
6508
|
+
| 'issue_restriction'
|
|
6509
|
+
| 'label'
|
|
6510
|
+
| 'attachment'
|
|
6511
|
+
| 'issue_list'
|
|
6512
|
+
| 'issue_link_type'
|
|
6513
|
+
| 'date'
|
|
6514
|
+
| 'text'
|
|
6515
|
+
| 'number'
|
|
6516
|
+
| 'duration'
|
|
6517
|
+
| 'url'
|
|
6518
|
+
)[];
|
|
6519
|
+
operators: ('=' | '!=' | '>' | '>=' | '<' | '<=' | 'in' | 'not in' | '~' | '!~' | 'is' | 'is not')[];
|
|
6520
|
+
key: ModuleKeySchema;
|
|
6521
|
+
[k: string]: unknown;
|
|
6522
|
+
}
|
|
6523
|
+
),
|
|
6524
|
+
...(
|
|
6525
|
+
| {
|
|
6526
|
+
function: string;
|
|
6527
|
+
name: string;
|
|
6528
|
+
arguments: {
|
|
6529
|
+
name: string;
|
|
6530
|
+
required: boolean;
|
|
6531
|
+
[k: string]: unknown;
|
|
6532
|
+
}[];
|
|
6533
|
+
types: (
|
|
6534
|
+
| 'issue'
|
|
6535
|
+
| 'project'
|
|
6536
|
+
| 'project_category'
|
|
6537
|
+
| 'project_type'
|
|
6538
|
+
| 'hierarchy_level'
|
|
6539
|
+
| 'version'
|
|
6540
|
+
| 'component'
|
|
6541
|
+
| 'user'
|
|
6542
|
+
| 'group'
|
|
6543
|
+
| 'team'
|
|
6544
|
+
| 'project_role'
|
|
6545
|
+
| 'priority'
|
|
6546
|
+
| 'resolution'
|
|
6547
|
+
| 'issue_type'
|
|
6548
|
+
| 'status'
|
|
6549
|
+
| 'status_category'
|
|
6550
|
+
| 'cascading_option'
|
|
6551
|
+
| 'option'
|
|
6552
|
+
| 'saved_filter'
|
|
6553
|
+
| 'issue_security_level'
|
|
6554
|
+
| 'issue_restriction'
|
|
6555
|
+
| 'label'
|
|
6556
|
+
| 'attachment'
|
|
6557
|
+
| 'issue_list'
|
|
6558
|
+
| 'issue_link_type'
|
|
6559
|
+
| 'date'
|
|
6560
|
+
| 'text'
|
|
6561
|
+
| 'number'
|
|
6562
|
+
| 'duration'
|
|
6563
|
+
| 'url'
|
|
6564
|
+
)[];
|
|
6565
|
+
operators: ('=' | '!=' | '>' | '>=' | '<' | '<=' | 'in' | 'not in' | '~' | '!~' | 'is' | 'is not')[];
|
|
6566
|
+
key: ModuleKeySchema;
|
|
6567
|
+
[k: string]: unknown;
|
|
6568
|
+
}
|
|
6569
|
+
| {
|
|
6570
|
+
endpoint: string;
|
|
6571
|
+
name: string;
|
|
6572
|
+
arguments: {
|
|
6573
|
+
name: string;
|
|
6574
|
+
required: boolean;
|
|
6575
|
+
[k: string]: unknown;
|
|
6576
|
+
}[];
|
|
6577
|
+
types: (
|
|
6578
|
+
| 'issue'
|
|
6579
|
+
| 'project'
|
|
6580
|
+
| 'project_category'
|
|
6581
|
+
| 'project_type'
|
|
6582
|
+
| 'hierarchy_level'
|
|
6583
|
+
| 'version'
|
|
6584
|
+
| 'component'
|
|
6585
|
+
| 'user'
|
|
6586
|
+
| 'group'
|
|
6587
|
+
| 'team'
|
|
6588
|
+
| 'project_role'
|
|
6589
|
+
| 'priority'
|
|
6590
|
+
| 'resolution'
|
|
6591
|
+
| 'issue_type'
|
|
6592
|
+
| 'status'
|
|
6593
|
+
| 'status_category'
|
|
6594
|
+
| 'cascading_option'
|
|
6595
|
+
| 'option'
|
|
6596
|
+
| 'saved_filter'
|
|
6597
|
+
| 'issue_security_level'
|
|
6598
|
+
| 'issue_restriction'
|
|
6599
|
+
| 'label'
|
|
6600
|
+
| 'attachment'
|
|
6601
|
+
| 'issue_list'
|
|
6602
|
+
| 'issue_link_type'
|
|
6603
|
+
| 'date'
|
|
6604
|
+
| 'text'
|
|
6605
|
+
| 'number'
|
|
6606
|
+
| 'duration'
|
|
6607
|
+
| 'url'
|
|
6608
|
+
)[];
|
|
6609
|
+
operators: ('=' | '!=' | '>' | '>=' | '<' | '<=' | 'in' | 'not in' | '~' | '!~' | 'is' | 'is not')[];
|
|
6610
|
+
key: ModuleKeySchema;
|
|
6611
|
+
[k: string]: unknown;
|
|
6612
|
+
}
|
|
6613
|
+
)[]
|
|
6522
6614
|
];
|
|
6523
6615
|
'jira:timeTrackingProvider'?: [
|
|
6524
6616
|
{
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"delete:dashboard:jira",
|
|
35
35
|
"delete:dashboard.property:jira",
|
|
36
36
|
"delete:database:confluence",
|
|
37
|
+
"delete:deal-info:jira",
|
|
37
38
|
"delete:deployment-info:jira",
|
|
38
39
|
"delete:design:jira",
|
|
39
40
|
"delete:dev-info:jira",
|
|
@@ -41,6 +42,7 @@
|
|
|
41
42
|
"delete:embed:confluence",
|
|
42
43
|
"delete:entitlement:jira-service-management",
|
|
43
44
|
"delete:entitlement.detail-field:jira-service-management",
|
|
45
|
+
"delete:entity:graph",
|
|
44
46
|
"delete:feature-flag-info:jira",
|
|
45
47
|
"delete:field-configuration-scheme:jira",
|
|
46
48
|
"delete:field-configuration:jira",
|
|
@@ -176,6 +178,7 @@
|
|
|
176
178
|
"read:dashboard:jira",
|
|
177
179
|
"read:dashboard.property:jira",
|
|
178
180
|
"read:database:confluence",
|
|
181
|
+
"read:deal-info:jira",
|
|
179
182
|
"read:deployment-info:jira",
|
|
180
183
|
"read:deployment:jira-software",
|
|
181
184
|
"read:design:jira",
|
|
@@ -189,6 +192,7 @@
|
|
|
189
192
|
"read:entitlement.detail:jira-service-management",
|
|
190
193
|
"read:entitlements:ccg",
|
|
191
194
|
"read:entitlements:fsag",
|
|
195
|
+
"read:entity:graph",
|
|
192
196
|
"read:epic:jira-software",
|
|
193
197
|
"read:event:compass",
|
|
194
198
|
"read:feature-flag-info:jira",
|
|
@@ -395,6 +399,7 @@
|
|
|
395
399
|
"write:dashboard:jira",
|
|
396
400
|
"write:dashboard.property:jira",
|
|
397
401
|
"write:database:confluence",
|
|
402
|
+
"write:deal-info:jira",
|
|
398
403
|
"write:deployment-info:jira",
|
|
399
404
|
"write:deployment:jira-software",
|
|
400
405
|
"write:design:jira",
|
|
@@ -404,6 +409,7 @@
|
|
|
404
409
|
"write:entitlement:jira-service-management",
|
|
405
410
|
"write:entitlement.detail-field:jira-service-management",
|
|
406
411
|
"write:entitlement.detail:jira-service-management",
|
|
412
|
+
"write:entity:graph",
|
|
407
413
|
"write:epic:jira-software",
|
|
408
414
|
"write:event:compass",
|
|
409
415
|
"write:feature-flag-info:jira",
|