@forge/manifest 3.3.0-next.6 → 3.3.0-next.9

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,27 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 3.3.0-next.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 720953f: Update manifest definitions
8
+
9
+ ## 3.3.0-next.8
10
+
11
+ ### Minor Changes
12
+
13
+ - fcd95803: Add support for compass:teamPage extensions
14
+
15
+ ### Patch Changes
16
+
17
+ - e65d33e6: Update manifest definitions
18
+
19
+ ## 3.3.0-next.7
20
+
21
+ ### Patch Changes
22
+
23
+ - 8e35955: Update manifest definitions
24
+
3
25
  ## 3.3.0-next.6
4
26
 
5
27
  ### Patch Changes
@@ -3974,6 +3974,87 @@
3974
3974
  },
3975
3975
  "minItems": 1
3976
3976
  },
3977
+ "compass:teamPage": {
3978
+ "type": "array",
3979
+ "items": {
3980
+ "oneOf": [
3981
+ {
3982
+ "type": "object",
3983
+ "required": [
3984
+ "title",
3985
+ "function",
3986
+ "key"
3987
+ ],
3988
+ "properties": {
3989
+ "title": {
3990
+ "type": "string",
3991
+ "minLength": 1,
3992
+ "maxLength": 255
3993
+ },
3994
+ "icon": {
3995
+ "type": "string",
3996
+ "minLength": 1,
3997
+ "maxLength": 255
3998
+ },
3999
+ "function": {
4000
+ "type": "string",
4001
+ "minLength": 1,
4002
+ "maxLength": 255,
4003
+ "pattern": "^[a-zA-Z0-9-_]+$"
4004
+ },
4005
+ "key": {
4006
+ "$ref": "#/definitions/ModuleKeySchema"
4007
+ }
4008
+ }
4009
+ },
4010
+ {
4011
+ "type": "object",
4012
+ "required": [
4013
+ "title",
4014
+ "resource",
4015
+ "key"
4016
+ ],
4017
+ "properties": {
4018
+ "title": {
4019
+ "type": "string",
4020
+ "minLength": 1,
4021
+ "maxLength": 255
4022
+ },
4023
+ "icon": {
4024
+ "type": "string",
4025
+ "minLength": 1,
4026
+ "maxLength": 255
4027
+ },
4028
+ "resolver": {
4029
+ "additionalProperties": false,
4030
+ "type": "object",
4031
+ "properties": {
4032
+ "function": {
4033
+ "type": "string",
4034
+ "minLength": 1,
4035
+ "maxLength": 255,
4036
+ "pattern": "^[a-zA-Z0-9-_]+$"
4037
+ }
4038
+ },
4039
+ "required": [
4040
+ "function"
4041
+ ]
4042
+ },
4043
+ "resource": {
4044
+ "type": "string",
4045
+ "minLength": 1,
4046
+ "maxLength": 23,
4047
+ "pattern": "^[a-zA-Z0-9_\\-]+$"
4048
+ },
4049
+ "key": {
4050
+ "$ref": "#/definitions/ModuleKeySchema"
4051
+ }
4052
+ }
4053
+ }
4054
+ ]
4055
+ },
4056
+ "minItems": 1
4057
+ },
3977
4058
  "jiraServiceManagement:queuePage": {
3978
4059
  "type": "array",
3979
4060
  "items": {
@@ -7445,10 +7526,10 @@
7445
7526
  "type": "object",
7446
7527
  "anyOf": [
7447
7528
  {
7448
- "$ref": "#/definitions/compositeCondition"
7529
+ "$ref": "#/definitions/singleCondition"
7449
7530
  },
7450
7531
  {
7451
- "$ref": "#/definitions/singleCondition"
7532
+ "$ref": "#/definitions/compositeCondition"
7452
7533
  }
7453
7534
  ]
7454
7535
  },
@@ -7509,10 +7590,10 @@
7509
7590
  "type": "object",
7510
7591
  "anyOf": [
7511
7592
  {
7512
- "$ref": "#/definitions/compositeCondition"
7593
+ "$ref": "#/definitions/singleCondition"
7513
7594
  },
7514
7595
  {
7515
- "$ref": "#/definitions/singleCondition"
7596
+ "$ref": "#/definitions/compositeCondition"
7516
7597
  }
7517
7598
  ]
7518
7599
  },
@@ -7625,10 +7706,10 @@
7625
7706
  "type": "object",
7626
7707
  "anyOf": [
7627
7708
  {
7628
- "$ref": "#/definitions/compositeCondition"
7709
+ "$ref": "#/definitions/singleCondition"
7629
7710
  },
7630
7711
  {
7631
- "$ref": "#/definitions/singleCondition"
7712
+ "$ref": "#/definitions/compositeCondition"
7632
7713
  }
7633
7714
  ]
7634
7715
  },
@@ -7895,10 +7976,10 @@
7895
7976
  "type": "object",
7896
7977
  "anyOf": [
7897
7978
  {
7898
- "$ref": "#"
7979
+ "$ref": "#/definitions/singleCondition"
7899
7980
  },
7900
7981
  {
7901
- "$ref": "#/definitions/singleCondition"
7982
+ "$ref": "#"
7902
7983
  }
7903
7984
  ]
7904
7985
  },
@@ -8158,10 +8239,10 @@
8158
8239
  "type": "object",
8159
8240
  "anyOf": [
8160
8241
  {
8161
- "$ref": "#"
8242
+ "$ref": "#/definitions/singleCondition"
8162
8243
  },
8163
8244
  {
8164
- "$ref": "#/definitions/singleCondition"
8245
+ "$ref": "#"
8165
8246
  }
8166
8247
  ]
8167
8248
  },
@@ -8458,35 +8539,35 @@
8458
8539
  "anyOf": [
8459
8540
  {
8460
8541
  "properties": {
8461
- "label": {
8462
- "$ref": "#/definitions/i18nProperty",
8463
- "fieldDescription": "\n\nText which will appear inside the button\n\n"
8542
+ "macroParameter": {
8543
+ "maxLength": 100,
8544
+ "type": "string",
8545
+ "fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
8464
8546
  },
8465
8547
  "type": {
8466
8548
  "enum": [
8467
- "button",
8468
- "BUTTON"
8549
+ "text",
8550
+ "TEXT"
8469
8551
  ],
8470
8552
  "type": "string",
8471
- "fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
8553
+ "fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
8472
8554
  },
8473
8555
  "key": {
8474
8556
  "pattern": "^[a-zA-Z0-9-]+$",
8475
8557
  "maxLength": 100,
8476
8558
  "type": "string",
8477
- "fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
8559
+ "fieldDescription": "\n\nA key to identify this module.\n\n This key must be unique relative to the add on, with the exception of Confluence macros: Their keys need to be\n globally unique.\n\n Keys must only contain alphanumeric characters and dashes.\n\n The key is used to generate the url to your add-on's module. The url is generated as a combination of your add-on\n key and module key. For example, an add-on which looks like:\n\n {\n \"key\": \"my-addon\",\n \"modules\": {\n \"configurePage\": {\n \"key\": \"configure-me\",\n }\n }\n }\n\n Will have a configuration page module with a URL of `/plugins/servlet/ac/my-addon/configure-me`.\n\n"
8478
8560
  }
8479
8561
  },
8480
8562
  "required": [
8481
- "label",
8563
+ "macroParameter",
8482
8564
  "type",
8483
8565
  "key"
8484
8566
  ],
8485
- "additionalProperties": true,
8486
- "shortClassName": "buttonControlBean",
8567
+ "shortClassName": "textControlBean",
8487
8568
  "type": "object",
8488
- "title": "ButtonControl",
8489
- "description": "\n\nDefines a button which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
8569
+ "title": "TextControl",
8570
+ "description": "\n\nDefines a text field which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
8490
8571
  },
8491
8572
  {
8492
8573
  "properties": {
@@ -8615,35 +8696,35 @@
8615
8696
  },
8616
8697
  {
8617
8698
  "properties": {
8618
- "macroParameter": {
8619
- "maxLength": 100,
8620
- "type": "string",
8621
- "fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
8699
+ "label": {
8700
+ "$ref": "#/definitions/i18nProperty",
8701
+ "fieldDescription": "\n\nText which will appear inside the button\n\n"
8622
8702
  },
8623
8703
  "type": {
8624
8704
  "enum": [
8625
- "text",
8626
- "TEXT"
8705
+ "button",
8706
+ "BUTTON"
8627
8707
  ],
8628
8708
  "type": "string",
8629
- "fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
8709
+ "fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
8630
8710
  },
8631
8711
  "key": {
8632
8712
  "pattern": "^[a-zA-Z0-9-]+$",
8633
8713
  "maxLength": 100,
8634
8714
  "type": "string",
8635
- "fieldDescription": "\n\nA key to identify this module.\n\n This key must be unique relative to the add on, with the exception of Confluence macros: Their keys need to be\n globally unique.\n\n Keys must only contain alphanumeric characters and dashes.\n\n The key is used to generate the url to your add-on's module. The url is generated as a combination of your add-on\n key and module key. For example, an add-on which looks like:\n\n {\n \"key\": \"my-addon\",\n \"modules\": {\n \"configurePage\": {\n \"key\": \"configure-me\",\n }\n }\n }\n\n Will have a configuration page module with a URL of `/plugins/servlet/ac/my-addon/configure-me`.\n\n"
8715
+ "fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
8636
8716
  }
8637
8717
  },
8638
8718
  "required": [
8639
- "macroParameter",
8719
+ "label",
8640
8720
  "type",
8641
8721
  "key"
8642
8722
  ],
8643
- "shortClassName": "textControlBean",
8723
+ "additionalProperties": true,
8724
+ "shortClassName": "buttonControlBean",
8644
8725
  "type": "object",
8645
- "title": "TextControl",
8646
- "description": "\n\nDefines a text field which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
8726
+ "title": "ButtonControl",
8727
+ "description": "\n\nDefines a button which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
8647
8728
  }
8648
8729
  ]
8649
8730
  },
@@ -8938,38 +9019,6 @@
8938
9019
  "items": {
8939
9020
  "type": "object",
8940
9021
  "anyOf": [
8941
- {
8942
- "properties": {
8943
- "label": {
8944
- "$ref": "#/definitions/i18nProperty",
8945
- "fieldDescription": "\n\nText which will appear inside the button\n\n"
8946
- },
8947
- "type": {
8948
- "enum": [
8949
- "button",
8950
- "BUTTON"
8951
- ],
8952
- "type": "string",
8953
- "fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
8954
- },
8955
- "key": {
8956
- "pattern": "^[a-zA-Z0-9-]+$",
8957
- "maxLength": 100,
8958
- "type": "string",
8959
- "fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
8960
- }
8961
- },
8962
- "required": [
8963
- "label",
8964
- "type",
8965
- "key"
8966
- ],
8967
- "additionalProperties": true,
8968
- "shortClassName": "buttonControlBean",
8969
- "type": "object",
8970
- "title": "ButtonControl",
8971
- "description": "\n\nDefines a button which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
8972
- },
8973
9022
  {
8974
9023
  "properties": {
8975
9024
  "controls": {
@@ -9039,6 +9088,70 @@
9039
9088
  "title": "ToggleGroup",
9040
9089
  "description": "\n\nDefines a ToggleGroup which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n [\n {\n \"type\": \"togglegroup\",\n \"macroParameter\": \"toggleGroupMacroParameter\",\n \"controls\": [\n {\n \"type\": \"togglebutton\",\n \"macroParameterValue\": \"macroParameterValue 0\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-toggle-button-0\"\n },\n {\n \"type\": \"togglebutton\",\n \"macroParameterValue\": \"macroParameterValue 1\",\n \"label\": {\n \"value\": \"My Custom Control 1\"\n },\n \"key\": \"my-custom-toggle-button-1\"\n }\n ]\n }\n ]\n\n\n"
9041
9090
  },
9091
+ {
9092
+ "properties": {
9093
+ "macroParameter": {
9094
+ "maxLength": 100,
9095
+ "type": "string",
9096
+ "fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
9097
+ },
9098
+ "type": {
9099
+ "enum": [
9100
+ "text",
9101
+ "TEXT"
9102
+ ],
9103
+ "type": "string",
9104
+ "fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
9105
+ },
9106
+ "key": {
9107
+ "pattern": "^[a-zA-Z0-9-]+$",
9108
+ "maxLength": 100,
9109
+ "type": "string",
9110
+ "fieldDescription": "\n\nA key to identify this module.\n\n This key must be unique relative to the add on, with the exception of Confluence macros: Their keys need to be\n globally unique.\n\n Keys must only contain alphanumeric characters and dashes.\n\n The key is used to generate the url to your add-on's module. The url is generated as a combination of your add-on\n key and module key. For example, an add-on which looks like:\n\n {\n \"key\": \"my-addon\",\n \"modules\": {\n \"configurePage\": {\n \"key\": \"configure-me\",\n }\n }\n }\n\n Will have a configuration page module with a URL of `/plugins/servlet/ac/my-addon/configure-me`.\n\n"
9111
+ }
9112
+ },
9113
+ "required": [
9114
+ "macroParameter",
9115
+ "type",
9116
+ "key"
9117
+ ],
9118
+ "shortClassName": "textControlBean",
9119
+ "type": "object",
9120
+ "title": "TextControl",
9121
+ "description": "\n\nDefines a text field which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
9122
+ },
9123
+ {
9124
+ "properties": {
9125
+ "label": {
9126
+ "$ref": "#/definitions/i18nProperty",
9127
+ "fieldDescription": "\n\nText which will appear inside the button\n\n"
9128
+ },
9129
+ "type": {
9130
+ "enum": [
9131
+ "button",
9132
+ "BUTTON"
9133
+ ],
9134
+ "type": "string",
9135
+ "fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
9136
+ },
9137
+ "key": {
9138
+ "pattern": "^[a-zA-Z0-9-]+$",
9139
+ "maxLength": 100,
9140
+ "type": "string",
9141
+ "fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
9142
+ }
9143
+ },
9144
+ "required": [
9145
+ "label",
9146
+ "type",
9147
+ "key"
9148
+ ],
9149
+ "additionalProperties": true,
9150
+ "shortClassName": "buttonControlBean",
9151
+ "type": "object",
9152
+ "title": "ButtonControl",
9153
+ "description": "\n\nDefines a button which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
9154
+ },
9042
9155
  {
9043
9156
  "properties": {
9044
9157
  "controls": {
@@ -9094,38 +9207,6 @@
9094
9207
  "type": "object",
9095
9208
  "title": "ControlGroup",
9096
9209
  "description": "\n\nDefines a ControlGroup which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n [\n {\n \"type\": \"group\",\n \"controls\": [\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n },\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 1\"\n },\n \"key\": \"my-custom-control-1\"\n }\n ]\n }\n ]\n\n\n"
9097
- },
9098
- {
9099
- "properties": {
9100
- "macroParameter": {
9101
- "maxLength": 100,
9102
- "type": "string",
9103
- "fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
9104
- },
9105
- "type": {
9106
- "enum": [
9107
- "text",
9108
- "TEXT"
9109
- ],
9110
- "type": "string",
9111
- "fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
9112
- },
9113
- "key": {
9114
- "pattern": "^[a-zA-Z0-9-]+$",
9115
- "maxLength": 100,
9116
- "type": "string",
9117
- "fieldDescription": "\n\nA key to identify this module.\n\n This key must be unique relative to the add on, with the exception of Confluence macros: Their keys need to be\n globally unique.\n\n Keys must only contain alphanumeric characters and dashes.\n\n The key is used to generate the url to your add-on's module. The url is generated as a combination of your add-on\n key and module key. For example, an add-on which looks like:\n\n {\n \"key\": \"my-addon\",\n \"modules\": {\n \"configurePage\": {\n \"key\": \"configure-me\",\n }\n }\n }\n\n Will have a configuration page module with a URL of `/plugins/servlet/ac/my-addon/configure-me`.\n\n"
9118
- }
9119
- },
9120
- "required": [
9121
- "macroParameter",
9122
- "type",
9123
- "key"
9124
- ],
9125
- "shortClassName": "textControlBean",
9126
- "type": "object",
9127
- "title": "TextControl",
9128
- "description": "\n\nDefines a text field which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
9129
9210
  }
9130
9211
  ]
9131
9212
  },
@@ -10800,10 +10881,10 @@
10800
10881
  "type": "object",
10801
10882
  "anyOf": [
10802
10883
  {
10803
- "$ref": "#"
10884
+ "$ref": "#/definitions/singleCondition"
10804
10885
  },
10805
10886
  {
10806
- "$ref": "#/definitions/singleCondition"
10887
+ "$ref": "#"
10807
10888
  }
10808
10889
  ]
10809
10890
  },
@@ -2175,6 +2175,46 @@ export interface Modules {
2175
2175
  }
2176
2176
  )[]
2177
2177
  ];
2178
+ 'compass:teamPage'?: [
2179
+ (
2180
+ | {
2181
+ title: string;
2182
+ icon?: string;
2183
+ function: string;
2184
+ key: ModuleKeySchema;
2185
+ [k: string]: unknown;
2186
+ }
2187
+ | {
2188
+ title: string;
2189
+ icon?: string;
2190
+ resolver?: {
2191
+ function: string;
2192
+ };
2193
+ resource: string;
2194
+ key: ModuleKeySchema;
2195
+ [k: string]: unknown;
2196
+ }
2197
+ ),
2198
+ ...(
2199
+ | {
2200
+ title: string;
2201
+ icon?: string;
2202
+ function: string;
2203
+ key: ModuleKeySchema;
2204
+ [k: string]: unknown;
2205
+ }
2206
+ | {
2207
+ title: string;
2208
+ icon?: string;
2209
+ resolver?: {
2210
+ function: string;
2211
+ };
2212
+ resource: string;
2213
+ key: ModuleKeySchema;
2214
+ [k: string]: unknown;
2215
+ }
2216
+ )[]
2217
+ ];
2178
2218
  'jiraServiceManagement:queuePage'?: [
2179
2219
  (
2180
2220
  | {
@@ -3670,7 +3710,7 @@ export interface Modules {
3670
3710
  filter?: string;
3671
3711
  excludeBody?: boolean;
3672
3712
  event?: string;
3673
- conditions?: (CompositeCondition | SingleCondition)[];
3713
+ conditions?: (SingleCondition | CompositeCondition)[];
3674
3714
  propertyKeys?: string[];
3675
3715
  url?: string;
3676
3716
  key: ModuleKeySchema;
@@ -3680,7 +3720,7 @@ export interface Modules {
3680
3720
  filter?: string;
3681
3721
  excludeBody?: boolean;
3682
3722
  event?: string;
3683
- conditions?: (CompositeCondition | SingleCondition)[];
3723
+ conditions?: (SingleCondition | CompositeCondition)[];
3684
3724
  propertyKeys?: string[];
3685
3725
  url?: string;
3686
3726
  key: ModuleKeySchema;
@@ -3694,7 +3734,7 @@ export interface Modules {
3694
3734
  weight?: number;
3695
3735
  cacheable?: boolean;
3696
3736
  location?: string;
3697
- conditions?: (CompositeCondition | SingleCondition)[];
3737
+ conditions?: (SingleCondition | CompositeCondition)[];
3698
3738
  params?: {
3699
3739
  [k: string]: unknown;
3700
3740
  };
@@ -3708,7 +3748,7 @@ export interface Modules {
3708
3748
  weight?: number;
3709
3749
  cacheable?: boolean;
3710
3750
  location?: string;
3711
- conditions?: (CompositeCondition | SingleCondition)[];
3751
+ conditions?: (SingleCondition | CompositeCondition)[];
3712
3752
  params?: {
3713
3753
  [k: string]: unknown;
3714
3754
  };
@@ -3750,7 +3790,7 @@ export interface Modules {
3750
3790
  weight?: number;
3751
3791
  cacheable?: boolean;
3752
3792
  location?: string;
3753
- conditions?: (CompositeCondition | SingleCondition)[];
3793
+ conditions?: (SingleCondition | CompositeCondition)[];
3754
3794
  params?: {
3755
3795
  [k: string]: unknown;
3756
3796
  };
@@ -3764,7 +3804,7 @@ export interface Modules {
3764
3804
  weight?: number;
3765
3805
  cacheable?: boolean;
3766
3806
  location?: string;
3767
- conditions?: (CompositeCondition | SingleCondition)[];
3807
+ conditions?: (SingleCondition | CompositeCondition)[];
3768
3808
  params?: {
3769
3809
  [k: string]: unknown;
3770
3810
  };
@@ -4327,7 +4367,7 @@ export interface I18NProperty1 {
4327
4367
  *
4328
4368
  */
4329
4369
  export interface CompositeCondition {
4330
- conditions?: (ManifestSchema | SingleCondition)[];
4370
+ conditions?: (SingleCondition | ManifestSchema)[];
4331
4371
  type?: 'and' | 'AND' | 'or' | 'OR';
4332
4372
  [k: string]: unknown;
4333
4373
  }
@@ -7293,7 +7333,7 @@ export interface SingleCondition4 {
7293
7333
  *
7294
7334
  */
7295
7335
  export interface CompositeCondition6 {
7296
- conditions?: (ManifestSchema | SingleCondition)[];
7336
+ conditions?: (SingleCondition | ManifestSchema)[];
7297
7337
  type?: 'and' | 'AND' | 'or' | 'OR';
7298
7338
  [k: string]: unknown;
7299
7339
  }
@@ -7719,7 +7759,7 @@ export interface SingleCondition5 {
7719
7759
  *
7720
7760
  */
7721
7761
  export interface CompositeCondition7 {
7722
- conditions?: (ManifestSchema | SingleCondition)[];
7762
+ conditions?: (SingleCondition | ManifestSchema)[];
7723
7763
  type?: 'and' | 'AND' | 'or' | 'OR';
7724
7764
  [k: string]: unknown;
7725
7765
  }
@@ -9142,7 +9182,7 @@ export interface I18NProperty74 {
9142
9182
  *
9143
9183
  */
9144
9184
  export interface MacroPropertyPanel {
9145
- controls?: (ButtonControl | ToggleGroup | ControlGroup | TextControl)[];
9185
+ controls?: (TextControl | ToggleGroup | ControlGroup | ButtonControl1)[];
9146
9186
  cacheable?: boolean;
9147
9187
  url: string;
9148
9188
  [k: string]: unknown;
@@ -9150,7 +9190,7 @@ export interface MacroPropertyPanel {
9150
9190
  /**
9151
9191
  *
9152
9192
  *
9153
- * Defines a button which may appear in control extension points such as the property panel
9193
+ * Defines a text field which may appear in control extension points such as the property panel
9154
9194
  *
9155
9195
  * <p><b>Example</b></p>
9156
9196
  *
@@ -9169,36 +9209,12 @@ export interface MacroPropertyPanel {
9169
9209
  *
9170
9210
  *
9171
9211
  */
9172
- export interface ButtonControl {
9173
- label: I18NProperty75;
9174
- type: 'button' | 'BUTTON';
9212
+ export interface TextControl {
9213
+ macroParameter: string;
9214
+ type: 'text' | 'TEXT';
9175
9215
  key: string;
9176
9216
  [k: string]: unknown;
9177
9217
  }
9178
- /**
9179
- *
9180
- *
9181
- * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
9182
- * and value in multiple places if you like, but identical keys must have identical values.
9183
- *
9184
- * <h3>Example</h3>
9185
- *
9186
- *
9187
- *
9188
- *
9189
- *
9190
- * {
9191
- * "value": "My text"
9192
- * }
9193
- *
9194
- *
9195
- *
9196
- */
9197
- export interface I18NProperty75 {
9198
- value: string;
9199
- i18n?: string;
9200
- [k: string]: unknown;
9201
- }
9202
9218
  /**
9203
9219
  *
9204
9220
  *
@@ -9269,7 +9285,7 @@ export interface ToggleGroup {
9269
9285
  */
9270
9286
  export interface ToggleButtonControl {
9271
9287
  macroParameterValue: string;
9272
- label: I18NProperty76;
9288
+ label: I18NProperty75;
9273
9289
  type: 'togglebutton' | 'TOGGLEBUTTON';
9274
9290
  key: string;
9275
9291
  [k: string]: unknown;
@@ -9293,7 +9309,7 @@ export interface ToggleButtonControl {
9293
9309
  *
9294
9310
  *
9295
9311
  */
9296
- export interface I18NProperty76 {
9312
+ export interface I18NProperty75 {
9297
9313
  value: string;
9298
9314
  i18n?: string;
9299
9315
  [k: string]: unknown;
@@ -9335,7 +9351,7 @@ export interface I18NProperty76 {
9335
9351
  *
9336
9352
  */
9337
9353
  export interface ControlGroup {
9338
- controls: ButtonControl1[];
9354
+ controls: ButtonControl[];
9339
9355
  type: 'group' | 'GROUP';
9340
9356
  [k: string]: unknown;
9341
9357
  }
@@ -9361,8 +9377,8 @@ export interface ControlGroup {
9361
9377
  *
9362
9378
  *
9363
9379
  */
9364
- export interface ButtonControl1 {
9365
- label: I18NProperty77;
9380
+ export interface ButtonControl {
9381
+ label: I18NProperty76;
9366
9382
  type: 'button' | 'BUTTON';
9367
9383
  key: string;
9368
9384
  [k: string]: unknown;
@@ -9386,7 +9402,7 @@ export interface ButtonControl1 {
9386
9402
  *
9387
9403
  *
9388
9404
  */
9389
- export interface I18NProperty77 {
9405
+ export interface I18NProperty76 {
9390
9406
  value: string;
9391
9407
  i18n?: string;
9392
9408
  [k: string]: unknown;
@@ -9394,7 +9410,7 @@ export interface I18NProperty77 {
9394
9410
  /**
9395
9411
  *
9396
9412
  *
9397
- * Defines a text field which may appear in control extension points such as the property panel
9413
+ * Defines a button which may appear in control extension points such as the property panel
9398
9414
  *
9399
9415
  * <p><b>Example</b></p>
9400
9416
  *
@@ -9413,12 +9429,36 @@ export interface I18NProperty77 {
9413
9429
  *
9414
9430
  *
9415
9431
  */
9416
- export interface TextControl {
9417
- macroParameter: string;
9418
- type: 'text' | 'TEXT';
9432
+ export interface ButtonControl1 {
9433
+ label: I18NProperty77;
9434
+ type: 'button' | 'BUTTON';
9419
9435
  key: string;
9420
9436
  [k: string]: unknown;
9421
9437
  }
9438
+ /**
9439
+ *
9440
+ *
9441
+ * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
9442
+ * and value in multiple places if you like, but identical keys must have identical values.
9443
+ *
9444
+ * <h3>Example</h3>
9445
+ *
9446
+ *
9447
+ *
9448
+ *
9449
+ *
9450
+ * {
9451
+ * "value": "My text"
9452
+ * }
9453
+ *
9454
+ *
9455
+ *
9456
+ */
9457
+ export interface I18NProperty77 {
9458
+ value: string;
9459
+ i18n?: string;
9460
+ [k: string]: unknown;
9461
+ }
9422
9462
  /**
9423
9463
  *
9424
9464
  *
@@ -30387,7 +30427,7 @@ export interface I18NProperty83 {
30387
30427
  *
30388
30428
  */
30389
30429
  export interface MacroPropertyPanel1 {
30390
- controls?: (ButtonControl2 | ToggleGroup1 | ControlGroup1 | TextControl1)[];
30430
+ controls?: (ToggleGroup1 | TextControl1 | ButtonControl2 | ControlGroup1)[];
30391
30431
  cacheable?: boolean;
30392
30432
  url: string;
30393
30433
  [k: string]: unknown;
@@ -30395,7 +30435,52 @@ export interface MacroPropertyPanel1 {
30395
30435
  /**
30396
30436
  *
30397
30437
  *
30398
- * Defines a button which may appear in control extension points such as the property panel
30438
+ * Defines a ToggleGroup which may appear in control extension points such as the property panel
30439
+ *
30440
+ * <p><b>Example</b></p>
30441
+ *
30442
+ *
30443
+ *
30444
+ *
30445
+ *
30446
+ * [
30447
+ * {
30448
+ * "type": "togglegroup",
30449
+ * "macroParameter": "toggleGroupMacroParameter",
30450
+ * "controls": [
30451
+ * {
30452
+ * "type": "togglebutton",
30453
+ * "macroParameterValue": "macroParameterValue 0",
30454
+ * "label": {
30455
+ * "value": "My Custom Control 0"
30456
+ * },
30457
+ * "key": "my-custom-toggle-button-0"
30458
+ * },
30459
+ * {
30460
+ * "type": "togglebutton",
30461
+ * "macroParameterValue": "macroParameterValue 1",
30462
+ * "label": {
30463
+ * "value": "My Custom Control 1"
30464
+ * },
30465
+ * "key": "my-custom-toggle-button-1"
30466
+ * }
30467
+ * ]
30468
+ * }
30469
+ * ]
30470
+ *
30471
+ *
30472
+ *
30473
+ */
30474
+ export interface ToggleGroup1 {
30475
+ controls: ToggleButtonControl1[];
30476
+ macroParameter: string;
30477
+ type: 'togglegroup' | 'TOGGLEGROUP';
30478
+ [k: string]: unknown;
30479
+ }
30480
+ /**
30481
+ *
30482
+ *
30483
+ * Defines a toggle button which appears inside a ToggleGroup
30399
30484
  *
30400
30485
  * <p><b>Example</b></p>
30401
30486
  *
@@ -30404,19 +30489,21 @@ export interface MacroPropertyPanel1 {
30404
30489
  *
30405
30490
  *
30406
30491
  * {
30407
- * "type": "button",
30492
+ * "type": "togglebutton",
30493
+ * "macroParameterValue": "macroParameterValue 0",
30408
30494
  * "label": {
30409
30495
  * "value": "My Custom Control 0"
30410
30496
  * },
30411
- * "key": "my-custom-control-0"
30497
+ * "key": "my-custom-toggle-button-0"
30412
30498
  * }
30413
30499
  *
30414
30500
  *
30415
30501
  *
30416
30502
  */
30417
- export interface ButtonControl2 {
30503
+ export interface ToggleButtonControl1 {
30504
+ macroParameterValue: string;
30418
30505
  label: I18NProperty84;
30419
- type: 'button' | 'BUTTON';
30506
+ type: 'togglebutton' | 'TOGGLEBUTTON';
30420
30507
  key: string;
30421
30508
  [k: string]: unknown;
30422
30509
  }
@@ -30447,7 +30534,7 @@ export interface I18NProperty84 {
30447
30534
  /**
30448
30535
  *
30449
30536
  *
30450
- * Defines a ToggleGroup which may appear in control extension points such as the property panel
30537
+ * Defines a text field which may appear in control extension points such as the property panel
30451
30538
  *
30452
30539
  * <p><b>Example</b></p>
30453
30540
  *
@@ -30455,44 +30542,27 @@ export interface I18NProperty84 {
30455
30542
  *
30456
30543
  *
30457
30544
  *
30458
- * [
30459
- * {
30460
- * "type": "togglegroup",
30461
- * "macroParameter": "toggleGroupMacroParameter",
30462
- * "controls": [
30463
- * {
30464
- * "type": "togglebutton",
30465
- * "macroParameterValue": "macroParameterValue 0",
30466
- * "label": {
30467
- * "value": "My Custom Control 0"
30468
- * },
30469
- * "key": "my-custom-toggle-button-0"
30470
- * },
30471
- * {
30472
- * "type": "togglebutton",
30473
- * "macroParameterValue": "macroParameterValue 1",
30474
- * "label": {
30475
- * "value": "My Custom Control 1"
30476
- * },
30477
- * "key": "my-custom-toggle-button-1"
30478
- * }
30479
- * ]
30480
- * }
30481
- * ]
30545
+ * {
30546
+ * "type": "button",
30547
+ * "label": {
30548
+ * "value": "My Custom Control 0"
30549
+ * },
30550
+ * "key": "my-custom-control-0"
30551
+ * }
30482
30552
  *
30483
30553
  *
30484
30554
  *
30485
30555
  */
30486
- export interface ToggleGroup1 {
30487
- controls: ToggleButtonControl1[];
30556
+ export interface TextControl1 {
30488
30557
  macroParameter: string;
30489
- type: 'togglegroup' | 'TOGGLEGROUP';
30558
+ type: 'text' | 'TEXT';
30559
+ key: string;
30490
30560
  [k: string]: unknown;
30491
30561
  }
30492
30562
  /**
30493
30563
  *
30494
30564
  *
30495
- * Defines a toggle button which appears inside a ToggleGroup
30565
+ * Defines a button which may appear in control extension points such as the property panel
30496
30566
  *
30497
30567
  * <p><b>Example</b></p>
30498
30568
  *
@@ -30501,21 +30571,19 @@ export interface ToggleGroup1 {
30501
30571
  *
30502
30572
  *
30503
30573
  * {
30504
- * "type": "togglebutton",
30505
- * "macroParameterValue": "macroParameterValue 0",
30574
+ * "type": "button",
30506
30575
  * "label": {
30507
30576
  * "value": "My Custom Control 0"
30508
30577
  * },
30509
- * "key": "my-custom-toggle-button-0"
30578
+ * "key": "my-custom-control-0"
30510
30579
  * }
30511
30580
  *
30512
30581
  *
30513
30582
  *
30514
30583
  */
30515
- export interface ToggleButtonControl1 {
30516
- macroParameterValue: string;
30584
+ export interface ButtonControl2 {
30517
30585
  label: I18NProperty85;
30518
- type: 'togglebutton' | 'TOGGLEBUTTON';
30586
+ type: 'button' | 'BUTTON';
30519
30587
  key: string;
30520
30588
  [k: string]: unknown;
30521
30589
  }
@@ -30636,34 +30704,6 @@ export interface I18NProperty86 {
30636
30704
  i18n?: string;
30637
30705
  [k: string]: unknown;
30638
30706
  }
30639
- /**
30640
- *
30641
- *
30642
- * Defines a text field which may appear in control extension points such as the property panel
30643
- *
30644
- * <p><b>Example</b></p>
30645
- *
30646
- *
30647
- *
30648
- *
30649
- *
30650
- * {
30651
- * "type": "button",
30652
- * "label": {
30653
- * "value": "My Custom Control 0"
30654
- * },
30655
- * "key": "my-custom-control-0"
30656
- * }
30657
- *
30658
- *
30659
- *
30660
- */
30661
- export interface TextControl1 {
30662
- macroParameter: string;
30663
- type: 'text' | 'TEXT';
30664
- key: string;
30665
- [k: string]: unknown;
30666
- }
30667
30707
  /**
30668
30708
  *
30669
30709
  *
@@ -28,6 +28,7 @@ export declare enum AllModuleTypes {
28
28
  CompassAdminPage = "compass:adminPage",
29
29
  CompassComponentPage = "compass:componentPage",
30
30
  CompassGlobalPage = "compass:globalPage",
31
+ CompassTeamPage = "compass:teamPage",
31
32
  JiraServiceManagementQueuePage = "jiraServiceManagement:queuePage",
32
33
  JiraServiceManagementPortalRequestDetail = "jiraServiceManagement:portalRequestDetail",
33
34
  JiraServiceManagementPortalRequestDetailPanel = "jiraServiceManagement:portalRequestDetailPanel",
@@ -1 +1 @@
1
- {"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,YAAY,kBAAkB;IAC9B,WAAW,iBAAiB;IAC5B,cAAc,oBAAoB;IAClC,YAAY,kBAAkB;IAC9B,oBAAoB,0BAA0B;IAC9C,QAAQ,cAAc;IACtB,uBAAuB,6BAA6B;IACpD,2BAA2B,iCAAiC;IAC5D,qBAAqB,2BAA2B;IAChD,wBAAwB,8BAA8B;IACtD,oBAAoB,0BAA0B;IAC9C,sBAAsB,4BAA4B;IAClD,mBAAmB,yBAAyB;IAC5C,uBAAuB,6BAA6B;IACpD,qBAAqB,2BAA2B;IAChD,eAAe,qBAAqB;IACpC,mBAAmB,yBAAyB;IAC5C,eAAe,qBAAqB;IACpC,iBAAiB,uBAAuB;IACxC,eAAe,qBAAqB;IACpC,cAAc,oBAAoB;IAClC,aAAa,mBAAmB;IAChC,eAAe,qBAAqB;IACpC,uBAAuB,6BAA6B;IACpD,cAAc,oBAAoB;IAClC,mBAAmB,yBAAyB;IAC5C,gBAAgB,sBAAsB;IACtC,oBAAoB,0BAA0B;IAC9C,iBAAiB,uBAAuB;IAExC,8BAA8B,oCAAoC;IAClE,wCAAwC,8CAA8C;IACtF,6CAA6C,mDAAmD;IAChG,sCAAsC,4CAA4C;IAClF,iCAAiC,uCAAuC;IACxE,oCAAoC,0CAA0C;IAC9E,iCAAiC,uCAAuC;IACxE,uCAAuC,6CAA6C;IAEpF,qBAAqB,4BAA4B;IACjD,gCAAgC,uCAAuC;IACvE,uBAAuB,8BAA8B;IACrD,6BAA6B,oCAAoC;IACjE,gCAAgC,uCAAuC;IACvE,0BAA0B,iCAAiC;IAC3D,2BAA2B,kCAAkC;IAC7D,oCAAoC,2CAA2C;IAC/E,+BAA+B,sCAAsC;IACrE,iCAAiC,wCAAwC;IACzE,oCAAoC,2CAA2C;IAC/E,4BAA4B,mCAAmC;IAC/D,mBAAmB,0BAA0B;IAC7C,oBAAoB,2BAA2B;IAC/C,2BAA2B,kCAAkC;IAC7D,2BAA2B,kCAAkC;IAC7D,8BAA8B,qCAAqC;IACnE,4CAA4C,mDAAmD;IAC/F,iCAAiC,wCAAwC;IACzE,mCAAmC,0CAA0C;IAC7E,8BAA8B,qCAAqC;IACnE,wBAAwB,+BAA+B;IACvD,qCAAqC,4CAA4C;IACjF,6BAA6B,oCAAoC;IACjE,kCAAkC,yCAAyC;IAC3E,gCAAgC,uCAAuC;IACvE,+BAA+B,sCAAsC;IACrE,oCAAoC,2CAA2C;IAC/E,yBAAyB,gCAAgC;IACzD,0BAA0B,iCAAiC;IAC3D,4BAA4B,mCAAmC;IAC/D,yBAAyB,gCAAgC;IACzD,wBAAwB,+BAA+B;IACvD,kBAAkB,yBAAyB;IAC3C,gCAAgC,uCAAuC;IACvE,qCAAqC,4CAA4C;IACjF,8BAA8B,qCAAqC;IACnE,+BAA+B,sCAAsC;IACrE,sCAAsC,6CAA6C;IACnF,4BAA4B,mCAAmC;IAC/D,6BAA6B,oCAAoC;IACjE,yBAAyB,gCAAgC;IACzD,2BAA2B,kCAAkC;IAC7D,iCAAiC,wCAAwC;IACzE,sBAAsB,6BAA6B;IACnD,iCAAiC,wCAAwC;IACzE,oCAAoC,2CAA2C;IAC/E,iCAAiC,wCAAwC;IACzE,0BAA0B,iCAAiC;IAC3D,oBAAoB,2BAA2B;IAC/C,sBAAsB,6BAA6B;IACnD,mBAAmB,0BAA0B;IAC7C,0BAA0B,iCAAiC;CAC5D;AAED,eAAO,MAAM,iBAAiB,kBAAgC,CAAC;AAE/D,eAAO,MAAM,uBAAuB,UAAwE,CAAC"}
1
+ {"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,YAAY,kBAAkB;IAC9B,WAAW,iBAAiB;IAC5B,cAAc,oBAAoB;IAClC,YAAY,kBAAkB;IAC9B,oBAAoB,0BAA0B;IAC9C,QAAQ,cAAc;IACtB,uBAAuB,6BAA6B;IACpD,2BAA2B,iCAAiC;IAC5D,qBAAqB,2BAA2B;IAChD,wBAAwB,8BAA8B;IACtD,oBAAoB,0BAA0B;IAC9C,sBAAsB,4BAA4B;IAClD,mBAAmB,yBAAyB;IAC5C,uBAAuB,6BAA6B;IACpD,qBAAqB,2BAA2B;IAChD,eAAe,qBAAqB;IACpC,mBAAmB,yBAAyB;IAC5C,eAAe,qBAAqB;IACpC,iBAAiB,uBAAuB;IACxC,eAAe,qBAAqB;IACpC,cAAc,oBAAoB;IAClC,aAAa,mBAAmB;IAChC,eAAe,qBAAqB;IACpC,uBAAuB,6BAA6B;IACpD,cAAc,oBAAoB;IAClC,mBAAmB,yBAAyB;IAC5C,gBAAgB,sBAAsB;IACtC,oBAAoB,0BAA0B;IAC9C,iBAAiB,uBAAuB;IACxC,eAAe,qBAAqB;IAEpC,8BAA8B,oCAAoC;IAClE,wCAAwC,8CAA8C;IACtF,6CAA6C,mDAAmD;IAChG,sCAAsC,4CAA4C;IAClF,iCAAiC,uCAAuC;IACxE,oCAAoC,0CAA0C;IAC9E,iCAAiC,uCAAuC;IACxE,uCAAuC,6CAA6C;IAEpF,qBAAqB,4BAA4B;IACjD,gCAAgC,uCAAuC;IACvE,uBAAuB,8BAA8B;IACrD,6BAA6B,oCAAoC;IACjE,gCAAgC,uCAAuC;IACvE,0BAA0B,iCAAiC;IAC3D,2BAA2B,kCAAkC;IAC7D,oCAAoC,2CAA2C;IAC/E,+BAA+B,sCAAsC;IACrE,iCAAiC,wCAAwC;IACzE,oCAAoC,2CAA2C;IAC/E,4BAA4B,mCAAmC;IAC/D,mBAAmB,0BAA0B;IAC7C,oBAAoB,2BAA2B;IAC/C,2BAA2B,kCAAkC;IAC7D,2BAA2B,kCAAkC;IAC7D,8BAA8B,qCAAqC;IACnE,4CAA4C,mDAAmD;IAC/F,iCAAiC,wCAAwC;IACzE,mCAAmC,0CAA0C;IAC7E,8BAA8B,qCAAqC;IACnE,wBAAwB,+BAA+B;IACvD,qCAAqC,4CAA4C;IACjF,6BAA6B,oCAAoC;IACjE,kCAAkC,yCAAyC;IAC3E,gCAAgC,uCAAuC;IACvE,+BAA+B,sCAAsC;IACrE,oCAAoC,2CAA2C;IAC/E,yBAAyB,gCAAgC;IACzD,0BAA0B,iCAAiC;IAC3D,4BAA4B,mCAAmC;IAC/D,yBAAyB,gCAAgC;IACzD,wBAAwB,+BAA+B;IACvD,kBAAkB,yBAAyB;IAC3C,gCAAgC,uCAAuC;IACvE,qCAAqC,4CAA4C;IACjF,8BAA8B,qCAAqC;IACnE,+BAA+B,sCAAsC;IACrE,sCAAsC,6CAA6C;IACnF,4BAA4B,mCAAmC;IAC/D,6BAA6B,oCAAoC;IACjE,yBAAyB,gCAAgC;IACzD,2BAA2B,kCAAkC;IAC7D,iCAAiC,wCAAwC;IACzE,sBAAsB,6BAA6B;IACnD,iCAAiC,wCAAwC;IACzE,oCAAoC,2CAA2C;IAC/E,iCAAiC,wCAAwC;IACzE,0BAA0B,iCAAiC;IAC3D,oBAAoB,2BAA2B;IAC/C,sBAAsB,6BAA6B;IACnD,mBAAmB,0BAA0B;IAC7C,0BAA0B,iCAAiC;CAC5D;AAED,eAAO,MAAM,iBAAiB,kBAAgC,CAAC;AAE/D,eAAO,MAAM,uBAAuB,UAAwE,CAAC"}
@@ -32,6 +32,7 @@ var AllModuleTypes;
32
32
  AllModuleTypes["CompassAdminPage"] = "compass:adminPage";
33
33
  AllModuleTypes["CompassComponentPage"] = "compass:componentPage";
34
34
  AllModuleTypes["CompassGlobalPage"] = "compass:globalPage";
35
+ AllModuleTypes["CompassTeamPage"] = "compass:teamPage";
35
36
  AllModuleTypes["JiraServiceManagementQueuePage"] = "jiraServiceManagement:queuePage";
36
37
  AllModuleTypes["JiraServiceManagementPortalRequestDetail"] = "jiraServiceManagement:portalRequestDetail";
37
38
  AllModuleTypes["JiraServiceManagementPortalRequestDetailPanel"] = "jiraServiceManagement:portalRequestDetailPanel";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "3.3.0-next.6",
3
+ "version": "3.3.0-next.9",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {