@epam/ai-dial-shared 0.40.0-rc.62 → 0.40.0-rc.64
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/index.esm.js +1 -0
- package/package.json +1 -1
- package/src/types/features.d.ts +1 -0
package/index.esm.js
CHANGED
|
@@ -57,6 +57,7 @@ var Feature;
|
|
|
57
57
|
// Applications
|
|
58
58
|
Feature["CustomApplications"] = "custom-applications";
|
|
59
59
|
Feature["CodeApps"] = "code-apps";
|
|
60
|
+
Feature["CodeInterpreter"] = "code-interpreter";
|
|
60
61
|
// Marketplace
|
|
61
62
|
Feature["Marketplace"] = "marketplace";
|
|
62
63
|
Feature["MarketplaceTableView"] = "marketplace-table-view";
|
package/package.json
CHANGED
package/src/types/features.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export declare enum Feature {
|
|
|
40
40
|
CustomLogo = "custom-logo",// Enable setting for custom logo feature
|
|
41
41
|
CustomApplications = "custom-applications",// Enable creating of applications ('Add app' button/menu)
|
|
42
42
|
CodeApps = "code-apps",// Enable creating of Code apps (into the 'Add app' menu)
|
|
43
|
+
CodeInterpreter = "code-interpreter",// Enable Code Interpreter feature
|
|
43
44
|
Marketplace = "marketplace",// Enable Marketplace
|
|
44
45
|
MarketplaceTableView = "marketplace-table-view",// Enable table view in Marketplace
|
|
45
46
|
Toolsets = "toolsets"
|