@oesp/sync-http 4.0.0 → 6.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{index.d.cts → SyncClient.d.ts} +4 -13
- package/dist/SyncClient.js +86 -0
- package/dist/env.d.ts +7 -0
- package/dist/env.js +21 -0
- package/dist/index.d.ts +2 -35
- package/dist/index.js +2 -104
- package/package.json +3 -3
- package/dist/index.cjs +0 -133
|
@@ -1,22 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
apiKey?: string;
|
|
4
|
-
timeoutMs: number;
|
|
5
|
-
maxChunkBytes: number;
|
|
6
|
-
}
|
|
7
|
-
declare function getSyncConfig(overrides?: Partial<SyncConfig>): SyncConfig;
|
|
8
|
-
|
|
9
|
-
interface SyncSummary {
|
|
1
|
+
import { SyncConfig } from "./env";
|
|
2
|
+
export interface SyncSummary {
|
|
10
3
|
success: boolean;
|
|
11
4
|
uploadedCount: number;
|
|
12
5
|
totalBytes: number;
|
|
13
6
|
sessionId?: string;
|
|
14
7
|
error?: string;
|
|
15
8
|
}
|
|
16
|
-
interface SyncOpts extends Partial<SyncConfig> {
|
|
9
|
+
export interface SyncOpts extends Partial<SyncConfig> {
|
|
17
10
|
sha256: (data: Uint8Array) => Uint8Array | Promise<Uint8Array>;
|
|
18
11
|
}
|
|
19
|
-
declare class OESPSyncClient {
|
|
12
|
+
export declare class OESPSyncClient {
|
|
20
13
|
private config;
|
|
21
14
|
private sha256;
|
|
22
15
|
constructor(opts: SyncOpts);
|
|
@@ -31,5 +24,3 @@ declare class OESPSyncClient {
|
|
|
31
24
|
}): Promise<SyncSummary>;
|
|
32
25
|
private chunkBytes;
|
|
33
26
|
}
|
|
34
|
-
|
|
35
|
-
export { OESPSyncClient, type SyncConfig, type SyncOpts, type SyncSummary, getSyncConfig };
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { base64Encode } from "@oesp/core";
|
|
2
|
+
import { getSyncConfig } from "./env";
|
|
3
|
+
export class OESPSyncClient {
|
|
4
|
+
constructor(opts) {
|
|
5
|
+
this.config = getSyncConfig(opts);
|
|
6
|
+
this.sha256 = opts.sha256;
|
|
7
|
+
}
|
|
8
|
+
setBaseUrl(url) {
|
|
9
|
+
this.config.baseUrl = url;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* Synchronise une liste de tokens vers le serveur
|
|
13
|
+
*/
|
|
14
|
+
async syncTokens(tokens, deviceDid, opts = {}) {
|
|
15
|
+
try {
|
|
16
|
+
// 1. Démarrer la session
|
|
17
|
+
const startRes = await fetch(`${this.config.baseUrl}/sync/start`, {
|
|
18
|
+
method: "POST",
|
|
19
|
+
headers: { "Content-Type": "application/json" },
|
|
20
|
+
body: JSON.stringify({
|
|
21
|
+
did: deviceDid,
|
|
22
|
+
pub: opts.devicePubB64,
|
|
23
|
+
meta: opts.clientMeta
|
|
24
|
+
})
|
|
25
|
+
});
|
|
26
|
+
if (!startRes.ok)
|
|
27
|
+
throw new Error(`Failed to start sync: ${startRes.statusText}`);
|
|
28
|
+
const { session_id } = await startRes.json();
|
|
29
|
+
// 2. Chunker et Upload
|
|
30
|
+
let uploadedCount = 0;
|
|
31
|
+
let totalBytes = 0;
|
|
32
|
+
const jsonlData = tokens.map(t => JSON.stringify({ token: t })).join("\n");
|
|
33
|
+
const dataBytes = new TextEncoder().encode(jsonlData);
|
|
34
|
+
const chunks = this.chunkBytes(dataBytes, this.config.maxChunkBytes);
|
|
35
|
+
for (let i = 0; i < chunks.length; i++) {
|
|
36
|
+
const chunkRes = await fetch(`${this.config.baseUrl}/sync/upload`, {
|
|
37
|
+
method: "POST",
|
|
38
|
+
headers: {
|
|
39
|
+
"X-Session-ID": session_id,
|
|
40
|
+
"X-Chunk-Index": i.toString(),
|
|
41
|
+
"Content-Type": "application/octet-stream"
|
|
42
|
+
},
|
|
43
|
+
body: chunks[i]
|
|
44
|
+
});
|
|
45
|
+
if (!chunkRes.ok)
|
|
46
|
+
throw new Error(`Failed to upload chunk ${i}: ${chunkRes.statusText}`);
|
|
47
|
+
totalBytes += chunks[i].length;
|
|
48
|
+
}
|
|
49
|
+
// 3. Commit
|
|
50
|
+
const finalHashBytes = await this.sha256(dataBytes);
|
|
51
|
+
const finalHash = base64Encode(finalHashBytes);
|
|
52
|
+
const commitRes = await fetch(`${this.config.baseUrl}/sync/commit`, {
|
|
53
|
+
method: "POST",
|
|
54
|
+
headers: { "Content-Type": "application/json" },
|
|
55
|
+
body: JSON.stringify({
|
|
56
|
+
session_id,
|
|
57
|
+
final_hash: finalHash,
|
|
58
|
+
allow_expired: opts.allowExpired ?? true
|
|
59
|
+
})
|
|
60
|
+
});
|
|
61
|
+
if (!commitRes.ok)
|
|
62
|
+
throw new Error(`Failed to commit: ${commitRes.statusText}`);
|
|
63
|
+
return {
|
|
64
|
+
success: true,
|
|
65
|
+
uploadedCount: tokens.length,
|
|
66
|
+
totalBytes,
|
|
67
|
+
sessionId: session_id
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
catch (e) {
|
|
71
|
+
return {
|
|
72
|
+
success: false,
|
|
73
|
+
uploadedCount: 0,
|
|
74
|
+
totalBytes: 0,
|
|
75
|
+
error: e.message
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
chunkBytes(data, maxSize) {
|
|
80
|
+
const chunks = [];
|
|
81
|
+
for (let i = 0; i < data.length; i += maxSize) {
|
|
82
|
+
chunks.push(data.slice(i, i + maxSize));
|
|
83
|
+
}
|
|
84
|
+
return chunks;
|
|
85
|
+
}
|
|
86
|
+
}
|
package/dist/env.d.ts
ADDED
package/dist/env.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export function getSyncConfig(overrides = {}) {
|
|
2
|
+
const defaultBaseUrl = "http://oesp-sync-server:8000";
|
|
3
|
+
let envBaseUrl;
|
|
4
|
+
// Node.js
|
|
5
|
+
const nodeEnv = globalThis?.process?.env;
|
|
6
|
+
if (nodeEnv?.OESP_SYNC_BASE_URL) {
|
|
7
|
+
envBaseUrl = nodeEnv.OESP_SYNC_BASE_URL;
|
|
8
|
+
}
|
|
9
|
+
// Vite / Web
|
|
10
|
+
// @ts-ignore
|
|
11
|
+
if (typeof import.meta !== "undefined" && import.meta.env?.VITE_OESP_SYNC_BASE_URL) {
|
|
12
|
+
// @ts-ignore
|
|
13
|
+
envBaseUrl = import.meta.env.VITE_OESP_SYNC_BASE_URL;
|
|
14
|
+
}
|
|
15
|
+
return {
|
|
16
|
+
baseUrl: overrides.baseUrl || envBaseUrl || defaultBaseUrl,
|
|
17
|
+
apiKey: overrides.apiKey,
|
|
18
|
+
timeoutMs: overrides.timeoutMs || 30000,
|
|
19
|
+
maxChunkBytes: overrides.maxChunkBytes || 500000, // 500KB
|
|
20
|
+
};
|
|
21
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,35 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
apiKey?: string;
|
|
4
|
-
timeoutMs: number;
|
|
5
|
-
maxChunkBytes: number;
|
|
6
|
-
}
|
|
7
|
-
declare function getSyncConfig(overrides?: Partial<SyncConfig>): SyncConfig;
|
|
8
|
-
|
|
9
|
-
interface SyncSummary {
|
|
10
|
-
success: boolean;
|
|
11
|
-
uploadedCount: number;
|
|
12
|
-
totalBytes: number;
|
|
13
|
-
sessionId?: string;
|
|
14
|
-
error?: string;
|
|
15
|
-
}
|
|
16
|
-
interface SyncOpts extends Partial<SyncConfig> {
|
|
17
|
-
sha256: (data: Uint8Array) => Uint8Array | Promise<Uint8Array>;
|
|
18
|
-
}
|
|
19
|
-
declare class OESPSyncClient {
|
|
20
|
-
private config;
|
|
21
|
-
private sha256;
|
|
22
|
-
constructor(opts: SyncOpts);
|
|
23
|
-
setBaseUrl(url: string): void;
|
|
24
|
-
/**
|
|
25
|
-
* Synchronise une liste de tokens vers le serveur
|
|
26
|
-
*/
|
|
27
|
-
syncTokens(tokens: string[], deviceDid: string, opts?: {
|
|
28
|
-
devicePubB64?: string;
|
|
29
|
-
clientMeta?: any;
|
|
30
|
-
allowExpired?: boolean;
|
|
31
|
-
}): Promise<SyncSummary>;
|
|
32
|
-
private chunkBytes;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
export { OESPSyncClient, type SyncConfig, type SyncOpts, type SyncSummary, getSyncConfig };
|
|
1
|
+
export * from "./SyncClient";
|
|
2
|
+
export * from "./env";
|
package/dist/index.js
CHANGED
|
@@ -1,104 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
// src/env.ts
|
|
5
|
-
function getSyncConfig(overrides = {}) {
|
|
6
|
-
const defaultBaseUrl = "http://oesp-sync-server:8000";
|
|
7
|
-
let envBaseUrl;
|
|
8
|
-
if (typeof process !== "undefined" && process.env?.OESP_SYNC_BASE_URL) {
|
|
9
|
-
envBaseUrl = process.env.OESP_SYNC_BASE_URL;
|
|
10
|
-
}
|
|
11
|
-
if (typeof import.meta !== "undefined" && import.meta.env?.VITE_OESP_SYNC_BASE_URL) {
|
|
12
|
-
envBaseUrl = import.meta.env.VITE_OESP_SYNC_BASE_URL;
|
|
13
|
-
}
|
|
14
|
-
return {
|
|
15
|
-
baseUrl: overrides.baseUrl || envBaseUrl || defaultBaseUrl,
|
|
16
|
-
apiKey: overrides.apiKey,
|
|
17
|
-
timeoutMs: overrides.timeoutMs || 3e4,
|
|
18
|
-
maxChunkBytes: overrides.maxChunkBytes || 5e5
|
|
19
|
-
// 500KB
|
|
20
|
-
};
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
// src/SyncClient.ts
|
|
24
|
-
var OESPSyncClient = class {
|
|
25
|
-
constructor(opts) {
|
|
26
|
-
this.config = getSyncConfig(opts);
|
|
27
|
-
this.sha256 = opts.sha256;
|
|
28
|
-
}
|
|
29
|
-
setBaseUrl(url) {
|
|
30
|
-
this.config.baseUrl = url;
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* Synchronise une liste de tokens vers le serveur
|
|
34
|
-
*/
|
|
35
|
-
async syncTokens(tokens, deviceDid, opts = {}) {
|
|
36
|
-
try {
|
|
37
|
-
const startRes = await fetch(`${this.config.baseUrl}/sync/start`, {
|
|
38
|
-
method: "POST",
|
|
39
|
-
headers: { "Content-Type": "application/json" },
|
|
40
|
-
body: JSON.stringify({
|
|
41
|
-
did: deviceDid,
|
|
42
|
-
pub: opts.devicePubB64,
|
|
43
|
-
meta: opts.clientMeta
|
|
44
|
-
})
|
|
45
|
-
});
|
|
46
|
-
if (!startRes.ok) throw new Error(`Failed to start sync: ${startRes.statusText}`);
|
|
47
|
-
const { session_id } = await startRes.json();
|
|
48
|
-
let uploadedCount = 0;
|
|
49
|
-
let totalBytes = 0;
|
|
50
|
-
const jsonlData = tokens.map((t) => JSON.stringify({ token: t })).join("\n");
|
|
51
|
-
const dataBytes = new TextEncoder().encode(jsonlData);
|
|
52
|
-
const chunks = this.chunkBytes(dataBytes, this.config.maxChunkBytes);
|
|
53
|
-
for (let i = 0; i < chunks.length; i++) {
|
|
54
|
-
const chunkRes = await fetch(`${this.config.baseUrl}/sync/upload`, {
|
|
55
|
-
method: "POST",
|
|
56
|
-
headers: {
|
|
57
|
-
"X-Session-ID": session_id,
|
|
58
|
-
"X-Chunk-Index": i.toString(),
|
|
59
|
-
"Content-Type": "application/octet-stream"
|
|
60
|
-
},
|
|
61
|
-
body: chunks[i]
|
|
62
|
-
});
|
|
63
|
-
if (!chunkRes.ok) throw new Error(`Failed to upload chunk ${i}: ${chunkRes.statusText}`);
|
|
64
|
-
totalBytes += chunks[i].length;
|
|
65
|
-
}
|
|
66
|
-
const finalHashBytes = await this.sha256(dataBytes);
|
|
67
|
-
const finalHash = base64Encode(finalHashBytes);
|
|
68
|
-
const commitRes = await fetch(`${this.config.baseUrl}/sync/commit`, {
|
|
69
|
-
method: "POST",
|
|
70
|
-
headers: { "Content-Type": "application/json" },
|
|
71
|
-
body: JSON.stringify({
|
|
72
|
-
session_id,
|
|
73
|
-
final_hash: finalHash,
|
|
74
|
-
allow_expired: opts.allowExpired ?? true
|
|
75
|
-
})
|
|
76
|
-
});
|
|
77
|
-
if (!commitRes.ok) throw new Error(`Failed to commit: ${commitRes.statusText}`);
|
|
78
|
-
return {
|
|
79
|
-
success: true,
|
|
80
|
-
uploadedCount: tokens.length,
|
|
81
|
-
totalBytes,
|
|
82
|
-
sessionId: session_id
|
|
83
|
-
};
|
|
84
|
-
} catch (e) {
|
|
85
|
-
return {
|
|
86
|
-
success: false,
|
|
87
|
-
uploadedCount: 0,
|
|
88
|
-
totalBytes: 0,
|
|
89
|
-
error: e.message
|
|
90
|
-
};
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
chunkBytes(data, maxSize) {
|
|
94
|
-
const chunks = [];
|
|
95
|
-
for (let i = 0; i < data.length; i += maxSize) {
|
|
96
|
-
chunks.push(data.slice(i, i + maxSize));
|
|
97
|
-
}
|
|
98
|
-
return chunks;
|
|
99
|
-
}
|
|
100
|
-
};
|
|
101
|
-
export {
|
|
102
|
-
OESPSyncClient,
|
|
103
|
-
getSyncConfig
|
|
104
|
-
};
|
|
1
|
+
export * from "./SyncClient";
|
|
2
|
+
export * from "./env";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oesp/sync-http",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "OESP HTTP Sync Client",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@oesp/core": "
|
|
25
|
+
"@oesp/core": "6.0.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"tsup": "^8.0.1",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"vitest": "^1.6.0"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
|
-
"build": "
|
|
33
|
+
"build": "tsc -p tsconfig.build.json",
|
|
34
34
|
"test": "vitest run",
|
|
35
35
|
"lint": "tsc -p tsconfig.json --noEmit"
|
|
36
36
|
}
|
package/dist/index.cjs
DELETED
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
|
|
20
|
-
// src/index.ts
|
|
21
|
-
var index_exports = {};
|
|
22
|
-
__export(index_exports, {
|
|
23
|
-
OESPSyncClient: () => OESPSyncClient,
|
|
24
|
-
getSyncConfig: () => getSyncConfig
|
|
25
|
-
});
|
|
26
|
-
module.exports = __toCommonJS(index_exports);
|
|
27
|
-
|
|
28
|
-
// src/SyncClient.ts
|
|
29
|
-
var import_core = require("@oesp/core");
|
|
30
|
-
|
|
31
|
-
// src/env.ts
|
|
32
|
-
var import_meta = {};
|
|
33
|
-
function getSyncConfig(overrides = {}) {
|
|
34
|
-
const defaultBaseUrl = "http://oesp-sync-server:8000";
|
|
35
|
-
let envBaseUrl;
|
|
36
|
-
if (typeof process !== "undefined" && process.env?.OESP_SYNC_BASE_URL) {
|
|
37
|
-
envBaseUrl = process.env.OESP_SYNC_BASE_URL;
|
|
38
|
-
}
|
|
39
|
-
if (typeof import_meta !== "undefined" && import_meta.env?.VITE_OESP_SYNC_BASE_URL) {
|
|
40
|
-
envBaseUrl = import_meta.env.VITE_OESP_SYNC_BASE_URL;
|
|
41
|
-
}
|
|
42
|
-
return {
|
|
43
|
-
baseUrl: overrides.baseUrl || envBaseUrl || defaultBaseUrl,
|
|
44
|
-
apiKey: overrides.apiKey,
|
|
45
|
-
timeoutMs: overrides.timeoutMs || 3e4,
|
|
46
|
-
maxChunkBytes: overrides.maxChunkBytes || 5e5
|
|
47
|
-
// 500KB
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
// src/SyncClient.ts
|
|
52
|
-
var OESPSyncClient = class {
|
|
53
|
-
constructor(opts) {
|
|
54
|
-
this.config = getSyncConfig(opts);
|
|
55
|
-
this.sha256 = opts.sha256;
|
|
56
|
-
}
|
|
57
|
-
setBaseUrl(url) {
|
|
58
|
-
this.config.baseUrl = url;
|
|
59
|
-
}
|
|
60
|
-
/**
|
|
61
|
-
* Synchronise une liste de tokens vers le serveur
|
|
62
|
-
*/
|
|
63
|
-
async syncTokens(tokens, deviceDid, opts = {}) {
|
|
64
|
-
try {
|
|
65
|
-
const startRes = await fetch(`${this.config.baseUrl}/sync/start`, {
|
|
66
|
-
method: "POST",
|
|
67
|
-
headers: { "Content-Type": "application/json" },
|
|
68
|
-
body: JSON.stringify({
|
|
69
|
-
did: deviceDid,
|
|
70
|
-
pub: opts.devicePubB64,
|
|
71
|
-
meta: opts.clientMeta
|
|
72
|
-
})
|
|
73
|
-
});
|
|
74
|
-
if (!startRes.ok) throw new Error(`Failed to start sync: ${startRes.statusText}`);
|
|
75
|
-
const { session_id } = await startRes.json();
|
|
76
|
-
let uploadedCount = 0;
|
|
77
|
-
let totalBytes = 0;
|
|
78
|
-
const jsonlData = tokens.map((t) => JSON.stringify({ token: t })).join("\n");
|
|
79
|
-
const dataBytes = new TextEncoder().encode(jsonlData);
|
|
80
|
-
const chunks = this.chunkBytes(dataBytes, this.config.maxChunkBytes);
|
|
81
|
-
for (let i = 0; i < chunks.length; i++) {
|
|
82
|
-
const chunkRes = await fetch(`${this.config.baseUrl}/sync/upload`, {
|
|
83
|
-
method: "POST",
|
|
84
|
-
headers: {
|
|
85
|
-
"X-Session-ID": session_id,
|
|
86
|
-
"X-Chunk-Index": i.toString(),
|
|
87
|
-
"Content-Type": "application/octet-stream"
|
|
88
|
-
},
|
|
89
|
-
body: chunks[i]
|
|
90
|
-
});
|
|
91
|
-
if (!chunkRes.ok) throw new Error(`Failed to upload chunk ${i}: ${chunkRes.statusText}`);
|
|
92
|
-
totalBytes += chunks[i].length;
|
|
93
|
-
}
|
|
94
|
-
const finalHashBytes = await this.sha256(dataBytes);
|
|
95
|
-
const finalHash = (0, import_core.base64Encode)(finalHashBytes);
|
|
96
|
-
const commitRes = await fetch(`${this.config.baseUrl}/sync/commit`, {
|
|
97
|
-
method: "POST",
|
|
98
|
-
headers: { "Content-Type": "application/json" },
|
|
99
|
-
body: JSON.stringify({
|
|
100
|
-
session_id,
|
|
101
|
-
final_hash: finalHash,
|
|
102
|
-
allow_expired: opts.allowExpired ?? true
|
|
103
|
-
})
|
|
104
|
-
});
|
|
105
|
-
if (!commitRes.ok) throw new Error(`Failed to commit: ${commitRes.statusText}`);
|
|
106
|
-
return {
|
|
107
|
-
success: true,
|
|
108
|
-
uploadedCount: tokens.length,
|
|
109
|
-
totalBytes,
|
|
110
|
-
sessionId: session_id
|
|
111
|
-
};
|
|
112
|
-
} catch (e) {
|
|
113
|
-
return {
|
|
114
|
-
success: false,
|
|
115
|
-
uploadedCount: 0,
|
|
116
|
-
totalBytes: 0,
|
|
117
|
-
error: e.message
|
|
118
|
-
};
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
chunkBytes(data, maxSize) {
|
|
122
|
-
const chunks = [];
|
|
123
|
-
for (let i = 0; i < data.length; i += maxSize) {
|
|
124
|
-
chunks.push(data.slice(i, i + maxSize));
|
|
125
|
-
}
|
|
126
|
-
return chunks;
|
|
127
|
-
}
|
|
128
|
-
};
|
|
129
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
130
|
-
0 && (module.exports = {
|
|
131
|
-
OESPSyncClient,
|
|
132
|
-
getSyncConfig
|
|
133
|
-
});
|