create-cloudflare 2.2.2 → 2.3.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/README.md +1 -1
- package/dist/cli.js +1066 -1990
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +81 -80
- package/templates/chatgptPlugin/ts/README.md +2 -2
- package/templates/chatgptPlugin/ts/package.json +1 -1
- package/templates/chatgptPlugin/ts/src/search.ts +3 -7
- package/templates/openapi/ts/README.md +25 -0
- package/templates/openapi/ts/package.json +18 -0
- package/templates/openapi/ts/src/endpoints/taskCreate.ts +48 -0
- package/templates/openapi/ts/src/endpoints/taskDelete.ts +55 -0
- package/templates/openapi/ts/src/endpoints/taskFetch.ts +74 -0
- package/templates/openapi/ts/src/endpoints/taskList.ts +66 -0
- package/templates/openapi/ts/src/index.ts +29 -0
- package/templates/openapi/ts/src/types.ts +9 -0
- package/templates/openapi/ts/tsconfig.json +32 -0
- package/templates/openapi/ts/wrangler.toml +3 -0
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ To create a new Typescript "Hello World" worker, run:
|
|
|
46
46
|
npm create cloudflare@latest hello-world -- --type hello-world --ts
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
-
Current template options are: `hello-world`, `common`, or `
|
|
49
|
+
Current template options are: `hello-world`, `common`, `chatgptPlugin`, or `openapi`.
|
|
50
50
|
|
|
51
51
|
#### Additional arguments
|
|
52
52
|
|