@forge/manifest 7.5.0-next.8 → 7.5.0
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 +29 -0
- package/out/schema/manifest-schema.json +117 -76
- package/out/schema/manifest.d.ts +87 -62
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 7.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 2278ad7: Removing 'oauth2' from the list of available values for connectAuthentication as it is no longer supported
|
|
8
|
+
- 8073ca4: Adding rovo:agent module type
|
|
9
|
+
- a05ba05: Add new module type for Connect on Forge
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- c1292da: refactor package.json to move code generators to dev dependencies
|
|
14
|
+
- 2b5d6f2: Adds validation for rovo:agent actions/skills
|
|
15
|
+
- 22687bd: Added Bitbucket PR reviewer status updated event
|
|
16
|
+
- 8a08e11: Update manifest definitions
|
|
17
|
+
- fad12fb: Update manifest definitions
|
|
18
|
+
- 8c3a153: Update manifest definitions
|
|
19
|
+
- 23cc3d6: Update manifest definitions
|
|
20
|
+
- 42e7ad7: Update manifest definitions
|
|
21
|
+
- Updated dependencies [99fb753]
|
|
22
|
+
- @forge/util@1.4.4
|
|
23
|
+
|
|
24
|
+
## 7.5.0-next.9
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- 42e7ad7: Update manifest definitions
|
|
29
|
+
- Updated dependencies [99fb753]
|
|
30
|
+
- @forge/util@1.4.4-next.0
|
|
31
|
+
|
|
3
32
|
## 7.5.0-next.8
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
|
@@ -837,12 +837,28 @@
|
|
|
837
837
|
"maxLength": 255,
|
|
838
838
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
839
839
|
},
|
|
840
|
+
"actionVerb": {
|
|
841
|
+
"description": "The operation that will be performed as a result of calling this action",
|
|
842
|
+
"type": "string",
|
|
843
|
+
"enum": [
|
|
844
|
+
"CREATE",
|
|
845
|
+
"UPDATE",
|
|
846
|
+
"DELETE",
|
|
847
|
+
"TRIGGER",
|
|
848
|
+
"GET"
|
|
849
|
+
]
|
|
850
|
+
},
|
|
851
|
+
"inputs": {
|
|
852
|
+
"type": "object",
|
|
853
|
+
"additionalProperties": {
|
|
854
|
+
"$ref": "#/definitions/ActionInput"
|
|
855
|
+
}
|
|
856
|
+
},
|
|
840
857
|
"key": {
|
|
841
858
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
842
859
|
}
|
|
843
860
|
},
|
|
844
861
|
"required": [
|
|
845
|
-
"actionType",
|
|
846
862
|
"isConsequential",
|
|
847
863
|
"function",
|
|
848
864
|
"description",
|
|
@@ -2977,14 +2993,14 @@
|
|
|
2977
2993
|
"type": "string"
|
|
2978
2994
|
},
|
|
2979
2995
|
"type": {
|
|
2996
|
+
"type": "string",
|
|
2980
2997
|
"enum": [
|
|
2981
|
-
"date",
|
|
2982
2998
|
"number",
|
|
2983
2999
|
"string",
|
|
2984
3000
|
"text",
|
|
2985
|
-
"user"
|
|
2986
|
-
|
|
2987
|
-
|
|
3001
|
+
"user",
|
|
3002
|
+
"date"
|
|
3003
|
+
]
|
|
2988
3004
|
},
|
|
2989
3005
|
"searchAlias": {
|
|
2990
3006
|
"minLength": 1,
|
|
@@ -3048,15 +3064,15 @@
|
|
|
3048
3064
|
"type": "string"
|
|
3049
3065
|
},
|
|
3050
3066
|
"type": {
|
|
3067
|
+
"type": "string",
|
|
3051
3068
|
"enum": [
|
|
3052
|
-
"date",
|
|
3053
|
-
"datetime",
|
|
3054
|
-
"group",
|
|
3055
3069
|
"number",
|
|
3056
3070
|
"string",
|
|
3057
|
-
"user"
|
|
3058
|
-
|
|
3059
|
-
|
|
3071
|
+
"user",
|
|
3072
|
+
"group",
|
|
3073
|
+
"date",
|
|
3074
|
+
"datetime"
|
|
3075
|
+
]
|
|
3060
3076
|
},
|
|
3061
3077
|
"collection": {
|
|
3062
3078
|
"enum": [
|
|
@@ -3283,9 +3299,7 @@
|
|
|
3283
3299
|
},
|
|
3284
3300
|
"type": {
|
|
3285
3301
|
"type": "string",
|
|
3286
|
-
"
|
|
3287
|
-
"object"
|
|
3288
|
-
]
|
|
3302
|
+
"const": "object"
|
|
3289
3303
|
},
|
|
3290
3304
|
"collection": {
|
|
3291
3305
|
"enum": [
|
|
@@ -3516,15 +3530,15 @@
|
|
|
3516
3530
|
"type": "string"
|
|
3517
3531
|
},
|
|
3518
3532
|
"type": {
|
|
3533
|
+
"type": "string",
|
|
3519
3534
|
"enum": [
|
|
3520
|
-
"date",
|
|
3521
|
-
"datetime",
|
|
3522
|
-
"group",
|
|
3523
3535
|
"number",
|
|
3524
3536
|
"string",
|
|
3525
|
-
"user"
|
|
3526
|
-
|
|
3527
|
-
|
|
3537
|
+
"user",
|
|
3538
|
+
"group",
|
|
3539
|
+
"date",
|
|
3540
|
+
"datetime"
|
|
3541
|
+
]
|
|
3528
3542
|
},
|
|
3529
3543
|
"collection": {
|
|
3530
3544
|
"enum": [
|
|
@@ -3811,9 +3825,7 @@
|
|
|
3811
3825
|
},
|
|
3812
3826
|
"type": {
|
|
3813
3827
|
"type": "string",
|
|
3814
|
-
"
|
|
3815
|
-
"object"
|
|
3816
|
-
]
|
|
3828
|
+
"const": "object"
|
|
3817
3829
|
},
|
|
3818
3830
|
"collection": {
|
|
3819
3831
|
"enum": [
|
|
@@ -4307,12 +4319,12 @@
|
|
|
4307
4319
|
"type": "object",
|
|
4308
4320
|
"properties": {
|
|
4309
4321
|
"type": {
|
|
4322
|
+
"type": "string",
|
|
4310
4323
|
"enum": [
|
|
4311
4324
|
"badge",
|
|
4312
|
-
"
|
|
4313
|
-
"
|
|
4314
|
-
]
|
|
4315
|
-
"type": "string"
|
|
4325
|
+
"lozenge",
|
|
4326
|
+
"icon"
|
|
4327
|
+
]
|
|
4316
4328
|
},
|
|
4317
4329
|
"value": {
|
|
4318
4330
|
"type": "object",
|
|
@@ -4437,12 +4449,12 @@
|
|
|
4437
4449
|
"type": "object",
|
|
4438
4450
|
"properties": {
|
|
4439
4451
|
"type": {
|
|
4452
|
+
"type": "string",
|
|
4440
4453
|
"enum": [
|
|
4441
4454
|
"badge",
|
|
4442
|
-
"
|
|
4443
|
-
"
|
|
4444
|
-
]
|
|
4445
|
-
"type": "string"
|
|
4455
|
+
"lozenge",
|
|
4456
|
+
"icon"
|
|
4457
|
+
]
|
|
4446
4458
|
},
|
|
4447
4459
|
"value": {
|
|
4448
4460
|
"type": "object",
|
|
@@ -6429,12 +6441,12 @@
|
|
|
6429
6441
|
"defaultGrants": {
|
|
6430
6442
|
"type": "array",
|
|
6431
6443
|
"items": {
|
|
6444
|
+
"type": "string",
|
|
6432
6445
|
"enum": [
|
|
6446
|
+
"none",
|
|
6433
6447
|
"all",
|
|
6434
|
-
"jira-administrators"
|
|
6435
|
-
|
|
6436
|
-
],
|
|
6437
|
-
"type": "string"
|
|
6448
|
+
"jira-administrators"
|
|
6449
|
+
]
|
|
6438
6450
|
}
|
|
6439
6451
|
},
|
|
6440
6452
|
"key": {
|
|
@@ -6665,12 +6677,12 @@
|
|
|
6665
6677
|
"type": "object",
|
|
6666
6678
|
"properties": {
|
|
6667
6679
|
"type": {
|
|
6680
|
+
"type": "string",
|
|
6668
6681
|
"enum": [
|
|
6669
6682
|
"badge",
|
|
6670
|
-
"
|
|
6671
|
-
"
|
|
6672
|
-
]
|
|
6673
|
-
"type": "string"
|
|
6683
|
+
"lozenge",
|
|
6684
|
+
"icon"
|
|
6685
|
+
]
|
|
6674
6686
|
},
|
|
6675
6687
|
"value": {
|
|
6676
6688
|
"type": "object",
|
|
@@ -6795,12 +6807,12 @@
|
|
|
6795
6807
|
"type": "object",
|
|
6796
6808
|
"properties": {
|
|
6797
6809
|
"type": {
|
|
6810
|
+
"type": "string",
|
|
6798
6811
|
"enum": [
|
|
6799
6812
|
"badge",
|
|
6800
|
-
"
|
|
6801
|
-
"
|
|
6802
|
-
]
|
|
6803
|
-
"type": "string"
|
|
6813
|
+
"lozenge",
|
|
6814
|
+
"icon"
|
|
6815
|
+
]
|
|
6804
6816
|
},
|
|
6805
6817
|
"value": {
|
|
6806
6818
|
"type": "object",
|
|
@@ -6973,59 +6985,59 @@
|
|
|
6973
6985
|
"types": {
|
|
6974
6986
|
"type": "array",
|
|
6975
6987
|
"items": {
|
|
6988
|
+
"type": "string",
|
|
6976
6989
|
"enum": [
|
|
6977
|
-
"attachment",
|
|
6978
|
-
"cascading_option",
|
|
6979
|
-
"component",
|
|
6980
|
-
"date",
|
|
6981
|
-
"duration",
|
|
6982
|
-
"group",
|
|
6983
|
-
"hierarchy_level",
|
|
6984
6990
|
"issue",
|
|
6985
|
-
"issue_link_type",
|
|
6986
|
-
"issue_list",
|
|
6987
|
-
"issue_restriction",
|
|
6988
|
-
"issue_security_level",
|
|
6989
|
-
"issue_type",
|
|
6990
|
-
"label",
|
|
6991
|
-
"number",
|
|
6992
|
-
"option",
|
|
6993
|
-
"priority",
|
|
6994
6991
|
"project",
|
|
6995
6992
|
"project_category",
|
|
6996
|
-
"project_role",
|
|
6997
6993
|
"project_type",
|
|
6994
|
+
"hierarchy_level",
|
|
6995
|
+
"version",
|
|
6996
|
+
"component",
|
|
6997
|
+
"user",
|
|
6998
|
+
"group",
|
|
6999
|
+
"team",
|
|
7000
|
+
"project_role",
|
|
7001
|
+
"priority",
|
|
6998
7002
|
"resolution",
|
|
6999
|
-
"
|
|
7003
|
+
"issue_type",
|
|
7000
7004
|
"status",
|
|
7001
7005
|
"status_category",
|
|
7002
|
-
"
|
|
7006
|
+
"cascading_option",
|
|
7007
|
+
"option",
|
|
7008
|
+
"saved_filter",
|
|
7009
|
+
"issue_security_level",
|
|
7010
|
+
"issue_restriction",
|
|
7011
|
+
"label",
|
|
7012
|
+
"attachment",
|
|
7013
|
+
"issue_list",
|
|
7014
|
+
"issue_link_type",
|
|
7015
|
+
"date",
|
|
7003
7016
|
"text",
|
|
7004
|
-
"
|
|
7005
|
-
"
|
|
7006
|
-
"
|
|
7007
|
-
]
|
|
7008
|
-
"type": "string"
|
|
7017
|
+
"number",
|
|
7018
|
+
"duration",
|
|
7019
|
+
"url"
|
|
7020
|
+
]
|
|
7009
7021
|
}
|
|
7010
7022
|
},
|
|
7011
7023
|
"operators": {
|
|
7012
7024
|
"type": "array",
|
|
7013
7025
|
"items": {
|
|
7026
|
+
"type": "string",
|
|
7014
7027
|
"enum": [
|
|
7015
|
-
"!=",
|
|
7016
|
-
"!~",
|
|
7017
|
-
"<",
|
|
7018
|
-
"<=",
|
|
7019
7028
|
"=",
|
|
7029
|
+
"!=",
|
|
7020
7030
|
">",
|
|
7021
7031
|
">=",
|
|
7032
|
+
"<",
|
|
7033
|
+
"<=",
|
|
7022
7034
|
"in",
|
|
7023
|
-
"is",
|
|
7024
|
-
"is not",
|
|
7025
7035
|
"not in",
|
|
7026
|
-
"~"
|
|
7027
|
-
|
|
7028
|
-
|
|
7036
|
+
"~",
|
|
7037
|
+
"!~",
|
|
7038
|
+
"is",
|
|
7039
|
+
"is not"
|
|
7040
|
+
]
|
|
7029
7041
|
}
|
|
7030
7042
|
},
|
|
7031
7043
|
"function": {
|
|
@@ -18542,6 +18554,35 @@
|
|
|
18542
18554
|
"auth"
|
|
18543
18555
|
]
|
|
18544
18556
|
},
|
|
18557
|
+
"CoreActionInputsType": {
|
|
18558
|
+
"type": "string",
|
|
18559
|
+
"enum": [
|
|
18560
|
+
"boolean",
|
|
18561
|
+
"integer",
|
|
18562
|
+
"number",
|
|
18563
|
+
"string"
|
|
18564
|
+
]
|
|
18565
|
+
},
|
|
18566
|
+
"ActionInput": {
|
|
18567
|
+
"type": "object",
|
|
18568
|
+
"required": [
|
|
18569
|
+
"title",
|
|
18570
|
+
"description",
|
|
18571
|
+
"type"
|
|
18572
|
+
],
|
|
18573
|
+
"properties": {
|
|
18574
|
+
"title": {
|
|
18575
|
+
"type": "string"
|
|
18576
|
+
},
|
|
18577
|
+
"description": {
|
|
18578
|
+
"type": "string",
|
|
18579
|
+
"description": "A description of what this particular input is intended for. Example: 'ID of the Issue that will be updated as a result of this action'\n"
|
|
18580
|
+
},
|
|
18581
|
+
"type": {
|
|
18582
|
+
"$ref": "#/definitions/CoreActionInputsType"
|
|
18583
|
+
}
|
|
18584
|
+
}
|
|
18585
|
+
},
|
|
18545
18586
|
"DisplayConditions": {
|
|
18546
18587
|
"anyOf": [
|
|
18547
18588
|
{
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -98,6 +98,7 @@ export type Handler = string;
|
|
|
98
98
|
* Whether this function is used for GDPR cleanup (default false). If set to true, this function has a higher rate limit for ESS list queries.
|
|
99
99
|
*/
|
|
100
100
|
export type Cleanup = boolean;
|
|
101
|
+
export type CoreActionInputsType = 'boolean' | 'integer' | 'number' | 'string';
|
|
101
102
|
export type DisplayConditions =
|
|
102
103
|
| {
|
|
103
104
|
customFieldName: CustomFieldName;
|
|
@@ -972,7 +973,7 @@ export interface Modules {
|
|
|
972
973
|
* Different implementations of actions with action-type of atlassian:issue:create:comment can be
|
|
973
974
|
* swapped depending on what integrations a tenant might have.
|
|
974
975
|
*/
|
|
975
|
-
actionType
|
|
976
|
+
actionType?: string;
|
|
976
977
|
/**
|
|
977
978
|
* If the action changes data then this should be true.
|
|
978
979
|
* Read only action should mark isConsequential as false.
|
|
@@ -982,6 +983,13 @@ export interface Modules {
|
|
|
982
983
|
* Name of the key of the function that will handle this action.
|
|
983
984
|
*/
|
|
984
985
|
function: string;
|
|
986
|
+
/**
|
|
987
|
+
* The operation that will be performed as a result of calling this action
|
|
988
|
+
*/
|
|
989
|
+
actionVerb?: 'CREATE' | 'UPDATE' | 'DELETE' | 'TRIGGER' | 'GET';
|
|
990
|
+
inputs?: {
|
|
991
|
+
[k: string]: ActionInput;
|
|
992
|
+
};
|
|
985
993
|
key: ModuleKeySchema;
|
|
986
994
|
[k: string]: unknown;
|
|
987
995
|
},
|
|
@@ -996,7 +1004,7 @@ export interface Modules {
|
|
|
996
1004
|
* Different implementations of actions with action-type of atlassian:issue:create:comment can be
|
|
997
1005
|
* swapped depending on what integrations a tenant might have.
|
|
998
1006
|
*/
|
|
999
|
-
actionType
|
|
1007
|
+
actionType?: string;
|
|
1000
1008
|
/**
|
|
1001
1009
|
* If the action changes data then this should be true.
|
|
1002
1010
|
* Read only action should mark isConsequential as false.
|
|
@@ -1006,6 +1014,13 @@ export interface Modules {
|
|
|
1006
1014
|
* Name of the key of the function that will handle this action.
|
|
1007
1015
|
*/
|
|
1008
1016
|
function: string;
|
|
1017
|
+
/**
|
|
1018
|
+
* The operation that will be performed as a result of calling this action
|
|
1019
|
+
*/
|
|
1020
|
+
actionVerb?: 'CREATE' | 'UPDATE' | 'DELETE' | 'TRIGGER' | 'GET';
|
|
1021
|
+
inputs?: {
|
|
1022
|
+
[k: string]: ActionInput;
|
|
1023
|
+
};
|
|
1009
1024
|
key: ModuleKeySchema;
|
|
1010
1025
|
[k: string]: unknown;
|
|
1011
1026
|
}[]
|
|
@@ -2054,7 +2069,7 @@ export interface Modules {
|
|
|
2054
2069
|
entityType?: 'issue' | 'project' | 'user';
|
|
2055
2070
|
values: {
|
|
2056
2071
|
path: string;
|
|
2057
|
-
type: '
|
|
2072
|
+
type: 'number' | 'string' | 'text' | 'user' | 'date';
|
|
2058
2073
|
searchAlias?: string;
|
|
2059
2074
|
[k: string]: unknown;
|
|
2060
2075
|
}[];
|
|
@@ -2066,7 +2081,7 @@ export interface Modules {
|
|
|
2066
2081
|
entityType?: 'issue' | 'project' | 'user';
|
|
2067
2082
|
values: {
|
|
2068
2083
|
path: string;
|
|
2069
|
-
type: '
|
|
2084
|
+
type: 'number' | 'string' | 'text' | 'user' | 'date';
|
|
2070
2085
|
searchAlias?: string;
|
|
2071
2086
|
[k: string]: unknown;
|
|
2072
2087
|
}[];
|
|
@@ -2084,7 +2099,7 @@ export interface Modules {
|
|
|
2084
2099
|
};
|
|
2085
2100
|
name: string;
|
|
2086
2101
|
description: string;
|
|
2087
|
-
type: '
|
|
2102
|
+
type: 'number' | 'string' | 'user' | 'group' | 'date' | 'datetime';
|
|
2088
2103
|
collection?: 'list' | 'none';
|
|
2089
2104
|
validation?: {
|
|
2090
2105
|
expression: string;
|
|
@@ -2207,7 +2222,7 @@ export interface Modules {
|
|
|
2207
2222
|
};
|
|
2208
2223
|
name: string;
|
|
2209
2224
|
description: string;
|
|
2210
|
-
type: '
|
|
2225
|
+
type: 'number' | 'string' | 'user' | 'group' | 'date' | 'datetime';
|
|
2211
2226
|
collection?: 'list' | 'none';
|
|
2212
2227
|
validation?: {
|
|
2213
2228
|
expression: string;
|
|
@@ -2332,7 +2347,7 @@ export interface Modules {
|
|
|
2332
2347
|
};
|
|
2333
2348
|
name: string;
|
|
2334
2349
|
description: string;
|
|
2335
|
-
type: '
|
|
2350
|
+
type: 'number' | 'string' | 'user' | 'group' | 'date' | 'datetime';
|
|
2336
2351
|
collection?: 'list' | 'none';
|
|
2337
2352
|
validation?: {
|
|
2338
2353
|
expression: string;
|
|
@@ -2481,7 +2496,7 @@ export interface Modules {
|
|
|
2481
2496
|
};
|
|
2482
2497
|
name: string;
|
|
2483
2498
|
description: string;
|
|
2484
|
-
type: '
|
|
2499
|
+
type: 'number' | 'string' | 'user' | 'group' | 'date' | 'datetime';
|
|
2485
2500
|
collection?: 'list' | 'none';
|
|
2486
2501
|
validation?: {
|
|
2487
2502
|
expression: string;
|
|
@@ -2721,7 +2736,7 @@ export interface Modules {
|
|
|
2721
2736
|
title: string;
|
|
2722
2737
|
label: string;
|
|
2723
2738
|
status?: {
|
|
2724
|
-
type: 'badge' | '
|
|
2739
|
+
type: 'badge' | 'lozenge' | 'icon';
|
|
2725
2740
|
value: {
|
|
2726
2741
|
label: string;
|
|
2727
2742
|
url?: string;
|
|
@@ -2750,7 +2765,7 @@ export interface Modules {
|
|
|
2750
2765
|
title: string;
|
|
2751
2766
|
label: string;
|
|
2752
2767
|
status?: {
|
|
2753
|
-
type: 'badge' | '
|
|
2768
|
+
type: 'badge' | 'lozenge' | 'icon';
|
|
2754
2769
|
value: {
|
|
2755
2770
|
label: string;
|
|
2756
2771
|
url?: string;
|
|
@@ -2773,7 +2788,7 @@ export interface Modules {
|
|
|
2773
2788
|
title: string;
|
|
2774
2789
|
label: string;
|
|
2775
2790
|
status?: {
|
|
2776
|
-
type: 'badge' | '
|
|
2791
|
+
type: 'badge' | 'lozenge' | 'icon';
|
|
2777
2792
|
value: {
|
|
2778
2793
|
label: string;
|
|
2779
2794
|
url?: string;
|
|
@@ -2802,7 +2817,7 @@ export interface Modules {
|
|
|
2802
2817
|
title: string;
|
|
2803
2818
|
label: string;
|
|
2804
2819
|
status?: {
|
|
2805
|
-
type: 'badge' | '
|
|
2820
|
+
type: 'badge' | 'lozenge' | 'icon';
|
|
2806
2821
|
value: {
|
|
2807
2822
|
label: string;
|
|
2808
2823
|
url?: string;
|
|
@@ -3715,7 +3730,7 @@ export interface Modules {
|
|
|
3715
3730
|
name: string;
|
|
3716
3731
|
description: string;
|
|
3717
3732
|
anonymousAllowed: boolean;
|
|
3718
|
-
defaultGrants?: ('
|
|
3733
|
+
defaultGrants?: ('none' | 'all' | 'jira-administrators')[];
|
|
3719
3734
|
key: ModuleKeySchema;
|
|
3720
3735
|
[k: string]: unknown;
|
|
3721
3736
|
},
|
|
@@ -3723,7 +3738,7 @@ export interface Modules {
|
|
|
3723
3738
|
name: string;
|
|
3724
3739
|
description: string;
|
|
3725
3740
|
anonymousAllowed: boolean;
|
|
3726
|
-
defaultGrants?: ('
|
|
3741
|
+
defaultGrants?: ('none' | 'all' | 'jira-administrators')[];
|
|
3727
3742
|
key: ModuleKeySchema;
|
|
3728
3743
|
[k: string]: unknown;
|
|
3729
3744
|
}[]
|
|
@@ -3811,7 +3826,7 @@ export interface Modules {
|
|
|
3811
3826
|
title: string;
|
|
3812
3827
|
label: string;
|
|
3813
3828
|
status?: {
|
|
3814
|
-
type: 'badge' | '
|
|
3829
|
+
type: 'badge' | 'lozenge' | 'icon';
|
|
3815
3830
|
value: {
|
|
3816
3831
|
label: string;
|
|
3817
3832
|
url?: string;
|
|
@@ -3840,7 +3855,7 @@ export interface Modules {
|
|
|
3840
3855
|
title: string;
|
|
3841
3856
|
label: string;
|
|
3842
3857
|
status?: {
|
|
3843
|
-
type: 'badge' | '
|
|
3858
|
+
type: 'badge' | 'lozenge' | 'icon';
|
|
3844
3859
|
value: {
|
|
3845
3860
|
label: string;
|
|
3846
3861
|
url?: string;
|
|
@@ -3863,7 +3878,7 @@ export interface Modules {
|
|
|
3863
3878
|
title: string;
|
|
3864
3879
|
label: string;
|
|
3865
3880
|
status?: {
|
|
3866
|
-
type: 'badge' | '
|
|
3881
|
+
type: 'badge' | 'lozenge' | 'icon';
|
|
3867
3882
|
value: {
|
|
3868
3883
|
label: string;
|
|
3869
3884
|
url?: string;
|
|
@@ -3892,7 +3907,7 @@ export interface Modules {
|
|
|
3892
3907
|
title: string;
|
|
3893
3908
|
label: string;
|
|
3894
3909
|
status?: {
|
|
3895
|
-
type: 'badge' | '
|
|
3910
|
+
type: 'badge' | 'lozenge' | 'icon';
|
|
3896
3911
|
value: {
|
|
3897
3912
|
label: string;
|
|
3898
3913
|
url?: string;
|
|
@@ -3955,38 +3970,38 @@ export interface Modules {
|
|
|
3955
3970
|
[k: string]: unknown;
|
|
3956
3971
|
}[];
|
|
3957
3972
|
types: (
|
|
3958
|
-
| 'attachment'
|
|
3959
|
-
| 'cascading_option'
|
|
3960
|
-
| 'component'
|
|
3961
|
-
| 'date'
|
|
3962
|
-
| 'duration'
|
|
3963
|
-
| 'group'
|
|
3964
|
-
| 'hierarchy_level'
|
|
3965
3973
|
| 'issue'
|
|
3966
|
-
| 'issue_link_type'
|
|
3967
|
-
| 'issue_list'
|
|
3968
|
-
| 'issue_restriction'
|
|
3969
|
-
| 'issue_security_level'
|
|
3970
|
-
| 'issue_type'
|
|
3971
|
-
| 'label'
|
|
3972
|
-
| 'number'
|
|
3973
|
-
| 'option'
|
|
3974
|
-
| 'priority'
|
|
3975
3974
|
| 'project'
|
|
3976
3975
|
| 'project_category'
|
|
3977
|
-
| 'project_role'
|
|
3978
3976
|
| 'project_type'
|
|
3977
|
+
| 'hierarchy_level'
|
|
3978
|
+
| 'version'
|
|
3979
|
+
| 'component'
|
|
3980
|
+
| 'user'
|
|
3981
|
+
| 'group'
|
|
3982
|
+
| 'team'
|
|
3983
|
+
| 'project_role'
|
|
3984
|
+
| 'priority'
|
|
3979
3985
|
| 'resolution'
|
|
3980
|
-
| '
|
|
3986
|
+
| 'issue_type'
|
|
3981
3987
|
| 'status'
|
|
3982
3988
|
| 'status_category'
|
|
3983
|
-
| '
|
|
3989
|
+
| 'cascading_option'
|
|
3990
|
+
| 'option'
|
|
3991
|
+
| 'saved_filter'
|
|
3992
|
+
| 'issue_security_level'
|
|
3993
|
+
| 'issue_restriction'
|
|
3994
|
+
| 'label'
|
|
3995
|
+
| 'attachment'
|
|
3996
|
+
| 'issue_list'
|
|
3997
|
+
| 'issue_link_type'
|
|
3998
|
+
| 'date'
|
|
3984
3999
|
| 'text'
|
|
4000
|
+
| 'number'
|
|
4001
|
+
| 'duration'
|
|
3985
4002
|
| 'url'
|
|
3986
|
-
| 'user'
|
|
3987
|
-
| 'version'
|
|
3988
4003
|
)[];
|
|
3989
|
-
operators: ('
|
|
4004
|
+
operators: ('=' | '!=' | '>' | '>=' | '<' | '<=' | 'in' | 'not in' | '~' | '!~' | 'is' | 'is not')[];
|
|
3990
4005
|
function: string;
|
|
3991
4006
|
key: ModuleKeySchema;
|
|
3992
4007
|
[k: string]: unknown;
|
|
@@ -3999,38 +4014,38 @@ export interface Modules {
|
|
|
3999
4014
|
[k: string]: unknown;
|
|
4000
4015
|
}[];
|
|
4001
4016
|
types: (
|
|
4002
|
-
| 'attachment'
|
|
4003
|
-
| 'cascading_option'
|
|
4004
|
-
| 'component'
|
|
4005
|
-
| 'date'
|
|
4006
|
-
| 'duration'
|
|
4007
|
-
| 'group'
|
|
4008
|
-
| 'hierarchy_level'
|
|
4009
4017
|
| 'issue'
|
|
4010
|
-
| 'issue_link_type'
|
|
4011
|
-
| 'issue_list'
|
|
4012
|
-
| 'issue_restriction'
|
|
4013
|
-
| 'issue_security_level'
|
|
4014
|
-
| 'issue_type'
|
|
4015
|
-
| 'label'
|
|
4016
|
-
| 'number'
|
|
4017
|
-
| 'option'
|
|
4018
|
-
| 'priority'
|
|
4019
4018
|
| 'project'
|
|
4020
4019
|
| 'project_category'
|
|
4021
|
-
| 'project_role'
|
|
4022
4020
|
| 'project_type'
|
|
4021
|
+
| 'hierarchy_level'
|
|
4022
|
+
| 'version'
|
|
4023
|
+
| 'component'
|
|
4024
|
+
| 'user'
|
|
4025
|
+
| 'group'
|
|
4026
|
+
| 'team'
|
|
4027
|
+
| 'project_role'
|
|
4028
|
+
| 'priority'
|
|
4023
4029
|
| 'resolution'
|
|
4024
|
-
| '
|
|
4030
|
+
| 'issue_type'
|
|
4025
4031
|
| 'status'
|
|
4026
4032
|
| 'status_category'
|
|
4027
|
-
| '
|
|
4033
|
+
| 'cascading_option'
|
|
4034
|
+
| 'option'
|
|
4035
|
+
| 'saved_filter'
|
|
4036
|
+
| 'issue_security_level'
|
|
4037
|
+
| 'issue_restriction'
|
|
4038
|
+
| 'label'
|
|
4039
|
+
| 'attachment'
|
|
4040
|
+
| 'issue_list'
|
|
4041
|
+
| 'issue_link_type'
|
|
4042
|
+
| 'date'
|
|
4028
4043
|
| 'text'
|
|
4044
|
+
| 'number'
|
|
4045
|
+
| 'duration'
|
|
4029
4046
|
| 'url'
|
|
4030
|
-
| 'user'
|
|
4031
|
-
| 'version'
|
|
4032
4047
|
)[];
|
|
4033
|
-
operators: ('
|
|
4048
|
+
operators: ('=' | '!=' | '>' | '>=' | '<' | '<=' | 'in' | 'not in' | '~' | '!~' | 'is' | 'is not')[];
|
|
4034
4049
|
function: string;
|
|
4035
4050
|
key: ModuleKeySchema;
|
|
4036
4051
|
[k: string]: unknown;
|
|
@@ -8182,6 +8197,16 @@ export interface ExternalAuthFunctionProvider {
|
|
|
8182
8197
|
*/
|
|
8183
8198
|
requestAllScopes?: boolean;
|
|
8184
8199
|
}
|
|
8200
|
+
export interface ActionInput {
|
|
8201
|
+
title: string;
|
|
8202
|
+
/**
|
|
8203
|
+
* A description of what this particular input is intended for. Example: 'ID of the Issue that will be updated as a result of this action'
|
|
8204
|
+
*
|
|
8205
|
+
*/
|
|
8206
|
+
description: string;
|
|
8207
|
+
type: CoreActionInputsType;
|
|
8208
|
+
[k: string]: unknown;
|
|
8209
|
+
}
|
|
8185
8210
|
/**
|
|
8186
8211
|
*
|
|
8187
8212
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/manifest",
|
|
3
|
-
"version": "7.5.0
|
|
3
|
+
"version": "7.5.0",
|
|
4
4
|
"description": "Definitions and validations of the Forge manifest",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"author": "Atlassian",
|
|
25
25
|
"license": "UNLICENSED",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@forge/util": "1.4.
|
|
27
|
+
"@forge/util": "1.4.4",
|
|
28
28
|
"@sentry/node": "7.100.1",
|
|
29
29
|
"ajv": "^8.12.0",
|
|
30
30
|
"ajv-formats": "2.1.1",
|