@forge/manifest 3.1.0-next.0 → 3.1.0-next.1

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
+ ## 3.1.0-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 8ee1c58: Update manifest definitions
8
+
3
9
  ## 3.1.0-next.0
4
10
 
5
11
  ### Minor Changes
@@ -3526,11 +3526,6 @@
3526
3526
  "maxLength": 23,
3527
3527
  "pattern": "^[a-zA-Z0-9_\\-]+$"
3528
3528
  },
3529
- "resourceUploadId": {
3530
- "type": "string",
3531
- "minLength": 1,
3532
- "maxLength": 255
3533
- },
3534
3529
  "key": {
3535
3530
  "$ref": "#/definitions/ModuleKeySchema"
3536
3531
  }
@@ -3618,11 +3613,6 @@
3618
3613
  "maxLength": 23,
3619
3614
  "pattern": "^[a-zA-Z0-9_\\-]+$"
3620
3615
  },
3621
- "resourceUploadId": {
3622
- "type": "string",
3623
- "minLength": 1,
3624
- "maxLength": 255
3625
- },
3626
3616
  "key": {
3627
3617
  "$ref": "#/definitions/ModuleKeySchema"
3628
3618
  }
@@ -3704,11 +3694,6 @@
3704
3694
  "maxLength": 23,
3705
3695
  "pattern": "^[a-zA-Z0-9_\\-]+$"
3706
3696
  },
3707
- "resourceUploadId": {
3708
- "type": "string",
3709
- "minLength": 1,
3710
- "maxLength": 255
3711
- },
3712
3697
  "key": {
3713
3698
  "$ref": "#/definitions/ModuleKeySchema"
3714
3699
  }
@@ -1832,7 +1832,6 @@ export interface Modules {
1832
1832
  function: string;
1833
1833
  };
1834
1834
  resource: string;
1835
- resourceUploadId?: string;
1836
1835
  key: ModuleKeySchema;
1837
1836
  [k: string]: unknown;
1838
1837
  }
@@ -1852,7 +1851,6 @@ export interface Modules {
1852
1851
  function: string;
1853
1852
  };
1854
1853
  resource: string;
1855
- resourceUploadId?: string;
1856
1854
  key: ModuleKeySchema;
1857
1855
  [k: string]: unknown;
1858
1856
  }
@@ -1876,7 +1874,6 @@ export interface Modules {
1876
1874
  };
1877
1875
  displayConditions?: DisplayConditions;
1878
1876
  resource: string;
1879
- resourceUploadId?: string;
1880
1877
  key: ModuleKeySchema;
1881
1878
  [k: string]: unknown;
1882
1879
  }
@@ -1898,7 +1895,6 @@ export interface Modules {
1898
1895
  };
1899
1896
  displayConditions?: DisplayConditions;
1900
1897
  resource: string;
1901
- resourceUploadId?: string;
1902
1898
  key: ModuleKeySchema;
1903
1899
  [k: string]: unknown;
1904
1900
  }
@@ -1920,7 +1916,6 @@ export interface Modules {
1920
1916
  function: string;
1921
1917
  };
1922
1918
  resource: string;
1923
- resourceUploadId?: string;
1924
1919
  key: ModuleKeySchema;
1925
1920
  [k: string]: unknown;
1926
1921
  }
@@ -1940,7 +1935,6 @@ export interface Modules {
1940
1935
  function: string;
1941
1936
  };
1942
1937
  resource: string;
1943
- resourceUploadId?: string;
1944
1938
  key: ModuleKeySchema;
1945
1939
  [k: string]: unknown;
1946
1940
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "3.1.0-next.0",
3
+ "version": "3.1.0-next.1",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {