@forge/manifest 8.7.0-next.1 → 8.7.0-next.3

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,17 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 8.7.0-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 4b050d8: Update manifest definitions
8
+
9
+ ## 8.7.0-next.2
10
+
11
+ ### Patch Changes
12
+
13
+ - de16df9: Update manifest definitions
14
+
3
15
  ## 8.7.0-next.1
4
16
 
5
17
  ### Minor Changes
@@ -12101,114 +12101,228 @@
12101
12101
  "jira:jqlFunction": {
12102
12102
  "type": "array",
12103
12103
  "items": {
12104
- "type": "object",
12105
- "properties": {
12106
- "name": {
12107
- "minLength": 1,
12108
- "maxLength": 255,
12109
- "type": "string"
12110
- },
12111
- "arguments": {
12112
- "type": "array",
12113
- "items": {
12114
- "type": "object",
12115
- "properties": {
12116
- "name": {
12117
- "minLength": 1,
12118
- "maxLength": 255,
12119
- "type": "string"
12120
- },
12121
- "required": {
12122
- "type": "boolean"
12104
+ "oneOf": [
12105
+ {
12106
+ "type": "object",
12107
+ "properties": {
12108
+ "function": {
12109
+ "type": "string",
12110
+ "minLength": 1,
12111
+ "maxLength": 255,
12112
+ "pattern": "^[a-zA-Z0-9-_]+$"
12113
+ },
12114
+ "name": {
12115
+ "minLength": 1,
12116
+ "maxLength": 255,
12117
+ "type": "string"
12118
+ },
12119
+ "arguments": {
12120
+ "type": "array",
12121
+ "items": {
12122
+ "type": "object",
12123
+ "properties": {
12124
+ "name": {
12125
+ "minLength": 1,
12126
+ "maxLength": 255,
12127
+ "type": "string"
12128
+ },
12129
+ "required": {
12130
+ "type": "boolean"
12131
+ }
12132
+ },
12133
+ "required": [
12134
+ "name",
12135
+ "required"
12136
+ ]
12123
12137
  }
12124
12138
  },
12139
+ "types": {
12140
+ "type": "array",
12141
+ "items": {
12142
+ "type": "string",
12143
+ "enum": [
12144
+ "issue",
12145
+ "project",
12146
+ "project_category",
12147
+ "project_type",
12148
+ "hierarchy_level",
12149
+ "version",
12150
+ "component",
12151
+ "user",
12152
+ "group",
12153
+ "team",
12154
+ "project_role",
12155
+ "priority",
12156
+ "resolution",
12157
+ "issue_type",
12158
+ "status",
12159
+ "status_category",
12160
+ "cascading_option",
12161
+ "option",
12162
+ "saved_filter",
12163
+ "issue_security_level",
12164
+ "issue_restriction",
12165
+ "label",
12166
+ "attachment",
12167
+ "issue_list",
12168
+ "issue_link_type",
12169
+ "date",
12170
+ "text",
12171
+ "number",
12172
+ "duration",
12173
+ "url"
12174
+ ]
12175
+ }
12176
+ },
12177
+ "operators": {
12178
+ "type": "array",
12179
+ "items": {
12180
+ "type": "string",
12181
+ "enum": [
12182
+ "=",
12183
+ "!=",
12184
+ ">",
12185
+ ">=",
12186
+ "<",
12187
+ "<=",
12188
+ "in",
12189
+ "not in",
12190
+ "~",
12191
+ "!~",
12192
+ "is",
12193
+ "is not"
12194
+ ]
12195
+ }
12196
+ },
12197
+ "key": {
12198
+ "$ref": "#/definitions/ModuleKeySchema"
12199
+ }
12200
+ },
12201
+ "required": [
12202
+ "arguments",
12203
+ "function",
12204
+ "name",
12205
+ "operators",
12206
+ "types",
12207
+ "key"
12208
+ ],
12209
+ "not": {
12125
12210
  "required": [
12126
- "name",
12127
- "required"
12128
- ]
12129
- }
12130
- },
12131
- "types": {
12132
- "type": "array",
12133
- "items": {
12134
- "type": "string",
12135
- "enum": [
12136
- "issue",
12137
- "project",
12138
- "project_category",
12139
- "project_type",
12140
- "hierarchy_level",
12141
- "version",
12142
- "component",
12143
- "user",
12144
- "group",
12145
- "team",
12146
- "project_role",
12147
- "priority",
12148
- "resolution",
12149
- "issue_type",
12150
- "status",
12151
- "status_category",
12152
- "cascading_option",
12153
- "option",
12154
- "saved_filter",
12155
- "issue_security_level",
12156
- "issue_restriction",
12157
- "label",
12158
- "attachment",
12159
- "issue_list",
12160
- "issue_link_type",
12161
- "date",
12162
- "text",
12163
- "number",
12164
- "duration",
12165
- "url"
12211
+ "unlicensedAccess"
12166
12212
  ]
12167
12213
  }
12168
12214
  },
12169
- "operators": {
12170
- "type": "array",
12171
- "items": {
12172
- "type": "string",
12173
- "enum": [
12174
- "=",
12175
- "!=",
12176
- ">",
12177
- ">=",
12178
- "<",
12179
- "<=",
12180
- "in",
12181
- "not in",
12182
- "~",
12183
- "!~",
12184
- "is",
12185
- "is not"
12215
+ {
12216
+ "type": "object",
12217
+ "properties": {
12218
+ "endpoint": {
12219
+ "type": "string",
12220
+ "minLength": 1,
12221
+ "maxLength": 255,
12222
+ "pattern": "^[a-zA-Z0-9-_]+$"
12223
+ },
12224
+ "name": {
12225
+ "minLength": 1,
12226
+ "maxLength": 255,
12227
+ "type": "string"
12228
+ },
12229
+ "arguments": {
12230
+ "type": "array",
12231
+ "items": {
12232
+ "type": "object",
12233
+ "properties": {
12234
+ "name": {
12235
+ "minLength": 1,
12236
+ "maxLength": 255,
12237
+ "type": "string"
12238
+ },
12239
+ "required": {
12240
+ "type": "boolean"
12241
+ }
12242
+ },
12243
+ "required": [
12244
+ "name",
12245
+ "required"
12246
+ ]
12247
+ }
12248
+ },
12249
+ "types": {
12250
+ "type": "array",
12251
+ "items": {
12252
+ "type": "string",
12253
+ "enum": [
12254
+ "issue",
12255
+ "project",
12256
+ "project_category",
12257
+ "project_type",
12258
+ "hierarchy_level",
12259
+ "version",
12260
+ "component",
12261
+ "user",
12262
+ "group",
12263
+ "team",
12264
+ "project_role",
12265
+ "priority",
12266
+ "resolution",
12267
+ "issue_type",
12268
+ "status",
12269
+ "status_category",
12270
+ "cascading_option",
12271
+ "option",
12272
+ "saved_filter",
12273
+ "issue_security_level",
12274
+ "issue_restriction",
12275
+ "label",
12276
+ "attachment",
12277
+ "issue_list",
12278
+ "issue_link_type",
12279
+ "date",
12280
+ "text",
12281
+ "number",
12282
+ "duration",
12283
+ "url"
12284
+ ]
12285
+ }
12286
+ },
12287
+ "operators": {
12288
+ "type": "array",
12289
+ "items": {
12290
+ "type": "string",
12291
+ "enum": [
12292
+ "=",
12293
+ "!=",
12294
+ ">",
12295
+ ">=",
12296
+ "<",
12297
+ "<=",
12298
+ "in",
12299
+ "not in",
12300
+ "~",
12301
+ "!~",
12302
+ "is",
12303
+ "is not"
12304
+ ]
12305
+ }
12306
+ },
12307
+ "key": {
12308
+ "$ref": "#/definitions/ModuleKeySchema"
12309
+ }
12310
+ },
12311
+ "required": [
12312
+ "arguments",
12313
+ "endpoint",
12314
+ "name",
12315
+ "operators",
12316
+ "types",
12317
+ "key"
12318
+ ],
12319
+ "not": {
12320
+ "required": [
12321
+ "unlicensedAccess"
12186
12322
  ]
12187
12323
  }
12188
- },
12189
- "function": {
12190
- "type": "string",
12191
- "minLength": 1,
12192
- "maxLength": 255,
12193
- "pattern": "^[a-zA-Z0-9-_]+$"
12194
- },
12195
- "key": {
12196
- "$ref": "#/definitions/ModuleKeySchema"
12197
12324
  }
12198
- },
12199
- "required": [
12200
- "arguments",
12201
- "function",
12202
- "name",
12203
- "operators",
12204
- "types",
12205
- "key"
12206
- ],
12207
- "not": {
12208
- "required": [
12209
- "unlicensedAccess"
12210
- ]
12211
- }
12325
+ ]
12212
12326
  },
12213
12327
  "minItems": 1
12214
12328
  },
@@ -25652,6 +25766,206 @@
25652
25766
  }
25653
25767
  },
25654
25768
  "minItems": 1
25769
+ },
25770
+ "graph:entityProvider": {
25771
+ "type": "array",
25772
+ "items": {
25773
+ "$schema": "http://json-schema.org/draft-07/schema#",
25774
+ "type": "object",
25775
+ "properties": {
25776
+ "homeUrl": {
25777
+ "type": "string",
25778
+ "description": "The URL of the entity provider home page."
25779
+ },
25780
+ "logoUrl": {
25781
+ "type": "string",
25782
+ "description": "The URL of the entity provider logo."
25783
+ },
25784
+ "name": {
25785
+ "type": "object",
25786
+ "description": "The name of the entity provider.",
25787
+ "properties": {
25788
+ "value": {
25789
+ "type": "string",
25790
+ "description": "The name of the entity provider."
25791
+ }
25792
+ }
25793
+ },
25794
+ "checkPermission": {
25795
+ "type": "object",
25796
+ "properties": {
25797
+ "function": {
25798
+ "$ref": "#/definitions/ExtensionKey",
25799
+ "description": "The key of the function that should be invoked for permission check.",
25800
+ "title": "function"
25801
+ }
25802
+ },
25803
+ "required": [
25804
+ "function"
25805
+ ]
25806
+ },
25807
+ "getByUrl": {
25808
+ "type": "object",
25809
+ "properties": {
25810
+ "function": {
25811
+ "$ref": "#/definitions/ExtensionKey",
25812
+ "description": "The key of the function that should be invoked for getByUrl.",
25813
+ "title": "function"
25814
+ },
25815
+ "domains": {
25816
+ "type": "array",
25817
+ "items": {
25818
+ "type": "string"
25819
+ },
25820
+ "minItems": 1,
25821
+ "maxItems": 10,
25822
+ "description": "The domains that this object provider should match.",
25823
+ "title": "domains"
25824
+ },
25825
+ "subdomains": {
25826
+ "type": "boolean",
25827
+ "title": "subdomain",
25828
+ "description": "Should sub-domains be allowed."
25829
+ },
25830
+ "patterns": {
25831
+ "type": "array",
25832
+ "items": {
25833
+ "type": "string"
25834
+ },
25835
+ "minItems": 1,
25836
+ "maxItems": 20,
25837
+ "description": "Patterns used for matching URLs that are resolvable to entities.",
25838
+ "title": "patterns"
25839
+ }
25840
+ },
25841
+ "required": [
25842
+ "function",
25843
+ "domains",
25844
+ "patterns"
25845
+ ],
25846
+ "additionalProperties": false
25847
+ },
25848
+ "entities": {
25849
+ "type": "array",
25850
+ "description": "Ingestion nouns that the entity provider can provide.",
25851
+ "minItems": 1,
25852
+ "items": {
25853
+ "type": "object",
25854
+ "properties": {
25855
+ "key": {
25856
+ "type": "string",
25857
+ "description": "A name for the entity. Must be unique within the manifest."
25858
+ },
25859
+ "type": {
25860
+ "type": "string",
25861
+ "description": "The type of the ingestion noun."
25862
+ },
25863
+ "avatarUrl": {
25864
+ "type": "string",
25865
+ "description": "The URL of the avatar for the entity."
25866
+ },
25867
+ "imageUrl": {
25868
+ "type": "string",
25869
+ "description": "The URL of the image for the entity."
25870
+ }
25871
+ },
25872
+ "required": [
25873
+ "key",
25874
+ "type"
25875
+ ],
25876
+ "additionalProperties": false
25877
+ }
25878
+ },
25879
+ "key": {
25880
+ "$ref": "#/definitions/ModuleKeySchema"
25881
+ }
25882
+ },
25883
+ "required": [
25884
+ "entities",
25885
+ "key"
25886
+ ],
25887
+ "additionalProperties": false,
25888
+ "not": {
25889
+ "required": [
25890
+ "unlicensedAccess"
25891
+ ]
25892
+ }
25893
+ },
25894
+ "minItems": 1
25895
+ },
25896
+ "graph:connector": {
25897
+ "type": "array",
25898
+ "items": {
25899
+ "$schema": "http://json-schema.org/draft-07/schema#",
25900
+ "type": "object",
25901
+ "properties": {
25902
+ "displayName": {
25903
+ "type": "string"
25904
+ },
25905
+ "icon": {
25906
+ "type": "string"
25907
+ },
25908
+ "schedule": {
25909
+ "type": "array",
25910
+ "description": "The schedule for the connector.",
25911
+ "minItems": 1,
25912
+ "items": {
25913
+ "type": "object",
25914
+ "properties": {
25915
+ "function": {
25916
+ "$ref": "#/definitions/ExtensionKey",
25917
+ "description": "The key of the function that should be invoked on each schedule.",
25918
+ "title": "function"
25919
+ },
25920
+ "interval": {
25921
+ "type": "string",
25922
+ "enum": [
25923
+ "hourly",
25924
+ "daily",
25925
+ "weekly",
25926
+ "monthly"
25927
+ ]
25928
+ },
25929
+ "type": {
25930
+ "type": "string",
25931
+ "enum": [
25932
+ "FULLSCAN",
25933
+ "INCREMENTAL"
25934
+ ]
25935
+ }
25936
+ },
25937
+ "required": [
25938
+ "function",
25939
+ "interval",
25940
+ "type"
25941
+ ]
25942
+ }
25943
+ },
25944
+ "providedEntities": {
25945
+ "type": "array",
25946
+ "items": {
25947
+ "type": "string",
25948
+ "minLength": 1,
25949
+ "maxLength": 255
25950
+ }
25951
+ },
25952
+ "key": {
25953
+ "$ref": "#/definitions/ModuleKeySchema"
25954
+ }
25955
+ },
25956
+ "required": [
25957
+ "schedule",
25958
+ "providedEntities",
25959
+ "key"
25960
+ ],
25961
+ "additionalProperties": false,
25962
+ "not": {
25963
+ "required": [
25964
+ "unlicensedAccess"
25965
+ ]
25966
+ }
25967
+ },
25968
+ "minItems": 1
25655
25969
  }
25656
25970
  },
25657
25971
  "title": "ModuleSchema",
@@ -26541,7 +26855,7 @@
26541
26855
  "type": "array"
26542
26856
  },
26543
26857
  "ExtensionKey": {
26544
- "description": "The key for an extension in CaaS. That means that this is a reference to another\nextension in your descriptor / manifest.\n\nThis key is defined in: https://bitbucket.org/atlassian/connect-service/src/cd7252b/service/cs-apps/api.raml#lines-1094",
26858
+ "description": "The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.",
26545
26859
  "maxLength": 255,
26546
26860
  "minLength": 1,
26547
26861
  "pattern": "^[a-zA-Z0-9-._]+$",
@@ -68,10 +68,7 @@ export type FilteredProductEvents = {
68
68
  [k: string]: unknown;
69
69
  }[];
70
70
  /**
71
- * The key for an extension in CaaS. That means that this is a reference to another
72
- * extension in your descriptor / manifest.
73
- *
74
- * This key is defined in: https://bitbucket.org/atlassian/connect-service/src/cd7252b/service/cs-apps/api.raml#lines-1094
71
+ * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
75
72
  */
76
73
  export type Function = string;
77
74
  export type Filter1 =
@@ -86,10 +83,7 @@ export type Filter1 =
86
83
  };
87
84
  export type Events1 = ProductEvents | FilteredProductEvents;
88
85
  /**
89
- * The key for an extension in CaaS. That means that this is a reference to another
90
- * extension in your descriptor / manifest.
91
- *
92
- * This key is defined in: https://bitbucket.org/atlassian/connect-service/src/cd7252b/service/cs-apps/api.raml#lines-1094
86
+ * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
93
87
  */
94
88
  export type Endpoint = string;
95
89
  export type Filter2 =
@@ -118,10 +112,7 @@ export type Function2 = string;
118
112
  export type Interval = 'fiveMinute' | 'hour' | 'day' | 'week';
119
113
  export type Foo1 = string;
120
114
  /**
121
- * The key for an extension in CaaS. That means that this is a reference to another
122
- * extension in your descriptor / manifest.
123
- *
124
- * This key is defined in: https://bitbucket.org/atlassian/connect-service/src/cd7252b/service/cs-apps/api.raml#lines-1094
115
+ * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
125
116
  */
126
117
  export type Endpoint1 = string;
127
118
  /**
@@ -150,17 +141,11 @@ export type Function3 = string;
150
141
  export type Function4 = string;
151
142
  export type CoreActionIOType = 'boolean' | 'integer' | 'number' | 'string';
152
143
  /**
153
- * The key for an extension in CaaS. That means that this is a reference to another
154
- * extension in your descriptor / manifest.
155
- *
156
- * This key is defined in: https://bitbucket.org/atlassian/connect-service/src/cd7252b/service/cs-apps/api.raml#lines-1094
144
+ * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
157
145
  */
158
146
  export type Endpoint2 = string;
159
147
  /**
160
- * The key for an extension in CaaS. That means that this is a reference to another
161
- * extension in your descriptor / manifest.
162
- *
163
- * This key is defined in: https://bitbucket.org/atlassian/connect-service/src/cd7252b/service/cs-apps/api.raml#lines-1094
148
+ * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
164
149
  */
165
150
  export type Endpoint3 = string;
166
151
  /**
@@ -451,6 +436,171 @@ export type LinkTypes = [
451
436
  * The key for an action extension in your descriptor / manifest.
452
437
  */
453
438
  export type ActionExtensionKey = string;
439
+ /**
440
+ * The key of the function that should be invoked for permission check.
441
+ */
442
+ export type Function5 = string;
443
+ /**
444
+ * The key of the function that should be invoked for getByUrl.
445
+ */
446
+ export type Function6 = string;
447
+ /**
448
+ * The domains that this object provider should match.
449
+ */
450
+ export type Domains =
451
+ | [string]
452
+ | [string, string]
453
+ | [string, string, string]
454
+ | [string, string, string, string]
455
+ | [string, string, string, string, string]
456
+ | [string, string, string, string, string, string]
457
+ | [string, string, string, string, string, string, string]
458
+ | [string, string, string, string, string, string, string, string]
459
+ | [string, string, string, string, string, string, string, string, string]
460
+ | [string, string, string, string, string, string, string, string, string, string];
461
+ /**
462
+ * Should sub-domains be allowed.
463
+ */
464
+ export type Subdomain = boolean;
465
+ /**
466
+ * Patterns used for matching URLs that are resolvable to entities.
467
+ */
468
+ export type Patterns =
469
+ | [string]
470
+ | [string, string]
471
+ | [string, string, string]
472
+ | [string, string, string, string]
473
+ | [string, string, string, string, string]
474
+ | [string, string, string, string, string, string]
475
+ | [string, string, string, string, string, string, string]
476
+ | [string, string, string, string, string, string, string, string]
477
+ | [string, string, string, string, string, string, string, string, string]
478
+ | [string, string, string, string, string, string, string, string, string, string]
479
+ | [string, string, string, string, string, string, string, string, string, string, string]
480
+ | [string, string, string, string, string, string, string, string, string, string, string, string]
481
+ | [string, string, string, string, string, string, string, string, string, string, string, string, string]
482
+ | [string, string, string, string, string, string, string, string, string, string, string, string, string, string]
483
+ | [
484
+ string,
485
+ string,
486
+ string,
487
+ string,
488
+ string,
489
+ string,
490
+ string,
491
+ string,
492
+ string,
493
+ string,
494
+ string,
495
+ string,
496
+ string,
497
+ string,
498
+ string
499
+ ]
500
+ | [
501
+ string,
502
+ string,
503
+ string,
504
+ string,
505
+ string,
506
+ string,
507
+ string,
508
+ string,
509
+ string,
510
+ string,
511
+ string,
512
+ string,
513
+ string,
514
+ string,
515
+ string,
516
+ string
517
+ ]
518
+ | [
519
+ string,
520
+ string,
521
+ string,
522
+ string,
523
+ string,
524
+ string,
525
+ string,
526
+ string,
527
+ string,
528
+ string,
529
+ string,
530
+ string,
531
+ string,
532
+ string,
533
+ string,
534
+ string,
535
+ string
536
+ ]
537
+ | [
538
+ string,
539
+ string,
540
+ string,
541
+ string,
542
+ string,
543
+ string,
544
+ string,
545
+ string,
546
+ string,
547
+ string,
548
+ string,
549
+ string,
550
+ string,
551
+ string,
552
+ string,
553
+ string,
554
+ string,
555
+ string
556
+ ]
557
+ | [
558
+ string,
559
+ string,
560
+ string,
561
+ string,
562
+ string,
563
+ string,
564
+ string,
565
+ string,
566
+ string,
567
+ string,
568
+ string,
569
+ string,
570
+ string,
571
+ string,
572
+ string,
573
+ string,
574
+ string,
575
+ string,
576
+ string
577
+ ]
578
+ | [
579
+ string,
580
+ string,
581
+ string,
582
+ string,
583
+ string,
584
+ string,
585
+ string,
586
+ string,
587
+ string,
588
+ string,
589
+ string,
590
+ string,
591
+ string,
592
+ string,
593
+ string,
594
+ string,
595
+ string,
596
+ string,
597
+ string,
598
+ string
599
+ ];
600
+ /**
601
+ * The key of the function that should be invoked on each schedule.
602
+ */
603
+ export type Function7 = string;
454
604
  export type Scopes = string[];
455
605
  export type Scripts = string[];
456
606
  export type Styles = 'unsafe-inline'[];
@@ -6281,94 +6431,186 @@ export interface Modules {
6281
6431
  }[]
6282
6432
  ];
6283
6433
  'jira:jqlFunction'?: [
6284
- {
6285
- name: string;
6286
- arguments: {
6287
- name: string;
6288
- required: boolean;
6289
- [k: string]: unknown;
6290
- }[];
6291
- types: (
6292
- | 'issue'
6293
- | 'project'
6294
- | 'project_category'
6295
- | 'project_type'
6296
- | 'hierarchy_level'
6297
- | 'version'
6298
- | 'component'
6299
- | 'user'
6300
- | 'group'
6301
- | 'team'
6302
- | 'project_role'
6303
- | 'priority'
6304
- | 'resolution'
6305
- | 'issue_type'
6306
- | 'status'
6307
- | 'status_category'
6308
- | 'cascading_option'
6309
- | 'option'
6310
- | 'saved_filter'
6311
- | 'issue_security_level'
6312
- | 'issue_restriction'
6313
- | 'label'
6314
- | 'attachment'
6315
- | 'issue_list'
6316
- | 'issue_link_type'
6317
- | 'date'
6318
- | 'text'
6319
- | 'number'
6320
- | 'duration'
6321
- | 'url'
6322
- )[];
6323
- operators: ('=' | '!=' | '>' | '>=' | '<' | '<=' | 'in' | 'not in' | '~' | '!~' | 'is' | 'is not')[];
6324
- function: string;
6325
- key: ModuleKeySchema;
6326
- [k: string]: unknown;
6327
- },
6328
- ...{
6329
- name: string;
6330
- arguments: {
6331
- name: string;
6332
- required: boolean;
6333
- [k: string]: unknown;
6334
- }[];
6335
- types: (
6336
- | 'issue'
6337
- | 'project'
6338
- | 'project_category'
6339
- | 'project_type'
6340
- | 'hierarchy_level'
6341
- | 'version'
6342
- | 'component'
6343
- | 'user'
6344
- | 'group'
6345
- | 'team'
6346
- | 'project_role'
6347
- | 'priority'
6348
- | 'resolution'
6349
- | 'issue_type'
6350
- | 'status'
6351
- | 'status_category'
6352
- | 'cascading_option'
6353
- | 'option'
6354
- | 'saved_filter'
6355
- | 'issue_security_level'
6356
- | 'issue_restriction'
6357
- | 'label'
6358
- | 'attachment'
6359
- | 'issue_list'
6360
- | 'issue_link_type'
6361
- | 'date'
6362
- | 'text'
6363
- | 'number'
6364
- | 'duration'
6365
- | 'url'
6366
- )[];
6367
- operators: ('=' | '!=' | '>' | '>=' | '<' | '<=' | 'in' | 'not in' | '~' | '!~' | 'is' | 'is not')[];
6368
- function: string;
6369
- key: ModuleKeySchema;
6370
- [k: string]: unknown;
6371
- }[]
6434
+ (
6435
+ | {
6436
+ function: string;
6437
+ name: string;
6438
+ arguments: {
6439
+ name: string;
6440
+ required: boolean;
6441
+ [k: string]: unknown;
6442
+ }[];
6443
+ types: (
6444
+ | 'issue'
6445
+ | 'project'
6446
+ | 'project_category'
6447
+ | 'project_type'
6448
+ | 'hierarchy_level'
6449
+ | 'version'
6450
+ | 'component'
6451
+ | 'user'
6452
+ | 'group'
6453
+ | 'team'
6454
+ | 'project_role'
6455
+ | 'priority'
6456
+ | 'resolution'
6457
+ | 'issue_type'
6458
+ | 'status'
6459
+ | 'status_category'
6460
+ | 'cascading_option'
6461
+ | 'option'
6462
+ | 'saved_filter'
6463
+ | 'issue_security_level'
6464
+ | 'issue_restriction'
6465
+ | 'label'
6466
+ | 'attachment'
6467
+ | 'issue_list'
6468
+ | 'issue_link_type'
6469
+ | 'date'
6470
+ | 'text'
6471
+ | 'number'
6472
+ | 'duration'
6473
+ | 'url'
6474
+ )[];
6475
+ operators: ('=' | '!=' | '>' | '>=' | '<' | '<=' | 'in' | 'not in' | '~' | '!~' | 'is' | 'is not')[];
6476
+ key: ModuleKeySchema;
6477
+ [k: string]: unknown;
6478
+ }
6479
+ | {
6480
+ endpoint: string;
6481
+ name: string;
6482
+ arguments: {
6483
+ name: string;
6484
+ required: boolean;
6485
+ [k: string]: unknown;
6486
+ }[];
6487
+ types: (
6488
+ | 'issue'
6489
+ | 'project'
6490
+ | 'project_category'
6491
+ | 'project_type'
6492
+ | 'hierarchy_level'
6493
+ | 'version'
6494
+ | 'component'
6495
+ | 'user'
6496
+ | 'group'
6497
+ | 'team'
6498
+ | 'project_role'
6499
+ | 'priority'
6500
+ | 'resolution'
6501
+ | 'issue_type'
6502
+ | 'status'
6503
+ | 'status_category'
6504
+ | 'cascading_option'
6505
+ | 'option'
6506
+ | 'saved_filter'
6507
+ | 'issue_security_level'
6508
+ | 'issue_restriction'
6509
+ | 'label'
6510
+ | 'attachment'
6511
+ | 'issue_list'
6512
+ | 'issue_link_type'
6513
+ | 'date'
6514
+ | 'text'
6515
+ | 'number'
6516
+ | 'duration'
6517
+ | 'url'
6518
+ )[];
6519
+ operators: ('=' | '!=' | '>' | '>=' | '<' | '<=' | 'in' | 'not in' | '~' | '!~' | 'is' | 'is not')[];
6520
+ key: ModuleKeySchema;
6521
+ [k: string]: unknown;
6522
+ }
6523
+ ),
6524
+ ...(
6525
+ | {
6526
+ function: string;
6527
+ name: string;
6528
+ arguments: {
6529
+ name: string;
6530
+ required: boolean;
6531
+ [k: string]: unknown;
6532
+ }[];
6533
+ types: (
6534
+ | 'issue'
6535
+ | 'project'
6536
+ | 'project_category'
6537
+ | 'project_type'
6538
+ | 'hierarchy_level'
6539
+ | 'version'
6540
+ | 'component'
6541
+ | 'user'
6542
+ | 'group'
6543
+ | 'team'
6544
+ | 'project_role'
6545
+ | 'priority'
6546
+ | 'resolution'
6547
+ | 'issue_type'
6548
+ | 'status'
6549
+ | 'status_category'
6550
+ | 'cascading_option'
6551
+ | 'option'
6552
+ | 'saved_filter'
6553
+ | 'issue_security_level'
6554
+ | 'issue_restriction'
6555
+ | 'label'
6556
+ | 'attachment'
6557
+ | 'issue_list'
6558
+ | 'issue_link_type'
6559
+ | 'date'
6560
+ | 'text'
6561
+ | 'number'
6562
+ | 'duration'
6563
+ | 'url'
6564
+ )[];
6565
+ operators: ('=' | '!=' | '>' | '>=' | '<' | '<=' | 'in' | 'not in' | '~' | '!~' | 'is' | 'is not')[];
6566
+ key: ModuleKeySchema;
6567
+ [k: string]: unknown;
6568
+ }
6569
+ | {
6570
+ endpoint: string;
6571
+ name: string;
6572
+ arguments: {
6573
+ name: string;
6574
+ required: boolean;
6575
+ [k: string]: unknown;
6576
+ }[];
6577
+ types: (
6578
+ | 'issue'
6579
+ | 'project'
6580
+ | 'project_category'
6581
+ | 'project_type'
6582
+ | 'hierarchy_level'
6583
+ | 'version'
6584
+ | 'component'
6585
+ | 'user'
6586
+ | 'group'
6587
+ | 'team'
6588
+ | 'project_role'
6589
+ | 'priority'
6590
+ | 'resolution'
6591
+ | 'issue_type'
6592
+ | 'status'
6593
+ | 'status_category'
6594
+ | 'cascading_option'
6595
+ | 'option'
6596
+ | 'saved_filter'
6597
+ | 'issue_security_level'
6598
+ | 'issue_restriction'
6599
+ | 'label'
6600
+ | 'attachment'
6601
+ | 'issue_list'
6602
+ | 'issue_link_type'
6603
+ | 'date'
6604
+ | 'text'
6605
+ | 'number'
6606
+ | 'duration'
6607
+ | 'url'
6608
+ )[];
6609
+ operators: ('=' | '!=' | '>' | '>=' | '<' | '<=' | 'in' | 'not in' | '~' | '!~' | 'is' | 'is not')[];
6610
+ key: ModuleKeySchema;
6611
+ [k: string]: unknown;
6612
+ }
6613
+ )[]
6372
6614
  ];
6373
6615
  'jira:timeTrackingProvider'?: [
6374
6616
  {
@@ -11572,6 +11814,200 @@ export interface Modules {
11572
11814
  key: ModuleKeySchema;
11573
11815
  }[]
11574
11816
  ];
11817
+ 'graph:entityProvider'?: [
11818
+ {
11819
+ /**
11820
+ * The URL of the entity provider home page.
11821
+ */
11822
+ homeUrl?: string;
11823
+ /**
11824
+ * The URL of the entity provider logo.
11825
+ */
11826
+ logoUrl?: string;
11827
+ /**
11828
+ * The name of the entity provider.
11829
+ */
11830
+ name?: {
11831
+ /**
11832
+ * The name of the entity provider.
11833
+ */
11834
+ value?: string;
11835
+ [k: string]: unknown;
11836
+ };
11837
+ checkPermission?: {
11838
+ function: Function5;
11839
+ [k: string]: unknown;
11840
+ };
11841
+ getByUrl?: {
11842
+ function: Function6;
11843
+ domains: Domains;
11844
+ subdomains?: Subdomain;
11845
+ patterns: Patterns;
11846
+ };
11847
+ /**
11848
+ * Ingestion nouns that the entity provider can provide.
11849
+ */
11850
+ entities: [
11851
+ {
11852
+ /**
11853
+ * A name for the entity. Must be unique within the manifest.
11854
+ */
11855
+ key: string;
11856
+ /**
11857
+ * The type of the ingestion noun.
11858
+ */
11859
+ type: string;
11860
+ /**
11861
+ * The URL of the avatar for the entity.
11862
+ */
11863
+ avatarUrl?: string;
11864
+ /**
11865
+ * The URL of the image for the entity.
11866
+ */
11867
+ imageUrl?: string;
11868
+ },
11869
+ ...{
11870
+ /**
11871
+ * A name for the entity. Must be unique within the manifest.
11872
+ */
11873
+ key: string;
11874
+ /**
11875
+ * The type of the ingestion noun.
11876
+ */
11877
+ type: string;
11878
+ /**
11879
+ * The URL of the avatar for the entity.
11880
+ */
11881
+ avatarUrl?: string;
11882
+ /**
11883
+ * The URL of the image for the entity.
11884
+ */
11885
+ imageUrl?: string;
11886
+ }[]
11887
+ ];
11888
+ key: ModuleKeySchema;
11889
+ },
11890
+ ...{
11891
+ /**
11892
+ * The URL of the entity provider home page.
11893
+ */
11894
+ homeUrl?: string;
11895
+ /**
11896
+ * The URL of the entity provider logo.
11897
+ */
11898
+ logoUrl?: string;
11899
+ /**
11900
+ * The name of the entity provider.
11901
+ */
11902
+ name?: {
11903
+ /**
11904
+ * The name of the entity provider.
11905
+ */
11906
+ value?: string;
11907
+ [k: string]: unknown;
11908
+ };
11909
+ checkPermission?: {
11910
+ function: Function5;
11911
+ [k: string]: unknown;
11912
+ };
11913
+ getByUrl?: {
11914
+ function: Function6;
11915
+ domains: Domains;
11916
+ subdomains?: Subdomain;
11917
+ patterns: Patterns;
11918
+ };
11919
+ /**
11920
+ * Ingestion nouns that the entity provider can provide.
11921
+ */
11922
+ entities: [
11923
+ {
11924
+ /**
11925
+ * A name for the entity. Must be unique within the manifest.
11926
+ */
11927
+ key: string;
11928
+ /**
11929
+ * The type of the ingestion noun.
11930
+ */
11931
+ type: string;
11932
+ /**
11933
+ * The URL of the avatar for the entity.
11934
+ */
11935
+ avatarUrl?: string;
11936
+ /**
11937
+ * The URL of the image for the entity.
11938
+ */
11939
+ imageUrl?: string;
11940
+ },
11941
+ ...{
11942
+ /**
11943
+ * A name for the entity. Must be unique within the manifest.
11944
+ */
11945
+ key: string;
11946
+ /**
11947
+ * The type of the ingestion noun.
11948
+ */
11949
+ type: string;
11950
+ /**
11951
+ * The URL of the avatar for the entity.
11952
+ */
11953
+ avatarUrl?: string;
11954
+ /**
11955
+ * The URL of the image for the entity.
11956
+ */
11957
+ imageUrl?: string;
11958
+ }[]
11959
+ ];
11960
+ key: ModuleKeySchema;
11961
+ }[]
11962
+ ];
11963
+ 'graph:connector'?: [
11964
+ {
11965
+ displayName?: string;
11966
+ icon?: string;
11967
+ /**
11968
+ * The schedule for the connector.
11969
+ */
11970
+ schedule: [
11971
+ {
11972
+ function: Function7;
11973
+ interval: 'hourly' | 'daily' | 'weekly' | 'monthly';
11974
+ type: 'FULLSCAN' | 'INCREMENTAL';
11975
+ [k: string]: unknown;
11976
+ },
11977
+ ...{
11978
+ function: Function7;
11979
+ interval: 'hourly' | 'daily' | 'weekly' | 'monthly';
11980
+ type: 'FULLSCAN' | 'INCREMENTAL';
11981
+ [k: string]: unknown;
11982
+ }[]
11983
+ ];
11984
+ providedEntities: string[];
11985
+ key: ModuleKeySchema;
11986
+ },
11987
+ ...{
11988
+ displayName?: string;
11989
+ icon?: string;
11990
+ /**
11991
+ * The schedule for the connector.
11992
+ */
11993
+ schedule: [
11994
+ {
11995
+ function: Function7;
11996
+ interval: 'hourly' | 'daily' | 'weekly' | 'monthly';
11997
+ type: 'FULLSCAN' | 'INCREMENTAL';
11998
+ [k: string]: unknown;
11999
+ },
12000
+ ...{
12001
+ function: Function7;
12002
+ interval: 'hourly' | 'daily' | 'weekly' | 'monthly';
12003
+ type: 'FULLSCAN' | 'INCREMENTAL';
12004
+ [k: string]: unknown;
12005
+ }[]
12006
+ ];
12007
+ providedEntities: string[];
12008
+ key: ModuleKeySchema;
12009
+ }[]
12010
+ ];
11575
12011
  [k: string]: unknown;
11576
12012
  }
11577
12013
  export interface RuntimeLayer {
@@ -34,6 +34,7 @@
34
34
  "delete:dashboard:jira",
35
35
  "delete:dashboard.property:jira",
36
36
  "delete:database:confluence",
37
+ "delete:deal-info:jira",
37
38
  "delete:deployment-info:jira",
38
39
  "delete:design:jira",
39
40
  "delete:dev-info:jira",
@@ -41,6 +42,7 @@
41
42
  "delete:embed:confluence",
42
43
  "delete:entitlement:jira-service-management",
43
44
  "delete:entitlement.detail-field:jira-service-management",
45
+ "delete:entity:graph",
44
46
  "delete:feature-flag-info:jira",
45
47
  "delete:field-configuration-scheme:jira",
46
48
  "delete:field-configuration:jira",
@@ -176,6 +178,7 @@
176
178
  "read:dashboard:jira",
177
179
  "read:dashboard.property:jira",
178
180
  "read:database:confluence",
181
+ "read:deal-info:jira",
179
182
  "read:deployment-info:jira",
180
183
  "read:deployment:jira-software",
181
184
  "read:design:jira",
@@ -189,6 +192,7 @@
189
192
  "read:entitlement.detail:jira-service-management",
190
193
  "read:entitlements:ccg",
191
194
  "read:entitlements:fsag",
195
+ "read:entity:graph",
192
196
  "read:epic:jira-software",
193
197
  "read:event:compass",
194
198
  "read:feature-flag-info:jira",
@@ -342,6 +346,7 @@
342
346
  "read:workflow.property:jira",
343
347
  "read:workspace:bitbucket",
344
348
  "readonly:content.attachment:confluence",
349
+ "redact:issue:jira",
345
350
  "report:personal-data",
346
351
  "search:confluence",
347
352
  "send:notification:jira",
@@ -394,6 +399,7 @@
394
399
  "write:dashboard:jira",
395
400
  "write:dashboard.property:jira",
396
401
  "write:database:confluence",
402
+ "write:deal-info:jira",
397
403
  "write:deployment-info:jira",
398
404
  "write:deployment:jira-software",
399
405
  "write:design:jira",
@@ -403,6 +409,7 @@
403
409
  "write:entitlement:jira-service-management",
404
410
  "write:entitlement.detail-field:jira-service-management",
405
411
  "write:entitlement.detail:jira-service-management",
412
+ "write:entity:graph",
406
413
  "write:epic:jira-software",
407
414
  "write:event:compass",
408
415
  "write:feature-flag-info:jira",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "8.7.0-next.1",
3
+ "version": "8.7.0-next.3",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {