@forge/manifest 7.6.0-next.3 → 7.6.0-next.4
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 +6 -0
- package/out/schema/manifest-schema.json +36 -2
- package/out/schema/manifest.d.ts +64 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -835,6 +835,14 @@
|
|
|
835
835
|
"title": "function",
|
|
836
836
|
"type": "string"
|
|
837
837
|
},
|
|
838
|
+
"name": {
|
|
839
|
+
"description": "The name of the action",
|
|
840
|
+
"type": "string"
|
|
841
|
+
},
|
|
842
|
+
"icon": {
|
|
843
|
+
"description": "The url for the icon image to be displayed in the UI",
|
|
844
|
+
"type": "string"
|
|
845
|
+
},
|
|
838
846
|
"key": {
|
|
839
847
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
840
848
|
}
|
|
@@ -867,6 +875,14 @@
|
|
|
867
875
|
"title": "function",
|
|
868
876
|
"type": "string"
|
|
869
877
|
},
|
|
878
|
+
"name": {
|
|
879
|
+
"description": "The name of the action",
|
|
880
|
+
"type": "string"
|
|
881
|
+
},
|
|
882
|
+
"icon": {
|
|
883
|
+
"description": "The url for the icon image to be displayed in the UI",
|
|
884
|
+
"type": "string"
|
|
885
|
+
},
|
|
870
886
|
"actionVerb": {
|
|
871
887
|
"description": "The operation that will be performed as a result of calling this action",
|
|
872
888
|
"type": "string",
|
|
@@ -882,7 +898,8 @@
|
|
|
882
898
|
"type": "object",
|
|
883
899
|
"additionalProperties": {
|
|
884
900
|
"$ref": "#/definitions/ActionInput"
|
|
885
|
-
}
|
|
901
|
+
},
|
|
902
|
+
"maxProperties": 10
|
|
886
903
|
},
|
|
887
904
|
"key": {
|
|
888
905
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
@@ -910,6 +927,14 @@
|
|
|
910
927
|
"maxLength": 255,
|
|
911
928
|
"type": "string"
|
|
912
929
|
},
|
|
930
|
+
"name": {
|
|
931
|
+
"description": "The name of the action",
|
|
932
|
+
"type": "string"
|
|
933
|
+
},
|
|
934
|
+
"icon": {
|
|
935
|
+
"description": "The url for the icon image to be displayed in the UI",
|
|
936
|
+
"type": "string"
|
|
937
|
+
},
|
|
913
938
|
"endpoint": {
|
|
914
939
|
"$ref": "#/definitions/ExtensionKey",
|
|
915
940
|
"title": "endpoint",
|
|
@@ -930,7 +955,8 @@
|
|
|
930
955
|
"type": "object",
|
|
931
956
|
"additionalProperties": {
|
|
932
957
|
"$ref": "#/definitions/ActionInput"
|
|
933
|
-
}
|
|
958
|
+
},
|
|
959
|
+
"maxProperties": 10
|
|
934
960
|
},
|
|
935
961
|
"key": {
|
|
936
962
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
@@ -970,6 +996,14 @@
|
|
|
970
996
|
"title": "endpoint",
|
|
971
997
|
"type": "string"
|
|
972
998
|
},
|
|
999
|
+
"name": {
|
|
1000
|
+
"description": "The name of the action",
|
|
1001
|
+
"type": "string"
|
|
1002
|
+
},
|
|
1003
|
+
"icon": {
|
|
1004
|
+
"description": "The url for the icon image to be displayed in the UI",
|
|
1005
|
+
"type": "string"
|
|
1006
|
+
},
|
|
973
1007
|
"key": {
|
|
974
1008
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
975
1009
|
}
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -927,6 +927,14 @@ export interface Modules {
|
|
|
927
927
|
*/
|
|
928
928
|
actionType: string;
|
|
929
929
|
function: Function3;
|
|
930
|
+
/**
|
|
931
|
+
* The name of the action
|
|
932
|
+
*/
|
|
933
|
+
name?: string;
|
|
934
|
+
/**
|
|
935
|
+
* The url for the icon image to be displayed in the UI
|
|
936
|
+
*/
|
|
937
|
+
icon?: string;
|
|
930
938
|
key: ModuleKeySchema;
|
|
931
939
|
}
|
|
932
940
|
| {
|
|
@@ -935,6 +943,14 @@ export interface Modules {
|
|
|
935
943
|
*/
|
|
936
944
|
description: string;
|
|
937
945
|
function: Function4;
|
|
946
|
+
/**
|
|
947
|
+
* The name of the action
|
|
948
|
+
*/
|
|
949
|
+
name?: string;
|
|
950
|
+
/**
|
|
951
|
+
* The url for the icon image to be displayed in the UI
|
|
952
|
+
*/
|
|
953
|
+
icon?: string;
|
|
938
954
|
/**
|
|
939
955
|
* The operation that will be performed as a result of calling this action
|
|
940
956
|
*/
|
|
@@ -949,6 +965,14 @@ export interface Modules {
|
|
|
949
965
|
* The description that the Rovo agent will use to decide when to invoke this action.
|
|
950
966
|
*/
|
|
951
967
|
description: string;
|
|
968
|
+
/**
|
|
969
|
+
* The name of the action
|
|
970
|
+
*/
|
|
971
|
+
name?: string;
|
|
972
|
+
/**
|
|
973
|
+
* The url for the icon image to be displayed in the UI
|
|
974
|
+
*/
|
|
975
|
+
icon?: string;
|
|
952
976
|
endpoint: Endpoint2;
|
|
953
977
|
/**
|
|
954
978
|
* The operation that will be performed as a result of calling this action
|
|
@@ -972,6 +996,14 @@ export interface Modules {
|
|
|
972
996
|
*/
|
|
973
997
|
actionType: string;
|
|
974
998
|
endpoint: Endpoint3;
|
|
999
|
+
/**
|
|
1000
|
+
* The name of the action
|
|
1001
|
+
*/
|
|
1002
|
+
name?: string;
|
|
1003
|
+
/**
|
|
1004
|
+
* The url for the icon image to be displayed in the UI
|
|
1005
|
+
*/
|
|
1006
|
+
icon?: string;
|
|
975
1007
|
key: ModuleKeySchema;
|
|
976
1008
|
}
|
|
977
1009
|
),
|
|
@@ -989,6 +1021,14 @@ export interface Modules {
|
|
|
989
1021
|
*/
|
|
990
1022
|
actionType: string;
|
|
991
1023
|
function: Function3;
|
|
1024
|
+
/**
|
|
1025
|
+
* The name of the action
|
|
1026
|
+
*/
|
|
1027
|
+
name?: string;
|
|
1028
|
+
/**
|
|
1029
|
+
* The url for the icon image to be displayed in the UI
|
|
1030
|
+
*/
|
|
1031
|
+
icon?: string;
|
|
992
1032
|
key: ModuleKeySchema;
|
|
993
1033
|
}
|
|
994
1034
|
| {
|
|
@@ -997,6 +1037,14 @@ export interface Modules {
|
|
|
997
1037
|
*/
|
|
998
1038
|
description: string;
|
|
999
1039
|
function: Function4;
|
|
1040
|
+
/**
|
|
1041
|
+
* The name of the action
|
|
1042
|
+
*/
|
|
1043
|
+
name?: string;
|
|
1044
|
+
/**
|
|
1045
|
+
* The url for the icon image to be displayed in the UI
|
|
1046
|
+
*/
|
|
1047
|
+
icon?: string;
|
|
1000
1048
|
/**
|
|
1001
1049
|
* The operation that will be performed as a result of calling this action
|
|
1002
1050
|
*/
|
|
@@ -1011,6 +1059,14 @@ export interface Modules {
|
|
|
1011
1059
|
* The description that the Rovo agent will use to decide when to invoke this action.
|
|
1012
1060
|
*/
|
|
1013
1061
|
description: string;
|
|
1062
|
+
/**
|
|
1063
|
+
* The name of the action
|
|
1064
|
+
*/
|
|
1065
|
+
name?: string;
|
|
1066
|
+
/**
|
|
1067
|
+
* The url for the icon image to be displayed in the UI
|
|
1068
|
+
*/
|
|
1069
|
+
icon?: string;
|
|
1014
1070
|
endpoint: Endpoint2;
|
|
1015
1071
|
/**
|
|
1016
1072
|
* The operation that will be performed as a result of calling this action
|
|
@@ -1034,6 +1090,14 @@ export interface Modules {
|
|
|
1034
1090
|
*/
|
|
1035
1091
|
actionType: string;
|
|
1036
1092
|
endpoint: Endpoint3;
|
|
1093
|
+
/**
|
|
1094
|
+
* The name of the action
|
|
1095
|
+
*/
|
|
1096
|
+
name?: string;
|
|
1097
|
+
/**
|
|
1098
|
+
* The url for the icon image to be displayed in the UI
|
|
1099
|
+
*/
|
|
1100
|
+
icon?: string;
|
|
1037
1101
|
key: ModuleKeySchema;
|
|
1038
1102
|
}
|
|
1039
1103
|
)[]
|