@forge/manifest 12.8.0-next.1 → 12.8.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 +6 -0
- package/out/schema/manifest-schema.json +36 -33
- package/out/schema/manifest.d.ts +20 -16
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -30903,6 +30903,42 @@
|
|
|
30903
30903
|
},
|
|
30904
30904
|
"minItems": 1
|
|
30905
30905
|
},
|
|
30906
|
+
"rovo:skill": {
|
|
30907
|
+
"type": "array",
|
|
30908
|
+
"items": {
|
|
30909
|
+
"type": "object",
|
|
30910
|
+
"required": [
|
|
30911
|
+
"path",
|
|
30912
|
+
"key"
|
|
30913
|
+
],
|
|
30914
|
+
"properties": {
|
|
30915
|
+
"path": {
|
|
30916
|
+
"type": "string",
|
|
30917
|
+
"pattern": "^resource:[^;]+;.+$"
|
|
30918
|
+
},
|
|
30919
|
+
"dependencies": {
|
|
30920
|
+
"type": "object",
|
|
30921
|
+
"properties": {
|
|
30922
|
+
"tools": {
|
|
30923
|
+
"type": "array",
|
|
30924
|
+
"items": {
|
|
30925
|
+
"type": "string"
|
|
30926
|
+
}
|
|
30927
|
+
}
|
|
30928
|
+
}
|
|
30929
|
+
},
|
|
30930
|
+
"key": {
|
|
30931
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
30932
|
+
}
|
|
30933
|
+
},
|
|
30934
|
+
"not": {
|
|
30935
|
+
"required": [
|
|
30936
|
+
"unlicensedAccess"
|
|
30937
|
+
]
|
|
30938
|
+
}
|
|
30939
|
+
},
|
|
30940
|
+
"minItems": 1
|
|
30941
|
+
},
|
|
30906
30942
|
"graph:smartLink": {
|
|
30907
30943
|
"type": "array",
|
|
30908
30944
|
"items": {
|
|
@@ -31184,39 +31220,6 @@
|
|
|
31184
31220
|
},
|
|
31185
31221
|
"minItems": 1
|
|
31186
31222
|
},
|
|
31187
|
-
"rovo:skill": {
|
|
31188
|
-
"minItems": 1,
|
|
31189
|
-
"type": "array",
|
|
31190
|
-
"items": {
|
|
31191
|
-
"type": "object",
|
|
31192
|
-
"additionalProperties": false,
|
|
31193
|
-
"required": [
|
|
31194
|
-
"key",
|
|
31195
|
-
"path"
|
|
31196
|
-
],
|
|
31197
|
-
"properties": {
|
|
31198
|
-
"path": {
|
|
31199
|
-
"type": "string",
|
|
31200
|
-
"pattern": "^resource:[^;]+;.+$"
|
|
31201
|
-
},
|
|
31202
|
-
"key": {
|
|
31203
|
-
"$ref": "#/definitions/ModuleKeySchema"
|
|
31204
|
-
},
|
|
31205
|
-
"dependencies": {
|
|
31206
|
-
"type": "object",
|
|
31207
|
-
"additionalProperties": false,
|
|
31208
|
-
"properties": {
|
|
31209
|
-
"tools": {
|
|
31210
|
-
"type": "array",
|
|
31211
|
-
"items": {
|
|
31212
|
-
"type": "string"
|
|
31213
|
-
}
|
|
31214
|
-
}
|
|
31215
|
-
}
|
|
31216
|
-
}
|
|
31217
|
-
}
|
|
31218
|
-
}
|
|
31219
|
-
},
|
|
31220
31223
|
"devops:buildInfoProvider": {
|
|
31221
31224
|
"type": "array",
|
|
31222
31225
|
"items": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -25145,6 +25145,26 @@ export interface Modules {
|
|
|
25145
25145
|
key: ModuleKeySchema;
|
|
25146
25146
|
}[]
|
|
25147
25147
|
];
|
|
25148
|
+
'rovo:skill'?: [
|
|
25149
|
+
{
|
|
25150
|
+
path: string;
|
|
25151
|
+
dependencies?: {
|
|
25152
|
+
tools?: string[];
|
|
25153
|
+
[k: string]: unknown;
|
|
25154
|
+
};
|
|
25155
|
+
key: ModuleKeySchema;
|
|
25156
|
+
[k: string]: unknown;
|
|
25157
|
+
},
|
|
25158
|
+
...{
|
|
25159
|
+
path: string;
|
|
25160
|
+
dependencies?: {
|
|
25161
|
+
tools?: string[];
|
|
25162
|
+
[k: string]: unknown;
|
|
25163
|
+
};
|
|
25164
|
+
key: ModuleKeySchema;
|
|
25165
|
+
[k: string]: unknown;
|
|
25166
|
+
}[]
|
|
25167
|
+
];
|
|
25148
25168
|
'graph:smartLink'?: [
|
|
25149
25169
|
{
|
|
25150
25170
|
/**
|
|
@@ -25453,22 +25473,6 @@ export interface Modules {
|
|
|
25453
25473
|
key: ModuleKeySchema;
|
|
25454
25474
|
}[]
|
|
25455
25475
|
];
|
|
25456
|
-
'rovo:skill'?: [
|
|
25457
|
-
{
|
|
25458
|
-
path: string;
|
|
25459
|
-
key: ModuleKeySchema;
|
|
25460
|
-
dependencies?: {
|
|
25461
|
-
tools?: string[];
|
|
25462
|
-
};
|
|
25463
|
-
},
|
|
25464
|
-
...{
|
|
25465
|
-
path: string;
|
|
25466
|
-
key: ModuleKeySchema;
|
|
25467
|
-
dependencies?: {
|
|
25468
|
-
tools?: string[];
|
|
25469
|
-
};
|
|
25470
|
-
}[]
|
|
25471
|
-
];
|
|
25472
25476
|
'devops:buildInfoProvider'?: [
|
|
25473
25477
|
{
|
|
25474
25478
|
name: {
|