4 Commits

Author SHA1 Message Date
679d1cf9c4 1.0.19 2024-04-17 19:47:23 +02:00
ce060f0cf9 fix(core): update 2024-04-17 19:47:23 +02:00
4d4d46ef7c 1.0.18 2024-02-19 01:35:47 +01:00
696d56067c fix(core): update 2024-02-19 01:35:46 +01:00
6 changed files with 542 additions and 1052 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@mojoio/letterxpress",
"version": "1.0.17",
"version": "1.0.19",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@mojoio/letterxpress",
"version": "1.0.17",
"version": "1.0.19",
"license": "MIT",
"dependencies": {
"@push.rocks/smartbuffer": "^1.0.3",

View File

@@ -1,6 +1,6 @@
{
"name": "@apiclient.xyz/letterxpress",
"version": "1.0.17",
"version": "1.0.19",
"private": false,
"description": "an unofficial API package for the letterxpress API",
"main": "dist_ts/index.js",
@@ -16,19 +16,19 @@
"devDependencies": {
"@git.zone/tsbuild": "^2.1.63",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.71",
"@git.zone/tstest": "^1.0.88",
"@push.rocks/qenv": "^6.0.5",
"@push.rocks/tapbundle": "^5.0.3",
"@types/node": "^20.11.19"
"@push.rocks/tapbundle": "^5.0.23",
"@types/node": "^20.12.7"
},
"dependencies": {
"@design.estate/dees-document": "^1.0.99",
"@push.rocks/smartbuffer": "^1.0.3",
"@push.rocks/smartbuffer": "^2.0.1",
"@push.rocks/smarthash": "^3.0.1",
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartrequest": "^2.0.21",
"@push.rocks/smartrequest": "^2.0.22",
"@push.rocks/smartrx": "^3.0.7",
"@tsclass/tsclass": "^4.0.17"
"@tsclass/tsclass": "^4.0.54"
},
"files": [
"ts/**/*",

1567
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -104,7 +104,7 @@ tap.test('should send an actual letter', async () => {
});
tap.test('should be able to delete the sending job', async (toolsArg) => {
await toolsArg.delayFor(30000);
await toolsArg.delayFor(5000);
await testAccount.cancelLetter(testLetter);
});

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@apiclient.xyz/letterxpress',
version: '1.0.17',
version: '1.0.19',
description: 'an unofficial API package for the letterxpress API'
}

View File

@@ -37,9 +37,9 @@ export class LetterXpressAccount {
const pdfToSend = await this.deesDocumentInstance.createPdfFromLetterObject(letterArg);
const response = await this.request('/printjobs', 'POST', {
letter: {
base64_file: plugins.smartbuffer.arrayBufferToBase64(pdfToSend.buffer),
base64_file: plugins.smartbuffer.uInt8ArrayToBase64(pdfToSend.buffer),
base64_file_checksum: await plugins.smarthash.md5FromString(
plugins.smartbuffer.arrayBufferToBase64(pdfToSend.buffer)
plugins.smartbuffer.uInt8ArrayToBase64(pdfToSend.buffer)
),
specification: {
color: '4',
@@ -97,6 +97,7 @@ export class LetterXpressAccount {
'Content-Type': 'application/json',
},
requestBody: JSON.stringify(requestData),
keepAlive: false,
});
console.log(response.body);
return response;