@forge/manifest 12.0.0 → 12.1.0-experimental-1ee2de3
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 +91 -0
- package/out/index.d.ts +1 -1
- package/out/index.d.ts.map +1 -1
- package/out/processor/full-validation-processor.d.ts.map +1 -1
- package/out/processor/full-validation-processor.js +2 -0
- package/out/schema/display-conditions-schema.json +168 -13
- package/out/schema/manifest-schema.json +179 -28
- package/out/schema/manifest.d.ts +160 -22
- package/out/scopes/shipyard-scopes.json +1 -0
- package/out/text/errors.d.ts +2 -2
- package/out/text/errors.d.ts.map +1 -1
- package/out/text/errors.js +5 -3
- package/out/types/display-condition-types.d.ts +31 -1
- package/out/types/display-condition-types.d.ts.map +1 -1
- package/out/validators/permissions-validator.d.ts +1 -0
- package/out/validators/permissions-validator.d.ts.map +1 -1
- package/out/validators/permissions-validator.js +37 -22
- package/out/validators/remotes-is-configurable-validator.d.ts.map +1 -1
- package/out/validators/remotes-is-configurable-validator.js +7 -36
- package/out/validators/twg-preview-scopes-validator.d.ts +7 -0
- package/out/validators/twg-preview-scopes-validator.d.ts.map +1 -0
- package/out/validators/twg-preview-scopes-validator.js +32 -0
- package/package.json +1 -1
|
@@ -1900,6 +1900,18 @@
|
|
|
1900
1900
|
},
|
|
1901
1901
|
"description": "The LLM families to use."
|
|
1902
1902
|
},
|
|
1903
|
+
"modelDisplayNames": {
|
|
1904
|
+
"type": "array",
|
|
1905
|
+
"description": "Optional mapping of included models to corresponding display names.",
|
|
1906
|
+
"items": {
|
|
1907
|
+
"type": "object",
|
|
1908
|
+
"minProperties": 1,
|
|
1909
|
+
"maxProperties": 10,
|
|
1910
|
+
"additionalProperties": {
|
|
1911
|
+
"type": "string"
|
|
1912
|
+
}
|
|
1913
|
+
}
|
|
1914
|
+
},
|
|
1903
1915
|
"key": {
|
|
1904
1916
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
1905
1917
|
}
|
|
@@ -16759,6 +16771,9 @@
|
|
|
16759
16771
|
"maxLength": 255,
|
|
16760
16772
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
16761
16773
|
},
|
|
16774
|
+
"displayConditions": {
|
|
16775
|
+
"type": "object"
|
|
16776
|
+
},
|
|
16762
16777
|
"key": {
|
|
16763
16778
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
16764
16779
|
}
|
|
@@ -16869,6 +16884,9 @@
|
|
|
16869
16884
|
"type": "string",
|
|
16870
16885
|
"default": "default"
|
|
16871
16886
|
},
|
|
16887
|
+
"displayConditions": {
|
|
16888
|
+
"type": "object"
|
|
16889
|
+
},
|
|
16872
16890
|
"key": {
|
|
16873
16891
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
16874
16892
|
}
|
|
@@ -16951,6 +16969,9 @@
|
|
|
16951
16969
|
"maxLength": 255,
|
|
16952
16970
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
16953
16971
|
},
|
|
16972
|
+
"displayConditions": {
|
|
16973
|
+
"type": "object"
|
|
16974
|
+
},
|
|
16954
16975
|
"key": {
|
|
16955
16976
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
16956
16977
|
}
|
|
@@ -17061,6 +17082,9 @@
|
|
|
17061
17082
|
"type": "string",
|
|
17062
17083
|
"default": "default"
|
|
17063
17084
|
},
|
|
17085
|
+
"displayConditions": {
|
|
17086
|
+
"type": "object"
|
|
17087
|
+
},
|
|
17064
17088
|
"key": {
|
|
17065
17089
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
17066
17090
|
}
|
|
@@ -17325,6 +17349,9 @@
|
|
|
17325
17349
|
"maxLength": 255,
|
|
17326
17350
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
17327
17351
|
},
|
|
17352
|
+
"displayConditions": {
|
|
17353
|
+
"type": "object"
|
|
17354
|
+
},
|
|
17328
17355
|
"key": {
|
|
17329
17356
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
17330
17357
|
}
|
|
@@ -17417,6 +17444,9 @@
|
|
|
17417
17444
|
"type": "string",
|
|
17418
17445
|
"default": "default"
|
|
17419
17446
|
},
|
|
17447
|
+
"displayConditions": {
|
|
17448
|
+
"type": "object"
|
|
17449
|
+
},
|
|
17420
17450
|
"key": {
|
|
17421
17451
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
17422
17452
|
}
|
|
@@ -17470,6 +17500,9 @@
|
|
|
17470
17500
|
"maxLength": 255,
|
|
17471
17501
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
17472
17502
|
},
|
|
17503
|
+
"displayConditions": {
|
|
17504
|
+
"type": "object"
|
|
17505
|
+
},
|
|
17473
17506
|
"key": {
|
|
17474
17507
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
17475
17508
|
}
|
|
@@ -17562,6 +17595,9 @@
|
|
|
17562
17595
|
"type": "string",
|
|
17563
17596
|
"default": "default"
|
|
17564
17597
|
},
|
|
17598
|
+
"displayConditions": {
|
|
17599
|
+
"type": "object"
|
|
17600
|
+
},
|
|
17565
17601
|
"key": {
|
|
17566
17602
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
17567
17603
|
}
|
|
@@ -17615,6 +17651,9 @@
|
|
|
17615
17651
|
"maxLength": 255,
|
|
17616
17652
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
17617
17653
|
},
|
|
17654
|
+
"displayConditions": {
|
|
17655
|
+
"type": "object"
|
|
17656
|
+
},
|
|
17618
17657
|
"key": {
|
|
17619
17658
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
17620
17659
|
}
|
|
@@ -17707,6 +17746,9 @@
|
|
|
17707
17746
|
"type": "string",
|
|
17708
17747
|
"default": "default"
|
|
17709
17748
|
},
|
|
17749
|
+
"displayConditions": {
|
|
17750
|
+
"type": "object"
|
|
17751
|
+
},
|
|
17710
17752
|
"key": {
|
|
17711
17753
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
17712
17754
|
}
|
|
@@ -17778,6 +17820,9 @@
|
|
|
17778
17820
|
"maxLength": 255,
|
|
17779
17821
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
17780
17822
|
},
|
|
17823
|
+
"displayConditions": {
|
|
17824
|
+
"type": "object"
|
|
17825
|
+
},
|
|
17781
17826
|
"key": {
|
|
17782
17827
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
17783
17828
|
}
|
|
@@ -17899,6 +17944,9 @@
|
|
|
17899
17944
|
"type": "string",
|
|
17900
17945
|
"default": "default"
|
|
17901
17946
|
},
|
|
17947
|
+
"displayConditions": {
|
|
17948
|
+
"type": "object"
|
|
17949
|
+
},
|
|
17902
17950
|
"key": {
|
|
17903
17951
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
17904
17952
|
}
|
|
@@ -17952,8 +18000,7 @@
|
|
|
17952
18000
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
17953
18001
|
},
|
|
17954
18002
|
"displayConditions": {
|
|
17955
|
-
"type": "object"
|
|
17956
|
-
"properties": {}
|
|
18003
|
+
"type": "object"
|
|
17957
18004
|
},
|
|
17958
18005
|
"key": {
|
|
17959
18006
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
@@ -18055,8 +18102,7 @@
|
|
|
18055
18102
|
]
|
|
18056
18103
|
},
|
|
18057
18104
|
"displayConditions": {
|
|
18058
|
-
"type": "object"
|
|
18059
|
-
"properties": {}
|
|
18105
|
+
"type": "object"
|
|
18060
18106
|
},
|
|
18061
18107
|
"render": {
|
|
18062
18108
|
"enum": [
|
|
@@ -18123,6 +18169,9 @@
|
|
|
18123
18169
|
"maxLength": 255,
|
|
18124
18170
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
18125
18171
|
},
|
|
18172
|
+
"displayConditions": {
|
|
18173
|
+
"type": "object"
|
|
18174
|
+
},
|
|
18126
18175
|
"key": {
|
|
18127
18176
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
18128
18177
|
}
|
|
@@ -18230,6 +18279,9 @@
|
|
|
18230
18279
|
"type": "string",
|
|
18231
18280
|
"default": "default"
|
|
18232
18281
|
},
|
|
18282
|
+
"displayConditions": {
|
|
18283
|
+
"type": "object"
|
|
18284
|
+
},
|
|
18233
18285
|
"key": {
|
|
18234
18286
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
18235
18287
|
}
|
|
@@ -18316,6 +18368,9 @@
|
|
|
18316
18368
|
"maxLength": 255,
|
|
18317
18369
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
18318
18370
|
},
|
|
18371
|
+
"displayConditions": {
|
|
18372
|
+
"type": "object"
|
|
18373
|
+
},
|
|
18319
18374
|
"key": {
|
|
18320
18375
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
18321
18376
|
}
|
|
@@ -18437,6 +18492,9 @@
|
|
|
18437
18492
|
"type": "string",
|
|
18438
18493
|
"default": "default"
|
|
18439
18494
|
},
|
|
18495
|
+
"displayConditions": {
|
|
18496
|
+
"type": "object"
|
|
18497
|
+
},
|
|
18440
18498
|
"key": {
|
|
18441
18499
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
18442
18500
|
}
|
|
@@ -29329,20 +29387,6 @@
|
|
|
29329
29387
|
"app-managed"
|
|
29330
29388
|
]
|
|
29331
29389
|
},
|
|
29332
|
-
"configurable": {
|
|
29333
|
-
"type": "object",
|
|
29334
|
-
"additionalProperties": true,
|
|
29335
|
-
"description": "This property is not yet supported",
|
|
29336
|
-
"required": [
|
|
29337
|
-
"enabled"
|
|
29338
|
-
],
|
|
29339
|
-
"properties": {
|
|
29340
|
-
"enabled": {
|
|
29341
|
-
"type": "boolean",
|
|
29342
|
-
"description": "This property is not yet supported"
|
|
29343
|
-
}
|
|
29344
|
-
}
|
|
29345
|
-
},
|
|
29346
29390
|
"scopes": {
|
|
29347
29391
|
"title": "scopes",
|
|
29348
29392
|
"oneOf": [
|
|
@@ -29579,6 +29623,18 @@
|
|
|
29579
29623
|
"title": "styles",
|
|
29580
29624
|
"type": "array",
|
|
29581
29625
|
"minItems": 0
|
|
29626
|
+
},
|
|
29627
|
+
"configurable": {
|
|
29628
|
+
"type": "object",
|
|
29629
|
+
"additionalProperties": false,
|
|
29630
|
+
"required": [
|
|
29631
|
+
"enabled"
|
|
29632
|
+
],
|
|
29633
|
+
"properties": {
|
|
29634
|
+
"enabled": {
|
|
29635
|
+
"type": "boolean"
|
|
29636
|
+
}
|
|
29637
|
+
}
|
|
29582
29638
|
}
|
|
29583
29639
|
}
|
|
29584
29640
|
}
|
|
@@ -29732,6 +29788,7 @@
|
|
|
29732
29788
|
"configurable": {
|
|
29733
29789
|
"description": "A remote that an admin can configure",
|
|
29734
29790
|
"type": "object",
|
|
29791
|
+
"additionalProperties": false,
|
|
29735
29792
|
"properties": {
|
|
29736
29793
|
"name": {
|
|
29737
29794
|
"description": "The name that an admin will see when they're configuring the remote",
|
|
@@ -29741,10 +29798,6 @@
|
|
|
29741
29798
|
"description": "The description that an admin will see when they're configuring the remote",
|
|
29742
29799
|
"type": "string"
|
|
29743
29800
|
},
|
|
29744
|
-
"default": {
|
|
29745
|
-
"description": "The default value that will be used if the admin does not set a custom domain for this remote",
|
|
29746
|
-
"type": "string"
|
|
29747
|
-
},
|
|
29748
29801
|
"supportedPatterns": {
|
|
29749
29802
|
"description": "The domains that are supported for this remote, prefixed with a * wildcard. For example, `*.atlassian.net` would allow this remote to communicate with domains that matched this.",
|
|
29750
29803
|
"type": "array",
|
|
@@ -29753,7 +29806,11 @@
|
|
|
29753
29806
|
"type": "string"
|
|
29754
29807
|
}
|
|
29755
29808
|
}
|
|
29756
|
-
}
|
|
29809
|
+
},
|
|
29810
|
+
"required": [
|
|
29811
|
+
"name",
|
|
29812
|
+
"description"
|
|
29813
|
+
]
|
|
29757
29814
|
}
|
|
29758
29815
|
}
|
|
29759
29816
|
}
|
|
@@ -29944,17 +30001,29 @@
|
|
|
29944
30001
|
}
|
|
29945
30002
|
}
|
|
29946
30003
|
},
|
|
30004
|
+
"ContainerCpuResourceSchema": {
|
|
30005
|
+
"type": "string",
|
|
30006
|
+
"pattern": "^([0-9]+m|[0-9]+(\\.[0-9]+)?)$"
|
|
30007
|
+
},
|
|
30008
|
+
"ContainerMemoryResourceSchema": {
|
|
30009
|
+
"type": "string",
|
|
30010
|
+
"pattern": "^[0-9]+[GM]i$"
|
|
30011
|
+
},
|
|
29947
30012
|
"ContainerResourcesSchema": {
|
|
29948
30013
|
"type": "object",
|
|
29949
30014
|
"additionalProperties": false,
|
|
30015
|
+
"required": [
|
|
30016
|
+
"cpu",
|
|
30017
|
+
"memory"
|
|
30018
|
+
],
|
|
29950
30019
|
"properties": {
|
|
29951
30020
|
"cpu": {
|
|
29952
|
-
"
|
|
29953
|
-
"description": "The amount of CPU
|
|
30021
|
+
"$ref": "#/definitions/ContainerCpuResourceSchema",
|
|
30022
|
+
"description": "The reserved amount of CPU for the container"
|
|
29954
30023
|
},
|
|
29955
30024
|
"memory": {
|
|
29956
|
-
"
|
|
29957
|
-
"description": "The amount of memory
|
|
30025
|
+
"$ref": "#/definitions/ContainerMemoryResourceSchema",
|
|
30026
|
+
"description": "The reserved amount of memory for the container"
|
|
29958
30027
|
}
|
|
29959
30028
|
}
|
|
29960
30029
|
},
|
|
@@ -30006,6 +30075,87 @@
|
|
|
30006
30075
|
"pattern": "^[a-zA-Z_][a-zA-Z0-9_]*=.+$"
|
|
30007
30076
|
},
|
|
30008
30077
|
"description": "The custom environment variables available to the running processes in the container"
|
|
30078
|
+
},
|
|
30079
|
+
"working_dir": {
|
|
30080
|
+
"type": "string",
|
|
30081
|
+
"description": "The working directory for commands to run in. This will override the default WORKDIR specified in the Dockerfile"
|
|
30082
|
+
},
|
|
30083
|
+
"command": {
|
|
30084
|
+
"oneOf": [
|
|
30085
|
+
{
|
|
30086
|
+
"type": "string",
|
|
30087
|
+
"description": "The command to run in the container as a single string"
|
|
30088
|
+
},
|
|
30089
|
+
{
|
|
30090
|
+
"type": "array",
|
|
30091
|
+
"items": {
|
|
30092
|
+
"type": "string"
|
|
30093
|
+
},
|
|
30094
|
+
"description": "The command to run in the container as an array of strings"
|
|
30095
|
+
}
|
|
30096
|
+
],
|
|
30097
|
+
"description": "The command to run in the container. This will override the default CMD specified in the Dockerfile"
|
|
30098
|
+
},
|
|
30099
|
+
"develop": {
|
|
30100
|
+
"type": "object",
|
|
30101
|
+
"additionalProperties": false,
|
|
30102
|
+
"properties": {
|
|
30103
|
+
"watch": {
|
|
30104
|
+
"type": "array",
|
|
30105
|
+
"items": {
|
|
30106
|
+
"type": "object",
|
|
30107
|
+
"required": [
|
|
30108
|
+
"path",
|
|
30109
|
+
"action"
|
|
30110
|
+
],
|
|
30111
|
+
"additionalProperties": false,
|
|
30112
|
+
"properties": {
|
|
30113
|
+
"path": {
|
|
30114
|
+
"type": "string",
|
|
30115
|
+
"description": "The path to source code (relative to the project directory) to monitor for changes"
|
|
30116
|
+
},
|
|
30117
|
+
"target": {
|
|
30118
|
+
"type": "string",
|
|
30119
|
+
"description": "The destination path inside the container where source file changes should be synced to. This attribute is only required when the action is set to sync."
|
|
30120
|
+
},
|
|
30121
|
+
"action": {
|
|
30122
|
+
"type": "string",
|
|
30123
|
+
"enum": [
|
|
30124
|
+
"sync",
|
|
30125
|
+
"rebuild",
|
|
30126
|
+
"restart",
|
|
30127
|
+
"sync+restart"
|
|
30128
|
+
],
|
|
30129
|
+
"description": "The possible actions to take when changes are detected. Refer to official docker documentation for more details on each action"
|
|
30130
|
+
},
|
|
30131
|
+
"ignore": {
|
|
30132
|
+
"type": "array",
|
|
30133
|
+
"items": {
|
|
30134
|
+
"type": "string"
|
|
30135
|
+
},
|
|
30136
|
+
"description": "A list of paths or patterns to ignore when watching for changes"
|
|
30137
|
+
},
|
|
30138
|
+
"include": {
|
|
30139
|
+
"type": "array",
|
|
30140
|
+
"items": {
|
|
30141
|
+
"type": "string"
|
|
30142
|
+
},
|
|
30143
|
+
"description": "A list of paths or patterns to specifically include when watching for changes"
|
|
30144
|
+
}
|
|
30145
|
+
}
|
|
30146
|
+
},
|
|
30147
|
+
"description": "A list of rules that control automatic service updates based on local file changes"
|
|
30148
|
+
}
|
|
30149
|
+
},
|
|
30150
|
+
"description": "A section of config which groups development-specific features together"
|
|
30151
|
+
},
|
|
30152
|
+
"volumes": {
|
|
30153
|
+
"type": "array",
|
|
30154
|
+
"items": {
|
|
30155
|
+
"type": "string",
|
|
30156
|
+
"pattern": "^[^:]+:[^:]+(:ro|:rw)?$"
|
|
30157
|
+
},
|
|
30158
|
+
"description": "Volumes define mount points that are accessible by service containers. The format is 'source:container_path[:mode]' where mode is optional and can be 'ro' (read-only) or by default 'rw' (read-write)"
|
|
30009
30159
|
}
|
|
30010
30160
|
}
|
|
30011
30161
|
}
|
|
@@ -30035,7 +30185,8 @@
|
|
|
30035
30185
|
"required": [
|
|
30036
30186
|
"key",
|
|
30037
30187
|
"tag",
|
|
30038
|
-
"health"
|
|
30188
|
+
"health",
|
|
30189
|
+
"resources"
|
|
30039
30190
|
],
|
|
30040
30191
|
"additionalProperties": false,
|
|
30041
30192
|
"properties": {
|