@reminix/sdk 0.11.0 → 0.13.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.
Files changed (122) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/client.d.mts +10 -4
  3. package/client.d.mts.map +1 -1
  4. package/client.d.ts +10 -4
  5. package/client.d.ts.map +1 -1
  6. package/client.js +6 -0
  7. package/client.js.map +1 -1
  8. package/client.mjs +6 -0
  9. package/client.mjs.map +1 -1
  10. package/package.json +1 -1
  11. package/resources/agents.d.mts +112 -27
  12. package/resources/agents.d.mts.map +1 -1
  13. package/resources/agents.d.ts +112 -27
  14. package/resources/agents.d.ts.map +1 -1
  15. package/resources/agents.js +2 -2
  16. package/resources/agents.js.map +1 -1
  17. package/resources/agents.mjs +2 -2
  18. package/resources/agents.mjs.map +1 -1
  19. package/resources/execution-logs.d.mts +3 -3
  20. package/resources/execution-logs.d.mts.map +1 -1
  21. package/resources/execution-logs.d.ts +3 -3
  22. package/resources/execution-logs.d.ts.map +1 -1
  23. package/resources/execution-logs.js +1 -1
  24. package/resources/execution-logs.mjs +1 -1
  25. package/resources/index.d.mts +4 -2
  26. package/resources/index.d.mts.map +1 -1
  27. package/resources/index.d.ts +4 -2
  28. package/resources/index.d.ts.map +1 -1
  29. package/resources/index.js +5 -1
  30. package/resources/index.js.map +1 -1
  31. package/resources/index.mjs +2 -0
  32. package/resources/index.mjs.map +1 -1
  33. package/resources/knowledge/collections/collections.d.mts +89 -0
  34. package/resources/knowledge/collections/collections.d.mts.map +1 -0
  35. package/resources/knowledge/collections/collections.d.ts +89 -0
  36. package/resources/knowledge/collections/collections.d.ts.map +1 -0
  37. package/resources/knowledge/collections/collections.js +56 -0
  38. package/resources/knowledge/collections/collections.js.map +1 -0
  39. package/resources/knowledge/collections/collections.mjs +51 -0
  40. package/resources/knowledge/collections/collections.mjs.map +1 -0
  41. package/resources/knowledge/collections/documents.d.mts +121 -0
  42. package/resources/knowledge/collections/documents.d.mts.map +1 -0
  43. package/resources/knowledge/collections/documents.d.ts +121 -0
  44. package/resources/knowledge/collections/documents.d.ts.map +1 -0
  45. package/resources/knowledge/collections/documents.js +62 -0
  46. package/resources/knowledge/collections/documents.js.map +1 -0
  47. package/resources/knowledge/collections/documents.mjs +58 -0
  48. package/resources/knowledge/collections/documents.mjs.map +1 -0
  49. package/resources/knowledge/collections/index.d.mts +3 -0
  50. package/resources/knowledge/collections/index.d.mts.map +1 -0
  51. package/resources/knowledge/collections/index.d.ts +3 -0
  52. package/resources/knowledge/collections/index.d.ts.map +1 -0
  53. package/resources/knowledge/collections/index.js +9 -0
  54. package/resources/knowledge/collections/index.js.map +1 -0
  55. package/resources/knowledge/collections/index.mjs +4 -0
  56. package/resources/knowledge/collections/index.mjs.map +1 -0
  57. package/resources/knowledge/collections.d.mts +2 -0
  58. package/resources/knowledge/collections.d.mts.map +1 -0
  59. package/resources/knowledge/collections.d.ts +2 -0
  60. package/resources/knowledge/collections.d.ts.map +1 -0
  61. package/resources/knowledge/collections.js +6 -0
  62. package/resources/knowledge/collections.js.map +1 -0
  63. package/resources/knowledge/collections.mjs +3 -0
  64. package/resources/knowledge/collections.mjs.map +1 -0
  65. package/resources/knowledge/index.d.mts +3 -0
  66. package/resources/knowledge/index.d.mts.map +1 -0
  67. package/resources/knowledge/index.d.ts +3 -0
  68. package/resources/knowledge/index.d.ts.map +1 -0
  69. package/resources/knowledge/index.js +9 -0
  70. package/resources/knowledge/index.js.map +1 -0
  71. package/resources/knowledge/index.mjs +4 -0
  72. package/resources/knowledge/index.mjs.map +1 -0
  73. package/resources/knowledge/knowledge.d.mts +65 -0
  74. package/resources/knowledge/knowledge.d.mts.map +1 -0
  75. package/resources/knowledge/knowledge.d.ts +65 -0
  76. package/resources/knowledge/knowledge.d.ts.map +1 -0
  77. package/resources/knowledge/knowledge.js +26 -0
  78. package/resources/knowledge/knowledge.js.map +1 -0
  79. package/resources/knowledge/knowledge.mjs +21 -0
  80. package/resources/knowledge/knowledge.mjs.map +1 -0
  81. package/resources/knowledge.d.mts +2 -0
  82. package/resources/knowledge.d.mts.map +1 -0
  83. package/resources/knowledge.d.ts +2 -0
  84. package/resources/knowledge.d.ts.map +1 -0
  85. package/resources/knowledge.js +6 -0
  86. package/resources/knowledge.js.map +1 -0
  87. package/resources/knowledge.mjs +3 -0
  88. package/resources/knowledge.mjs.map +1 -0
  89. package/resources/memory.d.mts +148 -0
  90. package/resources/memory.d.mts.map +1 -0
  91. package/resources/memory.d.ts +148 -0
  92. package/resources/memory.d.ts.map +1 -0
  93. package/resources/memory.js +82 -0
  94. package/resources/memory.js.map +1 -0
  95. package/resources/memory.mjs +78 -0
  96. package/resources/memory.mjs.map +1 -0
  97. package/resources/tools.d.mts +69 -11
  98. package/resources/tools.d.mts.map +1 -1
  99. package/resources/tools.d.ts +69 -11
  100. package/resources/tools.d.ts.map +1 -1
  101. package/resources/tools.js +7 -7
  102. package/resources/tools.js.map +1 -1
  103. package/resources/tools.mjs +7 -7
  104. package/resources/tools.mjs.map +1 -1
  105. package/src/client.ts +42 -12
  106. package/src/resources/agents.ts +142 -40
  107. package/src/resources/execution-logs.ts +3 -3
  108. package/src/resources/index.ts +16 -6
  109. package/src/resources/knowledge/collections/collections.ts +167 -0
  110. package/src/resources/knowledge/collections/documents.ts +200 -0
  111. package/src/resources/knowledge/collections/index.ts +22 -0
  112. package/src/resources/knowledge/collections.ts +3 -0
  113. package/src/resources/knowledge/index.ts +11 -0
  114. package/src/resources/knowledge/knowledge.ts +101 -0
  115. package/src/resources/knowledge.ts +3 -0
  116. package/src/resources/memory.ts +188 -0
  117. package/src/resources/tools.ts +81 -13
  118. package/src/version.ts +1 -1
  119. package/version.d.mts +1 -1
  120. package/version.d.ts +1 -1
  121. package/version.js +1 -1
  122. package/version.mjs +1 -1
@@ -0,0 +1,148 @@
1
+ import { APIResource } from "../core/resource.mjs";
2
+ import { APIPromise } from "../core/api-promise.mjs";
3
+ import { RequestOptions } from "../internal/request-options.mjs";
4
+ export declare class MemoryResource extends APIResource {
5
+ /**
6
+ * Get a memory value by key for a specific identity.
7
+ *
8
+ * Identity is specified via query parameters with the `identity.` prefix.
9
+ *
10
+ * @example
11
+ * ```ts
12
+ * const memory = await client.memory.retrieve('x');
13
+ * ```
14
+ */
15
+ retrieve(key: string, options?: RequestOptions): APIPromise<Memory>;
16
+ /**
17
+ * List all memory keys for a specific identity.
18
+ *
19
+ * Identity is specified via query parameters with the `identity.` prefix. For
20
+ * example: `?identity.user_id=user_123&identity.tenant_id=acme`
21
+ *
22
+ * Returns memory keys and metadata (not full values for efficiency).
23
+ *
24
+ * @example
25
+ * ```ts
26
+ * const memories = await client.memory.list();
27
+ * ```
28
+ */
29
+ list(options?: RequestOptions): APIPromise<MemoryListResponse>;
30
+ /**
31
+ * Delete a memory by key for a specific identity.
32
+ *
33
+ * @example
34
+ * ```ts
35
+ * await client.memory.delete('x');
36
+ * ```
37
+ */
38
+ delete(key: string, options?: RequestOptions): APIPromise<void>;
39
+ /**
40
+ * Delete all memories for a specific identity.
41
+ *
42
+ * @example
43
+ * ```ts
44
+ * const response = await client.memory.deleteAll();
45
+ * ```
46
+ */
47
+ deleteAll(options?: RequestOptions): APIPromise<MemoryDeleteAllResponse>;
48
+ /**
49
+ * Store a key-value memory for a specific identity.
50
+ *
51
+ * If a memory with the same key already exists, it will be updated.
52
+ *
53
+ * @example
54
+ * ```ts
55
+ * const memory = await client.memory.store({
56
+ * identity: { user_id: 'user_123' },
57
+ * key: 'preferred_language',
58
+ * value: 'en',
59
+ * });
60
+ * ```
61
+ */
62
+ store(body: MemoryStoreParams, options?: RequestOptions): APIPromise<Memory>;
63
+ }
64
+ export interface Memory {
65
+ /**
66
+ * Unique memory ID
67
+ */
68
+ id: string;
69
+ /**
70
+ * When the memory was created
71
+ */
72
+ createdAt: string;
73
+ /**
74
+ * When the memory expires
75
+ */
76
+ expiresAt: string | null;
77
+ /**
78
+ * Identity fields for memory scoping (e.g., user_id, tenant_id)
79
+ */
80
+ identity: {
81
+ [key: string]: unknown;
82
+ };
83
+ /**
84
+ * Memory key
85
+ */
86
+ key: string;
87
+ /**
88
+ * Project ID
89
+ */
90
+ projectId: string;
91
+ /**
92
+ * When the memory was last updated
93
+ */
94
+ updatedAt: string;
95
+ /**
96
+ * Memory value
97
+ */
98
+ value?: unknown;
99
+ }
100
+ export interface MemoryListResponse {
101
+ data: Array<MemoryListResponse.Data>;
102
+ }
103
+ export declare namespace MemoryListResponse {
104
+ interface Data {
105
+ /**
106
+ * When the memory expires (if set)
107
+ */
108
+ expiresAt: string | null;
109
+ /**
110
+ * Memory key
111
+ */
112
+ key: string;
113
+ /**
114
+ * When the memory was last updated
115
+ */
116
+ updatedAt: string;
117
+ }
118
+ }
119
+ export interface MemoryDeleteAllResponse {
120
+ /**
121
+ * Number of memories deleted
122
+ */
123
+ deleted: number;
124
+ }
125
+ export interface MemoryStoreParams {
126
+ /**
127
+ * Identity fields for memory scoping (e.g., user_id, tenant_id)
128
+ */
129
+ identity: {
130
+ [key: string]: unknown;
131
+ };
132
+ /**
133
+ * Memory key
134
+ */
135
+ key: string;
136
+ /**
137
+ * Optional expiration time (ISO 8601)
138
+ */
139
+ expiresAt?: string;
140
+ /**
141
+ * Value to store
142
+ */
143
+ value?: unknown;
144
+ }
145
+ export declare namespace MemoryResource {
146
+ export { type Memory as Memory, type MemoryListResponse as MemoryListResponse, type MemoryDeleteAllResponse as MemoryDeleteAllResponse, type MemoryStoreParams as MemoryStoreParams, };
147
+ }
148
+ //# sourceMappingURL=memory.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"memory.d.mts","sourceRoot":"","sources":["../src/resources/memory.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,EAAE,UAAU,EAAE;OAEd,EAAE,cAAc,EAAE;AAGzB,qBAAa,cAAe,SAAQ,WAAW;IAC7C;;;;;;;;;OASG;IACH,QAAQ,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,MAAM,CAAC;IAInE;;;;;;;;;;;;OAYG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,kBAAkB,CAAC;IAI9D;;;;;;;OAOG;IACH,MAAM,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;IAO/D;;;;;;;OAOG;IACH,SAAS,CAAC,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,uBAAuB,CAAC;IAIxE;;;;;;;;;;;;;OAaG;IACH,KAAK,CAAC,IAAI,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,MAAM,CAAC;CAG7E;AAED,MAAM,WAAW,MAAM;IACrB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IAEzB;;OAEG;IACH,QAAQ,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IAErC;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IAEZ;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB;AAED,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,KAAK,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC;CACtC;AAED,yBAAiB,kBAAkB,CAAC;IAClC,UAAiB,IAAI;QACnB;;WAEG;QACH,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;QAEzB;;WAEG;QACH,GAAG,EAAE,MAAM,CAAC;QAEZ;;WAEG;QACH,SAAS,EAAE,MAAM,CAAC;KACnB;CACF;AAED,MAAM,WAAW,uBAAuB;IACtC;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,QAAQ,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IAErC;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IAEZ;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB;AAED,MAAM,CAAC,OAAO,WAAW,cAAc,CAAC;IACtC,OAAO,EACL,KAAK,MAAM,IAAI,MAAM,EACrB,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,iBAAiB,IAAI,iBAAiB,GAC5C,CAAC;CACH"}
@@ -0,0 +1,148 @@
1
+ import { APIResource } from "../core/resource.js";
2
+ import { APIPromise } from "../core/api-promise.js";
3
+ import { RequestOptions } from "../internal/request-options.js";
4
+ export declare class MemoryResource extends APIResource {
5
+ /**
6
+ * Get a memory value by key for a specific identity.
7
+ *
8
+ * Identity is specified via query parameters with the `identity.` prefix.
9
+ *
10
+ * @example
11
+ * ```ts
12
+ * const memory = await client.memory.retrieve('x');
13
+ * ```
14
+ */
15
+ retrieve(key: string, options?: RequestOptions): APIPromise<Memory>;
16
+ /**
17
+ * List all memory keys for a specific identity.
18
+ *
19
+ * Identity is specified via query parameters with the `identity.` prefix. For
20
+ * example: `?identity.user_id=user_123&identity.tenant_id=acme`
21
+ *
22
+ * Returns memory keys and metadata (not full values for efficiency).
23
+ *
24
+ * @example
25
+ * ```ts
26
+ * const memories = await client.memory.list();
27
+ * ```
28
+ */
29
+ list(options?: RequestOptions): APIPromise<MemoryListResponse>;
30
+ /**
31
+ * Delete a memory by key for a specific identity.
32
+ *
33
+ * @example
34
+ * ```ts
35
+ * await client.memory.delete('x');
36
+ * ```
37
+ */
38
+ delete(key: string, options?: RequestOptions): APIPromise<void>;
39
+ /**
40
+ * Delete all memories for a specific identity.
41
+ *
42
+ * @example
43
+ * ```ts
44
+ * const response = await client.memory.deleteAll();
45
+ * ```
46
+ */
47
+ deleteAll(options?: RequestOptions): APIPromise<MemoryDeleteAllResponse>;
48
+ /**
49
+ * Store a key-value memory for a specific identity.
50
+ *
51
+ * If a memory with the same key already exists, it will be updated.
52
+ *
53
+ * @example
54
+ * ```ts
55
+ * const memory = await client.memory.store({
56
+ * identity: { user_id: 'user_123' },
57
+ * key: 'preferred_language',
58
+ * value: 'en',
59
+ * });
60
+ * ```
61
+ */
62
+ store(body: MemoryStoreParams, options?: RequestOptions): APIPromise<Memory>;
63
+ }
64
+ export interface Memory {
65
+ /**
66
+ * Unique memory ID
67
+ */
68
+ id: string;
69
+ /**
70
+ * When the memory was created
71
+ */
72
+ createdAt: string;
73
+ /**
74
+ * When the memory expires
75
+ */
76
+ expiresAt: string | null;
77
+ /**
78
+ * Identity fields for memory scoping (e.g., user_id, tenant_id)
79
+ */
80
+ identity: {
81
+ [key: string]: unknown;
82
+ };
83
+ /**
84
+ * Memory key
85
+ */
86
+ key: string;
87
+ /**
88
+ * Project ID
89
+ */
90
+ projectId: string;
91
+ /**
92
+ * When the memory was last updated
93
+ */
94
+ updatedAt: string;
95
+ /**
96
+ * Memory value
97
+ */
98
+ value?: unknown;
99
+ }
100
+ export interface MemoryListResponse {
101
+ data: Array<MemoryListResponse.Data>;
102
+ }
103
+ export declare namespace MemoryListResponse {
104
+ interface Data {
105
+ /**
106
+ * When the memory expires (if set)
107
+ */
108
+ expiresAt: string | null;
109
+ /**
110
+ * Memory key
111
+ */
112
+ key: string;
113
+ /**
114
+ * When the memory was last updated
115
+ */
116
+ updatedAt: string;
117
+ }
118
+ }
119
+ export interface MemoryDeleteAllResponse {
120
+ /**
121
+ * Number of memories deleted
122
+ */
123
+ deleted: number;
124
+ }
125
+ export interface MemoryStoreParams {
126
+ /**
127
+ * Identity fields for memory scoping (e.g., user_id, tenant_id)
128
+ */
129
+ identity: {
130
+ [key: string]: unknown;
131
+ };
132
+ /**
133
+ * Memory key
134
+ */
135
+ key: string;
136
+ /**
137
+ * Optional expiration time (ISO 8601)
138
+ */
139
+ expiresAt?: string;
140
+ /**
141
+ * Value to store
142
+ */
143
+ value?: unknown;
144
+ }
145
+ export declare namespace MemoryResource {
146
+ export { type Memory as Memory, type MemoryListResponse as MemoryListResponse, type MemoryDeleteAllResponse as MemoryDeleteAllResponse, type MemoryStoreParams as MemoryStoreParams, };
147
+ }
148
+ //# sourceMappingURL=memory.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"memory.d.ts","sourceRoot":"","sources":["../src/resources/memory.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,EAAE,UAAU,EAAE;OAEd,EAAE,cAAc,EAAE;AAGzB,qBAAa,cAAe,SAAQ,WAAW;IAC7C;;;;;;;;;OASG;IACH,QAAQ,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,MAAM,CAAC;IAInE;;;;;;;;;;;;OAYG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,kBAAkB,CAAC;IAI9D;;;;;;;OAOG;IACH,MAAM,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;IAO/D;;;;;;;OAOG;IACH,SAAS,CAAC,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,uBAAuB,CAAC;IAIxE;;;;;;;;;;;;;OAaG;IACH,KAAK,CAAC,IAAI,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,MAAM,CAAC;CAG7E;AAED,MAAM,WAAW,MAAM;IACrB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IAEzB;;OAEG;IACH,QAAQ,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IAErC;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IAEZ;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB;AAED,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,KAAK,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC;CACtC;AAED,yBAAiB,kBAAkB,CAAC;IAClC,UAAiB,IAAI;QACnB;;WAEG;QACH,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;QAEzB;;WAEG;QACH,GAAG,EAAE,MAAM,CAAC;QAEZ;;WAEG;QACH,SAAS,EAAE,MAAM,CAAC;KACnB;CACF;AAED,MAAM,WAAW,uBAAuB;IACtC;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,QAAQ,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IAErC;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IAEZ;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB;AAED,MAAM,CAAC,OAAO,WAAW,cAAc,CAAC;IACtC,OAAO,EACL,KAAK,MAAM,IAAI,MAAM,EACrB,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,iBAAiB,IAAI,iBAAiB,GAC5C,CAAC;CACH"}
@@ -0,0 +1,82 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.MemoryResource = void 0;
5
+ const resource_1 = require("../core/resource.js");
6
+ const headers_1 = require("../internal/headers.js");
7
+ const path_1 = require("../internal/utils/path.js");
8
+ class MemoryResource extends resource_1.APIResource {
9
+ /**
10
+ * Get a memory value by key for a specific identity.
11
+ *
12
+ * Identity is specified via query parameters with the `identity.` prefix.
13
+ *
14
+ * @example
15
+ * ```ts
16
+ * const memory = await client.memory.retrieve('x');
17
+ * ```
18
+ */
19
+ retrieve(key, options) {
20
+ return this._client.get((0, path_1.path) `/memory/${key}`, options);
21
+ }
22
+ /**
23
+ * List all memory keys for a specific identity.
24
+ *
25
+ * Identity is specified via query parameters with the `identity.` prefix. For
26
+ * example: `?identity.user_id=user_123&identity.tenant_id=acme`
27
+ *
28
+ * Returns memory keys and metadata (not full values for efficiency).
29
+ *
30
+ * @example
31
+ * ```ts
32
+ * const memories = await client.memory.list();
33
+ * ```
34
+ */
35
+ list(options) {
36
+ return this._client.get('/memory', options);
37
+ }
38
+ /**
39
+ * Delete a memory by key for a specific identity.
40
+ *
41
+ * @example
42
+ * ```ts
43
+ * await client.memory.delete('x');
44
+ * ```
45
+ */
46
+ delete(key, options) {
47
+ return this._client.delete((0, path_1.path) `/memory/${key}`, {
48
+ ...options,
49
+ headers: (0, headers_1.buildHeaders)([{ Accept: '*/*' }, options?.headers]),
50
+ });
51
+ }
52
+ /**
53
+ * Delete all memories for a specific identity.
54
+ *
55
+ * @example
56
+ * ```ts
57
+ * const response = await client.memory.deleteAll();
58
+ * ```
59
+ */
60
+ deleteAll(options) {
61
+ return this._client.delete('/memory', options);
62
+ }
63
+ /**
64
+ * Store a key-value memory for a specific identity.
65
+ *
66
+ * If a memory with the same key already exists, it will be updated.
67
+ *
68
+ * @example
69
+ * ```ts
70
+ * const memory = await client.memory.store({
71
+ * identity: { user_id: 'user_123' },
72
+ * key: 'preferred_language',
73
+ * value: 'en',
74
+ * });
75
+ * ```
76
+ */
77
+ store(body, options) {
78
+ return this._client.post('/memory', { body, ...options });
79
+ }
80
+ }
81
+ exports.MemoryResource = MemoryResource;
82
+ //# sourceMappingURL=memory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"memory.js","sourceRoot":"","sources":["../src/resources/memory.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,kDAA+C;AAE/C,oDAAmD;AAEnD,oDAA8C;AAE9C,MAAa,cAAe,SAAQ,sBAAW;IAC7C;;;;;;;;;OASG;IACH,QAAQ,CAAC,GAAW,EAAE,OAAwB;QAC5C,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,WAAW,GAAG,EAAE,EAAE,OAAO,CAAC,CAAC;IACzD,CAAC;IAED;;;;;;;;;;;;OAYG;IACH,IAAI,CAAC,OAAwB;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;IAC9C,CAAC;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,GAAW,EAAE,OAAwB;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAA,WAAI,EAAA,WAAW,GAAG,EAAE,EAAE;YAC/C,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;OAOG;IACH,SAAS,CAAC,OAAwB;QAChC,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;IACjD,CAAC;IAED;;;;;;;;;;;;;OAaG;IACH,KAAK,CAAC,IAAuB,EAAE,OAAwB;QACrD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC5D,CAAC;CACF;AA5ED,wCA4EC"}
@@ -0,0 +1,78 @@
1
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+ import { APIResource } from "../core/resource.mjs";
3
+ import { buildHeaders } from "../internal/headers.mjs";
4
+ import { path } from "../internal/utils/path.mjs";
5
+ export class MemoryResource extends APIResource {
6
+ /**
7
+ * Get a memory value by key for a specific identity.
8
+ *
9
+ * Identity is specified via query parameters with the `identity.` prefix.
10
+ *
11
+ * @example
12
+ * ```ts
13
+ * const memory = await client.memory.retrieve('x');
14
+ * ```
15
+ */
16
+ retrieve(key, options) {
17
+ return this._client.get(path `/memory/${key}`, options);
18
+ }
19
+ /**
20
+ * List all memory keys for a specific identity.
21
+ *
22
+ * Identity is specified via query parameters with the `identity.` prefix. For
23
+ * example: `?identity.user_id=user_123&identity.tenant_id=acme`
24
+ *
25
+ * Returns memory keys and metadata (not full values for efficiency).
26
+ *
27
+ * @example
28
+ * ```ts
29
+ * const memories = await client.memory.list();
30
+ * ```
31
+ */
32
+ list(options) {
33
+ return this._client.get('/memory', options);
34
+ }
35
+ /**
36
+ * Delete a memory by key for a specific identity.
37
+ *
38
+ * @example
39
+ * ```ts
40
+ * await client.memory.delete('x');
41
+ * ```
42
+ */
43
+ delete(key, options) {
44
+ return this._client.delete(path `/memory/${key}`, {
45
+ ...options,
46
+ headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
47
+ });
48
+ }
49
+ /**
50
+ * Delete all memories for a specific identity.
51
+ *
52
+ * @example
53
+ * ```ts
54
+ * const response = await client.memory.deleteAll();
55
+ * ```
56
+ */
57
+ deleteAll(options) {
58
+ return this._client.delete('/memory', options);
59
+ }
60
+ /**
61
+ * Store a key-value memory for a specific identity.
62
+ *
63
+ * If a memory with the same key already exists, it will be updated.
64
+ *
65
+ * @example
66
+ * ```ts
67
+ * const memory = await client.memory.store({
68
+ * identity: { user_id: 'user_123' },
69
+ * key: 'preferred_language',
70
+ * value: 'en',
71
+ * });
72
+ * ```
73
+ */
74
+ store(body, options) {
75
+ return this._client.post('/memory', { body, ...options });
76
+ }
77
+ }
78
+ //# sourceMappingURL=memory.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"memory.mjs","sourceRoot":"","sources":["../src/resources/memory.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OAEf,EAAE,YAAY,EAAE;OAEhB,EAAE,IAAI,EAAE;AAEf,MAAM,OAAO,cAAe,SAAQ,WAAW;IAC7C;;;;;;;;;OASG;IACH,QAAQ,CAAC,GAAW,EAAE,OAAwB;QAC5C,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,WAAW,GAAG,EAAE,EAAE,OAAO,CAAC,CAAC;IACzD,CAAC;IAED;;;;;;;;;;;;OAYG;IACH,IAAI,CAAC,OAAwB;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;IAC9C,CAAC;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,GAAW,EAAE,OAAwB;QAC1C,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAA,WAAW,GAAG,EAAE,EAAE;YAC/C,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;OAOG;IACH,SAAS,CAAC,OAAwB;QAChC,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;IACjD,CAAC;IAED;;;;;;;;;;;;;OAaG;IACH,KAAK,CAAC,IAAuB,EAAE,OAAwB;QACrD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC5D,CAAC;CACF"}
@@ -26,25 +26,25 @@ export declare class Tools extends APIResource {
26
26
  */
27
27
  list(query?: ToolListParams | null | undefined, options?: RequestOptions): PagePromise<ToolsCursor, Tool>;
28
28
  /**
29
- * Execute a tool with the provided input parameters.
29
+ * Call a tool with the provided input parameters.
30
30
  *
31
- * **Timeout:** Tool executions have a 60-second timeout. If the tool takes longer
32
- * to respond, you will receive a 504 Gateway Timeout error.
31
+ * **Timeout:** Tool calls have a 60-second timeout. If the tool takes longer to
32
+ * respond, you will receive a 504 Gateway Timeout error.
33
33
  *
34
34
  * **Use cases:**
35
35
  *
36
36
  * - Calling custom tools from your deployment
37
- * - Executing utility functions
37
+ * - Invoking utility functions
38
38
  * - Integrating with external services via tools
39
39
  *
40
40
  * @example
41
41
  * ```ts
42
- * const response = await client.tools.execute('x', {
42
+ * const response = await client.tools.call('x', {
43
43
  * input: { name: 'World', greeting: 'Hello' },
44
44
  * });
45
45
  * ```
46
46
  */
47
- execute(name: string, body: ToolExecuteParams, options?: RequestOptions): APIPromise<ToolExecuteResponse>;
47
+ call(name: string, body: ToolCallParams, options?: RequestOptions): APIPromise<ToolCallResponse>;
48
48
  }
49
49
  export type ToolsCursor = Cursor<Tool>;
50
50
  export interface Tool {
@@ -103,26 +103,84 @@ export declare namespace Tool {
103
103
  * JSON Schema for agent input parameters
104
104
  */
105
105
  interface Output {
106
- type: string;
106
+ /**
107
+ * Default value for the property
108
+ */
109
+ default?: unknown;
110
+ /**
111
+ * Description of the schema
112
+ */
113
+ description?: string;
114
+ /**
115
+ * Enumeration of allowed values
116
+ */
117
+ enum?: Array<unknown>;
118
+ /**
119
+ * Schema for array items
120
+ */
121
+ items?: unknown;
122
+ /**
123
+ * Property definitions for object types
124
+ */
107
125
  properties?: {
108
126
  [key: string]: unknown;
109
127
  };
128
+ /**
129
+ * List of required property names
130
+ */
110
131
  required?: Array<string>;
132
+ /**
133
+ * Human-readable title
134
+ */
135
+ title?: string;
136
+ /**
137
+ * JSON Schema type (e.g., "object", "string", "array")
138
+ */
139
+ type?: string;
111
140
  [k: string]: unknown;
112
141
  }
113
142
  /**
114
143
  * JSON Schema for agent input parameters
115
144
  */
116
145
  interface Parameters {
117
- type: string;
146
+ /**
147
+ * Default value for the property
148
+ */
149
+ default?: unknown;
150
+ /**
151
+ * Description of the schema
152
+ */
153
+ description?: string;
154
+ /**
155
+ * Enumeration of allowed values
156
+ */
157
+ enum?: Array<unknown>;
158
+ /**
159
+ * Schema for array items
160
+ */
161
+ items?: unknown;
162
+ /**
163
+ * Property definitions for object types
164
+ */
118
165
  properties?: {
119
166
  [key: string]: unknown;
120
167
  };
168
+ /**
169
+ * List of required property names
170
+ */
121
171
  required?: Array<string>;
172
+ /**
173
+ * Human-readable title
174
+ */
175
+ title?: string;
176
+ /**
177
+ * JSON Schema type (e.g., "object", "string", "array")
178
+ */
179
+ type?: string;
122
180
  [k: string]: unknown;
123
181
  }
124
182
  }
125
- export interface ToolExecuteResponse {
183
+ export interface ToolCallResponse {
126
184
  /**
127
185
  * Output from the tool execution.
128
186
  */
@@ -138,7 +196,7 @@ export interface ToolListParams extends CursorParams {
138
196
  */
139
197
  type?: string;
140
198
  }
141
- export interface ToolExecuteParams {
199
+ export interface ToolCallParams {
142
200
  /**
143
201
  * Input parameters for the tool. Structure depends on tool definition.
144
202
  */
@@ -147,6 +205,6 @@ export interface ToolExecuteParams {
147
205
  };
148
206
  }
149
207
  export declare namespace Tools {
150
- export { type Tool as Tool, type ToolExecuteResponse as ToolExecuteResponse, type ToolsCursor as ToolsCursor, type ToolListParams as ToolListParams, type ToolExecuteParams as ToolExecuteParams, };
208
+ export { type Tool as Tool, type ToolCallResponse as ToolCallResponse, type ToolsCursor as ToolsCursor, type ToolListParams as ToolListParams, type ToolCallParams as ToolCallParams, };
151
209
  }
152
210
  //# sourceMappingURL=tools.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"tools.d.mts","sourceRoot":"","sources":["../src/resources/tools.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,EAAE,UAAU,EAAE;OACd,EAAE,MAAM,EAAE,KAAK,YAAY,EAAE,WAAW,EAAE;OAC1C,EAAE,cAAc,EAAE;AAGzB,qBAAa,KAAM,SAAQ,WAAW;IACpC;;;;;;;OAOG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;IAIlE;;;;;;;;;;;OAWG;IACH,IAAI,CACF,KAAK,GAAE,cAAc,GAAG,IAAI,GAAG,SAAc,EAC7C,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,WAAW,EAAE,IAAI,CAAC;IAIjC;;;;;;;;;;;;;;;;;;OAkBG;IACH,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,mBAAmB,CAAC;CAG1G;AAED,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC;AAEvC,MAAM,WAAW,IAAI;IACnB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IAEzB;;OAEG;IACH,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3B;;OAEG;IACH,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAE5B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,MAAM,EAAE,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;IAE3B;;OAEG;IACH,UAAU,EAAE,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;IAEnC;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,MAAM,EAAE,QAAQ,GAAG,UAAU,CAAC;IAE9B;;;OAGG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,yBAAiB,IAAI,CAAC;IACpB;;OAEG;IACH,UAAiB,MAAM;QACrB,IAAI,EAAE,MAAM,CAAC;QAEb,UAAU,CAAC,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;SAAE,CAAC;QAExC,QAAQ,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;QAEzB,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;KACtB;IAED;;OAEG;IACH,UAAiB,UAAU;QACzB,IAAI,EAAE,MAAM,CAAC;QAEb,UAAU,CAAC,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;SAAE,CAAC;QAExC,QAAQ,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;QAEzB,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;KACtB;CACF;AAED,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,MAAM,WAAW,cAAe,SAAQ,YAAY;IAClD;;OAEG;IACH,MAAM,CAAC,EAAE,QAAQ,GAAG,UAAU,CAAC;IAE/B;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,KAAK,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;CACnC;AAED,MAAM,CAAC,OAAO,WAAW,KAAK,CAAC;IAC7B,OAAO,EACL,KAAK,IAAI,IAAI,IAAI,EACjB,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,WAAW,IAAI,WAAW,EAC/B,KAAK,cAAc,IAAI,cAAc,EACrC,KAAK,iBAAiB,IAAI,iBAAiB,GAC5C,CAAC;CACH"}
1
+ {"version":3,"file":"tools.d.mts","sourceRoot":"","sources":["../src/resources/tools.ts"],"names":[],"mappings":"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"}