@llmsafespaces/sdk 0.15.6 → 0.15.8

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/dist/index.d.cts CHANGED
@@ -143,6 +143,7 @@ interface SecretResponse {
143
143
  name: string;
144
144
  type: string;
145
145
  metadata?: unknown;
146
+ globalDefault: boolean;
146
147
  createdAt: string;
147
148
  updatedAt: string;
148
149
  }
@@ -243,7 +244,7 @@ declare class WorkspacesAPI {
243
244
  setBindings(id: string, secretIds: string[]): Promise<void>;
244
245
  getBindings(id: string): Promise<{
245
246
  bindings: Array<{
246
- id: string;
247
+ secretId: string;
247
248
  name: string;
248
249
  type: string;
249
250
  }>;
package/dist/index.d.ts CHANGED
@@ -143,6 +143,7 @@ interface SecretResponse {
143
143
  name: string;
144
144
  type: string;
145
145
  metadata?: unknown;
146
+ globalDefault: boolean;
146
147
  createdAt: string;
147
148
  updatedAt: string;
148
149
  }
@@ -243,7 +244,7 @@ declare class WorkspacesAPI {
243
244
  setBindings(id: string, secretIds: string[]): Promise<void>;
244
245
  getBindings(id: string): Promise<{
245
246
  bindings: Array<{
246
- id: string;
247
+ secretId: string;
247
248
  name: string;
248
249
  type: string;
249
250
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@llmsafespaces/sdk",
3
- "version": "0.15.6",
3
+ "version": "0.15.8",
4
4
  "description": "TypeScript SDK for LLMSafeSpaces API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",