mirror of
https://github.com/tribufu/tribufu-js
synced 2026-06-01 09:42:36 +00:00
Release v1.2.0
This commit is contained in:
parent
1f73b2b509
commit
596fb5e642
55 changed files with 3692 additions and 1150 deletions
|
|
@ -2,9 +2,9 @@
|
|||
/* eslint-disable */
|
||||
/**
|
||||
* Tribufu API
|
||||
* REST API to access Tribufu services.
|
||||
* API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* The version of the OpenAPI document: 1.2.0
|
||||
* Contact: contact@tribufu.com
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
|
|
@ -57,12 +57,6 @@ export interface TokenRequest {
|
|||
* @memberof TokenRequest
|
||||
*/
|
||||
refreshToken?: string | null;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof TokenRequest
|
||||
*/
|
||||
clientId?: string | null;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
|
|
@ -101,7 +95,6 @@ export function TokenRequestFromJSONTyped(json: any, ignoreDiscriminator: boolea
|
|||
'username': json['username'] == null ? undefined : json['username'],
|
||||
'password': json['password'] == null ? undefined : json['password'],
|
||||
'refreshToken': json['refresh_token'] == null ? undefined : json['refresh_token'],
|
||||
'clientId': json['client_id'] == null ? undefined : json['client_id'],
|
||||
'redirectUri': json['redirect_uri'] == null ? undefined : json['redirect_uri'],
|
||||
'codeVerifier': json['code_verifier'] == null ? undefined : json['code_verifier'],
|
||||
};
|
||||
|
|
@ -123,7 +116,6 @@ export function TokenRequestToJSONTyped(value?: TokenRequest | null, ignoreDiscr
|
|||
'username': value['username'],
|
||||
'password': value['password'],
|
||||
'refresh_token': value['refreshToken'],
|
||||
'client_id': value['clientId'],
|
||||
'redirect_uri': value['redirectUri'],
|
||||
'code_verifier': value['codeVerifier'],
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue