Skip to content

Commit

Permalink
Minor types fix in fetch package
Browse files Browse the repository at this point in the history
  • Loading branch information
kael-shipman committed Jan 22, 2024
1 parent 7d65ceb commit e901f22
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion libs/ts-simple-db-mysql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@
"test": "../../scripts/test.sh",
"typecheck": "../../scripts/typecheck.sh"
},
"version": "0.8.0"
"version": "0.8.1"
}
2 changes: 1 addition & 1 deletion libs/ts-simple-http-client-axios/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@
"test": "../../scripts/test.sh",
"typecheck": "../../scripts/typecheck.sh"
},
"version": "0.8.0"
"version": "0.8.1"
}
2 changes: 1 addition & 1 deletion libs/ts-simple-http-client-fetch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@
"test": "../../scripts/test.sh",
"typecheck": "../../scripts/typecheck.sh"
},
"version": "0.8.0"
"version": "0.8.1"
}
4 changes: 2 additions & 2 deletions libs/ts-simple-http-client-fetch/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ export interface SimpleFetchRequestConfig extends SimpleHttpClientRequestConfig
* Policy specifying whether to include credentials. See
* https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#credentials
*/
credentials?: RequestCredentials;
credentials?: "include" | "omit" | "same-origin";
/**
* See https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#mode
*/
mode?: RequestMode;
mode?: "cors" | "navigate" | "no-cors" | "same-origin";
}

/**
Expand Down
2 changes: 1 addition & 1 deletion libs/ts-simple-http-client-rpn/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@
"test": "../../scripts/test.sh",
"typecheck": "../../scripts/typecheck.sh"
},
"version": "0.8.0"
"version": "0.8.1"
}
2 changes: 1 addition & 1 deletion libs/ts-simple-http-server-express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@
"test": "../../scripts/test.sh",
"typecheck": "../../scripts/typecheck.sh"
},
"version": "0.8.0"
"version": "0.8.1"
}
2 changes: 1 addition & 1 deletion libs/ts-simple-interfaces-testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@
"prettier:fix": "../../scripts/prettier-fix.sh",
"typecheck": "../../scripts/typecheck.sh"
},
"version": "0.8.0"
"version": "0.8.1"
}
2 changes: 1 addition & 1 deletion libs/ts-simple-interfaces/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@
"prettier:fix": "../../scripts/prettier-fix.sh",
"typecheck": "../../scripts/typecheck.sh"
},
"version": "0.8.0"
"version": "0.8.1"
}
2 changes: 1 addition & 1 deletion libs/ts-simple-logger-console/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@
"test": "../../scripts/test.sh",
"typecheck": "../../scripts/typecheck.sh"
},
"version": "0.8.0"
"version": "0.8.1"
}
2 changes: 1 addition & 1 deletion libs/ts-simple-logger-winston/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@
"test": "../../scripts/test.sh",
"typecheck": "../../scripts/typecheck.sh"
},
"version": "0.8.0"
"version": "0.8.1"
}
2 changes: 1 addition & 1 deletion libs/ts-simple-pubsub-amqp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@
"test": "../../scripts/test.sh",
"typecheck": "../../scripts/typecheck.sh"
},
"version": "0.8.0"
"version": "0.8.1"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@
"@types/node": "$@types/node"
}
},
"version": "0.8.0"
"version": "0.8.1"
}

0 comments on commit e901f22

Please sign in to comment.