@zero-library/chat-copilot 3.1.16 → 3.1.17
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/dist/index.cjs.js +10 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +10 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs.js
CHANGED
|
@@ -267,6 +267,15 @@ var index_module_default = {
|
|
|
267
267
|
};
|
|
268
268
|
|
|
269
269
|
// src/core/constants.ts
|
|
270
|
+
var WorkspaceTypeEnum = /* @__PURE__ */ ((WorkspaceTypeEnum2) => {
|
|
271
|
+
WorkspaceTypeEnum2["GLOBAL"] = "global";
|
|
272
|
+
WorkspaceTypeEnum2["SKILL"] = "skill";
|
|
273
|
+
WorkspaceTypeEnum2["CONVERSATION"] = "conversation";
|
|
274
|
+
WorkspaceTypeEnum2["KNOWLEDGE"] = "knowledge";
|
|
275
|
+
WorkspaceTypeEnum2["PROJECT"] = "project";
|
|
276
|
+
WorkspaceTypeEnum2["DEV_SKILL"] = "devSkill";
|
|
277
|
+
return WorkspaceTypeEnum2;
|
|
278
|
+
})(WorkspaceTypeEnum || {});
|
|
270
279
|
var CONV_MODE = {
|
|
271
280
|
PROD: 1};
|
|
272
281
|
var TOKEN_KEY = "NS-TOKEN";
|
|
@@ -6701,6 +6710,7 @@ var layouts_default = React10.forwardRef(({ theme: theme5, params, hooks, layout
|
|
|
6701
6710
|
exports.Attachments = Attachments_default;
|
|
6702
6711
|
exports.ChatCopilot = layouts_default;
|
|
6703
6712
|
exports.ChatSender = ChatSender_default;
|
|
6713
|
+
exports.WorkspaceTypeEnum = WorkspaceTypeEnum;
|
|
6704
6714
|
exports.getFileIcon = getFileIcon;
|
|
6705
6715
|
exports.getFileUrl = getFileUrl;
|
|
6706
6716
|
//# sourceMappingURL=index.cjs.js.map
|