@forge/manifest 5.5.3-next.4-experimental-cf84ac7 → 5.5.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 +9 -2
- package/out/schema/manifest-schema.json +1911 -48
- package/out/schema/manifest.d.ts +1606 -549
- package/package.json +2 -2
package/out/schema/manifest.d.ts
CHANGED
|
@@ -77,7 +77,7 @@ export type Function2 = string;
|
|
|
77
77
|
/**
|
|
78
78
|
* The interval at which to trigger function invocation.
|
|
79
79
|
*/
|
|
80
|
-
export type Interval = 'hour' | 'day' | 'week';
|
|
80
|
+
export type Interval = 'fiveMinute' | 'hour' | 'day' | 'week';
|
|
81
81
|
export type Foo1 = string;
|
|
82
82
|
/**
|
|
83
83
|
* The key for an extension in CaaS. That means that this is a reference to another
|
|
@@ -86,7 +86,7 @@ export type Foo1 = string;
|
|
|
86
86
|
* This key is defined in: https://bitbucket.org/atlassian/connect-service/src/cd7252b/service/cs-apps/api.raml#lines-1094
|
|
87
87
|
*/
|
|
88
88
|
export type Endpoint1 = string;
|
|
89
|
-
export type Interval1 = 'hour' | 'day' | 'week';
|
|
89
|
+
export type Interval1 = 'fiveMinute' | 'hour' | 'day' | 'week';
|
|
90
90
|
/**
|
|
91
91
|
* The method, within the index.js function, that will be called to invoke the function.
|
|
92
92
|
*/
|
|
@@ -5073,26 +5073,58 @@ export interface Modules {
|
|
|
5073
5073
|
)[]
|
|
5074
5074
|
];
|
|
5075
5075
|
'bitbucket:mergeCheck'?: [
|
|
5076
|
-
|
|
5077
|
-
|
|
5078
|
-
|
|
5079
|
-
|
|
5080
|
-
|
|
5081
|
-
|
|
5082
|
-
|
|
5083
|
-
|
|
5084
|
-
|
|
5085
|
-
|
|
5086
|
-
|
|
5087
|
-
|
|
5088
|
-
|
|
5089
|
-
|
|
5090
|
-
|
|
5091
|
-
|
|
5076
|
+
(
|
|
5077
|
+
| {
|
|
5078
|
+
name: string;
|
|
5079
|
+
description?: string;
|
|
5080
|
+
triggers: [
|
|
5081
|
+
'on-merge' | 'on-code-pushed' | 'on-reviewer-status-changed',
|
|
5082
|
+
...('on-merge' | 'on-code-pushed' | 'on-reviewer-status-changed')[]
|
|
5083
|
+
];
|
|
5084
|
+
function: string;
|
|
5085
|
+
key: ModuleKeySchema;
|
|
5086
|
+
[k: string]: unknown;
|
|
5087
|
+
}
|
|
5088
|
+
| {
|
|
5089
|
+
name: string;
|
|
5090
|
+
description?: string;
|
|
5091
|
+
triggers: [
|
|
5092
|
+
'on-merge' | 'on-code-pushed' | 'on-reviewer-status-changed',
|
|
5093
|
+
...('on-merge' | 'on-code-pushed' | 'on-reviewer-status-changed')[]
|
|
5094
|
+
];
|
|
5095
|
+
endpoint: string;
|
|
5096
|
+
key: ModuleKeySchema;
|
|
5097
|
+
[k: string]: unknown;
|
|
5098
|
+
}
|
|
5099
|
+
),
|
|
5100
|
+
...(
|
|
5101
|
+
| {
|
|
5102
|
+
name: string;
|
|
5103
|
+
description?: string;
|
|
5104
|
+
triggers: [
|
|
5105
|
+
'on-merge' | 'on-code-pushed' | 'on-reviewer-status-changed',
|
|
5106
|
+
...('on-merge' | 'on-code-pushed' | 'on-reviewer-status-changed')[]
|
|
5107
|
+
];
|
|
5108
|
+
function: string;
|
|
5109
|
+
key: ModuleKeySchema;
|
|
5110
|
+
[k: string]: unknown;
|
|
5111
|
+
}
|
|
5112
|
+
| {
|
|
5113
|
+
name: string;
|
|
5114
|
+
description?: string;
|
|
5115
|
+
triggers: [
|
|
5116
|
+
'on-merge' | 'on-code-pushed' | 'on-reviewer-status-changed',
|
|
5117
|
+
...('on-merge' | 'on-code-pushed' | 'on-reviewer-status-changed')[]
|
|
5118
|
+
];
|
|
5119
|
+
endpoint: string;
|
|
5120
|
+
key: ModuleKeySchema;
|
|
5121
|
+
[k: string]: unknown;
|
|
5122
|
+
}
|
|
5123
|
+
)[]
|
|
5092
5124
|
];
|
|
5093
5125
|
'connect-jira:keyboardShortcuts'?: [
|
|
5094
5126
|
{
|
|
5095
|
-
shortcut
|
|
5127
|
+
shortcut: string;
|
|
5096
5128
|
context?:
|
|
5097
5129
|
| 'global'
|
|
5098
5130
|
| 'GLOBAL'
|
|
@@ -5102,13 +5134,13 @@ export interface Modules {
|
|
|
5102
5134
|
| 'ISSUE_ACTION'
|
|
5103
5135
|
| 'agile_board'
|
|
5104
5136
|
| 'AGILE_BOARD';
|
|
5105
|
-
name
|
|
5106
|
-
target
|
|
5137
|
+
name: I18NProperty;
|
|
5138
|
+
target: KeyboardShortcutTarget;
|
|
5107
5139
|
key: ModuleKeySchema;
|
|
5108
5140
|
[k: string]: unknown;
|
|
5109
5141
|
},
|
|
5110
5142
|
...{
|
|
5111
|
-
shortcut
|
|
5143
|
+
shortcut: string;
|
|
5112
5144
|
context?:
|
|
5113
5145
|
| 'global'
|
|
5114
5146
|
| 'GLOBAL'
|
|
@@ -5118,8 +5150,8 @@ export interface Modules {
|
|
|
5118
5150
|
| 'ISSUE_ACTION'
|
|
5119
5151
|
| 'agile_board'
|
|
5120
5152
|
| 'AGILE_BOARD';
|
|
5121
|
-
name
|
|
5122
|
-
target
|
|
5153
|
+
name: I18NProperty;
|
|
5154
|
+
target: KeyboardShortcutTarget;
|
|
5123
5155
|
key: ModuleKeySchema;
|
|
5124
5156
|
[k: string]: unknown;
|
|
5125
5157
|
}[]
|
|
@@ -5127,7 +5159,7 @@ export interface Modules {
|
|
|
5127
5159
|
'connect-jira:adminPages'?: [
|
|
5128
5160
|
{
|
|
5129
5161
|
icon?: Icon;
|
|
5130
|
-
name
|
|
5162
|
+
name: I18NProperty1;
|
|
5131
5163
|
weight?: number;
|
|
5132
5164
|
fullPage?: boolean;
|
|
5133
5165
|
cacheable?: boolean;
|
|
@@ -5136,13 +5168,13 @@ export interface Modules {
|
|
|
5136
5168
|
params?: {
|
|
5137
5169
|
[k: string]: unknown;
|
|
5138
5170
|
};
|
|
5139
|
-
url
|
|
5171
|
+
url: string;
|
|
5140
5172
|
key: ModuleKeySchema;
|
|
5141
5173
|
[k: string]: unknown;
|
|
5142
5174
|
},
|
|
5143
5175
|
...{
|
|
5144
5176
|
icon?: Icon;
|
|
5145
|
-
name
|
|
5177
|
+
name: I18NProperty1;
|
|
5146
5178
|
weight?: number;
|
|
5147
5179
|
fullPage?: boolean;
|
|
5148
5180
|
cacheable?: boolean;
|
|
@@ -5151,7 +5183,7 @@ export interface Modules {
|
|
|
5151
5183
|
params?: {
|
|
5152
5184
|
[k: string]: unknown;
|
|
5153
5185
|
};
|
|
5154
|
-
url
|
|
5186
|
+
url: string;
|
|
5155
5187
|
key: ModuleKeySchema;
|
|
5156
5188
|
[k: string]: unknown;
|
|
5157
5189
|
}[]
|
|
@@ -5160,32 +5192,32 @@ export interface Modules {
|
|
|
5160
5192
|
{
|
|
5161
5193
|
layout?: WebPanelLayout;
|
|
5162
5194
|
tooltip?: I18NProperty2;
|
|
5163
|
-
name
|
|
5195
|
+
name: I18NProperty3;
|
|
5164
5196
|
weight?: number;
|
|
5165
|
-
location
|
|
5197
|
+
location: string;
|
|
5166
5198
|
cacheable?: boolean;
|
|
5167
5199
|
supportsNative?: boolean;
|
|
5168
5200
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5169
5201
|
params?: {
|
|
5170
5202
|
[k: string]: unknown;
|
|
5171
5203
|
};
|
|
5172
|
-
url
|
|
5204
|
+
url: string;
|
|
5173
5205
|
key: ModuleKeySchema;
|
|
5174
5206
|
[k: string]: unknown;
|
|
5175
5207
|
},
|
|
5176
5208
|
...{
|
|
5177
5209
|
layout?: WebPanelLayout;
|
|
5178
5210
|
tooltip?: I18NProperty2;
|
|
5179
|
-
name
|
|
5211
|
+
name: I18NProperty3;
|
|
5180
5212
|
weight?: number;
|
|
5181
|
-
location
|
|
5213
|
+
location: string;
|
|
5182
5214
|
cacheable?: boolean;
|
|
5183
5215
|
supportsNative?: boolean;
|
|
5184
5216
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5185
5217
|
params?: {
|
|
5186
5218
|
[k: string]: unknown;
|
|
5187
5219
|
};
|
|
5188
|
-
url
|
|
5220
|
+
url: string;
|
|
5189
5221
|
key: ModuleKeySchema;
|
|
5190
5222
|
[k: string]: unknown;
|
|
5191
5223
|
}[]
|
|
@@ -5194,20 +5226,20 @@ export interface Modules {
|
|
|
5194
5226
|
{
|
|
5195
5227
|
filter?: string;
|
|
5196
5228
|
excludeBody?: boolean;
|
|
5197
|
-
event
|
|
5229
|
+
event: string;
|
|
5198
5230
|
conditions?: (CompositeCondition | SingleCondition)[];
|
|
5199
5231
|
propertyKeys?: string[];
|
|
5200
|
-
url
|
|
5232
|
+
url: string;
|
|
5201
5233
|
key: ModuleKeySchema;
|
|
5202
5234
|
[k: string]: unknown;
|
|
5203
5235
|
},
|
|
5204
5236
|
...{
|
|
5205
5237
|
filter?: string;
|
|
5206
5238
|
excludeBody?: boolean;
|
|
5207
|
-
event
|
|
5239
|
+
event: string;
|
|
5208
5240
|
conditions?: (CompositeCondition | SingleCondition)[];
|
|
5209
5241
|
propertyKeys?: string[];
|
|
5210
|
-
url
|
|
5242
|
+
url: string;
|
|
5211
5243
|
key: ModuleKeySchema;
|
|
5212
5244
|
[k: string]: unknown;
|
|
5213
5245
|
}[]
|
|
@@ -5215,7 +5247,7 @@ export interface Modules {
|
|
|
5215
5247
|
'connect-jira:postInstallPage'?: [
|
|
5216
5248
|
{
|
|
5217
5249
|
icon?: Icon1;
|
|
5218
|
-
name
|
|
5250
|
+
name: I18NProperty4;
|
|
5219
5251
|
weight?: number;
|
|
5220
5252
|
cacheable?: boolean;
|
|
5221
5253
|
location?: string;
|
|
@@ -5223,13 +5255,13 @@ export interface Modules {
|
|
|
5223
5255
|
params?: {
|
|
5224
5256
|
[k: string]: unknown;
|
|
5225
5257
|
};
|
|
5226
|
-
url
|
|
5258
|
+
url: string;
|
|
5227
5259
|
key: ModuleKeySchema;
|
|
5228
5260
|
[k: string]: unknown;
|
|
5229
5261
|
},
|
|
5230
5262
|
...{
|
|
5231
5263
|
icon?: Icon1;
|
|
5232
|
-
name
|
|
5264
|
+
name: I18NProperty4;
|
|
5233
5265
|
weight?: number;
|
|
5234
5266
|
cacheable?: boolean;
|
|
5235
5267
|
location?: string;
|
|
@@ -5237,7 +5269,7 @@ export interface Modules {
|
|
|
5237
5269
|
params?: {
|
|
5238
5270
|
[k: string]: unknown;
|
|
5239
5271
|
};
|
|
5240
|
-
url
|
|
5272
|
+
url: string;
|
|
5241
5273
|
key: ModuleKeySchema;
|
|
5242
5274
|
[k: string]: unknown;
|
|
5243
5275
|
}[]
|
|
@@ -5245,9 +5277,9 @@ export interface Modules {
|
|
|
5245
5277
|
'connect-jira:webSections'?: [
|
|
5246
5278
|
{
|
|
5247
5279
|
tooltip?: I18NProperty5;
|
|
5248
|
-
name
|
|
5280
|
+
name: I18NProperty6;
|
|
5249
5281
|
weight?: number;
|
|
5250
|
-
location
|
|
5282
|
+
location: string;
|
|
5251
5283
|
conditions?: (CompositeCondition | SingleCondition)[];
|
|
5252
5284
|
params?: {
|
|
5253
5285
|
[k: string]: unknown;
|
|
@@ -5257,9 +5289,9 @@ export interface Modules {
|
|
|
5257
5289
|
},
|
|
5258
5290
|
...{
|
|
5259
5291
|
tooltip?: I18NProperty5;
|
|
5260
|
-
name
|
|
5292
|
+
name: I18NProperty6;
|
|
5261
5293
|
weight?: number;
|
|
5262
|
-
location
|
|
5294
|
+
location: string;
|
|
5263
5295
|
conditions?: (CompositeCondition | SingleCondition)[];
|
|
5264
5296
|
params?: {
|
|
5265
5297
|
[k: string]: unknown;
|
|
@@ -5271,7 +5303,7 @@ export interface Modules {
|
|
|
5271
5303
|
'connect-jira:generalPages'?: [
|
|
5272
5304
|
{
|
|
5273
5305
|
icon?: Icon2;
|
|
5274
|
-
name
|
|
5306
|
+
name: I18NProperty7;
|
|
5275
5307
|
weight?: number;
|
|
5276
5308
|
cacheable?: boolean;
|
|
5277
5309
|
location?: string;
|
|
@@ -5279,13 +5311,13 @@ export interface Modules {
|
|
|
5279
5311
|
params?: {
|
|
5280
5312
|
[k: string]: unknown;
|
|
5281
5313
|
};
|
|
5282
|
-
url
|
|
5314
|
+
url: string;
|
|
5283
5315
|
key: ModuleKeySchema;
|
|
5284
5316
|
[k: string]: unknown;
|
|
5285
5317
|
},
|
|
5286
5318
|
...{
|
|
5287
5319
|
icon?: Icon2;
|
|
5288
|
-
name
|
|
5320
|
+
name: I18NProperty7;
|
|
5289
5321
|
weight?: number;
|
|
5290
5322
|
cacheable?: boolean;
|
|
5291
5323
|
location?: string;
|
|
@@ -5293,7 +5325,7 @@ export interface Modules {
|
|
|
5293
5325
|
params?: {
|
|
5294
5326
|
[k: string]: unknown;
|
|
5295
5327
|
};
|
|
5296
|
-
url
|
|
5328
|
+
url: string;
|
|
5297
5329
|
key: ModuleKeySchema;
|
|
5298
5330
|
[k: string]: unknown;
|
|
5299
5331
|
}[]
|
|
@@ -5310,8 +5342,8 @@ export interface Modules {
|
|
|
5310
5342
|
url?: string;
|
|
5311
5343
|
target?: WebItemTarget;
|
|
5312
5344
|
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
5313
|
-
name
|
|
5314
|
-
location
|
|
5345
|
+
name: I18NProperty10;
|
|
5346
|
+
location: string;
|
|
5315
5347
|
cacheable?: boolean;
|
|
5316
5348
|
conditions?: (SingleCondition1 | CompositeCondition1)[];
|
|
5317
5349
|
key: ModuleKeySchema;
|
|
@@ -5328,8 +5360,8 @@ export interface Modules {
|
|
|
5328
5360
|
url?: string;
|
|
5329
5361
|
target?: WebItemTarget;
|
|
5330
5362
|
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
5331
|
-
name
|
|
5332
|
-
location
|
|
5363
|
+
name: I18NProperty10;
|
|
5364
|
+
location: string;
|
|
5333
5365
|
cacheable?: boolean;
|
|
5334
5366
|
conditions?: (SingleCondition1 | CompositeCondition1)[];
|
|
5335
5367
|
key: ModuleKeySchema;
|
|
@@ -5339,7 +5371,7 @@ export interface Modules {
|
|
|
5339
5371
|
'connect-jira:configurePage'?: [
|
|
5340
5372
|
{
|
|
5341
5373
|
icon?: Icon4;
|
|
5342
|
-
name
|
|
5374
|
+
name: I18NProperty11;
|
|
5343
5375
|
weight?: number;
|
|
5344
5376
|
fullPage?: boolean;
|
|
5345
5377
|
cacheable?: boolean;
|
|
@@ -5348,13 +5380,13 @@ export interface Modules {
|
|
|
5348
5380
|
params?: {
|
|
5349
5381
|
[k: string]: unknown;
|
|
5350
5382
|
};
|
|
5351
|
-
url
|
|
5383
|
+
url: string;
|
|
5352
5384
|
key: ModuleKeySchema;
|
|
5353
5385
|
[k: string]: unknown;
|
|
5354
5386
|
},
|
|
5355
5387
|
...{
|
|
5356
5388
|
icon?: Icon4;
|
|
5357
|
-
name
|
|
5389
|
+
name: I18NProperty11;
|
|
5358
5390
|
weight?: number;
|
|
5359
5391
|
fullPage?: boolean;
|
|
5360
5392
|
cacheable?: boolean;
|
|
@@ -5363,7 +5395,7 @@ export interface Modules {
|
|
|
5363
5395
|
params?: {
|
|
5364
5396
|
[k: string]: unknown;
|
|
5365
5397
|
};
|
|
5366
|
-
url
|
|
5398
|
+
url: string;
|
|
5367
5399
|
key: ModuleKeySchema;
|
|
5368
5400
|
[k: string]: unknown;
|
|
5369
5401
|
}[]
|
|
@@ -5372,14 +5404,14 @@ export interface Modules {
|
|
|
5372
5404
|
{
|
|
5373
5405
|
options?: DialogOptions1;
|
|
5374
5406
|
cacheable?: boolean;
|
|
5375
|
-
url
|
|
5407
|
+
url: string;
|
|
5376
5408
|
key: ModuleKeySchema;
|
|
5377
5409
|
[k: string]: unknown;
|
|
5378
5410
|
},
|
|
5379
5411
|
...{
|
|
5380
5412
|
options?: DialogOptions1;
|
|
5381
5413
|
cacheable?: boolean;
|
|
5382
|
-
url
|
|
5414
|
+
url: string;
|
|
5383
5415
|
key: ModuleKeySchema;
|
|
5384
5416
|
[k: string]: unknown;
|
|
5385
5417
|
}[]
|
|
@@ -5387,14 +5419,14 @@ export interface Modules {
|
|
|
5387
5419
|
'connect-jira:jiraEntityProperties'?: [
|
|
5388
5420
|
{
|
|
5389
5421
|
entityType?: 'issue' | 'ISSUE' | 'user' | 'USER' | 'project' | 'PROJECT';
|
|
5390
|
-
name
|
|
5422
|
+
name: I18NProperty13;
|
|
5391
5423
|
keyConfigurations?: IndexKeyConfiguration[];
|
|
5392
5424
|
key: ModuleKeySchema;
|
|
5393
5425
|
[k: string]: unknown;
|
|
5394
5426
|
},
|
|
5395
5427
|
...{
|
|
5396
5428
|
entityType?: 'issue' | 'ISSUE' | 'user' | 'USER' | 'project' | 'PROJECT';
|
|
5397
|
-
name
|
|
5429
|
+
name: I18NProperty13;
|
|
5398
5430
|
keyConfigurations?: IndexKeyConfiguration[];
|
|
5399
5431
|
key: ModuleKeySchema;
|
|
5400
5432
|
[k: string]: unknown;
|
|
@@ -5402,18 +5434,18 @@ export interface Modules {
|
|
|
5402
5434
|
];
|
|
5403
5435
|
'connect-jira:jiraFeatureFlagInfoProvider'?: [
|
|
5404
5436
|
{
|
|
5405
|
-
homeUrl
|
|
5437
|
+
homeUrl: string;
|
|
5406
5438
|
documentationUrl?: string;
|
|
5407
|
-
name
|
|
5439
|
+
name: I18NProperty14;
|
|
5408
5440
|
actions?: FeatureFlagActions;
|
|
5409
5441
|
logoUrl?: string;
|
|
5410
5442
|
key: ModuleKeySchema;
|
|
5411
5443
|
[k: string]: unknown;
|
|
5412
5444
|
},
|
|
5413
5445
|
...{
|
|
5414
|
-
homeUrl
|
|
5446
|
+
homeUrl: string;
|
|
5415
5447
|
documentationUrl?: string;
|
|
5416
|
-
name
|
|
5448
|
+
name: I18NProperty14;
|
|
5417
5449
|
actions?: FeatureFlagActions;
|
|
5418
5450
|
logoUrl?: string;
|
|
5419
5451
|
key: ModuleKeySchema;
|
|
@@ -5422,8 +5454,8 @@ export interface Modules {
|
|
|
5422
5454
|
];
|
|
5423
5455
|
'connect-jira:jiraProjectPermissions'?: [
|
|
5424
5456
|
{
|
|
5425
|
-
name
|
|
5426
|
-
description
|
|
5457
|
+
name: I18NProperty15;
|
|
5458
|
+
description: I18NProperty16;
|
|
5427
5459
|
category?:
|
|
5428
5460
|
| 'projects'
|
|
5429
5461
|
| 'PROJECTS'
|
|
@@ -5444,8 +5476,8 @@ export interface Modules {
|
|
|
5444
5476
|
[k: string]: unknown;
|
|
5445
5477
|
},
|
|
5446
5478
|
...{
|
|
5447
|
-
name
|
|
5448
|
-
description
|
|
5479
|
+
name: I18NProperty15;
|
|
5480
|
+
description: I18NProperty16;
|
|
5449
5481
|
category?:
|
|
5450
5482
|
| 'projects'
|
|
5451
5483
|
| 'PROJECTS'
|
|
@@ -5468,67 +5500,67 @@ export interface Modules {
|
|
|
5468
5500
|
];
|
|
5469
5501
|
'connect-jira:jiraProjectPages'?: [
|
|
5470
5502
|
{
|
|
5471
|
-
name
|
|
5503
|
+
name: I18NProperty17;
|
|
5472
5504
|
weight?: number;
|
|
5473
5505
|
iconUrl?: string;
|
|
5474
5506
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5475
|
-
url
|
|
5507
|
+
url: string;
|
|
5476
5508
|
key: ModuleKeySchema;
|
|
5477
5509
|
[k: string]: unknown;
|
|
5478
5510
|
},
|
|
5479
5511
|
...{
|
|
5480
|
-
name
|
|
5512
|
+
name: I18NProperty17;
|
|
5481
5513
|
weight?: number;
|
|
5482
5514
|
iconUrl?: string;
|
|
5483
5515
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5484
|
-
url
|
|
5516
|
+
url: string;
|
|
5485
5517
|
key: ModuleKeySchema;
|
|
5486
5518
|
[k: string]: unknown;
|
|
5487
5519
|
}[]
|
|
5488
5520
|
];
|
|
5489
5521
|
'connect-jira:jiraSearchRequestViews'?: [
|
|
5490
5522
|
{
|
|
5491
|
-
name
|
|
5523
|
+
name: I18NProperty18;
|
|
5492
5524
|
weight?: number;
|
|
5493
5525
|
description?: I18NProperty19;
|
|
5494
5526
|
conditions?: (CompositeCondition | SingleCondition)[];
|
|
5495
5527
|
params?: {
|
|
5496
5528
|
[k: string]: unknown;
|
|
5497
5529
|
};
|
|
5498
|
-
url
|
|
5530
|
+
url: string;
|
|
5499
5531
|
key: ModuleKeySchema;
|
|
5500
5532
|
[k: string]: unknown;
|
|
5501
5533
|
},
|
|
5502
5534
|
...{
|
|
5503
|
-
name
|
|
5535
|
+
name: I18NProperty18;
|
|
5504
5536
|
weight?: number;
|
|
5505
5537
|
description?: I18NProperty19;
|
|
5506
5538
|
conditions?: (CompositeCondition | SingleCondition)[];
|
|
5507
5539
|
params?: {
|
|
5508
5540
|
[k: string]: unknown;
|
|
5509
5541
|
};
|
|
5510
|
-
url
|
|
5542
|
+
url: string;
|
|
5511
5543
|
key: ModuleKeySchema;
|
|
5512
5544
|
[k: string]: unknown;
|
|
5513
5545
|
}[]
|
|
5514
5546
|
];
|
|
5515
5547
|
'connect-jira:jiraIssueGlances'?: [
|
|
5516
5548
|
{
|
|
5517
|
-
icon
|
|
5518
|
-
name
|
|
5549
|
+
icon: Icon5;
|
|
5550
|
+
name: I18NProperty20;
|
|
5519
5551
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5520
|
-
content
|
|
5521
|
-
target
|
|
5552
|
+
content: IssueGlanceContentLabel;
|
|
5553
|
+
target: IssueGlanceTargetWebPanel;
|
|
5522
5554
|
jiraNativeAppsEnabled?: boolean;
|
|
5523
5555
|
key: ModuleKeySchema;
|
|
5524
5556
|
[k: string]: unknown;
|
|
5525
5557
|
},
|
|
5526
5558
|
...{
|
|
5527
|
-
icon
|
|
5528
|
-
name
|
|
5559
|
+
icon: Icon5;
|
|
5560
|
+
name: I18NProperty20;
|
|
5529
5561
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5530
|
-
content
|
|
5531
|
-
target
|
|
5562
|
+
content: IssueGlanceContentLabel;
|
|
5563
|
+
target: IssueGlanceTargetWebPanel;
|
|
5532
5564
|
jiraNativeAppsEnabled?: boolean;
|
|
5533
5565
|
key: ModuleKeySchema;
|
|
5534
5566
|
[k: string]: unknown;
|
|
@@ -5536,33 +5568,33 @@ export interface Modules {
|
|
|
5536
5568
|
];
|
|
5537
5569
|
'connect-jira:jiraIssueTabPanels'?: [
|
|
5538
5570
|
{
|
|
5539
|
-
name
|
|
5571
|
+
name: I18NProperty22;
|
|
5540
5572
|
weight?: number;
|
|
5541
5573
|
conditions?: (CompositeCondition3 | SingleCondition2)[];
|
|
5542
5574
|
params?: {
|
|
5543
5575
|
[k: string]: unknown;
|
|
5544
5576
|
};
|
|
5545
|
-
url
|
|
5577
|
+
url: string;
|
|
5546
5578
|
key: ModuleKeySchema;
|
|
5547
5579
|
[k: string]: unknown;
|
|
5548
5580
|
},
|
|
5549
5581
|
...{
|
|
5550
|
-
name
|
|
5582
|
+
name: I18NProperty22;
|
|
5551
5583
|
weight?: number;
|
|
5552
5584
|
conditions?: (CompositeCondition3 | SingleCondition2)[];
|
|
5553
5585
|
params?: {
|
|
5554
5586
|
[k: string]: unknown;
|
|
5555
5587
|
};
|
|
5556
|
-
url
|
|
5588
|
+
url: string;
|
|
5557
5589
|
key: ModuleKeySchema;
|
|
5558
5590
|
[k: string]: unknown;
|
|
5559
5591
|
}[]
|
|
5560
5592
|
];
|
|
5561
5593
|
'connect-jira:jiraBuildInfoProvider'?: [
|
|
5562
5594
|
{
|
|
5563
|
-
homeUrl
|
|
5595
|
+
homeUrl: string;
|
|
5564
5596
|
documentationUrl?: string;
|
|
5565
|
-
name
|
|
5597
|
+
name: I18NProperty23;
|
|
5566
5598
|
/**
|
|
5567
5599
|
*
|
|
5568
5600
|
*
|
|
@@ -5579,9 +5611,9 @@ export interface Modules {
|
|
|
5579
5611
|
[k: string]: unknown;
|
|
5580
5612
|
},
|
|
5581
5613
|
...{
|
|
5582
|
-
homeUrl
|
|
5614
|
+
homeUrl: string;
|
|
5583
5615
|
documentationUrl?: string;
|
|
5584
|
-
name
|
|
5616
|
+
name: I18NProperty23;
|
|
5585
5617
|
/**
|
|
5586
5618
|
*
|
|
5587
5619
|
*
|
|
@@ -5601,10 +5633,10 @@ export interface Modules {
|
|
|
5601
5633
|
'connect-jira:jiraWorkflowConditions'?: [
|
|
5602
5634
|
{
|
|
5603
5635
|
view?: URL;
|
|
5604
|
-
expression
|
|
5636
|
+
expression: string;
|
|
5605
5637
|
edit?: URL1;
|
|
5606
5638
|
evaluationContext?: 'user' | 'USER' | 'app' | 'APP';
|
|
5607
|
-
name
|
|
5639
|
+
name: I18NProperty24;
|
|
5608
5640
|
description?: I18NProperty25;
|
|
5609
5641
|
create?: URL2;
|
|
5610
5642
|
key: ModuleKeySchema;
|
|
@@ -5612,10 +5644,10 @@ export interface Modules {
|
|
|
5612
5644
|
},
|
|
5613
5645
|
...{
|
|
5614
5646
|
view?: URL;
|
|
5615
|
-
expression
|
|
5647
|
+
expression: string;
|
|
5616
5648
|
edit?: URL1;
|
|
5617
5649
|
evaluationContext?: 'user' | 'USER' | 'app' | 'APP';
|
|
5618
|
-
name
|
|
5650
|
+
name: I18NProperty24;
|
|
5619
5651
|
description?: I18NProperty25;
|
|
5620
5652
|
create?: URL2;
|
|
5621
5653
|
key: ModuleKeySchema;
|
|
@@ -5624,26 +5656,26 @@ export interface Modules {
|
|
|
5624
5656
|
];
|
|
5625
5657
|
'connect-jira:jiraProjectAdminTabPanels'?: [
|
|
5626
5658
|
{
|
|
5627
|
-
name
|
|
5659
|
+
name: I18NProperty26;
|
|
5628
5660
|
weight?: number;
|
|
5629
5661
|
location?: string;
|
|
5630
5662
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5631
5663
|
params?: {
|
|
5632
5664
|
[k: string]: unknown;
|
|
5633
5665
|
};
|
|
5634
|
-
url
|
|
5666
|
+
url: string;
|
|
5635
5667
|
key: ModuleKeySchema;
|
|
5636
5668
|
[k: string]: unknown;
|
|
5637
5669
|
},
|
|
5638
5670
|
...{
|
|
5639
|
-
name
|
|
5671
|
+
name: I18NProperty26;
|
|
5640
5672
|
weight?: number;
|
|
5641
5673
|
location?: string;
|
|
5642
5674
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5643
5675
|
params?: {
|
|
5644
5676
|
[k: string]: unknown;
|
|
5645
5677
|
};
|
|
5646
|
-
url
|
|
5678
|
+
url: string;
|
|
5647
5679
|
key: ModuleKeySchema;
|
|
5648
5680
|
[k: string]: unknown;
|
|
5649
5681
|
}[]
|
|
@@ -5651,11 +5683,11 @@ export interface Modules {
|
|
|
5651
5683
|
'connect-jira:jiraWorkflowValidators'?: [
|
|
5652
5684
|
{
|
|
5653
5685
|
view?: URL3;
|
|
5654
|
-
expression
|
|
5686
|
+
expression: string;
|
|
5655
5687
|
edit?: URL4;
|
|
5656
5688
|
evaluationContext?: 'user' | 'USER' | 'app' | 'APP';
|
|
5657
|
-
errorMessage
|
|
5658
|
-
name
|
|
5689
|
+
errorMessage: JiraExpressionErrorMessage | I18NProperty27;
|
|
5690
|
+
name: I18NProperty28;
|
|
5659
5691
|
description?: I18NProperty29;
|
|
5660
5692
|
create?: URL5;
|
|
5661
5693
|
key: ModuleKeySchema;
|
|
@@ -5663,11 +5695,11 @@ export interface Modules {
|
|
|
5663
5695
|
},
|
|
5664
5696
|
...{
|
|
5665
5697
|
view?: URL3;
|
|
5666
|
-
expression
|
|
5698
|
+
expression: string;
|
|
5667
5699
|
edit?: URL4;
|
|
5668
5700
|
evaluationContext?: 'user' | 'USER' | 'app' | 'APP';
|
|
5669
|
-
errorMessage
|
|
5670
|
-
name
|
|
5701
|
+
errorMessage: JiraExpressionErrorMessage | I18NProperty27;
|
|
5702
|
+
name: I18NProperty28;
|
|
5671
5703
|
description?: I18NProperty29;
|
|
5672
5704
|
create?: URL5;
|
|
5673
5705
|
key: ModuleKeySchema;
|
|
@@ -5676,9 +5708,9 @@ export interface Modules {
|
|
|
5676
5708
|
];
|
|
5677
5709
|
'connect-jira:jiraRemoteLinkInfoProvider'?: [
|
|
5678
5710
|
{
|
|
5679
|
-
homeUrl
|
|
5711
|
+
homeUrl: string;
|
|
5680
5712
|
documentationUrl?: string;
|
|
5681
|
-
name
|
|
5713
|
+
name: I18NProperty30;
|
|
5682
5714
|
actions?: {
|
|
5683
5715
|
actionId: string;
|
|
5684
5716
|
/**
|
|
@@ -5698,9 +5730,9 @@ export interface Modules {
|
|
|
5698
5730
|
[k: string]: unknown;
|
|
5699
5731
|
},
|
|
5700
5732
|
...{
|
|
5701
|
-
homeUrl
|
|
5733
|
+
homeUrl: string;
|
|
5702
5734
|
documentationUrl?: string;
|
|
5703
|
-
name
|
|
5735
|
+
name: I18NProperty30;
|
|
5704
5736
|
actions?: {
|
|
5705
5737
|
actionId: string;
|
|
5706
5738
|
/**
|
|
@@ -5720,25 +5752,45 @@ export interface Modules {
|
|
|
5720
5752
|
[k: string]: unknown;
|
|
5721
5753
|
}[]
|
|
5722
5754
|
];
|
|
5755
|
+
'connect-jira:jiraSecurityInfoProvider'?: [
|
|
5756
|
+
{
|
|
5757
|
+
name?: I18NProperty32;
|
|
5758
|
+
homeUrl?: string;
|
|
5759
|
+
logoUrl?: string;
|
|
5760
|
+
documentationUrl?: string;
|
|
5761
|
+
actions?: SecurityInformationActions;
|
|
5762
|
+
key: ModuleKeySchema;
|
|
5763
|
+
[k: string]: unknown;
|
|
5764
|
+
},
|
|
5765
|
+
...{
|
|
5766
|
+
name?: I18NProperty32;
|
|
5767
|
+
homeUrl?: string;
|
|
5768
|
+
logoUrl?: string;
|
|
5769
|
+
documentationUrl?: string;
|
|
5770
|
+
actions?: SecurityInformationActions;
|
|
5771
|
+
key: ModuleKeySchema;
|
|
5772
|
+
[k: string]: unknown;
|
|
5773
|
+
}[]
|
|
5774
|
+
];
|
|
5723
5775
|
'connect-jira:jiraBackgroundScripts'?: [
|
|
5724
5776
|
{
|
|
5725
|
-
location
|
|
5726
|
-
url
|
|
5777
|
+
location: DashboardBackgroundScriptLocation | IssueBackgroundScriptLocation;
|
|
5778
|
+
url: string;
|
|
5727
5779
|
key: ModuleKeySchema;
|
|
5728
5780
|
[k: string]: unknown;
|
|
5729
5781
|
},
|
|
5730
5782
|
...{
|
|
5731
|
-
location
|
|
5732
|
-
url
|
|
5783
|
+
location: DashboardBackgroundScriptLocation | IssueBackgroundScriptLocation;
|
|
5784
|
+
url: string;
|
|
5733
5785
|
key: ModuleKeySchema;
|
|
5734
5786
|
[k: string]: unknown;
|
|
5735
5787
|
}[]
|
|
5736
5788
|
];
|
|
5737
5789
|
'connect-jira:jiraDeploymentInfoProvider'?: [
|
|
5738
5790
|
{
|
|
5739
|
-
homeUrl
|
|
5791
|
+
homeUrl: string;
|
|
5740
5792
|
documentationUrl?: string;
|
|
5741
|
-
name
|
|
5793
|
+
name: I18NProperty33;
|
|
5742
5794
|
/**
|
|
5743
5795
|
*
|
|
5744
5796
|
*
|
|
@@ -5766,9 +5818,9 @@ export interface Modules {
|
|
|
5766
5818
|
[k: string]: unknown;
|
|
5767
5819
|
},
|
|
5768
5820
|
...{
|
|
5769
|
-
homeUrl
|
|
5821
|
+
homeUrl: string;
|
|
5770
5822
|
documentationUrl?: string;
|
|
5771
|
-
name
|
|
5823
|
+
name: I18NProperty33;
|
|
5772
5824
|
/**
|
|
5773
5825
|
*
|
|
5774
5826
|
*
|
|
@@ -5798,8 +5850,8 @@ export interface Modules {
|
|
|
5798
5850
|
];
|
|
5799
5851
|
'connect-jira:jiraReports'?: [
|
|
5800
5852
|
{
|
|
5801
|
-
name
|
|
5802
|
-
description
|
|
5853
|
+
name: I18NProperty34;
|
|
5854
|
+
description: I18NProperty35;
|
|
5803
5855
|
reportCategory?:
|
|
5804
5856
|
| 'agile'
|
|
5805
5857
|
| 'AGILE'
|
|
@@ -5809,14 +5861,14 @@ export interface Modules {
|
|
|
5809
5861
|
| 'FORECAST_MANAGEMENT'
|
|
5810
5862
|
| 'other'
|
|
5811
5863
|
| 'OTHER';
|
|
5812
|
-
url
|
|
5864
|
+
url: string;
|
|
5813
5865
|
thumbnailUrl?: string;
|
|
5814
5866
|
key: ModuleKeySchema;
|
|
5815
5867
|
[k: string]: unknown;
|
|
5816
5868
|
},
|
|
5817
5869
|
...{
|
|
5818
|
-
name
|
|
5819
|
-
description
|
|
5870
|
+
name: I18NProperty34;
|
|
5871
|
+
description: I18NProperty35;
|
|
5820
5872
|
reportCategory?:
|
|
5821
5873
|
| 'agile'
|
|
5822
5874
|
| 'AGILE'
|
|
@@ -5826,7 +5878,7 @@ export interface Modules {
|
|
|
5826
5878
|
| 'FORECAST_MANAGEMENT'
|
|
5827
5879
|
| 'other'
|
|
5828
5880
|
| 'OTHER';
|
|
5829
|
-
url
|
|
5881
|
+
url: string;
|
|
5830
5882
|
thumbnailUrl?: string;
|
|
5831
5883
|
key: ModuleKeySchema;
|
|
5832
5884
|
[k: string]: unknown;
|
|
@@ -5834,21 +5886,21 @@ export interface Modules {
|
|
|
5834
5886
|
];
|
|
5835
5887
|
'connect-jira:jiraIssueContexts'?: [
|
|
5836
5888
|
{
|
|
5837
|
-
icon
|
|
5838
|
-
name
|
|
5889
|
+
icon: Icon6;
|
|
5890
|
+
name: I18NProperty36;
|
|
5839
5891
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5840
|
-
content
|
|
5841
|
-
target
|
|
5892
|
+
content: IssueContextContentLabel;
|
|
5893
|
+
target: IssueContextTargetWebPanel;
|
|
5842
5894
|
jiraNativeAppsEnabled?: boolean;
|
|
5843
5895
|
key: ModuleKeySchema;
|
|
5844
5896
|
[k: string]: unknown;
|
|
5845
5897
|
},
|
|
5846
5898
|
...{
|
|
5847
|
-
icon
|
|
5848
|
-
name
|
|
5899
|
+
icon: Icon6;
|
|
5900
|
+
name: I18NProperty36;
|
|
5849
5901
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5850
|
-
content
|
|
5851
|
-
target
|
|
5902
|
+
content: IssueContextContentLabel;
|
|
5903
|
+
target: IssueContextTargetWebPanel;
|
|
5852
5904
|
jiraNativeAppsEnabled?: boolean;
|
|
5853
5905
|
key: ModuleKeySchema;
|
|
5854
5906
|
[k: string]: unknown;
|
|
@@ -5856,24 +5908,24 @@ export interface Modules {
|
|
|
5856
5908
|
];
|
|
5857
5909
|
'connect-jira:jiraDashboardItems'?: [
|
|
5858
5910
|
{
|
|
5859
|
-
name
|
|
5860
|
-
description
|
|
5911
|
+
name: I18NProperty38;
|
|
5912
|
+
description: I18NProperty39;
|
|
5861
5913
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5862
|
-
url
|
|
5914
|
+
url: string;
|
|
5863
5915
|
configurable?: boolean;
|
|
5864
5916
|
refreshable?: boolean;
|
|
5865
|
-
thumbnailUrl
|
|
5917
|
+
thumbnailUrl: string;
|
|
5866
5918
|
key: ModuleKeySchema;
|
|
5867
5919
|
[k: string]: unknown;
|
|
5868
5920
|
},
|
|
5869
5921
|
...{
|
|
5870
|
-
name
|
|
5871
|
-
description
|
|
5922
|
+
name: I18NProperty38;
|
|
5923
|
+
description: I18NProperty39;
|
|
5872
5924
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5873
|
-
url
|
|
5925
|
+
url: string;
|
|
5874
5926
|
configurable?: boolean;
|
|
5875
5927
|
refreshable?: boolean;
|
|
5876
|
-
thumbnailUrl
|
|
5928
|
+
thumbnailUrl: string;
|
|
5877
5929
|
key: ModuleKeySchema;
|
|
5878
5930
|
[k: string]: unknown;
|
|
5879
5931
|
}[]
|
|
@@ -5881,20 +5933,20 @@ export interface Modules {
|
|
|
5881
5933
|
'connect-jira:jiraWorkflowPostFunctions'?: [
|
|
5882
5934
|
{
|
|
5883
5935
|
view?: URL6;
|
|
5884
|
-
triggered
|
|
5936
|
+
triggered: URL7;
|
|
5885
5937
|
edit?: URL8;
|
|
5886
|
-
name
|
|
5887
|
-
description?:
|
|
5938
|
+
name: I18NProperty40;
|
|
5939
|
+
description?: I18NProperty41;
|
|
5888
5940
|
create?: URL9;
|
|
5889
5941
|
key: ModuleKeySchema;
|
|
5890
5942
|
[k: string]: unknown;
|
|
5891
5943
|
},
|
|
5892
5944
|
...{
|
|
5893
5945
|
view?: URL6;
|
|
5894
|
-
triggered
|
|
5946
|
+
triggered: URL7;
|
|
5895
5947
|
edit?: URL8;
|
|
5896
|
-
name
|
|
5897
|
-
description?:
|
|
5948
|
+
name: I18NProperty40;
|
|
5949
|
+
description?: I18NProperty41;
|
|
5898
5950
|
create?: URL9;
|
|
5899
5951
|
key: ModuleKeySchema;
|
|
5900
5952
|
[k: string]: unknown;
|
|
@@ -5902,22 +5954,22 @@ export interface Modules {
|
|
|
5902
5954
|
];
|
|
5903
5955
|
'connect-jira:jiraIssueContents'?: [
|
|
5904
5956
|
{
|
|
5905
|
-
icon
|
|
5906
|
-
tooltip
|
|
5907
|
-
name
|
|
5957
|
+
icon: Icon7;
|
|
5958
|
+
tooltip: I18NProperty42;
|
|
5959
|
+
name: I18NProperty43;
|
|
5908
5960
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5909
|
-
target
|
|
5961
|
+
target: IssuePageTargetWebPanel;
|
|
5910
5962
|
contentPresentConditions?: (CompositeCondition | SingleCondition)[];
|
|
5911
5963
|
jiraNativeAppsEnabled?: boolean;
|
|
5912
5964
|
key: ModuleKeySchema;
|
|
5913
5965
|
[k: string]: unknown;
|
|
5914
5966
|
},
|
|
5915
5967
|
...{
|
|
5916
|
-
icon
|
|
5917
|
-
tooltip
|
|
5918
|
-
name
|
|
5968
|
+
icon: Icon7;
|
|
5969
|
+
tooltip: I18NProperty42;
|
|
5970
|
+
name: I18NProperty43;
|
|
5919
5971
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
5920
|
-
target
|
|
5972
|
+
target: IssuePageTargetWebPanel;
|
|
5921
5973
|
contentPresentConditions?: (CompositeCondition | SingleCondition)[];
|
|
5922
5974
|
jiraNativeAppsEnabled?: boolean;
|
|
5923
5975
|
key: ModuleKeySchema;
|
|
@@ -5926,46 +5978,46 @@ export interface Modules {
|
|
|
5926
5978
|
];
|
|
5927
5979
|
'connect-jira:jiraDevelopmentTool'?: [
|
|
5928
5980
|
{
|
|
5929
|
-
capabilities
|
|
5930
|
-
application
|
|
5931
|
-
name
|
|
5981
|
+
capabilities: ('commit' | 'COMMIT' | 'branch' | 'BRANCH' | 'pull_request' | 'PULL_REQUEST')[];
|
|
5982
|
+
application: I18NProperty44;
|
|
5983
|
+
name: I18NProperty45;
|
|
5932
5984
|
actions?: DevelopmentActions;
|
|
5933
|
-
url
|
|
5934
|
-
logoUrl
|
|
5985
|
+
url: string;
|
|
5986
|
+
logoUrl: string;
|
|
5935
5987
|
key: ModuleKeySchema;
|
|
5936
5988
|
[k: string]: unknown;
|
|
5937
5989
|
},
|
|
5938
5990
|
...{
|
|
5939
|
-
capabilities
|
|
5940
|
-
application
|
|
5941
|
-
name
|
|
5991
|
+
capabilities: ('commit' | 'COMMIT' | 'branch' | 'BRANCH' | 'pull_request' | 'PULL_REQUEST')[];
|
|
5992
|
+
application: I18NProperty44;
|
|
5993
|
+
name: I18NProperty45;
|
|
5942
5994
|
actions?: DevelopmentActions;
|
|
5943
|
-
url
|
|
5944
|
-
logoUrl
|
|
5995
|
+
url: string;
|
|
5996
|
+
logoUrl: string;
|
|
5945
5997
|
key: ModuleKeySchema;
|
|
5946
5998
|
[k: string]: unknown;
|
|
5947
5999
|
}[]
|
|
5948
6000
|
];
|
|
5949
6001
|
'connect-jira:jiraProjectTabPanels'?: [
|
|
5950
6002
|
{
|
|
5951
|
-
name
|
|
6003
|
+
name: I18NProperty46;
|
|
5952
6004
|
weight?: number;
|
|
5953
6005
|
conditions?: (CompositeCondition5 | SingleCondition3)[];
|
|
5954
6006
|
params?: {
|
|
5955
6007
|
[k: string]: unknown;
|
|
5956
6008
|
};
|
|
5957
|
-
url
|
|
6009
|
+
url: string;
|
|
5958
6010
|
key: ModuleKeySchema;
|
|
5959
6011
|
[k: string]: unknown;
|
|
5960
6012
|
},
|
|
5961
6013
|
...{
|
|
5962
|
-
name
|
|
6014
|
+
name: I18NProperty46;
|
|
5963
6015
|
weight?: number;
|
|
5964
6016
|
conditions?: (CompositeCondition5 | SingleCondition3)[];
|
|
5965
6017
|
params?: {
|
|
5966
6018
|
[k: string]: unknown;
|
|
5967
6019
|
};
|
|
5968
|
-
url
|
|
6020
|
+
url: string;
|
|
5969
6021
|
key: ModuleKeySchema;
|
|
5970
6022
|
[k: string]: unknown;
|
|
5971
6023
|
}[]
|
|
@@ -5973,16 +6025,16 @@ export interface Modules {
|
|
|
5973
6025
|
'connect-jira:jiraGlobalPermissions'?: [
|
|
5974
6026
|
{
|
|
5975
6027
|
defaultGrants?: ('none' | 'NONE' | 'jira-administrators' | 'JIRA-ADMINISTRATORS' | 'all' | 'ALL')[];
|
|
5976
|
-
name
|
|
5977
|
-
description
|
|
6028
|
+
name: I18NProperty47;
|
|
6029
|
+
description: I18NProperty48;
|
|
5978
6030
|
anonymousAllowed?: boolean;
|
|
5979
6031
|
key: ModuleKeySchema;
|
|
5980
6032
|
[k: string]: unknown;
|
|
5981
6033
|
},
|
|
5982
6034
|
...{
|
|
5983
6035
|
defaultGrants?: ('none' | 'NONE' | 'jira-administrators' | 'JIRA-ADMINISTRATORS' | 'all' | 'ALL')[];
|
|
5984
|
-
name
|
|
5985
|
-
description
|
|
6036
|
+
name: I18NProperty47;
|
|
6037
|
+
description: I18NProperty48;
|
|
5986
6038
|
anonymousAllowed?: boolean;
|
|
5987
6039
|
key: ModuleKeySchema;
|
|
5988
6040
|
[k: string]: unknown;
|
|
@@ -5992,9 +6044,9 @@ export interface Modules {
|
|
|
5992
6044
|
{
|
|
5993
6045
|
template?: IssueFieldTemplate;
|
|
5994
6046
|
property?: IssueFieldProperty;
|
|
5995
|
-
name
|
|
5996
|
-
description
|
|
5997
|
-
type
|
|
6047
|
+
name: I18NProperty49;
|
|
6048
|
+
description: I18NProperty50;
|
|
6049
|
+
type:
|
|
5998
6050
|
| 'string'
|
|
5999
6051
|
| 'STRING'
|
|
6000
6052
|
| 'text'
|
|
@@ -6016,9 +6068,9 @@ export interface Modules {
|
|
|
6016
6068
|
...{
|
|
6017
6069
|
template?: IssueFieldTemplate;
|
|
6018
6070
|
property?: IssueFieldProperty;
|
|
6019
|
-
name
|
|
6020
|
-
description
|
|
6021
|
-
type
|
|
6071
|
+
name: I18NProperty49;
|
|
6072
|
+
description: I18NProperty50;
|
|
6073
|
+
type:
|
|
6022
6074
|
| 'string'
|
|
6023
6075
|
| 'STRING'
|
|
6024
6076
|
| 'text'
|
|
@@ -6040,16 +6092,16 @@ export interface Modules {
|
|
|
6040
6092
|
];
|
|
6041
6093
|
'connect-jira:jiraIssueTypes'?: [
|
|
6042
6094
|
{
|
|
6043
|
-
name
|
|
6044
|
-
description
|
|
6045
|
-
type
|
|
6095
|
+
name: I18NProperty51;
|
|
6096
|
+
description: I18NProperty52;
|
|
6097
|
+
type: 'standard' | 'STANDARD' | 'subtask' | 'SUBTASK';
|
|
6046
6098
|
key: ModuleKeySchema;
|
|
6047
6099
|
[k: string]: unknown;
|
|
6048
6100
|
},
|
|
6049
6101
|
...{
|
|
6050
|
-
name
|
|
6051
|
-
description
|
|
6052
|
-
type
|
|
6102
|
+
name: I18NProperty51;
|
|
6103
|
+
description: I18NProperty52;
|
|
6104
|
+
type: 'standard' | 'STANDARD' | 'subtask' | 'SUBTASK';
|
|
6053
6105
|
key: ModuleKeySchema;
|
|
6054
6106
|
[k: string]: unknown;
|
|
6055
6107
|
}[]
|
|
@@ -6057,13 +6109,13 @@ export interface Modules {
|
|
|
6057
6109
|
'connect-jira:jiraTimeTrackingProviders'?: [
|
|
6058
6110
|
{
|
|
6059
6111
|
adminPageKey?: string;
|
|
6060
|
-
name
|
|
6112
|
+
name: I18NProperty53;
|
|
6061
6113
|
key: ModuleKeySchema;
|
|
6062
6114
|
[k: string]: unknown;
|
|
6063
6115
|
},
|
|
6064
6116
|
...{
|
|
6065
6117
|
adminPageKey?: string;
|
|
6066
|
-
name
|
|
6118
|
+
name: I18NProperty53;
|
|
6067
6119
|
key: ModuleKeySchema;
|
|
6068
6120
|
[k: string]: unknown;
|
|
6069
6121
|
}[]
|
|
@@ -6088,9 +6140,691 @@ export interface Modules {
|
|
|
6088
6140
|
[k: string]: unknown;
|
|
6089
6141
|
}[]
|
|
6090
6142
|
];
|
|
6143
|
+
'connect-jira:serviceDeskPortalHeaders'?: [
|
|
6144
|
+
{
|
|
6145
|
+
url: string;
|
|
6146
|
+
weight?: number;
|
|
6147
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6148
|
+
pages?: (
|
|
6149
|
+
| 'help_center'
|
|
6150
|
+
| 'HELP_CENTER'
|
|
6151
|
+
| 'portal'
|
|
6152
|
+
| 'PORTAL'
|
|
6153
|
+
| 'create_request'
|
|
6154
|
+
| 'CREATE_REQUEST'
|
|
6155
|
+
| 'view_request'
|
|
6156
|
+
| 'VIEW_REQUEST'
|
|
6157
|
+
| 'my_requests'
|
|
6158
|
+
| 'MY_REQUESTS'
|
|
6159
|
+
| 'approvals'
|
|
6160
|
+
| 'APPROVALS'
|
|
6161
|
+
| 'profile'
|
|
6162
|
+
| 'PROFILE'
|
|
6163
|
+
)[];
|
|
6164
|
+
key: ModuleKeySchema;
|
|
6165
|
+
[k: string]: unknown;
|
|
6166
|
+
},
|
|
6167
|
+
...{
|
|
6168
|
+
url: string;
|
|
6169
|
+
weight?: number;
|
|
6170
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6171
|
+
pages?: (
|
|
6172
|
+
| 'help_center'
|
|
6173
|
+
| 'HELP_CENTER'
|
|
6174
|
+
| 'portal'
|
|
6175
|
+
| 'PORTAL'
|
|
6176
|
+
| 'create_request'
|
|
6177
|
+
| 'CREATE_REQUEST'
|
|
6178
|
+
| 'view_request'
|
|
6179
|
+
| 'VIEW_REQUEST'
|
|
6180
|
+
| 'my_requests'
|
|
6181
|
+
| 'MY_REQUESTS'
|
|
6182
|
+
| 'approvals'
|
|
6183
|
+
| 'APPROVALS'
|
|
6184
|
+
| 'profile'
|
|
6185
|
+
| 'PROFILE'
|
|
6186
|
+
)[];
|
|
6187
|
+
key: ModuleKeySchema;
|
|
6188
|
+
[k: string]: unknown;
|
|
6189
|
+
}[]
|
|
6190
|
+
];
|
|
6191
|
+
'connect-jira:serviceDeskPortalSubHeaders'?: [
|
|
6192
|
+
{
|
|
6193
|
+
url: string;
|
|
6194
|
+
weight?: number;
|
|
6195
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6196
|
+
pages?: (
|
|
6197
|
+
| 'help_center'
|
|
6198
|
+
| 'HELP_CENTER'
|
|
6199
|
+
| 'portal'
|
|
6200
|
+
| 'PORTAL'
|
|
6201
|
+
| 'create_request'
|
|
6202
|
+
| 'CREATE_REQUEST'
|
|
6203
|
+
| 'view_request'
|
|
6204
|
+
| 'VIEW_REQUEST'
|
|
6205
|
+
| 'my_requests'
|
|
6206
|
+
| 'MY_REQUESTS'
|
|
6207
|
+
| 'approvals'
|
|
6208
|
+
| 'APPROVALS'
|
|
6209
|
+
| 'profile'
|
|
6210
|
+
| 'PROFILE'
|
|
6211
|
+
)[];
|
|
6212
|
+
key: ModuleKeySchema;
|
|
6213
|
+
[k: string]: unknown;
|
|
6214
|
+
},
|
|
6215
|
+
...{
|
|
6216
|
+
url: string;
|
|
6217
|
+
weight?: number;
|
|
6218
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6219
|
+
pages?: (
|
|
6220
|
+
| 'help_center'
|
|
6221
|
+
| 'HELP_CENTER'
|
|
6222
|
+
| 'portal'
|
|
6223
|
+
| 'PORTAL'
|
|
6224
|
+
| 'create_request'
|
|
6225
|
+
| 'CREATE_REQUEST'
|
|
6226
|
+
| 'view_request'
|
|
6227
|
+
| 'VIEW_REQUEST'
|
|
6228
|
+
| 'my_requests'
|
|
6229
|
+
| 'MY_REQUESTS'
|
|
6230
|
+
| 'approvals'
|
|
6231
|
+
| 'APPROVALS'
|
|
6232
|
+
| 'profile'
|
|
6233
|
+
| 'PROFILE'
|
|
6234
|
+
)[];
|
|
6235
|
+
key: ModuleKeySchema;
|
|
6236
|
+
[k: string]: unknown;
|
|
6237
|
+
}[]
|
|
6238
|
+
];
|
|
6239
|
+
'connect-jira:serviceDeskPortalFooters'?: [
|
|
6240
|
+
{
|
|
6241
|
+
url: string;
|
|
6242
|
+
weight?: number;
|
|
6243
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6244
|
+
pages?: (
|
|
6245
|
+
| 'help_center'
|
|
6246
|
+
| 'HELP_CENTER'
|
|
6247
|
+
| 'portal'
|
|
6248
|
+
| 'PORTAL'
|
|
6249
|
+
| 'create_request'
|
|
6250
|
+
| 'CREATE_REQUEST'
|
|
6251
|
+
| 'view_request'
|
|
6252
|
+
| 'VIEW_REQUEST'
|
|
6253
|
+
| 'my_requests'
|
|
6254
|
+
| 'MY_REQUESTS'
|
|
6255
|
+
| 'approvals'
|
|
6256
|
+
| 'APPROVALS'
|
|
6257
|
+
| 'profile'
|
|
6258
|
+
| 'PROFILE'
|
|
6259
|
+
)[];
|
|
6260
|
+
key: ModuleKeySchema;
|
|
6261
|
+
[k: string]: unknown;
|
|
6262
|
+
},
|
|
6263
|
+
...{
|
|
6264
|
+
url: string;
|
|
6265
|
+
weight?: number;
|
|
6266
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6267
|
+
pages?: (
|
|
6268
|
+
| 'help_center'
|
|
6269
|
+
| 'HELP_CENTER'
|
|
6270
|
+
| 'portal'
|
|
6271
|
+
| 'PORTAL'
|
|
6272
|
+
| 'create_request'
|
|
6273
|
+
| 'CREATE_REQUEST'
|
|
6274
|
+
| 'view_request'
|
|
6275
|
+
| 'VIEW_REQUEST'
|
|
6276
|
+
| 'my_requests'
|
|
6277
|
+
| 'MY_REQUESTS'
|
|
6278
|
+
| 'approvals'
|
|
6279
|
+
| 'APPROVALS'
|
|
6280
|
+
| 'profile'
|
|
6281
|
+
| 'PROFILE'
|
|
6282
|
+
)[];
|
|
6283
|
+
key: ModuleKeySchema;
|
|
6284
|
+
[k: string]: unknown;
|
|
6285
|
+
}[]
|
|
6286
|
+
];
|
|
6287
|
+
'connect-jira:serviceDeskPortalRequestCreatePropertyPanels'?: [
|
|
6288
|
+
{
|
|
6289
|
+
weight?: number;
|
|
6290
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6291
|
+
url: string;
|
|
6292
|
+
key: ModuleKeySchema;
|
|
6293
|
+
[k: string]: unknown;
|
|
6294
|
+
},
|
|
6295
|
+
...{
|
|
6296
|
+
weight?: number;
|
|
6297
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6298
|
+
url: string;
|
|
6299
|
+
key: ModuleKeySchema;
|
|
6300
|
+
[k: string]: unknown;
|
|
6301
|
+
}[]
|
|
6302
|
+
];
|
|
6303
|
+
'connect-jira:serviceDeskPortalRequestViewDetailsPanels'?: [
|
|
6304
|
+
{
|
|
6305
|
+
weight?: number;
|
|
6306
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6307
|
+
url: string;
|
|
6308
|
+
key: ModuleKeySchema;
|
|
6309
|
+
[k: string]: unknown;
|
|
6310
|
+
},
|
|
6311
|
+
...{
|
|
6312
|
+
weight?: number;
|
|
6313
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6314
|
+
url: string;
|
|
6315
|
+
key: ModuleKeySchema;
|
|
6316
|
+
[k: string]: unknown;
|
|
6317
|
+
}[]
|
|
6318
|
+
];
|
|
6319
|
+
'connect-jira:serviceDeskPortalRequestViewPanels'?: [
|
|
6320
|
+
{
|
|
6321
|
+
weight?: number;
|
|
6322
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6323
|
+
url: string;
|
|
6324
|
+
key: ModuleKeySchema;
|
|
6325
|
+
[k: string]: unknown;
|
|
6326
|
+
},
|
|
6327
|
+
...{
|
|
6328
|
+
weight?: number;
|
|
6329
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6330
|
+
url: string;
|
|
6331
|
+
key: ModuleKeySchema;
|
|
6332
|
+
[k: string]: unknown;
|
|
6333
|
+
}[]
|
|
6334
|
+
];
|
|
6335
|
+
'connect-jira:serviceDeskPortalProfilePanels'?: [
|
|
6336
|
+
{
|
|
6337
|
+
weight?: number;
|
|
6338
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6339
|
+
url: string;
|
|
6340
|
+
key: ModuleKeySchema;
|
|
6341
|
+
[k: string]: unknown;
|
|
6342
|
+
},
|
|
6343
|
+
...{
|
|
6344
|
+
weight?: number;
|
|
6345
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6346
|
+
url: string;
|
|
6347
|
+
key: ModuleKeySchema;
|
|
6348
|
+
[k: string]: unknown;
|
|
6349
|
+
}[]
|
|
6350
|
+
];
|
|
6351
|
+
'connect-jira:serviceDeskQueues'?: [
|
|
6352
|
+
{
|
|
6353
|
+
name: I18NProperty54;
|
|
6354
|
+
weight?: number;
|
|
6355
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6356
|
+
url?: string;
|
|
6357
|
+
key: ModuleKeySchema;
|
|
6358
|
+
group?: string;
|
|
6359
|
+
[k: string]: unknown;
|
|
6360
|
+
},
|
|
6361
|
+
...{
|
|
6362
|
+
name: I18NProperty54;
|
|
6363
|
+
weight?: number;
|
|
6364
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6365
|
+
url?: string;
|
|
6366
|
+
key: ModuleKeySchema;
|
|
6367
|
+
group?: string;
|
|
6368
|
+
[k: string]: unknown;
|
|
6369
|
+
}[]
|
|
6370
|
+
];
|
|
6371
|
+
'connect-jira:serviceDeskReports'?: [
|
|
6372
|
+
{
|
|
6373
|
+
name: I18NProperty54;
|
|
6374
|
+
weight?: number;
|
|
6375
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6376
|
+
url?: string;
|
|
6377
|
+
key: ModuleKeySchema;
|
|
6378
|
+
group?: string;
|
|
6379
|
+
[k: string]: unknown;
|
|
6380
|
+
},
|
|
6381
|
+
...{
|
|
6382
|
+
name: I18NProperty54;
|
|
6383
|
+
weight?: number;
|
|
6384
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6385
|
+
url?: string;
|
|
6386
|
+
key: ModuleKeySchema;
|
|
6387
|
+
group?: string;
|
|
6388
|
+
[k: string]: unknown;
|
|
6389
|
+
}[]
|
|
6390
|
+
];
|
|
6391
|
+
'connect-jira:serviceDeskOrganizationPanels'?: [
|
|
6392
|
+
{
|
|
6393
|
+
weight?: number;
|
|
6394
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6395
|
+
url: string;
|
|
6396
|
+
key: ModuleKeySchema;
|
|
6397
|
+
[k: string]: unknown;
|
|
6398
|
+
},
|
|
6399
|
+
...{
|
|
6400
|
+
weight?: number;
|
|
6401
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6402
|
+
url: string;
|
|
6403
|
+
key: ModuleKeySchema;
|
|
6404
|
+
[k: string]: unknown;
|
|
6405
|
+
}[]
|
|
6406
|
+
];
|
|
6407
|
+
'connect-jira:serviceDeskReportGroups'?: [
|
|
6408
|
+
{
|
|
6409
|
+
name: I18NProperty54;
|
|
6410
|
+
weight?: number;
|
|
6411
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6412
|
+
key: ModuleKeySchema;
|
|
6413
|
+
[k: string]: unknown;
|
|
6414
|
+
},
|
|
6415
|
+
...{
|
|
6416
|
+
name: I18NProperty54;
|
|
6417
|
+
weight?: number;
|
|
6418
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6419
|
+
key: ModuleKeySchema;
|
|
6420
|
+
[k: string]: unknown;
|
|
6421
|
+
}[]
|
|
6422
|
+
];
|
|
6423
|
+
'connect-jira:serviceDeskQueueGroups'?: [
|
|
6424
|
+
{
|
|
6425
|
+
name: I18NProperty54;
|
|
6426
|
+
weight?: number;
|
|
6427
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6428
|
+
key: ModuleKeySchema;
|
|
6429
|
+
[k: string]: unknown;
|
|
6430
|
+
},
|
|
6431
|
+
...{
|
|
6432
|
+
name: I18NProperty54;
|
|
6433
|
+
weight?: number;
|
|
6434
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6435
|
+
key: ModuleKeySchema;
|
|
6436
|
+
[k: string]: unknown;
|
|
6437
|
+
}[]
|
|
6438
|
+
];
|
|
6439
|
+
'connect-jira:serviceDeskPortalUserMenuActions'?: [
|
|
6440
|
+
{
|
|
6441
|
+
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
6442
|
+
name: I18NProperty54;
|
|
6443
|
+
weight?: number;
|
|
6444
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6445
|
+
url: string;
|
|
6446
|
+
key: ModuleKeySchema;
|
|
6447
|
+
target?: {
|
|
6448
|
+
options?: {
|
|
6449
|
+
size?: 'small' | 'SMALL' | 'medium' | 'MEDIUM' | 'large' | 'LARGE' | 'x-large' | 'X-LARGE';
|
|
6450
|
+
chrome?: boolean;
|
|
6451
|
+
header?: I18NProperty54;
|
|
6452
|
+
[k: string]: unknown;
|
|
6453
|
+
};
|
|
6454
|
+
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG';
|
|
6455
|
+
[k: string]: unknown;
|
|
6456
|
+
};
|
|
6457
|
+
[k: string]: unknown;
|
|
6458
|
+
},
|
|
6459
|
+
...{
|
|
6460
|
+
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
6461
|
+
name: I18NProperty54;
|
|
6462
|
+
weight?: number;
|
|
6463
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6464
|
+
url: string;
|
|
6465
|
+
key: ModuleKeySchema;
|
|
6466
|
+
target?: {
|
|
6467
|
+
options?: {
|
|
6468
|
+
size?: 'small' | 'SMALL' | 'medium' | 'MEDIUM' | 'large' | 'LARGE' | 'x-large' | 'X-LARGE';
|
|
6469
|
+
chrome?: boolean;
|
|
6470
|
+
header?: I18NProperty54;
|
|
6471
|
+
[k: string]: unknown;
|
|
6472
|
+
};
|
|
6473
|
+
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG';
|
|
6474
|
+
[k: string]: unknown;
|
|
6475
|
+
};
|
|
6476
|
+
[k: string]: unknown;
|
|
6477
|
+
}[]
|
|
6478
|
+
];
|
|
6479
|
+
'connect-jira:serviceDeskPortalProfileActions'?: [
|
|
6480
|
+
{
|
|
6481
|
+
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
6482
|
+
name: I18NProperty54;
|
|
6483
|
+
weight?: number;
|
|
6484
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6485
|
+
url: string;
|
|
6486
|
+
key: ModuleKeySchema;
|
|
6487
|
+
target?: {
|
|
6488
|
+
options?: {
|
|
6489
|
+
size?: 'small' | 'SMALL' | 'medium' | 'MEDIUM' | 'large' | 'LARGE' | 'x-large' | 'X-LARGE';
|
|
6490
|
+
chrome?: boolean;
|
|
6491
|
+
header?: I18NProperty54;
|
|
6492
|
+
[k: string]: unknown;
|
|
6493
|
+
};
|
|
6494
|
+
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG';
|
|
6495
|
+
[k: string]: unknown;
|
|
6496
|
+
};
|
|
6497
|
+
[k: string]: unknown;
|
|
6498
|
+
},
|
|
6499
|
+
...{
|
|
6500
|
+
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
6501
|
+
name: I18NProperty54;
|
|
6502
|
+
weight?: number;
|
|
6503
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6504
|
+
url: string;
|
|
6505
|
+
key: ModuleKeySchema;
|
|
6506
|
+
target?: {
|
|
6507
|
+
options?: {
|
|
6508
|
+
size?: 'small' | 'SMALL' | 'medium' | 'MEDIUM' | 'large' | 'LARGE' | 'x-large' | 'X-LARGE';
|
|
6509
|
+
chrome?: boolean;
|
|
6510
|
+
header?: I18NProperty54;
|
|
6511
|
+
[k: string]: unknown;
|
|
6512
|
+
};
|
|
6513
|
+
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG';
|
|
6514
|
+
[k: string]: unknown;
|
|
6515
|
+
};
|
|
6516
|
+
[k: string]: unknown;
|
|
6517
|
+
}[]
|
|
6518
|
+
];
|
|
6519
|
+
'connect-jira:serviceDeskPortalRequestViewActions'?: [
|
|
6520
|
+
{
|
|
6521
|
+
icon?: {
|
|
6522
|
+
url: string;
|
|
6523
|
+
};
|
|
6524
|
+
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
6525
|
+
name: I18NProperty54;
|
|
6526
|
+
weight?: number;
|
|
6527
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6528
|
+
url: string;
|
|
6529
|
+
key: ModuleKeySchema;
|
|
6530
|
+
target?: {
|
|
6531
|
+
options?: {
|
|
6532
|
+
size?: 'small' | 'SMALL' | 'medium' | 'MEDIUM' | 'large' | 'LARGE' | 'x-large' | 'X-LARGE';
|
|
6533
|
+
chrome?: boolean;
|
|
6534
|
+
header?: I18NProperty54;
|
|
6535
|
+
[k: string]: unknown;
|
|
6536
|
+
};
|
|
6537
|
+
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG';
|
|
6538
|
+
[k: string]: unknown;
|
|
6539
|
+
};
|
|
6540
|
+
[k: string]: unknown;
|
|
6541
|
+
},
|
|
6542
|
+
...{
|
|
6543
|
+
icon?: {
|
|
6544
|
+
url: string;
|
|
6545
|
+
};
|
|
6546
|
+
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
6547
|
+
name: I18NProperty54;
|
|
6548
|
+
weight?: number;
|
|
6549
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6550
|
+
url: string;
|
|
6551
|
+
key: ModuleKeySchema;
|
|
6552
|
+
target?: {
|
|
6553
|
+
options?: {
|
|
6554
|
+
size?: 'small' | 'SMALL' | 'medium' | 'MEDIUM' | 'large' | 'LARGE' | 'x-large' | 'X-LARGE';
|
|
6555
|
+
chrome?: boolean;
|
|
6556
|
+
header?: I18NProperty54;
|
|
6557
|
+
[k: string]: unknown;
|
|
6558
|
+
};
|
|
6559
|
+
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG';
|
|
6560
|
+
[k: string]: unknown;
|
|
6561
|
+
};
|
|
6562
|
+
[k: string]: unknown;
|
|
6563
|
+
}[]
|
|
6564
|
+
];
|
|
6565
|
+
'connect-jira:serviceDeskOrganizationActions'?: [
|
|
6566
|
+
{
|
|
6567
|
+
tooltip?: I18NProperty54;
|
|
6568
|
+
name: I18NProperty54;
|
|
6569
|
+
weight?: number;
|
|
6570
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6571
|
+
url?: string;
|
|
6572
|
+
key: ModuleKeySchema;
|
|
6573
|
+
target?: WebItemTarget1;
|
|
6574
|
+
[k: string]: unknown;
|
|
6575
|
+
},
|
|
6576
|
+
...{
|
|
6577
|
+
tooltip?: I18NProperty54;
|
|
6578
|
+
name: I18NProperty54;
|
|
6579
|
+
weight?: number;
|
|
6580
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6581
|
+
url?: string;
|
|
6582
|
+
key: ModuleKeySchema;
|
|
6583
|
+
target?: WebItemTarget1;
|
|
6584
|
+
[k: string]: unknown;
|
|
6585
|
+
}[]
|
|
6586
|
+
];
|
|
6587
|
+
'connect-jira:automationActions'?: [
|
|
6588
|
+
{
|
|
6589
|
+
webhook: Webhook;
|
|
6590
|
+
name: I18NProperty54;
|
|
6591
|
+
configForm?: ConfigForm;
|
|
6592
|
+
requires?: ('comment' | 'COMMENT' | 'issue' | 'ISSUE' | 'user' | 'USER')[];
|
|
6593
|
+
key: ModuleKeySchema;
|
|
6594
|
+
[k: string]: unknown;
|
|
6595
|
+
},
|
|
6596
|
+
...{
|
|
6597
|
+
webhook: Webhook;
|
|
6598
|
+
name: I18NProperty54;
|
|
6599
|
+
configForm?: ConfigForm;
|
|
6600
|
+
requires?: ('comment' | 'COMMENT' | 'issue' | 'ISSUE' | 'user' | 'USER')[];
|
|
6601
|
+
key: ModuleKeySchema;
|
|
6602
|
+
[k: string]: unknown;
|
|
6603
|
+
}[]
|
|
6604
|
+
];
|
|
6605
|
+
'connect-jira:jiraDeploymentGating'?: [
|
|
6606
|
+
{
|
|
6607
|
+
name: I18NProperty54;
|
|
6608
|
+
callback: Callback;
|
|
6609
|
+
key: ModuleKeySchema;
|
|
6610
|
+
[k: string]: unknown;
|
|
6611
|
+
},
|
|
6612
|
+
...{
|
|
6613
|
+
name: I18NProperty54;
|
|
6614
|
+
callback: Callback;
|
|
6615
|
+
key: ModuleKeySchema;
|
|
6616
|
+
[k: string]: unknown;
|
|
6617
|
+
}[]
|
|
6618
|
+
];
|
|
6619
|
+
'connect-jira:assetPanels'?: [
|
|
6620
|
+
{
|
|
6621
|
+
name: I18NProperty54;
|
|
6622
|
+
url: string;
|
|
6623
|
+
key: ModuleKeySchema;
|
|
6624
|
+
[k: string]: unknown;
|
|
6625
|
+
},
|
|
6626
|
+
...{
|
|
6627
|
+
name: I18NProperty54;
|
|
6628
|
+
url: string;
|
|
6629
|
+
key: ModuleKeySchema;
|
|
6630
|
+
[k: string]: unknown;
|
|
6631
|
+
}[]
|
|
6632
|
+
];
|
|
6633
|
+
'connect-jira:jiraJqlFunctions'?: [
|
|
6634
|
+
{
|
|
6635
|
+
types: (
|
|
6636
|
+
| 'issue'
|
|
6637
|
+
| 'ISSUE'
|
|
6638
|
+
| 'project'
|
|
6639
|
+
| 'PROJECT'
|
|
6640
|
+
| 'project_category'
|
|
6641
|
+
| 'PROJECT_CATEGORY'
|
|
6642
|
+
| 'project_type'
|
|
6643
|
+
| 'PROJECT_TYPE'
|
|
6644
|
+
| 'hierarchy_level'
|
|
6645
|
+
| 'HIERARCHY_LEVEL'
|
|
6646
|
+
| 'version'
|
|
6647
|
+
| 'VERSION'
|
|
6648
|
+
| 'component'
|
|
6649
|
+
| 'COMPONENT'
|
|
6650
|
+
| 'user'
|
|
6651
|
+
| 'USER'
|
|
6652
|
+
| 'group'
|
|
6653
|
+
| 'GROUP'
|
|
6654
|
+
| 'team'
|
|
6655
|
+
| 'TEAM'
|
|
6656
|
+
| 'project_role'
|
|
6657
|
+
| 'PROJECT_ROLE'
|
|
6658
|
+
| 'priority'
|
|
6659
|
+
| 'PRIORITY'
|
|
6660
|
+
| 'resolution'
|
|
6661
|
+
| 'RESOLUTION'
|
|
6662
|
+
| 'issue_type'
|
|
6663
|
+
| 'ISSUE_TYPE'
|
|
6664
|
+
| 'status'
|
|
6665
|
+
| 'STATUS'
|
|
6666
|
+
| 'status_category'
|
|
6667
|
+
| 'STATUS_CATEGORY'
|
|
6668
|
+
| 'cascading_option'
|
|
6669
|
+
| 'CASCADING_OPTION'
|
|
6670
|
+
| 'option'
|
|
6671
|
+
| 'OPTION'
|
|
6672
|
+
| 'saved_filter'
|
|
6673
|
+
| 'SAVED_FILTER'
|
|
6674
|
+
| 'issue_security_level'
|
|
6675
|
+
| 'ISSUE_SECURITY_LEVEL'
|
|
6676
|
+
| 'issue_restriction'
|
|
6677
|
+
| 'ISSUE_RESTRICTION'
|
|
6678
|
+
| 'label'
|
|
6679
|
+
| 'LABEL'
|
|
6680
|
+
| 'attachment'
|
|
6681
|
+
| 'ATTACHMENT'
|
|
6682
|
+
| 'issue_list'
|
|
6683
|
+
| 'ISSUE_LIST'
|
|
6684
|
+
| 'issue_link_type'
|
|
6685
|
+
| 'ISSUE_LINK_TYPE'
|
|
6686
|
+
| 'date'
|
|
6687
|
+
| 'DATE'
|
|
6688
|
+
| 'text'
|
|
6689
|
+
| 'TEXT'
|
|
6690
|
+
| 'number'
|
|
6691
|
+
| 'NUMBER'
|
|
6692
|
+
| 'duration'
|
|
6693
|
+
| 'DURATION'
|
|
6694
|
+
| 'url'
|
|
6695
|
+
| 'URL'
|
|
6696
|
+
)[];
|
|
6697
|
+
operators: (
|
|
6698
|
+
| 'eq'
|
|
6699
|
+
| 'EQ'
|
|
6700
|
+
| 'neq'
|
|
6701
|
+
| 'NEQ'
|
|
6702
|
+
| 'gt'
|
|
6703
|
+
| 'GT'
|
|
6704
|
+
| 'gte'
|
|
6705
|
+
| 'GTE'
|
|
6706
|
+
| 'lt'
|
|
6707
|
+
| 'LT'
|
|
6708
|
+
| 'lte'
|
|
6709
|
+
| 'LTE'
|
|
6710
|
+
| 'in'
|
|
6711
|
+
| 'IN'
|
|
6712
|
+
| 'not_in'
|
|
6713
|
+
| 'NOT_IN'
|
|
6714
|
+
| 'contains'
|
|
6715
|
+
| 'CONTAINS'
|
|
6716
|
+
| 'not_contains'
|
|
6717
|
+
| 'NOT_CONTAINS'
|
|
6718
|
+
| 'is'
|
|
6719
|
+
| 'IS'
|
|
6720
|
+
| 'is_not'
|
|
6721
|
+
| 'IS_NOT'
|
|
6722
|
+
)[];
|
|
6723
|
+
name: string;
|
|
6724
|
+
arguments: JQLFunctionArgument[];
|
|
6725
|
+
url: string;
|
|
6726
|
+
key: ModuleKeySchema;
|
|
6727
|
+
[k: string]: unknown;
|
|
6728
|
+
},
|
|
6729
|
+
...{
|
|
6730
|
+
types: (
|
|
6731
|
+
| 'issue'
|
|
6732
|
+
| 'ISSUE'
|
|
6733
|
+
| 'project'
|
|
6734
|
+
| 'PROJECT'
|
|
6735
|
+
| 'project_category'
|
|
6736
|
+
| 'PROJECT_CATEGORY'
|
|
6737
|
+
| 'project_type'
|
|
6738
|
+
| 'PROJECT_TYPE'
|
|
6739
|
+
| 'hierarchy_level'
|
|
6740
|
+
| 'HIERARCHY_LEVEL'
|
|
6741
|
+
| 'version'
|
|
6742
|
+
| 'VERSION'
|
|
6743
|
+
| 'component'
|
|
6744
|
+
| 'COMPONENT'
|
|
6745
|
+
| 'user'
|
|
6746
|
+
| 'USER'
|
|
6747
|
+
| 'group'
|
|
6748
|
+
| 'GROUP'
|
|
6749
|
+
| 'team'
|
|
6750
|
+
| 'TEAM'
|
|
6751
|
+
| 'project_role'
|
|
6752
|
+
| 'PROJECT_ROLE'
|
|
6753
|
+
| 'priority'
|
|
6754
|
+
| 'PRIORITY'
|
|
6755
|
+
| 'resolution'
|
|
6756
|
+
| 'RESOLUTION'
|
|
6757
|
+
| 'issue_type'
|
|
6758
|
+
| 'ISSUE_TYPE'
|
|
6759
|
+
| 'status'
|
|
6760
|
+
| 'STATUS'
|
|
6761
|
+
| 'status_category'
|
|
6762
|
+
| 'STATUS_CATEGORY'
|
|
6763
|
+
| 'cascading_option'
|
|
6764
|
+
| 'CASCADING_OPTION'
|
|
6765
|
+
| 'option'
|
|
6766
|
+
| 'OPTION'
|
|
6767
|
+
| 'saved_filter'
|
|
6768
|
+
| 'SAVED_FILTER'
|
|
6769
|
+
| 'issue_security_level'
|
|
6770
|
+
| 'ISSUE_SECURITY_LEVEL'
|
|
6771
|
+
| 'issue_restriction'
|
|
6772
|
+
| 'ISSUE_RESTRICTION'
|
|
6773
|
+
| 'label'
|
|
6774
|
+
| 'LABEL'
|
|
6775
|
+
| 'attachment'
|
|
6776
|
+
| 'ATTACHMENT'
|
|
6777
|
+
| 'issue_list'
|
|
6778
|
+
| 'ISSUE_LIST'
|
|
6779
|
+
| 'issue_link_type'
|
|
6780
|
+
| 'ISSUE_LINK_TYPE'
|
|
6781
|
+
| 'date'
|
|
6782
|
+
| 'DATE'
|
|
6783
|
+
| 'text'
|
|
6784
|
+
| 'TEXT'
|
|
6785
|
+
| 'number'
|
|
6786
|
+
| 'NUMBER'
|
|
6787
|
+
| 'duration'
|
|
6788
|
+
| 'DURATION'
|
|
6789
|
+
| 'url'
|
|
6790
|
+
| 'URL'
|
|
6791
|
+
)[];
|
|
6792
|
+
operators: (
|
|
6793
|
+
| 'eq'
|
|
6794
|
+
| 'EQ'
|
|
6795
|
+
| 'neq'
|
|
6796
|
+
| 'NEQ'
|
|
6797
|
+
| 'gt'
|
|
6798
|
+
| 'GT'
|
|
6799
|
+
| 'gte'
|
|
6800
|
+
| 'GTE'
|
|
6801
|
+
| 'lt'
|
|
6802
|
+
| 'LT'
|
|
6803
|
+
| 'lte'
|
|
6804
|
+
| 'LTE'
|
|
6805
|
+
| 'in'
|
|
6806
|
+
| 'IN'
|
|
6807
|
+
| 'not_in'
|
|
6808
|
+
| 'NOT_IN'
|
|
6809
|
+
| 'contains'
|
|
6810
|
+
| 'CONTAINS'
|
|
6811
|
+
| 'not_contains'
|
|
6812
|
+
| 'NOT_CONTAINS'
|
|
6813
|
+
| 'is'
|
|
6814
|
+
| 'IS'
|
|
6815
|
+
| 'is_not'
|
|
6816
|
+
| 'IS_NOT'
|
|
6817
|
+
)[];
|
|
6818
|
+
name: string;
|
|
6819
|
+
arguments: JQLFunctionArgument[];
|
|
6820
|
+
url: string;
|
|
6821
|
+
key: ModuleKeySchema;
|
|
6822
|
+
[k: string]: unknown;
|
|
6823
|
+
}[]
|
|
6824
|
+
];
|
|
6091
6825
|
'connect-confluence:keyboardShortcuts'?: [
|
|
6092
6826
|
{
|
|
6093
|
-
shortcut
|
|
6827
|
+
shortcut: string;
|
|
6094
6828
|
context?:
|
|
6095
6829
|
| 'global'
|
|
6096
6830
|
| 'GLOBAL'
|
|
@@ -6100,13 +6834,13 @@ export interface Modules {
|
|
|
6100
6834
|
| 'ISSUE_ACTION'
|
|
6101
6835
|
| 'agile_board'
|
|
6102
6836
|
| 'AGILE_BOARD';
|
|
6103
|
-
name
|
|
6104
|
-
target
|
|
6837
|
+
name: I18NProperty55;
|
|
6838
|
+
target: KeyboardShortcutTarget1;
|
|
6105
6839
|
key: ModuleKeySchema;
|
|
6106
6840
|
[k: string]: unknown;
|
|
6107
6841
|
},
|
|
6108
6842
|
...{
|
|
6109
|
-
shortcut
|
|
6843
|
+
shortcut: string;
|
|
6110
6844
|
context?:
|
|
6111
6845
|
| 'global'
|
|
6112
6846
|
| 'GLOBAL'
|
|
@@ -6116,8 +6850,8 @@ export interface Modules {
|
|
|
6116
6850
|
| 'ISSUE_ACTION'
|
|
6117
6851
|
| 'agile_board'
|
|
6118
6852
|
| 'AGILE_BOARD';
|
|
6119
|
-
name
|
|
6120
|
-
target
|
|
6853
|
+
name: I18NProperty55;
|
|
6854
|
+
target: KeyboardShortcutTarget1;
|
|
6121
6855
|
key: ModuleKeySchema;
|
|
6122
6856
|
[k: string]: unknown;
|
|
6123
6857
|
}[]
|
|
@@ -6125,7 +6859,7 @@ export interface Modules {
|
|
|
6125
6859
|
'connect-confluence:adminPages'?: [
|
|
6126
6860
|
{
|
|
6127
6861
|
icon?: Icon8;
|
|
6128
|
-
name
|
|
6862
|
+
name: I18NProperty56;
|
|
6129
6863
|
weight?: number;
|
|
6130
6864
|
fullPage?: boolean;
|
|
6131
6865
|
cacheable?: boolean;
|
|
@@ -6134,13 +6868,13 @@ export interface Modules {
|
|
|
6134
6868
|
params?: {
|
|
6135
6869
|
[k: string]: unknown;
|
|
6136
6870
|
};
|
|
6137
|
-
url
|
|
6871
|
+
url: string;
|
|
6138
6872
|
key: ModuleKeySchema;
|
|
6139
6873
|
[k: string]: unknown;
|
|
6140
6874
|
},
|
|
6141
6875
|
...{
|
|
6142
6876
|
icon?: Icon8;
|
|
6143
|
-
name
|
|
6877
|
+
name: I18NProperty56;
|
|
6144
6878
|
weight?: number;
|
|
6145
6879
|
fullPage?: boolean;
|
|
6146
6880
|
cacheable?: boolean;
|
|
@@ -6149,7 +6883,7 @@ export interface Modules {
|
|
|
6149
6883
|
params?: {
|
|
6150
6884
|
[k: string]: unknown;
|
|
6151
6885
|
};
|
|
6152
|
-
url
|
|
6886
|
+
url: string;
|
|
6153
6887
|
key: ModuleKeySchema;
|
|
6154
6888
|
[k: string]: unknown;
|
|
6155
6889
|
}[]
|
|
@@ -6157,33 +6891,33 @@ export interface Modules {
|
|
|
6157
6891
|
'connect-confluence:webPanels'?: [
|
|
6158
6892
|
{
|
|
6159
6893
|
layout?: WebPanelLayout1;
|
|
6160
|
-
tooltip?:
|
|
6161
|
-
name
|
|
6894
|
+
tooltip?: I18NProperty57;
|
|
6895
|
+
name: I18NProperty58;
|
|
6162
6896
|
weight?: number;
|
|
6163
|
-
location
|
|
6897
|
+
location: string;
|
|
6164
6898
|
cacheable?: boolean;
|
|
6165
6899
|
supportsNative?: boolean;
|
|
6166
6900
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6167
6901
|
params?: {
|
|
6168
6902
|
[k: string]: unknown;
|
|
6169
6903
|
};
|
|
6170
|
-
url
|
|
6904
|
+
url: string;
|
|
6171
6905
|
key: ModuleKeySchema;
|
|
6172
6906
|
[k: string]: unknown;
|
|
6173
6907
|
},
|
|
6174
6908
|
...{
|
|
6175
6909
|
layout?: WebPanelLayout1;
|
|
6176
|
-
tooltip?:
|
|
6177
|
-
name
|
|
6910
|
+
tooltip?: I18NProperty57;
|
|
6911
|
+
name: I18NProperty58;
|
|
6178
6912
|
weight?: number;
|
|
6179
|
-
location
|
|
6913
|
+
location: string;
|
|
6180
6914
|
cacheable?: boolean;
|
|
6181
6915
|
supportsNative?: boolean;
|
|
6182
6916
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
6183
6917
|
params?: {
|
|
6184
6918
|
[k: string]: unknown;
|
|
6185
6919
|
};
|
|
6186
|
-
url
|
|
6920
|
+
url: string;
|
|
6187
6921
|
key: ModuleKeySchema;
|
|
6188
6922
|
[k: string]: unknown;
|
|
6189
6923
|
}[]
|
|
@@ -6192,20 +6926,20 @@ export interface Modules {
|
|
|
6192
6926
|
{
|
|
6193
6927
|
filter?: string;
|
|
6194
6928
|
excludeBody?: boolean;
|
|
6195
|
-
event
|
|
6929
|
+
event: string;
|
|
6196
6930
|
conditions?: (CompositeCondition | SingleCondition)[];
|
|
6197
6931
|
propertyKeys?: string[];
|
|
6198
|
-
url
|
|
6932
|
+
url: string;
|
|
6199
6933
|
key: ModuleKeySchema;
|
|
6200
6934
|
[k: string]: unknown;
|
|
6201
6935
|
},
|
|
6202
6936
|
...{
|
|
6203
6937
|
filter?: string;
|
|
6204
6938
|
excludeBody?: boolean;
|
|
6205
|
-
event
|
|
6939
|
+
event: string;
|
|
6206
6940
|
conditions?: (CompositeCondition | SingleCondition)[];
|
|
6207
6941
|
propertyKeys?: string[];
|
|
6208
|
-
url
|
|
6942
|
+
url: string;
|
|
6209
6943
|
key: ModuleKeySchema;
|
|
6210
6944
|
[k: string]: unknown;
|
|
6211
6945
|
}[]
|
|
@@ -6213,7 +6947,7 @@ export interface Modules {
|
|
|
6213
6947
|
'connect-confluence:postInstallPage'?: [
|
|
6214
6948
|
{
|
|
6215
6949
|
icon?: Icon9;
|
|
6216
|
-
name
|
|
6950
|
+
name: I18NProperty59;
|
|
6217
6951
|
weight?: number;
|
|
6218
6952
|
cacheable?: boolean;
|
|
6219
6953
|
location?: string;
|
|
@@ -6221,13 +6955,13 @@ export interface Modules {
|
|
|
6221
6955
|
params?: {
|
|
6222
6956
|
[k: string]: unknown;
|
|
6223
6957
|
};
|
|
6224
|
-
url
|
|
6958
|
+
url: string;
|
|
6225
6959
|
key: ModuleKeySchema;
|
|
6226
6960
|
[k: string]: unknown;
|
|
6227
6961
|
},
|
|
6228
6962
|
...{
|
|
6229
6963
|
icon?: Icon9;
|
|
6230
|
-
name
|
|
6964
|
+
name: I18NProperty59;
|
|
6231
6965
|
weight?: number;
|
|
6232
6966
|
cacheable?: boolean;
|
|
6233
6967
|
location?: string;
|
|
@@ -6235,17 +6969,17 @@ export interface Modules {
|
|
|
6235
6969
|
params?: {
|
|
6236
6970
|
[k: string]: unknown;
|
|
6237
6971
|
};
|
|
6238
|
-
url
|
|
6972
|
+
url: string;
|
|
6239
6973
|
key: ModuleKeySchema;
|
|
6240
6974
|
[k: string]: unknown;
|
|
6241
6975
|
}[]
|
|
6242
6976
|
];
|
|
6243
6977
|
'connect-confluence:webSections'?: [
|
|
6244
6978
|
{
|
|
6245
|
-
tooltip?:
|
|
6246
|
-
name
|
|
6979
|
+
tooltip?: I18NProperty60;
|
|
6980
|
+
name: I18NProperty61;
|
|
6247
6981
|
weight?: number;
|
|
6248
|
-
location
|
|
6982
|
+
location: string;
|
|
6249
6983
|
conditions?: (CompositeCondition | SingleCondition)[];
|
|
6250
6984
|
params?: {
|
|
6251
6985
|
[k: string]: unknown;
|
|
@@ -6254,10 +6988,10 @@ export interface Modules {
|
|
|
6254
6988
|
[k: string]: unknown;
|
|
6255
6989
|
},
|
|
6256
6990
|
...{
|
|
6257
|
-
tooltip?:
|
|
6258
|
-
name
|
|
6991
|
+
tooltip?: I18NProperty60;
|
|
6992
|
+
name: I18NProperty61;
|
|
6259
6993
|
weight?: number;
|
|
6260
|
-
location
|
|
6994
|
+
location: string;
|
|
6261
6995
|
conditions?: (CompositeCondition | SingleCondition)[];
|
|
6262
6996
|
params?: {
|
|
6263
6997
|
[k: string]: unknown;
|
|
@@ -6269,7 +7003,7 @@ export interface Modules {
|
|
|
6269
7003
|
'connect-confluence:generalPages'?: [
|
|
6270
7004
|
{
|
|
6271
7005
|
icon?: Icon10;
|
|
6272
|
-
name
|
|
7006
|
+
name: I18NProperty62;
|
|
6273
7007
|
weight?: number;
|
|
6274
7008
|
cacheable?: boolean;
|
|
6275
7009
|
location?: string;
|
|
@@ -6277,13 +7011,13 @@ export interface Modules {
|
|
|
6277
7011
|
params?: {
|
|
6278
7012
|
[k: string]: unknown;
|
|
6279
7013
|
};
|
|
6280
|
-
url
|
|
7014
|
+
url: string;
|
|
6281
7015
|
key: ModuleKeySchema;
|
|
6282
7016
|
[k: string]: unknown;
|
|
6283
7017
|
},
|
|
6284
7018
|
...{
|
|
6285
7019
|
icon?: Icon10;
|
|
6286
|
-
name
|
|
7020
|
+
name: I18NProperty62;
|
|
6287
7021
|
weight?: number;
|
|
6288
7022
|
cacheable?: boolean;
|
|
6289
7023
|
location?: string;
|
|
@@ -6291,7 +7025,7 @@ export interface Modules {
|
|
|
6291
7025
|
params?: {
|
|
6292
7026
|
[k: string]: unknown;
|
|
6293
7027
|
};
|
|
6294
|
-
url
|
|
7028
|
+
url: string;
|
|
6295
7029
|
key: ModuleKeySchema;
|
|
6296
7030
|
[k: string]: unknown;
|
|
6297
7031
|
}[]
|
|
@@ -6299,17 +7033,17 @@ export interface Modules {
|
|
|
6299
7033
|
'connect-confluence:webItems'?: [
|
|
6300
7034
|
{
|
|
6301
7035
|
styleClasses?: string[];
|
|
6302
|
-
tooltip?:
|
|
7036
|
+
tooltip?: I18NProperty63;
|
|
6303
7037
|
icon?: Icon11;
|
|
6304
7038
|
weight?: number;
|
|
6305
7039
|
params?: {
|
|
6306
7040
|
[k: string]: unknown;
|
|
6307
7041
|
};
|
|
6308
7042
|
url?: string;
|
|
6309
|
-
target?:
|
|
7043
|
+
target?: WebItemTarget2;
|
|
6310
7044
|
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
6311
|
-
name
|
|
6312
|
-
location
|
|
7045
|
+
name: I18NProperty65;
|
|
7046
|
+
location: string;
|
|
6313
7047
|
cacheable?: boolean;
|
|
6314
7048
|
conditions?: (SingleCondition4 | CompositeCondition7)[];
|
|
6315
7049
|
key: ModuleKeySchema;
|
|
@@ -6317,17 +7051,17 @@ export interface Modules {
|
|
|
6317
7051
|
},
|
|
6318
7052
|
...{
|
|
6319
7053
|
styleClasses?: string[];
|
|
6320
|
-
tooltip?:
|
|
7054
|
+
tooltip?: I18NProperty63;
|
|
6321
7055
|
icon?: Icon11;
|
|
6322
7056
|
weight?: number;
|
|
6323
7057
|
params?: {
|
|
6324
7058
|
[k: string]: unknown;
|
|
6325
7059
|
};
|
|
6326
7060
|
url?: string;
|
|
6327
|
-
target?:
|
|
7061
|
+
target?: WebItemTarget2;
|
|
6328
7062
|
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
6329
|
-
name
|
|
6330
|
-
location
|
|
7063
|
+
name: I18NProperty65;
|
|
7064
|
+
location: string;
|
|
6331
7065
|
cacheable?: boolean;
|
|
6332
7066
|
conditions?: (SingleCondition4 | CompositeCondition7)[];
|
|
6333
7067
|
key: ModuleKeySchema;
|
|
@@ -6337,7 +7071,7 @@ export interface Modules {
|
|
|
6337
7071
|
'connect-confluence:configurePage'?: [
|
|
6338
7072
|
{
|
|
6339
7073
|
icon?: Icon12;
|
|
6340
|
-
name
|
|
7074
|
+
name: I18NProperty66;
|
|
6341
7075
|
weight?: number;
|
|
6342
7076
|
fullPage?: boolean;
|
|
6343
7077
|
cacheable?: boolean;
|
|
@@ -6346,13 +7080,13 @@ export interface Modules {
|
|
|
6346
7080
|
params?: {
|
|
6347
7081
|
[k: string]: unknown;
|
|
6348
7082
|
};
|
|
6349
|
-
url
|
|
7083
|
+
url: string;
|
|
6350
7084
|
key: ModuleKeySchema;
|
|
6351
7085
|
[k: string]: unknown;
|
|
6352
7086
|
},
|
|
6353
7087
|
...{
|
|
6354
7088
|
icon?: Icon12;
|
|
6355
|
-
name
|
|
7089
|
+
name: I18NProperty66;
|
|
6356
7090
|
weight?: number;
|
|
6357
7091
|
fullPage?: boolean;
|
|
6358
7092
|
cacheable?: boolean;
|
|
@@ -6361,42 +7095,42 @@ export interface Modules {
|
|
|
6361
7095
|
params?: {
|
|
6362
7096
|
[k: string]: unknown;
|
|
6363
7097
|
};
|
|
6364
|
-
url
|
|
7098
|
+
url: string;
|
|
6365
7099
|
key: ModuleKeySchema;
|
|
6366
7100
|
[k: string]: unknown;
|
|
6367
7101
|
}[]
|
|
6368
7102
|
];
|
|
6369
7103
|
'connect-confluence:dialogs'?: [
|
|
6370
7104
|
{
|
|
6371
|
-
options?:
|
|
7105
|
+
options?: DialogOptions4;
|
|
6372
7106
|
cacheable?: boolean;
|
|
6373
|
-
url
|
|
7107
|
+
url: string;
|
|
6374
7108
|
key: ModuleKeySchema;
|
|
6375
7109
|
[k: string]: unknown;
|
|
6376
7110
|
},
|
|
6377
7111
|
...{
|
|
6378
|
-
options?:
|
|
7112
|
+
options?: DialogOptions4;
|
|
6379
7113
|
cacheable?: boolean;
|
|
6380
|
-
url
|
|
7114
|
+
url: string;
|
|
6381
7115
|
key: ModuleKeySchema;
|
|
6382
7116
|
[k: string]: unknown;
|
|
6383
7117
|
}[]
|
|
6384
7118
|
];
|
|
6385
7119
|
'connect-confluence:blueprints'?: [
|
|
6386
7120
|
{
|
|
6387
|
-
template
|
|
7121
|
+
template: BlueprintTemplate;
|
|
6388
7122
|
icon?: Icon13;
|
|
6389
|
-
name
|
|
6390
|
-
description?:
|
|
7123
|
+
name: I18NProperty67;
|
|
7124
|
+
description?: I18NProperty68;
|
|
6391
7125
|
createResult?: 'edit' | 'EDIT' | 'view' | 'VIEW';
|
|
6392
7126
|
key: ModuleKeySchema;
|
|
6393
7127
|
[k: string]: unknown;
|
|
6394
7128
|
},
|
|
6395
7129
|
...{
|
|
6396
|
-
template
|
|
7130
|
+
template: BlueprintTemplate;
|
|
6397
7131
|
icon?: Icon13;
|
|
6398
|
-
name
|
|
6399
|
-
description?:
|
|
7132
|
+
name: I18NProperty67;
|
|
7133
|
+
description?: I18NProperty68;
|
|
6400
7134
|
createResult?: 'edit' | 'EDIT' | 'view' | 'VIEW';
|
|
6401
7135
|
key: ModuleKeySchema;
|
|
6402
7136
|
[k: string]: unknown;
|
|
@@ -6404,39 +7138,39 @@ export interface Modules {
|
|
|
6404
7138
|
];
|
|
6405
7139
|
'connect-confluence:spaceToolsTabs'?: [
|
|
6406
7140
|
{
|
|
6407
|
-
name
|
|
7141
|
+
name: I18NProperty69;
|
|
6408
7142
|
weight?: number;
|
|
6409
7143
|
location?: string;
|
|
6410
7144
|
conditions?: (CompositeCondition9 | SingleCondition5)[];
|
|
6411
7145
|
params?: {
|
|
6412
7146
|
[k: string]: unknown;
|
|
6413
7147
|
};
|
|
6414
|
-
url
|
|
7148
|
+
url: string;
|
|
6415
7149
|
key: ModuleKeySchema;
|
|
6416
7150
|
[k: string]: unknown;
|
|
6417
7151
|
},
|
|
6418
7152
|
...{
|
|
6419
|
-
name
|
|
7153
|
+
name: I18NProperty69;
|
|
6420
7154
|
weight?: number;
|
|
6421
7155
|
location?: string;
|
|
6422
7156
|
conditions?: (CompositeCondition9 | SingleCondition5)[];
|
|
6423
7157
|
params?: {
|
|
6424
7158
|
[k: string]: unknown;
|
|
6425
7159
|
};
|
|
6426
|
-
url
|
|
7160
|
+
url: string;
|
|
6427
7161
|
key: ModuleKeySchema;
|
|
6428
7162
|
[k: string]: unknown;
|
|
6429
7163
|
}[]
|
|
6430
7164
|
];
|
|
6431
7165
|
'connect-confluence:confluenceContentProperties'?: [
|
|
6432
7166
|
{
|
|
6433
|
-
name
|
|
7167
|
+
name: I18NProperty70;
|
|
6434
7168
|
keyConfigurations?: ContentPropertyIndexKeyConfiguration[];
|
|
6435
7169
|
key: ModuleKeySchema;
|
|
6436
7170
|
[k: string]: unknown;
|
|
6437
7171
|
},
|
|
6438
7172
|
...{
|
|
6439
|
-
name
|
|
7173
|
+
name: I18NProperty70;
|
|
6440
7174
|
keyConfigurations?: ContentPropertyIndexKeyConfiguration[];
|
|
6441
7175
|
key: ModuleKeySchema;
|
|
6442
7176
|
[k: string]: unknown;
|
|
@@ -6444,18 +7178,94 @@ export interface Modules {
|
|
|
6444
7178
|
];
|
|
6445
7179
|
'connect-confluence:customContent'?: [
|
|
6446
7180
|
{
|
|
6447
|
-
uiSupport
|
|
6448
|
-
name
|
|
6449
|
-
description?:
|
|
6450
|
-
apiSupport
|
|
7181
|
+
uiSupport: CustomContentUISupport;
|
|
7182
|
+
name: I18NProperty76;
|
|
7183
|
+
description?: I18NProperty77;
|
|
7184
|
+
apiSupport: CustomContentAPISupport;
|
|
6451
7185
|
key: ModuleKeySchema;
|
|
6452
7186
|
[k: string]: unknown;
|
|
6453
7187
|
},
|
|
6454
7188
|
...{
|
|
6455
|
-
uiSupport
|
|
6456
|
-
name
|
|
6457
|
-
description?:
|
|
6458
|
-
apiSupport
|
|
7189
|
+
uiSupport: CustomContentUISupport;
|
|
7190
|
+
name: I18NProperty76;
|
|
7191
|
+
description?: I18NProperty77;
|
|
7192
|
+
apiSupport: CustomContentAPISupport;
|
|
7193
|
+
key: ModuleKeySchema;
|
|
7194
|
+
[k: string]: unknown;
|
|
7195
|
+
}[]
|
|
7196
|
+
];
|
|
7197
|
+
'connect-confluence:publishConditions'?: [
|
|
7198
|
+
{
|
|
7199
|
+
/**
|
|
7200
|
+
*
|
|
7201
|
+
*
|
|
7202
|
+
* <p>The dialog allows you to display their custom content within iFrame in the dialog during publish button click.</p>
|
|
7203
|
+
* <h4>Trigger dialog close using postMessage</h4>
|
|
7204
|
+
* You can close dialog by sending postMessage with action = <code>closeConditionalPublishDialog</code>
|
|
7205
|
+
* <pre><code>
|
|
7206
|
+
* $(function(){
|
|
7207
|
+
* setTimeout(() => {
|
|
7208
|
+
* window.top.postMessage({
|
|
7209
|
+
* action: "closeConditionalPublishDialog"
|
|
7210
|
+
* }, AP._data.origin)
|
|
7211
|
+
* }, 10000);
|
|
7212
|
+
* })
|
|
7213
|
+
* </code></pre>
|
|
7214
|
+
*
|
|
7215
|
+
*
|
|
7216
|
+
*/
|
|
7217
|
+
dialog?: {
|
|
7218
|
+
width?: string;
|
|
7219
|
+
header?: I18NProperty78;
|
|
7220
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
7221
|
+
url: string;
|
|
7222
|
+
height?: string;
|
|
7223
|
+
[k: string]: unknown;
|
|
7224
|
+
};
|
|
7225
|
+
errorMessage: I18NProperty79;
|
|
7226
|
+
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
7227
|
+
name: I18NProperty80;
|
|
7228
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
7229
|
+
params?: {
|
|
7230
|
+
[k: string]: unknown;
|
|
7231
|
+
};
|
|
7232
|
+
key: ModuleKeySchema;
|
|
7233
|
+
[k: string]: unknown;
|
|
7234
|
+
},
|
|
7235
|
+
...{
|
|
7236
|
+
/**
|
|
7237
|
+
*
|
|
7238
|
+
*
|
|
7239
|
+
* <p>The dialog allows you to display their custom content within iFrame in the dialog during publish button click.</p>
|
|
7240
|
+
* <h4>Trigger dialog close using postMessage</h4>
|
|
7241
|
+
* You can close dialog by sending postMessage with action = <code>closeConditionalPublishDialog</code>
|
|
7242
|
+
* <pre><code>
|
|
7243
|
+
* $(function(){
|
|
7244
|
+
* setTimeout(() => {
|
|
7245
|
+
* window.top.postMessage({
|
|
7246
|
+
* action: "closeConditionalPublishDialog"
|
|
7247
|
+
* }, AP._data.origin)
|
|
7248
|
+
* }, 10000);
|
|
7249
|
+
* })
|
|
7250
|
+
* </code></pre>
|
|
7251
|
+
*
|
|
7252
|
+
*
|
|
7253
|
+
*/
|
|
7254
|
+
dialog?: {
|
|
7255
|
+
width?: string;
|
|
7256
|
+
header?: I18NProperty78;
|
|
7257
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
7258
|
+
url: string;
|
|
7259
|
+
height?: string;
|
|
7260
|
+
[k: string]: unknown;
|
|
7261
|
+
};
|
|
7262
|
+
errorMessage: I18NProperty79;
|
|
7263
|
+
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
7264
|
+
name: I18NProperty80;
|
|
7265
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
7266
|
+
params?: {
|
|
7267
|
+
[k: string]: unknown;
|
|
7268
|
+
};
|
|
6459
7269
|
key: ModuleKeySchema;
|
|
6460
7270
|
[k: string]: unknown;
|
|
6461
7271
|
}[]
|
|
@@ -6470,9 +7280,9 @@ export interface Modules {
|
|
|
6470
7280
|
renderModes?: MacroRenderModes;
|
|
6471
7281
|
documentation?: Link;
|
|
6472
7282
|
icon?: Icon17;
|
|
6473
|
-
description?:
|
|
7283
|
+
description?: I18NProperty83;
|
|
6474
7284
|
outputType?: 'block' | 'BLOCK' | 'inline' | 'INLINE';
|
|
6475
|
-
url
|
|
7285
|
+
url: string;
|
|
6476
7286
|
propertyPanel?: MacroPropertyPanel;
|
|
6477
7287
|
autoconvert?: Autoconvert;
|
|
6478
7288
|
imagePlaceholder?: ImagePlaceholder;
|
|
@@ -6504,7 +7314,7 @@ export interface Modules {
|
|
|
6504
7314
|
[k: string]: unknown;
|
|
6505
7315
|
};
|
|
6506
7316
|
width?: string;
|
|
6507
|
-
name
|
|
7317
|
+
name: I18NProperty87;
|
|
6508
7318
|
cacheable?: boolean;
|
|
6509
7319
|
categories?: string[];
|
|
6510
7320
|
parameters?: MacroInputParameter[];
|
|
@@ -6521,9 +7331,9 @@ export interface Modules {
|
|
|
6521
7331
|
renderModes?: MacroRenderModes;
|
|
6522
7332
|
documentation?: Link;
|
|
6523
7333
|
icon?: Icon17;
|
|
6524
|
-
description?:
|
|
7334
|
+
description?: I18NProperty83;
|
|
6525
7335
|
outputType?: 'block' | 'BLOCK' | 'inline' | 'INLINE';
|
|
6526
|
-
url
|
|
7336
|
+
url: string;
|
|
6527
7337
|
propertyPanel?: MacroPropertyPanel;
|
|
6528
7338
|
autoconvert?: Autoconvert;
|
|
6529
7339
|
imagePlaceholder?: ImagePlaceholder;
|
|
@@ -6555,7 +7365,7 @@ export interface Modules {
|
|
|
6555
7365
|
[k: string]: unknown;
|
|
6556
7366
|
};
|
|
6557
7367
|
width?: string;
|
|
6558
|
-
name
|
|
7368
|
+
name: I18NProperty87;
|
|
6559
7369
|
cacheable?: boolean;
|
|
6560
7370
|
categories?: string[];
|
|
6561
7371
|
parameters?: MacroInputParameter[];
|
|
@@ -6573,14 +7383,14 @@ export interface Modules {
|
|
|
6573
7383
|
hidden?: boolean;
|
|
6574
7384
|
documentation?: Link1;
|
|
6575
7385
|
icon?: Icon18;
|
|
6576
|
-
description?:
|
|
7386
|
+
description?: I18NProperty92;
|
|
6577
7387
|
outputType?: 'block' | 'BLOCK' | 'inline' | 'INLINE';
|
|
6578
|
-
url
|
|
7388
|
+
url: string;
|
|
6579
7389
|
propertyPanel?: MacroPropertyPanel1;
|
|
6580
7390
|
autoconvert?: Autoconvert1;
|
|
6581
7391
|
imagePlaceholder?: ImagePlaceholder1;
|
|
6582
7392
|
renderingMethod?: 'get' | 'GET' | 'post' | 'POST';
|
|
6583
|
-
name
|
|
7393
|
+
name: I18NProperty96;
|
|
6584
7394
|
categories?: string[];
|
|
6585
7395
|
parameters?: MacroInputParameter1[];
|
|
6586
7396
|
key: ModuleKeySchema;
|
|
@@ -6594,14 +7404,14 @@ export interface Modules {
|
|
|
6594
7404
|
hidden?: boolean;
|
|
6595
7405
|
documentation?: Link1;
|
|
6596
7406
|
icon?: Icon18;
|
|
6597
|
-
description?:
|
|
7407
|
+
description?: I18NProperty92;
|
|
6598
7408
|
outputType?: 'block' | 'BLOCK' | 'inline' | 'INLINE';
|
|
6599
|
-
url
|
|
7409
|
+
url: string;
|
|
6600
7410
|
propertyPanel?: MacroPropertyPanel1;
|
|
6601
7411
|
autoconvert?: Autoconvert1;
|
|
6602
7412
|
imagePlaceholder?: ImagePlaceholder1;
|
|
6603
7413
|
renderingMethod?: 'get' | 'GET' | 'post' | 'POST';
|
|
6604
|
-
name
|
|
7414
|
+
name: I18NProperty96;
|
|
6605
7415
|
categories?: string[];
|
|
6606
7416
|
parameters?: MacroInputParameter1[];
|
|
6607
7417
|
key: ModuleKeySchema;
|
|
@@ -6611,9 +7421,9 @@ export interface Modules {
|
|
|
6611
7421
|
'connect-confluence:contentBylineItems'?: [
|
|
6612
7422
|
{
|
|
6613
7423
|
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
6614
|
-
tooltip?:
|
|
7424
|
+
tooltip?: I18NProperty99;
|
|
6615
7425
|
icon?: Icon19;
|
|
6616
|
-
name
|
|
7426
|
+
name: I18NProperty100;
|
|
6617
7427
|
cacheable?: boolean;
|
|
6618
7428
|
conditions?: (CompositeCondition | SingleCondition)[];
|
|
6619
7429
|
params?: {
|
|
@@ -6621,15 +7431,15 @@ export interface Modules {
|
|
|
6621
7431
|
};
|
|
6622
7432
|
contentPropertyKey?: string;
|
|
6623
7433
|
url?: string;
|
|
6624
|
-
target?:
|
|
7434
|
+
target?: WebItemTarget3;
|
|
6625
7435
|
key: ModuleKeySchema;
|
|
6626
7436
|
[k: string]: unknown;
|
|
6627
7437
|
},
|
|
6628
7438
|
...{
|
|
6629
7439
|
context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
|
|
6630
|
-
tooltip?:
|
|
7440
|
+
tooltip?: I18NProperty99;
|
|
6631
7441
|
icon?: Icon19;
|
|
6632
|
-
name
|
|
7442
|
+
name: I18NProperty100;
|
|
6633
7443
|
cacheable?: boolean;
|
|
6634
7444
|
conditions?: (CompositeCondition | SingleCondition)[];
|
|
6635
7445
|
params?: {
|
|
@@ -6637,7 +7447,7 @@ export interface Modules {
|
|
|
6637
7447
|
};
|
|
6638
7448
|
contentPropertyKey?: string;
|
|
6639
7449
|
url?: string;
|
|
6640
|
-
target?:
|
|
7450
|
+
target?: WebItemTarget3;
|
|
6641
7451
|
key: ModuleKeySchema;
|
|
6642
7452
|
[k: string]: unknown;
|
|
6643
7453
|
}[]
|
|
@@ -6648,8 +7458,8 @@ export interface Modules {
|
|
|
6648
7458
|
lookAndFeel?: LookAndFeel;
|
|
6649
7459
|
icon?: Icon20;
|
|
6650
7460
|
routeOverride?: boolean;
|
|
6651
|
-
name
|
|
6652
|
-
description?:
|
|
7461
|
+
name: I18NProperty102;
|
|
7462
|
+
description?: I18NProperty103;
|
|
6653
7463
|
availableGlobally?: boolean;
|
|
6654
7464
|
key: ModuleKeySchema;
|
|
6655
7465
|
[k: string]: unknown;
|
|
@@ -6659,8 +7469,8 @@ export interface Modules {
|
|
|
6659
7469
|
lookAndFeel?: LookAndFeel;
|
|
6660
7470
|
icon?: Icon20;
|
|
6661
7471
|
routeOverride?: boolean;
|
|
6662
|
-
name
|
|
6663
|
-
description?:
|
|
7472
|
+
name: I18NProperty102;
|
|
7473
|
+
description?: I18NProperty103;
|
|
6664
7474
|
availableGlobally?: boolean;
|
|
6665
7475
|
key: ModuleKeySchema;
|
|
6666
7476
|
[k: string]: unknown;
|
|
@@ -8543,182 +9353,237 @@ export interface URL5 {
|
|
|
8543
9353
|
*
|
|
8544
9354
|
*
|
|
8545
9355
|
*/
|
|
8546
|
-
export interface I18NProperty30 {
|
|
8547
|
-
value: string;
|
|
8548
|
-
i18n?: string;
|
|
8549
|
-
[k: string]: unknown;
|
|
8550
|
-
}
|
|
8551
|
-
/**
|
|
8552
|
-
*
|
|
8553
|
-
*
|
|
8554
|
-
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
8555
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
8556
|
-
*
|
|
8557
|
-
* <h3>Example</h3>
|
|
8558
|
-
*
|
|
8559
|
-
*
|
|
8560
|
-
*
|
|
8561
|
-
*
|
|
8562
|
-
*
|
|
8563
|
-
* {
|
|
8564
|
-
* "value": "My text"
|
|
8565
|
-
* }
|
|
8566
|
-
*
|
|
8567
|
-
*
|
|
8568
|
-
*
|
|
8569
|
-
*/
|
|
8570
|
-
export interface I18NProperty31 {
|
|
8571
|
-
value: string;
|
|
8572
|
-
i18n?: string;
|
|
8573
|
-
[k: string]: unknown;
|
|
8574
|
-
}
|
|
8575
|
-
/**
|
|
8576
|
-
*
|
|
8577
|
-
*
|
|
8578
|
-
*
|
|
8579
|
-
*
|
|
8580
|
-
*
|
|
8581
|
-
|
|
8582
|
-
|
|
8583
|
-
|
|
8584
|
-
|
|
8585
|
-
|
|
8586
|
-
|
|
8587
|
-
*
|
|
8588
|
-
*
|
|
8589
|
-
*
|
|
8590
|
-
*
|
|
8591
|
-
*
|
|
8592
|
-
|
|
8593
|
-
|
|
8594
|
-
|
|
8595
|
-
|
|
8596
|
-
|
|
8597
|
-
|
|
8598
|
-
|
|
8599
|
-
|
|
8600
|
-
*
|
|
8601
|
-
*
|
|
8602
|
-
*
|
|
8603
|
-
*
|
|
8604
|
-
*
|
|
8605
|
-
*
|
|
8606
|
-
|
|
8607
|
-
|
|
8608
|
-
|
|
8609
|
-
|
|
8610
|
-
|
|
8611
|
-
|
|
8612
|
-
|
|
8613
|
-
|
|
8614
|
-
|
|
8615
|
-
|
|
8616
|
-
|
|
8617
|
-
|
|
8618
|
-
|
|
8619
|
-
|
|
8620
|
-
|
|
8621
|
-
|
|
8622
|
-
|
|
8623
|
-
|
|
8624
|
-
|
|
8625
|
-
|
|
8626
|
-
|
|
8627
|
-
|
|
8628
|
-
|
|
8629
|
-
|
|
8630
|
-
|
|
8631
|
-
*
|
|
8632
|
-
*
|
|
8633
|
-
*
|
|
8634
|
-
*
|
|
8635
|
-
*
|
|
8636
|
-
|
|
8637
|
-
|
|
8638
|
-
|
|
8639
|
-
|
|
8640
|
-
|
|
8641
|
-
|
|
8642
|
-
|
|
8643
|
-
|
|
8644
|
-
|
|
8645
|
-
|
|
8646
|
-
|
|
8647
|
-
|
|
8648
|
-
|
|
8649
|
-
|
|
8650
|
-
|
|
8651
|
-
|
|
8652
|
-
|
|
8653
|
-
|
|
8654
|
-
*
|
|
8655
|
-
*
|
|
8656
|
-
*
|
|
8657
|
-
*
|
|
8658
|
-
*
|
|
8659
|
-
*
|
|
8660
|
-
*
|
|
8661
|
-
*
|
|
8662
|
-
*
|
|
8663
|
-
*
|
|
8664
|
-
|
|
8665
|
-
|
|
8666
|
-
|
|
8667
|
-
|
|
8668
|
-
|
|
8669
|
-
|
|
8670
|
-
|
|
8671
|
-
|
|
8672
|
-
|
|
8673
|
-
|
|
8674
|
-
|
|
8675
|
-
|
|
8676
|
-
|
|
8677
|
-
|
|
8678
|
-
*
|
|
8679
|
-
*
|
|
8680
|
-
*
|
|
8681
|
-
*
|
|
8682
|
-
*
|
|
8683
|
-
*
|
|
8684
|
-
*
|
|
8685
|
-
*
|
|
8686
|
-
*
|
|
8687
|
-
*
|
|
8688
|
-
*
|
|
8689
|
-
*
|
|
8690
|
-
*
|
|
8691
|
-
|
|
8692
|
-
|
|
8693
|
-
|
|
8694
|
-
|
|
8695
|
-
|
|
8696
|
-
|
|
8697
|
-
|
|
8698
|
-
|
|
8699
|
-
|
|
8700
|
-
|
|
8701
|
-
|
|
8702
|
-
*
|
|
8703
|
-
*
|
|
8704
|
-
*
|
|
8705
|
-
*
|
|
8706
|
-
*
|
|
8707
|
-
*
|
|
8708
|
-
*
|
|
8709
|
-
*
|
|
8710
|
-
*
|
|
8711
|
-
*
|
|
8712
|
-
*
|
|
8713
|
-
*
|
|
8714
|
-
*
|
|
8715
|
-
*
|
|
8716
|
-
|
|
9356
|
+
export interface I18NProperty30 {
|
|
9357
|
+
value: string;
|
|
9358
|
+
i18n?: string;
|
|
9359
|
+
[k: string]: unknown;
|
|
9360
|
+
}
|
|
9361
|
+
/**
|
|
9362
|
+
*
|
|
9363
|
+
*
|
|
9364
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
9365
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
9366
|
+
*
|
|
9367
|
+
* <h3>Example</h3>
|
|
9368
|
+
*
|
|
9369
|
+
*
|
|
9370
|
+
*
|
|
9371
|
+
*
|
|
9372
|
+
*
|
|
9373
|
+
* {
|
|
9374
|
+
* "value": "My text"
|
|
9375
|
+
* }
|
|
9376
|
+
*
|
|
9377
|
+
*
|
|
9378
|
+
*
|
|
9379
|
+
*/
|
|
9380
|
+
export interface I18NProperty31 {
|
|
9381
|
+
value: string;
|
|
9382
|
+
i18n?: string;
|
|
9383
|
+
[k: string]: unknown;
|
|
9384
|
+
}
|
|
9385
|
+
/**
|
|
9386
|
+
*
|
|
9387
|
+
*
|
|
9388
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
9389
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
9390
|
+
*
|
|
9391
|
+
* <h3>Example</h3>
|
|
9392
|
+
*
|
|
9393
|
+
*
|
|
9394
|
+
*
|
|
9395
|
+
*
|
|
9396
|
+
*
|
|
9397
|
+
* {
|
|
9398
|
+
* "value": "My text"
|
|
9399
|
+
* }
|
|
9400
|
+
*
|
|
9401
|
+
*
|
|
9402
|
+
*
|
|
9403
|
+
*/
|
|
9404
|
+
export interface I18NProperty32 {
|
|
9405
|
+
value: string;
|
|
9406
|
+
i18n?: string;
|
|
9407
|
+
[k: string]: unknown;
|
|
9408
|
+
}
|
|
9409
|
+
/**
|
|
9410
|
+
*
|
|
9411
|
+
*
|
|
9412
|
+
* <p>Security Information actions that can be performed by Jira users. </p>
|
|
9413
|
+
* <p>Each action is optional (unless indicated otherwise). The absence of an action indicates that the action is not supported by the provider.</p>
|
|
9414
|
+
*
|
|
9415
|
+
*
|
|
9416
|
+
*/
|
|
9417
|
+
export interface SecurityInformationActions {
|
|
9418
|
+
fetchWorkspaces?: {
|
|
9419
|
+
templateUrl: string;
|
|
9420
|
+
[k: string]: unknown;
|
|
9421
|
+
};
|
|
9422
|
+
fetchContainers?: {
|
|
9423
|
+
templateUrl: string;
|
|
9424
|
+
[k: string]: unknown;
|
|
9425
|
+
};
|
|
9426
|
+
searchContainers?: {
|
|
9427
|
+
templateUrl: string;
|
|
9428
|
+
[k: string]: unknown;
|
|
9429
|
+
};
|
|
9430
|
+
onEntityAssociated?: {
|
|
9431
|
+
templateUrl: string;
|
|
9432
|
+
[k: string]: unknown;
|
|
9433
|
+
};
|
|
9434
|
+
onEntityDisassociated?: {
|
|
9435
|
+
templateUrl: string;
|
|
9436
|
+
[k: string]: unknown;
|
|
9437
|
+
};
|
|
9438
|
+
[k: string]: unknown;
|
|
9439
|
+
}
|
|
9440
|
+
/**
|
|
9441
|
+
*
|
|
9442
|
+
*
|
|
9443
|
+
* Describes the location of the dashboard background script module.
|
|
9444
|
+
*
|
|
9445
|
+
*
|
|
9446
|
+
*/
|
|
9447
|
+
export interface DashboardBackgroundScriptLocation {
|
|
9448
|
+
type: 'issue_view' | 'ISSUE_VIEW' | 'dashboard' | 'DASHBOARD';
|
|
9449
|
+
[k: string]: unknown;
|
|
9450
|
+
}
|
|
9451
|
+
/**
|
|
9452
|
+
*
|
|
9453
|
+
*
|
|
9454
|
+
* Describes the location of the issue background script module.
|
|
9455
|
+
*
|
|
9456
|
+
*
|
|
9457
|
+
*/
|
|
9458
|
+
export interface IssueBackgroundScriptLocation {
|
|
9459
|
+
type: 'issue_view' | 'ISSUE_VIEW' | 'dashboard' | 'DASHBOARD';
|
|
9460
|
+
shouldReloadOnRefresh?: boolean;
|
|
9461
|
+
[k: string]: unknown;
|
|
9462
|
+
}
|
|
9463
|
+
/**
|
|
9464
|
+
*
|
|
9465
|
+
*
|
|
9466
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
9467
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
9468
|
+
*
|
|
9469
|
+
* <h3>Example</h3>
|
|
9470
|
+
*
|
|
9471
|
+
*
|
|
9472
|
+
*
|
|
9473
|
+
*
|
|
9474
|
+
*
|
|
9475
|
+
* {
|
|
9476
|
+
* "value": "My text"
|
|
9477
|
+
* }
|
|
9478
|
+
*
|
|
9479
|
+
*
|
|
9480
|
+
*
|
|
9481
|
+
*/
|
|
9482
|
+
export interface I18NProperty33 {
|
|
9483
|
+
value: string;
|
|
9484
|
+
i18n?: string;
|
|
9485
|
+
[k: string]: unknown;
|
|
9486
|
+
}
|
|
9487
|
+
/**
|
|
9488
|
+
*
|
|
9489
|
+
*
|
|
9490
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
9491
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
9492
|
+
*
|
|
9493
|
+
* <h3>Example</h3>
|
|
9494
|
+
*
|
|
9495
|
+
*
|
|
9496
|
+
*
|
|
9497
|
+
*
|
|
9498
|
+
*
|
|
9499
|
+
* {
|
|
9500
|
+
* "value": "My text"
|
|
9501
|
+
* }
|
|
9502
|
+
*
|
|
9503
|
+
*
|
|
9504
|
+
*
|
|
9505
|
+
*/
|
|
9506
|
+
export interface I18NProperty34 {
|
|
9507
|
+
value: string;
|
|
9508
|
+
i18n?: string;
|
|
9509
|
+
[k: string]: unknown;
|
|
9510
|
+
}
|
|
9511
|
+
/**
|
|
9512
|
+
*
|
|
9513
|
+
*
|
|
9514
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
9515
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
9516
|
+
*
|
|
9517
|
+
* <h3>Example</h3>
|
|
9518
|
+
*
|
|
9519
|
+
*
|
|
9520
|
+
*
|
|
9521
|
+
*
|
|
9522
|
+
*
|
|
9523
|
+
* {
|
|
9524
|
+
* "value": "My text"
|
|
9525
|
+
* }
|
|
9526
|
+
*
|
|
9527
|
+
*
|
|
9528
|
+
*
|
|
9529
|
+
*/
|
|
8717
9530
|
export interface I18NProperty35 {
|
|
8718
9531
|
value: string;
|
|
8719
9532
|
i18n?: string;
|
|
8720
9533
|
[k: string]: unknown;
|
|
8721
9534
|
}
|
|
9535
|
+
/**
|
|
9536
|
+
*
|
|
9537
|
+
*
|
|
9538
|
+
* Defines an icon to display.
|
|
9539
|
+
*
|
|
9540
|
+
* <h3>Example</h3>
|
|
9541
|
+
*
|
|
9542
|
+
*
|
|
9543
|
+
*
|
|
9544
|
+
*
|
|
9545
|
+
*
|
|
9546
|
+
* {
|
|
9547
|
+
* "icon": {
|
|
9548
|
+
* "width": 16,
|
|
9549
|
+
* "height": 16,
|
|
9550
|
+
* "url": "/my-icon.png"
|
|
9551
|
+
* }
|
|
9552
|
+
* }
|
|
9553
|
+
*
|
|
9554
|
+
*
|
|
9555
|
+
*
|
|
9556
|
+
*/
|
|
9557
|
+
export interface Icon6 {
|
|
9558
|
+
width?: number;
|
|
9559
|
+
url: string;
|
|
9560
|
+
height?: number;
|
|
9561
|
+
[k: string]: unknown;
|
|
9562
|
+
}
|
|
9563
|
+
/**
|
|
9564
|
+
*
|
|
9565
|
+
*
|
|
9566
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
9567
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
9568
|
+
*
|
|
9569
|
+
* <h3>Example</h3>
|
|
9570
|
+
*
|
|
9571
|
+
*
|
|
9572
|
+
*
|
|
9573
|
+
*
|
|
9574
|
+
*
|
|
9575
|
+
* {
|
|
9576
|
+
* "value": "My text"
|
|
9577
|
+
* }
|
|
9578
|
+
*
|
|
9579
|
+
*
|
|
9580
|
+
*
|
|
9581
|
+
*/
|
|
9582
|
+
export interface I18NProperty36 {
|
|
9583
|
+
value: string;
|
|
9584
|
+
i18n?: string;
|
|
9585
|
+
[k: string]: unknown;
|
|
9586
|
+
}
|
|
8722
9587
|
/**
|
|
8723
9588
|
*
|
|
8724
9589
|
*
|
|
@@ -8727,7 +9592,7 @@ export interface I18NProperty35 {
|
|
|
8727
9592
|
*
|
|
8728
9593
|
*/
|
|
8729
9594
|
export interface IssueContextContentLabel {
|
|
8730
|
-
label:
|
|
9595
|
+
label: I18NProperty37;
|
|
8731
9596
|
type: 'label' | 'LABEL';
|
|
8732
9597
|
[k: string]: unknown;
|
|
8733
9598
|
}
|
|
@@ -8750,7 +9615,7 @@ export interface IssueContextContentLabel {
|
|
|
8750
9615
|
*
|
|
8751
9616
|
*
|
|
8752
9617
|
*/
|
|
8753
|
-
export interface
|
|
9618
|
+
export interface I18NProperty37 {
|
|
8754
9619
|
value: string;
|
|
8755
9620
|
i18n?: string;
|
|
8756
9621
|
[k: string]: unknown;
|
|
@@ -8786,7 +9651,7 @@ export interface IssueContextTargetWebPanel {
|
|
|
8786
9651
|
*
|
|
8787
9652
|
*
|
|
8788
9653
|
*/
|
|
8789
|
-
export interface
|
|
9654
|
+
export interface I18NProperty38 {
|
|
8790
9655
|
value: string;
|
|
8791
9656
|
i18n?: string;
|
|
8792
9657
|
[k: string]: unknown;
|
|
@@ -8810,7 +9675,7 @@ export interface I18NProperty37 {
|
|
|
8810
9675
|
*
|
|
8811
9676
|
*
|
|
8812
9677
|
*/
|
|
8813
|
-
export interface
|
|
9678
|
+
export interface I18NProperty39 {
|
|
8814
9679
|
value: string;
|
|
8815
9680
|
i18n?: string;
|
|
8816
9681
|
[k: string]: unknown;
|
|
@@ -8861,7 +9726,7 @@ export interface URL8 {
|
|
|
8861
9726
|
*
|
|
8862
9727
|
*
|
|
8863
9728
|
*/
|
|
8864
|
-
export interface
|
|
9729
|
+
export interface I18NProperty40 {
|
|
8865
9730
|
value: string;
|
|
8866
9731
|
i18n?: string;
|
|
8867
9732
|
[k: string]: unknown;
|
|
@@ -8885,7 +9750,7 @@ export interface I18NProperty39 {
|
|
|
8885
9750
|
*
|
|
8886
9751
|
*
|
|
8887
9752
|
*/
|
|
8888
|
-
export interface
|
|
9753
|
+
export interface I18NProperty41 {
|
|
8889
9754
|
value: string;
|
|
8890
9755
|
i18n?: string;
|
|
8891
9756
|
[k: string]: unknown;
|
|
@@ -8946,7 +9811,7 @@ export interface Icon7 {
|
|
|
8946
9811
|
*
|
|
8947
9812
|
*
|
|
8948
9813
|
*/
|
|
8949
|
-
export interface
|
|
9814
|
+
export interface I18NProperty42 {
|
|
8950
9815
|
value: string;
|
|
8951
9816
|
i18n?: string;
|
|
8952
9817
|
[k: string]: unknown;
|
|
@@ -8970,7 +9835,7 @@ export interface I18NProperty41 {
|
|
|
8970
9835
|
*
|
|
8971
9836
|
*
|
|
8972
9837
|
*/
|
|
8973
|
-
export interface
|
|
9838
|
+
export interface I18NProperty43 {
|
|
8974
9839
|
value: string;
|
|
8975
9840
|
i18n?: string;
|
|
8976
9841
|
[k: string]: unknown;
|
|
@@ -9006,7 +9871,7 @@ export interface IssuePageTargetWebPanel {
|
|
|
9006
9871
|
*
|
|
9007
9872
|
*
|
|
9008
9873
|
*/
|
|
9009
|
-
export interface
|
|
9874
|
+
export interface I18NProperty44 {
|
|
9010
9875
|
value: string;
|
|
9011
9876
|
i18n?: string;
|
|
9012
9877
|
[k: string]: unknown;
|
|
@@ -9030,7 +9895,7 @@ export interface I18NProperty43 {
|
|
|
9030
9895
|
*
|
|
9031
9896
|
*
|
|
9032
9897
|
*/
|
|
9033
|
-
export interface
|
|
9898
|
+
export interface I18NProperty45 {
|
|
9034
9899
|
value: string;
|
|
9035
9900
|
i18n?: string;
|
|
9036
9901
|
[k: string]: unknown;
|
|
@@ -9055,6 +9920,39 @@ export interface DevelopmentActions {
|
|
|
9055
9920
|
templateUrl: string;
|
|
9056
9921
|
[k: string]: unknown;
|
|
9057
9922
|
};
|
|
9923
|
+
/**
|
|
9924
|
+
*
|
|
9925
|
+
*
|
|
9926
|
+
* <p>Defines the URL template that is used when an action is invoked. The following context parameters are supported: <code>{issue.key}</code>, <code>{issue.summary}</code>.</p>
|
|
9927
|
+
*
|
|
9928
|
+
*
|
|
9929
|
+
*/
|
|
9930
|
+
searchConnectedWorkspaces?: {
|
|
9931
|
+
templateUrl: string;
|
|
9932
|
+
[k: string]: unknown;
|
|
9933
|
+
};
|
|
9934
|
+
/**
|
|
9935
|
+
*
|
|
9936
|
+
*
|
|
9937
|
+
* <p>Defines the URL template that is used when an action is invoked. The following context parameters are supported: <code>{issue.key}</code>, <code>{issue.summary}</code>.</p>
|
|
9938
|
+
*
|
|
9939
|
+
*
|
|
9940
|
+
*/
|
|
9941
|
+
searchRepositories?: {
|
|
9942
|
+
templateUrl: string;
|
|
9943
|
+
[k: string]: unknown;
|
|
9944
|
+
};
|
|
9945
|
+
/**
|
|
9946
|
+
*
|
|
9947
|
+
*
|
|
9948
|
+
* <p>Defines the URL template that is used when an action is invoked. The following context parameters are supported: <code>{issue.key}</code>, <code>{issue.summary}</code>.</p>
|
|
9949
|
+
*
|
|
9950
|
+
*
|
|
9951
|
+
*/
|
|
9952
|
+
associateRepository?: {
|
|
9953
|
+
templateUrl: string;
|
|
9954
|
+
[k: string]: unknown;
|
|
9955
|
+
};
|
|
9058
9956
|
[k: string]: unknown;
|
|
9059
9957
|
}
|
|
9060
9958
|
/**
|
|
@@ -9076,7 +9974,7 @@ export interface DevelopmentActions {
|
|
|
9076
9974
|
*
|
|
9077
9975
|
*
|
|
9078
9976
|
*/
|
|
9079
|
-
export interface
|
|
9977
|
+
export interface I18NProperty46 {
|
|
9080
9978
|
value: string;
|
|
9081
9979
|
i18n?: string;
|
|
9082
9980
|
[k: string]: unknown;
|
|
@@ -9213,7 +10111,7 @@ export interface SingleCondition3 {
|
|
|
9213
10111
|
*
|
|
9214
10112
|
*
|
|
9215
10113
|
*/
|
|
9216
|
-
export interface
|
|
10114
|
+
export interface I18NProperty47 {
|
|
9217
10115
|
value: string;
|
|
9218
10116
|
i18n?: string;
|
|
9219
10117
|
[k: string]: unknown;
|
|
@@ -9237,7 +10135,7 @@ export interface I18NProperty46 {
|
|
|
9237
10135
|
*
|
|
9238
10136
|
*
|
|
9239
10137
|
*/
|
|
9240
|
-
export interface
|
|
10138
|
+
export interface I18NProperty48 {
|
|
9241
10139
|
value: string;
|
|
9242
10140
|
i18n?: string;
|
|
9243
10141
|
[k: string]: unknown;
|
|
@@ -9299,7 +10197,7 @@ export interface IssueFieldProperty {
|
|
|
9299
10197
|
*
|
|
9300
10198
|
*
|
|
9301
10199
|
*/
|
|
9302
|
-
export interface
|
|
10200
|
+
export interface I18NProperty49 {
|
|
9303
10201
|
value: string;
|
|
9304
10202
|
i18n?: string;
|
|
9305
10203
|
[k: string]: unknown;
|
|
@@ -9323,7 +10221,7 @@ export interface I18NProperty48 {
|
|
|
9323
10221
|
*
|
|
9324
10222
|
*
|
|
9325
10223
|
*/
|
|
9326
|
-
export interface
|
|
10224
|
+
export interface I18NProperty50 {
|
|
9327
10225
|
value: string;
|
|
9328
10226
|
i18n?: string;
|
|
9329
10227
|
[k: string]: unknown;
|
|
@@ -9381,7 +10279,7 @@ export interface IssueFieldOptionPropertyIndex {
|
|
|
9381
10279
|
*
|
|
9382
10280
|
*
|
|
9383
10281
|
*/
|
|
9384
|
-
export interface
|
|
10282
|
+
export interface I18NProperty51 {
|
|
9385
10283
|
value: string;
|
|
9386
10284
|
i18n?: string;
|
|
9387
10285
|
[k: string]: unknown;
|
|
@@ -9405,7 +10303,7 @@ export interface I18NProperty50 {
|
|
|
9405
10303
|
*
|
|
9406
10304
|
*
|
|
9407
10305
|
*/
|
|
9408
|
-
export interface
|
|
10306
|
+
export interface I18NProperty52 {
|
|
9409
10307
|
value: string;
|
|
9410
10308
|
i18n?: string;
|
|
9411
10309
|
[k: string]: unknown;
|
|
@@ -9429,7 +10327,7 @@ export interface I18NProperty51 {
|
|
|
9429
10327
|
*
|
|
9430
10328
|
*
|
|
9431
10329
|
*/
|
|
9432
|
-
export interface
|
|
10330
|
+
export interface I18NProperty53 {
|
|
9433
10331
|
value: string;
|
|
9434
10332
|
i18n?: string;
|
|
9435
10333
|
[k: string]: unknown;
|
|
@@ -9453,7 +10351,94 @@ export interface I18NProperty52 {
|
|
|
9453
10351
|
*
|
|
9454
10352
|
*
|
|
9455
10353
|
*/
|
|
9456
|
-
export interface
|
|
10354
|
+
export interface I18NProperty54 {
|
|
10355
|
+
value: string;
|
|
10356
|
+
i18n?: string;
|
|
10357
|
+
[k: string]: unknown;
|
|
10358
|
+
}
|
|
10359
|
+
export interface WebItemTarget1 {
|
|
10360
|
+
options?: InlineDialogOptions1 | DialogModuleOptions1 | DialogOptions2;
|
|
10361
|
+
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
10362
|
+
[k: string]: unknown;
|
|
10363
|
+
}
|
|
10364
|
+
export interface InlineDialogOptions1 {
|
|
10365
|
+
offsetX?: string;
|
|
10366
|
+
offsetY?: string;
|
|
10367
|
+
width?: string;
|
|
10368
|
+
onTop?: boolean;
|
|
10369
|
+
showDelay?: number;
|
|
10370
|
+
closeOthers?: boolean;
|
|
10371
|
+
persistent?: boolean;
|
|
10372
|
+
onHover?: boolean;
|
|
10373
|
+
isRelativeToMouse?: boolean;
|
|
10374
|
+
[k: string]: unknown;
|
|
10375
|
+
}
|
|
10376
|
+
export interface DialogModuleOptions1 {
|
|
10377
|
+
key: string;
|
|
10378
|
+
[k: string]: unknown;
|
|
10379
|
+
}
|
|
10380
|
+
export interface DialogOptions2 {
|
|
10381
|
+
size?:
|
|
10382
|
+
| 'small'
|
|
10383
|
+
| 'SMALL'
|
|
10384
|
+
| 'medium'
|
|
10385
|
+
| 'MEDIUM'
|
|
10386
|
+
| 'large'
|
|
10387
|
+
| 'LARGE'
|
|
10388
|
+
| 'x-large'
|
|
10389
|
+
| 'X-LARGE'
|
|
10390
|
+
| 'fullscreen'
|
|
10391
|
+
| 'FULLSCREEN'
|
|
10392
|
+
| 'maximum'
|
|
10393
|
+
| 'MAXIMUM';
|
|
10394
|
+
chrome?: boolean;
|
|
10395
|
+
width?: string;
|
|
10396
|
+
header?: I18NProperty54;
|
|
10397
|
+
height?: string;
|
|
10398
|
+
[k: string]: unknown;
|
|
10399
|
+
}
|
|
10400
|
+
export interface Webhook {
|
|
10401
|
+
url: string;
|
|
10402
|
+
}
|
|
10403
|
+
export interface ConfigForm {
|
|
10404
|
+
url: string;
|
|
10405
|
+
}
|
|
10406
|
+
export interface Callback {
|
|
10407
|
+
type: 'jwt' | 'JWT';
|
|
10408
|
+
url: string;
|
|
10409
|
+
}
|
|
10410
|
+
/**
|
|
10411
|
+
*
|
|
10412
|
+
*
|
|
10413
|
+
* <p>Defines the Remote Link action that can be invoked.</p>
|
|
10414
|
+
*
|
|
10415
|
+
*
|
|
10416
|
+
*/
|
|
10417
|
+
export interface JQLFunctionArgument {
|
|
10418
|
+
name: string;
|
|
10419
|
+
required: boolean;
|
|
10420
|
+
[k: string]: unknown;
|
|
10421
|
+
}
|
|
10422
|
+
/**
|
|
10423
|
+
*
|
|
10424
|
+
*
|
|
10425
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
10426
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
10427
|
+
*
|
|
10428
|
+
* <h3>Example</h3>
|
|
10429
|
+
*
|
|
10430
|
+
*
|
|
10431
|
+
*
|
|
10432
|
+
*
|
|
10433
|
+
*
|
|
10434
|
+
* {
|
|
10435
|
+
* "value": "My text"
|
|
10436
|
+
* }
|
|
10437
|
+
*
|
|
10438
|
+
*
|
|
10439
|
+
*
|
|
10440
|
+
*/
|
|
10441
|
+
export interface I18NProperty55 {
|
|
9457
10442
|
value: string;
|
|
9458
10443
|
i18n?: string;
|
|
9459
10444
|
[k: string]: unknown;
|
|
@@ -9516,7 +10501,7 @@ export interface Icon8 {
|
|
|
9516
10501
|
*
|
|
9517
10502
|
*
|
|
9518
10503
|
*/
|
|
9519
|
-
export interface
|
|
10504
|
+
export interface I18NProperty56 {
|
|
9520
10505
|
value: string;
|
|
9521
10506
|
i18n?: string;
|
|
9522
10507
|
[k: string]: unknown;
|
|
@@ -9564,7 +10549,7 @@ export interface WebPanelLayout1 {
|
|
|
9564
10549
|
*
|
|
9565
10550
|
*
|
|
9566
10551
|
*/
|
|
9567
|
-
export interface
|
|
10552
|
+
export interface I18NProperty57 {
|
|
9568
10553
|
value: string;
|
|
9569
10554
|
i18n?: string;
|
|
9570
10555
|
[k: string]: unknown;
|
|
@@ -9588,7 +10573,7 @@ export interface I18NProperty55 {
|
|
|
9588
10573
|
*
|
|
9589
10574
|
*
|
|
9590
10575
|
*/
|
|
9591
|
-
export interface
|
|
10576
|
+
export interface I18NProperty58 {
|
|
9592
10577
|
value: string;
|
|
9593
10578
|
i18n?: string;
|
|
9594
10579
|
[k: string]: unknown;
|
|
@@ -9640,7 +10625,7 @@ export interface Icon9 {
|
|
|
9640
10625
|
*
|
|
9641
10626
|
*
|
|
9642
10627
|
*/
|
|
9643
|
-
export interface
|
|
10628
|
+
export interface I18NProperty59 {
|
|
9644
10629
|
value: string;
|
|
9645
10630
|
i18n?: string;
|
|
9646
10631
|
[k: string]: unknown;
|
|
@@ -9664,7 +10649,7 @@ export interface I18NProperty57 {
|
|
|
9664
10649
|
*
|
|
9665
10650
|
*
|
|
9666
10651
|
*/
|
|
9667
|
-
export interface
|
|
10652
|
+
export interface I18NProperty60 {
|
|
9668
10653
|
value: string;
|
|
9669
10654
|
i18n?: string;
|
|
9670
10655
|
[k: string]: unknown;
|
|
@@ -9688,7 +10673,7 @@ export interface I18NProperty58 {
|
|
|
9688
10673
|
*
|
|
9689
10674
|
*
|
|
9690
10675
|
*/
|
|
9691
|
-
export interface
|
|
10676
|
+
export interface I18NProperty61 {
|
|
9692
10677
|
value: string;
|
|
9693
10678
|
i18n?: string;
|
|
9694
10679
|
[k: string]: unknown;
|
|
@@ -9740,7 +10725,7 @@ export interface Icon10 {
|
|
|
9740
10725
|
*
|
|
9741
10726
|
*
|
|
9742
10727
|
*/
|
|
9743
|
-
export interface
|
|
10728
|
+
export interface I18NProperty62 {
|
|
9744
10729
|
value: string;
|
|
9745
10730
|
i18n?: string;
|
|
9746
10731
|
[k: string]: unknown;
|
|
@@ -9764,7 +10749,7 @@ export interface I18NProperty60 {
|
|
|
9764
10749
|
*
|
|
9765
10750
|
*
|
|
9766
10751
|
*/
|
|
9767
|
-
export interface
|
|
10752
|
+
export interface I18NProperty63 {
|
|
9768
10753
|
value: string;
|
|
9769
10754
|
i18n?: string;
|
|
9770
10755
|
[k: string]: unknown;
|
|
@@ -9863,8 +10848,8 @@ export interface Icon11 {
|
|
|
9863
10848
|
*
|
|
9864
10849
|
*
|
|
9865
10850
|
*/
|
|
9866
|
-
export interface
|
|
9867
|
-
options?:
|
|
10851
|
+
export interface WebItemTarget2 {
|
|
10852
|
+
options?: InlineDialogOptions2 | DialogModuleOptions2 | DialogOptions3;
|
|
9868
10853
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
9869
10854
|
[k: string]: unknown;
|
|
9870
10855
|
}
|
|
@@ -9893,7 +10878,7 @@ export interface WebItemTarget1 {
|
|
|
9893
10878
|
*
|
|
9894
10879
|
*
|
|
9895
10880
|
*/
|
|
9896
|
-
export interface
|
|
10881
|
+
export interface InlineDialogOptions2 {
|
|
9897
10882
|
offsetX?: string;
|
|
9898
10883
|
offsetY?: string;
|
|
9899
10884
|
width?: string;
|
|
@@ -9928,7 +10913,7 @@ export interface InlineDialogOptions1 {
|
|
|
9928
10913
|
*
|
|
9929
10914
|
*
|
|
9930
10915
|
*/
|
|
9931
|
-
export interface
|
|
10916
|
+
export interface DialogModuleOptions2 {
|
|
9932
10917
|
key: string;
|
|
9933
10918
|
[k: string]: unknown;
|
|
9934
10919
|
}
|
|
@@ -9986,7 +10971,7 @@ export interface DialogModuleOptions1 {
|
|
|
9986
10971
|
*
|
|
9987
10972
|
*
|
|
9988
10973
|
*/
|
|
9989
|
-
export interface
|
|
10974
|
+
export interface DialogOptions3 {
|
|
9990
10975
|
size?:
|
|
9991
10976
|
| 'small'
|
|
9992
10977
|
| 'SMALL'
|
|
@@ -10002,7 +10987,7 @@ export interface DialogOptions2 {
|
|
|
10002
10987
|
| 'MAXIMUM';
|
|
10003
10988
|
chrome?: boolean;
|
|
10004
10989
|
width?: string;
|
|
10005
|
-
header?:
|
|
10990
|
+
header?: I18NProperty64;
|
|
10006
10991
|
height?: string;
|
|
10007
10992
|
[k: string]: unknown;
|
|
10008
10993
|
}
|
|
@@ -10025,7 +11010,7 @@ export interface DialogOptions2 {
|
|
|
10025
11010
|
*
|
|
10026
11011
|
*
|
|
10027
11012
|
*/
|
|
10028
|
-
export interface
|
|
11013
|
+
export interface I18NProperty64 {
|
|
10029
11014
|
value: string;
|
|
10030
11015
|
i18n?: string;
|
|
10031
11016
|
[k: string]: unknown;
|
|
@@ -10049,7 +11034,7 @@ export interface I18NProperty62 {
|
|
|
10049
11034
|
*
|
|
10050
11035
|
*
|
|
10051
11036
|
*/
|
|
10052
|
-
export interface
|
|
11037
|
+
export interface I18NProperty65 {
|
|
10053
11038
|
value: string;
|
|
10054
11039
|
i18n?: string;
|
|
10055
11040
|
[k: string]: unknown;
|
|
@@ -10214,7 +11199,7 @@ export interface Icon12 {
|
|
|
10214
11199
|
*
|
|
10215
11200
|
*
|
|
10216
11201
|
*/
|
|
10217
|
-
export interface
|
|
11202
|
+
export interface I18NProperty66 {
|
|
10218
11203
|
value: string;
|
|
10219
11204
|
i18n?: string;
|
|
10220
11205
|
[k: string]: unknown;
|
|
@@ -10273,7 +11258,7 @@ export interface I18NProperty64 {
|
|
|
10273
11258
|
*
|
|
10274
11259
|
*
|
|
10275
11260
|
*/
|
|
10276
|
-
export interface
|
|
11261
|
+
export interface DialogOptions4 {
|
|
10277
11262
|
size?:
|
|
10278
11263
|
| 'small'
|
|
10279
11264
|
| 'SMALL'
|
|
@@ -10468,7 +11453,7 @@ export interface Icon13 {
|
|
|
10468
11453
|
*
|
|
10469
11454
|
*
|
|
10470
11455
|
*/
|
|
10471
|
-
export interface
|
|
11456
|
+
export interface I18NProperty67 {
|
|
10472
11457
|
value: string;
|
|
10473
11458
|
i18n?: string;
|
|
10474
11459
|
[k: string]: unknown;
|
|
@@ -10492,7 +11477,7 @@ export interface I18NProperty65 {
|
|
|
10492
11477
|
*
|
|
10493
11478
|
*
|
|
10494
11479
|
*/
|
|
10495
|
-
export interface
|
|
11480
|
+
export interface I18NProperty68 {
|
|
10496
11481
|
value: string;
|
|
10497
11482
|
i18n?: string;
|
|
10498
11483
|
[k: string]: unknown;
|
|
@@ -10516,7 +11501,7 @@ export interface I18NProperty66 {
|
|
|
10516
11501
|
*
|
|
10517
11502
|
*
|
|
10518
11503
|
*/
|
|
10519
|
-
export interface
|
|
11504
|
+
export interface I18NProperty69 {
|
|
10520
11505
|
value: string;
|
|
10521
11506
|
i18n?: string;
|
|
10522
11507
|
[k: string]: unknown;
|
|
@@ -10612,7 +11597,7 @@ export interface SingleCondition5 {
|
|
|
10612
11597
|
*
|
|
10613
11598
|
*
|
|
10614
11599
|
*/
|
|
10615
|
-
export interface
|
|
11600
|
+
export interface I18NProperty70 {
|
|
10616
11601
|
value: string;
|
|
10617
11602
|
i18n?: string;
|
|
10618
11603
|
[k: string]: unknown;
|
|
@@ -10836,8 +11821,8 @@ export interface UserInterfaceSupport {
|
|
|
10836
11821
|
| 'STRING'
|
|
10837
11822
|
| 'number'
|
|
10838
11823
|
| 'NUMBER';
|
|
10839
|
-
name:
|
|
10840
|
-
tooltip?:
|
|
11824
|
+
name: I18NProperty71;
|
|
11825
|
+
tooltip?: I18NProperty72;
|
|
10841
11826
|
[k: string]: unknown;
|
|
10842
11827
|
}
|
|
10843
11828
|
/**
|
|
@@ -10859,7 +11844,7 @@ export interface UserInterfaceSupport {
|
|
|
10859
11844
|
*
|
|
10860
11845
|
*
|
|
10861
11846
|
*/
|
|
10862
|
-
export interface
|
|
11847
|
+
export interface I18NProperty71 {
|
|
10863
11848
|
value: string;
|
|
10864
11849
|
i18n?: string;
|
|
10865
11850
|
[k: string]: unknown;
|
|
@@ -10883,7 +11868,7 @@ export interface I18NProperty69 {
|
|
|
10883
11868
|
*
|
|
10884
11869
|
*
|
|
10885
11870
|
*/
|
|
10886
|
-
export interface
|
|
11871
|
+
export interface I18NProperty72 {
|
|
10887
11872
|
value: string;
|
|
10888
11873
|
i18n?: string;
|
|
10889
11874
|
[k: string]: unknown;
|
|
@@ -10965,13 +11950,13 @@ export interface I18NProperty70 {
|
|
|
10965
11950
|
*
|
|
10966
11951
|
*/
|
|
10967
11952
|
export interface CustomContentUISupport {
|
|
10968
|
-
editComponentTitlePlaceholder?:
|
|
11953
|
+
editComponentTitlePlaceholder?: I18NProperty73;
|
|
10969
11954
|
listViewComponent?: ModuleReference;
|
|
10970
11955
|
editComponent?: ModuleReference1;
|
|
10971
11956
|
icons: CustomContentIcons;
|
|
10972
11957
|
contentViewComponent: ModuleReference2;
|
|
10973
|
-
editComponentSubmitButtonLabel?:
|
|
10974
|
-
editComponentCancelButtonLabel?:
|
|
11958
|
+
editComponentSubmitButtonLabel?: I18NProperty74;
|
|
11959
|
+
editComponentCancelButtonLabel?: I18NProperty75;
|
|
10975
11960
|
breadcrumbs?: CustomContentBreadcrumbs;
|
|
10976
11961
|
[k: string]: unknown;
|
|
10977
11962
|
}
|
|
@@ -10994,7 +11979,7 @@ export interface CustomContentUISupport {
|
|
|
10994
11979
|
*
|
|
10995
11980
|
*
|
|
10996
11981
|
*/
|
|
10997
|
-
export interface
|
|
11982
|
+
export interface I18NProperty73 {
|
|
10998
11983
|
value: string;
|
|
10999
11984
|
i18n?: string;
|
|
11000
11985
|
[k: string]: unknown;
|
|
@@ -11194,7 +12179,7 @@ export interface ModuleReference2 {
|
|
|
11194
12179
|
*
|
|
11195
12180
|
*
|
|
11196
12181
|
*/
|
|
11197
|
-
export interface
|
|
12182
|
+
export interface I18NProperty74 {
|
|
11198
12183
|
value: string;
|
|
11199
12184
|
i18n?: string;
|
|
11200
12185
|
[k: string]: unknown;
|
|
@@ -11218,7 +12203,7 @@ export interface I18NProperty72 {
|
|
|
11218
12203
|
*
|
|
11219
12204
|
*
|
|
11220
12205
|
*/
|
|
11221
|
-
export interface
|
|
12206
|
+
export interface I18NProperty75 {
|
|
11222
12207
|
value: string;
|
|
11223
12208
|
i18n?: string;
|
|
11224
12209
|
[k: string]: unknown;
|
|
@@ -11327,7 +12312,7 @@ export interface CustomContentRelation {
|
|
|
11327
12312
|
*
|
|
11328
12313
|
*
|
|
11329
12314
|
*/
|
|
11330
|
-
export interface
|
|
12315
|
+
export interface I18NProperty76 {
|
|
11331
12316
|
value: string;
|
|
11332
12317
|
i18n?: string;
|
|
11333
12318
|
[k: string]: unknown;
|
|
@@ -11351,7 +12336,7 @@ export interface I18NProperty74 {
|
|
|
11351
12336
|
*
|
|
11352
12337
|
*
|
|
11353
12338
|
*/
|
|
11354
|
-
export interface
|
|
12339
|
+
export interface I18NProperty77 {
|
|
11355
12340
|
value: string;
|
|
11356
12341
|
i18n?: string;
|
|
11357
12342
|
[k: string]: unknown;
|
|
@@ -11533,6 +12518,78 @@ export interface MacroParameterIndexing {
|
|
|
11533
12518
|
enabled?: boolean;
|
|
11534
12519
|
[k: string]: unknown;
|
|
11535
12520
|
}
|
|
12521
|
+
/**
|
|
12522
|
+
*
|
|
12523
|
+
*
|
|
12524
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
12525
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
12526
|
+
*
|
|
12527
|
+
* <h3>Example</h3>
|
|
12528
|
+
*
|
|
12529
|
+
*
|
|
12530
|
+
*
|
|
12531
|
+
*
|
|
12532
|
+
*
|
|
12533
|
+
* {
|
|
12534
|
+
* "value": "My text"
|
|
12535
|
+
* }
|
|
12536
|
+
*
|
|
12537
|
+
*
|
|
12538
|
+
*
|
|
12539
|
+
*/
|
|
12540
|
+
export interface I18NProperty78 {
|
|
12541
|
+
value: string;
|
|
12542
|
+
i18n?: string;
|
|
12543
|
+
[k: string]: unknown;
|
|
12544
|
+
}
|
|
12545
|
+
/**
|
|
12546
|
+
*
|
|
12547
|
+
*
|
|
12548
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
12549
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
12550
|
+
*
|
|
12551
|
+
* <h3>Example</h3>
|
|
12552
|
+
*
|
|
12553
|
+
*
|
|
12554
|
+
*
|
|
12555
|
+
*
|
|
12556
|
+
*
|
|
12557
|
+
* {
|
|
12558
|
+
* "value": "My text"
|
|
12559
|
+
* }
|
|
12560
|
+
*
|
|
12561
|
+
*
|
|
12562
|
+
*
|
|
12563
|
+
*/
|
|
12564
|
+
export interface I18NProperty79 {
|
|
12565
|
+
value: string;
|
|
12566
|
+
i18n?: string;
|
|
12567
|
+
[k: string]: unknown;
|
|
12568
|
+
}
|
|
12569
|
+
/**
|
|
12570
|
+
*
|
|
12571
|
+
*
|
|
12572
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
12573
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
12574
|
+
*
|
|
12575
|
+
* <h3>Example</h3>
|
|
12576
|
+
*
|
|
12577
|
+
*
|
|
12578
|
+
*
|
|
12579
|
+
*
|
|
12580
|
+
*
|
|
12581
|
+
* {
|
|
12582
|
+
* "value": "My text"
|
|
12583
|
+
* }
|
|
12584
|
+
*
|
|
12585
|
+
*
|
|
12586
|
+
*
|
|
12587
|
+
*/
|
|
12588
|
+
export interface I18NProperty80 {
|
|
12589
|
+
value: string;
|
|
12590
|
+
i18n?: string;
|
|
12591
|
+
[k: string]: unknown;
|
|
12592
|
+
}
|
|
11536
12593
|
/**
|
|
11537
12594
|
*
|
|
11538
12595
|
*
|
|
@@ -11591,8 +12648,8 @@ export interface MacroParameterIndexing {
|
|
|
11591
12648
|
*
|
|
11592
12649
|
*/
|
|
11593
12650
|
export interface MacroEditor {
|
|
11594
|
-
insertTitle?:
|
|
11595
|
-
editTitle?:
|
|
12651
|
+
insertTitle?: I18NProperty81;
|
|
12652
|
+
editTitle?: I18NProperty82;
|
|
11596
12653
|
width?: string;
|
|
11597
12654
|
cacheable?: boolean;
|
|
11598
12655
|
url: string;
|
|
@@ -11618,7 +12675,7 @@ export interface MacroEditor {
|
|
|
11618
12675
|
*
|
|
11619
12676
|
*
|
|
11620
12677
|
*/
|
|
11621
|
-
export interface
|
|
12678
|
+
export interface I18NProperty81 {
|
|
11622
12679
|
value: string;
|
|
11623
12680
|
i18n?: string;
|
|
11624
12681
|
[k: string]: unknown;
|
|
@@ -11642,7 +12699,7 @@ export interface I18NProperty76 {
|
|
|
11642
12699
|
*
|
|
11643
12700
|
*
|
|
11644
12701
|
*/
|
|
11645
|
-
export interface
|
|
12702
|
+
export interface I18NProperty82 {
|
|
11646
12703
|
value: string;
|
|
11647
12704
|
i18n?: string;
|
|
11648
12705
|
[k: string]: unknown;
|
|
@@ -11966,7 +13023,7 @@ export interface Icon17 {
|
|
|
11966
13023
|
*
|
|
11967
13024
|
*
|
|
11968
13025
|
*/
|
|
11969
|
-
export interface
|
|
13026
|
+
export interface I18NProperty83 {
|
|
11970
13027
|
value: string;
|
|
11971
13028
|
i18n?: string;
|
|
11972
13029
|
[k: string]: unknown;
|
|
@@ -12040,7 +13097,7 @@ export interface MacroPropertyPanel {
|
|
|
12040
13097
|
*
|
|
12041
13098
|
*/
|
|
12042
13099
|
export interface ButtonControl {
|
|
12043
|
-
label:
|
|
13100
|
+
label: I18NProperty84;
|
|
12044
13101
|
type: 'button' | 'BUTTON';
|
|
12045
13102
|
key: string;
|
|
12046
13103
|
[k: string]: unknown;
|
|
@@ -12064,7 +13121,7 @@ export interface ButtonControl {
|
|
|
12064
13121
|
*
|
|
12065
13122
|
*
|
|
12066
13123
|
*/
|
|
12067
|
-
export interface
|
|
13124
|
+
export interface I18NProperty84 {
|
|
12068
13125
|
value: string;
|
|
12069
13126
|
i18n?: string;
|
|
12070
13127
|
[k: string]: unknown;
|
|
@@ -12139,7 +13196,7 @@ export interface ToggleGroup {
|
|
|
12139
13196
|
*/
|
|
12140
13197
|
export interface ToggleButtonControl {
|
|
12141
13198
|
macroParameterValue: string;
|
|
12142
|
-
label:
|
|
13199
|
+
label: I18NProperty85;
|
|
12143
13200
|
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
12144
13201
|
key: string;
|
|
12145
13202
|
[k: string]: unknown;
|
|
@@ -12163,7 +13220,7 @@ export interface ToggleButtonControl {
|
|
|
12163
13220
|
*
|
|
12164
13221
|
*
|
|
12165
13222
|
*/
|
|
12166
|
-
export interface
|
|
13223
|
+
export interface I18NProperty85 {
|
|
12167
13224
|
value: string;
|
|
12168
13225
|
i18n?: string;
|
|
12169
13226
|
[k: string]: unknown;
|
|
@@ -12232,7 +13289,7 @@ export interface ControlGroup {
|
|
|
12232
13289
|
*
|
|
12233
13290
|
*/
|
|
12234
13291
|
export interface ButtonControl1 {
|
|
12235
|
-
label:
|
|
13292
|
+
label: I18NProperty86;
|
|
12236
13293
|
type: 'button' | 'BUTTON';
|
|
12237
13294
|
key: string;
|
|
12238
13295
|
[k: string]: unknown;
|
|
@@ -12256,7 +13313,7 @@ export interface ButtonControl1 {
|
|
|
12256
13313
|
*
|
|
12257
13314
|
*
|
|
12258
13315
|
*/
|
|
12259
|
-
export interface
|
|
13316
|
+
export interface I18NProperty86 {
|
|
12260
13317
|
value: string;
|
|
12261
13318
|
i18n?: string;
|
|
12262
13319
|
[k: string]: unknown;
|
|
@@ -32841,7 +33898,7 @@ export interface ImagePlaceholder {
|
|
|
32841
33898
|
*
|
|
32842
33899
|
*
|
|
32843
33900
|
*/
|
|
32844
|
-
export interface
|
|
33901
|
+
export interface I18NProperty87 {
|
|
32845
33902
|
value: string;
|
|
32846
33903
|
i18n?: string;
|
|
32847
33904
|
[k: string]: unknown;
|
|
@@ -32916,9 +33973,9 @@ export interface MacroInputParameter {
|
|
|
32916
33973
|
indexing?: MacroParameterIndexing1;
|
|
32917
33974
|
defaultValue?: string;
|
|
32918
33975
|
values?: string[];
|
|
32919
|
-
name:
|
|
33976
|
+
name: I18NProperty88;
|
|
32920
33977
|
multiple?: boolean;
|
|
32921
|
-
description?:
|
|
33978
|
+
description?: I18NProperty89;
|
|
32922
33979
|
type:
|
|
32923
33980
|
| 'attachment'
|
|
32924
33981
|
| 'ATTACHMENT'
|
|
@@ -32993,7 +34050,7 @@ export interface MacroParameterIndexing1 {
|
|
|
32993
34050
|
*
|
|
32994
34051
|
*
|
|
32995
34052
|
*/
|
|
32996
|
-
export interface
|
|
34053
|
+
export interface I18NProperty88 {
|
|
32997
34054
|
value: string;
|
|
32998
34055
|
i18n?: string;
|
|
32999
34056
|
[k: string]: unknown;
|
|
@@ -33017,7 +34074,7 @@ export interface I18NProperty83 {
|
|
|
33017
34074
|
*
|
|
33018
34075
|
*
|
|
33019
34076
|
*/
|
|
33020
|
-
export interface
|
|
34077
|
+
export interface I18NProperty89 {
|
|
33021
34078
|
value: string;
|
|
33022
34079
|
i18n?: string;
|
|
33023
34080
|
[k: string]: unknown;
|
|
@@ -33080,8 +34137,8 @@ export interface I18NProperty84 {
|
|
|
33080
34137
|
*
|
|
33081
34138
|
*/
|
|
33082
34139
|
export interface MacroEditor1 {
|
|
33083
|
-
insertTitle?:
|
|
33084
|
-
editTitle?:
|
|
34140
|
+
insertTitle?: I18NProperty90;
|
|
34141
|
+
editTitle?: I18NProperty91;
|
|
33085
34142
|
width?: string;
|
|
33086
34143
|
cacheable?: boolean;
|
|
33087
34144
|
url: string;
|
|
@@ -33107,7 +34164,7 @@ export interface MacroEditor1 {
|
|
|
33107
34164
|
*
|
|
33108
34165
|
*
|
|
33109
34166
|
*/
|
|
33110
|
-
export interface
|
|
34167
|
+
export interface I18NProperty90 {
|
|
33111
34168
|
value: string;
|
|
33112
34169
|
i18n?: string;
|
|
33113
34170
|
[k: string]: unknown;
|
|
@@ -33131,7 +34188,7 @@ export interface I18NProperty85 {
|
|
|
33131
34188
|
*
|
|
33132
34189
|
*
|
|
33133
34190
|
*/
|
|
33134
|
-
export interface
|
|
34191
|
+
export interface I18NProperty91 {
|
|
33135
34192
|
value: string;
|
|
33136
34193
|
i18n?: string;
|
|
33137
34194
|
[k: string]: unknown;
|
|
@@ -33211,7 +34268,7 @@ export interface Icon18 {
|
|
|
33211
34268
|
*
|
|
33212
34269
|
*
|
|
33213
34270
|
*/
|
|
33214
|
-
export interface
|
|
34271
|
+
export interface I18NProperty92 {
|
|
33215
34272
|
value: string;
|
|
33216
34273
|
i18n?: string;
|
|
33217
34274
|
[k: string]: unknown;
|
|
@@ -33332,7 +34389,7 @@ export interface ToggleGroup1 {
|
|
|
33332
34389
|
*/
|
|
33333
34390
|
export interface ToggleButtonControl1 {
|
|
33334
34391
|
macroParameterValue: string;
|
|
33335
|
-
label:
|
|
34392
|
+
label: I18NProperty93;
|
|
33336
34393
|
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
33337
34394
|
key: string;
|
|
33338
34395
|
[k: string]: unknown;
|
|
@@ -33356,7 +34413,7 @@ export interface ToggleButtonControl1 {
|
|
|
33356
34413
|
*
|
|
33357
34414
|
*
|
|
33358
34415
|
*/
|
|
33359
|
-
export interface
|
|
34416
|
+
export interface I18NProperty93 {
|
|
33360
34417
|
value: string;
|
|
33361
34418
|
i18n?: string;
|
|
33362
34419
|
[k: string]: unknown;
|
|
@@ -33384,7 +34441,7 @@ export interface I18NProperty88 {
|
|
|
33384
34441
|
*
|
|
33385
34442
|
*/
|
|
33386
34443
|
export interface ButtonControl2 {
|
|
33387
|
-
label:
|
|
34444
|
+
label: I18NProperty94;
|
|
33388
34445
|
type: 'button' | 'BUTTON';
|
|
33389
34446
|
key: string;
|
|
33390
34447
|
[k: string]: unknown;
|
|
@@ -33408,7 +34465,7 @@ export interface ButtonControl2 {
|
|
|
33408
34465
|
*
|
|
33409
34466
|
*
|
|
33410
34467
|
*/
|
|
33411
|
-
export interface
|
|
34468
|
+
export interface I18NProperty94 {
|
|
33412
34469
|
value: string;
|
|
33413
34470
|
i18n?: string;
|
|
33414
34471
|
[k: string]: unknown;
|
|
@@ -33505,7 +34562,7 @@ export interface ControlGroup1 {
|
|
|
33505
34562
|
*
|
|
33506
34563
|
*/
|
|
33507
34564
|
export interface ButtonControl3 {
|
|
33508
|
-
label:
|
|
34565
|
+
label: I18NProperty95;
|
|
33509
34566
|
type: 'button' | 'BUTTON';
|
|
33510
34567
|
key: string;
|
|
33511
34568
|
[k: string]: unknown;
|
|
@@ -33529,7 +34586,7 @@ export interface ButtonControl3 {
|
|
|
33529
34586
|
*
|
|
33530
34587
|
*
|
|
33531
34588
|
*/
|
|
33532
|
-
export interface
|
|
34589
|
+
export interface I18NProperty95 {
|
|
33533
34590
|
value: string;
|
|
33534
34591
|
i18n?: string;
|
|
33535
34592
|
[k: string]: unknown;
|
|
@@ -54059,7 +55116,7 @@ export interface ImagePlaceholder1 {
|
|
|
54059
55116
|
*
|
|
54060
55117
|
*
|
|
54061
55118
|
*/
|
|
54062
|
-
export interface
|
|
55119
|
+
export interface I18NProperty96 {
|
|
54063
55120
|
value: string;
|
|
54064
55121
|
i18n?: string;
|
|
54065
55122
|
[k: string]: unknown;
|
|
@@ -54134,9 +55191,9 @@ export interface MacroInputParameter1 {
|
|
|
54134
55191
|
indexing?: MacroParameterIndexing2;
|
|
54135
55192
|
defaultValue?: string;
|
|
54136
55193
|
values?: string[];
|
|
54137
|
-
name:
|
|
55194
|
+
name: I18NProperty97;
|
|
54138
55195
|
multiple?: boolean;
|
|
54139
|
-
description?:
|
|
55196
|
+
description?: I18NProperty98;
|
|
54140
55197
|
type:
|
|
54141
55198
|
| 'attachment'
|
|
54142
55199
|
| 'ATTACHMENT'
|
|
@@ -54211,7 +55268,7 @@ export interface MacroParameterIndexing2 {
|
|
|
54211
55268
|
*
|
|
54212
55269
|
*
|
|
54213
55270
|
*/
|
|
54214
|
-
export interface
|
|
55271
|
+
export interface I18NProperty97 {
|
|
54215
55272
|
value: string;
|
|
54216
55273
|
i18n?: string;
|
|
54217
55274
|
[k: string]: unknown;
|
|
@@ -54235,7 +55292,7 @@ export interface I18NProperty92 {
|
|
|
54235
55292
|
*
|
|
54236
55293
|
*
|
|
54237
55294
|
*/
|
|
54238
|
-
export interface
|
|
55295
|
+
export interface I18NProperty98 {
|
|
54239
55296
|
value: string;
|
|
54240
55297
|
i18n?: string;
|
|
54241
55298
|
[k: string]: unknown;
|
|
@@ -54259,7 +55316,7 @@ export interface I18NProperty93 {
|
|
|
54259
55316
|
*
|
|
54260
55317
|
*
|
|
54261
55318
|
*/
|
|
54262
|
-
export interface
|
|
55319
|
+
export interface I18NProperty99 {
|
|
54263
55320
|
value: string;
|
|
54264
55321
|
i18n?: string;
|
|
54265
55322
|
[k: string]: unknown;
|
|
@@ -54311,7 +55368,7 @@ export interface Icon19 {
|
|
|
54311
55368
|
*
|
|
54312
55369
|
*
|
|
54313
55370
|
*/
|
|
54314
|
-
export interface
|
|
55371
|
+
export interface I18NProperty100 {
|
|
54315
55372
|
value: string;
|
|
54316
55373
|
i18n?: string;
|
|
54317
55374
|
[k: string]: unknown;
|
|
@@ -54382,8 +55439,8 @@ export interface I18NProperty95 {
|
|
|
54382
55439
|
*
|
|
54383
55440
|
*
|
|
54384
55441
|
*/
|
|
54385
|
-
export interface
|
|
54386
|
-
options?:
|
|
55442
|
+
export interface WebItemTarget3 {
|
|
55443
|
+
options?: InlineDialogOptions3 | DialogModuleOptions3 | DialogOptions5;
|
|
54387
55444
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
54388
55445
|
[k: string]: unknown;
|
|
54389
55446
|
}
|
|
@@ -54412,7 +55469,7 @@ export interface WebItemTarget2 {
|
|
|
54412
55469
|
*
|
|
54413
55470
|
*
|
|
54414
55471
|
*/
|
|
54415
|
-
export interface
|
|
55472
|
+
export interface InlineDialogOptions3 {
|
|
54416
55473
|
offsetX?: string;
|
|
54417
55474
|
offsetY?: string;
|
|
54418
55475
|
width?: string;
|
|
@@ -54447,7 +55504,7 @@ export interface InlineDialogOptions2 {
|
|
|
54447
55504
|
*
|
|
54448
55505
|
*
|
|
54449
55506
|
*/
|
|
54450
|
-
export interface
|
|
55507
|
+
export interface DialogModuleOptions3 {
|
|
54451
55508
|
key: string;
|
|
54452
55509
|
[k: string]: unknown;
|
|
54453
55510
|
}
|
|
@@ -54505,7 +55562,7 @@ export interface DialogModuleOptions2 {
|
|
|
54505
55562
|
*
|
|
54506
55563
|
*
|
|
54507
55564
|
*/
|
|
54508
|
-
export interface
|
|
55565
|
+
export interface DialogOptions5 {
|
|
54509
55566
|
size?:
|
|
54510
55567
|
| 'small'
|
|
54511
55568
|
| 'SMALL'
|
|
@@ -54521,7 +55578,7 @@ export interface DialogOptions4 {
|
|
|
54521
55578
|
| 'MAXIMUM';
|
|
54522
55579
|
chrome?: boolean;
|
|
54523
55580
|
width?: string;
|
|
54524
|
-
header?:
|
|
55581
|
+
header?: I18NProperty101;
|
|
54525
55582
|
height?: string;
|
|
54526
55583
|
[k: string]: unknown;
|
|
54527
55584
|
}
|
|
@@ -54544,7 +55601,7 @@ export interface DialogOptions4 {
|
|
|
54544
55601
|
*
|
|
54545
55602
|
*
|
|
54546
55603
|
*/
|
|
54547
|
-
export interface
|
|
55604
|
+
export interface I18NProperty101 {
|
|
54548
55605
|
value: string;
|
|
54549
55606
|
i18n?: string;
|
|
54550
55607
|
[k: string]: unknown;
|
|
@@ -55277,7 +56334,7 @@ export interface Icon20 {
|
|
|
55277
56334
|
*
|
|
55278
56335
|
*
|
|
55279
56336
|
*/
|
|
55280
|
-
export interface
|
|
56337
|
+
export interface I18NProperty102 {
|
|
55281
56338
|
value: string;
|
|
55282
56339
|
i18n?: string;
|
|
55283
56340
|
[k: string]: unknown;
|
|
@@ -55301,7 +56358,7 @@ export interface I18NProperty97 {
|
|
|
55301
56358
|
*
|
|
55302
56359
|
*
|
|
55303
56360
|
*/
|
|
55304
|
-
export interface
|
|
56361
|
+
export interface I18NProperty103 {
|
|
55305
56362
|
value: string;
|
|
55306
56363
|
i18n?: string;
|
|
55307
56364
|
[k: string]: unknown;
|