@forge/manifest 11.0.0-next.7-experimental-003d118 → 11.0.0-next.8
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 +3 -15
- package/out/schema/manifest-schema.json +108 -4
- package/out/schema/manifest.d.ts +70 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,23 +1,11 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
-
## 11.0.0-next.
|
|
4
|
-
|
|
5
|
-
### Major Changes
|
|
6
|
-
|
|
7
|
-
- 260eb24: Adding support for new module fifoConsumer
|
|
8
|
-
- 8962080: Added routePrefix mandatory prop for confluence:fullPage
|
|
9
|
-
|
|
10
|
-
### Minor Changes
|
|
11
|
-
|
|
12
|
-
- 0a3f5d5: Add support for rovo:agentConnector module to the supported module types.
|
|
13
|
-
- 9a6d346: Add standalone trigger scope validation API (only event name and scopes required)
|
|
3
|
+
## 11.0.0-next.8
|
|
14
4
|
|
|
15
5
|
### Patch Changes
|
|
16
6
|
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
- d00ef59: Update manifest definitions
|
|
20
|
-
- 78efec7: Update manifest definitions
|
|
7
|
+
- 24bd686: Update manifest definitions
|
|
8
|
+
- 2011ffe: Update manifest definitions
|
|
21
9
|
|
|
22
10
|
## 11.0.0-next.7
|
|
23
11
|
|
|
@@ -6573,14 +6573,14 @@
|
|
|
6573
6573
|
"expression"
|
|
6574
6574
|
]
|
|
6575
6575
|
},
|
|
6576
|
-
"displayConditions": {
|
|
6577
|
-
"type": "object",
|
|
6578
|
-
"properties": {}
|
|
6579
|
-
},
|
|
6580
6576
|
"migratedFromConnect": {
|
|
6581
6577
|
"default": false,
|
|
6582
6578
|
"type": "boolean"
|
|
6583
6579
|
},
|
|
6580
|
+
"displayConditions": {
|
|
6581
|
+
"type": "object",
|
|
6582
|
+
"properties": {}
|
|
6583
|
+
},
|
|
6584
6584
|
"key": {
|
|
6585
6585
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
6586
6586
|
}
|
|
@@ -7015,6 +7015,10 @@
|
|
|
7015
7015
|
"expression"
|
|
7016
7016
|
]
|
|
7017
7017
|
},
|
|
7018
|
+
"migratedFromConnect": {
|
|
7019
|
+
"default": false,
|
|
7020
|
+
"type": "boolean"
|
|
7021
|
+
},
|
|
7018
7022
|
"displayConditions": {
|
|
7019
7023
|
"type": "object",
|
|
7020
7024
|
"properties": {}
|
|
@@ -7408,6 +7412,10 @@
|
|
|
7408
7412
|
"expression"
|
|
7409
7413
|
]
|
|
7410
7414
|
},
|
|
7415
|
+
"migratedFromConnect": {
|
|
7416
|
+
"default": false,
|
|
7417
|
+
"type": "boolean"
|
|
7418
|
+
},
|
|
7411
7419
|
"displayConditions": {
|
|
7412
7420
|
"type": "object",
|
|
7413
7421
|
"properties": {}
|
|
@@ -27419,6 +27427,84 @@
|
|
|
27419
27427
|
},
|
|
27420
27428
|
"minItems": 1
|
|
27421
27429
|
},
|
|
27430
|
+
"rovo:agentConnector": {
|
|
27431
|
+
"type": "array",
|
|
27432
|
+
"items": {
|
|
27433
|
+
"type": "object",
|
|
27434
|
+
"additionalProperties": false,
|
|
27435
|
+
"required": [
|
|
27436
|
+
"name",
|
|
27437
|
+
"description",
|
|
27438
|
+
"protocols",
|
|
27439
|
+
"key"
|
|
27440
|
+
],
|
|
27441
|
+
"properties": {
|
|
27442
|
+
"icon": {
|
|
27443
|
+
"type": "string",
|
|
27444
|
+
"minLength": 1,
|
|
27445
|
+
"maxLength": 255
|
|
27446
|
+
},
|
|
27447
|
+
"name": {
|
|
27448
|
+
"type": "string",
|
|
27449
|
+
"minLength": 1,
|
|
27450
|
+
"maxLength": 30
|
|
27451
|
+
},
|
|
27452
|
+
"description": {
|
|
27453
|
+
"minLength": 1,
|
|
27454
|
+
"maxLength": 255,
|
|
27455
|
+
"type": "string"
|
|
27456
|
+
},
|
|
27457
|
+
"conversationStarters": {
|
|
27458
|
+
"description": "A list of conversation starters that the agent can use to start a conversation with the user.",
|
|
27459
|
+
"type": "array",
|
|
27460
|
+
"minItems": 1,
|
|
27461
|
+
"uniqueItems": true,
|
|
27462
|
+
"items": {
|
|
27463
|
+
"type": "string",
|
|
27464
|
+
"minLength": 1,
|
|
27465
|
+
"maxLength": 85
|
|
27466
|
+
}
|
|
27467
|
+
},
|
|
27468
|
+
"protocols": {
|
|
27469
|
+
"description": "Defines how your agent communicates with other agents and systems. It specifies the protocols and transport mechanisms available for interactions with your remote agent.",
|
|
27470
|
+
"type": "object",
|
|
27471
|
+
"additionalProperties": false,
|
|
27472
|
+
"required": [
|
|
27473
|
+
"agent2Agent"
|
|
27474
|
+
],
|
|
27475
|
+
"properties": {
|
|
27476
|
+
"agent2Agent": {
|
|
27477
|
+
"type": "object",
|
|
27478
|
+
"additionalProperties": false,
|
|
27479
|
+
"required": [
|
|
27480
|
+
"agentCard",
|
|
27481
|
+
"jsonRpcTransport"
|
|
27482
|
+
],
|
|
27483
|
+
"properties": {
|
|
27484
|
+
"agentCard": {
|
|
27485
|
+
"$ref": "#/definitions/protocolEndpoint",
|
|
27486
|
+
"description": "Returns metadata about the agent, including its capabilities and supported actions."
|
|
27487
|
+
},
|
|
27488
|
+
"jsonRpcTransport": {
|
|
27489
|
+
"$ref": "#/definitions/protocolEndpoint",
|
|
27490
|
+
"description": "Enables Agent2Agent protocol over JSON-RPC 2.0 transport."
|
|
27491
|
+
}
|
|
27492
|
+
}
|
|
27493
|
+
}
|
|
27494
|
+
}
|
|
27495
|
+
},
|
|
27496
|
+
"key": {
|
|
27497
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
27498
|
+
}
|
|
27499
|
+
},
|
|
27500
|
+
"not": {
|
|
27501
|
+
"required": [
|
|
27502
|
+
"unlicensedAccess"
|
|
27503
|
+
]
|
|
27504
|
+
}
|
|
27505
|
+
},
|
|
27506
|
+
"minItems": 1
|
|
27507
|
+
},
|
|
27422
27508
|
"graph:smartLink": {
|
|
27423
27509
|
"type": "array",
|
|
27424
27510
|
"items": {
|
|
@@ -31733,6 +31819,24 @@
|
|
|
31733
31819
|
"title": "Body",
|
|
31734
31820
|
"description": "\n\n<p>\n Defines styles to be applied on the body of content view.\n </p>\n <p>\n The supported properties include <i>background</i> shorthand property and all CSS background element properties.\n The keys are the camelCased versions of corresponding CSS properties, like <i>backgroundImage</i>,\n <i>backgroundColor</i>, <i>backgroundSize</i>, <i>backgroundPosition</i>, <i>backgroundRepeat</i>,\n <i>backgroundClip</i>, <i>backgroundOrigin</i>, <i>backgroundAttachment</i>, and <i>backgroundBlendMode</i>.\n </p>\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"padding\": \"10px\",\n \"borderRadius\": \"0 0 5px 5px\",\n \"background\": \"#FFFFFF\"\n }\n\n\n"
|
|
31735
31821
|
},
|
|
31822
|
+
"protocolEndpoint": {
|
|
31823
|
+
"type": "object",
|
|
31824
|
+
"additionalProperties": false,
|
|
31825
|
+
"description": "A protocol endpoint that can be invoked to perform a task.",
|
|
31826
|
+
"properties": {
|
|
31827
|
+
"endpoint": {
|
|
31828
|
+
"type": "string",
|
|
31829
|
+
"title": "endpoint",
|
|
31830
|
+
"description": "The key of the endpoint that should be invoked.",
|
|
31831
|
+
"maxLength": 255,
|
|
31832
|
+
"minLength": 1,
|
|
31833
|
+
"pattern": "^[a-zA-Z0-9-._]+$"
|
|
31834
|
+
}
|
|
31835
|
+
},
|
|
31836
|
+
"required": [
|
|
31837
|
+
"endpoint"
|
|
31838
|
+
]
|
|
31839
|
+
},
|
|
31736
31840
|
"ExternalAuthProvider": {
|
|
31737
31841
|
"type": "string",
|
|
31738
31842
|
"description": "A key referencing authentication provider. This will be utilised to authenticate end-users and match with external users.",
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -523,6 +523,10 @@ export type ActionExtensionKey = string;
|
|
|
523
523
|
* The key for an action extension in your descriptor / manifest.
|
|
524
524
|
*/
|
|
525
525
|
export type ActionExtensionKey1 = string;
|
|
526
|
+
/**
|
|
527
|
+
* The key of the endpoint that should be invoked.
|
|
528
|
+
*/
|
|
529
|
+
export type Endpoint1 = string;
|
|
526
530
|
/**
|
|
527
531
|
* The domains that this object provider should match.
|
|
528
532
|
*/
|
|
@@ -14510,10 +14514,10 @@ export interface Modules {
|
|
|
14510
14514
|
expression: string;
|
|
14511
14515
|
[k: string]: unknown;
|
|
14512
14516
|
};
|
|
14517
|
+
migratedFromConnect?: boolean;
|
|
14513
14518
|
displayConditions?: {
|
|
14514
14519
|
[k: string]: unknown;
|
|
14515
14520
|
};
|
|
14516
|
-
migratedFromConnect?: boolean;
|
|
14517
14521
|
key: ModuleKeySchema;
|
|
14518
14522
|
[k: string]: unknown;
|
|
14519
14523
|
}
|
|
@@ -14622,6 +14626,7 @@ export interface Modules {
|
|
|
14622
14626
|
expression: string;
|
|
14623
14627
|
[k: string]: unknown;
|
|
14624
14628
|
};
|
|
14629
|
+
migratedFromConnect?: boolean;
|
|
14625
14630
|
displayConditions?: {
|
|
14626
14631
|
[k: string]: unknown;
|
|
14627
14632
|
};
|
|
@@ -14723,6 +14728,7 @@ export interface Modules {
|
|
|
14723
14728
|
expression: string;
|
|
14724
14729
|
[k: string]: unknown;
|
|
14725
14730
|
};
|
|
14731
|
+
migratedFromConnect?: boolean;
|
|
14726
14732
|
displayConditions?: {
|
|
14727
14733
|
[k: string]: unknown;
|
|
14728
14734
|
};
|
|
@@ -14833,10 +14839,10 @@ export interface Modules {
|
|
|
14833
14839
|
expression: string;
|
|
14834
14840
|
[k: string]: unknown;
|
|
14835
14841
|
};
|
|
14842
|
+
migratedFromConnect?: boolean;
|
|
14836
14843
|
displayConditions?: {
|
|
14837
14844
|
[k: string]: unknown;
|
|
14838
14845
|
};
|
|
14839
|
-
migratedFromConnect?: boolean;
|
|
14840
14846
|
key: ModuleKeySchema;
|
|
14841
14847
|
[k: string]: unknown;
|
|
14842
14848
|
}
|
|
@@ -14945,6 +14951,7 @@ export interface Modules {
|
|
|
14945
14951
|
expression: string;
|
|
14946
14952
|
[k: string]: unknown;
|
|
14947
14953
|
};
|
|
14954
|
+
migratedFromConnect?: boolean;
|
|
14948
14955
|
displayConditions?: {
|
|
14949
14956
|
[k: string]: unknown;
|
|
14950
14957
|
};
|
|
@@ -15046,6 +15053,7 @@ export interface Modules {
|
|
|
15046
15053
|
expression: string;
|
|
15047
15054
|
[k: string]: unknown;
|
|
15048
15055
|
};
|
|
15056
|
+
migratedFromConnect?: boolean;
|
|
15049
15057
|
displayConditions?: {
|
|
15050
15058
|
[k: string]: unknown;
|
|
15051
15059
|
};
|
|
@@ -23752,6 +23760,66 @@ export interface Modules {
|
|
|
23752
23760
|
key: ModuleKeySchema;
|
|
23753
23761
|
}[]
|
|
23754
23762
|
];
|
|
23763
|
+
'rovo:agentConnector'?: [
|
|
23764
|
+
{
|
|
23765
|
+
icon?: string;
|
|
23766
|
+
name: string;
|
|
23767
|
+
description: string;
|
|
23768
|
+
/**
|
|
23769
|
+
* A list of conversation starters that the agent can use to start a conversation with the user.
|
|
23770
|
+
*/
|
|
23771
|
+
conversationStarters?: [string, ...string[]];
|
|
23772
|
+
/**
|
|
23773
|
+
* Defines how your agent communicates with other agents and systems. It specifies the protocols and transport mechanisms available for interactions with your remote agent.
|
|
23774
|
+
*/
|
|
23775
|
+
protocols: {
|
|
23776
|
+
agent2Agent: {
|
|
23777
|
+
/**
|
|
23778
|
+
* Returns metadata about the agent, including its capabilities and supported actions.
|
|
23779
|
+
*/
|
|
23780
|
+
agentCard: {
|
|
23781
|
+
endpoint: Endpoint1;
|
|
23782
|
+
};
|
|
23783
|
+
/**
|
|
23784
|
+
* Enables Agent2Agent protocol over JSON-RPC 2.0 transport.
|
|
23785
|
+
*/
|
|
23786
|
+
jsonRpcTransport: {
|
|
23787
|
+
endpoint: Endpoint1;
|
|
23788
|
+
};
|
|
23789
|
+
};
|
|
23790
|
+
};
|
|
23791
|
+
key: ModuleKeySchema;
|
|
23792
|
+
},
|
|
23793
|
+
...{
|
|
23794
|
+
icon?: string;
|
|
23795
|
+
name: string;
|
|
23796
|
+
description: string;
|
|
23797
|
+
/**
|
|
23798
|
+
* A list of conversation starters that the agent can use to start a conversation with the user.
|
|
23799
|
+
*/
|
|
23800
|
+
conversationStarters?: [string, ...string[]];
|
|
23801
|
+
/**
|
|
23802
|
+
* Defines how your agent communicates with other agents and systems. It specifies the protocols and transport mechanisms available for interactions with your remote agent.
|
|
23803
|
+
*/
|
|
23804
|
+
protocols: {
|
|
23805
|
+
agent2Agent: {
|
|
23806
|
+
/**
|
|
23807
|
+
* Returns metadata about the agent, including its capabilities and supported actions.
|
|
23808
|
+
*/
|
|
23809
|
+
agentCard: {
|
|
23810
|
+
endpoint: Endpoint1;
|
|
23811
|
+
};
|
|
23812
|
+
/**
|
|
23813
|
+
* Enables Agent2Agent protocol over JSON-RPC 2.0 transport.
|
|
23814
|
+
*/
|
|
23815
|
+
jsonRpcTransport: {
|
|
23816
|
+
endpoint: Endpoint1;
|
|
23817
|
+
};
|
|
23818
|
+
};
|
|
23819
|
+
};
|
|
23820
|
+
key: ModuleKeySchema;
|
|
23821
|
+
}[]
|
|
23822
|
+
];
|
|
23755
23823
|
'graph:smartLink'?: [
|
|
23756
23824
|
{
|
|
23757
23825
|
/**
|