@forge/manifest 13.1.1-next.1 → 13.1.1-next.2

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,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 13.1.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 7195f29: Update manifest definitions
8
+
3
9
  ## 13.1.1-next.1
4
10
 
5
11
  ### Patch Changes
@@ -2248,7 +2248,7 @@
2248
2248
  "maxLength": 300,
2249
2249
  "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
2250
2250
  },
2251
- "migrateFrom": {
2251
+ "migratedFrom": {
2252
2252
  "type": "array",
2253
2253
  "minItems": 1,
2254
2254
  "maxItems": 20,
@@ -6982,6 +6982,7 @@
6982
6982
  }
6983
6983
  },
6984
6984
  "required": [
6985
+ "properties",
6985
6986
  "key"
6986
6987
  ],
6987
6988
  "not": {
@@ -16908,6 +16909,17 @@
16908
16909
  },
16909
16910
  "target": {
16910
16911
  "anyOf": [
16912
+ {
16913
+ "type": "object",
16914
+ "properties": {
16915
+ "page": {
16916
+ "type": "string"
16917
+ }
16918
+ },
16919
+ "required": [
16920
+ "page"
16921
+ ]
16922
+ },
16911
16923
  {
16912
16924
  "type": "object",
16913
16925
  "properties": {
@@ -16924,6 +16936,40 @@
16924
16936
  "maxLength": 64,
16925
16937
  "pattern": "^[a-zA-Z0-9._-]+$"
16926
16938
  },
16939
+ "viewportSize": {
16940
+ "anyOf": [
16941
+ {
16942
+ "additionalProperties": false,
16943
+ "type": "object",
16944
+ "properties": {
16945
+ "width": {
16946
+ "minLength": 1,
16947
+ "maxLength": 255,
16948
+ "type": "string"
16949
+ },
16950
+ "height": {
16951
+ "minLength": 1,
16952
+ "maxLength": 255,
16953
+ "type": "string"
16954
+ }
16955
+ },
16956
+ "required": [
16957
+ "width"
16958
+ ]
16959
+ },
16960
+ {
16961
+ "enum": [
16962
+ "large",
16963
+ "max",
16964
+ "medium",
16965
+ "resizable",
16966
+ "small",
16967
+ "xlarge"
16968
+ ],
16969
+ "type": "string"
16970
+ }
16971
+ ]
16972
+ },
16927
16973
  "render": {
16928
16974
  "default": "default",
16929
16975
  "enum": [
@@ -16944,17 +16990,6 @@
16944
16990
  "required": [
16945
16991
  "resource"
16946
16992
  ]
16947
- },
16948
- {
16949
- "type": "object",
16950
- "properties": {
16951
- "page": {
16952
- "type": "string"
16953
- }
16954
- },
16955
- "required": [
16956
- "page"
16957
- ]
16958
16993
  }
16959
16994
  ]
16960
16995
  },
@@ -12560,7 +12560,7 @@ export interface Modules {
12560
12560
  }
12561
12561
  | string;
12562
12562
  title__i18n?: string;
12563
- migrateFrom?:
12563
+ migratedFrom?:
12564
12564
  | [string]
12565
12565
  | [string, string]
12566
12566
  | [string, string, string]
@@ -12852,7 +12852,7 @@ export interface Modules {
12852
12852
  }
12853
12853
  | string;
12854
12854
  title__i18n?: string;
12855
- migrateFrom?:
12855
+ migratedFrom?:
12856
12856
  | [string]
12857
12857
  | [string, string]
12858
12858
  | [string, string, string]
@@ -15016,7 +15016,7 @@ export interface Modules {
15016
15016
  ];
15017
15017
  'jira:entityPropertySet'?: [
15018
15018
  {
15019
- properties?: {
15019
+ properties: {
15020
15020
  propertyKey: string;
15021
15021
  entityType?: 'issue' | 'project' | 'user';
15022
15022
  values: {
@@ -15031,7 +15031,7 @@ export interface Modules {
15031
15031
  [k: string]: unknown;
15032
15032
  },
15033
15033
  ...{
15034
- properties?: {
15034
+ properties: {
15035
15035
  propertyKey: string;
15036
15036
  entityType?: 'issue' | 'project' | 'user';
15037
15037
  values: {
@@ -19854,19 +19854,25 @@ export interface Modules {
19854
19854
  shortcut?: string;
19855
19855
  keywords?: string[];
19856
19856
  target:
19857
+ | {
19858
+ page: string;
19859
+ [k: string]: unknown;
19860
+ }
19857
19861
  | {
19858
19862
  resource: string;
19859
19863
  /**
19860
19864
  * Internal-only resolved entry filename derived from `resource` (`<resource>/<entry>`) and injected by XLS.
19861
19865
  */
19862
19866
  resolvedResourceEntry?: string;
19867
+ viewportSize?:
19868
+ | {
19869
+ width: string;
19870
+ height?: string;
19871
+ }
19872
+ | ('large' | 'max' | 'medium' | 'resizable' | 'small' | 'xlarge');
19863
19873
  render?: 'default' | 'native';
19864
19874
  renderRuntimeType?: 'iframe' | 'webworker';
19865
19875
  [k: string]: unknown;
19866
- }
19867
- | {
19868
- page: string;
19869
- [k: string]: unknown;
19870
19876
  };
19871
19877
  resolver?:
19872
19878
  | {
@@ -19889,19 +19895,25 @@ export interface Modules {
19889
19895
  shortcut?: string;
19890
19896
  keywords?: string[];
19891
19897
  target:
19898
+ | {
19899
+ page: string;
19900
+ [k: string]: unknown;
19901
+ }
19892
19902
  | {
19893
19903
  resource: string;
19894
19904
  /**
19895
19905
  * Internal-only resolved entry filename derived from `resource` (`<resource>/<entry>`) and injected by XLS.
19896
19906
  */
19897
19907
  resolvedResourceEntry?: string;
19908
+ viewportSize?:
19909
+ | {
19910
+ width: string;
19911
+ height?: string;
19912
+ }
19913
+ | ('large' | 'max' | 'medium' | 'resizable' | 'small' | 'xlarge');
19898
19914
  render?: 'default' | 'native';
19899
19915
  renderRuntimeType?: 'iframe' | 'webworker';
19900
19916
  [k: string]: unknown;
19901
- }
19902
- | {
19903
- page: string;
19904
- [k: string]: unknown;
19905
19917
  };
19906
19918
  resolver?:
19907
19919
  | {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "13.1.1-next.1",
3
+ "version": "13.1.1-next.2",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {