Skip to content

Commit 9c6670e

Browse files
chore(api): update composite API spec
1 parent 13dcd52 commit 9c6670e

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 2423
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare/cloudflare-15baed26e7c20bd45ab9e6498b1f7dba768f1a1f3ae885ac6b3fa128c3c85ed2.yml
3-
openapi_spec_hash: 9c8170f1827b5a20424d70d364676024
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare/cloudflare-8492392f72f6eaf7c77014823f9699e39e01b2f6f487d9120f591e50b2cf4808.yml
3+
openapi_spec_hash: d6667ae1228aeb42582db6fb40a9c118
44
config_hash: 87a3db059962c340822a760652737ce0

packages/mcp-server/src/local-docs-search.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15524,13 +15524,13 @@ const EMBEDDED_METHODS: MethodEntry[] = [
1552415524
httpMethod: 'delete',
1552515525
summary: 'Delete a bulk action job',
1552615526
description:
15527-
'Soft-deletes the job, hiding it from all list and detail endpoints. Only jobs in a terminal state (`COMPLETED`, `CANCELLED`, `FAILED`, or `SKIPPED`) can be deleted. To stop an in-progress job without removing it, use the cancel endpoint instead.',
15527+
'Deletes the job, removing it from all list and detail endpoints. Only jobs in a terminal state (`COMPLETED`, `CANCELLED`, `FAILED`, or `SKIPPED`) can be deleted. To stop an in-progress job without removing it, use the cancel endpoint instead.',
1552815528
stainlessPath: '(resource) email_security.investigate.bulk > (method) delete',
1552915529
qualified: 'client.emailSecurity.investigate.bulk.delete',
1553015530
params: ['account_id: string;', 'job_id: string;'],
1553115531
response: '{ id: string; }',
1553215532
markdown:
15533-
"## delete\n\n`client.emailSecurity.investigate.bulk.delete(account_id: string, job_id: string): { id: string; }`\n\n**delete** `/accounts/{account_id}/email-security/investigate/bulk/{job_id}`\n\nSoft-deletes the job, hiding it from all list and detail endpoints. Only jobs in a terminal state (`COMPLETED`, `CANCELLED`, `FAILED`, or `SKIPPED`) can be deleted. To stop an in-progress job without removing it, use the cancel endpoint instead.\n\n### Parameters\n\n- `account_id: string`\n Identifier.\n\n- `job_id: string`\n\n### Returns\n\n- `{ id: string; }`\n\n - `id: string`\n\n### Example\n\n```typescript\nimport Cloudflare from 'cloudflare';\n\nconst client = new Cloudflare();\n\nconst bulk = await client.emailSecurity.investigate.bulk.delete('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', { account_id: '023e105f4ecef8ad9ca31a8372d0c353' });\n\nconsole.log(bulk);\n```",
15533+
"## delete\n\n`client.emailSecurity.investigate.bulk.delete(account_id: string, job_id: string): { id: string; }`\n\n**delete** `/accounts/{account_id}/email-security/investigate/bulk/{job_id}`\n\nDeletes the job, removing it from all list and detail endpoints. Only jobs in a terminal state (`COMPLETED`, `CANCELLED`, `FAILED`, or `SKIPPED`) can be deleted. To stop an in-progress job without removing it, use the cancel endpoint instead.\n\n### Parameters\n\n- `account_id: string`\n Identifier.\n\n- `job_id: string`\n\n### Returns\n\n- `{ id: string; }`\n\n - `id: string`\n\n### Example\n\n```typescript\nimport Cloudflare from 'cloudflare';\n\nconst client = new Cloudflare();\n\nconst bulk = await client.emailSecurity.investigate.bulk.delete('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', { account_id: '023e105f4ecef8ad9ca31a8372d0c353' });\n\nconsole.log(bulk);\n```",
1553415534
perLanguage: {
1553515535
node: {
1553615536
method: 'client.emailSecurity.investigate.bulk.delete',

src/resources/email-security/investigate/bulk/bulk.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ export class BaseBulk extends APIResource {
7676
}
7777

7878
/**
79-
* Soft-deletes the job, hiding it from all list and detail endpoints. Only jobs in
80-
* a terminal state (`COMPLETED`, `CANCELLED`, `FAILED`, or `SKIPPED`) can be
79+
* Deletes the job, removing it from all list and detail endpoints. Only jobs in a
80+
* terminal state (`COMPLETED`, `CANCELLED`, `FAILED`, or `SKIPPED`) can be
8181
* deleted. To stop an in-progress job without removing it, use the cancel endpoint
8282
* instead.
8383
*

0 commit comments

Comments
 (0)