@forge/manifest 9.4.1-next.0 → 9.5.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,21 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 9.5.0-next.2
4
+
5
+ ### Minor Changes
6
+
7
+ - b44a5b3: Fix the linter to keep the original object for egress permissions and allow to upgrade egress permissions to object
8
+
9
+ ## 9.5.0-next.1
10
+
11
+ ### Minor Changes
12
+
13
+ - 73a88f6: Updated module types file so Confluence content property can be declared in manifest
14
+
15
+ ### Patch Changes
16
+
17
+ - 97255de: Update manifest definitions
18
+
3
19
  ## 9.4.1-next.0
4
20
 
5
21
  ### Patch Changes
@@ -26595,36 +26595,60 @@
26595
26595
  },
26596
26596
  "minItems": 1
26597
26597
  },
26598
- "graph:entityProvider": {
26598
+ "graph:connector": {
26599
26599
  "type": "array",
26600
26600
  "items": {
26601
26601
  "$schema": "http://json-schema.org/draft-07/schema#",
26602
26602
  "type": "object",
26603
26603
  "properties": {
26604
- "homeUrl": {
26604
+ "name": {
26605
26605
  "type": "string",
26606
- "description": "The URL of the entity provider home page."
26606
+ "description": "The name of the connector."
26607
26607
  },
26608
- "logoUrl": {
26608
+ "icon": {
26609
26609
  "type": "string",
26610
- "description": "The URL of the entity provider logo."
26610
+ "description": "The icon for the connector."
26611
26611
  },
26612
- "name": {
26613
- "type": "object",
26614
- "description": "The name of the entity provider.",
26615
- "properties": {
26616
- "value": {
26617
- "type": "string",
26618
- "description": "The name of the entity provider."
26619
- }
26612
+ "entityTypes": {
26613
+ "type": "array",
26614
+ "description": "Entities that the connector can provide.",
26615
+ "minItems": 1,
26616
+ "items": {
26617
+ "type": "string",
26618
+ "enum": [
26619
+ "atlassian:document",
26620
+ "atlassian:branch",
26621
+ "atlassian:build",
26622
+ "atlassian:calendar-event",
26623
+ "atlassian:conversation",
26624
+ "atlassian:deal",
26625
+ "atlassian:organization",
26626
+ "atlassian:deployment",
26627
+ "atlassian:design",
26628
+ "atlassian:message",
26629
+ "atlassian:postion",
26630
+ "atlassian:customer-org",
26631
+ "atlassian:space",
26632
+ "atlassian:project",
26633
+ "atlassian:remote-link",
26634
+ "atlassian:comment",
26635
+ "atlassian:repository",
26636
+ "atlassian:commit",
26637
+ "atlassian:pull-request",
26638
+ "atlassian:video",
26639
+ "atlassian:work-item",
26640
+ "atlassian:worker"
26641
+ ],
26642
+ "minLength": 1,
26643
+ "maxLength": 255
26620
26644
  }
26621
26645
  },
26622
- "checkPermission": {
26646
+ "onConnectionChange": {
26623
26647
  "type": "object",
26624
26648
  "properties": {
26625
26649
  "function": {
26626
26650
  "$ref": "#/definitions/ExtensionKey",
26627
- "description": "The key of the function that should be invoked for permission check.",
26651
+ "description": "The key of the function that should be invoked on connection change.",
26628
26652
  "title": "function"
26629
26653
  }
26630
26654
  },
@@ -26632,158 +26656,14 @@
26632
26656
  "function"
26633
26657
  ]
26634
26658
  },
26635
- "getByUrl": {
26636
- "type": "object",
26637
- "properties": {
26638
- "function": {
26639
- "$ref": "#/definitions/ExtensionKey",
26640
- "description": "The key of the function that should be invoked for getByUrl.",
26641
- "title": "function"
26642
- },
26643
- "domains": {
26644
- "type": "array",
26645
- "items": {
26646
- "type": "string"
26647
- },
26648
- "minItems": 1,
26649
- "maxItems": 10,
26650
- "description": "The domains that this object provider should match.",
26651
- "title": "domains"
26652
- },
26653
- "subdomains": {
26654
- "type": "boolean",
26655
- "title": "subdomain",
26656
- "description": "Should sub-domains be allowed."
26657
- },
26658
- "patterns": {
26659
- "type": "array",
26660
- "items": {
26661
- "type": "string"
26662
- },
26663
- "minItems": 1,
26664
- "maxItems": 20,
26665
- "description": "Patterns used for matching URLs that are resolvable to entities.",
26666
- "title": "patterns"
26667
- }
26668
- },
26669
- "required": [
26670
- "function",
26671
- "domains",
26672
- "patterns"
26673
- ],
26674
- "additionalProperties": false
26675
- },
26676
- "entities": {
26677
- "type": "array",
26678
- "description": "Ingestion nouns that the entity provider can provide.",
26679
- "minItems": 1,
26680
- "items": {
26681
- "type": "object",
26682
- "properties": {
26683
- "key": {
26684
- "type": "string",
26685
- "description": "A name for the entity. Must be unique within the manifest."
26686
- },
26687
- "type": {
26688
- "type": "string",
26689
- "description": "The type of the ingestion noun."
26690
- },
26691
- "avatarUrl": {
26692
- "type": "string",
26693
- "description": "The URL of the avatar for the entity."
26694
- },
26695
- "imageUrl": {
26696
- "type": "string",
26697
- "description": "The URL of the image for the entity."
26698
- }
26699
- },
26700
- "required": [
26701
- "key",
26702
- "type"
26703
- ],
26704
- "additionalProperties": false
26705
- }
26706
- },
26707
26659
  "key": {
26708
26660
  "$ref": "#/definitions/ModuleKeySchema"
26709
26661
  }
26710
26662
  },
26711
26663
  "required": [
26712
- "entities",
26713
- "key"
26714
- ],
26715
- "additionalProperties": false,
26716
- "not": {
26717
- "required": [
26718
- "unlicensedAccess"
26719
- ]
26720
- }
26721
- },
26722
- "minItems": 1
26723
- },
26724
- "graph:connector": {
26725
- "type": "array",
26726
- "items": {
26727
- "$schema": "http://json-schema.org/draft-07/schema#",
26728
- "type": "object",
26729
- "properties": {
26730
- "displayName": {
26731
- "type": "string"
26732
- },
26733
- "icon": {
26734
- "type": "string"
26735
- },
26736
- "schedule": {
26737
- "type": "array",
26738
- "description": "The schedule for the connector.",
26739
- "minItems": 1,
26740
- "items": {
26741
- "type": "object",
26742
- "properties": {
26743
- "function": {
26744
- "$ref": "#/definitions/ExtensionKey",
26745
- "description": "The key of the function that should be invoked on each schedule.",
26746
- "title": "function"
26747
- },
26748
- "interval": {
26749
- "type": "string",
26750
- "enum": [
26751
- "hourly",
26752
- "daily",
26753
- "weekly",
26754
- "monthly"
26755
- ]
26756
- },
26757
- "type": {
26758
- "type": "string",
26759
- "enum": [
26760
- "FULLSCAN",
26761
- "INCREMENTAL"
26762
- ]
26763
- }
26764
- },
26765
- "required": [
26766
- "function",
26767
- "interval",
26768
- "type"
26769
- ]
26770
- }
26771
- },
26772
- "providedEntities": {
26773
- "type": "array",
26774
- "items": {
26775
- "type": "string",
26776
- "minLength": 1,
26777
- "maxLength": 255
26778
- }
26779
- },
26780
- "key": {
26781
- "$ref": "#/definitions/ModuleKeySchema"
26782
- }
26783
- },
26784
- "required": [
26785
- "schedule",
26786
- "providedEntities",
26664
+ "name",
26665
+ "icon",
26666
+ "entityTypes",
26787
26667
  "key"
26788
26668
  ],
26789
26669
  "additionalProperties": false,
@@ -527,167 +527,6 @@ export type ActionExtensionKey1 = string;
527
527
  * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
528
528
  */
529
529
  export type ExtensionKey10 = string;
530
- /**
531
- * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
532
- */
533
- export type ExtensionKey11 = string;
534
- /**
535
- * The domains that this object provider should match.
536
- */
537
- export type Domains =
538
- | [string]
539
- | [string, string]
540
- | [string, string, string]
541
- | [string, string, string, string]
542
- | [string, string, string, string, string]
543
- | [string, string, string, string, string, string]
544
- | [string, string, string, string, string, string, string]
545
- | [string, string, string, string, string, string, string, string]
546
- | [string, string, string, string, string, string, string, string, string]
547
- | [string, string, string, string, string, string, string, string, string, string];
548
- /**
549
- * Should sub-domains be allowed.
550
- */
551
- export type Subdomain = boolean;
552
- /**
553
- * Patterns used for matching URLs that are resolvable to entities.
554
- */
555
- export type Patterns =
556
- | [string]
557
- | [string, string]
558
- | [string, string, string]
559
- | [string, string, string, string]
560
- | [string, string, string, string, string]
561
- | [string, string, string, string, string, string]
562
- | [string, string, string, string, string, string, string]
563
- | [string, string, string, string, string, string, string, string]
564
- | [string, string, string, string, string, string, string, string, string]
565
- | [string, string, string, string, string, string, string, string, string, string]
566
- | [string, string, string, string, string, string, string, string, string, string, string]
567
- | [string, string, string, string, string, string, string, string, string, string, string, string]
568
- | [string, string, string, string, string, string, string, string, string, string, string, string, string]
569
- | [string, string, string, string, string, string, string, string, string, string, string, string, string, string]
570
- | [
571
- string,
572
- string,
573
- string,
574
- string,
575
- string,
576
- string,
577
- string,
578
- string,
579
- string,
580
- string,
581
- string,
582
- string,
583
- string,
584
- string,
585
- string
586
- ]
587
- | [
588
- string,
589
- string,
590
- string,
591
- string,
592
- string,
593
- string,
594
- string,
595
- string,
596
- string,
597
- string,
598
- string,
599
- string,
600
- string,
601
- string,
602
- string,
603
- string
604
- ]
605
- | [
606
- string,
607
- string,
608
- string,
609
- string,
610
- string,
611
- string,
612
- string,
613
- string,
614
- string,
615
- string,
616
- string,
617
- string,
618
- string,
619
- string,
620
- string,
621
- string,
622
- string
623
- ]
624
- | [
625
- string,
626
- string,
627
- string,
628
- string,
629
- string,
630
- string,
631
- string,
632
- string,
633
- string,
634
- string,
635
- string,
636
- string,
637
- string,
638
- string,
639
- string,
640
- string,
641
- string,
642
- string
643
- ]
644
- | [
645
- string,
646
- string,
647
- string,
648
- string,
649
- string,
650
- string,
651
- string,
652
- string,
653
- string,
654
- string,
655
- string,
656
- string,
657
- string,
658
- string,
659
- string,
660
- string,
661
- string,
662
- string,
663
- string
664
- ]
665
- | [
666
- string,
667
- string,
668
- string,
669
- string,
670
- string,
671
- string,
672
- string,
673
- string,
674
- string,
675
- string,
676
- string,
677
- string,
678
- string,
679
- string,
680
- string,
681
- string,
682
- string,
683
- string,
684
- string,
685
- string
686
- ];
687
- /**
688
- * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
689
- */
690
- export type ExtensionKey12 = string;
691
530
  export type Scopes =
692
531
  | string[]
693
532
  | {
@@ -22578,197 +22417,141 @@ export interface Modules {
22578
22417
  key: ModuleKeySchema;
22579
22418
  }[]
22580
22419
  ];
22581
- 'graph:entityProvider'?: [
22420
+ 'graph:connector'?: [
22582
22421
  {
22583
22422
  /**
22584
- * The URL of the entity provider home page.
22423
+ * The name of the connector.
22585
22424
  */
22586
- homeUrl?: string;
22425
+ name: string;
22587
22426
  /**
22588
- * The URL of the entity provider logo.
22427
+ * The icon for the connector.
22589
22428
  */
22590
- logoUrl?: string;
22429
+ icon: string;
22591
22430
  /**
22592
- * The name of the entity provider.
22431
+ * Entities that the connector can provide.
22593
22432
  */
22594
- name?: {
22595
- /**
22596
- * The name of the entity provider.
22597
- */
22598
- value?: string;
22599
- [k: string]: unknown;
22600
- };
22601
- checkPermission?: {
22433
+ entityTypes: [
22434
+ (
22435
+ | 'atlassian:document'
22436
+ | 'atlassian:branch'
22437
+ | 'atlassian:build'
22438
+ | 'atlassian:calendar-event'
22439
+ | 'atlassian:conversation'
22440
+ | 'atlassian:deal'
22441
+ | 'atlassian:organization'
22442
+ | 'atlassian:deployment'
22443
+ | 'atlassian:design'
22444
+ | 'atlassian:message'
22445
+ | 'atlassian:postion'
22446
+ | 'atlassian:customer-org'
22447
+ | 'atlassian:space'
22448
+ | 'atlassian:project'
22449
+ | 'atlassian:remote-link'
22450
+ | 'atlassian:comment'
22451
+ | 'atlassian:repository'
22452
+ | 'atlassian:commit'
22453
+ | 'atlassian:pull-request'
22454
+ | 'atlassian:video'
22455
+ | 'atlassian:work-item'
22456
+ | 'atlassian:worker'
22457
+ ),
22458
+ ...(
22459
+ | 'atlassian:document'
22460
+ | 'atlassian:branch'
22461
+ | 'atlassian:build'
22462
+ | 'atlassian:calendar-event'
22463
+ | 'atlassian:conversation'
22464
+ | 'atlassian:deal'
22465
+ | 'atlassian:organization'
22466
+ | 'atlassian:deployment'
22467
+ | 'atlassian:design'
22468
+ | 'atlassian:message'
22469
+ | 'atlassian:postion'
22470
+ | 'atlassian:customer-org'
22471
+ | 'atlassian:space'
22472
+ | 'atlassian:project'
22473
+ | 'atlassian:remote-link'
22474
+ | 'atlassian:comment'
22475
+ | 'atlassian:repository'
22476
+ | 'atlassian:commit'
22477
+ | 'atlassian:pull-request'
22478
+ | 'atlassian:video'
22479
+ | 'atlassian:work-item'
22480
+ | 'atlassian:worker'
22481
+ )[]
22482
+ ];
22483
+ onConnectionChange?: {
22602
22484
  function: ExtensionKey10;
22603
22485
  [k: string]: unknown;
22604
22486
  };
22605
- getByUrl?: {
22606
- function: ExtensionKey11;
22607
- domains: Domains;
22608
- subdomains?: Subdomain;
22609
- patterns: Patterns;
22610
- };
22611
- /**
22612
- * Ingestion nouns that the entity provider can provide.
22613
- */
22614
- entities: [
22615
- {
22616
- /**
22617
- * A name for the entity. Must be unique within the manifest.
22618
- */
22619
- key: string;
22620
- /**
22621
- * The type of the ingestion noun.
22622
- */
22623
- type: string;
22624
- /**
22625
- * The URL of the avatar for the entity.
22626
- */
22627
- avatarUrl?: string;
22628
- /**
22629
- * The URL of the image for the entity.
22630
- */
22631
- imageUrl?: string;
22632
- },
22633
- ...{
22634
- /**
22635
- * A name for the entity. Must be unique within the manifest.
22636
- */
22637
- key: string;
22638
- /**
22639
- * The type of the ingestion noun.
22640
- */
22641
- type: string;
22642
- /**
22643
- * The URL of the avatar for the entity.
22644
- */
22645
- avatarUrl?: string;
22646
- /**
22647
- * The URL of the image for the entity.
22648
- */
22649
- imageUrl?: string;
22650
- }[]
22651
- ];
22652
22487
  key: ModuleKeySchema;
22653
22488
  },
22654
22489
  ...{
22655
22490
  /**
22656
- * The URL of the entity provider home page.
22491
+ * The name of the connector.
22657
22492
  */
22658
- homeUrl?: string;
22493
+ name: string;
22659
22494
  /**
22660
- * The URL of the entity provider logo.
22495
+ * The icon for the connector.
22661
22496
  */
22662
- logoUrl?: string;
22497
+ icon: string;
22663
22498
  /**
22664
- * The name of the entity provider.
22499
+ * Entities that the connector can provide.
22665
22500
  */
22666
- name?: {
22667
- /**
22668
- * The name of the entity provider.
22669
- */
22670
- value?: string;
22671
- [k: string]: unknown;
22672
- };
22673
- checkPermission?: {
22501
+ entityTypes: [
22502
+ (
22503
+ | 'atlassian:document'
22504
+ | 'atlassian:branch'
22505
+ | 'atlassian:build'
22506
+ | 'atlassian:calendar-event'
22507
+ | 'atlassian:conversation'
22508
+ | 'atlassian:deal'
22509
+ | 'atlassian:organization'
22510
+ | 'atlassian:deployment'
22511
+ | 'atlassian:design'
22512
+ | 'atlassian:message'
22513
+ | 'atlassian:postion'
22514
+ | 'atlassian:customer-org'
22515
+ | 'atlassian:space'
22516
+ | 'atlassian:project'
22517
+ | 'atlassian:remote-link'
22518
+ | 'atlassian:comment'
22519
+ | 'atlassian:repository'
22520
+ | 'atlassian:commit'
22521
+ | 'atlassian:pull-request'
22522
+ | 'atlassian:video'
22523
+ | 'atlassian:work-item'
22524
+ | 'atlassian:worker'
22525
+ ),
22526
+ ...(
22527
+ | 'atlassian:document'
22528
+ | 'atlassian:branch'
22529
+ | 'atlassian:build'
22530
+ | 'atlassian:calendar-event'
22531
+ | 'atlassian:conversation'
22532
+ | 'atlassian:deal'
22533
+ | 'atlassian:organization'
22534
+ | 'atlassian:deployment'
22535
+ | 'atlassian:design'
22536
+ | 'atlassian:message'
22537
+ | 'atlassian:postion'
22538
+ | 'atlassian:customer-org'
22539
+ | 'atlassian:space'
22540
+ | 'atlassian:project'
22541
+ | 'atlassian:remote-link'
22542
+ | 'atlassian:comment'
22543
+ | 'atlassian:repository'
22544
+ | 'atlassian:commit'
22545
+ | 'atlassian:pull-request'
22546
+ | 'atlassian:video'
22547
+ | 'atlassian:work-item'
22548
+ | 'atlassian:worker'
22549
+ )[]
22550
+ ];
22551
+ onConnectionChange?: {
22674
22552
  function: ExtensionKey10;
22675
22553
  [k: string]: unknown;
22676
22554
  };
22677
- getByUrl?: {
22678
- function: ExtensionKey11;
22679
- domains: Domains;
22680
- subdomains?: Subdomain;
22681
- patterns: Patterns;
22682
- };
22683
- /**
22684
- * Ingestion nouns that the entity provider can provide.
22685
- */
22686
- entities: [
22687
- {
22688
- /**
22689
- * A name for the entity. Must be unique within the manifest.
22690
- */
22691
- key: string;
22692
- /**
22693
- * The type of the ingestion noun.
22694
- */
22695
- type: string;
22696
- /**
22697
- * The URL of the avatar for the entity.
22698
- */
22699
- avatarUrl?: string;
22700
- /**
22701
- * The URL of the image for the entity.
22702
- */
22703
- imageUrl?: string;
22704
- },
22705
- ...{
22706
- /**
22707
- * A name for the entity. Must be unique within the manifest.
22708
- */
22709
- key: string;
22710
- /**
22711
- * The type of the ingestion noun.
22712
- */
22713
- type: string;
22714
- /**
22715
- * The URL of the avatar for the entity.
22716
- */
22717
- avatarUrl?: string;
22718
- /**
22719
- * The URL of the image for the entity.
22720
- */
22721
- imageUrl?: string;
22722
- }[]
22723
- ];
22724
- key: ModuleKeySchema;
22725
- }[]
22726
- ];
22727
- 'graph:connector'?: [
22728
- {
22729
- displayName?: string;
22730
- icon?: string;
22731
- /**
22732
- * The schedule for the connector.
22733
- */
22734
- schedule: [
22735
- {
22736
- function: ExtensionKey12;
22737
- interval: 'hourly' | 'daily' | 'weekly' | 'monthly';
22738
- type: 'FULLSCAN' | 'INCREMENTAL';
22739
- [k: string]: unknown;
22740
- },
22741
- ...{
22742
- function: ExtensionKey12;
22743
- interval: 'hourly' | 'daily' | 'weekly' | 'monthly';
22744
- type: 'FULLSCAN' | 'INCREMENTAL';
22745
- [k: string]: unknown;
22746
- }[]
22747
- ];
22748
- providedEntities: string[];
22749
- key: ModuleKeySchema;
22750
- },
22751
- ...{
22752
- displayName?: string;
22753
- icon?: string;
22754
- /**
22755
- * The schedule for the connector.
22756
- */
22757
- schedule: [
22758
- {
22759
- function: ExtensionKey12;
22760
- interval: 'hourly' | 'daily' | 'weekly' | 'monthly';
22761
- type: 'FULLSCAN' | 'INCREMENTAL';
22762
- [k: string]: unknown;
22763
- },
22764
- ...{
22765
- function: ExtensionKey12;
22766
- interval: 'hourly' | 'daily' | 'weekly' | 'monthly';
22767
- type: 'FULLSCAN' | 'INCREMENTAL';
22768
- [k: string]: unknown;
22769
- }[]
22770
- ];
22771
- providedEntities: string[];
22772
22555
  key: ModuleKeySchema;
22773
22556
  }[]
22774
22557
  ];
@@ -22,6 +22,7 @@ export declare enum AllModuleTypes {
22
22
  ConfluenceSpaceSettings = "confluence:spaceSettings",
23
23
  ConfluenceBackgroundScript = "confluence:backgroundScript",
24
24
  ConfluencePageBanner = "confluence:pageBanner",
25
+ ConfluenceContentProperty = "confluence:contentProperty",
25
26
  JiraEntityProperty = "jira:entityProperty",
26
27
  JiraWorkflowValidator = "jira:workflowValidator",
27
28
  JiraWorkflowCondition = "jira:workflowCondition",
@@ -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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"}
@@ -26,6 +26,7 @@ var AllModuleTypes;
26
26
  AllModuleTypes["ConfluenceSpaceSettings"] = "confluence:spaceSettings";
27
27
  AllModuleTypes["ConfluenceBackgroundScript"] = "confluence:backgroundScript";
28
28
  AllModuleTypes["ConfluencePageBanner"] = "confluence:pageBanner";
29
+ AllModuleTypes["ConfluenceContentProperty"] = "confluence:contentProperty";
29
30
  AllModuleTypes["JiraEntityProperty"] = "jira:entityProperty";
30
31
  AllModuleTypes["JiraWorkflowValidator"] = "jira:workflowValidator";
31
32
  AllModuleTypes["JiraWorkflowCondition"] = "jira:workflowCondition";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "9.4.1-next.0",
3
+ "version": "9.5.0-next.2",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {