@notebook-intelligence/notebook-intelligence 1.2.2 → 1.2.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/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/tokens.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +2 -0
- package/src/tokens.ts +1 -1
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
package/lib/tokens.js
CHANGED
|
@@ -48,4 +48,4 @@ export var TelemetryEventType;
|
|
|
48
48
|
TelemetryEventType["InlineChatResponse"] = "inline-chat-response";
|
|
49
49
|
TelemetryEventType["InlineCompletionResponse"] = "inline-completion-response";
|
|
50
50
|
})(TelemetryEventType || (TelemetryEventType = {}));
|
|
51
|
-
export const INotebookIntelligence = new Token('@notebook-intelligence/notebook-intelligence', 'AI coding assistant for JupyterLab.');
|
|
51
|
+
export const INotebookIntelligence = new Token('@notebook-intelligence/notebook-intelligence:INotebookIntelligence', 'AI coding assistant for JupyterLab.');
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
package/src/tokens.ts
CHANGED
|
@@ -104,7 +104,7 @@ export interface ITelemetryEmitter {
|
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
export const INotebookIntelligence = new Token<INotebookIntelligence>(
|
|
107
|
-
'@notebook-intelligence/notebook-intelligence',
|
|
107
|
+
'@notebook-intelligence/notebook-intelligence:INotebookIntelligence',
|
|
108
108
|
'AI coding assistant for JupyterLab.'
|
|
109
109
|
);
|
|
110
110
|
|