@forge/manifest 5.4.1-next.1 → 5.4.1-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,20 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 5.4.1-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 16a7cf5: Bumping dependencies via Renovate:
8
+
9
+ - @types/node-fetch
10
+
11
+ ## 5.4.1-next.2
12
+
13
+ ### Patch Changes
14
+
15
+ - e3a68a2: Update manifest definitions
16
+ - 1857967: Update manifest definitions
17
+
3
18
  ## 5.4.1-next.1
4
19
 
5
20
  ### Patch Changes
@@ -508,6 +508,38 @@
508
508
  "title": "cleanup",
509
509
  "type": "boolean"
510
510
  },
511
+ "outboundAuthContainerId": {
512
+ "maxLength": 1024,
513
+ "minLength": 1,
514
+ "type": "string"
515
+ },
516
+ "functions": {
517
+ "description": "A collection where the key represents the region name and the value contains the metadata of the function, including the lambda ARN and Runtime.",
518
+ "type": "object",
519
+ "additionalProperties": {
520
+ "type": "object",
521
+ "properties": {
522
+ "function": {
523
+ "type": "object",
524
+ "properties": {
525
+ "name": {
526
+ "type": "string"
527
+ }
528
+ }
529
+ },
530
+ "runtime": {
531
+ "oneOf": [
532
+ {
533
+ "$ref": "#/definitions/RuntimeLayer"
534
+ },
535
+ {
536
+ "$ref": "#/definitions/RuntimeWrapper"
537
+ }
538
+ ]
539
+ }
540
+ }
541
+ }
542
+ },
511
543
  "key": {
512
544
  "$ref": "#/definitions/ModuleKeySchema"
513
545
  }
@@ -7110,6 +7142,9 @@
7110
7142
  "minLength": 1,
7111
7143
  "maxLength": 255
7112
7144
  },
7145
+ "fullscreen": {
7146
+ "type": "boolean"
7147
+ },
7113
7148
  "function": {
7114
7149
  "type": "string",
7115
7150
  "minLength": 1,
@@ -7144,6 +7179,9 @@
7144
7179
  "minLength": 1,
7145
7180
  "maxLength": 255
7146
7181
  },
7182
+ "fullscreen": {
7183
+ "type": "boolean"
7184
+ },
7147
7185
  "resolver": {
7148
7186
  "anyOf": [
7149
7187
  {
@@ -16199,6 +16237,55 @@
16199
16237
  ]
16200
16238
  }
16201
16239
  },
16240
+ "RuntimeLayer": {
16241
+ "type": "object",
16242
+ "properties": {
16243
+ "identifier": {
16244
+ "type": "string"
16245
+ },
16246
+ "layer": {
16247
+ "type": "object",
16248
+ "properties": {
16249
+ "name": {
16250
+ "type": "string"
16251
+ },
16252
+ "version": {
16253
+ "type": "string"
16254
+ },
16255
+ "arn": {
16256
+ "type": "string"
16257
+ }
16258
+ }
16259
+ }
16260
+ },
16261
+ "required": [
16262
+ "identifier",
16263
+ "layer"
16264
+ ]
16265
+ },
16266
+ "RuntimeWrapper": {
16267
+ "type": "object",
16268
+ "properties": {
16269
+ "identifier": {
16270
+ "type": "string"
16271
+ },
16272
+ "wrapper": {
16273
+ "type": "object",
16274
+ "properties": {
16275
+ "name": {
16276
+ "type": "string"
16277
+ },
16278
+ "version": {
16279
+ "type": "string"
16280
+ }
16281
+ }
16282
+ }
16283
+ },
16284
+ "required": [
16285
+ "identifier",
16286
+ "wrapper"
16287
+ ]
16288
+ },
16202
16289
  "DisplayConditions": {
16203
16290
  "anyOf": [
16204
16291
  {
@@ -475,12 +475,40 @@ export interface Modules {
475
475
  {
476
476
  handler: Handler;
477
477
  cleanup?: Cleanup;
478
+ outboundAuthContainerId?: string;
479
+ /**
480
+ * A collection where the key represents the region name and the value contains the metadata of the function, including the lambda ARN and Runtime.
481
+ */
482
+ functions?: {
483
+ [k: string]: {
484
+ function?: {
485
+ name?: string;
486
+ [k: string]: unknown;
487
+ };
488
+ runtime?: RuntimeLayer | RuntimeWrapper;
489
+ [k: string]: unknown;
490
+ };
491
+ };
478
492
  key: ModuleKeySchema;
479
493
  [k: string]: unknown;
480
494
  },
481
495
  ...{
482
496
  handler: Handler;
483
497
  cleanup?: Cleanup;
498
+ outboundAuthContainerId?: string;
499
+ /**
500
+ * A collection where the key represents the region name and the value contains the metadata of the function, including the lambda ARN and Runtime.
501
+ */
502
+ functions?: {
503
+ [k: string]: {
504
+ function?: {
505
+ name?: string;
506
+ [k: string]: unknown;
507
+ };
508
+ runtime?: RuntimeLayer | RuntimeWrapper;
509
+ [k: string]: unknown;
510
+ };
511
+ };
484
512
  key: ModuleKeySchema;
485
513
  [k: string]: unknown;
486
514
  }[]
@@ -3724,6 +3752,7 @@ export interface Modules {
3724
3752
  | {
3725
3753
  title: string;
3726
3754
  icon?: string;
3755
+ fullscreen?: boolean;
3727
3756
  function: string;
3728
3757
  key: ModuleKeySchema;
3729
3758
  [k: string]: unknown;
@@ -3731,6 +3760,7 @@ export interface Modules {
3731
3760
  | {
3732
3761
  title: string;
3733
3762
  icon?: string;
3763
+ fullscreen?: boolean;
3734
3764
  resolver?:
3735
3765
  | {
3736
3766
  function: string;
@@ -3747,6 +3777,7 @@ export interface Modules {
3747
3777
  | {
3748
3778
  title: string;
3749
3779
  icon?: string;
3780
+ fullscreen?: boolean;
3750
3781
  function: string;
3751
3782
  key: ModuleKeySchema;
3752
3783
  [k: string]: unknown;
@@ -3754,6 +3785,7 @@ export interface Modules {
3754
3785
  | {
3755
3786
  title: string;
3756
3787
  icon?: string;
3788
+ fullscreen?: boolean;
3757
3789
  resolver?:
3758
3790
  | {
3759
3791
  function: string;
@@ -6756,6 +6788,25 @@ export interface Filter1 {
6756
6788
  export interface Filter2 {
6757
6789
  ignoreSelf: IgnoreSelf;
6758
6790
  }
6791
+ export interface RuntimeLayer {
6792
+ identifier: string;
6793
+ layer: {
6794
+ name?: string;
6795
+ version?: string;
6796
+ arn?: string;
6797
+ [k: string]: unknown;
6798
+ };
6799
+ [k: string]: unknown;
6800
+ }
6801
+ export interface RuntimeWrapper {
6802
+ identifier: string;
6803
+ wrapper: {
6804
+ name?: string;
6805
+ version?: string;
6806
+ [k: string]: unknown;
6807
+ };
6808
+ [k: string]: unknown;
6809
+ }
6759
6810
  /**
6760
6811
  *
6761
6812
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "5.4.1-next.1",
3
+ "version": "5.4.1-next.3",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {
@@ -17,7 +17,7 @@
17
17
  "devDependencies": {
18
18
  "@types/jest": "^29.5.11",
19
19
  "@types/node": "14.18.63",
20
- "@types/node-fetch": "^2.6.9"
20
+ "@types/node-fetch": "^2.6.10"
21
21
  },
22
22
  "author": "Atlassian",
23
23
  "license": "UNLICENSED",