Worker build updates

This commit is contained in:
Darren Clarke 2024-06-28 07:49:39 +02:00
parent 45c80ca98a
commit 0cf1c3b8fd
64 changed files with 4216 additions and 3450 deletions

View file

@ -5,64 +5,71 @@
* 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';
import { mapValues } from "../runtime.js";
/**
*
*
* @export
* @interface ApiUpdateProfileRequest
*/
export interface ApiUpdateProfileRequest {
/**
*
* @type {string}
* @memberof ApiUpdateProfileRequest
*/
base64Avatar?: string;
/**
*
* @type {string}
* @memberof ApiUpdateProfileRequest
*/
name?: string;
/**
*
* @type {string}
* @memberof ApiUpdateProfileRequest
*/
base64Avatar?: string;
/**
*
* @type {string}
* @memberof ApiUpdateProfileRequest
*/
name?: string;
}
/**
* Check if a given object implements the ApiUpdateProfileRequest interface.
*/
export function instanceOfApiUpdateProfileRequest(value: object): value is ApiUpdateProfileRequest {
return true;
export function instanceOfApiUpdateProfileRequest(
value: object,
): value is ApiUpdateProfileRequest {
return true;
}
export function ApiUpdateProfileRequestFromJSON(json: any): ApiUpdateProfileRequest {
return ApiUpdateProfileRequestFromJSONTyped(json, false);
export function ApiUpdateProfileRequestFromJSON(
json: any,
): ApiUpdateProfileRequest {
return ApiUpdateProfileRequestFromJSONTyped(json, false);
}
export function ApiUpdateProfileRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiUpdateProfileRequest {
if (json == null) {
return json;
}
return {
'base64Avatar': json['base64_avatar'] == null ? undefined : json['base64_avatar'],
'name': json['name'] == null ? undefined : json['name'],
};
export function ApiUpdateProfileRequestFromJSONTyped(
json: any,
ignoreDiscriminator: boolean,
): ApiUpdateProfileRequest {
if (json == null) {
return json;
}
return {
base64Avatar:
json["base64_avatar"] == null ? undefined : json["base64_avatar"],
name: json["name"] == null ? undefined : json["name"],
};
}
export function ApiUpdateProfileRequestToJSON(value?: ApiUpdateProfileRequest | null): any {
if (value == null) {
return value;
}
return {
'base64_avatar': value['base64Avatar'],
'name': value['name'],
};
export function ApiUpdateProfileRequestToJSON(
value?: ApiUpdateProfileRequest | null,
): any {
if (value == null) {
return value;
}
return {
base64_avatar: value["base64Avatar"],
name: value["name"],
};
}