@forge/manifest 7.7.0-next.14 → 7.7.0-next.15

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,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 7.7.0-next.15
4
+
5
+ ### Patch Changes
6
+
7
+ - 99b6dd4: Update manifest definitions
8
+
3
9
  ## 7.7.0-next.14
4
10
 
5
11
  ### Patch Changes
@@ -820,7 +820,6 @@
820
820
  "items": {
821
821
  "oneOf": [
822
822
  {
823
- "additionalProperties": false,
824
823
  "type": "object",
825
824
  "properties": {
826
825
  "description": {
@@ -850,6 +849,25 @@
850
849
  "description": "The url for the icon image to be displayed in the UI",
851
850
  "type": "string"
852
851
  },
852
+ "config": {
853
+ "type": "object",
854
+ "properties": {
855
+ "resource": {
856
+ "type": "string",
857
+ "minLength": 1,
858
+ "maxLength": 23,
859
+ "pattern": "^[a-zA-Z0-9_\\-]+$"
860
+ },
861
+ "render": {
862
+ "default": "default",
863
+ "enum": [
864
+ "default",
865
+ "native"
866
+ ],
867
+ "type": "string"
868
+ }
869
+ }
870
+ },
853
871
  "key": {
854
872
  "$ref": "#/definitions/ModuleKeySchema"
855
873
  }
@@ -867,7 +885,6 @@
867
885
  }
868
886
  },
869
887
  {
870
- "additionalProperties": false,
871
888
  "type": "object",
872
889
  "properties": {
873
890
  "description": {
@@ -890,6 +907,25 @@
890
907
  "description": "The url for the icon image to be displayed in the UI",
891
908
  "type": "string"
892
909
  },
910
+ "config": {
911
+ "type": "object",
912
+ "properties": {
913
+ "resource": {
914
+ "type": "string",
915
+ "minLength": 1,
916
+ "maxLength": 23,
917
+ "pattern": "^[a-zA-Z0-9_\\-]+$"
918
+ },
919
+ "render": {
920
+ "default": "default",
921
+ "enum": [
922
+ "default",
923
+ "native"
924
+ ],
925
+ "type": "string"
926
+ }
927
+ }
928
+ },
893
929
  "actionVerb": {
894
930
  "description": "The operation that will be performed as a result of calling this action",
895
931
  "type": "string",
@@ -932,7 +968,6 @@
932
968
  }
933
969
  },
934
970
  {
935
- "additionalProperties": false,
936
971
  "type": "object",
937
972
  "properties": {
938
973
  "description": {
@@ -949,6 +984,25 @@
949
984
  "description": "The url for the icon image to be displayed in the UI",
950
985
  "type": "string"
951
986
  },
987
+ "config": {
988
+ "type": "object",
989
+ "properties": {
990
+ "resource": {
991
+ "type": "string",
992
+ "minLength": 1,
993
+ "maxLength": 23,
994
+ "pattern": "^[a-zA-Z0-9_\\-]+$"
995
+ },
996
+ "render": {
997
+ "default": "default",
998
+ "enum": [
999
+ "default",
1000
+ "native"
1001
+ ],
1002
+ "type": "string"
1003
+ }
1004
+ }
1005
+ },
952
1006
  "endpoint": {
953
1007
  "$ref": "#/definitions/ExtensionKey",
954
1008
  "title": "endpoint",
@@ -996,9 +1050,27 @@
996
1050
  }
997
1051
  },
998
1052
  {
999
- "additionalProperties": false,
1000
1053
  "type": "object",
1001
1054
  "properties": {
1055
+ "config": {
1056
+ "type": "object",
1057
+ "properties": {
1058
+ "resource": {
1059
+ "type": "string",
1060
+ "minLength": 1,
1061
+ "maxLength": 23,
1062
+ "pattern": "^[a-zA-Z0-9_\\-]+$"
1063
+ },
1064
+ "render": {
1065
+ "default": "default",
1066
+ "enum": [
1067
+ "default",
1068
+ "native"
1069
+ ],
1070
+ "type": "string"
1071
+ }
1072
+ }
1073
+ },
1002
1074
  "description": {
1003
1075
  "description": "The description that the Rovo agent will use to decide when to invoke this action.",
1004
1076
  "minLength": 1,
@@ -992,7 +992,13 @@ export interface Modules {
992
992
  * The url for the icon image to be displayed in the UI
993
993
  */
994
994
  icon?: string;
995
+ config?: {
996
+ resource?: string;
997
+ render?: 'default' | 'native';
998
+ [k: string]: unknown;
999
+ };
995
1000
  key: ModuleKeySchema;
1001
+ [k: string]: unknown;
996
1002
  }
997
1003
  | {
998
1004
  /**
@@ -1008,6 +1014,11 @@ export interface Modules {
1008
1014
  * The url for the icon image to be displayed in the UI
1009
1015
  */
1010
1016
  icon?: string;
1017
+ config?: {
1018
+ resource?: string;
1019
+ render?: 'default' | 'native';
1020
+ [k: string]: unknown;
1021
+ };
1011
1022
  /**
1012
1023
  * The operation that will be performed as a result of calling this action
1013
1024
  */
@@ -1019,6 +1030,7 @@ export interface Modules {
1019
1030
  [k: string]: ActionOutput;
1020
1031
  };
1021
1032
  key: ModuleKeySchema;
1033
+ [k: string]: unknown;
1022
1034
  }
1023
1035
  | {
1024
1036
  /**
@@ -1033,6 +1045,11 @@ export interface Modules {
1033
1045
  * The url for the icon image to be displayed in the UI
1034
1046
  */
1035
1047
  icon?: string;
1048
+ config?: {
1049
+ resource?: string;
1050
+ render?: 'default' | 'native';
1051
+ [k: string]: unknown;
1052
+ };
1036
1053
  endpoint: Endpoint2;
1037
1054
  /**
1038
1055
  * The operation that will be performed as a result of calling this action
@@ -1045,8 +1062,14 @@ export interface Modules {
1045
1062
  [k: string]: ActionOutput;
1046
1063
  };
1047
1064
  key: ModuleKeySchema;
1065
+ [k: string]: unknown;
1048
1066
  }
1049
1067
  | {
1068
+ config?: {
1069
+ resource?: string;
1070
+ render?: 'default' | 'native';
1071
+ [k: string]: unknown;
1072
+ };
1050
1073
  /**
1051
1074
  * The description that the Rovo agent will use to decide when to invoke this action.
1052
1075
  */
@@ -1068,6 +1091,7 @@ export interface Modules {
1068
1091
  */
1069
1092
  icon?: string;
1070
1093
  key: ModuleKeySchema;
1094
+ [k: string]: unknown;
1071
1095
  }
1072
1096
  ),
1073
1097
  ...(
@@ -1092,7 +1116,13 @@ export interface Modules {
1092
1116
  * The url for the icon image to be displayed in the UI
1093
1117
  */
1094
1118
  icon?: string;
1119
+ config?: {
1120
+ resource?: string;
1121
+ render?: 'default' | 'native';
1122
+ [k: string]: unknown;
1123
+ };
1095
1124
  key: ModuleKeySchema;
1125
+ [k: string]: unknown;
1096
1126
  }
1097
1127
  | {
1098
1128
  /**
@@ -1108,6 +1138,11 @@ export interface Modules {
1108
1138
  * The url for the icon image to be displayed in the UI
1109
1139
  */
1110
1140
  icon?: string;
1141
+ config?: {
1142
+ resource?: string;
1143
+ render?: 'default' | 'native';
1144
+ [k: string]: unknown;
1145
+ };
1111
1146
  /**
1112
1147
  * The operation that will be performed as a result of calling this action
1113
1148
  */
@@ -1119,6 +1154,7 @@ export interface Modules {
1119
1154
  [k: string]: ActionOutput;
1120
1155
  };
1121
1156
  key: ModuleKeySchema;
1157
+ [k: string]: unknown;
1122
1158
  }
1123
1159
  | {
1124
1160
  /**
@@ -1133,6 +1169,11 @@ export interface Modules {
1133
1169
  * The url for the icon image to be displayed in the UI
1134
1170
  */
1135
1171
  icon?: string;
1172
+ config?: {
1173
+ resource?: string;
1174
+ render?: 'default' | 'native';
1175
+ [k: string]: unknown;
1176
+ };
1136
1177
  endpoint: Endpoint2;
1137
1178
  /**
1138
1179
  * The operation that will be performed as a result of calling this action
@@ -1145,8 +1186,14 @@ export interface Modules {
1145
1186
  [k: string]: ActionOutput;
1146
1187
  };
1147
1188
  key: ModuleKeySchema;
1189
+ [k: string]: unknown;
1148
1190
  }
1149
1191
  | {
1192
+ config?: {
1193
+ resource?: string;
1194
+ render?: 'default' | 'native';
1195
+ [k: string]: unknown;
1196
+ };
1150
1197
  /**
1151
1198
  * The description that the Rovo agent will use to decide when to invoke this action.
1152
1199
  */
@@ -1168,6 +1215,7 @@ export interface Modules {
1168
1215
  */
1169
1216
  icon?: string;
1170
1217
  key: ModuleKeySchema;
1218
+ [k: string]: unknown;
1171
1219
  }
1172
1220
  )[]
1173
1221
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "7.7.0-next.14",
3
+ "version": "7.7.0-next.15",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {