@forge/manifest 10.8.0-next.2 → 10.8.0-next.4
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 +12 -0
- package/out/schema/manifest-schema.json +140 -64
- package/out/schema/manifest.d.ts +66 -30
- package/out/scopes/shipyard-scopes.json +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1776,7 +1776,7 @@
|
|
|
1776
1776
|
"enum": [
|
|
1777
1777
|
"standard"
|
|
1778
1778
|
],
|
|
1779
|
-
"description": "The storage class
|
|
1779
|
+
"description": "The storage class to be used for object storage"
|
|
1780
1780
|
},
|
|
1781
1781
|
"key": {
|
|
1782
1782
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
@@ -4818,81 +4818,153 @@
|
|
|
4818
4818
|
"confluence:fullPage": {
|
|
4819
4819
|
"type": "array",
|
|
4820
4820
|
"items": {
|
|
4821
|
-
"
|
|
4822
|
-
|
|
4823
|
-
|
|
4824
|
-
|
|
4825
|
-
"
|
|
4826
|
-
|
|
4827
|
-
|
|
4828
|
-
|
|
4829
|
-
|
|
4830
|
-
|
|
4831
|
-
|
|
4832
|
-
|
|
4833
|
-
|
|
4834
|
-
|
|
4835
|
-
|
|
4836
|
-
|
|
4821
|
+
"oneOf": [
|
|
4822
|
+
{
|
|
4823
|
+
"type": "object",
|
|
4824
|
+
"additionalProperties": false,
|
|
4825
|
+
"properties": {
|
|
4826
|
+
"title": {
|
|
4827
|
+
"oneOf": [
|
|
4828
|
+
{
|
|
4829
|
+
"type": "object",
|
|
4830
|
+
"additionalProperties": false,
|
|
4831
|
+
"properties": {
|
|
4832
|
+
"i18n": {
|
|
4833
|
+
"type": "string",
|
|
4834
|
+
"minLength": 1,
|
|
4835
|
+
"maxLength": 300,
|
|
4836
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
4837
|
+
}
|
|
4838
|
+
},
|
|
4839
|
+
"required": [
|
|
4840
|
+
"i18n"
|
|
4841
|
+
]
|
|
4842
|
+
},
|
|
4843
|
+
{
|
|
4837
4844
|
"type": "string",
|
|
4838
4845
|
"minLength": 1,
|
|
4839
|
-
"maxLength": 255
|
|
4840
|
-
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
4846
|
+
"maxLength": 255
|
|
4841
4847
|
}
|
|
4842
|
-
},
|
|
4843
|
-
"required": [
|
|
4844
|
-
"function"
|
|
4845
4848
|
]
|
|
4846
4849
|
},
|
|
4847
|
-
{
|
|
4848
|
-
"
|
|
4849
|
-
"
|
|
4850
|
-
"
|
|
4851
|
-
|
|
4850
|
+
"title__i18n": {
|
|
4851
|
+
"type": "string",
|
|
4852
|
+
"minLength": 1,
|
|
4853
|
+
"maxLength": 300,
|
|
4854
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
4855
|
+
},
|
|
4856
|
+
"function": {
|
|
4857
|
+
"type": "string",
|
|
4858
|
+
"minLength": 1,
|
|
4859
|
+
"maxLength": 255,
|
|
4860
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
4861
|
+
},
|
|
4862
|
+
"key": {
|
|
4863
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
4864
|
+
}
|
|
4865
|
+
},
|
|
4866
|
+
"required": [
|
|
4867
|
+
"function",
|
|
4868
|
+
"key"
|
|
4869
|
+
]
|
|
4870
|
+
},
|
|
4871
|
+
{
|
|
4872
|
+
"type": "object",
|
|
4873
|
+
"additionalProperties": false,
|
|
4874
|
+
"properties": {
|
|
4875
|
+
"title": {
|
|
4876
|
+
"oneOf": [
|
|
4877
|
+
{
|
|
4878
|
+
"type": "object",
|
|
4879
|
+
"additionalProperties": false,
|
|
4880
|
+
"properties": {
|
|
4881
|
+
"i18n": {
|
|
4882
|
+
"type": "string",
|
|
4883
|
+
"minLength": 1,
|
|
4884
|
+
"maxLength": 300,
|
|
4885
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
4886
|
+
}
|
|
4887
|
+
},
|
|
4888
|
+
"required": [
|
|
4889
|
+
"i18n"
|
|
4890
|
+
]
|
|
4891
|
+
},
|
|
4892
|
+
{
|
|
4852
4893
|
"type": "string",
|
|
4853
4894
|
"minLength": 1,
|
|
4854
|
-
"maxLength": 255
|
|
4855
|
-
|
|
4895
|
+
"maxLength": 255
|
|
4896
|
+
}
|
|
4897
|
+
]
|
|
4898
|
+
},
|
|
4899
|
+
"title__i18n": {
|
|
4900
|
+
"type": "string",
|
|
4901
|
+
"minLength": 1,
|
|
4902
|
+
"maxLength": 300,
|
|
4903
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
4904
|
+
},
|
|
4905
|
+
"resolver": {
|
|
4906
|
+
"anyOf": [
|
|
4907
|
+
{
|
|
4908
|
+
"additionalProperties": false,
|
|
4909
|
+
"type": "object",
|
|
4910
|
+
"properties": {
|
|
4911
|
+
"function": {
|
|
4912
|
+
"type": "string",
|
|
4913
|
+
"minLength": 1,
|
|
4914
|
+
"maxLength": 255,
|
|
4915
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
4916
|
+
}
|
|
4917
|
+
},
|
|
4918
|
+
"required": [
|
|
4919
|
+
"function"
|
|
4920
|
+
]
|
|
4921
|
+
},
|
|
4922
|
+
{
|
|
4923
|
+
"additionalProperties": false,
|
|
4924
|
+
"type": "object",
|
|
4925
|
+
"properties": {
|
|
4926
|
+
"endpoint": {
|
|
4927
|
+
"type": "string",
|
|
4928
|
+
"minLength": 1,
|
|
4929
|
+
"maxLength": 255,
|
|
4930
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
4931
|
+
}
|
|
4932
|
+
},
|
|
4933
|
+
"required": [
|
|
4934
|
+
"endpoint"
|
|
4935
|
+
]
|
|
4856
4936
|
}
|
|
4857
|
-
},
|
|
4858
|
-
"required": [
|
|
4859
|
-
"endpoint"
|
|
4860
4937
|
]
|
|
4938
|
+
},
|
|
4939
|
+
"resource": {
|
|
4940
|
+
"type": "string",
|
|
4941
|
+
"minLength": 1,
|
|
4942
|
+
"maxLength": 23,
|
|
4943
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
4944
|
+
},
|
|
4945
|
+
"resourceUploadId": {
|
|
4946
|
+
"type": "string",
|
|
4947
|
+
"minLength": 1,
|
|
4948
|
+
"maxLength": 255
|
|
4949
|
+
},
|
|
4950
|
+
"render": {
|
|
4951
|
+
"enum": [
|
|
4952
|
+
"native",
|
|
4953
|
+
"default"
|
|
4954
|
+
],
|
|
4955
|
+
"type": "string",
|
|
4956
|
+
"default": "default"
|
|
4957
|
+
},
|
|
4958
|
+
"key": {
|
|
4959
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
4861
4960
|
}
|
|
4961
|
+
},
|
|
4962
|
+
"required": [
|
|
4963
|
+
"resource",
|
|
4964
|
+
"key"
|
|
4862
4965
|
]
|
|
4863
|
-
},
|
|
4864
|
-
"resource": {
|
|
4865
|
-
"type": "string",
|
|
4866
|
-
"minLength": 1,
|
|
4867
|
-
"maxLength": 23,
|
|
4868
|
-
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
4869
|
-
},
|
|
4870
|
-
"resourceUploadId": {
|
|
4871
|
-
"type": "string",
|
|
4872
|
-
"minLength": 1,
|
|
4873
|
-
"maxLength": 255
|
|
4874
|
-
},
|
|
4875
|
-
"render": {
|
|
4876
|
-
"enum": [
|
|
4877
|
-
"native",
|
|
4878
|
-
"default"
|
|
4879
|
-
],
|
|
4880
|
-
"type": "string",
|
|
4881
|
-
"default": "default"
|
|
4882
|
-
},
|
|
4883
|
-
"key": {
|
|
4884
|
-
"$ref": "#/definitions/ModuleKeySchema"
|
|
4885
4966
|
}
|
|
4886
|
-
|
|
4887
|
-
"required": [
|
|
4888
|
-
"resource",
|
|
4889
|
-
"key"
|
|
4890
|
-
],
|
|
4891
|
-
"not": {
|
|
4892
|
-
"required": [
|
|
4893
|
-
"unlicensedAccess"
|
|
4894
|
-
]
|
|
4895
|
-
}
|
|
4967
|
+
]
|
|
4896
4968
|
},
|
|
4897
4969
|
"minItems": 1
|
|
4898
4970
|
},
|
|
@@ -6347,6 +6419,10 @@
|
|
|
6347
6419
|
"type": "object",
|
|
6348
6420
|
"properties": {}
|
|
6349
6421
|
},
|
|
6422
|
+
"migratedFromConnect": {
|
|
6423
|
+
"default": false,
|
|
6424
|
+
"type": "boolean"
|
|
6425
|
+
},
|
|
6350
6426
|
"key": {
|
|
6351
6427
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
6352
6428
|
}
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -1757,14 +1757,14 @@ export interface Modules {
|
|
|
1757
1757
|
objectStore?: [
|
|
1758
1758
|
{
|
|
1759
1759
|
/**
|
|
1760
|
-
* The storage class
|
|
1760
|
+
* The storage class to be used for object storage
|
|
1761
1761
|
*/
|
|
1762
1762
|
storageClass: 'standard';
|
|
1763
1763
|
key: ModuleKeySchema;
|
|
1764
1764
|
},
|
|
1765
1765
|
...{
|
|
1766
1766
|
/**
|
|
1767
|
-
* The storage class
|
|
1767
|
+
* The storage class to be used for object storage
|
|
1768
1768
|
*/
|
|
1769
1769
|
storageClass: 'standard';
|
|
1770
1770
|
key: ModuleKeySchema;
|
|
@@ -13543,34 +13543,68 @@ export interface Modules {
|
|
|
13543
13543
|
)[]
|
|
13544
13544
|
];
|
|
13545
13545
|
'confluence:fullPage'?: [
|
|
13546
|
-
|
|
13547
|
-
|
|
13548
|
-
|
|
13549
|
-
|
|
13550
|
-
|
|
13551
|
-
|
|
13552
|
-
|
|
13553
|
-
|
|
13554
|
-
|
|
13555
|
-
|
|
13556
|
-
|
|
13557
|
-
|
|
13558
|
-
|
|
13559
|
-
|
|
13560
|
-
|
|
13561
|
-
|
|
13562
|
-
|
|
13563
|
-
|
|
13564
|
-
|
|
13565
|
-
|
|
13566
|
-
|
|
13567
|
-
|
|
13568
|
-
|
|
13569
|
-
|
|
13570
|
-
|
|
13571
|
-
|
|
13572
|
-
|
|
13573
|
-
|
|
13546
|
+
(
|
|
13547
|
+
| {
|
|
13548
|
+
title?:
|
|
13549
|
+
| {
|
|
13550
|
+
i18n: string;
|
|
13551
|
+
}
|
|
13552
|
+
| string;
|
|
13553
|
+
title__i18n?: string;
|
|
13554
|
+
function: string;
|
|
13555
|
+
key: ModuleKeySchema;
|
|
13556
|
+
}
|
|
13557
|
+
| {
|
|
13558
|
+
title?:
|
|
13559
|
+
| {
|
|
13560
|
+
i18n: string;
|
|
13561
|
+
}
|
|
13562
|
+
| string;
|
|
13563
|
+
title__i18n?: string;
|
|
13564
|
+
resolver?:
|
|
13565
|
+
| {
|
|
13566
|
+
function: string;
|
|
13567
|
+
}
|
|
13568
|
+
| {
|
|
13569
|
+
endpoint: string;
|
|
13570
|
+
};
|
|
13571
|
+
resource: string;
|
|
13572
|
+
resourceUploadId?: string;
|
|
13573
|
+
render?: 'native' | 'default';
|
|
13574
|
+
key: ModuleKeySchema;
|
|
13575
|
+
}
|
|
13576
|
+
),
|
|
13577
|
+
...(
|
|
13578
|
+
| {
|
|
13579
|
+
title?:
|
|
13580
|
+
| {
|
|
13581
|
+
i18n: string;
|
|
13582
|
+
}
|
|
13583
|
+
| string;
|
|
13584
|
+
title__i18n?: string;
|
|
13585
|
+
function: string;
|
|
13586
|
+
key: ModuleKeySchema;
|
|
13587
|
+
}
|
|
13588
|
+
| {
|
|
13589
|
+
title?:
|
|
13590
|
+
| {
|
|
13591
|
+
i18n: string;
|
|
13592
|
+
}
|
|
13593
|
+
| string;
|
|
13594
|
+
title__i18n?: string;
|
|
13595
|
+
resolver?:
|
|
13596
|
+
| {
|
|
13597
|
+
function: string;
|
|
13598
|
+
}
|
|
13599
|
+
| {
|
|
13600
|
+
endpoint: string;
|
|
13601
|
+
};
|
|
13602
|
+
resource: string;
|
|
13603
|
+
resourceUploadId?: string;
|
|
13604
|
+
render?: 'native' | 'default';
|
|
13605
|
+
key: ModuleKeySchema;
|
|
13606
|
+
}
|
|
13607
|
+
)[]
|
|
13574
13608
|
];
|
|
13575
13609
|
'confluence:customContent'?: [
|
|
13576
13610
|
(
|
|
@@ -14119,6 +14153,7 @@ export interface Modules {
|
|
|
14119
14153
|
displayConditions?: {
|
|
14120
14154
|
[k: string]: unknown;
|
|
14121
14155
|
};
|
|
14156
|
+
migratedFromConnect?: boolean;
|
|
14122
14157
|
key: ModuleKeySchema;
|
|
14123
14158
|
[k: string]: unknown;
|
|
14124
14159
|
}
|
|
@@ -14441,6 +14476,7 @@ export interface Modules {
|
|
|
14441
14476
|
displayConditions?: {
|
|
14442
14477
|
[k: string]: unknown;
|
|
14443
14478
|
};
|
|
14479
|
+
migratedFromConnect?: boolean;
|
|
14444
14480
|
key: ModuleKeySchema;
|
|
14445
14481
|
[k: string]: unknown;
|
|
14446
14482
|
}
|
|
@@ -132,6 +132,7 @@
|
|
|
132
132
|
"read:analytics.content:confluence",
|
|
133
133
|
"read:app-data:confluence",
|
|
134
134
|
"read:app-data:jira",
|
|
135
|
+
"read:app-global-channel:realtime",
|
|
135
136
|
"read:app-system-token",
|
|
136
137
|
"read:app-user-token",
|
|
137
138
|
"read:application-role:jira",
|
|
@@ -375,6 +376,7 @@
|
|
|
375
376
|
"write:airtrack-object:jira",
|
|
376
377
|
"write:app-data:confluence",
|
|
377
378
|
"write:app-data:jira",
|
|
379
|
+
"write:app-global-channel:realtime",
|
|
378
380
|
"write:attachment:confluence",
|
|
379
381
|
"write:attachment:jira",
|
|
380
382
|
"write:audit-log:confluence",
|