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,62 @@
* 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 ApiTypingIndicatorRequest
*/
export interface ApiTypingIndicatorRequest {
/**
*
* @type {string}
* @memberof ApiTypingIndicatorRequest
*/
recipient?: string;
/**
*
* @type {string}
* @memberof ApiTypingIndicatorRequest
*/
recipient?: string;
}
/**
* Check if a given object implements the ApiTypingIndicatorRequest interface.
*/
export function instanceOfApiTypingIndicatorRequest(value: object): value is ApiTypingIndicatorRequest {
return true;
export function instanceOfApiTypingIndicatorRequest(
value: object,
): value is ApiTypingIndicatorRequest {
return true;
}
export function ApiTypingIndicatorRequestFromJSON(json: any): ApiTypingIndicatorRequest {
return ApiTypingIndicatorRequestFromJSONTyped(json, false);
export function ApiTypingIndicatorRequestFromJSON(
json: any,
): ApiTypingIndicatorRequest {
return ApiTypingIndicatorRequestFromJSONTyped(json, false);
}
export function ApiTypingIndicatorRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiTypingIndicatorRequest {
if (json == null) {
return json;
}
return {
'recipient': json['recipient'] == null ? undefined : json['recipient'],
};
export function ApiTypingIndicatorRequestFromJSONTyped(
json: any,
ignoreDiscriminator: boolean,
): ApiTypingIndicatorRequest {
if (json == null) {
return json;
}
return {
recipient: json["recipient"] == null ? undefined : json["recipient"],
};
}
export function ApiTypingIndicatorRequestToJSON(value?: ApiTypingIndicatorRequest | null): any {
if (value == null) {
return value;
}
return {
'recipient': value['recipient'],
};
export function ApiTypingIndicatorRequestToJSON(
value?: ApiTypingIndicatorRequest | null,
): any {
if (value == null) {
return value;
}
return {
recipient: value["recipient"],
};
}