-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ce38903
commit d981d7c
Showing
40 changed files
with
526 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/external/backend-api/src/models/CreateMemberGroupRequestModel.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { MemberGroupPresentationBaseModel } from './MemberGroupPresentationBaseModel'; | ||
|
||
export type CreateMemberGroupRequestModel = (MemberGroupPresentationBaseModel & { | ||
id?: string | null; | ||
}); | ||
|
12 changes: 12 additions & 0 deletions
12
src/external/backend-api/src/models/EventMessageTypeModel.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export enum EventMessageTypeModel { | ||
DEFAULT = 'Default', | ||
INFO = 'Info', | ||
ERROR = 'Error', | ||
SUCCESS = 'Success', | ||
WARNING = 'Warning', | ||
} |
9 changes: 9 additions & 0 deletions
9
src/external/backend-api/src/models/MemberGroupPresentationBaseModel.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type MemberGroupPresentationBaseModel = { | ||
name: string; | ||
}; | ||
|
11 changes: 11 additions & 0 deletions
11
src/external/backend-api/src/models/MemberGroupResponseModel.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { MemberGroupPresentationBaseModel } from './MemberGroupPresentationBaseModel'; | ||
|
||
export type MemberGroupResponseModel = (MemberGroupPresentationBaseModel & { | ||
id: string; | ||
}); | ||
|
13 changes: 13 additions & 0 deletions
13
src/external/backend-api/src/models/NotificationHeaderModel.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { EventMessageTypeModel } from './EventMessageTypeModel'; | ||
|
||
export type NotificationHeaderModel = { | ||
message: string; | ||
category: string; | ||
type: EventMessageTypeModel; | ||
}; | ||
|
12 changes: 12 additions & 0 deletions
12
src/external/backend-api/src/models/PagedMemberGroupResponseModel.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { MemberGroupResponseModel } from './MemberGroupResponseModel'; | ||
|
||
export type PagedMemberGroupResponseModel = { | ||
total: number; | ||
items: Array<MemberGroupResponseModel>; | ||
}; | ||
|
12 changes: 12 additions & 0 deletions
12
src/external/backend-api/src/models/TemporaryFileConfigurationResponseModel.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type TemporaryFileConfigurationResponseModel = { | ||
imageFileTypes: Array<string>; | ||
disallowedUploadedFilesExtensions: Array<string>; | ||
allowedUploadedFileExtensions: Array<string>; | ||
maxFileSize?: number | null; | ||
}; | ||
|
9 changes: 9 additions & 0 deletions
9
src/external/backend-api/src/models/UpdateMemberGroupRequestModel.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { MemberGroupPresentationBaseModel } from './MemberGroupPresentationBaseModel'; | ||
|
||
export type UpdateMemberGroupRequestModel = MemberGroupPresentationBaseModel; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.