@databricks/appkit 0.27.1 → 0.28.0
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/CLAUDE.md +1 -0
- package/dist/appkit/package.js +1 -1
- package/dist/beta.d.ts +1 -0
- package/dist/beta.js +1 -0
- package/dist/cli/commands/plugin/create/create.js +18 -0
- package/dist/cli/commands/plugin/create/create.js.map +1 -1
- package/dist/cli/commands/plugin/create/scaffold.js +1 -0
- package/dist/cli/commands/plugin/create/scaffold.js.map +1 -1
- package/dist/cli/commands/plugin/index.js +5 -2
- package/dist/cli/commands/plugin/index.js.map +1 -1
- package/dist/cli/commands/plugin/list/list.js +6 -0
- package/dist/cli/commands/plugin/list/list.js.map +1 -1
- package/dist/cli/commands/plugin/promote/promote.js +314 -0
- package/dist/cli/commands/plugin/promote/promote.js.map +1 -0
- package/dist/cli/commands/plugin/sync/sync.js +24 -4
- package/dist/cli/commands/plugin/sync/sync.js.map +1 -1
- package/dist/context/execution-context.js +7 -1
- package/dist/context/execution-context.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/plugin/interceptors/telemetry.js +6 -0
- package/dist/plugin/interceptors/telemetry.js.map +1 -1
- package/dist/plugin/plugin.d.ts.map +1 -1
- package/dist/plugin/plugin.js +27 -5
- package/dist/plugin/plugin.js.map +1 -1
- package/dist/plugins/analytics/analytics.d.ts.map +1 -1
- package/dist/plugins/analytics/analytics.js.map +1 -1
- package/dist/plugins/files/plugin.d.ts +1 -1
- package/dist/plugins/files/plugin.js +1 -1
- package/dist/plugins/ga-exports.generated.d.ts +13 -0
- package/dist/plugins/ga-exports.generated.js +15 -0
- package/dist/plugins/server/index.d.ts +1 -1
- package/dist/plugins/server/index.js +1 -1
- package/dist/schemas/plugin-manifest.generated.d.ts +4 -0
- package/dist/schemas/plugin-manifest.generated.d.ts.map +1 -1
- package/dist/schemas/plugin-manifest.schema.json +6 -0
- package/dist/schemas/template-plugins.schema.json +7 -1
- package/dist/shared/src/schemas/plugin-manifest.generated.d.ts +4 -0
- package/dist/shared/src/schemas/plugin-manifest.generated.d.ts.map +1 -1
- package/docs/api/appkit/Interface.PluginManifest.md +19 -1
- package/docs/plugins/custom-plugins.md +1 -1
- package/docs/plugins/execution-context.md +13 -1
- package/docs/plugins/stability.md +156 -0
- package/llms.txt +1 -0
- package/package.json +4 -2
- package/sbom.cdx.json +1 -1
- package/dist/plugins/index.d.ts +0 -21
- package/dist/plugins/index.js +0 -16
package/dist/plugins/index.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { GenieStreamEvent } from "../shared/src/genie.js";
|
|
2
|
-
import { IAnalyticsConfig } from "./analytics/types.js";
|
|
3
|
-
import { AnalyticsPlugin, analytics } from "./analytics/analytics.js";
|
|
4
|
-
import "./analytics/index.js";
|
|
5
|
-
import { DirectoryEntry, DownloadResponse, FileMetadata, FilePreview, FilesExport, IFilesConfig, VolumeAPI, VolumeConfig, VolumeHandle } from "./files/types.js";
|
|
6
|
-
import { FilesPlugin, files } from "./files/plugin.js";
|
|
7
|
-
import "./files/index.js";
|
|
8
|
-
import { GenieConversationHistoryResponse } from "../connectors/genie/types.js";
|
|
9
|
-
import { IGenieConfig } from "./genie/types.js";
|
|
10
|
-
import { GeniePlugin, genie } from "./genie/genie.js";
|
|
11
|
-
import "./genie/index.js";
|
|
12
|
-
import { IJobsConfig, JobAPI, JobConfig, JobHandle, JobsExport } from "./jobs/types.js";
|
|
13
|
-
import { jobs } from "./jobs/plugin.js";
|
|
14
|
-
import "./jobs/index.js";
|
|
15
|
-
import { ILakebaseConfig } from "./lakebase/types.js";
|
|
16
|
-
import { lakebase } from "./lakebase/lakebase.js";
|
|
17
|
-
import "./lakebase/index.js";
|
|
18
|
-
import { ServerPlugin, server } from "./server/index.js";
|
|
19
|
-
import { EndpointConfig, IServingConfig, ServingEndpointEntry, ServingEndpointHandle, ServingEndpointMethods, ServingEndpointRegistry, ServingFactory } from "./serving/types.js";
|
|
20
|
-
import { ServingPlugin, serving } from "./serving/serving.js";
|
|
21
|
-
import "./serving/index.js";
|
package/dist/plugins/index.js
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { AnalyticsPlugin, analytics } from "./analytics/analytics.js";
|
|
2
|
-
import "./analytics/index.js";
|
|
3
|
-
import { FILES_DOWNLOAD_DEFAULTS, FILES_MAX_UPLOAD_SIZE, FILES_READ_DEFAULTS, FILES_WRITE_DEFAULTS } from "./files/defaults.js";
|
|
4
|
-
import { FilesPlugin, files } from "./files/plugin.js";
|
|
5
|
-
import "./files/index.js";
|
|
6
|
-
import { GeniePlugin, genie } from "./genie/genie.js";
|
|
7
|
-
import "./genie/index.js";
|
|
8
|
-
import { jobs } from "./jobs/plugin.js";
|
|
9
|
-
import "./jobs/index.js";
|
|
10
|
-
import { lakebase } from "./lakebase/lakebase.js";
|
|
11
|
-
import "./lakebase/index.js";
|
|
12
|
-
import { ServerPlugin, server } from "./server/index.js";
|
|
13
|
-
import { ServingPlugin, serving } from "./serving/serving.js";
|
|
14
|
-
import "./serving/index.js";
|
|
15
|
-
|
|
16
|
-
export { };
|