Update generated code

This commit is contained in:
2025-01-31 08:09:13 +01:00
parent 4d397d19f2
commit a433daf5ef
10 changed files with 558 additions and 1 deletions

View File

@ -0,0 +1,16 @@
/**
* swisssign-challenge - dlmw
*
* Contact: dylan@dlmw.ch
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface CreateSessionRequest {
username: string;
password: string;
}

View File

@ -0,0 +1,15 @@
/**
* swisssign-challenge - dlmw
*
* Contact: dylan@dlmw.ch
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface CreateSessionResponse {
token: string;
}

View File

@ -0,0 +1,18 @@
/**
* swisssign-challenge - dlmw
*
* Contact: dylan@dlmw.ch
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { GetSigningRequestResponseSigningRequestDocument } from './getSigningRequestResponseSigningRequestDocument';
export interface GetSigningRequestResponse {
id: string;
signingRequestDocuments?: Array<GetSigningRequestResponseSigningRequestDocument>;
signed: boolean;
}

View File

@ -0,0 +1,17 @@
/**
* swisssign-challenge - dlmw
*
* Contact: dylan@dlmw.ch
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface GetSigningRequestResponseSigningRequestDocument {
id: string;
name: string;
confirmed: boolean;
}

View File

@ -1,2 +1,6 @@
export * from './createSessionRequest';
export * from './createSessionResponse';
export * from './errorResponse';
export * from './getSigningRequestResponse';
export * from './getSigningRequestResponseSigningRequestDocument';
export * from './helloResponse';