@amigo-ai/platform-sdk 0.51.0 → 0.52.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/api.md CHANGED
@@ -349,8 +349,6 @@ All workspace-scoped resources also expose `withOptions(options)`.
349
349
  - `outreach.update`
350
350
  - `memory.get`
351
351
  - `memory.update`
352
- - `security.get`
353
- - `security.update`
354
352
  - `retention.get`
355
353
  - `retention.update`
356
354
  - `behaviors.get`
package/dist/index.cjs CHANGED
@@ -3220,19 +3220,6 @@ var SettingsResource = class extends WorkspaceScopedResource {
3220
3220
  })
3221
3221
  )
3222
3222
  };
3223
- security = {
3224
- get: async () => extractData(
3225
- await this.client.GET("/v1/{workspace_id}/settings/security", {
3226
- params: { path: { workspace_id: this.workspaceId } }
3227
- })
3228
- ),
3229
- update: async (body) => extractData(
3230
- await this.client.PUT("/v1/{workspace_id}/settings/security", {
3231
- params: { path: { workspace_id: this.workspaceId } },
3232
- body
3233
- })
3234
- )
3235
- };
3236
3223
  retention = {
3237
3224
  get: async () => extractData(
3238
3225
  await this.client.GET("/v1/{workspace_id}/settings/retention", {