@forge/manifest 8.0.1-next.0 → 8.1.0-next.2

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.1.0-next.2
4
+
5
+ ### Minor Changes
6
+
7
+ - 3d8c83f: Add linting for runtime.name: nodejs22.x.
8
+
9
+ ## 8.0.1-next.1
10
+
11
+ ### Patch Changes
12
+
13
+ - f5a52b8: Update manifest definitions
14
+
3
15
  ## 8.0.1-next.0
4
16
 
5
17
  ### Patch Changes
@@ -33,7 +33,8 @@
33
33
  "enum": [
34
34
  "sandbox",
35
35
  "nodejs18.x",
36
- "nodejs20.x"
36
+ "nodejs20.x",
37
+ "nodejs22.x"
37
38
  ]
38
39
  }
39
40
  },
@@ -20,7 +20,7 @@ export type Snapshots = boolean;
20
20
  /**
21
21
  * Name of the runtime to use for app execution.
22
22
  */
23
- export type Name = 'sandbox' | 'nodejs18.x' | 'nodejs20.x';
23
+ export type Name = 'sandbox' | 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x';
24
24
  /**
25
25
  * Whether to enable paid app licensing for production installations of this app. Default value of false.
26
26
  */
@@ -33,7 +33,8 @@
33
33
  "enum": [
34
34
  "sandbox",
35
35
  "nodejs18.x",
36
- "nodejs20.x"
36
+ "nodejs20.x",
37
+ "nodejs22.x"
37
38
  ]
38
39
  }
39
40
  },
@@ -13240,6 +13241,272 @@
13240
13241
  },
13241
13242
  "minItems": 1
13242
13243
  },
13244
+ "jira:sprintAction": {
13245
+ "type": "array",
13246
+ "items": {
13247
+ "additionalProperties": false,
13248
+ "type": "object",
13249
+ "properties": {
13250
+ "icon": {
13251
+ "type": "string",
13252
+ "minLength": 1,
13253
+ "maxLength": 255
13254
+ },
13255
+ "resource": {
13256
+ "type": "string",
13257
+ "minLength": 1,
13258
+ "maxLength": 23,
13259
+ "pattern": "^[a-zA-Z0-9_\\-]+$"
13260
+ },
13261
+ "title": {
13262
+ "anyOf": [
13263
+ {
13264
+ "type": "string",
13265
+ "minLength": 1,
13266
+ "maxLength": 255
13267
+ },
13268
+ {
13269
+ "additionalProperties": false,
13270
+ "type": "object",
13271
+ "properties": {
13272
+ "i18n": {
13273
+ "type": "string",
13274
+ "minLength": 1,
13275
+ "maxLength": 300,
13276
+ "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
13277
+ }
13278
+ },
13279
+ "required": [
13280
+ "i18n"
13281
+ ]
13282
+ }
13283
+ ]
13284
+ },
13285
+ "title__i18n": {
13286
+ "type": "string",
13287
+ "minLength": 1,
13288
+ "maxLength": 300,
13289
+ "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
13290
+ },
13291
+ "tooltip": {
13292
+ "anyOf": [
13293
+ {
13294
+ "type": "string",
13295
+ "minLength": 1,
13296
+ "maxLength": 255
13297
+ },
13298
+ {
13299
+ "additionalProperties": false,
13300
+ "type": "object",
13301
+ "properties": {
13302
+ "i18n": {
13303
+ "type": "string",
13304
+ "minLength": 1,
13305
+ "maxLength": 300,
13306
+ "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
13307
+ }
13308
+ },
13309
+ "required": [
13310
+ "i18n"
13311
+ ]
13312
+ }
13313
+ ]
13314
+ },
13315
+ "tooltip__i18n": {
13316
+ "type": "string",
13317
+ "minLength": 1,
13318
+ "maxLength": 300,
13319
+ "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
13320
+ },
13321
+ "resolver": {
13322
+ "anyOf": [
13323
+ {
13324
+ "additionalProperties": false,
13325
+ "type": "object",
13326
+ "properties": {
13327
+ "function": {
13328
+ "type": "string",
13329
+ "minLength": 1,
13330
+ "maxLength": 255,
13331
+ "pattern": "^[a-zA-Z0-9-_]+$"
13332
+ }
13333
+ },
13334
+ "required": [
13335
+ "function"
13336
+ ]
13337
+ },
13338
+ {
13339
+ "additionalProperties": false,
13340
+ "type": "object",
13341
+ "properties": {
13342
+ "endpoint": {
13343
+ "type": "string",
13344
+ "minLength": 1,
13345
+ "maxLength": 255,
13346
+ "pattern": "^[a-zA-Z0-9-_]+$"
13347
+ }
13348
+ },
13349
+ "required": [
13350
+ "endpoint"
13351
+ ]
13352
+ }
13353
+ ]
13354
+ },
13355
+ "resourceUploadId": {
13356
+ "type": "string",
13357
+ "minLength": 1,
13358
+ "maxLength": 255
13359
+ },
13360
+ "actionType": {
13361
+ "minLength": 1,
13362
+ "maxLength": 255,
13363
+ "enum": [
13364
+ "dynamic",
13365
+ "modal"
13366
+ ],
13367
+ "type": "string"
13368
+ },
13369
+ "viewportSize": {
13370
+ "minLength": 1,
13371
+ "maxLength": 255,
13372
+ "enum": [
13373
+ "large",
13374
+ "max",
13375
+ "medium",
13376
+ "small",
13377
+ "xlarge"
13378
+ ],
13379
+ "type": "string"
13380
+ },
13381
+ "actions": {
13382
+ "type": "array",
13383
+ "items": {
13384
+ "additionalProperties": false,
13385
+ "type": "object",
13386
+ "properties": {
13387
+ "key": {
13388
+ "type": "string",
13389
+ "minLength": 1,
13390
+ "maxLength": 23,
13391
+ "pattern": "^[a-zA-Z0-9_\\-]+$"
13392
+ },
13393
+ "actionType": {
13394
+ "minLength": 1,
13395
+ "maxLength": 255,
13396
+ "enum": [
13397
+ "dynamic",
13398
+ "modal"
13399
+ ],
13400
+ "type": "string"
13401
+ },
13402
+ "viewportSize": {
13403
+ "minLength": 1,
13404
+ "maxLength": 255,
13405
+ "enum": [
13406
+ "large",
13407
+ "max",
13408
+ "medium",
13409
+ "small",
13410
+ "xlarge"
13411
+ ],
13412
+ "type": "string"
13413
+ },
13414
+ "title": {
13415
+ "anyOf": [
13416
+ {
13417
+ "type": "string",
13418
+ "minLength": 1,
13419
+ "maxLength": 255
13420
+ },
13421
+ {
13422
+ "additionalProperties": false,
13423
+ "type": "object",
13424
+ "properties": {
13425
+ "i18n": {
13426
+ "type": "string",
13427
+ "minLength": 1,
13428
+ "maxLength": 300,
13429
+ "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
13430
+ }
13431
+ },
13432
+ "required": [
13433
+ "i18n"
13434
+ ]
13435
+ }
13436
+ ]
13437
+ },
13438
+ "title__i18n": {
13439
+ "type": "string",
13440
+ "minLength": 1,
13441
+ "maxLength": 300,
13442
+ "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
13443
+ },
13444
+ "tooltip": {
13445
+ "anyOf": [
13446
+ {
13447
+ "type": "string",
13448
+ "minLength": 1,
13449
+ "maxLength": 255
13450
+ },
13451
+ {
13452
+ "additionalProperties": false,
13453
+ "type": "object",
13454
+ "properties": {
13455
+ "i18n": {
13456
+ "type": "string",
13457
+ "minLength": 1,
13458
+ "maxLength": 300,
13459
+ "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
13460
+ }
13461
+ },
13462
+ "required": [
13463
+ "i18n"
13464
+ ]
13465
+ }
13466
+ ]
13467
+ },
13468
+ "tooltip__i18n": {
13469
+ "type": "string",
13470
+ "minLength": 1,
13471
+ "maxLength": 300,
13472
+ "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
13473
+ }
13474
+ },
13475
+ "required": [
13476
+ "key",
13477
+ "title"
13478
+ ]
13479
+ }
13480
+ },
13481
+ "render": {
13482
+ "default": "default",
13483
+ "enum": [
13484
+ "default",
13485
+ "native"
13486
+ ],
13487
+ "type": "string"
13488
+ },
13489
+ "displayConditions": {
13490
+ "type": "object",
13491
+ "properties": {}
13492
+ },
13493
+ "key": {
13494
+ "$ref": "#/definitions/ModuleKeySchema"
13495
+ }
13496
+ },
13497
+ "required": [
13498
+ "resource",
13499
+ "title",
13500
+ "key"
13501
+ ],
13502
+ "not": {
13503
+ "required": [
13504
+ "unlicensedAccess"
13505
+ ]
13506
+ }
13507
+ },
13508
+ "minItems": 1
13509
+ },
13243
13510
  "compass:adminPage": {
13244
13511
  "type": "array",
13245
13512
  "items": {
@@ -20,7 +20,7 @@ export type Snapshots = boolean;
20
20
  /**
21
21
  * Name of the runtime to use for app execution.
22
22
  */
23
- export type Name = 'sandbox' | 'nodejs18.x' | 'nodejs20.x';
23
+ export type Name = 'sandbox' | 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x';
24
24
  /**
25
25
  * Whether to enable paid app licensing for production installations of this app. Default value of false.
26
26
  */
@@ -6791,6 +6791,104 @@ export interface Modules {
6791
6791
  key: ModuleKeySchema;
6792
6792
  }[]
6793
6793
  ];
6794
+ 'jira:sprintAction'?: [
6795
+ {
6796
+ icon?: string;
6797
+ resource: string;
6798
+ title:
6799
+ | string
6800
+ | {
6801
+ i18n: string;
6802
+ };
6803
+ title__i18n?: string;
6804
+ tooltip?:
6805
+ | string
6806
+ | {
6807
+ i18n: string;
6808
+ };
6809
+ tooltip__i18n?: string;
6810
+ resolver?:
6811
+ | {
6812
+ function: string;
6813
+ }
6814
+ | {
6815
+ endpoint: string;
6816
+ };
6817
+ resourceUploadId?: string;
6818
+ actionType?: 'dynamic' | 'modal';
6819
+ viewportSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6820
+ actions?: {
6821
+ key: string;
6822
+ actionType?: 'dynamic' | 'modal';
6823
+ viewportSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6824
+ title:
6825
+ | string
6826
+ | {
6827
+ i18n: string;
6828
+ };
6829
+ title__i18n?: string;
6830
+ tooltip?:
6831
+ | string
6832
+ | {
6833
+ i18n: string;
6834
+ };
6835
+ tooltip__i18n?: string;
6836
+ }[];
6837
+ render?: 'default' | 'native';
6838
+ displayConditions?: {
6839
+ [k: string]: unknown;
6840
+ };
6841
+ key: ModuleKeySchema;
6842
+ },
6843
+ ...{
6844
+ icon?: string;
6845
+ resource: string;
6846
+ title:
6847
+ | string
6848
+ | {
6849
+ i18n: string;
6850
+ };
6851
+ title__i18n?: string;
6852
+ tooltip?:
6853
+ | string
6854
+ | {
6855
+ i18n: string;
6856
+ };
6857
+ tooltip__i18n?: string;
6858
+ resolver?:
6859
+ | {
6860
+ function: string;
6861
+ }
6862
+ | {
6863
+ endpoint: string;
6864
+ };
6865
+ resourceUploadId?: string;
6866
+ actionType?: 'dynamic' | 'modal';
6867
+ viewportSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6868
+ actions?: {
6869
+ key: string;
6870
+ actionType?: 'dynamic' | 'modal';
6871
+ viewportSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6872
+ title:
6873
+ | string
6874
+ | {
6875
+ i18n: string;
6876
+ };
6877
+ title__i18n?: string;
6878
+ tooltip?:
6879
+ | string
6880
+ | {
6881
+ i18n: string;
6882
+ };
6883
+ tooltip__i18n?: string;
6884
+ }[];
6885
+ render?: 'default' | 'native';
6886
+ displayConditions?: {
6887
+ [k: string]: unknown;
6888
+ };
6889
+ key: ModuleKeySchema;
6890
+ }[]
6891
+ ];
6794
6892
  'compass:adminPage'?: [
6795
6893
  (
6796
6894
  | {
@@ -46,6 +46,7 @@ export declare enum AllModuleTypes {
46
46
  JiraBacklogAction = "jira:backlogAction",
47
47
  JiraPersonalSettingsPage = "jira:personalSettingsPage",
48
48
  JiraBoardAction = "jira:boardAction",
49
+ JiraSprintAction = "jira:sprintAction",
49
50
  CompassAdminPage = "compass:adminPage",
50
51
  CompassComponentPage = "compass:componentPage",
51
52
  CompassGlobalPage = "compass:globalPage",
@@ -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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"}
@@ -50,6 +50,7 @@ var AllModuleTypes;
50
50
  AllModuleTypes["JiraBacklogAction"] = "jira:backlogAction";
51
51
  AllModuleTypes["JiraPersonalSettingsPage"] = "jira:personalSettingsPage";
52
52
  AllModuleTypes["JiraBoardAction"] = "jira:boardAction";
53
+ AllModuleTypes["JiraSprintAction"] = "jira:sprintAction";
53
54
  AllModuleTypes["CompassAdminPage"] = "compass:adminPage";
54
55
  AllModuleTypes["CompassComponentPage"] = "compass:componentPage";
55
56
  AllModuleTypes["CompassGlobalPage"] = "compass:globalPage";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "8.0.1-next.0",
3
+ "version": "8.1.0-next.2",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {