Platform API ClientClient group67 methodsNamespacesMethods

namespaces

Reference methods for namespaces.

Namespaces / Agents

namespaces.agents.list()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceListResponse>.

Signature

list(params?: NamespaceListParams): Promise<NamespaceListResponse>

Parameters

NameTypeFlags
paramsNamespaceListParamsoptional
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const params = {} as NamespaceListParams;
// Fill the params payload fields before calling this method.

const response = await client.namespaces.agents.list(params);
console.log(response);

Response

// Response type
Promise<NamespaceListResponse>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.agents.create()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

create(data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const data = {} as Record<string, unknown>;
// Fill the data payload fields before calling this method.

const response = await client.namespaces.agents.create(data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.agents.get()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

get(id: string): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.agents.get(id);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.agents.update()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

update(id: string, data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;
const data = {} as Record<string, unknown>;

const response = await client.namespaces.agents.update(id, data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.agents.archive()
Generated exampleIn-process runtime operation

Client method returning Promise<void>.

Signature

archive(id: string): Promise<void>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.agents.archive(id);
console.log(response);

Response

// Response type
Promise<void>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));

Namespaces / Approvals

namespaces.approvals.list()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceListResponse>.

Signature

list(params?: NamespaceListParams): Promise<NamespaceListResponse>

Parameters

NameTypeFlags
paramsNamespaceListParamsoptional
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const params = {} as NamespaceListParams;
// Fill the params payload fields before calling this method.

const response = await client.namespaces.approvals.list(params);
console.log(response);

Response

// Response type
Promise<NamespaceListResponse>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.approvals.create()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

create(data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const data = {} as Record<string, unknown>;
// Fill the data payload fields before calling this method.

const response = await client.namespaces.approvals.create(data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.approvals.get()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

get(id: string): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.approvals.get(id);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.approvals.update()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

update(id: string, data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;
const data = {} as Record<string, unknown>;

const response = await client.namespaces.approvals.update(id, data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.approvals.archive()
Generated exampleIn-process runtime operation

Client method returning Promise<void>.

Signature

archive(id: string): Promise<void>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.approvals.archive(id);
console.log(response);

Response

// Response type
Promise<void>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));

Namespaces / Compliance Config

namespaces.complianceConfig.list()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceListResponse>.

Signature

list(params?: NamespaceListParams): Promise<NamespaceListResponse>

Parameters

NameTypeFlags
paramsNamespaceListParamsoptional
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const params = {} as NamespaceListParams;
// Fill the params payload fields before calling this method.

const response = await client.namespaces.complianceConfig.list(params);
console.log(response);

Response

// Response type
Promise<NamespaceListResponse>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.complianceConfig.create()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

create(data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const data = {} as Record<string, unknown>;
// Fill the data payload fields before calling this method.

const response = await client.namespaces.complianceConfig.create(data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.complianceConfig.get()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

get(id: string): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.complianceConfig.get(id);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.complianceConfig.update()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

update(id: string, data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;
const data = {} as Record<string, unknown>;

const response = await client.namespaces.complianceConfig.update(id, data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.complianceConfig.archive()
Generated exampleIn-process runtime operation

Client method returning Promise<void>.

Signature

archive(id: string): Promise<void>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.complianceConfig.archive(id);
console.log(response);

Response

// Response type
Promise<void>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));

Namespaces / Data Sources

namespaces.dataSources.list()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceListResponse>.

Signature

list(params?: NamespaceListParams): Promise<NamespaceListResponse>

Parameters

NameTypeFlags
paramsNamespaceListParamsoptional
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const params = {} as NamespaceListParams;
// Fill the params payload fields before calling this method.

const response = await client.namespaces.dataSources.list(params);
console.log(response);

Response

// Response type
Promise<NamespaceListResponse>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.dataSources.create()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

create(data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const data = {} as Record<string, unknown>;
// Fill the data payload fields before calling this method.

const response = await client.namespaces.dataSources.create(data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.dataSources.get()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

get(id: string): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.dataSources.get(id);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.dataSources.update()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

update(id: string, data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;
const data = {} as Record<string, unknown>;

const response = await client.namespaces.dataSources.update(id, data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.dataSources.archive()
Generated exampleIn-process runtime operation

Client method returning Promise<void>.

Signature

archive(id: string): Promise<void>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.dataSources.archive(id);
console.log(response);

Response

// Response type
Promise<void>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));

Namespaces / Evaluations

namespaces.evaluations.list()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceListResponse>.

Signature

list(params?: NamespaceListParams): Promise<NamespaceListResponse>

Parameters

NameTypeFlags
paramsNamespaceListParamsoptional
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const params = {} as NamespaceListParams;
// Fill the params payload fields before calling this method.

const response = await client.namespaces.evaluations.list(params);
console.log(response);

Response

// Response type
Promise<NamespaceListResponse>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.evaluations.create()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

create(data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const data = {} as Record<string, unknown>;
// Fill the data payload fields before calling this method.

const response = await client.namespaces.evaluations.create(data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.evaluations.get()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

get(id: string): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.evaluations.get(id);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.evaluations.update()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

update(id: string, data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;
const data = {} as Record<string, unknown>;

const response = await client.namespaces.evaluations.update(id, data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.evaluations.archive()
Generated exampleIn-process runtime operation

Client method returning Promise<void>.

Signature

archive(id: string): Promise<void>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.evaluations.archive(id);
console.log(response);

Response

// Response type
Promise<void>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));

Namespaces / Governance Config

namespaces.governanceConfig.list()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceListResponse>.

Signature

list(params?: NamespaceListParams): Promise<NamespaceListResponse>

Parameters

NameTypeFlags
paramsNamespaceListParamsoptional
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const params = {} as NamespaceListParams;
// Fill the params payload fields before calling this method.

const response = await client.namespaces.governanceConfig.list(params);
console.log(response);

Response

// Response type
Promise<NamespaceListResponse>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.governanceConfig.create()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

create(data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const data = {} as Record<string, unknown>;
// Fill the data payload fields before calling this method.

const response = await client.namespaces.governanceConfig.create(data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.governanceConfig.get()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

get(id: string): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.governanceConfig.get(id);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.governanceConfig.update()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

update(id: string, data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;
const data = {} as Record<string, unknown>;

const response = await client.namespaces.governanceConfig.update(id, data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.governanceConfig.archive()
Generated exampleIn-process runtime operation

Client method returning Promise<void>.

Signature

archive(id: string): Promise<void>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.governanceConfig.archive(id);
console.log(response);

Response

// Response type
Promise<void>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));

Namespaces / Knowledge

namespaces.knowledge.list()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceListResponse>.

Signature

list(params?: NamespaceListParams): Promise<NamespaceListResponse>

Parameters

NameTypeFlags
paramsNamespaceListParamsoptional
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const params = {} as NamespaceListParams;
// Fill the params payload fields before calling this method.

const response = await client.namespaces.knowledge.list(params);
console.log(response);

Response

// Response type
Promise<NamespaceListResponse>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.knowledge.create()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

create(data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const data = {} as Record<string, unknown>;
// Fill the data payload fields before calling this method.

const response = await client.namespaces.knowledge.create(data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.knowledge.get()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

get(id: string): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.knowledge.get(id);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.knowledge.update()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

update(id: string, data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;
const data = {} as Record<string, unknown>;

const response = await client.namespaces.knowledge.update(id, data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.knowledge.archive()
Generated exampleIn-process runtime operation

Client method returning Promise<void>.

Signature

archive(id: string): Promise<void>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.knowledge.archive(id);
console.log(response);

Response

// Response type
Promise<void>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));

Namespaces / Mcp

namespaces.mcp.evaluateTool()
Generated exampleHTTP endpoint wrapperPOST /api/v1/mcp/tools/evaluate

POST /api/v1/mcp/tools/evaluate

Signature

evaluateTool(input: MCPToolEvaluateInput): Promise<MCPToolEvaluateResponse>

Parameters

NameTypeFlags
inputMCPToolEvaluateInputrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const input = {} as MCPToolEvaluateInput;
// Fill the input payload fields before calling this method.

const response = await client.namespaces.mcp.evaluateTool(input);
console.log(response);

Response

// Response type
Promise<MCPToolEvaluateResponse>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.mcp.governedInvoke()
Generated exampleHTTP endpoint wrapperPOST /api/v1/mcp/tools/evaluate

POST /api/v1/mcp/tools/evaluate

Signature

governedInvoke(input: MCPGovernedInvokeInput<T>): Promise<MCPGovernedInvokeResult<T>>

Parameters

NameTypeFlags
inputMCPGovernedInvokeInput<T>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const input = {} as MCPGovernedInvokeInput<T>;
// Fill the input payload fields before calling this method.

const response = await client.namespaces.mcp.governedInvoke(input);
console.log(response);

Response

// Response type
Promise<MCPGovernedInvokeResult<T>>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));

Namespaces / Memory

namespaces.memory.list()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceListResponse>.

Signature

list(params?: NamespaceListParams): Promise<NamespaceListResponse>

Parameters

NameTypeFlags
paramsNamespaceListParamsoptional
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const params = {} as NamespaceListParams;
// Fill the params payload fields before calling this method.

const response = await client.namespaces.memory.list(params);
console.log(response);

Response

// Response type
Promise<NamespaceListResponse>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.memory.create()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

create(data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const data = {} as Record<string, unknown>;
// Fill the data payload fields before calling this method.

const response = await client.namespaces.memory.create(data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.memory.get()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

get(id: string): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.memory.get(id);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.memory.update()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

update(id: string, data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;
const data = {} as Record<string, unknown>;

const response = await client.namespaces.memory.update(id, data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.memory.archive()
Generated exampleIn-process runtime operation

Client method returning Promise<void>.

Signature

archive(id: string): Promise<void>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.memory.archive(id);
console.log(response);

Response

// Response type
Promise<void>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));

Namespaces / Prompts

namespaces.prompts.list()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceListResponse>.

Signature

list(params?: NamespaceListParams): Promise<NamespaceListResponse>

Parameters

NameTypeFlags
paramsNamespaceListParamsoptional
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const params = {} as NamespaceListParams;
// Fill the params payload fields before calling this method.

const response = await client.namespaces.prompts.list(params);
console.log(response);

Response

// Response type
Promise<NamespaceListResponse>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.prompts.create()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

create(data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const data = {} as Record<string, unknown>;
// Fill the data payload fields before calling this method.

const response = await client.namespaces.prompts.create(data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.prompts.get()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

get(id: string): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.prompts.get(id);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.prompts.update()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

update(id: string, data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;
const data = {} as Record<string, unknown>;

const response = await client.namespaces.prompts.update(id, data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.prompts.archive()
Generated exampleIn-process runtime operation

Client method returning Promise<void>.

Signature

archive(id: string): Promise<void>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.prompts.archive(id);
console.log(response);

Response

// Response type
Promise<void>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));

Namespaces / Quotas

namespaces.quotas.list()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceListResponse>.

Signature

list(params?: NamespaceListParams): Promise<NamespaceListResponse>

Parameters

NameTypeFlags
paramsNamespaceListParamsoptional
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const params = {} as NamespaceListParams;
// Fill the params payload fields before calling this method.

const response = await client.namespaces.quotas.list(params);
console.log(response);

Response

// Response type
Promise<NamespaceListResponse>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.quotas.create()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

create(data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const data = {} as Record<string, unknown>;
// Fill the data payload fields before calling this method.

const response = await client.namespaces.quotas.create(data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.quotas.get()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

get(id: string): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.quotas.get(id);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.quotas.update()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

update(id: string, data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;
const data = {} as Record<string, unknown>;

const response = await client.namespaces.quotas.update(id, data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.quotas.archive()
Generated exampleIn-process runtime operation

Client method returning Promise<void>.

Signature

archive(id: string): Promise<void>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.quotas.archive(id);
console.log(response);

Response

// Response type
Promise<void>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));

Namespaces / Secrets

namespaces.secrets.list()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceListResponse>.

Signature

list(params?: NamespaceListParams): Promise<NamespaceListResponse>

Parameters

NameTypeFlags
paramsNamespaceListParamsoptional
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const params = {} as NamespaceListParams;
// Fill the params payload fields before calling this method.

const response = await client.namespaces.secrets.list(params);
console.log(response);

Response

// Response type
Promise<NamespaceListResponse>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.secrets.create()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

create(data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const data = {} as Record<string, unknown>;
// Fill the data payload fields before calling this method.

const response = await client.namespaces.secrets.create(data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.secrets.get()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

get(id: string): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.secrets.get(id);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.secrets.update()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

update(id: string, data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;
const data = {} as Record<string, unknown>;

const response = await client.namespaces.secrets.update(id, data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.secrets.archive()
Generated exampleIn-process runtime operation

Client method returning Promise<void>.

Signature

archive(id: string): Promise<void>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.secrets.archive(id);
console.log(response);

Response

// Response type
Promise<void>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));

Namespaces / Telemetry

namespaces.telemetry.list()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceListResponse>.

Signature

list(params?: NamespaceListParams): Promise<NamespaceListResponse>

Parameters

NameTypeFlags
paramsNamespaceListParamsoptional
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const params = {} as NamespaceListParams;
// Fill the params payload fields before calling this method.

const response = await client.namespaces.telemetry.list(params);
console.log(response);

Response

// Response type
Promise<NamespaceListResponse>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.telemetry.create()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

create(data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const data = {} as Record<string, unknown>;
// Fill the data payload fields before calling this method.

const response = await client.namespaces.telemetry.create(data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.telemetry.get()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

get(id: string): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.telemetry.get(id);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.telemetry.update()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

update(id: string, data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;
const data = {} as Record<string, unknown>;

const response = await client.namespaces.telemetry.update(id, data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.telemetry.archive()
Generated exampleIn-process runtime operation

Client method returning Promise<void>.

Signature

archive(id: string): Promise<void>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.telemetry.archive(id);
console.log(response);

Response

// Response type
Promise<void>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));

Namespaces / Tools

namespaces.tools.list()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceListResponse>.

Signature

list(params?: NamespaceListParams): Promise<NamespaceListResponse>

Parameters

NameTypeFlags
paramsNamespaceListParamsoptional
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const params = {} as NamespaceListParams;
// Fill the params payload fields before calling this method.

const response = await client.namespaces.tools.list(params);
console.log(response);

Response

// Response type
Promise<NamespaceListResponse>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.tools.create()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

create(data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const data = {} as Record<string, unknown>;
// Fill the data payload fields before calling this method.

const response = await client.namespaces.tools.create(data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.tools.get()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

get(id: string): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.tools.get(id);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.tools.update()
Generated exampleIn-process runtime operation

Client method returning Promise<NamespaceRecord>.

Signature

update(id: string, data: Record<string, unknown>): Promise<NamespaceRecord>

Parameters

NameTypeFlags
idstringrequired
dataRecord<string, unknown>required
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;
const data = {} as Record<string, unknown>;

const response = await client.namespaces.tools.update(id, data);
console.log(response);

Response

// Response type
Promise<NamespaceRecord>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));
namespaces.tools.archive()
Generated exampleIn-process runtime operation

Client method returning Promise<void>.

Signature

archive(id: string): Promise<void>

Parameters

NameTypeFlags
idstringrequired
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const id = {} as string;

const response = await client.namespaces.tools.archive(id);
console.log(response);

Response

// Response type
Promise<void>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));