@forge/manifest 13.1.0-next.1 → 13.1.0-next.2-experimental-9423de1

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 CHANGED
@@ -1,5 +1,22 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 13.1.0-next.2-experimental-9423de1
4
+
5
+ ### Minor Changes
6
+
7
+ - 4cd2242: Add jira:entityPropertySet module type for bulk entity property registration
8
+
9
+ ### Patch Changes
10
+
11
+ - c60a7a5: Update manifest definitions
12
+ - caa7518: Update manifest definitions
13
+
14
+ ## 13.1.0-next.2
15
+
16
+ ### Patch Changes
17
+
18
+ - c60a7a5: Update manifest definitions
19
+
3
20
  ## 13.1.0-next.1
4
21
 
5
22
  ### Patch Changes
@@ -23207,6 +23207,9 @@
23207
23207
  "maxLength": 300,
23208
23208
  "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
23209
23209
  },
23210
+ "useAsConfig": {
23211
+ "type": "boolean"
23212
+ },
23210
23213
  "resource": {
23211
23214
  "type": "string",
23212
23215
  "minLength": 1,
@@ -23267,6 +23270,9 @@
23267
23270
  "maxLength": 300,
23268
23271
  "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
23269
23272
  },
23273
+ "useAsConfig": {
23274
+ "type": "boolean"
23275
+ },
23270
23276
  "resolver": {
23271
23277
  "oneOf": [
23272
23278
  {
@@ -23519,6 +23525,9 @@
23519
23525
  "maxLength": 300,
23520
23526
  "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
23521
23527
  },
23528
+ "useAsGetStarted": {
23529
+ "type": "boolean"
23530
+ },
23522
23531
  "resource": {
23523
23532
  "type": "string",
23524
23533
  "minLength": 1,
@@ -23579,6 +23588,9 @@
23579
23588
  "maxLength": 300,
23580
23589
  "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
23581
23590
  },
23591
+ "useAsGetStarted": {
23592
+ "type": "boolean"
23593
+ },
23582
23594
  "resolver": {
23583
23595
  "oneOf": [
23584
23596
  {
@@ -22347,6 +22347,7 @@ export interface Modules {
22347
22347
  }
22348
22348
  | string;
22349
22349
  title__i18n?: string;
22350
+ useAsConfig?: boolean;
22350
22351
  resource?: string;
22351
22352
  function: string;
22352
22353
  key: ModuleKeySchema;
@@ -22359,6 +22360,7 @@ export interface Modules {
22359
22360
  }
22360
22361
  | string;
22361
22362
  title__i18n?: string;
22363
+ useAsConfig?: boolean;
22362
22364
  resolver?:
22363
22365
  | {
22364
22366
  function: string;
@@ -22379,6 +22381,7 @@ export interface Modules {
22379
22381
  }
22380
22382
  | string;
22381
22383
  title__i18n?: string;
22384
+ useAsConfig?: boolean;
22382
22385
  resource?: string;
22383
22386
  function: string;
22384
22387
  key: ModuleKeySchema;
@@ -22391,6 +22394,7 @@ export interface Modules {
22391
22394
  }
22392
22395
  | string;
22393
22396
  title__i18n?: string;
22397
+ useAsConfig?: boolean;
22394
22398
  resolver?:
22395
22399
  | {
22396
22400
  function: string;
@@ -22479,6 +22483,7 @@ export interface Modules {
22479
22483
  }
22480
22484
  | string;
22481
22485
  title__i18n?: string;
22486
+ useAsGetStarted?: boolean;
22482
22487
  resource?: string;
22483
22488
  function: string;
22484
22489
  key: ModuleKeySchema;
@@ -22491,6 +22496,7 @@ export interface Modules {
22491
22496
  }
22492
22497
  | string;
22493
22498
  title__i18n?: string;
22499
+ useAsGetStarted?: boolean;
22494
22500
  resolver?:
22495
22501
  | {
22496
22502
  function: string;
@@ -22511,6 +22517,7 @@ export interface Modules {
22511
22517
  }
22512
22518
  | string;
22513
22519
  title__i18n?: string;
22520
+ useAsGetStarted?: boolean;
22514
22521
  resource?: string;
22515
22522
  function: string;
22516
22523
  key: ModuleKeySchema;
@@ -22523,6 +22530,7 @@ export interface Modules {
22523
22530
  }
22524
22531
  | string;
22525
22532
  title__i18n?: string;
22533
+ useAsGetStarted?: boolean;
22526
22534
  resolver?:
22527
22535
  | {
22528
22536
  function: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "13.1.0-next.1",
3
+ "version": "13.1.0-next.2-experimental-9423de1",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {