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,60 @@
* 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 ApiTrustModeRequest
*/
export interface ApiTrustModeRequest {
/**
*
* @type {string}
* @memberof ApiTrustModeRequest
*/
trustMode?: string;
/**
*
* @type {string}
* @memberof ApiTrustModeRequest
*/
trustMode?: string;
}
/**
* Check if a given object implements the ApiTrustModeRequest interface.
*/
export function instanceOfApiTrustModeRequest(value: object): value is ApiTrustModeRequest {
return true;
export function instanceOfApiTrustModeRequest(
value: object,
): value is ApiTrustModeRequest {
return true;
}
export function ApiTrustModeRequestFromJSON(json: any): ApiTrustModeRequest {
return ApiTrustModeRequestFromJSONTyped(json, false);
return ApiTrustModeRequestFromJSONTyped(json, false);
}
export function ApiTrustModeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiTrustModeRequest {
if (json == null) {
return json;
}
return {
'trustMode': json['trust_mode'] == null ? undefined : json['trust_mode'],
};
export function ApiTrustModeRequestFromJSONTyped(
json: any,
ignoreDiscriminator: boolean,
): ApiTrustModeRequest {
if (json == null) {
return json;
}
return {
trustMode: json["trust_mode"] == null ? undefined : json["trust_mode"],
};
}
export function ApiTrustModeRequestToJSON(value?: ApiTrustModeRequest | null): any {
if (value == null) {
return value;
}
return {
'trust_mode': value['trustMode'],
};
export function ApiTrustModeRequestToJSON(
value?: ApiTrustModeRequest | null,
): any {
if (value == null) {
return value;
}
return {
trust_mode: value["trustMode"],
};
}