mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-29 12:10:24 +00:00
Initial commit of eigent-main
This commit is contained in:
commit
723df5a03e
1144 changed files with 103478 additions and 0 deletions
269
package/@stackframe/stack-shared/dist/interface/adminInterface.js
vendored
Normal file
269
package/@stackframe/stack-shared/dist/interface/adminInterface.js
vendored
Normal file
|
|
@ -0,0 +1,269 @@
|
|||
"use strict";
|
||||
var __defProp = Object.defineProperty;
|
||||
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
||||
var __getOwnPropNames = Object.getOwnPropertyNames;
|
||||
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
||||
var __export = (target, all) => {
|
||||
for (var name in all)
|
||||
__defProp(target, name, { get: all[name], enumerable: true });
|
||||
};
|
||||
var __copyProps = (to, from, except, desc) => {
|
||||
if (from && typeof from === "object" || typeof from === "function") {
|
||||
for (let key of __getOwnPropNames(from))
|
||||
if (!__hasOwnProp.call(to, key) && key !== except)
|
||||
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
||||
}
|
||||
return to;
|
||||
};
|
||||
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
||||
|
||||
// src/interface/adminInterface.ts
|
||||
var adminInterface_exports = {};
|
||||
__export(adminInterface_exports, {
|
||||
StackAdminInterface: () => StackAdminInterface
|
||||
});
|
||||
module.exports = __toCommonJS(adminInterface_exports);
|
||||
var import_serverInterface = require("./serverInterface");
|
||||
var StackAdminInterface = class extends import_serverInterface.StackServerInterface {
|
||||
constructor(options) {
|
||||
super(options);
|
||||
this.options = options;
|
||||
}
|
||||
async sendAdminRequest(path, options, session, requestType = "admin") {
|
||||
return await this.sendServerRequest(
|
||||
path,
|
||||
{
|
||||
...options,
|
||||
headers: {
|
||||
"x-stack-super-secret-admin-key": "superSecretAdminKey" in this.options ? this.options.superSecretAdminKey : "",
|
||||
...options.headers
|
||||
}
|
||||
},
|
||||
session,
|
||||
requestType
|
||||
);
|
||||
}
|
||||
async getProject() {
|
||||
const response = await this.sendAdminRequest(
|
||||
"/internal/projects/current",
|
||||
{
|
||||
method: "GET"
|
||||
},
|
||||
null
|
||||
);
|
||||
return await response.json();
|
||||
}
|
||||
async updateProject(update) {
|
||||
const response = await this.sendAdminRequest(
|
||||
"/internal/projects/current",
|
||||
{
|
||||
method: "PATCH",
|
||||
headers: {
|
||||
"content-type": "application/json"
|
||||
},
|
||||
body: JSON.stringify(update)
|
||||
},
|
||||
null
|
||||
);
|
||||
return await response.json();
|
||||
}
|
||||
async createInternalApiKey(options) {
|
||||
const response = await this.sendAdminRequest(
|
||||
"/internal/api-keys",
|
||||
{
|
||||
method: "POST",
|
||||
headers: {
|
||||
"content-type": "application/json"
|
||||
},
|
||||
body: JSON.stringify(options)
|
||||
},
|
||||
null
|
||||
);
|
||||
return await response.json();
|
||||
}
|
||||
async listInternalApiKeys() {
|
||||
const response = await this.sendAdminRequest("/internal/api-keys", {}, null);
|
||||
const result = await response.json();
|
||||
return result.items;
|
||||
}
|
||||
async revokeInternalApiKeyById(id) {
|
||||
await this.sendAdminRequest(
|
||||
`/internal/api-keys/${id}`,
|
||||
{
|
||||
method: "PATCH",
|
||||
headers: {
|
||||
"content-type": "application/json"
|
||||
},
|
||||
body: JSON.stringify({
|
||||
revoked: true
|
||||
})
|
||||
},
|
||||
null
|
||||
);
|
||||
}
|
||||
async getInternalApiKey(id, session) {
|
||||
const response = await this.sendAdminRequest(`/internal/api-keys/${id}`, {}, session);
|
||||
return await response.json();
|
||||
}
|
||||
async listEmailTemplates() {
|
||||
const response = await this.sendAdminRequest(`/email-templates`, {}, null);
|
||||
const result = await response.json();
|
||||
return result.items;
|
||||
}
|
||||
async updateEmailTemplate(type, data) {
|
||||
const result = await this.sendAdminRequest(
|
||||
`/email-templates/${type}`,
|
||||
{
|
||||
method: "PATCH",
|
||||
headers: {
|
||||
"content-type": "application/json"
|
||||
},
|
||||
body: JSON.stringify(data)
|
||||
},
|
||||
null
|
||||
);
|
||||
return await result.json();
|
||||
}
|
||||
async resetEmailTemplate(type) {
|
||||
await this.sendAdminRequest(
|
||||
`/email-templates/${type}`,
|
||||
{ method: "DELETE" },
|
||||
null
|
||||
);
|
||||
}
|
||||
// Team permission definitions methods
|
||||
async listTeamPermissionDefinitions() {
|
||||
const response = await this.sendAdminRequest(`/team-permission-definitions`, {}, null);
|
||||
const result = await response.json();
|
||||
return result.items;
|
||||
}
|
||||
async createTeamPermissionDefinition(data) {
|
||||
const response = await this.sendAdminRequest(
|
||||
"/team-permission-definitions",
|
||||
{
|
||||
method: "POST",
|
||||
headers: {
|
||||
"content-type": "application/json"
|
||||
},
|
||||
body: JSON.stringify(data)
|
||||
},
|
||||
null
|
||||
);
|
||||
return await response.json();
|
||||
}
|
||||
async updateTeamPermissionDefinition(permissionId, data) {
|
||||
const response = await this.sendAdminRequest(
|
||||
`/team-permission-definitions/${permissionId}`,
|
||||
{
|
||||
method: "PATCH",
|
||||
headers: {
|
||||
"content-type": "application/json"
|
||||
},
|
||||
body: JSON.stringify(data)
|
||||
},
|
||||
null
|
||||
);
|
||||
return await response.json();
|
||||
}
|
||||
async deleteTeamPermissionDefinition(permissionId) {
|
||||
await this.sendAdminRequest(
|
||||
`/team-permission-definitions/${permissionId}`,
|
||||
{ method: "DELETE" },
|
||||
null
|
||||
);
|
||||
}
|
||||
async listProjectPermissionDefinitions() {
|
||||
const response = await this.sendAdminRequest(`/project-permission-definitions`, {}, null);
|
||||
const result = await response.json();
|
||||
return result.items;
|
||||
}
|
||||
async createProjectPermissionDefinition(data) {
|
||||
const response = await this.sendAdminRequest(
|
||||
"/project-permission-definitions",
|
||||
{
|
||||
method: "POST",
|
||||
headers: {
|
||||
"content-type": "application/json"
|
||||
},
|
||||
body: JSON.stringify(data)
|
||||
},
|
||||
null
|
||||
);
|
||||
return await response.json();
|
||||
}
|
||||
async updateProjectPermissionDefinition(permissionId, data) {
|
||||
const response = await this.sendAdminRequest(
|
||||
`/project-permission-definitions/${permissionId}`,
|
||||
{
|
||||
method: "PATCH",
|
||||
headers: {
|
||||
"content-type": "application/json"
|
||||
},
|
||||
body: JSON.stringify(data)
|
||||
},
|
||||
null
|
||||
);
|
||||
return await response.json();
|
||||
}
|
||||
async deleteProjectPermissionDefinition(permissionId) {
|
||||
await this.sendAdminRequest(
|
||||
`/project-permission-definitions/${permissionId}`,
|
||||
{ method: "DELETE" },
|
||||
null
|
||||
);
|
||||
}
|
||||
async getSvixToken() {
|
||||
const response = await this.sendAdminRequest(
|
||||
"/webhooks/svix-token",
|
||||
{
|
||||
method: "POST",
|
||||
headers: {
|
||||
"content-type": "application/json"
|
||||
},
|
||||
body: JSON.stringify({})
|
||||
},
|
||||
null
|
||||
);
|
||||
return await response.json();
|
||||
}
|
||||
async deleteProject() {
|
||||
await this.sendAdminRequest(
|
||||
"/internal/projects/current",
|
||||
{
|
||||
method: "DELETE"
|
||||
},
|
||||
null
|
||||
);
|
||||
}
|
||||
async getMetrics() {
|
||||
const response = await this.sendAdminRequest(
|
||||
"/internal/metrics",
|
||||
{
|
||||
method: "GET"
|
||||
},
|
||||
null
|
||||
);
|
||||
return await response.json();
|
||||
}
|
||||
async sendTestEmail(data) {
|
||||
const response = await this.sendAdminRequest(`/internal/send-test-email`, {
|
||||
method: "POST",
|
||||
headers: {
|
||||
"content-type": "application/json"
|
||||
},
|
||||
body: JSON.stringify(data)
|
||||
}, null);
|
||||
return await response.json();
|
||||
}
|
||||
async listSentEmails() {
|
||||
const response = await this.sendAdminRequest("/internal/emails", {
|
||||
method: "GET"
|
||||
}, null);
|
||||
return await response.json();
|
||||
}
|
||||
};
|
||||
// Annotate the CommonJS export names for ESM import in node:
|
||||
0 && (module.exports = {
|
||||
StackAdminInterface
|
||||
});
|
||||
//# sourceMappingURL=adminInterface.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue