@forge/manifest 10.5.1-next.0 → 10.6.0-next.2
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
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 10.6.0-next.2
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fa952eb: Add optional container tunnel manifest schema
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- eeaa160: Added manifest option for permission detection method
|
|
12
|
+
- a85376a: Add scopes for Confluence user and group events
|
|
13
|
+
- 5f384d1: Renaming csuik to uikit and removing jira-sprint-action csuik template
|
|
14
|
+
|
|
15
|
+
## 10.5.1-next.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 895d478: Updates Agent MD file with appropriate instructions
|
|
20
|
+
|
|
3
21
|
## 10.5.1-next.0
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -1261,6 +1261,50 @@
|
|
|
1261
1261
|
]
|
|
1262
1262
|
}
|
|
1263
1263
|
},
|
|
1264
|
+
{
|
|
1265
|
+
"productEvent": "avi:confluence:created:user",
|
|
1266
|
+
"oAuthScopes": {
|
|
1267
|
+
"beta": [
|
|
1268
|
+
"read:user:confluence"
|
|
1269
|
+
],
|
|
1270
|
+
"current": [
|
|
1271
|
+
"read:confluence-user"
|
|
1272
|
+
]
|
|
1273
|
+
}
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
"productEvent": "avi:confluence:deleted:user",
|
|
1277
|
+
"oAuthScopes": {
|
|
1278
|
+
"beta": [
|
|
1279
|
+
"read:user:confluence"
|
|
1280
|
+
],
|
|
1281
|
+
"current": [
|
|
1282
|
+
"read:confluence-user"
|
|
1283
|
+
]
|
|
1284
|
+
}
|
|
1285
|
+
},
|
|
1286
|
+
{
|
|
1287
|
+
"productEvent": "avi:confluence:created:group",
|
|
1288
|
+
"oAuthScopes": {
|
|
1289
|
+
"beta": [
|
|
1290
|
+
"read:group:confluence"
|
|
1291
|
+
],
|
|
1292
|
+
"current": [
|
|
1293
|
+
"read:confluence-groups"
|
|
1294
|
+
]
|
|
1295
|
+
}
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
"productEvent": "avi:confluence:deleted:group",
|
|
1299
|
+
"oAuthScopes": {
|
|
1300
|
+
"beta": [
|
|
1301
|
+
"read:group:confluence"
|
|
1302
|
+
],
|
|
1303
|
+
"current": [
|
|
1304
|
+
"read:confluence-groups"
|
|
1305
|
+
]
|
|
1306
|
+
}
|
|
1307
|
+
},
|
|
1264
1308
|
{
|
|
1265
1309
|
"productEvent": "avi:compass:created:component_link",
|
|
1266
1310
|
"oAuthScopes": {
|
|
@@ -27648,6 +27648,14 @@
|
|
|
27648
27648
|
"type": "object",
|
|
27649
27649
|
"title": "AppPermissionsSchema",
|
|
27650
27650
|
"properties": {
|
|
27651
|
+
"detection": {
|
|
27652
|
+
"description": "App permissions detection method",
|
|
27653
|
+
"title": "detection",
|
|
27654
|
+
"type": "string",
|
|
27655
|
+
"enum": [
|
|
27656
|
+
"app-check"
|
|
27657
|
+
]
|
|
27658
|
+
},
|
|
27651
27659
|
"configurable": {
|
|
27652
27660
|
"type": "object",
|
|
27653
27661
|
"additionalProperties": true,
|
|
@@ -28277,6 +28285,64 @@
|
|
|
28277
28285
|
}
|
|
28278
28286
|
}
|
|
28279
28287
|
},
|
|
28288
|
+
"ContainerTunnelSchema": {
|
|
28289
|
+
"type": "object",
|
|
28290
|
+
"required": [
|
|
28291
|
+
"docker"
|
|
28292
|
+
],
|
|
28293
|
+
"additionalProperties": false,
|
|
28294
|
+
"properties": {
|
|
28295
|
+
"docker": {
|
|
28296
|
+
"type": "object",
|
|
28297
|
+
"required": [
|
|
28298
|
+
"build",
|
|
28299
|
+
"image",
|
|
28300
|
+
"ports"
|
|
28301
|
+
],
|
|
28302
|
+
"additionalProperties": false,
|
|
28303
|
+
"properties": {
|
|
28304
|
+
"build": {
|
|
28305
|
+
"type": "object",
|
|
28306
|
+
"required": [
|
|
28307
|
+
"context",
|
|
28308
|
+
"dockerfile"
|
|
28309
|
+
],
|
|
28310
|
+
"additionalProperties": false,
|
|
28311
|
+
"properties": {
|
|
28312
|
+
"context": {
|
|
28313
|
+
"type": "string",
|
|
28314
|
+
"description": "Path to the build context directory. This is where docker will look for the Dockerfile and any other files referenced in the Dockerfile"
|
|
28315
|
+
},
|
|
28316
|
+
"dockerfile": {
|
|
28317
|
+
"type": "string",
|
|
28318
|
+
"description": "The name of the Dockerfile that should be used to build the image. This is relative to the context path"
|
|
28319
|
+
}
|
|
28320
|
+
}
|
|
28321
|
+
},
|
|
28322
|
+
"image": {
|
|
28323
|
+
"type": "string",
|
|
28324
|
+
"description": "The name of the image to build"
|
|
28325
|
+
},
|
|
28326
|
+
"ports": {
|
|
28327
|
+
"type": "array",
|
|
28328
|
+
"items": {
|
|
28329
|
+
"type": "string",
|
|
28330
|
+
"pattern": "^[0-9]+:[0-9]+$"
|
|
28331
|
+
},
|
|
28332
|
+
"description": "The port mappings for the container. Traffic directed to the host (left) port will be forwarded to the container (right) port"
|
|
28333
|
+
},
|
|
28334
|
+
"environment": {
|
|
28335
|
+
"type": "array",
|
|
28336
|
+
"items": {
|
|
28337
|
+
"type": "string",
|
|
28338
|
+
"pattern": "^[a-zA-Z_][a-zA-Z0-9_]*=.+$"
|
|
28339
|
+
},
|
|
28340
|
+
"description": "The custom environment variables available to the running processes in the container"
|
|
28341
|
+
}
|
|
28342
|
+
}
|
|
28343
|
+
}
|
|
28344
|
+
}
|
|
28345
|
+
},
|
|
28280
28346
|
"ServiceScalingSchema": {
|
|
28281
28347
|
"type": "object",
|
|
28282
28348
|
"additionalProperties": false,
|
|
@@ -28324,6 +28390,10 @@
|
|
|
28324
28390
|
"resources": {
|
|
28325
28391
|
"$ref": "#/definitions/ContainerResourcesSchema",
|
|
28326
28392
|
"title": "resources"
|
|
28393
|
+
},
|
|
28394
|
+
"tunnel": {
|
|
28395
|
+
"$ref": "#/definitions/ContainerTunnelSchema",
|
|
28396
|
+
"title": "ContainerTunnelConfig"
|
|
28327
28397
|
}
|
|
28328
28398
|
}
|
|
28329
28399
|
}
|
|
@@ -28369,7 +28439,7 @@
|
|
|
28369
28439
|
},
|
|
28370
28440
|
"tunnel": {
|
|
28371
28441
|
"$ref": "#/definitions/ServiceTunnelSchema",
|
|
28372
|
-
"title": "
|
|
28442
|
+
"title": "ServiceTunnelConfig"
|
|
28373
28443
|
}
|
|
28374
28444
|
}
|
|
28375
28445
|
}
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -706,6 +706,10 @@ export type ExtensionKey11 = string;
|
|
|
706
706
|
* The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
|
|
707
707
|
*/
|
|
708
708
|
export type ExtensionKey12 = string;
|
|
709
|
+
/**
|
|
710
|
+
* App permissions detection method
|
|
711
|
+
*/
|
|
712
|
+
export type Detection = 'app-check';
|
|
709
713
|
export type Scopes =
|
|
710
714
|
| string[]
|
|
711
715
|
| {
|
|
@@ -811,12 +815,13 @@ export type Containers = {
|
|
|
811
815
|
tag: string;
|
|
812
816
|
health: Health;
|
|
813
817
|
resources?: Resources1;
|
|
818
|
+
tunnel?: ContainerTunnelConfig;
|
|
814
819
|
}[];
|
|
815
820
|
export type Services = {
|
|
816
821
|
key: string;
|
|
817
822
|
containers: Containers;
|
|
818
823
|
scaling?: Scaling;
|
|
819
|
-
tunnel?:
|
|
824
|
+
tunnel?: ServiceTunnelConfig;
|
|
820
825
|
}[];
|
|
821
826
|
|
|
822
827
|
export interface ManifestSchema {
|
|
@@ -72759,6 +72764,7 @@ export interface FormProperty {
|
|
|
72759
72764
|
hideInEditView?: boolean;
|
|
72760
72765
|
}
|
|
72761
72766
|
export interface Permissions {
|
|
72767
|
+
detection?: Detection;
|
|
72762
72768
|
/**
|
|
72763
72769
|
* This property is not yet supported
|
|
72764
72770
|
*/
|
|
@@ -73161,6 +73167,32 @@ export interface Resources1 {
|
|
|
73161
73167
|
*/
|
|
73162
73168
|
memory?: number;
|
|
73163
73169
|
}
|
|
73170
|
+
export interface ContainerTunnelConfig {
|
|
73171
|
+
docker: {
|
|
73172
|
+
build: {
|
|
73173
|
+
/**
|
|
73174
|
+
* Path to the build context directory. This is where docker will look for the Dockerfile and any other files referenced in the Dockerfile
|
|
73175
|
+
*/
|
|
73176
|
+
context: string;
|
|
73177
|
+
/**
|
|
73178
|
+
* The name of the Dockerfile that should be used to build the image. This is relative to the context path
|
|
73179
|
+
*/
|
|
73180
|
+
dockerfile: string;
|
|
73181
|
+
};
|
|
73182
|
+
/**
|
|
73183
|
+
* The name of the image to build
|
|
73184
|
+
*/
|
|
73185
|
+
image: string;
|
|
73186
|
+
/**
|
|
73187
|
+
* The port mappings for the container. Traffic directed to the host (left) port will be forwarded to the container (right) port
|
|
73188
|
+
*/
|
|
73189
|
+
ports: string[];
|
|
73190
|
+
/**
|
|
73191
|
+
* The custom environment variables available to the running processes in the container
|
|
73192
|
+
*/
|
|
73193
|
+
environment?: string[];
|
|
73194
|
+
};
|
|
73195
|
+
}
|
|
73164
73196
|
export interface Scaling {
|
|
73165
73197
|
/**
|
|
73166
73198
|
* The minimum number of instances to run
|
|
@@ -73171,7 +73203,7 @@ export interface Scaling {
|
|
|
73171
73203
|
*/
|
|
73172
73204
|
max?: number;
|
|
73173
73205
|
}
|
|
73174
|
-
export interface
|
|
73206
|
+
export interface ServiceTunnelConfig {
|
|
73175
73207
|
/**
|
|
73176
73208
|
* The port of the service where tunnel requests should be sent
|
|
73177
73209
|
*/
|