Skip to content

Commit 9ba54c1

Browse files
authored
Merge pull request #498 from cloudflare/release-please--branches--main--changes--next--components--cloudflare
release: 3.3.0
2 parents 5aef60e + 7e982b0 commit 9ba54c1

File tree

748 files changed

+38686
-5509
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

748 files changed

+38686
-5509
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,10 @@ jobs:
2222
node-version: '18'
2323

2424
- name: Install dependencies
25-
run: |
26-
yarn install
25+
run: yarn install
2726

2827
- name: Check types
29-
run: |
30-
yarn build
28+
run: ./scripts/lint
3129
test:
3230
name: test
3331
runs-on: ubuntu-latest

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "3.2.0"
2+
".": "3.3.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
configured_endpoints: 1274
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-07ec76fab00de3d6227209faf0af1ed586cde9e2f243c13d3db555da20f13d99.yml
1+
configured_endpoints: 1348
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-49d54760f87326f9200c777f867e4ea579c92a43f481207ae252db9748c9b07b.yml

CHANGELOG.md

Lines changed: 307 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Cloudflare Typescript API Library
22

3-
[![NPM version](https://img.shields.io/npm/v/cloudflare.svg)](https://npmjs.org/package/cloudflare)
3+
[![NPM version](https://img.shields.io/npm/v/cloudflare.svg)](https://npmjs.org/package/cloudflare) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/cloudflare)
44

55
This library provides convenient access to the Cloudflare REST API from server-side TypeScript or JavaScript.
66

SECURITY.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Security Policy
2+
3+
## Reporting Security Issues
4+
5+
This SDK is generated by [Stainless Software Inc](http://stainlessapi.com). Stainless takes security seriously, and encourages you to report any security vulnerability promptly so that appropriate action can be taken.
6+
7+
To report a security issue, please contact the Stainless team at [email protected].
8+
9+
## Responsible Disclosure
10+
11+
We appreciate the efforts of security researchers and individuals who help us maintain the security of
12+
SDKs we generate. If you believe you have found a security vulnerability, please adhere to responsible
13+
disclosure practices by allowing us a reasonable amount of time to investigate and address the issue
14+
before making any information public.
15+
16+
## Reporting Non-SDK Related Security Issues
17+
18+
If you encounter security issues that are not directly related to SDKs but pertain to the services
19+
or products provided by Cloudflare please follow the respective company's security reporting guidelines.
20+
21+
### Cloudflare Terms and Policies
22+
23+
Please contact [email protected] for any questions or concerns regarding security of our services.
24+
25+
---
26+
27+
Thank you for helping us keep the SDKs and systems they interact with secure.

api.md

Lines changed: 497 additions & 127 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cloudflare",
3-
"version": "3.2.0",
3+
"version": "3.3.0",
44
"description": "The official TypeScript library for the Cloudflare API",
55
"author": "Cloudflare <[email protected]>",
66
"types": "dist/index.d.ts",
@@ -16,7 +16,6 @@
1616
"scripts": {
1717
"test": "./scripts/test",
1818
"build": "./scripts/build",
19-
"prepack": "echo 'to pack, run yarn build && (cd dist; yarn pack)' && exit 1",
2019
"prepublishOnly": "echo 'to publish, run yarn build && (cd dist; yarn publish)' && exit 1",
2120
"format": "prettier --write --cache --cache-strategy metadata . !dist",
2221
"prepare": "if ./scripts/utils/check-is-in-git-install.sh; then ./scripts/build; fi",

scripts/format

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env bash
2+
3+
set -e
4+
5+
cd "$(dirname "$0")/.."
6+
7+
echo "==> Running eslint --fix"
8+
./node_modules/.bin/eslint --fix --ext ts,js .

scripts/lint

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ set -e
44

55
cd "$(dirname "$0")/.."
66

7+
echo "==> Running eslint"
78
./node_modules/.bin/eslint --ext ts,js .

0 commit comments

Comments
 (0)