@forge/manifest 10.0.1-next.2 → 10.0.1-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 +6 -0
- package/out/schema/manifest-schema.json +148 -61
- package/out/schema/manifest.d.ts +58 -24
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -637,7 +637,7 @@
|
|
|
637
637
|
"path": {
|
|
638
638
|
"type": "string",
|
|
639
639
|
"description": "The URL path for the API endpoint",
|
|
640
|
-
"pattern": "^/[a-zA-Z0-9]+(/[a-zA-Z0-9]+|/\\*)*$",
|
|
640
|
+
"pattern": "^/[a-zA-Z0-9]+(/[a-zA-Z0-9]+|/\\*)*/\\*\\*$|^/[a-zA-Z0-9]+(/[a-zA-Z0-9]+|/\\*)*$",
|
|
641
641
|
"minLength": 1,
|
|
642
642
|
"maxLength": 255
|
|
643
643
|
},
|
|
@@ -5251,66 +5251,6 @@
|
|
|
5251
5251
|
},
|
|
5252
5252
|
"minItems": 1
|
|
5253
5253
|
},
|
|
5254
|
-
"confluence:contentProperty": {
|
|
5255
|
-
"type": "array",
|
|
5256
|
-
"items": {
|
|
5257
|
-
"type": "object",
|
|
5258
|
-
"properties": {
|
|
5259
|
-
"propertyKey": {
|
|
5260
|
-
"minLength": 1,
|
|
5261
|
-
"maxLength": 255,
|
|
5262
|
-
"type": "string"
|
|
5263
|
-
},
|
|
5264
|
-
"values": {
|
|
5265
|
-
"type": "array",
|
|
5266
|
-
"items": {
|
|
5267
|
-
"type": "object",
|
|
5268
|
-
"properties": {
|
|
5269
|
-
"path": {
|
|
5270
|
-
"minLength": 1,
|
|
5271
|
-
"maxLength": 255,
|
|
5272
|
-
"type": "string"
|
|
5273
|
-
},
|
|
5274
|
-
"type": {
|
|
5275
|
-
"type": "string",
|
|
5276
|
-
"enum": [
|
|
5277
|
-
"number",
|
|
5278
|
-
"string",
|
|
5279
|
-
"text",
|
|
5280
|
-
"user",
|
|
5281
|
-
"date"
|
|
5282
|
-
]
|
|
5283
|
-
},
|
|
5284
|
-
"searchAlias": {
|
|
5285
|
-
"minLength": 1,
|
|
5286
|
-
"maxLength": 255,
|
|
5287
|
-
"pattern": "^[a-zA-Z0-9-_]+$",
|
|
5288
|
-
"type": "string"
|
|
5289
|
-
}
|
|
5290
|
-
},
|
|
5291
|
-
"required": [
|
|
5292
|
-
"path",
|
|
5293
|
-
"type"
|
|
5294
|
-
]
|
|
5295
|
-
}
|
|
5296
|
-
},
|
|
5297
|
-
"key": {
|
|
5298
|
-
"$ref": "#/definitions/ModuleKeySchema"
|
|
5299
|
-
}
|
|
5300
|
-
},
|
|
5301
|
-
"required": [
|
|
5302
|
-
"propertyKey",
|
|
5303
|
-
"values",
|
|
5304
|
-
"key"
|
|
5305
|
-
],
|
|
5306
|
-
"not": {
|
|
5307
|
-
"required": [
|
|
5308
|
-
"unlicensedAccess"
|
|
5309
|
-
]
|
|
5310
|
-
}
|
|
5311
|
-
},
|
|
5312
|
-
"minItems": 1
|
|
5313
|
-
},
|
|
5314
5254
|
"confluence:pageBanner": {
|
|
5315
5255
|
"type": "array",
|
|
5316
5256
|
"items": {
|
|
@@ -5447,6 +5387,153 @@
|
|
|
5447
5387
|
},
|
|
5448
5388
|
"minItems": 1
|
|
5449
5389
|
},
|
|
5390
|
+
"confluence:contentProperty": {
|
|
5391
|
+
"type": "array",
|
|
5392
|
+
"items": {
|
|
5393
|
+
"type": "object",
|
|
5394
|
+
"properties": {
|
|
5395
|
+
"propertyKey": {
|
|
5396
|
+
"minLength": 1,
|
|
5397
|
+
"maxLength": 100,
|
|
5398
|
+
"type": "string"
|
|
5399
|
+
},
|
|
5400
|
+
"values": {
|
|
5401
|
+
"type": "array",
|
|
5402
|
+
"items": {
|
|
5403
|
+
"type": "object",
|
|
5404
|
+
"properties": {
|
|
5405
|
+
"path": {
|
|
5406
|
+
"minLength": 1,
|
|
5407
|
+
"maxLength": 1000,
|
|
5408
|
+
"type": "string"
|
|
5409
|
+
},
|
|
5410
|
+
"type": {
|
|
5411
|
+
"type": "string",
|
|
5412
|
+
"enum": [
|
|
5413
|
+
"number",
|
|
5414
|
+
"string",
|
|
5415
|
+
"text",
|
|
5416
|
+
"user",
|
|
5417
|
+
"date"
|
|
5418
|
+
]
|
|
5419
|
+
},
|
|
5420
|
+
"searchAlias": {
|
|
5421
|
+
"minLength": 1,
|
|
5422
|
+
"maxLength": 255,
|
|
5423
|
+
"pattern": "^[a-zA-Z0-9-_]+$",
|
|
5424
|
+
"type": "string"
|
|
5425
|
+
},
|
|
5426
|
+
"uiSupport": {
|
|
5427
|
+
"type": "object",
|
|
5428
|
+
"properties": {
|
|
5429
|
+
"defaultOperator": {
|
|
5430
|
+
"type": "string",
|
|
5431
|
+
"minLength": 1,
|
|
5432
|
+
"maxLength": 100
|
|
5433
|
+
},
|
|
5434
|
+
"valueType": {
|
|
5435
|
+
"type": "string",
|
|
5436
|
+
"enum": [
|
|
5437
|
+
"space",
|
|
5438
|
+
"label",
|
|
5439
|
+
"user",
|
|
5440
|
+
"contentId",
|
|
5441
|
+
"contentType",
|
|
5442
|
+
"date",
|
|
5443
|
+
"string",
|
|
5444
|
+
"number"
|
|
5445
|
+
]
|
|
5446
|
+
},
|
|
5447
|
+
"name": {
|
|
5448
|
+
"oneOf": [
|
|
5449
|
+
{
|
|
5450
|
+
"type": "object",
|
|
5451
|
+
"additionalProperties": false,
|
|
5452
|
+
"properties": {
|
|
5453
|
+
"i18n": {
|
|
5454
|
+
"type": "string",
|
|
5455
|
+
"minLength": 1,
|
|
5456
|
+
"maxLength": 300,
|
|
5457
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
5458
|
+
}
|
|
5459
|
+
},
|
|
5460
|
+
"required": [
|
|
5461
|
+
"i18n"
|
|
5462
|
+
]
|
|
5463
|
+
},
|
|
5464
|
+
{
|
|
5465
|
+
"type": "string",
|
|
5466
|
+
"minLength": 1,
|
|
5467
|
+
"maxLength": 1500
|
|
5468
|
+
}
|
|
5469
|
+
]
|
|
5470
|
+
},
|
|
5471
|
+
"name__i18n": {
|
|
5472
|
+
"type": "string",
|
|
5473
|
+
"minLength": 1,
|
|
5474
|
+
"maxLength": 300,
|
|
5475
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
5476
|
+
},
|
|
5477
|
+
"tooltip": {
|
|
5478
|
+
"oneOf": [
|
|
5479
|
+
{
|
|
5480
|
+
"type": "object",
|
|
5481
|
+
"additionalProperties": false,
|
|
5482
|
+
"properties": {
|
|
5483
|
+
"i18n": {
|
|
5484
|
+
"type": "string",
|
|
5485
|
+
"minLength": 1,
|
|
5486
|
+
"maxLength": 300,
|
|
5487
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
5488
|
+
}
|
|
5489
|
+
},
|
|
5490
|
+
"required": [
|
|
5491
|
+
"i18n"
|
|
5492
|
+
]
|
|
5493
|
+
},
|
|
5494
|
+
{
|
|
5495
|
+
"type": "string",
|
|
5496
|
+
"minLength": 1,
|
|
5497
|
+
"maxLength": 1500
|
|
5498
|
+
}
|
|
5499
|
+
]
|
|
5500
|
+
},
|
|
5501
|
+
"tooltip__i18n": {
|
|
5502
|
+
"type": "string",
|
|
5503
|
+
"minLength": 1,
|
|
5504
|
+
"maxLength": 300,
|
|
5505
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
5506
|
+
}
|
|
5507
|
+
},
|
|
5508
|
+
"required": [
|
|
5509
|
+
"name",
|
|
5510
|
+
"valueType"
|
|
5511
|
+
]
|
|
5512
|
+
}
|
|
5513
|
+
},
|
|
5514
|
+
"required": [
|
|
5515
|
+
"path",
|
|
5516
|
+
"type"
|
|
5517
|
+
]
|
|
5518
|
+
}
|
|
5519
|
+
},
|
|
5520
|
+
"key": {
|
|
5521
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
5522
|
+
}
|
|
5523
|
+
},
|
|
5524
|
+
"required": [
|
|
5525
|
+
"propertyKey",
|
|
5526
|
+
"values",
|
|
5527
|
+
"key"
|
|
5528
|
+
],
|
|
5529
|
+
"not": {
|
|
5530
|
+
"required": [
|
|
5531
|
+
"unlicensedAccess"
|
|
5532
|
+
]
|
|
5533
|
+
}
|
|
5534
|
+
},
|
|
5535
|
+
"minItems": 1
|
|
5536
|
+
},
|
|
5450
5537
|
"jira:workflowValidator": {
|
|
5451
5538
|
"type": "array",
|
|
5452
5539
|
"items": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -13645,30 +13645,6 @@ export interface Modules {
|
|
|
13645
13645
|
}
|
|
13646
13646
|
)[]
|
|
13647
13647
|
];
|
|
13648
|
-
'confluence:contentProperty'?: [
|
|
13649
|
-
{
|
|
13650
|
-
propertyKey: string;
|
|
13651
|
-
values: {
|
|
13652
|
-
path: string;
|
|
13653
|
-
type: 'number' | 'string' | 'text' | 'user' | 'date';
|
|
13654
|
-
searchAlias?: string;
|
|
13655
|
-
[k: string]: unknown;
|
|
13656
|
-
}[];
|
|
13657
|
-
key: ModuleKeySchema;
|
|
13658
|
-
[k: string]: unknown;
|
|
13659
|
-
},
|
|
13660
|
-
...{
|
|
13661
|
-
propertyKey: string;
|
|
13662
|
-
values: {
|
|
13663
|
-
path: string;
|
|
13664
|
-
type: 'number' | 'string' | 'text' | 'user' | 'date';
|
|
13665
|
-
searchAlias?: string;
|
|
13666
|
-
[k: string]: unknown;
|
|
13667
|
-
}[];
|
|
13668
|
-
key: ModuleKeySchema;
|
|
13669
|
-
[k: string]: unknown;
|
|
13670
|
-
}[]
|
|
13671
|
-
];
|
|
13672
13648
|
'confluence:pageBanner'?: [
|
|
13673
13649
|
(
|
|
13674
13650
|
| {
|
|
@@ -13737,6 +13713,64 @@ export interface Modules {
|
|
|
13737
13713
|
}
|
|
13738
13714
|
)[]
|
|
13739
13715
|
];
|
|
13716
|
+
'confluence:contentProperty'?: [
|
|
13717
|
+
{
|
|
13718
|
+
propertyKey: string;
|
|
13719
|
+
values: {
|
|
13720
|
+
path: string;
|
|
13721
|
+
type: 'number' | 'string' | 'text' | 'user' | 'date';
|
|
13722
|
+
searchAlias?: string;
|
|
13723
|
+
uiSupport?: {
|
|
13724
|
+
defaultOperator?: string;
|
|
13725
|
+
valueType: 'space' | 'label' | 'user' | 'contentId' | 'contentType' | 'date' | 'string' | 'number';
|
|
13726
|
+
name:
|
|
13727
|
+
| {
|
|
13728
|
+
i18n: string;
|
|
13729
|
+
}
|
|
13730
|
+
| string;
|
|
13731
|
+
name__i18n?: string;
|
|
13732
|
+
tooltip?:
|
|
13733
|
+
| {
|
|
13734
|
+
i18n: string;
|
|
13735
|
+
}
|
|
13736
|
+
| string;
|
|
13737
|
+
tooltip__i18n?: string;
|
|
13738
|
+
[k: string]: unknown;
|
|
13739
|
+
};
|
|
13740
|
+
[k: string]: unknown;
|
|
13741
|
+
}[];
|
|
13742
|
+
key: ModuleKeySchema;
|
|
13743
|
+
[k: string]: unknown;
|
|
13744
|
+
},
|
|
13745
|
+
...{
|
|
13746
|
+
propertyKey: string;
|
|
13747
|
+
values: {
|
|
13748
|
+
path: string;
|
|
13749
|
+
type: 'number' | 'string' | 'text' | 'user' | 'date';
|
|
13750
|
+
searchAlias?: string;
|
|
13751
|
+
uiSupport?: {
|
|
13752
|
+
defaultOperator?: string;
|
|
13753
|
+
valueType: 'space' | 'label' | 'user' | 'contentId' | 'contentType' | 'date' | 'string' | 'number';
|
|
13754
|
+
name:
|
|
13755
|
+
| {
|
|
13756
|
+
i18n: string;
|
|
13757
|
+
}
|
|
13758
|
+
| string;
|
|
13759
|
+
name__i18n?: string;
|
|
13760
|
+
tooltip?:
|
|
13761
|
+
| {
|
|
13762
|
+
i18n: string;
|
|
13763
|
+
}
|
|
13764
|
+
| string;
|
|
13765
|
+
tooltip__i18n?: string;
|
|
13766
|
+
[k: string]: unknown;
|
|
13767
|
+
};
|
|
13768
|
+
[k: string]: unknown;
|
|
13769
|
+
}[];
|
|
13770
|
+
key: ModuleKeySchema;
|
|
13771
|
+
[k: string]: unknown;
|
|
13772
|
+
}[]
|
|
13773
|
+
];
|
|
13740
13774
|
'jira:workflowValidator'?: [
|
|
13741
13775
|
{
|
|
13742
13776
|
name:
|