Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EW-995 Add new tsp service and tsp rest client #5236

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions apps/server/src/infra/tsp-client/tsp-api-client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
wwwroot/*.js
node_modules
typings
dist
1 change: 1 addition & 0 deletions apps/server/src/infra/tsp-client/tsp-api-client/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# empty npmignore to ensure all required files (e.g., in the dist folder) are published by npm
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# OpenAPI Generator Ignore
# Generated by openapi-generator https://github.com/openapitools/openapi-generator

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
.gitignore
.npmignore
api.ts
api/export-api.ts
base.ts
common.ts
configuration.ts
git_push.sh
index.ts
models/bobj-standard.ts
models/dobj-aufgabenpaket-auswahl.ts
models/dobj-auswahl-gruppiert.ts
models/dobj-auswahl.ts
models/dobj-datei.ts
models/dobj-examen.ts
models/dobj-klasse.ts
models/dobj-klassenlehrer-zuordnung.ts
models/dobj-kopfzeilen-informationen.ts
models/dobj-kurs.ts
models/dobj-kurslehrer-zuordnung.ts
models/dobj-mediumdatei.ts
models/dobj-schueler.ts
models/dobj-schuelerzuordnung.ts
models/dobj-schule.ts
models/dobj-spaltenoption.ts
models/dobj-sso-link.ts
models/dobj-statistik.ts
models/dobj-teilnehmer.ts
models/dobj-zugangsdaten.ts
models/fehler.ts
models/fehlerantwort.ts
models/ilea-aufgabe.ts
models/index.ts
models/objekt zur beantwortung von berechtigungsanfragen.ts
models/robj-aufgabepaket.ts
models/robj-benutzergruppe-zuordnung.ts
models/robj-benutzergruppe.ts
models/robj-benutzerrolle-zuordnung.ts
models/robj-dienststelle.ts
models/robj-examen.ts
models/robj-export-klasse.ts
models/robj-export-lehrer-migration.ts
models/robj-export-lehrer.ts
models/robj-export-schueler-migration.ts
models/robj-export-schueler.ts
models/robj-export-schule.ts
models/robj-halbjahr.ts
models/robj-klasse.ts
models/robj-klassenlehrer-zuordnung.ts
models/robj-kodierung.ts
models/robj-kommunikation.ts
models/robj-kurs.ts
models/robj-kurslehrer-zuordnung.ts
models/robj-person.ts
models/robj-protokolleintrag.ts
models/robj-schueler.ts
models/robj-schuelerzuordnung.ts
models/robj-schule.ts
models/robj-schulpersonal.ts
models/robj-standort-zuordnung.ts
models/robj-tooltip.ts
models/robj-vorgaengerklasse.ts
models/robj-vorgaengerkurs.ts
models/value.ts
models/version-response.ts
18 changes: 18 additions & 0 deletions apps/server/src/infra/tsp-client/tsp-api-client/api.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* TIP-Rest Api v1
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/



export * from './api/export-api';

Loading
Loading