@alpic-ai/sdk 0.0.0-staging.gfab3fc8 → 0.0.0-staging.gfcfbb4c
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.
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
</div>
|
|
216
216
|
</div>
|
|
217
217
|
<script>
|
|
218
|
-
|
|
218
|
+
const loaderSvg =
|
|
219
219
|
'<svg class="spinner" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v4"/><path d="m16.2 7.8 2.9-2.9"/><path d="M18 12h4"/><path d="m16.2 16.2 2.9 2.9"/><path d="M12 18v4"/><path d="m4.9 19.1 2.9-2.9"/><path d="M2 12h4"/><path d="m4.9 4.9 2.9 2.9"/></svg>';
|
|
220
220
|
// biome-ignore lint/correctness/noUnusedVariables: The function is used within the buttons onclick handlers
|
|
221
221
|
function login(provider, btn) {
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import type { RouterOutput } from "@alpic-ai/api";
|
|
1
|
+
import type { RouterInput, RouterOutput } from "@alpic-ai/api";
|
|
2
2
|
import type { AlpicApi } from "../api/client.js";
|
|
3
3
|
export type Deployment = RouterOutput["deployments"]["get"]["v1"];
|
|
4
4
|
export type DeploymentStatus = Deployment["status"];
|
|
5
|
+
export type DeploySettings = NonNullable<RouterInput["environments"]["deploy"]["v1"]["settings"]>;
|
|
5
6
|
export type DeployOptions = {
|
|
6
7
|
environmentId: string;
|
|
7
8
|
teamId: string;
|
|
9
|
+
detectSettings?: (files: string[]) => DeploySettings | Promise<DeploySettings>;
|
|
8
10
|
onProgress?: (event: DeployEvent) => void;
|
|
9
11
|
};
|
|
10
12
|
export type DeployResult = {
|
|
@@ -39,5 +41,5 @@ export declare class Deployments {
|
|
|
39
41
|
getLatestForEnvironment(environmentId: string): Promise<Deployment>;
|
|
40
42
|
watch(deploymentId: string): Promise<Deployment>;
|
|
41
43
|
private pollUntilFinal;
|
|
42
|
-
deploy({ environmentId, teamId, onProgress }: DeployOptions): Promise<DeployResult>;
|
|
44
|
+
deploy({ environmentId, teamId, detectSettings, onProgress }: DeployOptions): Promise<DeployResult>;
|
|
43
45
|
}
|
|
@@ -38,7 +38,7 @@ export class Deployments {
|
|
|
38
38
|
}
|
|
39
39
|
return current;
|
|
40
40
|
}
|
|
41
|
-
async deploy({ environmentId, teamId, onProgress }) {
|
|
41
|
+
async deploy({ environmentId, teamId, detectSettings, onProgress }) {
|
|
42
42
|
const emit = onProgress ?? (() => { });
|
|
43
43
|
let tmpDir;
|
|
44
44
|
const startedAt = Date.now();
|
|
@@ -46,13 +46,14 @@ export class Deployments {
|
|
|
46
46
|
emit({ type: "collecting" });
|
|
47
47
|
const files = getFilesToPack();
|
|
48
48
|
emit({ type: "collected", fileCount: files.length });
|
|
49
|
+
const settings = detectSettings ? await detectSettings(files) : undefined;
|
|
49
50
|
const archive = await createTarArchive(files);
|
|
50
51
|
tmpDir = archive.tmpDir;
|
|
51
52
|
const { uploadUrl, token } = await this.api.deployments.uploadArtifact.v1({ teamId });
|
|
52
53
|
emit({ type: "uploading" });
|
|
53
54
|
await uploadToPresignedUrl(uploadUrl, readFileSync(archive.archivePath));
|
|
54
55
|
emit({ type: "triggering" });
|
|
55
|
-
const initial = await this.api.environments.deploy.v1({ environmentId, token });
|
|
56
|
+
const initial = await this.api.environments.deploy.v1({ environmentId, token, settings });
|
|
56
57
|
let deployment = initial;
|
|
57
58
|
const deploymentPageUrl = deployment.deploymentPageUrl ?? null;
|
|
58
59
|
const emitDeploying = () => emit({ type: "deploying", status: deployment.status, elapsedMs: Date.now() - startedAt, deploymentPageUrl });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deployments.js","sourceRoot":"","sources":["../../src/deploy/deployments.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AAG/C,OAAO,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,KAAK,EAAE,MAAM,WAAW,CAAC;AAClD,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAKnD,MAAM,cAAc,GAAG,IAAI,GAAG,CAAmB,CAAC,UAAU,EAAE,QAAQ,EAAE,UAAU,CAAC,CAAC,CAAC;AACrF,MAAM,UAAU,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC;AAClC,MAAM,cAAc,GAAG,MAAM,CAAC;AAC9B,MAAM,aAAa,GAAG,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"deployments.js","sourceRoot":"","sources":["../../src/deploy/deployments.ts"],"names":[],"mappings":"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"}
|
package/dist/vendor/pipenet.js
CHANGED
|
@@ -9593,9 +9593,9 @@ var require_get_proto = __commonJS({
|
|
|
9593
9593
|
}
|
|
9594
9594
|
});
|
|
9595
9595
|
|
|
9596
|
-
// ../../node_modules/.pnpm/hasown@2.0.
|
|
9596
|
+
// ../../node_modules/.pnpm/hasown@2.0.4/node_modules/hasown/index.js
|
|
9597
9597
|
var require_hasown = __commonJS({
|
|
9598
|
-
"../../node_modules/.pnpm/hasown@2.0.
|
|
9598
|
+
"../../node_modules/.pnpm/hasown@2.0.4/node_modules/hasown/index.js"(exports, module) {
|
|
9599
9599
|
"use strict";
|
|
9600
9600
|
var call = Function.prototype.call;
|
|
9601
9601
|
var $hasOwn = Object.prototype.hasOwnProperty;
|
|
@@ -9978,17 +9978,6 @@ var require_es_set_tostringtag = __commonJS({
|
|
|
9978
9978
|
}
|
|
9979
9979
|
});
|
|
9980
9980
|
|
|
9981
|
-
// ../../node_modules/.pnpm/hasown@2.0.4/node_modules/hasown/index.js
|
|
9982
|
-
var require_hasown2 = __commonJS({
|
|
9983
|
-
"../../node_modules/.pnpm/hasown@2.0.4/node_modules/hasown/index.js"(exports, module) {
|
|
9984
|
-
"use strict";
|
|
9985
|
-
var call = Function.prototype.call;
|
|
9986
|
-
var $hasOwn = Object.prototype.hasOwnProperty;
|
|
9987
|
-
var bind2 = require_function_bind();
|
|
9988
|
-
module.exports = bind2.call(call, $hasOwn);
|
|
9989
|
-
}
|
|
9990
|
-
});
|
|
9991
|
-
|
|
9992
9981
|
// ../../node_modules/.pnpm/form-data@4.0.6/node_modules/form-data/lib/populate.js
|
|
9993
9982
|
var require_populate = __commonJS({
|
|
9994
9983
|
"../../node_modules/.pnpm/form-data@4.0.6/node_modules/form-data/lib/populate.js"(exports, module) {
|
|
@@ -10018,7 +10007,7 @@ var require_form_data = __commonJS({
|
|
|
10018
10007
|
var mime = require_mime_types();
|
|
10019
10008
|
var asynckit = require_asynckit();
|
|
10020
10009
|
var setToStringTag = require_es_set_tostringtag();
|
|
10021
|
-
var hasOwn =
|
|
10010
|
+
var hasOwn = require_hasown();
|
|
10022
10011
|
var populate = require_populate();
|
|
10023
10012
|
function escapeHeaderParam(str) {
|
|
10024
10013
|
return String(str).replace(/\r/g, "%0D").replace(/\n/g, "%0A").replace(/"/g, "%22");
|
|
@@ -11099,9 +11088,9 @@ var require_src = __commonJS({
|
|
|
11099
11088
|
}
|
|
11100
11089
|
});
|
|
11101
11090
|
|
|
11102
|
-
// ../../node_modules/.pnpm/agent-base@6.0.
|
|
11091
|
+
// ../../node_modules/.pnpm/agent-base@6.0.2/node_modules/agent-base/dist/src/promisify.js
|
|
11103
11092
|
var require_promisify = __commonJS({
|
|
11104
|
-
"../../node_modules/.pnpm/agent-base@6.0.
|
|
11093
|
+
"../../node_modules/.pnpm/agent-base@6.0.2/node_modules/agent-base/dist/src/promisify.js"(exports) {
|
|
11105
11094
|
"use strict";
|
|
11106
11095
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11107
11096
|
function promisify(fn) {
|
|
@@ -11121,9 +11110,9 @@ var require_promisify = __commonJS({
|
|
|
11121
11110
|
}
|
|
11122
11111
|
});
|
|
11123
11112
|
|
|
11124
|
-
// ../../node_modules/.pnpm/agent-base@6.0.
|
|
11113
|
+
// ../../node_modules/.pnpm/agent-base@6.0.2/node_modules/agent-base/dist/src/index.js
|
|
11125
11114
|
var require_src2 = __commonJS({
|
|
11126
|
-
"../../node_modules/.pnpm/agent-base@6.0.
|
|
11115
|
+
"../../node_modules/.pnpm/agent-base@6.0.2/node_modules/agent-base/dist/src/index.js"(exports, module) {
|
|
11127
11116
|
"use strict";
|
|
11128
11117
|
var __importDefault = exports && exports.__importDefault || function(mod) {
|
|
11129
11118
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
@@ -11304,9 +11293,9 @@ var require_src2 = __commonJS({
|
|
|
11304
11293
|
}
|
|
11305
11294
|
});
|
|
11306
11295
|
|
|
11307
|
-
// ../../node_modules/.pnpm/https-proxy-agent@5.0.
|
|
11296
|
+
// ../../node_modules/.pnpm/https-proxy-agent@5.0.1/node_modules/https-proxy-agent/dist/parse-proxy-response.js
|
|
11308
11297
|
var require_parse_proxy_response = __commonJS({
|
|
11309
|
-
"../../node_modules/.pnpm/https-proxy-agent@5.0.
|
|
11298
|
+
"../../node_modules/.pnpm/https-proxy-agent@5.0.1/node_modules/https-proxy-agent/dist/parse-proxy-response.js"(exports) {
|
|
11310
11299
|
"use strict";
|
|
11311
11300
|
var __importDefault = exports && exports.__importDefault || function(mod) {
|
|
11312
11301
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
@@ -11370,9 +11359,9 @@ var require_parse_proxy_response = __commonJS({
|
|
|
11370
11359
|
}
|
|
11371
11360
|
});
|
|
11372
11361
|
|
|
11373
|
-
// ../../node_modules/.pnpm/https-proxy-agent@5.0.
|
|
11362
|
+
// ../../node_modules/.pnpm/https-proxy-agent@5.0.1/node_modules/https-proxy-agent/dist/agent.js
|
|
11374
11363
|
var require_agent = __commonJS({
|
|
11375
|
-
"../../node_modules/.pnpm/https-proxy-agent@5.0.
|
|
11364
|
+
"../../node_modules/.pnpm/https-proxy-agent@5.0.1/node_modules/https-proxy-agent/dist/agent.js"(exports) {
|
|
11376
11365
|
"use strict";
|
|
11377
11366
|
var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P, generator) {
|
|
11378
11367
|
function adopt(value) {
|
|
@@ -11530,9 +11519,9 @@ var require_agent = __commonJS({
|
|
|
11530
11519
|
}
|
|
11531
11520
|
});
|
|
11532
11521
|
|
|
11533
|
-
// ../../node_modules/.pnpm/https-proxy-agent@5.0.
|
|
11522
|
+
// ../../node_modules/.pnpm/https-proxy-agent@5.0.1/node_modules/https-proxy-agent/dist/index.js
|
|
11534
11523
|
var require_dist = __commonJS({
|
|
11535
|
-
"../../node_modules/.pnpm/https-proxy-agent@5.0.
|
|
11524
|
+
"../../node_modules/.pnpm/https-proxy-agent@5.0.1/node_modules/https-proxy-agent/dist/index.js"(exports, module) {
|
|
11536
11525
|
"use strict";
|
|
11537
11526
|
var __importDefault = exports && exports.__importDefault || function(mod) {
|
|
11538
11527
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
@@ -16585,18 +16574,18 @@ var {
|
|
|
16585
16574
|
create
|
|
16586
16575
|
} = axios_default;
|
|
16587
16576
|
|
|
16588
|
-
// ../../node_modules/.pnpm/pipenet@1.4.2_patch_hash=
|
|
16577
|
+
// ../../node_modules/.pnpm/pipenet@1.4.2_patch_hash=09c4ab8ce9e1d77e9c735905927fa4bc2790e673c18d6cf3a62fd19ba4d9b576/node_modules/pipenet/dist/Tunnel.js
|
|
16589
16578
|
var import_debug2 = __toESM(require_src(), 1);
|
|
16590
16579
|
import { EventEmitter as EventEmitter3 } from "events";
|
|
16591
16580
|
|
|
16592
|
-
// ../../node_modules/.pnpm/pipenet@1.4.2_patch_hash=
|
|
16581
|
+
// ../../node_modules/.pnpm/pipenet@1.4.2_patch_hash=09c4ab8ce9e1d77e9c735905927fa4bc2790e673c18d6cf3a62fd19ba4d9b576/node_modules/pipenet/dist/TunnelCluster.js
|
|
16593
16582
|
var import_debug = __toESM(require_src(), 1);
|
|
16594
16583
|
import { EventEmitter as EventEmitter2 } from "events";
|
|
16595
16584
|
import fs from "fs";
|
|
16596
16585
|
import net from "net";
|
|
16597
16586
|
import tls from "tls";
|
|
16598
16587
|
|
|
16599
|
-
// ../../node_modules/.pnpm/pipenet@1.4.2_patch_hash=
|
|
16588
|
+
// ../../node_modules/.pnpm/pipenet@1.4.2_patch_hash=09c4ab8ce9e1d77e9c735905927fa4bc2790e673c18d6cf3a62fd19ba4d9b576/node_modules/pipenet/dist/HeaderHostTransformer.js
|
|
16600
16589
|
import { Transform } from "stream";
|
|
16601
16590
|
var HeaderHostTransformer = class extends Transform {
|
|
16602
16591
|
host;
|
|
@@ -16614,7 +16603,7 @@ var HeaderHostTransformer = class extends Transform {
|
|
|
16614
16603
|
}
|
|
16615
16604
|
};
|
|
16616
16605
|
|
|
16617
|
-
// ../../node_modules/.pnpm/pipenet@1.4.2_patch_hash=
|
|
16606
|
+
// ../../node_modules/.pnpm/pipenet@1.4.2_patch_hash=09c4ab8ce9e1d77e9c735905927fa4bc2790e673c18d6cf3a62fd19ba4d9b576/node_modules/pipenet/dist/TunnelCluster.js
|
|
16618
16607
|
var log = (0, import_debug.default)("pipenet:client");
|
|
16619
16608
|
var TunnelCluster = class extends EventEmitter2 {
|
|
16620
16609
|
opts;
|
|
@@ -16714,7 +16703,7 @@ var TunnelCluster = class extends EventEmitter2 {
|
|
|
16714
16703
|
}
|
|
16715
16704
|
};
|
|
16716
16705
|
|
|
16717
|
-
// ../../node_modules/.pnpm/pipenet@1.4.2_patch_hash=
|
|
16706
|
+
// ../../node_modules/.pnpm/pipenet@1.4.2_patch_hash=09c4ab8ce9e1d77e9c735905927fa4bc2790e673c18d6cf3a62fd19ba4d9b576/node_modules/pipenet/dist/Tunnel.js
|
|
16718
16707
|
var log2 = (0, import_debug2.default)("pipenet:client");
|
|
16719
16708
|
var Tunnel = class extends EventEmitter3 {
|
|
16720
16709
|
cachedUrl;
|
|
@@ -16862,7 +16851,7 @@ var Tunnel = class extends EventEmitter3 {
|
|
|
16862
16851
|
}
|
|
16863
16852
|
};
|
|
16864
16853
|
|
|
16865
|
-
// ../../node_modules/.pnpm/pipenet@1.4.2_patch_hash=
|
|
16854
|
+
// ../../node_modules/.pnpm/pipenet@1.4.2_patch_hash=09c4ab8ce9e1d77e9c735905927fa4bc2790e673c18d6cf3a62fd19ba4d9b576/node_modules/pipenet/dist/pipenet.js
|
|
16866
16855
|
function pipenet(arg1, arg2, arg3) {
|
|
16867
16856
|
const options = typeof arg1 === "object" ? arg1 : { ...arg2, port: arg1 };
|
|
16868
16857
|
const callback = typeof arg1 === "object" ? arg2 : arg3;
|