fix(core): update

This commit is contained in:
2024-02-17 20:24:28 +01:00
commit 450e4e023d
23 changed files with 7216 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import * as plugins from '../plugins.js';
import type { SzPlatformClient } from '../classes.platformclient.js';
export class SzLetterConnector {
public platformClientRef: SzPlatformClient;
constructor(platformClientRefArg: SzPlatformClient) {
this.platformClientRef = platformClientRefArg;
}
public async sendLetter(
optionsArg: plugins.servezoneInterfaces.platformservice.letter.IRequest_SendLetter['request']
) {
const typedRequest =
this.platformClientRef.typedsocket.createTypedRequest<plugins.servezoneInterfaces.platformservice.letter.IRequest_SendLetter>(
'sendLetter'
);
const response = await typedRequest.fire(optionsArg);
}
}