Skip to content

Commit

Permalink
Implement headers in client and server (#345)
Browse files Browse the repository at this point in the history
* Implement headers in client and server

* Fix tests

* Fix test

* Fix tests
  • Loading branch information
zachkirsch authored Jul 7, 2022
1 parent 0ba11a6 commit cd14e01
Show file tree
Hide file tree
Showing 25 changed files with 648 additions and 255 deletions.
4 changes: 2 additions & 2 deletions packages/add-generator/src/addGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const JAVA_GENERATOR_INVOCATION: GeneratorInvocationSchema = {

const TYPESCRIPT_GENERATOR_INVOCATION: GeneratorInvocationSchema = {
name: "fernapi/fern-typescript",
version: "0.0.123",
version: "0.0.125",
generate: true,
config: {
mode: "server",
Expand All @@ -21,7 +21,7 @@ const TYPESCRIPT_GENERATOR_INVOCATION: GeneratorInvocationSchema = {

const POSTMAN_GENERATOR_INVOCATION: GeneratorInvocationSchema = {
name: "fernapi/fern-postman",
version: "0.0.8",
version: "0.0.10",
generate: {
enabled: true,
output: "./generated-postman.json",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ generators:
packagePrefix: com
mode: client_and_server
- name: fernapi/fern-typescript
version: 0.0.123
version: 0.0.125
generate: true
config:
mode: server
- name: fernapi/fern-postman
version: 0.0.8
version: 0.0.10
generate:
enabled: true
output: ./generated-postman.json
Expand Down
Loading

0 comments on commit cd14e01

Please sign in to comment.