@forge/manifest 3.9.1-next.2 → 3.10.0-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 +11 -0
- package/out/mapping/product-event-to-scope-mapping.json +42 -0
- package/out/schema/manifest-schema.json +149 -56
- package/out/schema/manifest.d.ts +62 -20
- package/out/types/module-types.d.ts +2 -0
- package/out/types/module-types.d.ts.map +1 -1
- package/out/types/module-types.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 3.10.0-next.3
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f890e0e: Enabling jira permission modules
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- d486898: Add new product events for issue links
|
|
12
|
+
- 91daffc: Update manifest definitions
|
|
13
|
+
|
|
3
14
|
## 3.9.1-next.2
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -106,6 +106,48 @@
|
|
|
106
106
|
]
|
|
107
107
|
}
|
|
108
108
|
},
|
|
109
|
+
{
|
|
110
|
+
"productEvent": "avi:jira:created:issuelink",
|
|
111
|
+
"oAuthScopes": {
|
|
112
|
+
"beta": [
|
|
113
|
+
"read:field:jira",
|
|
114
|
+
"read:issue-link-type:jira",
|
|
115
|
+
"read:issue:jira",
|
|
116
|
+
"read:issue-type:jira",
|
|
117
|
+
"read:priority:jira",
|
|
118
|
+
"read:status:jira",
|
|
119
|
+
"read:avatar:jira",
|
|
120
|
+
"read:issue.time-tracking:jira",
|
|
121
|
+
"read:project-category:jira",
|
|
122
|
+
"read:project:jira",
|
|
123
|
+
"read:user:jira"
|
|
124
|
+
],
|
|
125
|
+
"current": [
|
|
126
|
+
"read:jira-work"
|
|
127
|
+
]
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"productEvent": "avi:jira:deleted:issuelink",
|
|
132
|
+
"oAuthScopes": {
|
|
133
|
+
"beta": [
|
|
134
|
+
"read:field:jira",
|
|
135
|
+
"read:issue-link-type:jira",
|
|
136
|
+
"read:issue:jira",
|
|
137
|
+
"read:issue-type:jira",
|
|
138
|
+
"read:priority:jira",
|
|
139
|
+
"read:status:jira",
|
|
140
|
+
"read:avatar:jira",
|
|
141
|
+
"read:issue.time-tracking:jira",
|
|
142
|
+
"read:project-category:jira",
|
|
143
|
+
"read:project:jira",
|
|
144
|
+
"read:user:jira"
|
|
145
|
+
],
|
|
146
|
+
"current": [
|
|
147
|
+
"read:jira-work"
|
|
148
|
+
]
|
|
149
|
+
}
|
|
150
|
+
},
|
|
109
151
|
{
|
|
110
152
|
"productEvent": "avi:jira:created:field",
|
|
111
153
|
"oAuthScopes": {
|
|
@@ -1900,6 +1900,21 @@
|
|
|
1900
1900
|
}
|
|
1901
1901
|
]
|
|
1902
1902
|
},
|
|
1903
|
+
"resolver": {
|
|
1904
|
+
"additionalProperties": false,
|
|
1905
|
+
"type": "object",
|
|
1906
|
+
"properties": {
|
|
1907
|
+
"function": {
|
|
1908
|
+
"type": "string",
|
|
1909
|
+
"minLength": 1,
|
|
1910
|
+
"maxLength": 255,
|
|
1911
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1912
|
+
}
|
|
1913
|
+
},
|
|
1914
|
+
"required": [
|
|
1915
|
+
"function"
|
|
1916
|
+
]
|
|
1917
|
+
},
|
|
1903
1918
|
"view": {
|
|
1904
1919
|
"type": "object",
|
|
1905
1920
|
"properties": {
|
|
@@ -2545,6 +2560,7 @@
|
|
|
2545
2560
|
"layout": {
|
|
2546
2561
|
"enum": [
|
|
2547
2562
|
"basic",
|
|
2563
|
+
"blank",
|
|
2548
2564
|
"native"
|
|
2549
2565
|
],
|
|
2550
2566
|
"type": "string"
|
|
@@ -2759,6 +2775,7 @@
|
|
|
2759
2775
|
"layout": {
|
|
2760
2776
|
"enum": [
|
|
2761
2777
|
"basic",
|
|
2778
|
+
"blank",
|
|
2762
2779
|
"native"
|
|
2763
2780
|
],
|
|
2764
2781
|
"type": "string"
|
|
@@ -3541,6 +3558,13 @@
|
|
|
3541
3558
|
"maxLength": 255,
|
|
3542
3559
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
3543
3560
|
},
|
|
3561
|
+
"layout": {
|
|
3562
|
+
"enum": [
|
|
3563
|
+
"basic",
|
|
3564
|
+
"native"
|
|
3565
|
+
],
|
|
3566
|
+
"type": "string"
|
|
3567
|
+
},
|
|
3544
3568
|
"title": {
|
|
3545
3569
|
"type": "string",
|
|
3546
3570
|
"minLength": 1,
|
|
@@ -3551,13 +3575,6 @@
|
|
|
3551
3575
|
"minLength": 1,
|
|
3552
3576
|
"maxLength": 255
|
|
3553
3577
|
},
|
|
3554
|
-
"layout": {
|
|
3555
|
-
"enum": [
|
|
3556
|
-
"basic",
|
|
3557
|
-
"native"
|
|
3558
|
-
],
|
|
3559
|
-
"type": "string"
|
|
3560
|
-
},
|
|
3561
3578
|
"pages": {
|
|
3562
3579
|
"type": "array",
|
|
3563
3580
|
"items": {
|
|
@@ -3671,6 +3688,14 @@
|
|
|
3671
3688
|
"function"
|
|
3672
3689
|
]
|
|
3673
3690
|
},
|
|
3691
|
+
"layout": {
|
|
3692
|
+
"enum": [
|
|
3693
|
+
"basic",
|
|
3694
|
+
"blank",
|
|
3695
|
+
"native"
|
|
3696
|
+
],
|
|
3697
|
+
"type": "string"
|
|
3698
|
+
},
|
|
3674
3699
|
"title": {
|
|
3675
3700
|
"type": "string",
|
|
3676
3701
|
"minLength": 1,
|
|
@@ -3681,13 +3706,6 @@
|
|
|
3681
3706
|
"minLength": 1,
|
|
3682
3707
|
"maxLength": 255
|
|
3683
3708
|
},
|
|
3684
|
-
"layout": {
|
|
3685
|
-
"enum": [
|
|
3686
|
-
"basic",
|
|
3687
|
-
"native"
|
|
3688
|
-
],
|
|
3689
|
-
"type": "string"
|
|
3690
|
-
},
|
|
3691
3709
|
"pages": {
|
|
3692
3710
|
"type": "array",
|
|
3693
3711
|
"items": {
|
|
@@ -3789,6 +3807,13 @@
|
|
|
3789
3807
|
"maxLength": 255,
|
|
3790
3808
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
3791
3809
|
},
|
|
3810
|
+
"layout": {
|
|
3811
|
+
"enum": [
|
|
3812
|
+
"basic",
|
|
3813
|
+
"native"
|
|
3814
|
+
],
|
|
3815
|
+
"type": "string"
|
|
3816
|
+
},
|
|
3792
3817
|
"title": {
|
|
3793
3818
|
"type": "string",
|
|
3794
3819
|
"minLength": 1,
|
|
@@ -3799,13 +3824,6 @@
|
|
|
3799
3824
|
"minLength": 1,
|
|
3800
3825
|
"maxLength": 255
|
|
3801
3826
|
},
|
|
3802
|
-
"layout": {
|
|
3803
|
-
"enum": [
|
|
3804
|
-
"basic",
|
|
3805
|
-
"native"
|
|
3806
|
-
],
|
|
3807
|
-
"type": "string"
|
|
3808
|
-
},
|
|
3809
3827
|
"pages": {
|
|
3810
3828
|
"type": "array",
|
|
3811
3829
|
"items": {
|
|
@@ -3919,6 +3937,14 @@
|
|
|
3919
3937
|
"function"
|
|
3920
3938
|
]
|
|
3921
3939
|
},
|
|
3940
|
+
"layout": {
|
|
3941
|
+
"enum": [
|
|
3942
|
+
"basic",
|
|
3943
|
+
"blank",
|
|
3944
|
+
"native"
|
|
3945
|
+
],
|
|
3946
|
+
"type": "string"
|
|
3947
|
+
},
|
|
3922
3948
|
"title": {
|
|
3923
3949
|
"type": "string",
|
|
3924
3950
|
"minLength": 1,
|
|
@@ -3929,13 +3955,6 @@
|
|
|
3929
3955
|
"minLength": 1,
|
|
3930
3956
|
"maxLength": 255
|
|
3931
3957
|
},
|
|
3932
|
-
"layout": {
|
|
3933
|
-
"enum": [
|
|
3934
|
-
"basic",
|
|
3935
|
-
"native"
|
|
3936
|
-
],
|
|
3937
|
-
"type": "string"
|
|
3938
|
-
},
|
|
3939
3958
|
"pages": {
|
|
3940
3959
|
"type": "array",
|
|
3941
3960
|
"items": {
|
|
@@ -4037,6 +4056,13 @@
|
|
|
4037
4056
|
"maxLength": 255,
|
|
4038
4057
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
4039
4058
|
},
|
|
4059
|
+
"layout": {
|
|
4060
|
+
"enum": [
|
|
4061
|
+
"basic",
|
|
4062
|
+
"native"
|
|
4063
|
+
],
|
|
4064
|
+
"type": "string"
|
|
4065
|
+
},
|
|
4040
4066
|
"title": {
|
|
4041
4067
|
"type": "string",
|
|
4042
4068
|
"minLength": 1,
|
|
@@ -4047,13 +4073,6 @@
|
|
|
4047
4073
|
"minLength": 1,
|
|
4048
4074
|
"maxLength": 255
|
|
4049
4075
|
},
|
|
4050
|
-
"layout": {
|
|
4051
|
-
"enum": [
|
|
4052
|
-
"basic",
|
|
4053
|
-
"native"
|
|
4054
|
-
],
|
|
4055
|
-
"type": "string"
|
|
4056
|
-
},
|
|
4057
4076
|
"pages": {
|
|
4058
4077
|
"type": "array",
|
|
4059
4078
|
"items": {
|
|
@@ -4167,6 +4186,14 @@
|
|
|
4167
4186
|
"function"
|
|
4168
4187
|
]
|
|
4169
4188
|
},
|
|
4189
|
+
"layout": {
|
|
4190
|
+
"enum": [
|
|
4191
|
+
"basic",
|
|
4192
|
+
"blank",
|
|
4193
|
+
"native"
|
|
4194
|
+
],
|
|
4195
|
+
"type": "string"
|
|
4196
|
+
},
|
|
4170
4197
|
"title": {
|
|
4171
4198
|
"type": "string",
|
|
4172
4199
|
"minLength": 1,
|
|
@@ -4177,13 +4204,6 @@
|
|
|
4177
4204
|
"minLength": 1,
|
|
4178
4205
|
"maxLength": 255
|
|
4179
4206
|
},
|
|
4180
|
-
"layout": {
|
|
4181
|
-
"enum": [
|
|
4182
|
-
"basic",
|
|
4183
|
-
"native"
|
|
4184
|
-
],
|
|
4185
|
-
"type": "string"
|
|
4186
|
-
},
|
|
4187
4207
|
"pages": {
|
|
4188
4208
|
"type": "array",
|
|
4189
4209
|
"items": {
|
|
@@ -4285,6 +4305,13 @@
|
|
|
4285
4305
|
"maxLength": 255,
|
|
4286
4306
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
4287
4307
|
},
|
|
4308
|
+
"layout": {
|
|
4309
|
+
"enum": [
|
|
4310
|
+
"basic",
|
|
4311
|
+
"native"
|
|
4312
|
+
],
|
|
4313
|
+
"type": "string"
|
|
4314
|
+
},
|
|
4288
4315
|
"title": {
|
|
4289
4316
|
"type": "string",
|
|
4290
4317
|
"minLength": 1,
|
|
@@ -4295,13 +4322,6 @@
|
|
|
4295
4322
|
"minLength": 1,
|
|
4296
4323
|
"maxLength": 255
|
|
4297
4324
|
},
|
|
4298
|
-
"layout": {
|
|
4299
|
-
"enum": [
|
|
4300
|
-
"basic",
|
|
4301
|
-
"native"
|
|
4302
|
-
],
|
|
4303
|
-
"type": "string"
|
|
4304
|
-
},
|
|
4305
4325
|
"pages": {
|
|
4306
4326
|
"type": "array",
|
|
4307
4327
|
"items": {
|
|
@@ -4415,6 +4435,14 @@
|
|
|
4415
4435
|
"function"
|
|
4416
4436
|
]
|
|
4417
4437
|
},
|
|
4438
|
+
"layout": {
|
|
4439
|
+
"enum": [
|
|
4440
|
+
"basic",
|
|
4441
|
+
"blank",
|
|
4442
|
+
"native"
|
|
4443
|
+
],
|
|
4444
|
+
"type": "string"
|
|
4445
|
+
},
|
|
4418
4446
|
"title": {
|
|
4419
4447
|
"type": "string",
|
|
4420
4448
|
"minLength": 1,
|
|
@@ -4425,13 +4453,6 @@
|
|
|
4425
4453
|
"minLength": 1,
|
|
4426
4454
|
"maxLength": 255
|
|
4427
4455
|
},
|
|
4428
|
-
"layout": {
|
|
4429
|
-
"enum": [
|
|
4430
|
-
"basic",
|
|
4431
|
-
"native"
|
|
4432
|
-
],
|
|
4433
|
-
"type": "string"
|
|
4434
|
-
},
|
|
4435
4456
|
"pages": {
|
|
4436
4457
|
"type": "array",
|
|
4437
4458
|
"items": {
|
|
@@ -4538,6 +4559,63 @@
|
|
|
4538
4559
|
"expression": {
|
|
4539
4560
|
"type": "string"
|
|
4540
4561
|
},
|
|
4562
|
+
"resolver": {
|
|
4563
|
+
"additionalProperties": false,
|
|
4564
|
+
"type": "object",
|
|
4565
|
+
"properties": {
|
|
4566
|
+
"function": {
|
|
4567
|
+
"type": "string",
|
|
4568
|
+
"minLength": 1,
|
|
4569
|
+
"maxLength": 255,
|
|
4570
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
4571
|
+
}
|
|
4572
|
+
},
|
|
4573
|
+
"required": [
|
|
4574
|
+
"function"
|
|
4575
|
+
]
|
|
4576
|
+
},
|
|
4577
|
+
"view": {
|
|
4578
|
+
"type": "object",
|
|
4579
|
+
"properties": {
|
|
4580
|
+
"resource": {
|
|
4581
|
+
"type": "string",
|
|
4582
|
+
"minLength": 1,
|
|
4583
|
+
"maxLength": 23,
|
|
4584
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
4585
|
+
}
|
|
4586
|
+
},
|
|
4587
|
+
"required": [
|
|
4588
|
+
"resource"
|
|
4589
|
+
]
|
|
4590
|
+
},
|
|
4591
|
+
"edit": {
|
|
4592
|
+
"type": "object",
|
|
4593
|
+
"properties": {
|
|
4594
|
+
"resource": {
|
|
4595
|
+
"type": "string",
|
|
4596
|
+
"minLength": 1,
|
|
4597
|
+
"maxLength": 23,
|
|
4598
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
4599
|
+
}
|
|
4600
|
+
},
|
|
4601
|
+
"required": [
|
|
4602
|
+
"resource"
|
|
4603
|
+
]
|
|
4604
|
+
},
|
|
4605
|
+
"create": {
|
|
4606
|
+
"type": "object",
|
|
4607
|
+
"properties": {
|
|
4608
|
+
"resource": {
|
|
4609
|
+
"type": "string",
|
|
4610
|
+
"minLength": 1,
|
|
4611
|
+
"maxLength": 23,
|
|
4612
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
4613
|
+
}
|
|
4614
|
+
},
|
|
4615
|
+
"required": [
|
|
4616
|
+
"resource"
|
|
4617
|
+
]
|
|
4618
|
+
},
|
|
4541
4619
|
"key": {
|
|
4542
4620
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
4543
4621
|
}
|
|
@@ -4613,6 +4691,21 @@
|
|
|
4613
4691
|
"maxLength": 255,
|
|
4614
4692
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
4615
4693
|
},
|
|
4694
|
+
"resolver": {
|
|
4695
|
+
"additionalProperties": false,
|
|
4696
|
+
"type": "object",
|
|
4697
|
+
"properties": {
|
|
4698
|
+
"function": {
|
|
4699
|
+
"type": "string",
|
|
4700
|
+
"minLength": 1,
|
|
4701
|
+
"maxLength": 255,
|
|
4702
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
4703
|
+
}
|
|
4704
|
+
},
|
|
4705
|
+
"required": [
|
|
4706
|
+
"function"
|
|
4707
|
+
]
|
|
4708
|
+
},
|
|
4616
4709
|
"view": {
|
|
4617
4710
|
"type": "object",
|
|
4618
4711
|
"properties": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -1113,6 +1113,9 @@ export interface Modules {
|
|
|
1113
1113
|
[k: string]: unknown;
|
|
1114
1114
|
}
|
|
1115
1115
|
| string;
|
|
1116
|
+
resolver?: {
|
|
1117
|
+
function: string;
|
|
1118
|
+
};
|
|
1116
1119
|
view?: {
|
|
1117
1120
|
resource: string;
|
|
1118
1121
|
[k: string]: unknown;
|
|
@@ -1139,6 +1142,9 @@ export interface Modules {
|
|
|
1139
1142
|
[k: string]: unknown;
|
|
1140
1143
|
}
|
|
1141
1144
|
| string;
|
|
1145
|
+
resolver?: {
|
|
1146
|
+
function: string;
|
|
1147
|
+
};
|
|
1142
1148
|
view?: {
|
|
1143
1149
|
resource: string;
|
|
1144
1150
|
[k: string]: unknown;
|
|
@@ -1428,7 +1434,7 @@ export interface Modules {
|
|
|
1428
1434
|
}
|
|
1429
1435
|
| {
|
|
1430
1436
|
resource: string;
|
|
1431
|
-
layout?: 'basic' | 'native';
|
|
1437
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
1432
1438
|
[k: string]: unknown;
|
|
1433
1439
|
};
|
|
1434
1440
|
displayConditions?: {
|
|
@@ -1489,7 +1495,7 @@ export interface Modules {
|
|
|
1489
1495
|
}
|
|
1490
1496
|
| {
|
|
1491
1497
|
resource: string;
|
|
1492
|
-
layout?: 'basic' | 'native';
|
|
1498
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
1493
1499
|
[k: string]: unknown;
|
|
1494
1500
|
};
|
|
1495
1501
|
displayConditions?: {
|
|
@@ -1549,7 +1555,7 @@ export interface Modules {
|
|
|
1549
1555
|
}
|
|
1550
1556
|
| {
|
|
1551
1557
|
resource: string;
|
|
1552
|
-
layout?: 'basic' | 'native';
|
|
1558
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
1553
1559
|
[k: string]: unknown;
|
|
1554
1560
|
};
|
|
1555
1561
|
displayConditions?: {
|
|
@@ -1610,7 +1616,7 @@ export interface Modules {
|
|
|
1610
1616
|
}
|
|
1611
1617
|
| {
|
|
1612
1618
|
resource: string;
|
|
1613
|
-
layout?: 'basic' | 'native';
|
|
1619
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
1614
1620
|
[k: string]: unknown;
|
|
1615
1621
|
};
|
|
1616
1622
|
displayConditions?: {
|
|
@@ -2017,9 +2023,9 @@ export interface Modules {
|
|
|
2017
2023
|
(
|
|
2018
2024
|
| {
|
|
2019
2025
|
function: string;
|
|
2026
|
+
layout?: 'basic' | 'native';
|
|
2020
2027
|
title: string;
|
|
2021
2028
|
icon?: string;
|
|
2022
|
-
layout?: 'basic' | 'native';
|
|
2023
2029
|
pages?: {
|
|
2024
2030
|
title: string;
|
|
2025
2031
|
route: string;
|
|
@@ -2048,9 +2054,9 @@ export interface Modules {
|
|
|
2048
2054
|
resolver?: {
|
|
2049
2055
|
function: string;
|
|
2050
2056
|
};
|
|
2057
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
2051
2058
|
title: string;
|
|
2052
2059
|
icon?: string;
|
|
2053
|
-
layout?: 'basic' | 'native';
|
|
2054
2060
|
pages?: {
|
|
2055
2061
|
title: string;
|
|
2056
2062
|
route: string;
|
|
@@ -2077,9 +2083,9 @@ export interface Modules {
|
|
|
2077
2083
|
...(
|
|
2078
2084
|
| {
|
|
2079
2085
|
function: string;
|
|
2086
|
+
layout?: 'basic' | 'native';
|
|
2080
2087
|
title: string;
|
|
2081
2088
|
icon?: string;
|
|
2082
|
-
layout?: 'basic' | 'native';
|
|
2083
2089
|
pages?: {
|
|
2084
2090
|
title: string;
|
|
2085
2091
|
route: string;
|
|
@@ -2108,9 +2114,9 @@ export interface Modules {
|
|
|
2108
2114
|
resolver?: {
|
|
2109
2115
|
function: string;
|
|
2110
2116
|
};
|
|
2117
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
2111
2118
|
title: string;
|
|
2112
2119
|
icon?: string;
|
|
2113
|
-
layout?: 'basic' | 'native';
|
|
2114
2120
|
pages?: {
|
|
2115
2121
|
title: string;
|
|
2116
2122
|
route: string;
|
|
@@ -2139,9 +2145,9 @@ export interface Modules {
|
|
|
2139
2145
|
(
|
|
2140
2146
|
| {
|
|
2141
2147
|
function: string;
|
|
2148
|
+
layout?: 'basic' | 'native';
|
|
2142
2149
|
title: string;
|
|
2143
2150
|
icon?: string;
|
|
2144
|
-
layout?: 'basic' | 'native';
|
|
2145
2151
|
pages?: {
|
|
2146
2152
|
title: string;
|
|
2147
2153
|
route: string;
|
|
@@ -2170,9 +2176,9 @@ export interface Modules {
|
|
|
2170
2176
|
resolver?: {
|
|
2171
2177
|
function: string;
|
|
2172
2178
|
};
|
|
2179
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
2173
2180
|
title: string;
|
|
2174
2181
|
icon?: string;
|
|
2175
|
-
layout?: 'basic' | 'native';
|
|
2176
2182
|
pages?: {
|
|
2177
2183
|
title: string;
|
|
2178
2184
|
route: string;
|
|
@@ -2199,9 +2205,9 @@ export interface Modules {
|
|
|
2199
2205
|
...(
|
|
2200
2206
|
| {
|
|
2201
2207
|
function: string;
|
|
2208
|
+
layout?: 'basic' | 'native';
|
|
2202
2209
|
title: string;
|
|
2203
2210
|
icon?: string;
|
|
2204
|
-
layout?: 'basic' | 'native';
|
|
2205
2211
|
pages?: {
|
|
2206
2212
|
title: string;
|
|
2207
2213
|
route: string;
|
|
@@ -2230,9 +2236,9 @@ export interface Modules {
|
|
|
2230
2236
|
resolver?: {
|
|
2231
2237
|
function: string;
|
|
2232
2238
|
};
|
|
2239
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
2233
2240
|
title: string;
|
|
2234
2241
|
icon?: string;
|
|
2235
|
-
layout?: 'basic' | 'native';
|
|
2236
2242
|
pages?: {
|
|
2237
2243
|
title: string;
|
|
2238
2244
|
route: string;
|
|
@@ -2261,9 +2267,9 @@ export interface Modules {
|
|
|
2261
2267
|
(
|
|
2262
2268
|
| {
|
|
2263
2269
|
function: string;
|
|
2270
|
+
layout?: 'basic' | 'native';
|
|
2264
2271
|
title: string;
|
|
2265
2272
|
icon?: string;
|
|
2266
|
-
layout?: 'basic' | 'native';
|
|
2267
2273
|
pages?: {
|
|
2268
2274
|
title: string;
|
|
2269
2275
|
route: string;
|
|
@@ -2292,9 +2298,9 @@ export interface Modules {
|
|
|
2292
2298
|
resolver?: {
|
|
2293
2299
|
function: string;
|
|
2294
2300
|
};
|
|
2301
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
2295
2302
|
title: string;
|
|
2296
2303
|
icon?: string;
|
|
2297
|
-
layout?: 'basic' | 'native';
|
|
2298
2304
|
pages?: {
|
|
2299
2305
|
title: string;
|
|
2300
2306
|
route: string;
|
|
@@ -2321,9 +2327,9 @@ export interface Modules {
|
|
|
2321
2327
|
...(
|
|
2322
2328
|
| {
|
|
2323
2329
|
function: string;
|
|
2330
|
+
layout?: 'basic' | 'native';
|
|
2324
2331
|
title: string;
|
|
2325
2332
|
icon?: string;
|
|
2326
|
-
layout?: 'basic' | 'native';
|
|
2327
2333
|
pages?: {
|
|
2328
2334
|
title: string;
|
|
2329
2335
|
route: string;
|
|
@@ -2352,9 +2358,9 @@ export interface Modules {
|
|
|
2352
2358
|
resolver?: {
|
|
2353
2359
|
function: string;
|
|
2354
2360
|
};
|
|
2361
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
2355
2362
|
title: string;
|
|
2356
2363
|
icon?: string;
|
|
2357
|
-
layout?: 'basic' | 'native';
|
|
2358
2364
|
pages?: {
|
|
2359
2365
|
title: string;
|
|
2360
2366
|
route: string;
|
|
@@ -2383,9 +2389,9 @@ export interface Modules {
|
|
|
2383
2389
|
(
|
|
2384
2390
|
| {
|
|
2385
2391
|
function: string;
|
|
2392
|
+
layout?: 'basic' | 'native';
|
|
2386
2393
|
title: string;
|
|
2387
2394
|
icon?: string;
|
|
2388
|
-
layout?: 'basic' | 'native';
|
|
2389
2395
|
pages?: {
|
|
2390
2396
|
title: string;
|
|
2391
2397
|
route: string;
|
|
@@ -2414,9 +2420,9 @@ export interface Modules {
|
|
|
2414
2420
|
resolver?: {
|
|
2415
2421
|
function: string;
|
|
2416
2422
|
};
|
|
2423
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
2417
2424
|
title: string;
|
|
2418
2425
|
icon?: string;
|
|
2419
|
-
layout?: 'basic' | 'native';
|
|
2420
2426
|
pages?: {
|
|
2421
2427
|
title: string;
|
|
2422
2428
|
route: string;
|
|
@@ -2443,9 +2449,9 @@ export interface Modules {
|
|
|
2443
2449
|
...(
|
|
2444
2450
|
| {
|
|
2445
2451
|
function: string;
|
|
2452
|
+
layout?: 'basic' | 'native';
|
|
2446
2453
|
title: string;
|
|
2447
2454
|
icon?: string;
|
|
2448
|
-
layout?: 'basic' | 'native';
|
|
2449
2455
|
pages?: {
|
|
2450
2456
|
title: string;
|
|
2451
2457
|
route: string;
|
|
@@ -2474,9 +2480,9 @@ export interface Modules {
|
|
|
2474
2480
|
resolver?: {
|
|
2475
2481
|
function: string;
|
|
2476
2482
|
};
|
|
2483
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
2477
2484
|
title: string;
|
|
2478
2485
|
icon?: string;
|
|
2479
|
-
layout?: 'basic' | 'native';
|
|
2480
2486
|
pages?: {
|
|
2481
2487
|
title: string;
|
|
2482
2488
|
route: string;
|
|
@@ -2506,6 +2512,21 @@ export interface Modules {
|
|
|
2506
2512
|
name: string;
|
|
2507
2513
|
description: string;
|
|
2508
2514
|
expression: string;
|
|
2515
|
+
resolver?: {
|
|
2516
|
+
function: string;
|
|
2517
|
+
};
|
|
2518
|
+
view?: {
|
|
2519
|
+
resource: string;
|
|
2520
|
+
[k: string]: unknown;
|
|
2521
|
+
};
|
|
2522
|
+
edit?: {
|
|
2523
|
+
resource: string;
|
|
2524
|
+
[k: string]: unknown;
|
|
2525
|
+
};
|
|
2526
|
+
create?: {
|
|
2527
|
+
resource: string;
|
|
2528
|
+
[k: string]: unknown;
|
|
2529
|
+
};
|
|
2509
2530
|
key: ModuleKeySchema;
|
|
2510
2531
|
[k: string]: unknown;
|
|
2511
2532
|
},
|
|
@@ -2513,6 +2534,21 @@ export interface Modules {
|
|
|
2513
2534
|
name: string;
|
|
2514
2535
|
description: string;
|
|
2515
2536
|
expression: string;
|
|
2537
|
+
resolver?: {
|
|
2538
|
+
function: string;
|
|
2539
|
+
};
|
|
2540
|
+
view?: {
|
|
2541
|
+
resource: string;
|
|
2542
|
+
[k: string]: unknown;
|
|
2543
|
+
};
|
|
2544
|
+
edit?: {
|
|
2545
|
+
resource: string;
|
|
2546
|
+
[k: string]: unknown;
|
|
2547
|
+
};
|
|
2548
|
+
create?: {
|
|
2549
|
+
resource: string;
|
|
2550
|
+
[k: string]: unknown;
|
|
2551
|
+
};
|
|
2516
2552
|
key: ModuleKeySchema;
|
|
2517
2553
|
[k: string]: unknown;
|
|
2518
2554
|
}[]
|
|
@@ -2546,6 +2582,9 @@ export interface Modules {
|
|
|
2546
2582
|
name: string;
|
|
2547
2583
|
description: string;
|
|
2548
2584
|
function: string;
|
|
2585
|
+
resolver?: {
|
|
2586
|
+
function: string;
|
|
2587
|
+
};
|
|
2549
2588
|
view?: {
|
|
2550
2589
|
resource: string;
|
|
2551
2590
|
[k: string]: unknown;
|
|
@@ -2565,6 +2604,9 @@ export interface Modules {
|
|
|
2565
2604
|
name: string;
|
|
2566
2605
|
description: string;
|
|
2567
2606
|
function: string;
|
|
2607
|
+
resolver?: {
|
|
2608
|
+
function: string;
|
|
2609
|
+
};
|
|
2568
2610
|
view?: {
|
|
2569
2611
|
resource: string;
|
|
2570
2612
|
[k: string]: unknown;
|
|
@@ -31,6 +31,8 @@ export declare enum AllModuleTypes {
|
|
|
31
31
|
JiraGlobalPage = "jira:globalPage",
|
|
32
32
|
JiraDashboardGadget = "jira:dashboardGadget",
|
|
33
33
|
JiraDashboardBackgroundScript = "jira:dashboardBackgroundScript",
|
|
34
|
+
JiraGlobalPermission = "jira:globalPermission",
|
|
35
|
+
JiraProjectPermission = "jira:projectPermission",
|
|
34
36
|
CompassAdminPage = "compass:adminPage",
|
|
35
37
|
CompassComponentPage = "compass:componentPage",
|
|
36
38
|
CompassGlobalPage = "compass:globalPage",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,YAAY,kBAAkB;IAC9B,WAAW,iBAAiB;IAC5B,cAAc,oBAAoB;IAClC,YAAY,kBAAkB;IAC9B,oBAAoB,0BAA0B;IAC9C,QAAQ,cAAc;IACtB,uBAAuB,6BAA6B;IACpD,2BAA2B,iCAAiC;IAC5D,qBAAqB,2BAA2B;IAChD,uBAAuB,6BAA6B;IACpD,wBAAwB,8BAA8B;IACtD,oBAAoB,0BAA0B;IAC9C,sBAAsB,4BAA4B;IAClD,mBAAmB,yBAAyB;IAC5C,uBAAuB,6BAA6B;IACpD,kBAAkB,wBAAwB;IAC1C,qBAAqB,2BAA2B;IAChD,qBAAqB,2BAA2B;IAChD,wBAAwB,8BAA8B;IACtD,eAAe,qBAAqB;IACpC,mBAAmB,yBAAyB;IAC5C,eAAe,qBAAqB;IACpC,iBAAiB,uBAAuB;IACxC,mBAAmB,yBAAyB;IAC5C,eAAe,qBAAqB;IACpC,cAAc,oBAAoB;IAClC,aAAa,mBAAmB;IAChC,eAAe,qBAAqB;IACpC,uBAAuB,6BAA6B;IACpD,cAAc,oBAAoB;IAClC,mBAAmB,yBAAyB;IAC5C,6BAA6B,mCAAmC;
|
|
1
|
+
{"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"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"}
|
|
@@ -35,6 +35,8 @@ var AllModuleTypes;
|
|
|
35
35
|
AllModuleTypes["JiraGlobalPage"] = "jira:globalPage";
|
|
36
36
|
AllModuleTypes["JiraDashboardGadget"] = "jira:dashboardGadget";
|
|
37
37
|
AllModuleTypes["JiraDashboardBackgroundScript"] = "jira:dashboardBackgroundScript";
|
|
38
|
+
AllModuleTypes["JiraGlobalPermission"] = "jira:globalPermission";
|
|
39
|
+
AllModuleTypes["JiraProjectPermission"] = "jira:projectPermission";
|
|
38
40
|
AllModuleTypes["CompassAdminPage"] = "compass:adminPage";
|
|
39
41
|
AllModuleTypes["CompassComponentPage"] = "compass:componentPage";
|
|
40
42
|
AllModuleTypes["CompassGlobalPage"] = "compass:globalPage";
|