@forge/manifest 13.5.0-next.2 → 13.5.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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 13.5.0-next.3
4
+
5
+ ### Minor Changes
6
+
7
+ - fe8d182: Add `inline-bodied` as a supported layout for Confluence macro modules.
8
+
9
+ ### Patch Changes
10
+
11
+ - eda3a24: Update manifest definitions
12
+
3
13
  ## 13.5.0-next.2
4
14
 
5
15
  ### Patch Changes
@@ -2764,7 +2764,8 @@
2764
2764
  "enum": [
2765
2765
  "inline",
2766
2766
  "block",
2767
- "bodied"
2767
+ "bodied",
2768
+ "inline-bodied"
2768
2769
  ],
2769
2770
  "type": "string",
2770
2771
  "default": "block"
@@ -20027,7 +20028,8 @@
20027
20028
  "view_request",
20028
20029
  "my_requests",
20029
20030
  "approvals",
20030
- "profile"
20031
+ "profile",
20032
+ "csm_help_center"
20031
20033
  ]
20032
20034
  }
20033
20035
  },
@@ -20075,7 +20077,8 @@
20075
20077
  "view_request",
20076
20078
  "my_requests",
20077
20079
  "approvals",
20078
- "profile"
20080
+ "profile",
20081
+ "csm_help_center"
20079
20082
  ]
20080
20083
  }
20081
20084
  },
@@ -33248,7 +33251,12 @@
33248
33251
  "resource",
33249
33252
  "render",
33250
33253
  "key"
33251
- ]
33254
+ ],
33255
+ "not": {
33256
+ "required": [
33257
+ "unlicensedAccess"
33258
+ ]
33259
+ }
33252
33260
  },
33253
33261
  "minItems": 1
33254
33262
  },
@@ -33352,16 +33360,6 @@
33352
33360
  }
33353
33361
  ]
33354
33362
  },
33355
- "unlicensedAccess": {
33356
- "type": "array",
33357
- "items": {
33358
- "type": "string",
33359
- "enum": [
33360
- "unlicensed",
33361
- "anonymous"
33362
- ]
33363
- }
33364
- },
33365
33363
  "key": {
33366
33364
  "$ref": "#/definitions/ModuleKeySchema"
33367
33365
  }
@@ -33370,7 +33368,12 @@
33370
33368
  "resource",
33371
33369
  "routePrefix",
33372
33370
  "key"
33373
- ]
33371
+ ],
33372
+ "not": {
33373
+ "required": [
33374
+ "unlicensedAccess"
33375
+ ]
33376
+ }
33374
33377
  },
33375
33378
  {
33376
33379
  "type": "object",
@@ -33484,16 +33487,6 @@
33484
33487
  "minLength": 1,
33485
33488
  "maxLength": 255
33486
33489
  },
33487
- "unlicensedAccess": {
33488
- "type": "array",
33489
- "items": {
33490
- "type": "string",
33491
- "enum": [
33492
- "unlicensed",
33493
- "anonymous"
33494
- ]
33495
- }
33496
- },
33497
33490
  "key": {
33498
33491
  "$ref": "#/definitions/ModuleKeySchema"
33499
33492
  }
@@ -33503,7 +33496,12 @@
33503
33496
  "routePrefix",
33504
33497
  "render",
33505
33498
  "key"
33506
- ]
33499
+ ],
33500
+ "not": {
33501
+ "required": [
33502
+ "unlicensedAccess"
33503
+ ]
33504
+ }
33507
33505
  }
33508
33506
  ]
33509
33507
  },
@@ -12863,7 +12863,7 @@ export interface Modules {
12863
12863
  };
12864
12864
  render?: 'native' | 'default';
12865
12865
  renderRuntimeType?: 'webworker' | 'iframe';
12866
- layout?: 'inline' | 'block' | 'bodied';
12866
+ layout?: 'inline' | 'block' | 'bodied' | 'inline-bodied';
12867
12867
  emitsReadyEvent?: boolean;
12868
12868
  hidden?: boolean;
12869
12869
  key: ModuleKeySchema;
@@ -13210,7 +13210,7 @@ export interface Modules {
13210
13210
  };
13211
13211
  render?: 'native' | 'default';
13212
13212
  renderRuntimeType?: 'webworker' | 'iframe';
13213
- layout?: 'inline' | 'block' | 'bodied';
13213
+ layout?: 'inline' | 'block' | 'bodied' | 'inline-bodied';
13214
13214
  emitsReadyEvent?: boolean;
13215
13215
  hidden?: boolean;
13216
13216
  key: ModuleKeySchema;
@@ -21367,6 +21367,7 @@ export interface Modules {
21367
21367
  | 'my_requests'
21368
21368
  | 'approvals'
21369
21369
  | 'profile'
21370
+ | 'csm_help_center'
21370
21371
  )[];
21371
21372
  viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
21372
21373
  function: string;
@@ -21385,6 +21386,7 @@ export interface Modules {
21385
21386
  | 'my_requests'
21386
21387
  | 'approvals'
21387
21388
  | 'profile'
21389
+ | 'csm_help_center'
21388
21390
  )[];
21389
21391
  viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
21390
21392
  resolver?:
@@ -21416,6 +21418,7 @@ export interface Modules {
21416
21418
  | 'my_requests'
21417
21419
  | 'approvals'
21418
21420
  | 'profile'
21421
+ | 'csm_help_center'
21419
21422
  )[];
21420
21423
  viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
21421
21424
  function: string;
@@ -21434,6 +21437,7 @@ export interface Modules {
21434
21437
  | 'my_requests'
21435
21438
  | 'approvals'
21436
21439
  | 'profile'
21440
+ | 'csm_help_center'
21437
21441
  )[];
21438
21442
  viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
21439
21443
  resolver?:
@@ -27809,7 +27813,6 @@ export interface Modules {
27809
27813
  | {
27810
27814
  endpoint: string;
27811
27815
  };
27812
- unlicensedAccess?: ('unlicensed' | 'anonymous')[];
27813
27816
  key: ModuleKeySchema;
27814
27817
  }
27815
27818
  | {
@@ -27833,7 +27836,6 @@ export interface Modules {
27833
27836
  renderRuntimeType?: 'webworker' | 'iframe';
27834
27837
  routePrefix: string;
27835
27838
  icon?: string;
27836
- unlicensedAccess?: ('unlicensed' | 'anonymous')[];
27837
27839
  key: ModuleKeySchema;
27838
27840
  }
27839
27841
  ),
@@ -27857,7 +27859,6 @@ export interface Modules {
27857
27859
  | {
27858
27860
  endpoint: string;
27859
27861
  };
27860
- unlicensedAccess?: ('unlicensed' | 'anonymous')[];
27861
27862
  key: ModuleKeySchema;
27862
27863
  }
27863
27864
  | {
@@ -27881,7 +27882,6 @@ export interface Modules {
27881
27882
  renderRuntimeType?: 'webworker' | 'iframe';
27882
27883
  routePrefix: string;
27883
27884
  icon?: string;
27884
- unlicensedAccess?: ('unlicensed' | 'anonymous')[];
27885
27885
  key: ModuleKeySchema;
27886
27886
  }
27887
27887
  )[]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "13.5.0-next.2",
3
+ "version": "13.5.0-next.3",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {