Update Dockerfiles, add signal api generated outputs
This commit is contained in:
parent
31da4b0e62
commit
83653ef23b
65 changed files with 6728 additions and 21 deletions
68
packages/signal-api/models/ApiSearchResponse.ts
Normal file
68
packages/signal-api/models/ApiSearchResponse.ts
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
/**
|
||||
* Signal Cli REST API
|
||||
* This is the Signal Cli REST API documentation.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import { mapValues } from '../runtime';
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface ApiSearchResponse
|
||||
*/
|
||||
export interface ApiSearchResponse {
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ApiSearchResponse
|
||||
*/
|
||||
number?: string;
|
||||
/**
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof ApiSearchResponse
|
||||
*/
|
||||
registered?: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if a given object implements the ApiSearchResponse interface.
|
||||
*/
|
||||
export function instanceOfApiSearchResponse(value: object): value is ApiSearchResponse {
|
||||
return true;
|
||||
}
|
||||
|
||||
export function ApiSearchResponseFromJSON(json: any): ApiSearchResponse {
|
||||
return ApiSearchResponseFromJSONTyped(json, false);
|
||||
}
|
||||
|
||||
export function ApiSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiSearchResponse {
|
||||
if (json == null) {
|
||||
return json;
|
||||
}
|
||||
return {
|
||||
|
||||
'number': json['number'] == null ? undefined : json['number'],
|
||||
'registered': json['registered'] == null ? undefined : json['registered'],
|
||||
};
|
||||
}
|
||||
|
||||
export function ApiSearchResponseToJSON(value?: ApiSearchResponse | null): any {
|
||||
if (value == null) {
|
||||
return value;
|
||||
}
|
||||
return {
|
||||
|
||||
'number': value['number'],
|
||||
'registered': value['registered'],
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue