windmill-client 1.618.3 → 1.618.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/dist/client.d.ts +0 -1
- package/dist/client.mjs +927 -0
- package/dist/core/ApiError.mjs +20 -0
- package/dist/core/CancelablePromise.mjs +77 -0
- package/dist/core/OpenAPI.mjs +41 -0
- package/dist/core/request.mjs +238 -0
- package/dist/index.d.ts +70 -1
- package/dist/index.js +69 -80
- package/dist/index.mjs +75 -13684
- package/dist/services.gen.mjs +12175 -0
- package/dist/sqlUtils.mjs +147 -0
- package/package.json +2 -1
package/dist/client.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { DenoS3LightClientSettings, S3ObjectRecord, type S3Object } from "./s3Types";
|
|
2
2
|
export { type S3Object, type S3ObjectRecord, type S3ObjectURI, } from "./s3Types";
|
|
3
3
|
export { datatable, ducklake, type SqlTemplateFunction, type DatatableSqlTemplateFunction, } from "./sqlUtils";
|
|
4
|
-
export { AdminService, AuditService, FlowService, GranularAclService, GroupService, JobService, ResourceService, VariableService, ScriptService, ScheduleService, SettingsService, UserService, WorkspaceService, TeamsService, } from "./index";
|
|
5
4
|
export type Sql = string;
|
|
6
5
|
export type Email = string;
|
|
7
6
|
export type Base64 = string;
|