@gewis/grooster-backend-ts 1.3.3 → 1.4.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.
Files changed (49) hide show
  1. package/dist/api.d.ts +1551 -0
  2. package/dist/api.js +2067 -0
  3. package/dist/api.js.map +1 -0
  4. package/dist/base.d.ts +66 -0
  5. package/dist/base.js +64 -0
  6. package/dist/base.js.map +1 -0
  7. package/dist/common.d.ts +65 -0
  8. package/dist/common.js +153 -0
  9. package/dist/common.js.map +1 -0
  10. package/{src/configuration.ts → dist/configuration.d.ts} +4 -28
  11. package/dist/configuration.js +51 -0
  12. package/dist/configuration.js.map +1 -0
  13. package/{src/index.ts → dist/index.d.ts} +1 -6
  14. package/dist/index.js +31 -0
  15. package/dist/index.js.map +1 -0
  16. package/package.json +4 -1
  17. package/eslint.config.mjs +0 -10
  18. package/src/.openapi-generator/FILES +0 -31
  19. package/src/.openapi-generator/VERSION +0 -1
  20. package/src/.openapi-generator-ignore +0 -23
  21. package/src/api.ts +0 -2574
  22. package/src/base.ts +0 -86
  23. package/src/common.ts +0 -150
  24. package/src/docs/AuthApi.md +0 -117
  25. package/src/docs/GormDeletedAt.md +0 -22
  26. package/src/docs/Organ.md +0 -31
  27. package/src/docs/Roster.md +0 -42
  28. package/src/docs/RosterAnswer.md +0 -34
  29. package/src/docs/RosterAnswerApi.md +0 -117
  30. package/src/docs/RosterAnswerCreateRequest.md +0 -26
  31. package/src/docs/RosterAnswerUpdateRequest.md +0 -20
  32. package/src/docs/RosterApi.md +0 -545
  33. package/src/docs/RosterCreateRequest.md +0 -26
  34. package/src/docs/RosterShift.md +0 -30
  35. package/src/docs/RosterShiftApi.md +0 -112
  36. package/src/docs/RosterShiftCreateRequest.md +0 -22
  37. package/src/docs/RosterTemplate.md +0 -32
  38. package/src/docs/RosterTemplateCreateRequest.md +0 -24
  39. package/src/docs/RosterTemplateUpdateParams.md +0 -22
  40. package/src/docs/RosterUpdateRequest.md +0 -22
  41. package/src/docs/SavedShift.md +0 -34
  42. package/src/docs/SavedShiftApi.md +0 -170
  43. package/src/docs/SavedShiftUpdateRequest.md +0 -20
  44. package/src/docs/User.md +0 -32
  45. package/src/docs/UserApi.md +0 -224
  46. package/src/docs/UserCreateRequest.md +0 -24
  47. package/src/git_push.sh +0 -57
  48. package/tsconfig.eslint.json +0 -5
  49. package/tsconfig.json +0 -23
package/eslint.config.mjs DELETED
@@ -1,10 +0,0 @@
1
- import { eslintConfig as common } from '@gewis/eslint-config-typescript';
2
- import { eslintConfig as prettier } from '@gewis/prettier-config';
3
-
4
- export default [
5
- ...common,
6
- prettier,
7
- {
8
- ignores: ['src/client/**', 'dist/**', 'test/**', 'openapi-ts.config.ts', 'vitest.config.ts'],
9
- },
10
- ];
@@ -1,31 +0,0 @@
1
- .gitignore
2
- .npmignore
3
- api.ts
4
- base.ts
5
- common.ts
6
- configuration.ts
7
- docs/AuthApi.md
8
- docs/GormDeletedAt.md
9
- docs/Organ.md
10
- docs/Roster.md
11
- docs/RosterAnswer.md
12
- docs/RosterAnswerApi.md
13
- docs/RosterAnswerCreateRequest.md
14
- docs/RosterAnswerUpdateRequest.md
15
- docs/RosterApi.md
16
- docs/RosterCreateRequest.md
17
- docs/RosterShift.md
18
- docs/RosterShiftApi.md
19
- docs/RosterShiftCreateRequest.md
20
- docs/RosterTemplate.md
21
- docs/RosterTemplateCreateRequest.md
22
- docs/RosterTemplateUpdateParams.md
23
- docs/RosterUpdateRequest.md
24
- docs/SavedShift.md
25
- docs/SavedShiftApi.md
26
- docs/SavedShiftUpdateRequest.md
27
- docs/User.md
28
- docs/UserApi.md
29
- docs/UserCreateRequest.md
30
- git_push.sh
31
- index.ts
@@ -1 +0,0 @@
1
- 7.14.0
@@ -1,23 +0,0 @@
1
- # OpenAPI Generator Ignore
2
- # Generated by openapi-generator https://github.com/openapitools/openapi-generator
3
-
4
- # Use this file to prevent files from being overwritten by the generator.
5
- # The patterns follow closely to .gitignore or .dockerignore.
6
-
7
- # As an example, the C# client generator defines ApiClient.cs.
8
- # You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9
- #ApiClient.cs
10
-
11
- # You can match any string of characters against a directory, file or extension with a single asterisk (*):
12
- #foo/*/qux
13
- # The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14
-
15
- # You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16
- #foo/**/qux
17
- # This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18
-
19
- # You can also negate patterns with an exclamation (!).
20
- # For example, you can ignore all files in a docs folder with the file extension .md:
21
- #docs/*.md
22
- # Then explicitly reverse the ignore rule for a single file:
23
- #!docs/README.md