@amigo-ai/platform-sdk 0.79.0 → 0.81.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
@@ -266,8 +266,6 @@ All workspace-scoped resources also expose `withOptions(options)`.
266
266
  **`channels.sesSetup`**
267
267
 
268
268
  - `create`
269
- - `list`
270
- - `listAutoPaging`
271
269
  - `get`
272
270
  - `verify`
273
271
  - `delete`
package/dist/index.cjs CHANGED
@@ -2705,23 +2705,6 @@ var SesSetupResource = class extends WorkspaceScopedResource {
2705
2705
  })
2706
2706
  );
2707
2707
  }
2708
- /**
2709
- * List SES setups owned by this workspace.
2710
- *
2711
- * Each item carries the cached ``dns_verified`` aggregate; call ``get``
2712
- * for per-record DNS detail.
2713
- */
2714
- async list(params) {
2715
- return extractData(
2716
- await this.client.GET("/v1/{workspace_id}/channels/ses-setup", {
2717
- params: { path: { workspace_id: this.workspaceId }, query: params }
2718
- })
2719
- );
2720
- }
2721
- /** Auto-paginating async iterable over every SES setup in the workspace. */
2722
- listAutoPaging(params) {
2723
- return this.iteratePaginatedList((pageParams) => this.list(pageParams), params);
2724
- }
2725
2708
  /**
2726
2709
  * Get an SES setup with a live DNS verification refresh.
2727
2710
  *