-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
da64cff
commit 90f63e5
Showing
29 changed files
with
1,928 additions
and
137 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
36 changes: 36 additions & 0 deletions
36
client-code-gen/gen/admin-management-api/model/delegated-admin-sort-by-enum.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,36 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* Forest Access Management - FAM - Admin Management API | ||
* Forest Access Management Admin Management API used by the Forest Access Management application to define admin access to forest applications. | ||
* | ||
* The version of the OpenAPI document: 0.0.1 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
|
||
|
||
/** | ||
* | ||
* @export | ||
* @enum {string} | ||
*/ | ||
|
||
export const DelegatedAdminSortByEnum = { | ||
CreateDate: 'create_date', | ||
UserName: 'user_name', | ||
UserTypeCode: 'user_type_code', | ||
Email: 'email', | ||
FullName: 'full_name', | ||
RoleDisplayName: 'role_display_name', | ||
ForestClientNumber: 'forest_client_number' | ||
} as const; | ||
|
||
export type DelegatedAdminSortByEnum = typeof DelegatedAdminSortByEnum[keyof typeof DelegatedAdminSortByEnum]; | ||
|
||
|
||
|
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
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
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
48 changes: 48 additions & 0 deletions
48
client-code-gen/gen/admin-management-api/model/page-result-meta-schema.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,48 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* Forest Access Management - FAM - Admin Management API | ||
* Forest Access Management Admin Management API used by the Forest Access Management application to define admin access to forest applications. | ||
* | ||
* The version of the OpenAPI document: 0.0.1 | ||
* Contact: [email protected] | ||
* | ||
* 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 PageResultMetaSchema | ||
*/ | ||
export interface PageResultMetaSchema { | ||
/** | ||
* Total records counts for query conditions | ||
* @type {number} | ||
* @memberof PageResultMetaSchema | ||
*/ | ||
'total': number; | ||
/** | ||
* Total pages for query records | ||
* @type {number} | ||
* @memberof PageResultMetaSchema | ||
*/ | ||
'number_of_pages': number; | ||
/** | ||
* Page number | ||
* @type {number} | ||
* @memberof PageResultMetaSchema | ||
*/ | ||
'page_number': number; | ||
/** | ||
* Number of records per page | ||
* @type {number} | ||
* @memberof PageResultMetaSchema | ||
*/ | ||
'page_size': number; | ||
} | ||
|
Oops, something went wrong.