@getsupervisor/agents-studio-sdk 1.9.0 → 1.10.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/CHANGELOG.md +9 -0
- package/dist/index.d.cts +0 -9
- package/dist/index.d.ts +0 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## v1.9.0
|
|
2
|
+
|
|
3
|
+
## [1.9.0](https://github.com/julio-supervisor/agents-studio-be/compare/v1.8.0...v1.9.0) (2025-10-16)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **api-keys:** add API key management functionality ([bf2ae93](https://github.com/julio-supervisor/agents-studio-be/commit/bf2ae93ea123707eaf8676027819d8739d31f7f1))
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
## v1.8.0
|
|
2
11
|
|
|
3
12
|
## [1.8.0](https://github.com/julio-supervisor/agents-studio-be/compare/v1.7.0...v1.8.0) (2025-10-15)
|
package/dist/index.d.cts
CHANGED
|
@@ -60,15 +60,11 @@ type components = {
|
|
|
60
60
|
};
|
|
61
61
|
InstructionListResponse: {
|
|
62
62
|
data: components['schemas']['Instruction'][];
|
|
63
|
-
versionId?: string | null;
|
|
64
63
|
meta?: components['schemas']['PaginationMeta'];
|
|
65
64
|
};
|
|
66
65
|
CreateInstructionRequest: {
|
|
67
66
|
order: number;
|
|
68
67
|
content: string;
|
|
69
|
-
metadata?: {
|
|
70
|
-
[key: string]: unknown;
|
|
71
|
-
};
|
|
72
68
|
};
|
|
73
69
|
InstructionCreatedResponse: {
|
|
74
70
|
id: string;
|
|
@@ -79,9 +75,6 @@ type components = {
|
|
|
79
75
|
UpdateInstructionRequest: {
|
|
80
76
|
order?: number;
|
|
81
77
|
content?: string;
|
|
82
|
-
metadata?: {
|
|
83
|
-
[key: string]: unknown;
|
|
84
|
-
};
|
|
85
78
|
};
|
|
86
79
|
VoiceSummary: {
|
|
87
80
|
id: string;
|
|
@@ -508,7 +501,6 @@ type AgentEntityFactoryOptions = {
|
|
|
508
501
|
declare const bindAgentInstructions: (api: AgentInstructionsApi, agentId: string) => {
|
|
509
502
|
list(opts?: ListAgentInstructionsOptions): Promise<PaginatedResult<{
|
|
510
503
|
data: components["schemas"]["Instruction"][];
|
|
511
|
-
versionId?: string | null;
|
|
512
504
|
meta?: components["schemas"]["PaginationMeta"];
|
|
513
505
|
}, ListAgentInstructionsOptions>>;
|
|
514
506
|
create(payload: CreateInstructionRequest): Promise<{
|
|
@@ -617,7 +609,6 @@ declare const bindAgentVersions: (api: AgentVersionsApi, agentId: string) => {
|
|
|
617
609
|
instructions(versionId: string): {
|
|
618
610
|
readonly list: (opts?: ListAgentVersionInstructionsOptions) => Promise<{
|
|
619
611
|
data: components["schemas"]["Instruction"][];
|
|
620
|
-
versionId?: string | null;
|
|
621
612
|
meta?: components["schemas"]["PaginationMeta"];
|
|
622
613
|
}>;
|
|
623
614
|
readonly create: (payload: CreateInstructionRequest) => Promise<{
|
package/dist/index.d.ts
CHANGED
|
@@ -60,15 +60,11 @@ type components = {
|
|
|
60
60
|
};
|
|
61
61
|
InstructionListResponse: {
|
|
62
62
|
data: components['schemas']['Instruction'][];
|
|
63
|
-
versionId?: string | null;
|
|
64
63
|
meta?: components['schemas']['PaginationMeta'];
|
|
65
64
|
};
|
|
66
65
|
CreateInstructionRequest: {
|
|
67
66
|
order: number;
|
|
68
67
|
content: string;
|
|
69
|
-
metadata?: {
|
|
70
|
-
[key: string]: unknown;
|
|
71
|
-
};
|
|
72
68
|
};
|
|
73
69
|
InstructionCreatedResponse: {
|
|
74
70
|
id: string;
|
|
@@ -79,9 +75,6 @@ type components = {
|
|
|
79
75
|
UpdateInstructionRequest: {
|
|
80
76
|
order?: number;
|
|
81
77
|
content?: string;
|
|
82
|
-
metadata?: {
|
|
83
|
-
[key: string]: unknown;
|
|
84
|
-
};
|
|
85
78
|
};
|
|
86
79
|
VoiceSummary: {
|
|
87
80
|
id: string;
|
|
@@ -508,7 +501,6 @@ type AgentEntityFactoryOptions = {
|
|
|
508
501
|
declare const bindAgentInstructions: (api: AgentInstructionsApi, agentId: string) => {
|
|
509
502
|
list(opts?: ListAgentInstructionsOptions): Promise<PaginatedResult<{
|
|
510
503
|
data: components["schemas"]["Instruction"][];
|
|
511
|
-
versionId?: string | null;
|
|
512
504
|
meta?: components["schemas"]["PaginationMeta"];
|
|
513
505
|
}, ListAgentInstructionsOptions>>;
|
|
514
506
|
create(payload: CreateInstructionRequest): Promise<{
|
|
@@ -617,7 +609,6 @@ declare const bindAgentVersions: (api: AgentVersionsApi, agentId: string) => {
|
|
|
617
609
|
instructions(versionId: string): {
|
|
618
610
|
readonly list: (opts?: ListAgentVersionInstructionsOptions) => Promise<{
|
|
619
611
|
data: components["schemas"]["Instruction"][];
|
|
620
|
-
versionId?: string | null;
|
|
621
612
|
meta?: components["schemas"]["PaginationMeta"];
|
|
622
613
|
}>;
|
|
623
614
|
readonly create: (payload: CreateInstructionRequest) => Promise<{
|