You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- This version allows fields to contain longer values.
- Also changed the vscode_extension properties to be nested to avoid
any issues with name collisions.
publicid: string;// "The canonical extension identifier in the form of: `publisher.name`" - (max len: 510)
16
-
publicpublisher: string;// (max len: 255)
17
-
publicname: string;// (max len: 255)
18
-
publicdisplay_name: string;// (max len: 255)
19
-
publicauthor: string;// (max len: 255)
15
+
publicid: string;// "The canonical extension identifier in the form of: `publisher.name`" - (max len: 1024)
16
+
publicpublisher: string;// (max len: 512)
17
+
publicname: string;// (max len: 512)
18
+
publicdisplay_name: string;// (max len: 2048)
19
+
publicauthor: string;// (max len: 512)
20
20
publicversion: string;// (max len: 255)
21
21
publicdescription: string;// (max len: 2048)
22
-
publiccategories: string[];// (max len: 510)
22
+
publiccategories: string[];// (max len per category string: 510)
23
23
publicextension_kind: string[];// In a remote window the extension kind describes if an extension runs where the UI (window) runs or if an extension runs remotely. (max len: 255)
24
24
25
25
constructor(data: VSCodeExtensionInterface){
@@ -41,7 +41,7 @@ export class VSCodeExtension implements VSCodeExtensionInterface {
0 commit comments