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,56 +5,56 @@
* 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 ApiError
*/
export interface ApiError {
/**
*
* @type {string}
* @memberof ApiError
*/
error?: string;
/**
*
* @type {string}
* @memberof ApiError
*/
error?: string;
}
/**
* Check if a given object implements the ApiError interface.
*/
export function instanceOfApiError(value: object): value is ApiError {
return true;
return true;
}
export function ApiErrorFromJSON(json: any): ApiError {
return ApiErrorFromJSONTyped(json, false);
return ApiErrorFromJSONTyped(json, false);
}
export function ApiErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiError {
if (json == null) {
return json;
}
return {
'error': json['error'] == null ? undefined : json['error'],
};
export function ApiErrorFromJSONTyped(
json: any,
ignoreDiscriminator: boolean,
): ApiError {
if (json == null) {
return json;
}
return {
error: json["error"] == null ? undefined : json["error"],
};
}
export function ApiErrorToJSON(value?: ApiError | null): any {
if (value == null) {
return value;
}
return {
'error': value['error'],
};
if (value == null) {
return value;
}
return {
error: value["error"],
};
}