@forge/manifest 13.1.0-next.0 → 13.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
+ ## 13.1.0-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - caa7518: Update manifest definitions
8
+
3
9
  ## 13.1.0-next.0
4
10
 
5
11
  ### Minor Changes
@@ -6901,85 +6901,6 @@
6901
6901
  },
6902
6902
  "minItems": 1
6903
6903
  },
6904
- "jira:entityPropertySet": {
6905
- "type": "array",
6906
- "items": {
6907
- "type": "object",
6908
- "properties": {
6909
- "key": {
6910
- "$ref": "#/definitions/ModuleKeySchema"
6911
- },
6912
- "resource": {
6913
- "type": "string",
6914
- "description": "Path to sidecar YAML file containing entity property definitions"
6915
- },
6916
- "properties": {
6917
- "type": "array",
6918
- "description": "List of entity property definitions (populated from sidecar YAML by XLS at deploy time)",
6919
- "items": {
6920
- "type": "object",
6921
- "properties": {
6922
- "propertyKey": {
6923
- "minLength": 1,
6924
- "maxLength": 255,
6925
- "type": "string"
6926
- },
6927
- "entityType": {
6928
- "default": "issue",
6929
- "enum": [
6930
- "issue",
6931
- "project",
6932
- "user"
6933
- ],
6934
- "type": "string"
6935
- },
6936
- "values": {
6937
- "type": "array",
6938
- "minItems": 1,
6939
- "items": {
6940
- "type": "object",
6941
- "properties": {
6942
- "path": {
6943
- "minLength": 1,
6944
- "maxLength": 255,
6945
- "type": "string"
6946
- },
6947
- "type": {
6948
- "type": "string",
6949
- "enum": [
6950
- "number",
6951
- "string",
6952
- "text",
6953
- "user",
6954
- "date"
6955
- ]
6956
- },
6957
- "searchAlias": {
6958
- "minLength": 1,
6959
- "maxLength": 255,
6960
- "pattern": "^[a-zA-Z0-9._-]+$",
6961
- "type": "string"
6962
- }
6963
- },
6964
- "required": [
6965
- "path",
6966
- "type"
6967
- ]
6968
- }
6969
- }
6970
- },
6971
- "required": [
6972
- "propertyKey",
6973
- "values"
6974
- ]
6975
- }
6976
- }
6977
- },
6978
- "required": [
6979
- "key"
6980
- ]
6981
- }
6982
- },
6983
6904
  "jira:entityProperty": {
6984
6905
  "type": "array",
6985
6906
  "items": {
@@ -14716,36 +14716,6 @@ export interface Modules {
14716
14716
  [k: string]: unknown;
14717
14717
  }[]
14718
14718
  ];
14719
- 'jira:entityPropertySet'?: {
14720
- key: ModuleKeySchema;
14721
- /**
14722
- * Path to sidecar YAML file containing entity property definitions
14723
- */
14724
- resource?: string;
14725
- /**
14726
- * List of entity property definitions (populated from sidecar YAML by XLS at deploy time)
14727
- */
14728
- properties?: {
14729
- propertyKey: string;
14730
- entityType?: 'issue' | 'project' | 'user';
14731
- values: [
14732
- {
14733
- path: string;
14734
- type: 'number' | 'string' | 'text' | 'user' | 'date';
14735
- searchAlias?: string;
14736
- [k: string]: unknown;
14737
- },
14738
- ...{
14739
- path: string;
14740
- type: 'number' | 'string' | 'text' | 'user' | 'date';
14741
- searchAlias?: string;
14742
- [k: string]: unknown;
14743
- }[]
14744
- ];
14745
- [k: string]: unknown;
14746
- }[];
14747
- [k: string]: unknown;
14748
- }[];
14749
14719
  'jira:entityProperty'?: [
14750
14720
  {
14751
14721
  propertyKey: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "13.1.0-next.0",
3
+ "version": "13.1.0-next.1",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {