@miosa/sdk 1.1.0 → 1.2.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/dist/index.d.ts +26 -229
- package/dist/index.js +25 -276
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +0 -5
- package/src/index.ts +0 -10
- package/src/resources/admin.ts +11 -0
- package/src/resources/api-keys.ts +17 -5
- package/src/resources/cron-jobs.ts +0 -7
- package/src/resources/custom_domains.ts +0 -7
- package/src/resources/deployments.ts +2 -13
- package/src/resources/flat-custom-domains.ts +0 -7
- package/src/resources/functions.ts +0 -7
- package/src/resources/governance.test.ts +355 -0
- package/src/resources/governance.ts +528 -0
- package/src/resources/storage.ts +0 -7
- package/src/resources/tenant.ts +3 -82
- package/src/resources/volumes.ts +0 -7
- package/src/resources/webhooks.ts +0 -55
- package/src/types.ts +0 -7
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { randomUUID
|
|
1
|
+
import { randomUUID } from 'crypto';
|
|
2
2
|
import EventEmitter from 'events';
|
|
3
3
|
|
|
4
4
|
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
@@ -592,6 +592,13 @@ var Admin = class {
|
|
|
592
592
|
model_id: modelId
|
|
593
593
|
});
|
|
594
594
|
}
|
|
595
|
+
/** POST /api/v1/admin/impersonate — returns {token, expires_at}. */
|
|
596
|
+
impersonate(externalUserId, options = {}) {
|
|
597
|
+
return this.http.post("/admin/impersonate", {
|
|
598
|
+
external_user_id: externalUserId,
|
|
599
|
+
ttl_sec: options.ttlSec ?? 3600
|
|
600
|
+
});
|
|
601
|
+
}
|
|
595
602
|
};
|
|
596
603
|
|
|
597
604
|
// src/resources/analytics.ts
|
|
@@ -662,11 +669,10 @@ var ApiKeys = class {
|
|
|
662
669
|
return listItems(data);
|
|
663
670
|
}
|
|
664
671
|
async create(params) {
|
|
665
|
-
const { idempotencyKey: ikey, expiresAt,
|
|
672
|
+
const { idempotencyKey: ikey, expiresAt, ...rest } = params;
|
|
666
673
|
const body = stripUndefined2({
|
|
667
674
|
...rest,
|
|
668
|
-
expires_at: expiresAt ?? rest.expires_at
|
|
669
|
-
workspace_id: workspaceId ?? rest.workspace_id
|
|
675
|
+
expires_at: expiresAt ?? rest.expires_at
|
|
670
676
|
});
|
|
671
677
|
const data = await this.http.request("/api-keys", {
|
|
672
678
|
method: "POST",
|
|
@@ -675,6 +681,17 @@ var ApiKeys = class {
|
|
|
675
681
|
});
|
|
676
682
|
return unwrap2(data);
|
|
677
683
|
}
|
|
684
|
+
/** POST /api/v1/api-keys/scoped — L2 delegation token bound to one external user. */
|
|
685
|
+
async createScoped(params) {
|
|
686
|
+
const body = stripUndefined2({
|
|
687
|
+
external_user_id: params.externalUserId,
|
|
688
|
+
scopes: params.scopes,
|
|
689
|
+
expires_at: params.expiresAt
|
|
690
|
+
});
|
|
691
|
+
return unwrap2(
|
|
692
|
+
await this.http.post("/api-keys/scoped", body)
|
|
693
|
+
);
|
|
694
|
+
}
|
|
678
695
|
async delete(keyId) {
|
|
679
696
|
await this.http.delete(`/api-keys/${keyId}`);
|
|
680
697
|
}
|
|
@@ -3791,7 +3808,6 @@ var Deployments = class {
|
|
|
3791
3808
|
auto_deploy: params.autoDeploy ?? params.auto_deploy,
|
|
3792
3809
|
database: params.database,
|
|
3793
3810
|
metadata: params.metadata,
|
|
3794
|
-
target_region: params.targetRegion ?? params.target_region,
|
|
3795
3811
|
...attributionBody(params)
|
|
3796
3812
|
});
|
|
3797
3813
|
const data = await this.http.request("/deployments", {
|
|
@@ -3886,11 +3902,9 @@ var Deployments = class {
|
|
|
3886
3902
|
);
|
|
3887
3903
|
return unwrap23(data);
|
|
3888
3904
|
}
|
|
3889
|
-
async listEnv(deploymentId
|
|
3890
|
-
const query = stripUndefined10({ environment: opts.environment });
|
|
3905
|
+
async listEnv(deploymentId) {
|
|
3891
3906
|
const data = await this.http.get(
|
|
3892
|
-
`/deployments/${deploymentId}/env
|
|
3893
|
-
Object.keys(query).length ? query : void 0
|
|
3907
|
+
`/deployments/${deploymentId}/env`
|
|
3894
3908
|
);
|
|
3895
3909
|
return listItems4(data);
|
|
3896
3910
|
}
|
|
@@ -6705,65 +6719,17 @@ var OrgInvites = class {
|
|
|
6705
6719
|
function unwrap41(payload) {
|
|
6706
6720
|
if (payload && typeof payload === "object") {
|
|
6707
6721
|
const p = payload;
|
|
6708
|
-
for (const k of ["data", "tenant", "
|
|
6722
|
+
for (const k of ["data", "tenant", "items"]) {
|
|
6709
6723
|
if (k in p) return p[k];
|
|
6710
6724
|
}
|
|
6711
6725
|
}
|
|
6712
6726
|
return payload;
|
|
6713
6727
|
}
|
|
6714
|
-
var PreviewDomain = class {
|
|
6715
|
-
constructor(http) {
|
|
6716
|
-
this.http = http;
|
|
6717
|
-
}
|
|
6718
|
-
http;
|
|
6719
|
-
/** GET /api/v1/tenant/preview-domain → {domain, verified_at, cname_target} */
|
|
6720
|
-
async get() {
|
|
6721
|
-
return unwrap41(await this.http.get("/tenant/preview-domain"));
|
|
6722
|
-
}
|
|
6723
|
-
/** PUT /api/v1/tenant/preview-domain — set the preview domain. */
|
|
6724
|
-
async set(domain) {
|
|
6725
|
-
return unwrap41(
|
|
6726
|
-
await this.http.put("/tenant/preview-domain", { domain })
|
|
6727
|
-
);
|
|
6728
|
-
}
|
|
6729
|
-
/** POST /api/v1/tenant/preview-domain/verify → {verified, target, records} */
|
|
6730
|
-
async verify() {
|
|
6731
|
-
return unwrap41(
|
|
6732
|
-
await this.http.post("/tenant/preview-domain/verify", {})
|
|
6733
|
-
);
|
|
6734
|
-
}
|
|
6735
|
-
/** DELETE /api/v1/tenant/preview-domain */
|
|
6736
|
-
async delete() {
|
|
6737
|
-
await this.http.delete("/tenant/preview-domain");
|
|
6738
|
-
}
|
|
6739
|
-
};
|
|
6740
|
-
var Branding = class {
|
|
6741
|
-
constructor(http) {
|
|
6742
|
-
this.http = http;
|
|
6743
|
-
}
|
|
6744
|
-
http;
|
|
6745
|
-
/** GET /api/v1/tenant/branding */
|
|
6746
|
-
async get() {
|
|
6747
|
-
return unwrap41(await this.http.get("/tenant/branding"));
|
|
6748
|
-
}
|
|
6749
|
-
/** PUT /api/v1/tenant/branding — keys: product_name, logo_url, support_url, support_email, primary_color, background_color */
|
|
6750
|
-
async set(branding) {
|
|
6751
|
-
return unwrap41(await this.http.put("/tenant/branding", branding));
|
|
6752
|
-
}
|
|
6753
|
-
/** DELETE /api/v1/tenant/branding */
|
|
6754
|
-
async delete() {
|
|
6755
|
-
await this.http.delete("/tenant/branding");
|
|
6756
|
-
}
|
|
6757
|
-
};
|
|
6758
6728
|
var Tenant = class {
|
|
6759
6729
|
constructor(http) {
|
|
6760
6730
|
this.http = http;
|
|
6761
|
-
this.preview_domain = new PreviewDomain(http);
|
|
6762
|
-
this.branding = new Branding(http);
|
|
6763
6731
|
}
|
|
6764
6732
|
http;
|
|
6765
|
-
preview_domain;
|
|
6766
|
-
branding;
|
|
6767
6733
|
/** Get the current tenant's plan, limits, and live usage counters. */
|
|
6768
6734
|
async current() {
|
|
6769
6735
|
const data = await this.http.get("/tenant/plan");
|
|
@@ -6866,29 +6832,6 @@ var Volumes = class {
|
|
|
6866
6832
|
await this.http.delete(`/volumes/${volumeId}`);
|
|
6867
6833
|
}
|
|
6868
6834
|
};
|
|
6869
|
-
var MAX_TIMESTAMP_AGE_MS = 5 * 60 * 1e3;
|
|
6870
|
-
function verifySignature(payload, signatureHeader, secret) {
|
|
6871
|
-
const parts = {};
|
|
6872
|
-
for (const part of signatureHeader.split(",")) {
|
|
6873
|
-
const idx = part.indexOf("=");
|
|
6874
|
-
if (idx > 0) parts[part.slice(0, idx).trim()] = part.slice(idx + 1).trim();
|
|
6875
|
-
}
|
|
6876
|
-
const tsStr = parts["t"];
|
|
6877
|
-
const sig = parts["v1"];
|
|
6878
|
-
if (!tsStr || !sig) return false;
|
|
6879
|
-
const ts = parseInt(tsStr, 10);
|
|
6880
|
-
if (isNaN(ts)) return false;
|
|
6881
|
-
if (Date.now() - ts * 1e3 > MAX_TIMESTAMP_AGE_MS) {
|
|
6882
|
-
throw new Error(`Webhook timestamp is too old: ${ts}`);
|
|
6883
|
-
}
|
|
6884
|
-
const body = payload instanceof Uint8Array ? payload : Buffer.from(payload, "utf-8");
|
|
6885
|
-
const signed = Buffer.concat([Buffer.from(`${tsStr}.`, "utf-8"), body]);
|
|
6886
|
-
const expected = createHmac("sha256", secret).update(signed).digest("hex");
|
|
6887
|
-
return timingSafeEqual(
|
|
6888
|
-
Buffer.from(expected, "utf-8"),
|
|
6889
|
-
Buffer.from(sig, "utf-8")
|
|
6890
|
-
);
|
|
6891
|
-
}
|
|
6892
6835
|
function unwrap44(payload) {
|
|
6893
6836
|
if (payload && typeof payload === "object" && "data" in payload) {
|
|
6894
6837
|
return payload.data;
|
|
@@ -6965,18 +6908,6 @@ var Webhooks = class {
|
|
|
6965
6908
|
"items"
|
|
6966
6909
|
]);
|
|
6967
6910
|
}
|
|
6968
|
-
/**
|
|
6969
|
-
* Verify an incoming ``X-Miosa-Signature`` header.
|
|
6970
|
-
*
|
|
6971
|
-
* Header format: ``t=<unix_ts>,v1=<hex_hmac>``
|
|
6972
|
-
* HMAC body: ``<t>.<raw_payload>``
|
|
6973
|
-
*
|
|
6974
|
-
* Throws if timestamp is older than 5 minutes.
|
|
6975
|
-
* Returns true if signature matches.
|
|
6976
|
-
*/
|
|
6977
|
-
static verifySignature(payload, signatureHeader, secret) {
|
|
6978
|
-
return verifySignature(payload, signatureHeader, secret);
|
|
6979
|
-
}
|
|
6980
6911
|
};
|
|
6981
6912
|
|
|
6982
6913
|
// src/resources/workspace-invites.ts
|
|
@@ -7129,192 +7060,11 @@ var WorkspaceMembers = class {
|
|
|
7129
7060
|
}
|
|
7130
7061
|
};
|
|
7131
7062
|
|
|
7132
|
-
// src/resources/workspaces.ts
|
|
7133
|
-
function unwrap45(payload) {
|
|
7134
|
-
if (payload && typeof payload === "object" && "data" in payload) {
|
|
7135
|
-
return payload.data;
|
|
7136
|
-
}
|
|
7137
|
-
return payload;
|
|
7138
|
-
}
|
|
7139
|
-
function listItems17(payload, candidateKeys = ["data", "items"]) {
|
|
7140
|
-
if (Array.isArray(payload)) return payload;
|
|
7141
|
-
if (!payload || typeof payload !== "object") return [];
|
|
7142
|
-
const p = payload;
|
|
7143
|
-
if (Array.isArray(p.data)) return p.data;
|
|
7144
|
-
for (const key of candidateKeys) {
|
|
7145
|
-
if (Array.isArray(p[key])) return p[key];
|
|
7146
|
-
}
|
|
7147
|
-
return [];
|
|
7148
|
-
}
|
|
7149
|
-
var Workspaces = class {
|
|
7150
|
-
http;
|
|
7151
|
-
constructor(http) {
|
|
7152
|
-
this.http = http;
|
|
7153
|
-
}
|
|
7154
|
-
/**
|
|
7155
|
-
* Create a new workspace.
|
|
7156
|
-
*/
|
|
7157
|
-
async create(params) {
|
|
7158
|
-
const payload = await this.http.post("/workspaces", params);
|
|
7159
|
-
return unwrap45(payload);
|
|
7160
|
-
}
|
|
7161
|
-
/**
|
|
7162
|
-
* List all workspaces visible to the current credential.
|
|
7163
|
-
*/
|
|
7164
|
-
async list() {
|
|
7165
|
-
const payload = await this.http.get("/workspaces");
|
|
7166
|
-
if (payload && typeof payload === "object" && "workspaces" in payload) {
|
|
7167
|
-
const p = payload;
|
|
7168
|
-
return p["workspaces"] ?? [];
|
|
7169
|
-
}
|
|
7170
|
-
return listItems17(payload, ["data", "workspaces", "items"]);
|
|
7171
|
-
}
|
|
7172
|
-
/**
|
|
7173
|
-
* Get a single workspace by ID.
|
|
7174
|
-
*/
|
|
7175
|
-
async get(id) {
|
|
7176
|
-
const payload = await this.http.get(`/workspaces/${id}`);
|
|
7177
|
-
return unwrap45(payload);
|
|
7178
|
-
}
|
|
7179
|
-
/**
|
|
7180
|
-
* Update a workspace's metadata.
|
|
7181
|
-
*/
|
|
7182
|
-
async update(id, params) {
|
|
7183
|
-
const payload = await this.http.patch(`/workspaces/${id}`, params);
|
|
7184
|
-
return unwrap45(payload);
|
|
7185
|
-
}
|
|
7186
|
-
/**
|
|
7187
|
-
* Delete a workspace. Does not delete member computers.
|
|
7188
|
-
*/
|
|
7189
|
-
async delete(id) {
|
|
7190
|
-
await this.http.delete(`/workspaces/${id}`);
|
|
7191
|
-
}
|
|
7192
|
-
/**
|
|
7193
|
-
* Update workspace-level settings.
|
|
7194
|
-
*/
|
|
7195
|
-
async updateSettings(id, settings) {
|
|
7196
|
-
const payload = await this.http.put(
|
|
7197
|
-
`/workspaces/${id}/settings`,
|
|
7198
|
-
settings
|
|
7199
|
-
);
|
|
7200
|
-
return unwrap45(payload);
|
|
7201
|
-
}
|
|
7202
|
-
/**
|
|
7203
|
-
* List all computers that belong to the given workspace.
|
|
7204
|
-
*/
|
|
7205
|
-
async listComputers(id) {
|
|
7206
|
-
const payload = await this.http.get(`/workspaces/${id}/computers`);
|
|
7207
|
-
const items = listItems17(payload, [
|
|
7208
|
-
"data",
|
|
7209
|
-
"computers",
|
|
7210
|
-
"items"
|
|
7211
|
-
]);
|
|
7212
|
-
return items.map((d) => new Computer(this.http, d));
|
|
7213
|
-
}
|
|
7214
|
-
/**
|
|
7215
|
-
* List all sandboxes that belong to this workspace.
|
|
7216
|
-
*/
|
|
7217
|
-
async listSandboxes(id) {
|
|
7218
|
-
const payload = await this.http.get(`/workspaces/${id}/sandboxes`);
|
|
7219
|
-
return listItems17(payload, [
|
|
7220
|
-
"data",
|
|
7221
|
-
"sandboxes",
|
|
7222
|
-
"items"
|
|
7223
|
-
]);
|
|
7224
|
-
}
|
|
7225
|
-
/**
|
|
7226
|
-
* List all deployments that belong to this workspace.
|
|
7227
|
-
*/
|
|
7228
|
-
async listDeployments(id) {
|
|
7229
|
-
const payload = await this.http.get(
|
|
7230
|
-
`/workspaces/${id}/deployments`
|
|
7231
|
-
);
|
|
7232
|
-
return listItems17(payload, [
|
|
7233
|
-
"data",
|
|
7234
|
-
"deployments",
|
|
7235
|
-
"items"
|
|
7236
|
-
]);
|
|
7237
|
-
}
|
|
7238
|
-
/**
|
|
7239
|
-
* List all managed databases that belong to this workspace.
|
|
7240
|
-
*/
|
|
7241
|
-
async listDatabases(id) {
|
|
7242
|
-
const payload = await this.http.get(`/workspaces/${id}/databases`);
|
|
7243
|
-
return listItems17(payload, [
|
|
7244
|
-
"data",
|
|
7245
|
-
"databases",
|
|
7246
|
-
"items"
|
|
7247
|
-
]);
|
|
7248
|
-
}
|
|
7249
|
-
/**
|
|
7250
|
-
* List all projects that belong to this workspace.
|
|
7251
|
-
*/
|
|
7252
|
-
async listProjects(id) {
|
|
7253
|
-
const payload = await this.http.get(`/workspaces/${id}/projects`);
|
|
7254
|
-
return listItems17(payload, [
|
|
7255
|
-
"data",
|
|
7256
|
-
"projects",
|
|
7257
|
-
"items"
|
|
7258
|
-
]);
|
|
7259
|
-
}
|
|
7260
|
-
/**
|
|
7261
|
-
* Return aggregate resource stats for this workspace.
|
|
7262
|
-
*/
|
|
7263
|
-
async stats(id) {
|
|
7264
|
-
const payload = await this.http.get(`/workspaces/${id}/stats`);
|
|
7265
|
-
return unwrap45(payload);
|
|
7266
|
-
}
|
|
7267
|
-
/**
|
|
7268
|
-
* Return metered usage data for this workspace.
|
|
7269
|
-
*/
|
|
7270
|
-
async usage(id) {
|
|
7271
|
-
const payload = await this.http.get(`/workspaces/${id}/usage`);
|
|
7272
|
-
return unwrap45(payload);
|
|
7273
|
-
}
|
|
7274
|
-
/**
|
|
7275
|
-
* Return activity feed for this workspace.
|
|
7276
|
-
*/
|
|
7277
|
-
async activity(id) {
|
|
7278
|
-
const payload = await this.http.get(`/workspaces/${id}/activity`);
|
|
7279
|
-
return listItems17(payload, [
|
|
7280
|
-
"data",
|
|
7281
|
-
"activity",
|
|
7282
|
-
"events",
|
|
7283
|
-
"items"
|
|
7284
|
-
]);
|
|
7285
|
-
}
|
|
7286
|
-
/**
|
|
7287
|
-
* List computer templates available in this workspace.
|
|
7288
|
-
*/
|
|
7289
|
-
async listComputerTemplates(id) {
|
|
7290
|
-
const payload = await this.http.get(
|
|
7291
|
-
`/workspaces/${id}/computer-templates`
|
|
7292
|
-
);
|
|
7293
|
-
return listItems17(payload, [
|
|
7294
|
-
"data",
|
|
7295
|
-
"templates",
|
|
7296
|
-
"items"
|
|
7297
|
-
]);
|
|
7298
|
-
}
|
|
7299
|
-
/**
|
|
7300
|
-
* Create a computer template scoped to this workspace.
|
|
7301
|
-
*/
|
|
7302
|
-
async createComputerTemplate(id, params) {
|
|
7303
|
-
const payload = await this.http.post(
|
|
7304
|
-
`/workspaces/${id}/computer-templates`,
|
|
7305
|
-
params
|
|
7306
|
-
);
|
|
7307
|
-
return unwrap45(payload);
|
|
7308
|
-
}
|
|
7309
|
-
};
|
|
7310
|
-
|
|
7311
7063
|
// src/client.ts
|
|
7312
7064
|
var DEFAULT_BASE_URL = "https://api.miosa.ai/api/v1";
|
|
7313
7065
|
var DEFAULT_TIMEOUT2 = 3e4;
|
|
7314
7066
|
var DEFAULT_MAX_RETRIES2 = 3;
|
|
7315
7067
|
var Miosa = class {
|
|
7316
|
-
/** Workspace CRUD — create, list, get, update, delete, and sub-resource queries. */
|
|
7317
|
-
workspaces;
|
|
7318
7068
|
/** Per-workspace user roster — list, add, update role, remove. */
|
|
7319
7069
|
workspaceMembers;
|
|
7320
7070
|
/**
|
|
@@ -7437,7 +7187,6 @@ var Miosa = class {
|
|
|
7437
7187
|
timeout: config.timeout ?? DEFAULT_TIMEOUT2,
|
|
7438
7188
|
maxRetries: config.maxRetries ?? DEFAULT_MAX_RETRIES2
|
|
7439
7189
|
});
|
|
7440
|
-
this.workspaces = new Workspaces(this.http);
|
|
7441
7190
|
this.workspaceMembers = new WorkspaceMembers(this.http);
|
|
7442
7191
|
this.workspaceInvites = new WorkspaceInvites(this.http);
|
|
7443
7192
|
this.orgInvites = new OrgInvites(this.http);
|
|
@@ -7486,6 +7235,6 @@ var Miosa = class {
|
|
|
7486
7235
|
}
|
|
7487
7236
|
};
|
|
7488
7237
|
|
|
7489
|
-
export { Admin, Analytics, ApiKeys, AuditLog, AuthError, Benchmarks, BuilderSessions, Channels, Checkpoints, CommandCenter, Community, Completions, Computer, ComputerAudit, ComputerAutoStop, ComputerEnv, ComputerInbox, ComputerLogs, ComputerNetwork, ComputerOsa, ComputerPorts, ComputerSecrets, ComputerTerminal, ComputerVolumes, Computers, Credits, CronJobs, Dashboard, Databases, DeploymentDomains, DeploymentReleases, DeploymentRuntimeInstances, DeploymentVersions, Deployments, Desktop, EgressAudit, EgressNetwork, EgressSecrets, Email, EmailCampaigns, EmailInbox, EmailTemplates, Embeddings, Exec, ExternalKeys, Files, FlatCustomDomains, Functions, HealthChecks, InsufficientCreditsError, Integrations, Mcp, Miosa, MiosaError, Models, NetworkError, NetworkPolicy, NotFoundError, OAuthFlow, OpenComputers, OrgInvites, ProjectAuth, ProjectIntegrations, ProviderDefaults, RateLimitError, Regions, SANDBOX_TEMPLATE, Sandbox, SandboxArtifacts, SandboxAudit, SandboxCommands, SandboxEnv, SandboxEvents, SandboxFiles, SandboxNetwork, SandboxPreview, SandboxPreviews, SandboxSecrets, SandboxTags, SandboxTemplates, SandboxTerminal, Sandboxes, ScopedFs, Settings, SnapshotsStandalone, Storage, Tenant, TimeoutError, Usage, ValidationError, Volumes, Webhooks, WorkspaceInvites, WorkspaceMembers
|
|
7238
|
+
export { Admin, Analytics, ApiKeys, AuditLog, AuthError, Benchmarks, BuilderSessions, Channels, Checkpoints, CommandCenter, Community, Completions, Computer, ComputerAudit, ComputerAutoStop, ComputerEnv, ComputerInbox, ComputerLogs, ComputerNetwork, ComputerOsa, ComputerPorts, ComputerSecrets, ComputerTerminal, ComputerVolumes, Computers, Credits, CronJobs, Dashboard, Databases, DeploymentDomains, DeploymentReleases, DeploymentRuntimeInstances, DeploymentVersions, Deployments, Desktop, EgressAudit, EgressNetwork, EgressSecrets, Email, EmailCampaigns, EmailInbox, EmailTemplates, Embeddings, Exec, ExternalKeys, Files, FlatCustomDomains, Functions, HealthChecks, InsufficientCreditsError, Integrations, Mcp, Miosa, MiosaError, Models, NetworkError, NetworkPolicy, NotFoundError, OAuthFlow, OpenComputers, OrgInvites, ProjectAuth, ProjectIntegrations, ProviderDefaults, RateLimitError, Regions, SANDBOX_TEMPLATE, Sandbox, SandboxArtifacts, SandboxAudit, SandboxCommands, SandboxEnv, SandboxEvents, SandboxFiles, SandboxNetwork, SandboxPreview, SandboxPreviews, SandboxSecrets, SandboxTags, SandboxTemplates, SandboxTerminal, Sandboxes, ScopedFs, Settings, SnapshotsStandalone, Storage, Tenant, TimeoutError, Usage, ValidationError, Volumes, Webhooks, WorkspaceInvites, WorkspaceMembers };
|
|
7490
7239
|
//# sourceMappingURL=index.js.map
|
|
7491
7240
|
//# sourceMappingURL=index.js.map
|