@forge/manifest 3.3.0-next.7 → 3.3.0-next.8

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
+ ## 3.3.0-next.8
4
+
5
+ ### Minor Changes
6
+
7
+ - fcd95803: Add support for compass:teamPage extensions
8
+
9
+ ### Patch Changes
10
+
11
+ - e65d33e6: Update manifest definitions
12
+
3
13
  ## 3.3.0-next.7
4
14
 
5
15
  ### Patch Changes
@@ -7390,10 +7390,10 @@
7390
7390
  "type": "object",
7391
7391
  "anyOf": [
7392
7392
  {
7393
- "$ref": "#/definitions/compositeCondition"
7393
+ "$ref": "#/definitions/singleCondition"
7394
7394
  },
7395
7395
  {
7396
- "$ref": "#/definitions/singleCondition"
7396
+ "$ref": "#/definitions/compositeCondition"
7397
7397
  }
7398
7398
  ]
7399
7399
  },
@@ -7445,10 +7445,10 @@
7445
7445
  "type": "object",
7446
7446
  "anyOf": [
7447
7447
  {
7448
- "$ref": "#/definitions/compositeCondition"
7448
+ "$ref": "#/definitions/singleCondition"
7449
7449
  },
7450
7450
  {
7451
- "$ref": "#/definitions/singleCondition"
7451
+ "$ref": "#/definitions/compositeCondition"
7452
7452
  }
7453
7453
  ]
7454
7454
  },
@@ -7567,10 +7567,10 @@
7567
7567
  "type": "object",
7568
7568
  "anyOf": [
7569
7569
  {
7570
- "$ref": "#/definitions/singleCondition"
7570
+ "$ref": "#/definitions/compositeCondition"
7571
7571
  },
7572
7572
  {
7573
- "$ref": "#/definitions/compositeCondition"
7573
+ "$ref": "#/definitions/singleCondition"
7574
7574
  }
7575
7575
  ]
7576
7576
  },
@@ -7698,51 +7698,6 @@
7698
7698
  "type": "object",
7699
7699
  "fieldDescription": "\n\n<p>An object containing options which vary based on the type of web item target you are implementing.</p>\n\n <p>Currently-allowed options are:</p>\n <ul>\n <li><a href=\"../inline-dialog-options/\">Inline Dialog Options</a> when type is \"inlinedialog\", and</li>\n <li><a href=\"../dialog-options/\">Dialog Options</a> when type is \"dialog\"</li>\n <li><a href=\"../dialog-module-options/\">Dialog Module Options</a> when type is \"dialogmodule\"</li>\n </ul>\n\n",
7700
7700
  "anyOf": [
7701
- {
7702
- "properties": {
7703
- "size": {
7704
- "enum": [
7705
- "small",
7706
- "SMALL",
7707
- "medium",
7708
- "MEDIUM",
7709
- "large",
7710
- "LARGE",
7711
- "x-large",
7712
- "X-LARGE",
7713
- "fullscreen",
7714
- "FULLSCREEN",
7715
- "maximum",
7716
- "MAXIMUM"
7717
- ],
7718
- "type": "string",
7719
- "fieldDescription": "\n\nSets the size of the dialog.\n\n <p>\n This option is used instead of the 'height' and 'width' options.\n </p>\n\n"
7720
- },
7721
- "chrome": {
7722
- "type": "boolean",
7723
- "fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
7724
- "defaultValue": "true"
7725
- },
7726
- "width": {
7727
- "maxLength": 10,
7728
- "type": "string",
7729
- "fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
7730
- },
7731
- "header": {
7732
- "$ref": "#/definitions/i18nProperty",
7733
- "fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
7734
- },
7735
- "height": {
7736
- "maxLength": 10,
7737
- "type": "string",
7738
- "fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
7739
- }
7740
- },
7741
- "shortClassName": "dialogOptions",
7742
- "type": "object",
7743
- "title": "Dialog Options",
7744
- "description": "\n\nOptions for a modal dialog <a href=\"../web-item-target/\">web item target</a> or <a href=\"../dialog/\">common module</a>.\n\n <p>\n These options are a subset of those available via the <a href=\"../../jsapi/dialog/\">JavaScript API</a>.\n </p>\n\n <h2>Web Item Example</h2>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"dialog\",\n \"options\": {\n \"height\": \"100px\",\n \"width\": \"200px\"\n }\n }\n }\n\n\n\n\n <h2>Dialog Example</h2>\n\n\n\n\n\n {\n \"modules\": {\n \"dialogs\": [\n {\n \"url\": \"/my-dialog-content\",\n \"options\": {\n \"size\": \"fullscreen\",\n \"header\": {\n \"value\": \"Example Dialog\"\n }\n },\n \"key\": \"dialog-module-key\"\n }\n ]\n }\n }\n\n\n"
7745
- },
7746
7701
  {
7747
7702
  "properties": {
7748
7703
  "key": {
@@ -7805,6 +7760,51 @@
7805
7760
  "type": "object",
7806
7761
  "title": "Inline Dialog Options",
7807
7762
  "description": "\n\nOptions for an inline dialog target\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"inlinedialog\",\n \"options\": {\n \"onHover\": true,\n \"offsetX\": \"30px\",\n \"offsetY\": \"20px\"\n }\n }\n }\n\n\n"
7763
+ },
7764
+ {
7765
+ "properties": {
7766
+ "size": {
7767
+ "enum": [
7768
+ "small",
7769
+ "SMALL",
7770
+ "medium",
7771
+ "MEDIUM",
7772
+ "large",
7773
+ "LARGE",
7774
+ "x-large",
7775
+ "X-LARGE",
7776
+ "fullscreen",
7777
+ "FULLSCREEN",
7778
+ "maximum",
7779
+ "MAXIMUM"
7780
+ ],
7781
+ "type": "string",
7782
+ "fieldDescription": "\n\nSets the size of the dialog.\n\n <p>\n This option is used instead of the 'height' and 'width' options.\n </p>\n\n"
7783
+ },
7784
+ "chrome": {
7785
+ "type": "boolean",
7786
+ "fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
7787
+ "defaultValue": "true"
7788
+ },
7789
+ "width": {
7790
+ "maxLength": 10,
7791
+ "type": "string",
7792
+ "fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
7793
+ },
7794
+ "header": {
7795
+ "$ref": "#/definitions/i18nProperty",
7796
+ "fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
7797
+ },
7798
+ "height": {
7799
+ "maxLength": 10,
7800
+ "type": "string",
7801
+ "fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
7802
+ }
7803
+ },
7804
+ "shortClassName": "dialogOptions",
7805
+ "type": "object",
7806
+ "title": "Dialog Options",
7807
+ "description": "\n\nOptions for a modal dialog <a href=\"../web-item-target/\">web item target</a> or <a href=\"../dialog/\">common module</a>.\n\n <p>\n These options are a subset of those available via the <a href=\"../../jsapi/dialog/\">JavaScript API</a>.\n </p>\n\n <h2>Web Item Example</h2>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"dialog\",\n \"options\": {\n \"height\": \"100px\",\n \"width\": \"200px\"\n }\n }\n }\n\n\n\n\n <h2>Dialog Example</h2>\n\n\n\n\n\n {\n \"modules\": {\n \"dialogs\": [\n {\n \"url\": \"/my-dialog-content\",\n \"options\": {\n \"size\": \"fullscreen\",\n \"header\": {\n \"value\": \"Example Dialog\"\n }\n },\n \"key\": \"dialog-module-key\"\n }\n ]\n }\n }\n\n\n"
7808
7808
  }
7809
7809
  ]
7810
7810
  },
@@ -7895,10 +7895,10 @@
7895
7895
  "type": "object",
7896
7896
  "anyOf": [
7897
7897
  {
7898
- "$ref": "#"
7898
+ "$ref": "#/definitions/singleCondition"
7899
7899
  },
7900
7900
  {
7901
- "$ref": "#/definitions/singleCondition"
7901
+ "$ref": "#"
7902
7902
  }
7903
7903
  ]
7904
7904
  },
@@ -8158,10 +8158,10 @@
8158
8158
  "type": "object",
8159
8159
  "anyOf": [
8160
8160
  {
8161
- "$ref": "#"
8161
+ "$ref": "#/definitions/singleCondition"
8162
8162
  },
8163
8163
  {
8164
- "$ref": "#/definitions/singleCondition"
8164
+ "$ref": "#"
8165
8165
  }
8166
8166
  ]
8167
8167
  },
@@ -8456,6 +8456,38 @@
8456
8456
  "items": {
8457
8457
  "type": "object",
8458
8458
  "anyOf": [
8459
+ {
8460
+ "properties": {
8461
+ "macroParameter": {
8462
+ "maxLength": 100,
8463
+ "type": "string",
8464
+ "fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
8465
+ },
8466
+ "type": {
8467
+ "enum": [
8468
+ "text",
8469
+ "TEXT"
8470
+ ],
8471
+ "type": "string",
8472
+ "fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
8473
+ },
8474
+ "key": {
8475
+ "pattern": "^[a-zA-Z0-9-]+$",
8476
+ "maxLength": 100,
8477
+ "type": "string",
8478
+ "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"
8479
+ }
8480
+ },
8481
+ "required": [
8482
+ "macroParameter",
8483
+ "type",
8484
+ "key"
8485
+ ],
8486
+ "shortClassName": "textControlBean",
8487
+ "type": "object",
8488
+ "title": "TextControl",
8489
+ "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
+ },
8459
8491
  {
8460
8492
  "properties": {
8461
8493
  "controls": {
@@ -8581,38 +8613,6 @@
8581
8613
  "title": "ControlGroup",
8582
8614
  "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"
8583
8615
  },
8584
- {
8585
- "properties": {
8586
- "macroParameter": {
8587
- "maxLength": 100,
8588
- "type": "string",
8589
- "fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
8590
- },
8591
- "type": {
8592
- "enum": [
8593
- "text",
8594
- "TEXT"
8595
- ],
8596
- "type": "string",
8597
- "fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
8598
- },
8599
- "key": {
8600
- "pattern": "^[a-zA-Z0-9-]+$",
8601
- "maxLength": 100,
8602
- "type": "string",
8603
- "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"
8604
- }
8605
- },
8606
- "required": [
8607
- "macroParameter",
8608
- "type",
8609
- "key"
8610
- ],
8611
- "shortClassName": "textControlBean",
8612
- "type": "object",
8613
- "title": "TextControl",
8614
- "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"
8615
- },
8616
8616
  {
8617
8617
  "properties": {
8618
8618
  "label": {
@@ -8938,94 +8938,6 @@
8938
8938
  "items": {
8939
8939
  "type": "object",
8940
8940
  "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
- {
8974
- "properties": {
8975
- "controls": {
8976
- "items": {
8977
- "properties": {
8978
- "label": {
8979
- "$ref": "#/definitions/i18nProperty",
8980
- "fieldDescription": "\n\nText which will appear inside the button\n\n"
8981
- },
8982
- "type": {
8983
- "enum": [
8984
- "button",
8985
- "BUTTON"
8986
- ],
8987
- "type": "string",
8988
- "fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
8989
- },
8990
- "key": {
8991
- "pattern": "^[a-zA-Z0-9-]+$",
8992
- "maxLength": 100,
8993
- "type": "string",
8994
- "fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
8995
- }
8996
- },
8997
- "required": [
8998
- "label",
8999
- "type",
9000
- "key"
9001
- ],
9002
- "additionalProperties": true,
9003
- "shortClassName": "buttonControlBean",
9004
- "type": "object",
9005
- "title": "ButtonControl",
9006
- "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"
9007
- },
9008
- "type": "array",
9009
- "fieldDescription": "\n\nControls which will appear in the control group\n\n"
9010
- },
9011
- "type": {
9012
- "enum": [
9013
- "group",
9014
- "GROUP"
9015
- ],
9016
- "type": "string",
9017
- "fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
9018
- }
9019
- },
9020
- "required": [
9021
- "controls",
9022
- "type"
9023
- ],
9024
- "shortClassName": "controlGroupBean",
9025
- "type": "object",
9026
- "title": "ControlGroup",
9027
- "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"
9028
- },
9029
8941
  {
9030
8942
  "properties": {
9031
8943
  "controls": {
@@ -9126,6 +9038,94 @@
9126
9038
  "type": "object",
9127
9039
  "title": "TextControl",
9128
9040
  "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"
9041
+ },
9042
+ {
9043
+ "properties": {
9044
+ "label": {
9045
+ "$ref": "#/definitions/i18nProperty",
9046
+ "fieldDescription": "\n\nText which will appear inside the button\n\n"
9047
+ },
9048
+ "type": {
9049
+ "enum": [
9050
+ "button",
9051
+ "BUTTON"
9052
+ ],
9053
+ "type": "string",
9054
+ "fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
9055
+ },
9056
+ "key": {
9057
+ "pattern": "^[a-zA-Z0-9-]+$",
9058
+ "maxLength": 100,
9059
+ "type": "string",
9060
+ "fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
9061
+ }
9062
+ },
9063
+ "required": [
9064
+ "label",
9065
+ "type",
9066
+ "key"
9067
+ ],
9068
+ "additionalProperties": true,
9069
+ "shortClassName": "buttonControlBean",
9070
+ "type": "object",
9071
+ "title": "ButtonControl",
9072
+ "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"
9073
+ },
9074
+ {
9075
+ "properties": {
9076
+ "controls": {
9077
+ "items": {
9078
+ "properties": {
9079
+ "label": {
9080
+ "$ref": "#/definitions/i18nProperty",
9081
+ "fieldDescription": "\n\nText which will appear inside the button\n\n"
9082
+ },
9083
+ "type": {
9084
+ "enum": [
9085
+ "button",
9086
+ "BUTTON"
9087
+ ],
9088
+ "type": "string",
9089
+ "fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
9090
+ },
9091
+ "key": {
9092
+ "pattern": "^[a-zA-Z0-9-]+$",
9093
+ "maxLength": 100,
9094
+ "type": "string",
9095
+ "fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
9096
+ }
9097
+ },
9098
+ "required": [
9099
+ "label",
9100
+ "type",
9101
+ "key"
9102
+ ],
9103
+ "additionalProperties": true,
9104
+ "shortClassName": "buttonControlBean",
9105
+ "type": "object",
9106
+ "title": "ButtonControl",
9107
+ "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"
9108
+ },
9109
+ "type": "array",
9110
+ "fieldDescription": "\n\nControls which will appear in the control group\n\n"
9111
+ },
9112
+ "type": {
9113
+ "enum": [
9114
+ "group",
9115
+ "GROUP"
9116
+ ],
9117
+ "type": "string",
9118
+ "fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
9119
+ }
9120
+ },
9121
+ "required": [
9122
+ "controls",
9123
+ "type"
9124
+ ],
9125
+ "shortClassName": "controlGroupBean",
9126
+ "type": "object",
9127
+ "title": "ControlGroup",
9128
+ "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"
9129
9129
  }
9130
9130
  ]
9131
9131
  },
@@ -10800,10 +10800,10 @@
10800
10800
  "type": "object",
10801
10801
  "anyOf": [
10802
10802
  {
10803
- "$ref": "#"
10803
+ "$ref": "#/definitions/singleCondition"
10804
10804
  },
10805
10805
  {
10806
- "$ref": "#/definitions/singleCondition"
10806
+ "$ref": "#"
10807
10807
  }
10808
10808
  ]
10809
10809
  },
@@ -3640,7 +3640,7 @@ export interface Modules {
3640
3640
  location?: string;
3641
3641
  cacheable?: boolean;
3642
3642
  supportsNative?: boolean;
3643
- conditions?: (CompositeCondition | SingleCondition)[];
3643
+ conditions?: (SingleCondition | CompositeCondition)[];
3644
3644
  params?: {
3645
3645
  [k: string]: unknown;
3646
3646
  };
@@ -3656,7 +3656,7 @@ export interface Modules {
3656
3656
  location?: string;
3657
3657
  cacheable?: boolean;
3658
3658
  supportsNative?: boolean;
3659
- conditions?: (CompositeCondition | SingleCondition)[];
3659
+ conditions?: (SingleCondition | CompositeCondition)[];
3660
3660
  params?: {
3661
3661
  [k: string]: unknown;
3662
3662
  };
@@ -3670,7 +3670,7 @@ export interface Modules {
3670
3670
  filter?: string;
3671
3671
  excludeBody?: boolean;
3672
3672
  event?: string;
3673
- conditions?: (CompositeCondition | SingleCondition)[];
3673
+ conditions?: (SingleCondition | CompositeCondition)[];
3674
3674
  propertyKeys?: string[];
3675
3675
  url?: string;
3676
3676
  key: ModuleKeySchema;
@@ -3680,7 +3680,7 @@ export interface Modules {
3680
3680
  filter?: string;
3681
3681
  excludeBody?: boolean;
3682
3682
  event?: string;
3683
- conditions?: (CompositeCondition | SingleCondition)[];
3683
+ conditions?: (SingleCondition | CompositeCondition)[];
3684
3684
  propertyKeys?: string[];
3685
3685
  url?: string;
3686
3686
  key: ModuleKeySchema;
@@ -3723,7 +3723,7 @@ export interface Modules {
3723
3723
  name?: I18NProperty55;
3724
3724
  weight?: number;
3725
3725
  location?: string;
3726
- conditions?: (SingleCondition | CompositeCondition)[];
3726
+ conditions?: (CompositeCondition | SingleCondition)[];
3727
3727
  params?: {
3728
3728
  [k: string]: unknown;
3729
3729
  };
@@ -3735,7 +3735,7 @@ export interface Modules {
3735
3735
  name?: I18NProperty55;
3736
3736
  weight?: number;
3737
3737
  location?: string;
3738
- conditions?: (SingleCondition | CompositeCondition)[];
3738
+ conditions?: (CompositeCondition | SingleCondition)[];
3739
3739
  params?: {
3740
3740
  [k: string]: unknown;
3741
3741
  };
@@ -4327,7 +4327,7 @@ export interface I18NProperty1 {
4327
4327
  *
4328
4328
  */
4329
4329
  export interface CompositeCondition {
4330
- conditions?: (ManifestSchema | SingleCondition)[];
4330
+ conditions?: (SingleCondition | ManifestSchema)[];
4331
4331
  type?: 'and' | 'AND' | 'or' | 'OR';
4332
4332
  [k: string]: unknown;
4333
4333
  }
@@ -7035,10 +7035,74 @@ export interface Icon10 {
7035
7035
  *
7036
7036
  */
7037
7037
  export interface WebItemTarget1 {
7038
- options?: DialogOptions2 | DialogModuleOptions1 | InlineDialogOptions1;
7038
+ options?: DialogModuleOptions1 | InlineDialogOptions1 | DialogOptions2;
7039
7039
  type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
7040
7040
  [k: string]: unknown;
7041
7041
  }
7042
+ /**
7043
+ *
7044
+ *
7045
+ * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
7046
+ *
7047
+ * <h3>Example</h3>
7048
+ *
7049
+ *
7050
+ *
7051
+ *
7052
+ *
7053
+ * {
7054
+ * "target": {
7055
+ * "type": "dialogmodule",
7056
+ * "options": {
7057
+ * "key": "dialog-module-key"
7058
+ * }
7059
+ * }
7060
+ * }
7061
+ *
7062
+ *
7063
+ *
7064
+ */
7065
+ export interface DialogModuleOptions1 {
7066
+ key: string;
7067
+ [k: string]: unknown;
7068
+ }
7069
+ /**
7070
+ *
7071
+ *
7072
+ * Options for an inline dialog target
7073
+ *
7074
+ * <h3>Example</h3>
7075
+ *
7076
+ *
7077
+ *
7078
+ *
7079
+ *
7080
+ * {
7081
+ * "target": {
7082
+ * "type": "inlinedialog",
7083
+ * "options": {
7084
+ * "onHover": true,
7085
+ * "offsetX": "30px",
7086
+ * "offsetY": "20px"
7087
+ * }
7088
+ * }
7089
+ * }
7090
+ *
7091
+ *
7092
+ *
7093
+ */
7094
+ export interface InlineDialogOptions1 {
7095
+ offsetX?: string;
7096
+ offsetY?: string;
7097
+ width?: string;
7098
+ onTop?: boolean;
7099
+ showDelay?: number;
7100
+ closeOthers?: boolean;
7101
+ persistent?: boolean;
7102
+ onHover?: boolean;
7103
+ isRelativeToMouse?: boolean;
7104
+ [k: string]: unknown;
7105
+ }
7042
7106
  /**
7043
7107
  *
7044
7108
  *
@@ -7137,70 +7201,6 @@ export interface I18NProperty58 {
7137
7201
  i18n?: string;
7138
7202
  [k: string]: unknown;
7139
7203
  }
7140
- /**
7141
- *
7142
- *
7143
- * Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
7144
- *
7145
- * <h3>Example</h3>
7146
- *
7147
- *
7148
- *
7149
- *
7150
- *
7151
- * {
7152
- * "target": {
7153
- * "type": "dialogmodule",
7154
- * "options": {
7155
- * "key": "dialog-module-key"
7156
- * }
7157
- * }
7158
- * }
7159
- *
7160
- *
7161
- *
7162
- */
7163
- export interface DialogModuleOptions1 {
7164
- key: string;
7165
- [k: string]: unknown;
7166
- }
7167
- /**
7168
- *
7169
- *
7170
- * Options for an inline dialog target
7171
- *
7172
- * <h3>Example</h3>
7173
- *
7174
- *
7175
- *
7176
- *
7177
- *
7178
- * {
7179
- * "target": {
7180
- * "type": "inlinedialog",
7181
- * "options": {
7182
- * "onHover": true,
7183
- * "offsetX": "30px",
7184
- * "offsetY": "20px"
7185
- * }
7186
- * }
7187
- * }
7188
- *
7189
- *
7190
- *
7191
- */
7192
- export interface InlineDialogOptions1 {
7193
- offsetX?: string;
7194
- offsetY?: string;
7195
- width?: string;
7196
- onTop?: boolean;
7197
- showDelay?: number;
7198
- closeOthers?: boolean;
7199
- persistent?: boolean;
7200
- onHover?: boolean;
7201
- isRelativeToMouse?: boolean;
7202
- [k: string]: unknown;
7203
- }
7204
7204
  /**
7205
7205
  *
7206
7206
  *
@@ -7293,7 +7293,7 @@ export interface SingleCondition4 {
7293
7293
  *
7294
7294
  */
7295
7295
  export interface CompositeCondition6 {
7296
- conditions?: (ManifestSchema | SingleCondition)[];
7296
+ conditions?: (SingleCondition | ManifestSchema)[];
7297
7297
  type?: 'and' | 'AND' | 'or' | 'OR';
7298
7298
  [k: string]: unknown;
7299
7299
  }
@@ -7719,7 +7719,7 @@ export interface SingleCondition5 {
7719
7719
  *
7720
7720
  */
7721
7721
  export interface CompositeCondition7 {
7722
- conditions?: (ManifestSchema | SingleCondition)[];
7722
+ conditions?: (SingleCondition | ManifestSchema)[];
7723
7723
  type?: 'and' | 'AND' | 'or' | 'OR';
7724
7724
  [k: string]: unknown;
7725
7725
  }
@@ -9142,11 +9142,39 @@ export interface I18NProperty74 {
9142
9142
  *
9143
9143
  */
9144
9144
  export interface MacroPropertyPanel {
9145
- controls?: (ToggleGroup | ControlGroup | TextControl | ButtonControl1)[];
9145
+ controls?: (TextControl | ToggleGroup | ControlGroup | ButtonControl1)[];
9146
9146
  cacheable?: boolean;
9147
9147
  url: string;
9148
9148
  [k: string]: unknown;
9149
9149
  }
9150
+ /**
9151
+ *
9152
+ *
9153
+ * Defines a text field which may appear in control extension points such as the property panel
9154
+ *
9155
+ * <p><b>Example</b></p>
9156
+ *
9157
+ *
9158
+ *
9159
+ *
9160
+ *
9161
+ * {
9162
+ * "type": "button",
9163
+ * "label": {
9164
+ * "value": "My Custom Control 0"
9165
+ * },
9166
+ * "key": "my-custom-control-0"
9167
+ * }
9168
+ *
9169
+ *
9170
+ *
9171
+ */
9172
+ export interface TextControl {
9173
+ macroParameter: string;
9174
+ type: 'text' | 'TEXT';
9175
+ key: string;
9176
+ [k: string]: unknown;
9177
+ }
9150
9178
  /**
9151
9179
  *
9152
9180
  *
@@ -9339,34 +9367,6 @@ export interface I18NProperty76 {
9339
9367
  i18n?: string;
9340
9368
  [k: string]: unknown;
9341
9369
  }
9342
- /**
9343
- *
9344
- *
9345
- * Defines a text field which may appear in control extension points such as the property panel
9346
- *
9347
- * <p><b>Example</b></p>
9348
- *
9349
- *
9350
- *
9351
- *
9352
- *
9353
- * {
9354
- * "type": "button",
9355
- * "label": {
9356
- * "value": "My Custom Control 0"
9357
- * },
9358
- * "key": "my-custom-control-0"
9359
- * }
9360
- *
9361
- *
9362
- *
9363
- */
9364
- export interface TextControl {
9365
- macroParameter: string;
9366
- type: 'text' | 'TEXT';
9367
- key: string;
9368
- [k: string]: unknown;
9369
- }
9370
9370
  /**
9371
9371
  *
9372
9372
  *
@@ -30387,7 +30387,7 @@ export interface I18NProperty83 {
30387
30387
  *
30388
30388
  */
30389
30389
  export interface MacroPropertyPanel1 {
30390
- controls?: (ButtonControl2 | ControlGroup1 | ToggleGroup1 | TextControl1)[];
30390
+ controls?: (ToggleGroup1 | TextControl1 | ButtonControl2 | ControlGroup1)[];
30391
30391
  cacheable?: boolean;
30392
30392
  url: string;
30393
30393
  [k: string]: unknown;
@@ -30395,7 +30395,52 @@ export interface MacroPropertyPanel1 {
30395
30395
  /**
30396
30396
  *
30397
30397
  *
30398
- * Defines a button which may appear in control extension points such as the property panel
30398
+ * Defines a ToggleGroup which may appear in control extension points such as the property panel
30399
+ *
30400
+ * <p><b>Example</b></p>
30401
+ *
30402
+ *
30403
+ *
30404
+ *
30405
+ *
30406
+ * [
30407
+ * {
30408
+ * "type": "togglegroup",
30409
+ * "macroParameter": "toggleGroupMacroParameter",
30410
+ * "controls": [
30411
+ * {
30412
+ * "type": "togglebutton",
30413
+ * "macroParameterValue": "macroParameterValue 0",
30414
+ * "label": {
30415
+ * "value": "My Custom Control 0"
30416
+ * },
30417
+ * "key": "my-custom-toggle-button-0"
30418
+ * },
30419
+ * {
30420
+ * "type": "togglebutton",
30421
+ * "macroParameterValue": "macroParameterValue 1",
30422
+ * "label": {
30423
+ * "value": "My Custom Control 1"
30424
+ * },
30425
+ * "key": "my-custom-toggle-button-1"
30426
+ * }
30427
+ * ]
30428
+ * }
30429
+ * ]
30430
+ *
30431
+ *
30432
+ *
30433
+ */
30434
+ export interface ToggleGroup1 {
30435
+ controls: ToggleButtonControl1[];
30436
+ macroParameter: string;
30437
+ type: 'togglegroup' | 'TOGGLEGROUP';
30438
+ [k: string]: unknown;
30439
+ }
30440
+ /**
30441
+ *
30442
+ *
30443
+ * Defines a toggle button which appears inside a ToggleGroup
30399
30444
  *
30400
30445
  * <p><b>Example</b></p>
30401
30446
  *
@@ -30404,19 +30449,21 @@ export interface MacroPropertyPanel1 {
30404
30449
  *
30405
30450
  *
30406
30451
  * {
30407
- * "type": "button",
30452
+ * "type": "togglebutton",
30453
+ * "macroParameterValue": "macroParameterValue 0",
30408
30454
  * "label": {
30409
30455
  * "value": "My Custom Control 0"
30410
30456
  * },
30411
- * "key": "my-custom-control-0"
30457
+ * "key": "my-custom-toggle-button-0"
30412
30458
  * }
30413
30459
  *
30414
30460
  *
30415
30461
  *
30416
30462
  */
30417
- export interface ButtonControl2 {
30463
+ export interface ToggleButtonControl1 {
30464
+ macroParameterValue: string;
30418
30465
  label: I18NProperty84;
30419
- type: 'button' | 'BUTTON';
30466
+ type: 'togglebutton' | 'TOGGLEBUTTON';
30420
30467
  key: string;
30421
30468
  [k: string]: unknown;
30422
30469
  }
@@ -30447,7 +30494,7 @@ export interface I18NProperty84 {
30447
30494
  /**
30448
30495
  *
30449
30496
  *
30450
- * Defines a ControlGroup which may appear in control extension points such as the property panel
30497
+ * Defines a text field which may appear in control extension points such as the property panel
30451
30498
  *
30452
30499
  * <p><b>Example</b></p>
30453
30500
  *
@@ -30455,34 +30502,21 @@ export interface I18NProperty84 {
30455
30502
  *
30456
30503
  *
30457
30504
  *
30458
- * [
30459
- * {
30460
- * "type": "group",
30461
- * "controls": [
30462
- * {
30463
- * "type": "button",
30464
- * "label": {
30465
- * "value": "My Custom Control 0"
30466
- * },
30467
- * "key": "my-custom-control-0"
30468
- * },
30469
- * {
30470
- * "type": "button",
30471
- * "label": {
30472
- * "value": "My Custom Control 1"
30473
- * },
30474
- * "key": "my-custom-control-1"
30475
- * }
30476
- * ]
30477
- * }
30478
- * ]
30505
+ * {
30506
+ * "type": "button",
30507
+ * "label": {
30508
+ * "value": "My Custom Control 0"
30509
+ * },
30510
+ * "key": "my-custom-control-0"
30511
+ * }
30479
30512
  *
30480
30513
  *
30481
30514
  *
30482
30515
  */
30483
- export interface ControlGroup1 {
30484
- controls: ButtonControl3[];
30485
- type: 'group' | 'GROUP';
30516
+ export interface TextControl1 {
30517
+ macroParameter: string;
30518
+ type: 'text' | 'TEXT';
30519
+ key: string;
30486
30520
  [k: string]: unknown;
30487
30521
  }
30488
30522
  /**
@@ -30507,7 +30541,7 @@ export interface ControlGroup1 {
30507
30541
  *
30508
30542
  *
30509
30543
  */
30510
- export interface ButtonControl3 {
30544
+ export interface ButtonControl2 {
30511
30545
  label: I18NProperty85;
30512
30546
  type: 'button' | 'BUTTON';
30513
30547
  key: string;
@@ -30540,7 +30574,7 @@ export interface I18NProperty85 {
30540
30574
  /**
30541
30575
  *
30542
30576
  *
30543
- * Defines a ToggleGroup which may appear in control extension points such as the property panel
30577
+ * Defines a ControlGroup which may appear in control extension points such as the property panel
30544
30578
  *
30545
30579
  * <p><b>Example</b></p>
30546
30580
  *
@@ -30550,24 +30584,21 @@ export interface I18NProperty85 {
30550
30584
  *
30551
30585
  * [
30552
30586
  * {
30553
- * "type": "togglegroup",
30554
- * "macroParameter": "toggleGroupMacroParameter",
30587
+ * "type": "group",
30555
30588
  * "controls": [
30556
30589
  * {
30557
- * "type": "togglebutton",
30558
- * "macroParameterValue": "macroParameterValue 0",
30590
+ * "type": "button",
30559
30591
  * "label": {
30560
30592
  * "value": "My Custom Control 0"
30561
30593
  * },
30562
- * "key": "my-custom-toggle-button-0"
30594
+ * "key": "my-custom-control-0"
30563
30595
  * },
30564
30596
  * {
30565
- * "type": "togglebutton",
30566
- * "macroParameterValue": "macroParameterValue 1",
30597
+ * "type": "button",
30567
30598
  * "label": {
30568
30599
  * "value": "My Custom Control 1"
30569
30600
  * },
30570
- * "key": "my-custom-toggle-button-1"
30601
+ * "key": "my-custom-control-1"
30571
30602
  * }
30572
30603
  * ]
30573
30604
  * }
@@ -30576,16 +30607,15 @@ export interface I18NProperty85 {
30576
30607
  *
30577
30608
  *
30578
30609
  */
30579
- export interface ToggleGroup1 {
30580
- controls: ToggleButtonControl1[];
30581
- macroParameter: string;
30582
- type: 'togglegroup' | 'TOGGLEGROUP';
30610
+ export interface ControlGroup1 {
30611
+ controls: ButtonControl3[];
30612
+ type: 'group' | 'GROUP';
30583
30613
  [k: string]: unknown;
30584
30614
  }
30585
30615
  /**
30586
30616
  *
30587
30617
  *
30588
- * Defines a toggle button which appears inside a ToggleGroup
30618
+ * Defines a button which may appear in control extension points such as the property panel
30589
30619
  *
30590
30620
  * <p><b>Example</b></p>
30591
30621
  *
@@ -30594,21 +30624,19 @@ export interface ToggleGroup1 {
30594
30624
  *
30595
30625
  *
30596
30626
  * {
30597
- * "type": "togglebutton",
30598
- * "macroParameterValue": "macroParameterValue 0",
30627
+ * "type": "button",
30599
30628
  * "label": {
30600
30629
  * "value": "My Custom Control 0"
30601
30630
  * },
30602
- * "key": "my-custom-toggle-button-0"
30631
+ * "key": "my-custom-control-0"
30603
30632
  * }
30604
30633
  *
30605
30634
  *
30606
30635
  *
30607
30636
  */
30608
- export interface ToggleButtonControl1 {
30609
- macroParameterValue: string;
30637
+ export interface ButtonControl3 {
30610
30638
  label: I18NProperty86;
30611
- type: 'togglebutton' | 'TOGGLEBUTTON';
30639
+ type: 'button' | 'BUTTON';
30612
30640
  key: string;
30613
30641
  [k: string]: unknown;
30614
30642
  }
@@ -30636,34 +30664,6 @@ export interface I18NProperty86 {
30636
30664
  i18n?: string;
30637
30665
  [k: string]: unknown;
30638
30666
  }
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
30667
  /**
30668
30668
  *
30669
30669
  *
@@ -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.7",
3
+ "version": "3.3.0-next.8",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {