-
Notifications
You must be signed in to change notification settings - Fork 0
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
aa62157
commit 77cfb3d
Showing
7 changed files
with
126 additions
and
25 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
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
29 changes: 15 additions & 14 deletions
29
...s/azure-ad-b2c-sample/auth-frontend/app/src/generated/api-client/.openapi-generator/FILES
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 |
---|---|---|
@@ -1,14 +1,15 @@ | ||
.gitignore | ||
.npmignore | ||
.openapi-generator-ignore | ||
api.ts | ||
api/server-time-api.ts | ||
api/user-api.ts | ||
base.ts | ||
common.ts | ||
configuration.ts | ||
git_push.sh | ||
index.ts | ||
models/index.ts | ||
models/time-response.ts | ||
models/user-response.ts | ||
.gitignore | ||
.npmignore | ||
.openapi-generator-ignore | ||
api.ts | ||
api/server-time-api.ts | ||
api/user-api.ts | ||
base.ts | ||
common.ts | ||
configuration.ts | ||
git_push.sh | ||
index.ts | ||
models/index.ts | ||
models/problem-detail.ts | ||
models/time-response.ts | ||
models/user-response.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
1 change: 1 addition & 0 deletions
1
samples/azure-ad-b2c-sample/auth-frontend/app/src/generated/api-client/models/index.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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export * from './problem-detail'; | ||
export * from './time-response'; | ||
export * from './user-response'; |
60 changes: 60 additions & 0 deletions
60
...s/azure-ad-b2c-sample/auth-frontend/app/src/generated/api-client/models/problem-detail.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,60 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* Azure AD B2C ユーザー認証 | ||
* Azure AD B2Cを利用したユーザー認証機能を提供するサンプルアプリケーションです。 | ||
* | ||
* The version of the OpenAPI document: v1 | ||
* | ||
* | ||
* 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 ProblemDetail | ||
*/ | ||
export interface ProblemDetail { | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ProblemDetail | ||
*/ | ||
'detail'?: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ProblemDetail | ||
*/ | ||
'instance'?: string; | ||
/** | ||
* | ||
* @type {{ [key: string]: object; }} | ||
* @memberof ProblemDetail | ||
*/ | ||
'properties'?: { [key: string]: object; }; | ||
/** | ||
* | ||
* @type {number} | ||
* @memberof ProblemDetail | ||
*/ | ||
'status'?: number; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ProblemDetail | ||
*/ | ||
'title'?: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ProblemDetail | ||
*/ | ||
'type'?: string; | ||
} | ||
|