@forge/manifest 10.1.1-next.1 → 10.1.1-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/out/schema/manifest-schema.json +379 -0
- package/out/schema/manifest.d.ts +194 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 10.1.1-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 13e5daa: Update manifest definitions
|
|
8
|
+
|
|
9
|
+
## 10.1.1-next.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 8e9a8b5: Got rid of FG
|
|
14
|
+
- 426dfe1: Update manifest definitions
|
|
15
|
+
|
|
3
16
|
## 10.1.1-next.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -5095,6 +5095,11 @@
|
|
|
5095
5095
|
"type": "string",
|
|
5096
5096
|
"default": "default"
|
|
5097
5097
|
},
|
|
5098
|
+
"migratedFromConnect": {
|
|
5099
|
+
"type": "boolean",
|
|
5100
|
+
"default": false,
|
|
5101
|
+
"description": "A flag indicating whether this custom content module was migrated from a Connect app."
|
|
5102
|
+
},
|
|
5098
5103
|
"key": {
|
|
5099
5104
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
5100
5105
|
}
|
|
@@ -27102,6 +27107,380 @@
|
|
|
27102
27107
|
}
|
|
27103
27108
|
},
|
|
27104
27109
|
"minItems": 1
|
|
27110
|
+
},
|
|
27111
|
+
"devops:buildInfoProvider": {
|
|
27112
|
+
"type": "array",
|
|
27113
|
+
"items": {
|
|
27114
|
+
"type": "object",
|
|
27115
|
+
"properties": {
|
|
27116
|
+
"name": {
|
|
27117
|
+
"type": "object",
|
|
27118
|
+
"properties": {
|
|
27119
|
+
"value": {
|
|
27120
|
+
"type": "string",
|
|
27121
|
+
"minLength": 1,
|
|
27122
|
+
"maxLength": 255
|
|
27123
|
+
}
|
|
27124
|
+
},
|
|
27125
|
+
"required": [
|
|
27126
|
+
"value"
|
|
27127
|
+
]
|
|
27128
|
+
},
|
|
27129
|
+
"homeUrl": {
|
|
27130
|
+
"type": "string",
|
|
27131
|
+
"minLength": 1,
|
|
27132
|
+
"maxLength": 255,
|
|
27133
|
+
"pattern": "^(http|https):\\/\\/.*$"
|
|
27134
|
+
},
|
|
27135
|
+
"logoUrl": {
|
|
27136
|
+
"type": "string",
|
|
27137
|
+
"minLength": 1,
|
|
27138
|
+
"maxLength": 255,
|
|
27139
|
+
"pattern": "^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\\\\\\\?([^#]*))?(#(.*))?"
|
|
27140
|
+
},
|
|
27141
|
+
"documentationUrl": {
|
|
27142
|
+
"type": "string",
|
|
27143
|
+
"minLength": 1,
|
|
27144
|
+
"maxLength": 255,
|
|
27145
|
+
"pattern": "^(http|https):\\/\\/.*$"
|
|
27146
|
+
},
|
|
27147
|
+
"function": {
|
|
27148
|
+
"type": "string",
|
|
27149
|
+
"minLength": 1,
|
|
27150
|
+
"maxLength": 255,
|
|
27151
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
27152
|
+
},
|
|
27153
|
+
"key": {
|
|
27154
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
27155
|
+
}
|
|
27156
|
+
},
|
|
27157
|
+
"required": [
|
|
27158
|
+
"name",
|
|
27159
|
+
"homeUrl",
|
|
27160
|
+
"key"
|
|
27161
|
+
],
|
|
27162
|
+
"not": {
|
|
27163
|
+
"required": [
|
|
27164
|
+
"unlicensedAccess"
|
|
27165
|
+
]
|
|
27166
|
+
}
|
|
27167
|
+
},
|
|
27168
|
+
"minItems": 1
|
|
27169
|
+
},
|
|
27170
|
+
"devops:deploymentInfoProvider": {
|
|
27171
|
+
"type": "array",
|
|
27172
|
+
"items": {
|
|
27173
|
+
"type": "object",
|
|
27174
|
+
"properties": {
|
|
27175
|
+
"name": {
|
|
27176
|
+
"type": "object",
|
|
27177
|
+
"properties": {
|
|
27178
|
+
"value": {
|
|
27179
|
+
"type": "string",
|
|
27180
|
+
"minLength": 1,
|
|
27181
|
+
"maxLength": 255
|
|
27182
|
+
}
|
|
27183
|
+
},
|
|
27184
|
+
"required": [
|
|
27185
|
+
"value"
|
|
27186
|
+
]
|
|
27187
|
+
},
|
|
27188
|
+
"homeUrl": {
|
|
27189
|
+
"type": "string",
|
|
27190
|
+
"minLength": 1,
|
|
27191
|
+
"maxLength": 255,
|
|
27192
|
+
"pattern": "^(http|https):\\/\\/.*$"
|
|
27193
|
+
},
|
|
27194
|
+
"logoUrl": {
|
|
27195
|
+
"type": "string",
|
|
27196
|
+
"minLength": 1,
|
|
27197
|
+
"maxLength": 255,
|
|
27198
|
+
"pattern": "^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\\\\\\\?([^#]*))?(#(.*))?"
|
|
27199
|
+
},
|
|
27200
|
+
"documentationUrl": {
|
|
27201
|
+
"type": "string",
|
|
27202
|
+
"minLength": 1,
|
|
27203
|
+
"maxLength": 255,
|
|
27204
|
+
"pattern": "^(http|https):\\/\\/.*$"
|
|
27205
|
+
},
|
|
27206
|
+
"actions": {
|
|
27207
|
+
"type": "object",
|
|
27208
|
+
"properties": {
|
|
27209
|
+
"listDeployments": {
|
|
27210
|
+
"type": "object",
|
|
27211
|
+
"properties": {
|
|
27212
|
+
"urlTemplate": {
|
|
27213
|
+
"type": "string",
|
|
27214
|
+
"minLength": 1,
|
|
27215
|
+
"maxLength": 255,
|
|
27216
|
+
"pattern": "^(http|https):\\/\\/.*$"
|
|
27217
|
+
}
|
|
27218
|
+
},
|
|
27219
|
+
"required": [
|
|
27220
|
+
"urlTemplate"
|
|
27221
|
+
]
|
|
27222
|
+
}
|
|
27223
|
+
}
|
|
27224
|
+
},
|
|
27225
|
+
"function": {
|
|
27226
|
+
"type": "string",
|
|
27227
|
+
"minLength": 1,
|
|
27228
|
+
"maxLength": 255,
|
|
27229
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
27230
|
+
},
|
|
27231
|
+
"key": {
|
|
27232
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
27233
|
+
}
|
|
27234
|
+
},
|
|
27235
|
+
"required": [
|
|
27236
|
+
"name",
|
|
27237
|
+
"homeUrl",
|
|
27238
|
+
"key"
|
|
27239
|
+
],
|
|
27240
|
+
"not": {
|
|
27241
|
+
"required": [
|
|
27242
|
+
"unlicensedAccess"
|
|
27243
|
+
]
|
|
27244
|
+
}
|
|
27245
|
+
},
|
|
27246
|
+
"minItems": 1
|
|
27247
|
+
},
|
|
27248
|
+
"devops:featureFlagInfoProvider": {
|
|
27249
|
+
"type": "array",
|
|
27250
|
+
"items": {
|
|
27251
|
+
"type": "object",
|
|
27252
|
+
"properties": {
|
|
27253
|
+
"name": {
|
|
27254
|
+
"type": "object",
|
|
27255
|
+
"properties": {
|
|
27256
|
+
"value": {
|
|
27257
|
+
"type": "string",
|
|
27258
|
+
"minLength": 1,
|
|
27259
|
+
"maxLength": 255
|
|
27260
|
+
}
|
|
27261
|
+
},
|
|
27262
|
+
"required": [
|
|
27263
|
+
"value"
|
|
27264
|
+
]
|
|
27265
|
+
},
|
|
27266
|
+
"homeUrl": {
|
|
27267
|
+
"type": "string",
|
|
27268
|
+
"minLength": 1,
|
|
27269
|
+
"maxLength": 255,
|
|
27270
|
+
"pattern": "^(http|https):\\/\\/.*$"
|
|
27271
|
+
},
|
|
27272
|
+
"logoUrl": {
|
|
27273
|
+
"type": "string",
|
|
27274
|
+
"minLength": 1,
|
|
27275
|
+
"maxLength": 255,
|
|
27276
|
+
"pattern": "^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\\\\\\\?([^#]*))?(#(.*))?"
|
|
27277
|
+
},
|
|
27278
|
+
"documentationUrl": {
|
|
27279
|
+
"type": "string",
|
|
27280
|
+
"minLength": 1,
|
|
27281
|
+
"maxLength": 255,
|
|
27282
|
+
"pattern": "^(http|https):\\/\\/.*$"
|
|
27283
|
+
},
|
|
27284
|
+
"actions": {
|
|
27285
|
+
"type": "object",
|
|
27286
|
+
"properties": {
|
|
27287
|
+
"createFlag": {
|
|
27288
|
+
"type": "object",
|
|
27289
|
+
"properties": {
|
|
27290
|
+
"urlTemplate": {
|
|
27291
|
+
"type": "string",
|
|
27292
|
+
"minLength": 1,
|
|
27293
|
+
"maxLength": 255,
|
|
27294
|
+
"pattern": "^(http|https):\\/\\/.*$"
|
|
27295
|
+
}
|
|
27296
|
+
},
|
|
27297
|
+
"required": [
|
|
27298
|
+
"urlTemplate"
|
|
27299
|
+
]
|
|
27300
|
+
},
|
|
27301
|
+
"linkFlag": {
|
|
27302
|
+
"type": "object",
|
|
27303
|
+
"properties": {
|
|
27304
|
+
"urlTemplate": {
|
|
27305
|
+
"type": "string",
|
|
27306
|
+
"minLength": 1,
|
|
27307
|
+
"maxLength": 255,
|
|
27308
|
+
"pattern": "^(http|https):\\/\\/.*$"
|
|
27309
|
+
}
|
|
27310
|
+
},
|
|
27311
|
+
"required": [
|
|
27312
|
+
"urlTemplate"
|
|
27313
|
+
]
|
|
27314
|
+
},
|
|
27315
|
+
"listFlag": {
|
|
27316
|
+
"type": "object",
|
|
27317
|
+
"properties": {
|
|
27318
|
+
"urlTemplate": {
|
|
27319
|
+
"type": "string",
|
|
27320
|
+
"minLength": 1,
|
|
27321
|
+
"maxLength": 255,
|
|
27322
|
+
"pattern": "^(http|https):\\/\\/.*$"
|
|
27323
|
+
}
|
|
27324
|
+
},
|
|
27325
|
+
"required": [
|
|
27326
|
+
"urlTemplate"
|
|
27327
|
+
]
|
|
27328
|
+
}
|
|
27329
|
+
}
|
|
27330
|
+
},
|
|
27331
|
+
"function": {
|
|
27332
|
+
"type": "string",
|
|
27333
|
+
"minLength": 1,
|
|
27334
|
+
"maxLength": 255,
|
|
27335
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
27336
|
+
},
|
|
27337
|
+
"key": {
|
|
27338
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
27339
|
+
}
|
|
27340
|
+
},
|
|
27341
|
+
"required": [
|
|
27342
|
+
"name",
|
|
27343
|
+
"homeUrl",
|
|
27344
|
+
"key"
|
|
27345
|
+
],
|
|
27346
|
+
"not": {
|
|
27347
|
+
"required": [
|
|
27348
|
+
"unlicensedAccess"
|
|
27349
|
+
]
|
|
27350
|
+
}
|
|
27351
|
+
},
|
|
27352
|
+
"minItems": 1
|
|
27353
|
+
},
|
|
27354
|
+
"devops:developmentInfoProvider": {
|
|
27355
|
+
"type": "array",
|
|
27356
|
+
"items": {
|
|
27357
|
+
"type": "object",
|
|
27358
|
+
"properties": {
|
|
27359
|
+
"name": {
|
|
27360
|
+
"type": "object",
|
|
27361
|
+
"properties": {
|
|
27362
|
+
"value": {
|
|
27363
|
+
"type": "string",
|
|
27364
|
+
"minLength": 1,
|
|
27365
|
+
"maxLength": 255
|
|
27366
|
+
}
|
|
27367
|
+
},
|
|
27368
|
+
"required": [
|
|
27369
|
+
"value"
|
|
27370
|
+
]
|
|
27371
|
+
},
|
|
27372
|
+
"homeUrl": {
|
|
27373
|
+
"type": "string",
|
|
27374
|
+
"minLength": 1,
|
|
27375
|
+
"maxLength": 255,
|
|
27376
|
+
"pattern": "^(http|https):\\/\\/.*$"
|
|
27377
|
+
},
|
|
27378
|
+
"logoUrl": {
|
|
27379
|
+
"type": "string",
|
|
27380
|
+
"minLength": 1,
|
|
27381
|
+
"maxLength": 255,
|
|
27382
|
+
"pattern": "^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\\\\\\\?([^#]*))?(#(.*))?"
|
|
27383
|
+
},
|
|
27384
|
+
"documentationUrl": {
|
|
27385
|
+
"type": "string",
|
|
27386
|
+
"minLength": 1,
|
|
27387
|
+
"maxLength": 255,
|
|
27388
|
+
"pattern": "^(http|https):\\/\\/.*$"
|
|
27389
|
+
},
|
|
27390
|
+
"function": {
|
|
27391
|
+
"type": "string",
|
|
27392
|
+
"minLength": 1,
|
|
27393
|
+
"maxLength": 255,
|
|
27394
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
27395
|
+
},
|
|
27396
|
+
"actions": {
|
|
27397
|
+
"type": "object",
|
|
27398
|
+
"properties": {
|
|
27399
|
+
"createBranch": {
|
|
27400
|
+
"type": "object",
|
|
27401
|
+
"properties": {
|
|
27402
|
+
"urlTemplate": {
|
|
27403
|
+
"type": "string",
|
|
27404
|
+
"minLength": 1,
|
|
27405
|
+
"maxLength": 255,
|
|
27406
|
+
"pattern": "^(http|https):\\/\\/.*$"
|
|
27407
|
+
}
|
|
27408
|
+
},
|
|
27409
|
+
"required": [
|
|
27410
|
+
"urlTemplate"
|
|
27411
|
+
]
|
|
27412
|
+
}
|
|
27413
|
+
}
|
|
27414
|
+
},
|
|
27415
|
+
"key": {
|
|
27416
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
27417
|
+
}
|
|
27418
|
+
},
|
|
27419
|
+
"required": [
|
|
27420
|
+
"name",
|
|
27421
|
+
"homeUrl",
|
|
27422
|
+
"key"
|
|
27423
|
+
],
|
|
27424
|
+
"not": {
|
|
27425
|
+
"required": [
|
|
27426
|
+
"unlicensedAccess"
|
|
27427
|
+
]
|
|
27428
|
+
}
|
|
27429
|
+
},
|
|
27430
|
+
"minItems": 1
|
|
27431
|
+
},
|
|
27432
|
+
"devops:remoteLinkInfoProvider": {
|
|
27433
|
+
"type": "array",
|
|
27434
|
+
"items": {
|
|
27435
|
+
"type": "object",
|
|
27436
|
+
"properties": {
|
|
27437
|
+
"name": {
|
|
27438
|
+
"type": "object",
|
|
27439
|
+
"properties": {
|
|
27440
|
+
"value": {
|
|
27441
|
+
"type": "string",
|
|
27442
|
+
"minLength": 1,
|
|
27443
|
+
"maxLength": 255
|
|
27444
|
+
}
|
|
27445
|
+
},
|
|
27446
|
+
"required": [
|
|
27447
|
+
"value"
|
|
27448
|
+
]
|
|
27449
|
+
},
|
|
27450
|
+
"homeUrl": {
|
|
27451
|
+
"type": "string",
|
|
27452
|
+
"minLength": 1,
|
|
27453
|
+
"maxLength": 255,
|
|
27454
|
+
"pattern": "^(http|https):\\/\\/.*$"
|
|
27455
|
+
},
|
|
27456
|
+
"logoUrl": {
|
|
27457
|
+
"type": "string",
|
|
27458
|
+
"minLength": 1,
|
|
27459
|
+
"maxLength": 255,
|
|
27460
|
+
"pattern": "^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\\\\\\\?([^#]*))?(#(.*))?"
|
|
27461
|
+
},
|
|
27462
|
+
"documentationUrl": {
|
|
27463
|
+
"type": "string",
|
|
27464
|
+
"minLength": 1,
|
|
27465
|
+
"maxLength": 255,
|
|
27466
|
+
"pattern": "^(http|https):\\/\\/.*$"
|
|
27467
|
+
},
|
|
27468
|
+
"key": {
|
|
27469
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
27470
|
+
}
|
|
27471
|
+
},
|
|
27472
|
+
"required": [
|
|
27473
|
+
"name",
|
|
27474
|
+
"homeUrl",
|
|
27475
|
+
"key"
|
|
27476
|
+
],
|
|
27477
|
+
"not": {
|
|
27478
|
+
"required": [
|
|
27479
|
+
"unlicensedAccess"
|
|
27480
|
+
]
|
|
27481
|
+
}
|
|
27482
|
+
},
|
|
27483
|
+
"minItems": 1
|
|
27105
27484
|
}
|
|
27106
27485
|
},
|
|
27107
27486
|
"title": "ModuleSchema",
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -13524,6 +13524,10 @@ export interface Modules {
|
|
|
13524
13524
|
resource: string;
|
|
13525
13525
|
resourceUploadId?: string;
|
|
13526
13526
|
render?: 'native' | 'default';
|
|
13527
|
+
/**
|
|
13528
|
+
* A flag indicating whether this custom content module was migrated from a Connect app.
|
|
13529
|
+
*/
|
|
13530
|
+
migratedFromConnect?: boolean;
|
|
13527
13531
|
key: ModuleKeySchema;
|
|
13528
13532
|
}
|
|
13529
13533
|
),
|
|
@@ -13577,6 +13581,10 @@ export interface Modules {
|
|
|
13577
13581
|
resource: string;
|
|
13578
13582
|
resourceUploadId?: string;
|
|
13579
13583
|
render?: 'native' | 'default';
|
|
13584
|
+
/**
|
|
13585
|
+
* A flag indicating whether this custom content module was migrated from a Connect app.
|
|
13586
|
+
*/
|
|
13587
|
+
migratedFromConnect?: boolean;
|
|
13580
13588
|
key: ModuleKeySchema;
|
|
13581
13589
|
}
|
|
13582
13590
|
)[]
|
|
@@ -23373,6 +23381,192 @@ export interface Modules {
|
|
|
23373
23381
|
key: ModuleKeySchema;
|
|
23374
23382
|
}[]
|
|
23375
23383
|
];
|
|
23384
|
+
'devops:buildInfoProvider'?: [
|
|
23385
|
+
{
|
|
23386
|
+
name: {
|
|
23387
|
+
value: string;
|
|
23388
|
+
[k: string]: unknown;
|
|
23389
|
+
};
|
|
23390
|
+
homeUrl: string;
|
|
23391
|
+
logoUrl?: string;
|
|
23392
|
+
documentationUrl?: string;
|
|
23393
|
+
function?: string;
|
|
23394
|
+
key: ModuleKeySchema;
|
|
23395
|
+
[k: string]: unknown;
|
|
23396
|
+
},
|
|
23397
|
+
...{
|
|
23398
|
+
name: {
|
|
23399
|
+
value: string;
|
|
23400
|
+
[k: string]: unknown;
|
|
23401
|
+
};
|
|
23402
|
+
homeUrl: string;
|
|
23403
|
+
logoUrl?: string;
|
|
23404
|
+
documentationUrl?: string;
|
|
23405
|
+
function?: string;
|
|
23406
|
+
key: ModuleKeySchema;
|
|
23407
|
+
[k: string]: unknown;
|
|
23408
|
+
}[]
|
|
23409
|
+
];
|
|
23410
|
+
'devops:deploymentInfoProvider'?: [
|
|
23411
|
+
{
|
|
23412
|
+
name: {
|
|
23413
|
+
value: string;
|
|
23414
|
+
[k: string]: unknown;
|
|
23415
|
+
};
|
|
23416
|
+
homeUrl: string;
|
|
23417
|
+
logoUrl?: string;
|
|
23418
|
+
documentationUrl?: string;
|
|
23419
|
+
actions?: {
|
|
23420
|
+
listDeployments?: {
|
|
23421
|
+
urlTemplate: string;
|
|
23422
|
+
[k: string]: unknown;
|
|
23423
|
+
};
|
|
23424
|
+
[k: string]: unknown;
|
|
23425
|
+
};
|
|
23426
|
+
function?: string;
|
|
23427
|
+
key: ModuleKeySchema;
|
|
23428
|
+
[k: string]: unknown;
|
|
23429
|
+
},
|
|
23430
|
+
...{
|
|
23431
|
+
name: {
|
|
23432
|
+
value: string;
|
|
23433
|
+
[k: string]: unknown;
|
|
23434
|
+
};
|
|
23435
|
+
homeUrl: string;
|
|
23436
|
+
logoUrl?: string;
|
|
23437
|
+
documentationUrl?: string;
|
|
23438
|
+
actions?: {
|
|
23439
|
+
listDeployments?: {
|
|
23440
|
+
urlTemplate: string;
|
|
23441
|
+
[k: string]: unknown;
|
|
23442
|
+
};
|
|
23443
|
+
[k: string]: unknown;
|
|
23444
|
+
};
|
|
23445
|
+
function?: string;
|
|
23446
|
+
key: ModuleKeySchema;
|
|
23447
|
+
[k: string]: unknown;
|
|
23448
|
+
}[]
|
|
23449
|
+
];
|
|
23450
|
+
'devops:featureFlagInfoProvider'?: [
|
|
23451
|
+
{
|
|
23452
|
+
name: {
|
|
23453
|
+
value: string;
|
|
23454
|
+
[k: string]: unknown;
|
|
23455
|
+
};
|
|
23456
|
+
homeUrl: string;
|
|
23457
|
+
logoUrl?: string;
|
|
23458
|
+
documentationUrl?: string;
|
|
23459
|
+
actions?: {
|
|
23460
|
+
createFlag?: {
|
|
23461
|
+
urlTemplate: string;
|
|
23462
|
+
[k: string]: unknown;
|
|
23463
|
+
};
|
|
23464
|
+
linkFlag?: {
|
|
23465
|
+
urlTemplate: string;
|
|
23466
|
+
[k: string]: unknown;
|
|
23467
|
+
};
|
|
23468
|
+
listFlag?: {
|
|
23469
|
+
urlTemplate: string;
|
|
23470
|
+
[k: string]: unknown;
|
|
23471
|
+
};
|
|
23472
|
+
[k: string]: unknown;
|
|
23473
|
+
};
|
|
23474
|
+
function?: string;
|
|
23475
|
+
key: ModuleKeySchema;
|
|
23476
|
+
[k: string]: unknown;
|
|
23477
|
+
},
|
|
23478
|
+
...{
|
|
23479
|
+
name: {
|
|
23480
|
+
value: string;
|
|
23481
|
+
[k: string]: unknown;
|
|
23482
|
+
};
|
|
23483
|
+
homeUrl: string;
|
|
23484
|
+
logoUrl?: string;
|
|
23485
|
+
documentationUrl?: string;
|
|
23486
|
+
actions?: {
|
|
23487
|
+
createFlag?: {
|
|
23488
|
+
urlTemplate: string;
|
|
23489
|
+
[k: string]: unknown;
|
|
23490
|
+
};
|
|
23491
|
+
linkFlag?: {
|
|
23492
|
+
urlTemplate: string;
|
|
23493
|
+
[k: string]: unknown;
|
|
23494
|
+
};
|
|
23495
|
+
listFlag?: {
|
|
23496
|
+
urlTemplate: string;
|
|
23497
|
+
[k: string]: unknown;
|
|
23498
|
+
};
|
|
23499
|
+
[k: string]: unknown;
|
|
23500
|
+
};
|
|
23501
|
+
function?: string;
|
|
23502
|
+
key: ModuleKeySchema;
|
|
23503
|
+
[k: string]: unknown;
|
|
23504
|
+
}[]
|
|
23505
|
+
];
|
|
23506
|
+
'devops:developmentInfoProvider'?: [
|
|
23507
|
+
{
|
|
23508
|
+
name: {
|
|
23509
|
+
value: string;
|
|
23510
|
+
[k: string]: unknown;
|
|
23511
|
+
};
|
|
23512
|
+
homeUrl: string;
|
|
23513
|
+
logoUrl?: string;
|
|
23514
|
+
documentationUrl?: string;
|
|
23515
|
+
function?: string;
|
|
23516
|
+
actions?: {
|
|
23517
|
+
createBranch?: {
|
|
23518
|
+
urlTemplate: string;
|
|
23519
|
+
[k: string]: unknown;
|
|
23520
|
+
};
|
|
23521
|
+
[k: string]: unknown;
|
|
23522
|
+
};
|
|
23523
|
+
key: ModuleKeySchema;
|
|
23524
|
+
[k: string]: unknown;
|
|
23525
|
+
},
|
|
23526
|
+
...{
|
|
23527
|
+
name: {
|
|
23528
|
+
value: string;
|
|
23529
|
+
[k: string]: unknown;
|
|
23530
|
+
};
|
|
23531
|
+
homeUrl: string;
|
|
23532
|
+
logoUrl?: string;
|
|
23533
|
+
documentationUrl?: string;
|
|
23534
|
+
function?: string;
|
|
23535
|
+
actions?: {
|
|
23536
|
+
createBranch?: {
|
|
23537
|
+
urlTemplate: string;
|
|
23538
|
+
[k: string]: unknown;
|
|
23539
|
+
};
|
|
23540
|
+
[k: string]: unknown;
|
|
23541
|
+
};
|
|
23542
|
+
key: ModuleKeySchema;
|
|
23543
|
+
[k: string]: unknown;
|
|
23544
|
+
}[]
|
|
23545
|
+
];
|
|
23546
|
+
'devops:remoteLinkInfoProvider'?: [
|
|
23547
|
+
{
|
|
23548
|
+
name: {
|
|
23549
|
+
value: string;
|
|
23550
|
+
[k: string]: unknown;
|
|
23551
|
+
};
|
|
23552
|
+
homeUrl: string;
|
|
23553
|
+
logoUrl?: string;
|
|
23554
|
+
documentationUrl?: string;
|
|
23555
|
+
key: ModuleKeySchema;
|
|
23556
|
+
[k: string]: unknown;
|
|
23557
|
+
},
|
|
23558
|
+
...{
|
|
23559
|
+
name: {
|
|
23560
|
+
value: string;
|
|
23561
|
+
[k: string]: unknown;
|
|
23562
|
+
};
|
|
23563
|
+
homeUrl: string;
|
|
23564
|
+
logoUrl?: string;
|
|
23565
|
+
documentationUrl?: string;
|
|
23566
|
+
key: ModuleKeySchema;
|
|
23567
|
+
[k: string]: unknown;
|
|
23568
|
+
}[]
|
|
23569
|
+
];
|
|
23376
23570
|
[k: string]: unknown;
|
|
23377
23571
|
}
|
|
23378
23572
|
export interface RuntimeLayer {
|