@forge/manifest 5.1.0 → 5.1.1-next.0

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
+ ## 5.1.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 9ebe94bd: Added modules jira:jiraIssueContexts and jira:jiraRemoteLinkInfoProvider to connect module validation
8
+
3
9
  ## 5.1.0
4
10
 
5
11
  ### Minor Changes
@@ -12096,6 +12096,77 @@
12096
12096
  },
12097
12097
  "minItems": 1
12098
12098
  },
12099
+ "connect-jiraIssueContexts": {
12100
+ "type": "array",
12101
+ "items": { "$ref": "#/definitions/ModuleSchema/properties/jira:issueContext" },
12102
+ "minItems": 1
12103
+ },
12104
+ "connect-jiraRemoteLinkInfoProvider": {
12105
+ "properties": {
12106
+ "homeUrl": {
12107
+ "format": "uri",
12108
+ "type": "string",
12109
+ "fieldDescription": "\n\nURL to the provider\u0027s homepage\n\n"
12110
+ },
12111
+ "documentationUrl": {
12112
+ "format": "uri",
12113
+ "type": "string",
12114
+ "fieldDescription": "\n\nOptional URL to documentation about the provider\u0027s Jira integration\n\n"
12115
+ },
12116
+ "name": {
12117
+ "$ref": "#/definitions/i18nProperty",
12118
+ "fieldDescription": "\n\nA human readable name.\n\n"
12119
+ },
12120
+ "actions": {
12121
+ "items": {
12122
+ "properties": {
12123
+ "actionId": {
12124
+ "type": "string",
12125
+ "fieldDescription": "\n\n\u003cp\u003eA key to identify a specific action. Used for associating a specific Remote link to an action of this ID. The actionId of an action must be unique across all actions.\u003c/p\u003e\n\n"
12126
+ },
12127
+ "actionLabel": {
12128
+ "properties": {
12129
+ "value": { "$ref": "#/definitions/i18nProperty" }
12130
+ },
12131
+ "required": ["value"],
12132
+ "shortClassName": "remoteLinkProviderActionLabelBean",
12133
+ "type": "object",
12134
+ "description": "\n\n",
12135
+ "fieldDescription": "\n\n\u003cp\u003eThe actionLabel of an Action is shown visibly to the User alongside the Remote Link.\u003c/p\u003e\n\n"
12136
+ },
12137
+ "templateUrl": {
12138
+ "format": "uri-template",
12139
+ "type": "string",
12140
+ "fieldDescription": "\n\n\u003cp\u003eThe templateUrl of an Action is a template where strings can be substituted into the URL for a specific Remote Link. Strings used in the templateUrl must be passed in via an attribute map when associating an action with a remote link.\u003c/p\u003e\n\n"
12141
+ }
12142
+ },
12143
+ "required": ["actionId", "actionLabel", "templateUrl"],
12144
+ "shortClassName": "remoteLinkProviderActionBean",
12145
+ "type": "object",
12146
+ "description": "\n\n\u003cp\u003eDefines the Remote Link action that can be invoked.\u003c/p\u003e\n\n"
12147
+ },
12148
+ "type": "array",
12149
+ "fieldDescription": "\n\nOptional actions that can be performed by Jira users on the remote link\n\n"
12150
+ },
12151
+ "logoUrl": {
12152
+ "format": "uri",
12153
+ "type": "string",
12154
+ "fieldDescription": "\n\nOptional URL to the provider\u0027s logo, which will be displayed in the UI\n\n"
12155
+ },
12156
+ "key": {
12157
+ "pattern": "^[a-zA-Z0-9-]+$",
12158
+ "maxLength": 100,
12159
+ "type": "string",
12160
+ "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\u0027s 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"
12161
+ }
12162
+ },
12163
+ "required": ["homeUrl", "name", "key"],
12164
+ "shortClassName": "remoteLinkInfoProviderModuleBean",
12165
+ "type": "object",
12166
+ "title": "Remote Link",
12167
+ "description": "\n\n\u003cp\u003eThis module allows third-party providers to add a generic link through a public REST API and associate it with Jira issues or services.\u003c/p\u003e\n\u003cp\u003eSupplied remote link information will be presented in the right sidebar of the\n \u003ca href\u003d\"https://confluence.atlassian.com/jiracorecloud/the-new-jira-issue-view-938040503.html\"\u003enew Jira issue view\u003c/a\u003e under Releases.\u003c/p\u003e\n\u003cp\u003eThis module also provides actions, which allow users to perform an action on the remote link.\u003c/p\u003e\n\n\u003cp\u003eRemote link information is written/deleted via REST. This API is part of the \u003ca href\u003d\"https://developer.atlassian.com/cloud/jira/software/rest/\"\u003eJira Software REST documentation\u003c/a\u003e.\u003c/p\u003e\n\n\u003cp\u003eNote that the module key and name are not considered \u003ca href\u003d\"https://www.atlassian.com/legal/privacy-policy\"\u003eprivate\u003c/a\u003e and should therefore not contain any sensitive or personally identifiable information.\u003c/p\u003e\n\n\u003cp\u003eWhen a user uninstalls an app, all the data that the app sent to Jira is deleted. If the app is reinstalled, this data won\u0027t be added back unless the app resends historical information to Jira.\u003c/p\u003e\n\n \u003cp\u003e\u003cb\u003eExample\u003c/b\u003e\u003c/p\u003e\n\n\n\n {\n \"modules\": {\n \"jiraRemoteLinkInfoProvider\": {\n \"homeUrl\": \"https://my-remotelink-provider.com\",\n \"logoUrl\": \"https://my-remotelink-provider.com/images/logo.svg\",\n \"documentationUrl\": \"https://my-remotelink-provider.com/docs/jira-integration\",\n \"actions\": [\n {\n \"actionId\": \"action-1\",\n \"actionLabel\": {\n \"value\": {\n \"value\": \"acknowledge\"\n }\n },\n \"templateUrl\": \"https://my-remotelink-provider.com/ack/{ack-id}\"\n }\n ],\n \"name\": {\n \"value\": \"My Remote Link Provider\"\n },\n \"key\": \"remotelink-integration\"\n }\n }\n }\n\n\n",
12168
+ "fieldDescription": "\n\nDeclare that this add-on provides remote link information\n\n"
12169
+ },
12099
12170
  "connect-confluence:keyboardShortcuts": {
12100
12171
  "type": "array",
12101
12172
  "items": {
@@ -5753,6 +5753,221 @@ export interface Modules {
5753
5753
  [k: string]: unknown;
5754
5754
  }[]
5755
5755
  ];
5756
+ 'connect-jiraIssueContexts'?: [
5757
+ [
5758
+ (
5759
+ | {
5760
+ function: string;
5761
+ title: string;
5762
+ label: string;
5763
+ status?: {
5764
+ type: 'badge' | 'icon' | 'lozenge';
5765
+ value: {
5766
+ label: string;
5767
+ url?: string;
5768
+ type?: 'default' | 'inprogress' | 'moved' | 'new' | 'removed' | 'success';
5769
+ [k: string]: unknown;
5770
+ };
5771
+ [k: string]: unknown;
5772
+ };
5773
+ icon?: string;
5774
+ displayConditions?: {
5775
+ [k: string]: unknown;
5776
+ };
5777
+ key: ModuleKeySchema;
5778
+ [k: string]: unknown;
5779
+ }
5780
+ | {
5781
+ resource: string;
5782
+ resolver?:
5783
+ | {
5784
+ function: string;
5785
+ }
5786
+ | {
5787
+ endpoint: string;
5788
+ };
5789
+ render?: 'default' | 'native';
5790
+ title: string;
5791
+ label: string;
5792
+ status?: {
5793
+ type: 'badge' | 'icon' | 'lozenge';
5794
+ value: {
5795
+ label: string;
5796
+ url?: string;
5797
+ type?: 'default' | 'inprogress' | 'moved' | 'new' | 'removed' | 'success';
5798
+ [k: string]: unknown;
5799
+ };
5800
+ [k: string]: unknown;
5801
+ };
5802
+ icon?: string;
5803
+ displayConditions?: {
5804
+ [k: string]: unknown;
5805
+ };
5806
+ key: ModuleKeySchema;
5807
+ [k: string]: unknown;
5808
+ }
5809
+ ),
5810
+ ...(
5811
+ | {
5812
+ function: string;
5813
+ title: string;
5814
+ label: string;
5815
+ status?: {
5816
+ type: 'badge' | 'icon' | 'lozenge';
5817
+ value: {
5818
+ label: string;
5819
+ url?: string;
5820
+ type?: 'default' | 'inprogress' | 'moved' | 'new' | 'removed' | 'success';
5821
+ [k: string]: unknown;
5822
+ };
5823
+ [k: string]: unknown;
5824
+ };
5825
+ icon?: string;
5826
+ displayConditions?: {
5827
+ [k: string]: unknown;
5828
+ };
5829
+ key: ModuleKeySchema;
5830
+ [k: string]: unknown;
5831
+ }
5832
+ | {
5833
+ resource: string;
5834
+ resolver?:
5835
+ | {
5836
+ function: string;
5837
+ }
5838
+ | {
5839
+ endpoint: string;
5840
+ };
5841
+ render?: 'default' | 'native';
5842
+ title: string;
5843
+ label: string;
5844
+ status?: {
5845
+ type: 'badge' | 'icon' | 'lozenge';
5846
+ value: {
5847
+ label: string;
5848
+ url?: string;
5849
+ type?: 'default' | 'inprogress' | 'moved' | 'new' | 'removed' | 'success';
5850
+ [k: string]: unknown;
5851
+ };
5852
+ [k: string]: unknown;
5853
+ };
5854
+ icon?: string;
5855
+ displayConditions?: {
5856
+ [k: string]: unknown;
5857
+ };
5858
+ key: ModuleKeySchema;
5859
+ [k: string]: unknown;
5860
+ }
5861
+ )[]
5862
+ ],
5863
+ ...[
5864
+ (
5865
+ | {
5866
+ function: string;
5867
+ title: string;
5868
+ label: string;
5869
+ status?: {
5870
+ type: 'badge' | 'icon' | 'lozenge';
5871
+ value: {
5872
+ label: string;
5873
+ url?: string;
5874
+ type?: 'default' | 'inprogress' | 'moved' | 'new' | 'removed' | 'success';
5875
+ [k: string]: unknown;
5876
+ };
5877
+ [k: string]: unknown;
5878
+ };
5879
+ icon?: string;
5880
+ displayConditions?: {
5881
+ [k: string]: unknown;
5882
+ };
5883
+ key: ModuleKeySchema;
5884
+ [k: string]: unknown;
5885
+ }
5886
+ | {
5887
+ resource: string;
5888
+ resolver?:
5889
+ | {
5890
+ function: string;
5891
+ }
5892
+ | {
5893
+ endpoint: string;
5894
+ };
5895
+ render?: 'default' | 'native';
5896
+ title: string;
5897
+ label: string;
5898
+ status?: {
5899
+ type: 'badge' | 'icon' | 'lozenge';
5900
+ value: {
5901
+ label: string;
5902
+ url?: string;
5903
+ type?: 'default' | 'inprogress' | 'moved' | 'new' | 'removed' | 'success';
5904
+ [k: string]: unknown;
5905
+ };
5906
+ [k: string]: unknown;
5907
+ };
5908
+ icon?: string;
5909
+ displayConditions?: {
5910
+ [k: string]: unknown;
5911
+ };
5912
+ key: ModuleKeySchema;
5913
+ [k: string]: unknown;
5914
+ }
5915
+ ),
5916
+ ...(
5917
+ | {
5918
+ function: string;
5919
+ title: string;
5920
+ label: string;
5921
+ status?: {
5922
+ type: 'badge' | 'icon' | 'lozenge';
5923
+ value: {
5924
+ label: string;
5925
+ url?: string;
5926
+ type?: 'default' | 'inprogress' | 'moved' | 'new' | 'removed' | 'success';
5927
+ [k: string]: unknown;
5928
+ };
5929
+ [k: string]: unknown;
5930
+ };
5931
+ icon?: string;
5932
+ displayConditions?: {
5933
+ [k: string]: unknown;
5934
+ };
5935
+ key: ModuleKeySchema;
5936
+ [k: string]: unknown;
5937
+ }
5938
+ | {
5939
+ resource: string;
5940
+ resolver?:
5941
+ | {
5942
+ function: string;
5943
+ }
5944
+ | {
5945
+ endpoint: string;
5946
+ };
5947
+ render?: 'default' | 'native';
5948
+ title: string;
5949
+ label: string;
5950
+ status?: {
5951
+ type: 'badge' | 'icon' | 'lozenge';
5952
+ value: {
5953
+ label: string;
5954
+ url?: string;
5955
+ type?: 'default' | 'inprogress' | 'moved' | 'new' | 'removed' | 'success';
5956
+ [k: string]: unknown;
5957
+ };
5958
+ [k: string]: unknown;
5959
+ };
5960
+ icon?: string;
5961
+ displayConditions?: {
5962
+ [k: string]: unknown;
5963
+ };
5964
+ key: ModuleKeySchema;
5965
+ [k: string]: unknown;
5966
+ }
5967
+ )[]
5968
+ ][]
5969
+ ];
5970
+ 'connect-jiraRemoteLinkInfoProvider'?: RemoteLink;
5756
5971
  'connect-confluence:keyboardShortcuts'?: [
5757
5972
  {
5758
5973
  shortcut?: string;
@@ -5765,7 +5980,7 @@ export interface Modules {
5765
5980
  | 'ISSUE_ACTION'
5766
5981
  | 'agile_board'
5767
5982
  | 'AGILE_BOARD';
5768
- name?: I18NProperty49;
5983
+ name?: I18NProperty51;
5769
5984
  target?: KeyboardShortcutTarget1;
5770
5985
  key: ModuleKeySchema;
5771
5986
  [k: string]: unknown;
@@ -5781,7 +5996,7 @@ export interface Modules {
5781
5996
  | 'ISSUE_ACTION'
5782
5997
  | 'agile_board'
5783
5998
  | 'AGILE_BOARD';
5784
- name?: I18NProperty49;
5999
+ name?: I18NProperty51;
5785
6000
  target?: KeyboardShortcutTarget1;
5786
6001
  key: ModuleKeySchema;
5787
6002
  [k: string]: unknown;
@@ -5790,7 +6005,7 @@ export interface Modules {
5790
6005
  'connect-confluence:adminPages'?: [
5791
6006
  {
5792
6007
  icon?: Icon7;
5793
- name?: I18NProperty50;
6008
+ name?: I18NProperty52;
5794
6009
  weight?: number;
5795
6010
  fullPage?: boolean;
5796
6011
  cacheable?: boolean;
@@ -5805,7 +6020,7 @@ export interface Modules {
5805
6020
  },
5806
6021
  ...{
5807
6022
  icon?: Icon7;
5808
- name?: I18NProperty50;
6023
+ name?: I18NProperty52;
5809
6024
  weight?: number;
5810
6025
  fullPage?: boolean;
5811
6026
  cacheable?: boolean;
@@ -5822,8 +6037,8 @@ export interface Modules {
5822
6037
  'connect-confluence:webPanels'?: [
5823
6038
  {
5824
6039
  layout?: WebPanelLayout1;
5825
- tooltip?: I18NProperty51;
5826
- name?: I18NProperty52;
6040
+ tooltip?: I18NProperty53;
6041
+ name?: I18NProperty54;
5827
6042
  weight?: number;
5828
6043
  location?: string;
5829
6044
  cacheable?: boolean;
@@ -5838,8 +6053,8 @@ export interface Modules {
5838
6053
  },
5839
6054
  ...{
5840
6055
  layout?: WebPanelLayout1;
5841
- tooltip?: I18NProperty51;
5842
- name?: I18NProperty52;
6056
+ tooltip?: I18NProperty53;
6057
+ name?: I18NProperty54;
5843
6058
  weight?: number;
5844
6059
  location?: string;
5845
6060
  cacheable?: boolean;
@@ -5878,7 +6093,7 @@ export interface Modules {
5878
6093
  'connect-confluence:postInstallPage'?: [
5879
6094
  {
5880
6095
  icon?: Icon8;
5881
- name?: I18NProperty53;
6096
+ name?: I18NProperty55;
5882
6097
  weight?: number;
5883
6098
  cacheable?: boolean;
5884
6099
  location?: string;
@@ -5892,7 +6107,7 @@ export interface Modules {
5892
6107
  },
5893
6108
  ...{
5894
6109
  icon?: Icon8;
5895
- name?: I18NProperty53;
6110
+ name?: I18NProperty55;
5896
6111
  weight?: number;
5897
6112
  cacheable?: boolean;
5898
6113
  location?: string;
@@ -5907,8 +6122,8 @@ export interface Modules {
5907
6122
  ];
5908
6123
  'connect-confluence:webSections'?: [
5909
6124
  {
5910
- tooltip?: I18NProperty54;
5911
- name?: I18NProperty55;
6125
+ tooltip?: I18NProperty56;
6126
+ name?: I18NProperty57;
5912
6127
  weight?: number;
5913
6128
  location?: string;
5914
6129
  conditions?: (CompositeCondition | SingleCondition)[];
@@ -5919,8 +6134,8 @@ export interface Modules {
5919
6134
  [k: string]: unknown;
5920
6135
  },
5921
6136
  ...{
5922
- tooltip?: I18NProperty54;
5923
- name?: I18NProperty55;
6137
+ tooltip?: I18NProperty56;
6138
+ name?: I18NProperty57;
5924
6139
  weight?: number;
5925
6140
  location?: string;
5926
6141
  conditions?: (CompositeCondition | SingleCondition)[];
@@ -5934,7 +6149,7 @@ export interface Modules {
5934
6149
  'connect-confluence:generalPages'?: [
5935
6150
  {
5936
6151
  icon?: Icon9;
5937
- name?: I18NProperty56;
6152
+ name?: I18NProperty58;
5938
6153
  weight?: number;
5939
6154
  cacheable?: boolean;
5940
6155
  location?: string;
@@ -5948,7 +6163,7 @@ export interface Modules {
5948
6163
  },
5949
6164
  ...{
5950
6165
  icon?: Icon9;
5951
- name?: I18NProperty56;
6166
+ name?: I18NProperty58;
5952
6167
  weight?: number;
5953
6168
  cacheable?: boolean;
5954
6169
  location?: string;
@@ -5964,7 +6179,7 @@ export interface Modules {
5964
6179
  'connect-confluence:webItems'?: [
5965
6180
  {
5966
6181
  styleClasses?: string[];
5967
- tooltip?: I18NProperty57;
6182
+ tooltip?: I18NProperty59;
5968
6183
  icon?: Icon10;
5969
6184
  weight?: number;
5970
6185
  params?: {
@@ -5973,7 +6188,7 @@ export interface Modules {
5973
6188
  url?: string;
5974
6189
  target?: WebItemTarget1;
5975
6190
  context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
5976
- name?: I18NProperty59;
6191
+ name?: I18NProperty61;
5977
6192
  location?: string;
5978
6193
  cacheable?: boolean;
5979
6194
  conditions?: (SingleCondition4 | CompositeCondition7)[];
@@ -5982,7 +6197,7 @@ export interface Modules {
5982
6197
  },
5983
6198
  ...{
5984
6199
  styleClasses?: string[];
5985
- tooltip?: I18NProperty57;
6200
+ tooltip?: I18NProperty59;
5986
6201
  icon?: Icon10;
5987
6202
  weight?: number;
5988
6203
  params?: {
@@ -5991,7 +6206,7 @@ export interface Modules {
5991
6206
  url?: string;
5992
6207
  target?: WebItemTarget1;
5993
6208
  context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
5994
- name?: I18NProperty59;
6209
+ name?: I18NProperty61;
5995
6210
  location?: string;
5996
6211
  cacheable?: boolean;
5997
6212
  conditions?: (SingleCondition4 | CompositeCondition7)[];
@@ -6002,7 +6217,7 @@ export interface Modules {
6002
6217
  'connect-confluence:configurePage'?: [
6003
6218
  {
6004
6219
  icon?: Icon11;
6005
- name?: I18NProperty60;
6220
+ name?: I18NProperty62;
6006
6221
  weight?: number;
6007
6222
  fullPage?: boolean;
6008
6223
  cacheable?: boolean;
@@ -6017,7 +6232,7 @@ export interface Modules {
6017
6232
  },
6018
6233
  ...{
6019
6234
  icon?: Icon11;
6020
- name?: I18NProperty60;
6235
+ name?: I18NProperty62;
6021
6236
  weight?: number;
6022
6237
  fullPage?: boolean;
6023
6238
  cacheable?: boolean;
@@ -6051,8 +6266,8 @@ export interface Modules {
6051
6266
  {
6052
6267
  template?: BlueprintTemplate;
6053
6268
  icon?: Icon12;
6054
- name?: I18NProperty61;
6055
- description?: I18NProperty62;
6269
+ name?: I18NProperty63;
6270
+ description?: I18NProperty64;
6056
6271
  createResult?: 'edit' | 'EDIT' | 'view' | 'VIEW';
6057
6272
  key: ModuleKeySchema;
6058
6273
  [k: string]: unknown;
@@ -6060,8 +6275,8 @@ export interface Modules {
6060
6275
  ...{
6061
6276
  template?: BlueprintTemplate;
6062
6277
  icon?: Icon12;
6063
- name?: I18NProperty61;
6064
- description?: I18NProperty62;
6278
+ name?: I18NProperty63;
6279
+ description?: I18NProperty64;
6065
6280
  createResult?: 'edit' | 'EDIT' | 'view' | 'VIEW';
6066
6281
  key: ModuleKeySchema;
6067
6282
  [k: string]: unknown;
@@ -6069,7 +6284,7 @@ export interface Modules {
6069
6284
  ];
6070
6285
  'connect-confluence:spaceToolsTabs'?: [
6071
6286
  {
6072
- name?: I18NProperty63;
6287
+ name?: I18NProperty65;
6073
6288
  weight?: number;
6074
6289
  location?: string;
6075
6290
  conditions?: (CompositeCondition9 | SingleCondition5)[];
@@ -6081,7 +6296,7 @@ export interface Modules {
6081
6296
  [k: string]: unknown;
6082
6297
  },
6083
6298
  ...{
6084
- name?: I18NProperty63;
6299
+ name?: I18NProperty65;
6085
6300
  weight?: number;
6086
6301
  location?: string;
6087
6302
  conditions?: (CompositeCondition9 | SingleCondition5)[];
@@ -6095,13 +6310,13 @@ export interface Modules {
6095
6310
  ];
6096
6311
  'connect-confluence:confluenceContentProperties'?: [
6097
6312
  {
6098
- name?: I18NProperty64;
6313
+ name?: I18NProperty66;
6099
6314
  keyConfigurations?: ContentPropertyIndexKeyConfiguration[];
6100
6315
  key: ModuleKeySchema;
6101
6316
  [k: string]: unknown;
6102
6317
  },
6103
6318
  ...{
6104
- name?: I18NProperty64;
6319
+ name?: I18NProperty66;
6105
6320
  keyConfigurations?: ContentPropertyIndexKeyConfiguration[];
6106
6321
  key: ModuleKeySchema;
6107
6322
  [k: string]: unknown;
@@ -6110,16 +6325,16 @@ export interface Modules {
6110
6325
  'connect-confluence:customContent'?: [
6111
6326
  {
6112
6327
  uiSupport?: CustomContentUISupport;
6113
- name?: I18NProperty70;
6114
- description?: I18NProperty71;
6328
+ name?: I18NProperty72;
6329
+ description?: I18NProperty73;
6115
6330
  apiSupport?: CustomContentAPISupport;
6116
6331
  key: ModuleKeySchema;
6117
6332
  [k: string]: unknown;
6118
6333
  },
6119
6334
  ...{
6120
6335
  uiSupport?: CustomContentUISupport;
6121
- name?: I18NProperty70;
6122
- description?: I18NProperty71;
6336
+ name?: I18NProperty72;
6337
+ description?: I18NProperty73;
6123
6338
  apiSupport?: CustomContentAPISupport;
6124
6339
  key: ModuleKeySchema;
6125
6340
  [k: string]: unknown;
@@ -6135,7 +6350,7 @@ export interface Modules {
6135
6350
  renderModes?: MacroRenderModes;
6136
6351
  documentation?: Link;
6137
6352
  icon?: Icon16;
6138
- description?: I18NProperty74;
6353
+ description?: I18NProperty76;
6139
6354
  outputType?: 'block' | 'BLOCK' | 'inline' | 'INLINE';
6140
6355
  url?: string;
6141
6356
  propertyPanel?: MacroPropertyPanel;
@@ -6169,7 +6384,7 @@ export interface Modules {
6169
6384
  [k: string]: unknown;
6170
6385
  };
6171
6386
  width?: string;
6172
- name?: I18NProperty78;
6387
+ name?: I18NProperty80;
6173
6388
  cacheable?: boolean;
6174
6389
  categories?: string[];
6175
6390
  parameters?: MacroInputParameter[];
@@ -6186,7 +6401,7 @@ export interface Modules {
6186
6401
  renderModes?: MacroRenderModes;
6187
6402
  documentation?: Link;
6188
6403
  icon?: Icon16;
6189
- description?: I18NProperty74;
6404
+ description?: I18NProperty76;
6190
6405
  outputType?: 'block' | 'BLOCK' | 'inline' | 'INLINE';
6191
6406
  url?: string;
6192
6407
  propertyPanel?: MacroPropertyPanel;
@@ -6220,7 +6435,7 @@ export interface Modules {
6220
6435
  [k: string]: unknown;
6221
6436
  };
6222
6437
  width?: string;
6223
- name?: I18NProperty78;
6438
+ name?: I18NProperty80;
6224
6439
  cacheable?: boolean;
6225
6440
  categories?: string[];
6226
6441
  parameters?: MacroInputParameter[];
@@ -6238,14 +6453,14 @@ export interface Modules {
6238
6453
  hidden?: boolean;
6239
6454
  documentation?: Link1;
6240
6455
  icon?: Icon17;
6241
- description?: I18NProperty83;
6456
+ description?: I18NProperty85;
6242
6457
  outputType?: 'block' | 'BLOCK' | 'inline' | 'INLINE';
6243
6458
  url?: string;
6244
6459
  propertyPanel?: MacroPropertyPanel1;
6245
6460
  autoconvert?: Autoconvert1;
6246
6461
  imagePlaceholder?: ImagePlaceholder1;
6247
6462
  renderingMethod?: 'get' | 'GET' | 'post' | 'POST';
6248
- name?: I18NProperty87;
6463
+ name?: I18NProperty89;
6249
6464
  categories?: string[];
6250
6465
  parameters?: MacroInputParameter1[];
6251
6466
  key: ModuleKeySchema;
@@ -6259,14 +6474,14 @@ export interface Modules {
6259
6474
  hidden?: boolean;
6260
6475
  documentation?: Link1;
6261
6476
  icon?: Icon17;
6262
- description?: I18NProperty83;
6477
+ description?: I18NProperty85;
6263
6478
  outputType?: 'block' | 'BLOCK' | 'inline' | 'INLINE';
6264
6479
  url?: string;
6265
6480
  propertyPanel?: MacroPropertyPanel1;
6266
6481
  autoconvert?: Autoconvert1;
6267
6482
  imagePlaceholder?: ImagePlaceholder1;
6268
6483
  renderingMethod?: 'get' | 'GET' | 'post' | 'POST';
6269
- name?: I18NProperty87;
6484
+ name?: I18NProperty89;
6270
6485
  categories?: string[];
6271
6486
  parameters?: MacroInputParameter1[];
6272
6487
  key: ModuleKeySchema;
@@ -6276,9 +6491,9 @@ export interface Modules {
6276
6491
  'connect-confluence:contentBylineItems'?: [
6277
6492
  {
6278
6493
  context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
6279
- tooltip?: I18NProperty90;
6494
+ tooltip?: I18NProperty92;
6280
6495
  icon?: Icon18;
6281
- name?: I18NProperty91;
6496
+ name?: I18NProperty93;
6282
6497
  cacheable?: boolean;
6283
6498
  conditions?: (CompositeCondition | SingleCondition)[];
6284
6499
  params?: {
@@ -6292,9 +6507,9 @@ export interface Modules {
6292
6507
  },
6293
6508
  ...{
6294
6509
  context?: 'page' | 'PAGE' | 'addon' | 'ADDON' | 'product' | 'PRODUCT';
6295
- tooltip?: I18NProperty90;
6510
+ tooltip?: I18NProperty92;
6296
6511
  icon?: Icon18;
6297
- name?: I18NProperty91;
6512
+ name?: I18NProperty93;
6298
6513
  cacheable?: boolean;
6299
6514
  conditions?: (CompositeCondition | SingleCondition)[];
6300
6515
  params?: {
@@ -6313,8 +6528,8 @@ export interface Modules {
6313
6528
  lookAndFeel?: LookAndFeel;
6314
6529
  icon?: Icon19;
6315
6530
  routeOverride?: boolean;
6316
- name?: I18NProperty93;
6317
- description?: I18NProperty94;
6531
+ name?: I18NProperty95;
6532
+ description?: I18NProperty96;
6318
6533
  availableGlobally?: boolean;
6319
6534
  key: ModuleKeySchema;
6320
6535
  [k: string]: unknown;
@@ -6324,8 +6539,8 @@ export interface Modules {
6324
6539
  lookAndFeel?: LookAndFeel;
6325
6540
  icon?: Icon19;
6326
6541
  routeOverride?: boolean;
6327
- name?: I18NProperty93;
6328
- description?: I18NProperty94;
6542
+ name?: I18NProperty95;
6543
+ description?: I18NProperty96;
6329
6544
  availableGlobally?: boolean;
6330
6545
  key: ModuleKeySchema;
6331
6546
  [k: string]: unknown;
@@ -8932,6 +9147,74 @@ export interface I18NProperty48 {
8932
9147
  i18n?: string;
8933
9148
  [k: string]: unknown;
8934
9149
  }
9150
+ /**
9151
+ *
9152
+ *
9153
+ * <p>This module allows third-party providers to add a generic link through a public REST API and associate it with Jira issues or services.</p>
9154
+ * <p>Supplied remote link information will be presented in the right sidebar of the
9155
+ * <a href="https://confluence.atlassian.com/jiracorecloud/the-new-jira-issue-view-938040503.html">new Jira issue view</a> under Releases.</p>
9156
+ * <p>This module also provides actions, which allow users to perform an action on the remote link.</p>
9157
+ *
9158
+ * <p>Remote link information is written/deleted via REST. This API is part of the <a href="https://developer.atlassian.com/cloud/jira/software/rest/">Jira Software REST documentation</a>.</p>
9159
+ *
9160
+ * <p>Note that the module key and name are not considered <a href="https://www.atlassian.com/legal/privacy-policy">private</a> and should therefore not contain any sensitive or personally identifiable information.</p>
9161
+ *
9162
+ * <p>When a user uninstalls an app, all the data that the app sent to Jira is deleted. If the app is reinstalled, this data won't be added back unless the app resends historical information to Jira.</p>
9163
+ *
9164
+ * <p><b>Example</b></p>
9165
+ *
9166
+ *
9167
+ *
9168
+ * {
9169
+ * "modules": {
9170
+ * "jiraRemoteLinkInfoProvider": {
9171
+ * "homeUrl": "https://my-remotelink-provider.com",
9172
+ * "logoUrl": "https://my-remotelink-provider.com/images/logo.svg",
9173
+ * "documentationUrl": "https://my-remotelink-provider.com/docs/jira-integration",
9174
+ * "actions": [
9175
+ * {
9176
+ * "actionId": "action-1",
9177
+ * "actionLabel": {
9178
+ * "value": {
9179
+ * "value": "acknowledge"
9180
+ * }
9181
+ * },
9182
+ * "templateUrl": "https://my-remotelink-provider.com/ack/{ack-id}"
9183
+ * }
9184
+ * ],
9185
+ * "name": {
9186
+ * "value": "My Remote Link Provider"
9187
+ * },
9188
+ * "key": "remotelink-integration"
9189
+ * }
9190
+ * }
9191
+ * }
9192
+ *
9193
+ *
9194
+ *
9195
+ */
9196
+ export interface RemoteLink {
9197
+ homeUrl: string;
9198
+ documentationUrl?: string;
9199
+ name: I18NProperty49;
9200
+ actions?: {
9201
+ actionId: string;
9202
+ /**
9203
+ *
9204
+ *
9205
+ *
9206
+ */
9207
+ actionLabel: {
9208
+ value: I18NProperty50;
9209
+ [k: string]: unknown;
9210
+ };
9211
+ templateUrl: string;
9212
+ [k: string]: unknown;
9213
+ }[];
9214
+ logoUrl?: string;
9215
+ key: string;
9216
+ [k: string]: unknown;
9217
+ }
8935
9218
  /**
8936
9219
  *
8937
9220
  *
@@ -8956,6 +9239,54 @@ export interface I18NProperty49 {
8956
9239
  i18n?: string;
8957
9240
  [k: string]: unknown;
8958
9241
  }
9242
+ /**
9243
+ *
9244
+ *
9245
+ * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
9246
+ * and value in multiple places if you like, but identical keys must have identical values.
9247
+ *
9248
+ * <h3>Example</h3>
9249
+ *
9250
+ *
9251
+ *
9252
+ *
9253
+ *
9254
+ * {
9255
+ * "value": "My text"
9256
+ * }
9257
+ *
9258
+ *
9259
+ *
9260
+ */
9261
+ export interface I18NProperty50 {
9262
+ value: string;
9263
+ i18n?: string;
9264
+ [k: string]: unknown;
9265
+ }
9266
+ /**
9267
+ *
9268
+ *
9269
+ * Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
9270
+ * and value in multiple places if you like, but identical keys must have identical values.
9271
+ *
9272
+ * <h3>Example</h3>
9273
+ *
9274
+ *
9275
+ *
9276
+ *
9277
+ *
9278
+ * {
9279
+ * "value": "My text"
9280
+ * }
9281
+ *
9282
+ *
9283
+ *
9284
+ */
9285
+ export interface I18NProperty51 {
9286
+ value: string;
9287
+ i18n?: string;
9288
+ [k: string]: unknown;
9289
+ }
8959
9290
  /**
8960
9291
  *
8961
9292
  *
@@ -9014,7 +9345,7 @@ export interface Icon7 {
9014
9345
  *
9015
9346
  *
9016
9347
  */
9017
- export interface I18NProperty50 {
9348
+ export interface I18NProperty52 {
9018
9349
  value: string;
9019
9350
  i18n?: string;
9020
9351
  [k: string]: unknown;
@@ -9062,7 +9393,7 @@ export interface WebPanelLayout1 {
9062
9393
  *
9063
9394
  *
9064
9395
  */
9065
- export interface I18NProperty51 {
9396
+ export interface I18NProperty53 {
9066
9397
  value: string;
9067
9398
  i18n?: string;
9068
9399
  [k: string]: unknown;
@@ -9086,7 +9417,7 @@ export interface I18NProperty51 {
9086
9417
  *
9087
9418
  *
9088
9419
  */
9089
- export interface I18NProperty52 {
9420
+ export interface I18NProperty54 {
9090
9421
  value: string;
9091
9422
  i18n?: string;
9092
9423
  [k: string]: unknown;
@@ -9138,7 +9469,7 @@ export interface Icon8 {
9138
9469
  *
9139
9470
  *
9140
9471
  */
9141
- export interface I18NProperty53 {
9472
+ export interface I18NProperty55 {
9142
9473
  value: string;
9143
9474
  i18n?: string;
9144
9475
  [k: string]: unknown;
@@ -9162,7 +9493,7 @@ export interface I18NProperty53 {
9162
9493
  *
9163
9494
  *
9164
9495
  */
9165
- export interface I18NProperty54 {
9496
+ export interface I18NProperty56 {
9166
9497
  value: string;
9167
9498
  i18n?: string;
9168
9499
  [k: string]: unknown;
@@ -9186,7 +9517,7 @@ export interface I18NProperty54 {
9186
9517
  *
9187
9518
  *
9188
9519
  */
9189
- export interface I18NProperty55 {
9520
+ export interface I18NProperty57 {
9190
9521
  value: string;
9191
9522
  i18n?: string;
9192
9523
  [k: string]: unknown;
@@ -9238,7 +9569,7 @@ export interface Icon9 {
9238
9569
  *
9239
9570
  *
9240
9571
  */
9241
- export interface I18NProperty56 {
9572
+ export interface I18NProperty58 {
9242
9573
  value: string;
9243
9574
  i18n?: string;
9244
9575
  [k: string]: unknown;
@@ -9262,7 +9593,7 @@ export interface I18NProperty56 {
9262
9593
  *
9263
9594
  *
9264
9595
  */
9265
- export interface I18NProperty57 {
9596
+ export interface I18NProperty59 {
9266
9597
  value: string;
9267
9598
  i18n?: string;
9268
9599
  [k: string]: unknown;
@@ -9500,7 +9831,7 @@ export interface DialogOptions2 {
9500
9831
  | 'MAXIMUM';
9501
9832
  chrome?: boolean;
9502
9833
  width?: string;
9503
- header?: I18NProperty58;
9834
+ header?: I18NProperty60;
9504
9835
  height?: string;
9505
9836
  [k: string]: unknown;
9506
9837
  }
@@ -9523,7 +9854,7 @@ export interface DialogOptions2 {
9523
9854
  *
9524
9855
  *
9525
9856
  */
9526
- export interface I18NProperty58 {
9857
+ export interface I18NProperty60 {
9527
9858
  value: string;
9528
9859
  i18n?: string;
9529
9860
  [k: string]: unknown;
@@ -9547,7 +9878,7 @@ export interface I18NProperty58 {
9547
9878
  *
9548
9879
  *
9549
9880
  */
9550
- export interface I18NProperty59 {
9881
+ export interface I18NProperty61 {
9551
9882
  value: string;
9552
9883
  i18n?: string;
9553
9884
  [k: string]: unknown;
@@ -9712,7 +10043,7 @@ export interface Icon11 {
9712
10043
  *
9713
10044
  *
9714
10045
  */
9715
- export interface I18NProperty60 {
10046
+ export interface I18NProperty62 {
9716
10047
  value: string;
9717
10048
  i18n?: string;
9718
10049
  [k: string]: unknown;
@@ -9966,7 +10297,7 @@ export interface Icon12 {
9966
10297
  *
9967
10298
  *
9968
10299
  */
9969
- export interface I18NProperty61 {
10300
+ export interface I18NProperty63 {
9970
10301
  value: string;
9971
10302
  i18n?: string;
9972
10303
  [k: string]: unknown;
@@ -9990,7 +10321,7 @@ export interface I18NProperty61 {
9990
10321
  *
9991
10322
  *
9992
10323
  */
9993
- export interface I18NProperty62 {
10324
+ export interface I18NProperty64 {
9994
10325
  value: string;
9995
10326
  i18n?: string;
9996
10327
  [k: string]: unknown;
@@ -10014,7 +10345,7 @@ export interface I18NProperty62 {
10014
10345
  *
10015
10346
  *
10016
10347
  */
10017
- export interface I18NProperty63 {
10348
+ export interface I18NProperty65 {
10018
10349
  value: string;
10019
10350
  i18n?: string;
10020
10351
  [k: string]: unknown;
@@ -10110,7 +10441,7 @@ export interface SingleCondition5 {
10110
10441
  *
10111
10442
  *
10112
10443
  */
10113
- export interface I18NProperty64 {
10444
+ export interface I18NProperty66 {
10114
10445
  value: string;
10115
10446
  i18n?: string;
10116
10447
  [k: string]: unknown;
@@ -10334,8 +10665,8 @@ export interface UserInterfaceSupport {
10334
10665
  | 'STRING'
10335
10666
  | 'number'
10336
10667
  | 'NUMBER';
10337
- name: I18NProperty65;
10338
- tooltip?: I18NProperty66;
10668
+ name: I18NProperty67;
10669
+ tooltip?: I18NProperty68;
10339
10670
  [k: string]: unknown;
10340
10671
  }
10341
10672
  /**
@@ -10357,7 +10688,7 @@ export interface UserInterfaceSupport {
10357
10688
  *
10358
10689
  *
10359
10690
  */
10360
- export interface I18NProperty65 {
10691
+ export interface I18NProperty67 {
10361
10692
  value: string;
10362
10693
  i18n?: string;
10363
10694
  [k: string]: unknown;
@@ -10381,7 +10712,7 @@ export interface I18NProperty65 {
10381
10712
  *
10382
10713
  *
10383
10714
  */
10384
- export interface I18NProperty66 {
10715
+ export interface I18NProperty68 {
10385
10716
  value: string;
10386
10717
  i18n?: string;
10387
10718
  [k: string]: unknown;
@@ -10463,13 +10794,13 @@ export interface I18NProperty66 {
10463
10794
  *
10464
10795
  */
10465
10796
  export interface CustomContentUISupport {
10466
- editComponentTitlePlaceholder?: I18NProperty67;
10797
+ editComponentTitlePlaceholder?: I18NProperty69;
10467
10798
  listViewComponent?: ModuleReference;
10468
10799
  editComponent?: ModuleReference1;
10469
10800
  icons: CustomContentIcons;
10470
10801
  contentViewComponent: ModuleReference2;
10471
- editComponentSubmitButtonLabel?: I18NProperty68;
10472
- editComponentCancelButtonLabel?: I18NProperty69;
10802
+ editComponentSubmitButtonLabel?: I18NProperty70;
10803
+ editComponentCancelButtonLabel?: I18NProperty71;
10473
10804
  breadcrumbs?: CustomContentBreadcrumbs;
10474
10805
  [k: string]: unknown;
10475
10806
  }
@@ -10492,7 +10823,7 @@ export interface CustomContentUISupport {
10492
10823
  *
10493
10824
  *
10494
10825
  */
10495
- export interface I18NProperty67 {
10826
+ export interface I18NProperty69 {
10496
10827
  value: string;
10497
10828
  i18n?: string;
10498
10829
  [k: string]: unknown;
@@ -10692,7 +11023,7 @@ export interface ModuleReference2 {
10692
11023
  *
10693
11024
  *
10694
11025
  */
10695
- export interface I18NProperty68 {
11026
+ export interface I18NProperty70 {
10696
11027
  value: string;
10697
11028
  i18n?: string;
10698
11029
  [k: string]: unknown;
@@ -10716,7 +11047,7 @@ export interface I18NProperty68 {
10716
11047
  *
10717
11048
  *
10718
11049
  */
10719
- export interface I18NProperty69 {
11050
+ export interface I18NProperty71 {
10720
11051
  value: string;
10721
11052
  i18n?: string;
10722
11053
  [k: string]: unknown;
@@ -10825,7 +11156,7 @@ export interface CustomContentRelation {
10825
11156
  *
10826
11157
  *
10827
11158
  */
10828
- export interface I18NProperty70 {
11159
+ export interface I18NProperty72 {
10829
11160
  value: string;
10830
11161
  i18n?: string;
10831
11162
  [k: string]: unknown;
@@ -10849,7 +11180,7 @@ export interface I18NProperty70 {
10849
11180
  *
10850
11181
  *
10851
11182
  */
10852
- export interface I18NProperty71 {
11183
+ export interface I18NProperty73 {
10853
11184
  value: string;
10854
11185
  i18n?: string;
10855
11186
  [k: string]: unknown;
@@ -11089,8 +11420,8 @@ export interface MacroParameterIndexing {
11089
11420
  *
11090
11421
  */
11091
11422
  export interface MacroEditor {
11092
- insertTitle?: I18NProperty72;
11093
- editTitle?: I18NProperty73;
11423
+ insertTitle?: I18NProperty74;
11424
+ editTitle?: I18NProperty75;
11094
11425
  width?: string;
11095
11426
  cacheable?: boolean;
11096
11427
  url: string;
@@ -11116,7 +11447,7 @@ export interface MacroEditor {
11116
11447
  *
11117
11448
  *
11118
11449
  */
11119
- export interface I18NProperty72 {
11450
+ export interface I18NProperty74 {
11120
11451
  value: string;
11121
11452
  i18n?: string;
11122
11453
  [k: string]: unknown;
@@ -11140,7 +11471,7 @@ export interface I18NProperty72 {
11140
11471
  *
11141
11472
  *
11142
11473
  */
11143
- export interface I18NProperty73 {
11474
+ export interface I18NProperty75 {
11144
11475
  value: string;
11145
11476
  i18n?: string;
11146
11477
  [k: string]: unknown;
@@ -11464,7 +11795,7 @@ export interface Icon16 {
11464
11795
  *
11465
11796
  *
11466
11797
  */
11467
- export interface I18NProperty74 {
11798
+ export interface I18NProperty76 {
11468
11799
  value: string;
11469
11800
  i18n?: string;
11470
11801
  [k: string]: unknown;
@@ -11538,7 +11869,7 @@ export interface MacroPropertyPanel {
11538
11869
  *
11539
11870
  */
11540
11871
  export interface ButtonControl {
11541
- label: I18NProperty75;
11872
+ label: I18NProperty77;
11542
11873
  type: 'button' | 'BUTTON';
11543
11874
  key: string;
11544
11875
  [k: string]: unknown;
@@ -11562,7 +11893,7 @@ export interface ButtonControl {
11562
11893
  *
11563
11894
  *
11564
11895
  */
11565
- export interface I18NProperty75 {
11896
+ export interface I18NProperty77 {
11566
11897
  value: string;
11567
11898
  i18n?: string;
11568
11899
  [k: string]: unknown;
@@ -11637,7 +11968,7 @@ export interface ToggleGroup {
11637
11968
  */
11638
11969
  export interface ToggleButtonControl {
11639
11970
  macroParameterValue: string;
11640
- label: I18NProperty76;
11971
+ label: I18NProperty78;
11641
11972
  type: 'togglebutton' | 'TOGGLEBUTTON';
11642
11973
  key: string;
11643
11974
  [k: string]: unknown;
@@ -11661,7 +11992,7 @@ export interface ToggleButtonControl {
11661
11992
  *
11662
11993
  *
11663
11994
  */
11664
- export interface I18NProperty76 {
11995
+ export interface I18NProperty78 {
11665
11996
  value: string;
11666
11997
  i18n?: string;
11667
11998
  [k: string]: unknown;
@@ -11730,7 +12061,7 @@ export interface ControlGroup {
11730
12061
  *
11731
12062
  */
11732
12063
  export interface ButtonControl1 {
11733
- label: I18NProperty77;
12064
+ label: I18NProperty79;
11734
12065
  type: 'button' | 'BUTTON';
11735
12066
  key: string;
11736
12067
  [k: string]: unknown;
@@ -11754,7 +12085,7 @@ export interface ButtonControl1 {
11754
12085
  *
11755
12086
  *
11756
12087
  */
11757
- export interface I18NProperty77 {
12088
+ export interface I18NProperty79 {
11758
12089
  value: string;
11759
12090
  i18n?: string;
11760
12091
  [k: string]: unknown;
@@ -32339,7 +32670,7 @@ export interface ImagePlaceholder {
32339
32670
  *
32340
32671
  *
32341
32672
  */
32342
- export interface I18NProperty78 {
32673
+ export interface I18NProperty80 {
32343
32674
  value: string;
32344
32675
  i18n?: string;
32345
32676
  [k: string]: unknown;
@@ -32414,9 +32745,9 @@ export interface MacroInputParameter {
32414
32745
  indexing?: MacroParameterIndexing1;
32415
32746
  defaultValue?: string;
32416
32747
  values?: string[];
32417
- name: I18NProperty79;
32748
+ name: I18NProperty81;
32418
32749
  multiple?: boolean;
32419
- description?: I18NProperty80;
32750
+ description?: I18NProperty82;
32420
32751
  type:
32421
32752
  | 'attachment'
32422
32753
  | 'ATTACHMENT'
@@ -32491,7 +32822,7 @@ export interface MacroParameterIndexing1 {
32491
32822
  *
32492
32823
  *
32493
32824
  */
32494
- export interface I18NProperty79 {
32825
+ export interface I18NProperty81 {
32495
32826
  value: string;
32496
32827
  i18n?: string;
32497
32828
  [k: string]: unknown;
@@ -32515,7 +32846,7 @@ export interface I18NProperty79 {
32515
32846
  *
32516
32847
  *
32517
32848
  */
32518
- export interface I18NProperty80 {
32849
+ export interface I18NProperty82 {
32519
32850
  value: string;
32520
32851
  i18n?: string;
32521
32852
  [k: string]: unknown;
@@ -32578,8 +32909,8 @@ export interface I18NProperty80 {
32578
32909
  *
32579
32910
  */
32580
32911
  export interface MacroEditor1 {
32581
- insertTitle?: I18NProperty81;
32582
- editTitle?: I18NProperty82;
32912
+ insertTitle?: I18NProperty83;
32913
+ editTitle?: I18NProperty84;
32583
32914
  width?: string;
32584
32915
  cacheable?: boolean;
32585
32916
  url: string;
@@ -32605,7 +32936,7 @@ export interface MacroEditor1 {
32605
32936
  *
32606
32937
  *
32607
32938
  */
32608
- export interface I18NProperty81 {
32939
+ export interface I18NProperty83 {
32609
32940
  value: string;
32610
32941
  i18n?: string;
32611
32942
  [k: string]: unknown;
@@ -32629,7 +32960,7 @@ export interface I18NProperty81 {
32629
32960
  *
32630
32961
  *
32631
32962
  */
32632
- export interface I18NProperty82 {
32963
+ export interface I18NProperty84 {
32633
32964
  value: string;
32634
32965
  i18n?: string;
32635
32966
  [k: string]: unknown;
@@ -32709,7 +33040,7 @@ export interface Icon17 {
32709
33040
  *
32710
33041
  *
32711
33042
  */
32712
- export interface I18NProperty83 {
33043
+ export interface I18NProperty85 {
32713
33044
  value: string;
32714
33045
  i18n?: string;
32715
33046
  [k: string]: unknown;
@@ -32830,7 +33161,7 @@ export interface ToggleGroup1 {
32830
33161
  */
32831
33162
  export interface ToggleButtonControl1 {
32832
33163
  macroParameterValue: string;
32833
- label: I18NProperty84;
33164
+ label: I18NProperty86;
32834
33165
  type: 'togglebutton' | 'TOGGLEBUTTON';
32835
33166
  key: string;
32836
33167
  [k: string]: unknown;
@@ -32854,7 +33185,7 @@ export interface ToggleButtonControl1 {
32854
33185
  *
32855
33186
  *
32856
33187
  */
32857
- export interface I18NProperty84 {
33188
+ export interface I18NProperty86 {
32858
33189
  value: string;
32859
33190
  i18n?: string;
32860
33191
  [k: string]: unknown;
@@ -32882,7 +33213,7 @@ export interface I18NProperty84 {
32882
33213
  *
32883
33214
  */
32884
33215
  export interface ButtonControl2 {
32885
- label: I18NProperty85;
33216
+ label: I18NProperty87;
32886
33217
  type: 'button' | 'BUTTON';
32887
33218
  key: string;
32888
33219
  [k: string]: unknown;
@@ -32906,7 +33237,7 @@ export interface ButtonControl2 {
32906
33237
  *
32907
33238
  *
32908
33239
  */
32909
- export interface I18NProperty85 {
33240
+ export interface I18NProperty87 {
32910
33241
  value: string;
32911
33242
  i18n?: string;
32912
33243
  [k: string]: unknown;
@@ -33003,7 +33334,7 @@ export interface ControlGroup1 {
33003
33334
  *
33004
33335
  */
33005
33336
  export interface ButtonControl3 {
33006
- label: I18NProperty86;
33337
+ label: I18NProperty88;
33007
33338
  type: 'button' | 'BUTTON';
33008
33339
  key: string;
33009
33340
  [k: string]: unknown;
@@ -33027,7 +33358,7 @@ export interface ButtonControl3 {
33027
33358
  *
33028
33359
  *
33029
33360
  */
33030
- export interface I18NProperty86 {
33361
+ export interface I18NProperty88 {
33031
33362
  value: string;
33032
33363
  i18n?: string;
33033
33364
  [k: string]: unknown;
@@ -53557,7 +53888,7 @@ export interface ImagePlaceholder1 {
53557
53888
  *
53558
53889
  *
53559
53890
  */
53560
- export interface I18NProperty87 {
53891
+ export interface I18NProperty89 {
53561
53892
  value: string;
53562
53893
  i18n?: string;
53563
53894
  [k: string]: unknown;
@@ -53632,9 +53963,9 @@ export interface MacroInputParameter1 {
53632
53963
  indexing?: MacroParameterIndexing2;
53633
53964
  defaultValue?: string;
53634
53965
  values?: string[];
53635
- name: I18NProperty88;
53966
+ name: I18NProperty90;
53636
53967
  multiple?: boolean;
53637
- description?: I18NProperty89;
53968
+ description?: I18NProperty91;
53638
53969
  type:
53639
53970
  | 'attachment'
53640
53971
  | 'ATTACHMENT'
@@ -53709,7 +54040,7 @@ export interface MacroParameterIndexing2 {
53709
54040
  *
53710
54041
  *
53711
54042
  */
53712
- export interface I18NProperty88 {
54043
+ export interface I18NProperty90 {
53713
54044
  value: string;
53714
54045
  i18n?: string;
53715
54046
  [k: string]: unknown;
@@ -53733,7 +54064,7 @@ export interface I18NProperty88 {
53733
54064
  *
53734
54065
  *
53735
54066
  */
53736
- export interface I18NProperty89 {
54067
+ export interface I18NProperty91 {
53737
54068
  value: string;
53738
54069
  i18n?: string;
53739
54070
  [k: string]: unknown;
@@ -53757,7 +54088,7 @@ export interface I18NProperty89 {
53757
54088
  *
53758
54089
  *
53759
54090
  */
53760
- export interface I18NProperty90 {
54091
+ export interface I18NProperty92 {
53761
54092
  value: string;
53762
54093
  i18n?: string;
53763
54094
  [k: string]: unknown;
@@ -53809,7 +54140,7 @@ export interface Icon18 {
53809
54140
  *
53810
54141
  *
53811
54142
  */
53812
- export interface I18NProperty91 {
54143
+ export interface I18NProperty93 {
53813
54144
  value: string;
53814
54145
  i18n?: string;
53815
54146
  [k: string]: unknown;
@@ -54019,7 +54350,7 @@ export interface DialogOptions4 {
54019
54350
  | 'MAXIMUM';
54020
54351
  chrome?: boolean;
54021
54352
  width?: string;
54022
- header?: I18NProperty92;
54353
+ header?: I18NProperty94;
54023
54354
  height?: string;
54024
54355
  [k: string]: unknown;
54025
54356
  }
@@ -54042,7 +54373,7 @@ export interface DialogOptions4 {
54042
54373
  *
54043
54374
  *
54044
54375
  */
54045
- export interface I18NProperty92 {
54376
+ export interface I18NProperty94 {
54046
54377
  value: string;
54047
54378
  i18n?: string;
54048
54379
  [k: string]: unknown;
@@ -54775,7 +55106,7 @@ export interface Icon19 {
54775
55106
  *
54776
55107
  *
54777
55108
  */
54778
- export interface I18NProperty93 {
55109
+ export interface I18NProperty95 {
54779
55110
  value: string;
54780
55111
  i18n?: string;
54781
55112
  [k: string]: unknown;
@@ -54799,7 +55130,7 @@ export interface I18NProperty93 {
54799
55130
  *
54800
55131
  *
54801
55132
  */
54802
- export interface I18NProperty94 {
55133
+ export interface I18NProperty96 {
54803
55134
  value: string;
54804
55135
  i18n?: string;
54805
55136
  [k: string]: unknown;
@@ -103,6 +103,8 @@ export declare enum AllModuleTypes {
103
103
  ConnectJiraJiraEntityProperties = "connect-jira:jiraEntityProperties",
104
104
  ConnectJiraJiraFeatureFlagInfoProvider = "connect-jira:jiraFeatureFlagInfoProvider",
105
105
  ConnectJiraJiraIssueContents = "connect-jira:jiraIssueContents",
106
+ ConnectJiraJiraIssueContexts = "connect-jira:jiraIssueContexts",
107
+ ConnectJiraJiraRemoteLinkInfoProvider = "connect-jira:jiraRemoteLinkInfoProvider",
106
108
  ConnectJiraJiraIssueTabPanels = "connect-jira:jiraIssueTabPanels",
107
109
  ConnectJiraJiraIssueTypes = "connect-jira:jiraIssueTypes",
108
110
  ConnectJiraJiraProjectPages = "connect-jira:jiraProjectPages",
@@ -1 +1 @@
1
- {"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"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"}
@@ -107,6 +107,8 @@ var AllModuleTypes;
107
107
  AllModuleTypes["ConnectJiraJiraEntityProperties"] = "connect-jira:jiraEntityProperties";
108
108
  AllModuleTypes["ConnectJiraJiraFeatureFlagInfoProvider"] = "connect-jira:jiraFeatureFlagInfoProvider";
109
109
  AllModuleTypes["ConnectJiraJiraIssueContents"] = "connect-jira:jiraIssueContents";
110
+ AllModuleTypes["ConnectJiraJiraIssueContexts"] = "connect-jira:jiraIssueContexts";
111
+ AllModuleTypes["ConnectJiraJiraRemoteLinkInfoProvider"] = "connect-jira:jiraRemoteLinkInfoProvider";
110
112
  AllModuleTypes["ConnectJiraJiraIssueTabPanels"] = "connect-jira:jiraIssueTabPanels";
111
113
  AllModuleTypes["ConnectJiraJiraIssueTypes"] = "connect-jira:jiraIssueTypes";
112
114
  AllModuleTypes["ConnectJiraJiraProjectPages"] = "connect-jira:jiraProjectPages";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "5.1.0",
3
+ "version": "5.1.1-next.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {