@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 +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
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
|
-
|
|
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
|
-
|
|
247
|
+
secretId: string;
|
|
247
248
|
name: string;
|
|
248
249
|
type: string;
|
|
249
250
|
}>;
|