Update generated code
This commit is contained in:
16
src/gen/model/createSessionRequest.ts
Normal file
16
src/gen/model/createSessionRequest.ts
Normal 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;
|
||||
}
|
||||
|
15
src/gen/model/createSessionResponse.ts
Normal file
15
src/gen/model/createSessionResponse.ts
Normal 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;
|
||||
}
|
||||
|
18
src/gen/model/getSigningRequestResponse.ts
Normal file
18
src/gen/model/getSigningRequestResponse.ts
Normal 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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -1,2 +1,6 @@
|
||||
export * from './createSessionRequest';
|
||||
export * from './createSessionResponse';
|
||||
export * from './errorResponse';
|
||||
export * from './getSigningRequestResponse';
|
||||
export * from './getSigningRequestResponseSigningRequestDocument';
|
||||
export * from './helloResponse';
|
||||
|
Reference in New Issue
Block a user