@meistrari/tela-sdk-js 1.0.2 → 2.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/README.md +213 -89
- package/dist/index.cjs +1062 -110
- package/dist/index.d.cts +601 -428
- package/dist/index.d.mts +601 -428
- package/dist/index.d.ts +601 -428
- package/dist/index.mjs +1036 -111
- package/package.json +17 -7
package/dist/index.cjs
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
const changeCase = require('change-case');
|
|
4
4
|
const minimatch = require('minimatch');
|
|
5
|
+
const z = require('zod');
|
|
6
|
+
|
|
7
|
+
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e.default : e; }
|
|
5
8
|
|
|
6
9
|
function _interopNamespaceCompat(e) {
|
|
7
10
|
if (e && typeof e === 'object' && 'default' in e) return e;
|
|
@@ -16,13 +19,14 @@ function _interopNamespaceCompat(e) {
|
|
|
16
19
|
}
|
|
17
20
|
|
|
18
21
|
const changeCase__namespace = /*#__PURE__*/_interopNamespaceCompat(changeCase);
|
|
22
|
+
const z__default = /*#__PURE__*/_interopDefaultCompat(z);
|
|
19
23
|
|
|
20
|
-
const version = "
|
|
24
|
+
const version = "2.0.0";
|
|
21
25
|
|
|
22
|
-
var __defProp$
|
|
23
|
-
var __defNormalProp$
|
|
24
|
-
var __publicField$
|
|
25
|
-
__defNormalProp$
|
|
26
|
+
var __defProp$7 = Object.defineProperty;
|
|
27
|
+
var __defNormalProp$7 = (obj, key, value) => key in obj ? __defProp$7(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
28
|
+
var __publicField$7 = (obj, key, value) => {
|
|
29
|
+
__defNormalProp$7(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
26
30
|
return value;
|
|
27
31
|
};
|
|
28
32
|
class TelaError extends Error {
|
|
@@ -48,16 +52,35 @@ class InvalidFileURL extends TelaError {
|
|
|
48
52
|
}
|
|
49
53
|
}
|
|
50
54
|
class FileUploadError extends TelaError {
|
|
55
|
+
constructor(message, statusCode) {
|
|
56
|
+
super(`Failed to upload file: ${message} (Status code: ${statusCode})`);
|
|
57
|
+
__publicField$7(this, "statusCode");
|
|
58
|
+
this.statusCode = statusCode;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
class ExecutionNotStartedError extends TelaError {
|
|
62
|
+
constructor() {
|
|
63
|
+
super("Execution has not started yet");
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
class InvalidExecutionModeError extends TelaError {
|
|
51
67
|
constructor(message) {
|
|
52
|
-
super(
|
|
68
|
+
super(message);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
class ExecutionFailedError extends TelaError {
|
|
72
|
+
constructor(rawOutput) {
|
|
73
|
+
super(`Execution failed: ${JSON.stringify(rawOutput)}`);
|
|
74
|
+
__publicField$7(this, "rawOutput");
|
|
75
|
+
this.rawOutput = rawOutput;
|
|
53
76
|
}
|
|
54
77
|
}
|
|
55
78
|
class APIError extends TelaError {
|
|
56
79
|
constructor(statusCode, error, _message) {
|
|
57
80
|
const message = error?.message ? typeof error.message === "string" ? error.message : JSON.stringify(error.message) : error ? JSON.stringify(error) : _message;
|
|
58
81
|
super(message);
|
|
59
|
-
__publicField$
|
|
60
|
-
__publicField$
|
|
82
|
+
__publicField$7(this, "statusCode");
|
|
83
|
+
__publicField$7(this, "error");
|
|
61
84
|
this.statusCode = statusCode;
|
|
62
85
|
this.error = error;
|
|
63
86
|
}
|
|
@@ -99,7 +122,7 @@ class APIError extends TelaError {
|
|
|
99
122
|
class UserAbortError extends APIError {
|
|
100
123
|
constructor({ message } = {}) {
|
|
101
124
|
super(void 0, void 0, message || "User aborted.");
|
|
102
|
-
__publicField$
|
|
125
|
+
__publicField$7(this, "statusCode");
|
|
103
126
|
}
|
|
104
127
|
}
|
|
105
128
|
class ConnectionError extends APIError {
|
|
@@ -108,7 +131,7 @@ class ConnectionError extends APIError {
|
|
|
108
131
|
cause
|
|
109
132
|
}) {
|
|
110
133
|
super(void 0, void 0, message || "Connection error.");
|
|
111
|
-
__publicField$
|
|
134
|
+
__publicField$7(this, "statusCode");
|
|
112
135
|
if (cause)
|
|
113
136
|
this.cause = cause;
|
|
114
137
|
}
|
|
@@ -118,57 +141,57 @@ class ConnectionTimeout extends APIError {
|
|
|
118
141
|
message
|
|
119
142
|
} = {}) {
|
|
120
143
|
super(void 0, void 0, message || "Request timed out.");
|
|
121
|
-
__publicField$
|
|
144
|
+
__publicField$7(this, "statusCode");
|
|
122
145
|
}
|
|
123
146
|
}
|
|
124
147
|
class BadRequestError extends APIError {
|
|
125
148
|
constructor() {
|
|
126
149
|
super(...arguments);
|
|
127
|
-
__publicField$
|
|
150
|
+
__publicField$7(this, "statusCode", 400);
|
|
128
151
|
}
|
|
129
152
|
// todo: handle validation errors from zod/typebox
|
|
130
153
|
}
|
|
131
154
|
class AuthenticationError extends APIError {
|
|
132
155
|
constructor() {
|
|
133
156
|
super(...arguments);
|
|
134
|
-
__publicField$
|
|
157
|
+
__publicField$7(this, "statusCode", 401);
|
|
135
158
|
}
|
|
136
159
|
}
|
|
137
160
|
class AuthorizationError extends APIError {
|
|
138
161
|
constructor() {
|
|
139
162
|
super(...arguments);
|
|
140
|
-
__publicField$
|
|
163
|
+
__publicField$7(this, "statusCode", 403);
|
|
141
164
|
}
|
|
142
165
|
}
|
|
143
166
|
class NotFoundError extends APIError {
|
|
144
167
|
constructor() {
|
|
145
168
|
super(...arguments);
|
|
146
|
-
__publicField$
|
|
169
|
+
__publicField$7(this, "statusCode", 404);
|
|
147
170
|
}
|
|
148
171
|
}
|
|
149
172
|
class ConflictError extends APIError {
|
|
150
173
|
constructor() {
|
|
151
174
|
super(...arguments);
|
|
152
|
-
__publicField$
|
|
175
|
+
__publicField$7(this, "statusCode", 409);
|
|
153
176
|
}
|
|
154
177
|
}
|
|
155
178
|
class UnprocessableEntityError extends APIError {
|
|
156
179
|
constructor() {
|
|
157
180
|
super(...arguments);
|
|
158
181
|
// todo: check if tela returns 400 or 422 for zod errors
|
|
159
|
-
__publicField$
|
|
182
|
+
__publicField$7(this, "statusCode", 422);
|
|
160
183
|
}
|
|
161
184
|
}
|
|
162
185
|
class RateLimitError extends APIError {
|
|
163
186
|
constructor() {
|
|
164
187
|
super(...arguments);
|
|
165
|
-
__publicField$
|
|
188
|
+
__publicField$7(this, "statusCode", 429);
|
|
166
189
|
}
|
|
167
190
|
}
|
|
168
191
|
class InternalServerError extends APIError {
|
|
169
192
|
constructor() {
|
|
170
193
|
super(...arguments);
|
|
171
|
-
__publicField$
|
|
194
|
+
__publicField$7(this, "statusCode", 500);
|
|
172
195
|
}
|
|
173
196
|
}
|
|
174
197
|
function toError(err) {
|
|
@@ -280,10 +303,10 @@ function transformObjectFromSnakeCaseToCamelCase(obj, exclusions = []) {
|
|
|
280
303
|
return result;
|
|
281
304
|
}
|
|
282
305
|
|
|
283
|
-
var __defProp$
|
|
284
|
-
var __defNormalProp$
|
|
285
|
-
var __publicField$
|
|
286
|
-
__defNormalProp$
|
|
306
|
+
var __defProp$6 = Object.defineProperty;
|
|
307
|
+
var __defNormalProp$6 = (obj, key, value) => key in obj ? __defProp$6(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
308
|
+
var __publicField$6 = (obj, key, value) => {
|
|
309
|
+
__defNormalProp$6(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
287
310
|
return value;
|
|
288
311
|
};
|
|
289
312
|
class Stream {
|
|
@@ -298,7 +321,7 @@ class Stream {
|
|
|
298
321
|
/**
|
|
299
322
|
* The AbortController associated with this stream.
|
|
300
323
|
*/
|
|
301
|
-
__publicField$
|
|
324
|
+
__publicField$6(this, "controller");
|
|
302
325
|
this.controller = controller;
|
|
303
326
|
}
|
|
304
327
|
/**
|
|
@@ -339,6 +362,10 @@ class Stream {
|
|
|
339
362
|
if (data && data.error) {
|
|
340
363
|
throw new APIError(void 0, data.error, void 0);
|
|
341
364
|
}
|
|
365
|
+
data = data.message.content;
|
|
366
|
+
if (!data) {
|
|
367
|
+
continue;
|
|
368
|
+
}
|
|
342
369
|
yield data;
|
|
343
370
|
} else {
|
|
344
371
|
let data;
|
|
@@ -352,6 +379,10 @@ class Stream {
|
|
|
352
379
|
if (sse.event === "error") {
|
|
353
380
|
throw new APIError(void 0, data.error, data.message);
|
|
354
381
|
}
|
|
382
|
+
data = data.message.content;
|
|
383
|
+
if (!data) {
|
|
384
|
+
continue;
|
|
385
|
+
}
|
|
355
386
|
yield { event: sse.event, data };
|
|
356
387
|
}
|
|
357
388
|
}
|
|
@@ -541,9 +572,9 @@ function findDoubleNewlineIndex(buffer) {
|
|
|
541
572
|
}
|
|
542
573
|
class SSEDecoder {
|
|
543
574
|
constructor() {
|
|
544
|
-
__publicField$
|
|
545
|
-
__publicField$
|
|
546
|
-
__publicField$
|
|
575
|
+
__publicField$6(this, "data");
|
|
576
|
+
__publicField$6(this, "event");
|
|
577
|
+
__publicField$6(this, "chunks");
|
|
547
578
|
this.event = null;
|
|
548
579
|
this.data = [];
|
|
549
580
|
this.chunks = [];
|
|
@@ -584,9 +615,9 @@ class SSEDecoder {
|
|
|
584
615
|
const _LineDecoder = class _LineDecoder {
|
|
585
616
|
// TextDecoder found in browsers; not typed to avoid pulling in either "dom" or "node" types.
|
|
586
617
|
constructor() {
|
|
587
|
-
__publicField$
|
|
588
|
-
__publicField$
|
|
589
|
-
__publicField$
|
|
618
|
+
__publicField$6(this, "buffer");
|
|
619
|
+
__publicField$6(this, "trailingCR");
|
|
620
|
+
__publicField$6(this, "textDecoder");
|
|
590
621
|
this.buffer = [];
|
|
591
622
|
this.trailingCR = false;
|
|
592
623
|
}
|
|
@@ -661,8 +692,8 @@ const _LineDecoder = class _LineDecoder {
|
|
|
661
692
|
}
|
|
662
693
|
};
|
|
663
694
|
// prettier-ignore
|
|
664
|
-
__publicField$
|
|
665
|
-
__publicField$
|
|
695
|
+
__publicField$6(_LineDecoder, "NEWLINE_CHARS", /* @__PURE__ */ new Set(["\n", "\r"]));
|
|
696
|
+
__publicField$6(_LineDecoder, "NEWLINE_REGEXP", /\r\n|[\n\r]/g);
|
|
666
697
|
let LineDecoder = _LineDecoder;
|
|
667
698
|
function partition(str, delimiter) {
|
|
668
699
|
const index = str.indexOf(delimiter);
|
|
@@ -699,10 +730,10 @@ function readableStreamAsyncIterable(stream) {
|
|
|
699
730
|
};
|
|
700
731
|
}
|
|
701
732
|
|
|
702
|
-
var __defProp$
|
|
703
|
-
var __defNormalProp$
|
|
704
|
-
var __publicField$
|
|
705
|
-
__defNormalProp$
|
|
733
|
+
var __defProp$5 = Object.defineProperty;
|
|
734
|
+
var __defNormalProp$5 = (obj, key, value) => key in obj ? __defProp$5(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
735
|
+
var __publicField$5 = (obj, key, value) => {
|
|
736
|
+
__defNormalProp$5(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
706
737
|
return value;
|
|
707
738
|
};
|
|
708
739
|
async function defaultParseResponse(props) {
|
|
@@ -727,10 +758,10 @@ async function defaultParseResponse(props) {
|
|
|
727
758
|
}
|
|
728
759
|
class BaseClient {
|
|
729
760
|
constructor({ baseURL, maxRetries = 5, timeout = 0 }) {
|
|
730
|
-
__publicField$
|
|
731
|
-
__publicField$
|
|
732
|
-
__publicField$
|
|
733
|
-
__publicField$
|
|
761
|
+
__publicField$5(this, "baseURL");
|
|
762
|
+
__publicField$5(this, "maxRetries");
|
|
763
|
+
__publicField$5(this, "timeout");
|
|
764
|
+
__publicField$5(this, "fetch");
|
|
734
765
|
this.baseURL = baseURL;
|
|
735
766
|
this.maxRetries = validateMaxRetries(maxRetries);
|
|
736
767
|
this.timeout = validateTimeout(timeout);
|
|
@@ -752,9 +783,6 @@ class BaseClient {
|
|
|
752
783
|
getUserAgent() {
|
|
753
784
|
return `tela-sdk-node/${version}`;
|
|
754
785
|
}
|
|
755
|
-
getAuthHeaders() {
|
|
756
|
-
return {};
|
|
757
|
-
}
|
|
758
786
|
get(path, opts) {
|
|
759
787
|
return this.methodRequest("GET", path, opts);
|
|
760
788
|
}
|
|
@@ -1007,12 +1035,15 @@ async function getStreamSize(stream) {
|
|
|
1007
1035
|
return size;
|
|
1008
1036
|
}
|
|
1009
1037
|
|
|
1010
|
-
var __defProp$
|
|
1011
|
-
var __defNormalProp$
|
|
1012
|
-
var __publicField$
|
|
1013
|
-
__defNormalProp$
|
|
1038
|
+
var __defProp$4 = Object.defineProperty;
|
|
1039
|
+
var __defNormalProp$4 = (obj, key, value) => key in obj ? __defProp$4(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1040
|
+
var __publicField$4 = (obj, key, value) => {
|
|
1041
|
+
__defNormalProp$4(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
1014
1042
|
return value;
|
|
1015
1043
|
};
|
|
1044
|
+
function TelaFileSchema() {
|
|
1045
|
+
return z__default.custom((value) => value instanceof TelaFile, { message: "Value must be an instance of TelaFile" }).meta({ isTelaFile: true });
|
|
1046
|
+
}
|
|
1016
1047
|
class TelaFile {
|
|
1017
1048
|
/**
|
|
1018
1049
|
* Creates an instance of `TelaFile`.
|
|
@@ -1022,14 +1053,31 @@ class TelaFile {
|
|
|
1022
1053
|
* @throws {InvalidFileURL} If the provided URL is not valid.
|
|
1023
1054
|
* @throws {EmptyFileError} If the provided file is empty.
|
|
1024
1055
|
*/
|
|
1025
|
-
constructor(file, options) {
|
|
1026
|
-
__publicField$
|
|
1027
|
-
__publicField$
|
|
1028
|
-
__publicField$
|
|
1056
|
+
constructor(file, options = {}) {
|
|
1057
|
+
__publicField$4(this, "_file");
|
|
1058
|
+
__publicField$4(this, "_options");
|
|
1059
|
+
__publicField$4(this, "_size", null);
|
|
1060
|
+
__publicField$4(this, "_mimeType");
|
|
1061
|
+
__publicField$4(this, "_name");
|
|
1029
1062
|
this._file = file;
|
|
1063
|
+
if (file instanceof File || file instanceof Blob) {
|
|
1064
|
+
this._size = file.size;
|
|
1065
|
+
}
|
|
1066
|
+
if (file instanceof File || file instanceof Blob) {
|
|
1067
|
+
this._mimeType = file.type;
|
|
1068
|
+
}
|
|
1069
|
+
if ("name" in options) {
|
|
1070
|
+
this._name = options.name;
|
|
1071
|
+
}
|
|
1072
|
+
if ("mimeType" in options) {
|
|
1073
|
+
this._mimeType = options.mimeType;
|
|
1074
|
+
}
|
|
1030
1075
|
this._options = options;
|
|
1031
1076
|
this.validateFile();
|
|
1032
1077
|
}
|
|
1078
|
+
static create(file, options) {
|
|
1079
|
+
return new TelaFile(file, options);
|
|
1080
|
+
}
|
|
1033
1081
|
/**
|
|
1034
1082
|
* Retrieves the options provided during instantiation.
|
|
1035
1083
|
*
|
|
@@ -1044,7 +1092,15 @@ class TelaFile {
|
|
|
1044
1092
|
* @returns `true` if the file source is a valid URL string, otherwise `false`.
|
|
1045
1093
|
*/
|
|
1046
1094
|
get isURL() {
|
|
1047
|
-
return
|
|
1095
|
+
return this.isValidURL(this._file);
|
|
1096
|
+
}
|
|
1097
|
+
/**
|
|
1098
|
+
* Determines whether the file source is a valid Vault reference.
|
|
1099
|
+
*
|
|
1100
|
+
* @returns `true` if the file source is a valid Vault reference, otherwise `false`.
|
|
1101
|
+
*/
|
|
1102
|
+
get isVaultReference() {
|
|
1103
|
+
return this.isValidVaultReference(this._file);
|
|
1048
1104
|
}
|
|
1049
1105
|
/**
|
|
1050
1106
|
* Gets the size of the file in bytes.
|
|
@@ -1054,6 +1110,22 @@ class TelaFile {
|
|
|
1054
1110
|
get size() {
|
|
1055
1111
|
return this._size;
|
|
1056
1112
|
}
|
|
1113
|
+
/**
|
|
1114
|
+
* Gets the name of the file.
|
|
1115
|
+
*
|
|
1116
|
+
* @returns The name of the file if available, otherwise `null`.
|
|
1117
|
+
*/
|
|
1118
|
+
get name() {
|
|
1119
|
+
return this._name ?? null;
|
|
1120
|
+
}
|
|
1121
|
+
/**
|
|
1122
|
+
* Gets the type of the file.
|
|
1123
|
+
*
|
|
1124
|
+
* @returns The type of the file if available, otherwise `null`.
|
|
1125
|
+
*/
|
|
1126
|
+
get type() {
|
|
1127
|
+
return this._mimeType ?? null;
|
|
1128
|
+
}
|
|
1057
1129
|
/**
|
|
1058
1130
|
* Retrieves the content of the file in a format suitable for uploading.
|
|
1059
1131
|
*
|
|
@@ -1064,11 +1136,11 @@ class TelaFile {
|
|
|
1064
1136
|
* @returns A promise that resolves to the uploadable content.
|
|
1065
1137
|
*/
|
|
1066
1138
|
async getUploadableContent() {
|
|
1067
|
-
if (this.
|
|
1139
|
+
if (this.isValidURL(this._file) || this.isValidVaultReference(this._file)) {
|
|
1068
1140
|
return this._file;
|
|
1069
1141
|
}
|
|
1070
1142
|
if (this._file instanceof Uint8Array) {
|
|
1071
|
-
return new File([this._file], "file", {
|
|
1143
|
+
return new File([this._file.buffer], "file", {
|
|
1072
1144
|
type: "application/octet-stream"
|
|
1073
1145
|
});
|
|
1074
1146
|
}
|
|
@@ -1109,6 +1181,9 @@ class TelaFile {
|
|
|
1109
1181
|
* @returns `true` if the URL is valid, otherwise `false`.
|
|
1110
1182
|
*/
|
|
1111
1183
|
isValidURL(url) {
|
|
1184
|
+
if (typeof url !== "string") {
|
|
1185
|
+
return false;
|
|
1186
|
+
}
|
|
1112
1187
|
try {
|
|
1113
1188
|
new URL(url);
|
|
1114
1189
|
return true;
|
|
@@ -1116,43 +1191,604 @@ class TelaFile {
|
|
|
1116
1191
|
return false;
|
|
1117
1192
|
}
|
|
1118
1193
|
}
|
|
1194
|
+
/**
|
|
1195
|
+
* Checks if the provided string is a valid Vault reference.
|
|
1196
|
+
*
|
|
1197
|
+
* @param url - The Vault reference string to validate.
|
|
1198
|
+
* @returns `true` if the Vault reference is valid, otherwise `false`.
|
|
1199
|
+
*/
|
|
1200
|
+
isValidVaultReference(url) {
|
|
1201
|
+
if (typeof url !== "string") {
|
|
1202
|
+
return false;
|
|
1203
|
+
}
|
|
1204
|
+
return url.startsWith("vault://");
|
|
1205
|
+
}
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
function compareSchemas(clientSchema, serverSchema, path = "$") {
|
|
1209
|
+
const mismatches = [];
|
|
1210
|
+
if (clientSchema.type !== serverSchema.type) {
|
|
1211
|
+
mismatches.push({
|
|
1212
|
+
path,
|
|
1213
|
+
issue: `Type mismatch: client has "${clientSchema.type}", server has "${serverSchema.type}"`
|
|
1214
|
+
});
|
|
1215
|
+
return mismatches;
|
|
1216
|
+
}
|
|
1217
|
+
if (clientSchema.type === "object") {
|
|
1218
|
+
const clientProps = clientSchema.properties || {};
|
|
1219
|
+
const serverProps = serverSchema.properties || {};
|
|
1220
|
+
const clientRequired = clientSchema.required || [];
|
|
1221
|
+
const serverRequired = serverSchema.required || [];
|
|
1222
|
+
for (const reqProp of serverRequired) {
|
|
1223
|
+
if (!clientProps[reqProp]) {
|
|
1224
|
+
mismatches.push({
|
|
1225
|
+
path: `${path}.${reqProp}`,
|
|
1226
|
+
issue: `Property is required on server but missing on client`
|
|
1227
|
+
});
|
|
1228
|
+
continue;
|
|
1229
|
+
}
|
|
1230
|
+
if (!clientRequired.includes(reqProp)) {
|
|
1231
|
+
mismatches.push({
|
|
1232
|
+
path: `${path}.${reqProp}`,
|
|
1233
|
+
issue: `Property is required on server but optional on client`
|
|
1234
|
+
});
|
|
1235
|
+
}
|
|
1236
|
+
}
|
|
1237
|
+
for (const clientProp of Object.keys(clientProps)) {
|
|
1238
|
+
if (!serverProps[clientProp]) {
|
|
1239
|
+
mismatches.push({
|
|
1240
|
+
path: `${path}.${clientProp}`,
|
|
1241
|
+
issue: `Extra property not expected by server`
|
|
1242
|
+
});
|
|
1243
|
+
}
|
|
1244
|
+
}
|
|
1245
|
+
for (const prop of Object.keys(serverProps)) {
|
|
1246
|
+
if (!clientProps[prop]) {
|
|
1247
|
+
continue;
|
|
1248
|
+
}
|
|
1249
|
+
const nestedMismatches = compareSchemas(
|
|
1250
|
+
clientProps[prop],
|
|
1251
|
+
serverProps[prop],
|
|
1252
|
+
`${path}.${prop}`
|
|
1253
|
+
);
|
|
1254
|
+
mismatches.push(...nestedMismatches);
|
|
1255
|
+
}
|
|
1256
|
+
}
|
|
1257
|
+
if (clientSchema.type === "array") {
|
|
1258
|
+
const clientItems = clientSchema.items;
|
|
1259
|
+
const serverItems = serverSchema.items;
|
|
1260
|
+
if (!clientItems || !serverItems) {
|
|
1261
|
+
if (clientItems !== serverItems) {
|
|
1262
|
+
mismatches.push({
|
|
1263
|
+
path: `${path}[]`,
|
|
1264
|
+
issue: `Array items schema mismatch: one side has items definition, other doesn't`
|
|
1265
|
+
});
|
|
1266
|
+
}
|
|
1267
|
+
return mismatches;
|
|
1268
|
+
}
|
|
1269
|
+
const itemMismatches = compareSchemas(
|
|
1270
|
+
clientItems,
|
|
1271
|
+
serverItems,
|
|
1272
|
+
`${path}[]`
|
|
1273
|
+
);
|
|
1274
|
+
mismatches.push(...itemMismatches);
|
|
1275
|
+
}
|
|
1276
|
+
return mismatches;
|
|
1119
1277
|
}
|
|
1120
|
-
function
|
|
1121
|
-
|
|
1278
|
+
function mapServerTypeToJsonSchemaType(serverType) {
|
|
1279
|
+
const typeMap = {
|
|
1280
|
+
text: "string",
|
|
1281
|
+
number: "number",
|
|
1282
|
+
boolean: "boolean",
|
|
1283
|
+
file: "string",
|
|
1284
|
+
// z.file() generates type: "string" with format: "binary", contentEncoding: "binary"
|
|
1285
|
+
array: "array",
|
|
1286
|
+
object: "object"
|
|
1287
|
+
};
|
|
1288
|
+
return typeMap[serverType.toLowerCase()] || null;
|
|
1289
|
+
}
|
|
1290
|
+
function validateInputSchema(clientSchema, serverVariables) {
|
|
1291
|
+
const mismatches = [];
|
|
1292
|
+
const clientProps = clientSchema.properties || {};
|
|
1293
|
+
const clientRequired = clientSchema.required || [];
|
|
1294
|
+
for (const serverVar of serverVariables) {
|
|
1295
|
+
if (serverVar.required) {
|
|
1296
|
+
if (!clientProps[serverVar.name]) {
|
|
1297
|
+
mismatches.push({
|
|
1298
|
+
path: `$.${serverVar.name}`,
|
|
1299
|
+
issue: `Property is required on server but missing on client`
|
|
1300
|
+
});
|
|
1301
|
+
continue;
|
|
1302
|
+
}
|
|
1303
|
+
if (!clientRequired.includes(serverVar.name)) {
|
|
1304
|
+
mismatches.push({
|
|
1305
|
+
path: `$.${serverVar.name}`,
|
|
1306
|
+
issue: `Variable is required on server but optional on client`
|
|
1307
|
+
});
|
|
1308
|
+
}
|
|
1309
|
+
}
|
|
1310
|
+
if (!clientProps[serverVar.name]) {
|
|
1311
|
+
continue;
|
|
1312
|
+
}
|
|
1313
|
+
{
|
|
1314
|
+
const clientProp = clientProps[serverVar.name];
|
|
1315
|
+
const clientType = clientProp.type;
|
|
1316
|
+
const expectedType = mapServerTypeToJsonSchemaType(serverVar.type);
|
|
1317
|
+
if (serverVar.type.toLowerCase() === "file") {
|
|
1318
|
+
const isFileSchema = clientProp.isTelaFile;
|
|
1319
|
+
if (isFileSchema) {
|
|
1320
|
+
continue;
|
|
1321
|
+
}
|
|
1322
|
+
if (clientProp.format === "binary") {
|
|
1323
|
+
mismatches.push({
|
|
1324
|
+
path: `$.${serverVar.name}`,
|
|
1325
|
+
issue: `Type mismatch: file is expected to be a \`telaFile()\` but is a regular file instead.`
|
|
1326
|
+
});
|
|
1327
|
+
continue;
|
|
1328
|
+
}
|
|
1329
|
+
if (clientType === "string" && !clientProp.format && !clientProp.contentEncoding) {
|
|
1330
|
+
mismatches.push({
|
|
1331
|
+
path: `$.${serverVar.name}`,
|
|
1332
|
+
issue: `Type mismatch: server expects file, client has plain string. Did you mean to use \`telaFile()\`?`
|
|
1333
|
+
});
|
|
1334
|
+
continue;
|
|
1335
|
+
}
|
|
1336
|
+
mismatches.push({
|
|
1337
|
+
path: `$.${serverVar.name}`,
|
|
1338
|
+
issue: `Type mismatch: server expects file, client has "${clientType}"`
|
|
1339
|
+
});
|
|
1340
|
+
continue;
|
|
1341
|
+
}
|
|
1342
|
+
if (expectedType && clientType !== expectedType) {
|
|
1343
|
+
mismatches.push({
|
|
1344
|
+
path: `$.${serverVar.name}`,
|
|
1345
|
+
issue: `Type mismatch: server expects "${serverVar.type}", client has "${clientType}"`
|
|
1346
|
+
});
|
|
1347
|
+
}
|
|
1348
|
+
}
|
|
1349
|
+
}
|
|
1350
|
+
const serverVarNames = serverVariables.map((v) => v.name);
|
|
1351
|
+
for (const clientProp of Object.keys(clientProps)) {
|
|
1352
|
+
if (!serverVarNames.includes(clientProp)) {
|
|
1353
|
+
mismatches.push({
|
|
1354
|
+
path: `$.${clientProp}`,
|
|
1355
|
+
issue: `Extra property not expected by server`
|
|
1356
|
+
});
|
|
1357
|
+
}
|
|
1358
|
+
}
|
|
1359
|
+
return mismatches;
|
|
1360
|
+
}
|
|
1361
|
+
function validateOutputSchema(clientSchema, serverSchema) {
|
|
1362
|
+
return compareSchemas(clientSchema, serverSchema);
|
|
1122
1363
|
}
|
|
1123
1364
|
|
|
1124
|
-
var __defProp$
|
|
1125
|
-
var __defNormalProp$
|
|
1126
|
-
var __publicField$
|
|
1127
|
-
__defNormalProp$
|
|
1365
|
+
var __defProp$3 = Object.defineProperty;
|
|
1366
|
+
var __defNormalProp$3 = (obj, key, value) => key in obj ? __defProp$3(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1367
|
+
var __publicField$3 = (obj, key, value) => {
|
|
1368
|
+
__defNormalProp$3(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
1128
1369
|
return value;
|
|
1129
1370
|
};
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1371
|
+
function timeout(ms, signal) {
|
|
1372
|
+
return new Promise((resolve, reject) => {
|
|
1373
|
+
const timer = setTimeout(resolve, ms);
|
|
1374
|
+
if (signal) {
|
|
1375
|
+
signal.addEventListener("abort", () => {
|
|
1376
|
+
clearTimeout(timer);
|
|
1377
|
+
reject(signal.reason);
|
|
1378
|
+
}, { once: true });
|
|
1379
|
+
}
|
|
1380
|
+
});
|
|
1381
|
+
}
|
|
1382
|
+
class Poller {
|
|
1383
|
+
constructor({ interval, timeout: timeout2, abortSignal }) {
|
|
1384
|
+
__publicField$3(this, "_interval");
|
|
1385
|
+
__publicField$3(this, "_timeout");
|
|
1386
|
+
__publicField$3(this, "_abortSignal");
|
|
1387
|
+
__publicField$3(this, "_internalAbortController");
|
|
1388
|
+
if (interval <= 0) {
|
|
1389
|
+
throw new TelaError("Interval must be greater than 0");
|
|
1390
|
+
}
|
|
1391
|
+
if (timeout2 <= 0) {
|
|
1392
|
+
throw new TelaError("Timeout must be greater than 0");
|
|
1393
|
+
}
|
|
1394
|
+
this._interval = interval;
|
|
1395
|
+
this._timeout = timeout2;
|
|
1396
|
+
this._abortSignal = abortSignal ?? new AbortController().signal;
|
|
1397
|
+
this._internalAbortController = new AbortController();
|
|
1398
|
+
}
|
|
1399
|
+
async startTimeout() {
|
|
1400
|
+
await timeout(this._timeout, this._internalAbortController.signal);
|
|
1401
|
+
throw new ConnectionTimeout({
|
|
1402
|
+
message: `Reached timeout of ${this._timeout}ms when polling`
|
|
1403
|
+
});
|
|
1404
|
+
}
|
|
1405
|
+
/**
|
|
1406
|
+
* Starts the polling operation, repeatedly calling the callback until completion.
|
|
1407
|
+
* The callback is invoked at the configured interval and must return a PollerResult
|
|
1408
|
+
* indicating whether polling should continue or if the final value is ready.
|
|
1409
|
+
*
|
|
1410
|
+
* @param callback - Function called on each polling iteration.
|
|
1411
|
+
* @returns A promise resolving to the final result value.
|
|
1412
|
+
* @throws {Error} If the polling operation times out.
|
|
1413
|
+
* @throws {Error} If the operation is aborted via the AbortSignal.
|
|
1414
|
+
* @throws Any error thrown by the callback function.
|
|
1415
|
+
*
|
|
1416
|
+
* @example
|
|
1417
|
+
* ```typescript
|
|
1418
|
+
* const result = await poller.start(async (signal) => {
|
|
1419
|
+
* const response = await fetch('/api/status', { signal });
|
|
1420
|
+
* const data = await response.json();
|
|
1421
|
+
*
|
|
1422
|
+
* if (data.status === 'completed') {
|
|
1423
|
+
* return { done: true, value: data.result };
|
|
1424
|
+
* }
|
|
1425
|
+
* return { done: false };
|
|
1426
|
+
* });
|
|
1427
|
+
* ```
|
|
1428
|
+
*/
|
|
1429
|
+
start(callback) {
|
|
1430
|
+
const resultPromise = async () => {
|
|
1431
|
+
try {
|
|
1432
|
+
while (!this._abortSignal.aborted) {
|
|
1433
|
+
const result = await Promise.try(callback, this._abortSignal);
|
|
1434
|
+
if (result.done) {
|
|
1435
|
+
return result.value;
|
|
1436
|
+
}
|
|
1437
|
+
await timeout(this._interval, this._abortSignal);
|
|
1438
|
+
}
|
|
1439
|
+
throw new UserAbortError({ message: "Polling aborted" });
|
|
1440
|
+
} finally {
|
|
1441
|
+
this._internalAbortController.abort();
|
|
1442
|
+
}
|
|
1443
|
+
};
|
|
1444
|
+
return Promise.race([this.startTimeout(), resultPromise()]);
|
|
1134
1445
|
}
|
|
1135
1446
|
}
|
|
1136
1447
|
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1448
|
+
async function calculateSha256sum(content) {
|
|
1449
|
+
const stream = content instanceof File || content instanceof Blob ? content.stream() : content;
|
|
1450
|
+
const reader = stream.getReader();
|
|
1451
|
+
try {
|
|
1452
|
+
const { createHash } = await import('node:crypto');
|
|
1453
|
+
const hash = createHash("sha256");
|
|
1454
|
+
while (true) {
|
|
1455
|
+
const { done, value } = await reader.read();
|
|
1456
|
+
if (done)
|
|
1457
|
+
break;
|
|
1458
|
+
hash.update(value);
|
|
1459
|
+
}
|
|
1460
|
+
return hash.digest("hex");
|
|
1461
|
+
} catch {
|
|
1462
|
+
const chunks = [];
|
|
1463
|
+
while (true) {
|
|
1464
|
+
const { done, value } = await reader.read();
|
|
1465
|
+
if (done)
|
|
1466
|
+
break;
|
|
1467
|
+
chunks.push(value);
|
|
1468
|
+
}
|
|
1469
|
+
const totalLength = chunks.reduce((acc, chunk) => acc + chunk.length, 0);
|
|
1470
|
+
const buffer = new Uint8Array(totalLength);
|
|
1471
|
+
let offset = 0;
|
|
1472
|
+
for (const chunk of chunks) {
|
|
1473
|
+
buffer.set(chunk, offset);
|
|
1474
|
+
offset += chunk.length;
|
|
1475
|
+
}
|
|
1476
|
+
const hashBuffer = await crypto.subtle.digest("SHA-256", buffer);
|
|
1477
|
+
const hashArray = Array.from(new Uint8Array(hashBuffer));
|
|
1478
|
+
const hashHex = hashArray.map((b) => b.toString(16).padStart(2, "0")).join("");
|
|
1479
|
+
return hashHex;
|
|
1480
|
+
}
|
|
1481
|
+
}
|
|
1482
|
+
|
|
1483
|
+
var __defProp$2 = Object.defineProperty;
|
|
1484
|
+
var __defNormalProp$2 = (obj, key, value) => key in obj ? __defProp$2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1485
|
+
var __publicField$2 = (obj, key, value) => {
|
|
1486
|
+
__defNormalProp$2(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
1487
|
+
return value;
|
|
1488
|
+
};
|
|
1489
|
+
function isTelaFile(obj) {
|
|
1490
|
+
return obj instanceof TelaFile;
|
|
1491
|
+
}
|
|
1492
|
+
function isTelaFileArray(obj) {
|
|
1493
|
+
return Array.isArray(obj) && obj.length > 0 && obj.every(isTelaFile);
|
|
1494
|
+
}
|
|
1495
|
+
class CanvasExecution {
|
|
1496
|
+
/**
|
|
1497
|
+
* Creates a new canvas execution instance.
|
|
1498
|
+
*
|
|
1499
|
+
* @param variables - Input variables to be passed to the canvas template.
|
|
1500
|
+
* @param params - Execution parameters controlling sync/async/stream behavior.
|
|
1501
|
+
* @param outputSchema - Zod schema or object schema for validating/parsing output.
|
|
1502
|
+
* @param client - HTTP client instance for making API requests.
|
|
1503
|
+
*/
|
|
1504
|
+
constructor(variables, params = { async: false }, outputSchema, client) {
|
|
1505
|
+
__publicField$2(this, "_id");
|
|
1506
|
+
__publicField$2(this, "_variables");
|
|
1507
|
+
__publicField$2(this, "_params");
|
|
1508
|
+
__publicField$2(this, "_client");
|
|
1509
|
+
__publicField$2(this, "_outputSchema");
|
|
1510
|
+
__publicField$2(this, "_skipResultValidation");
|
|
1511
|
+
__publicField$2(this, "_abortController");
|
|
1512
|
+
__publicField$2(this, "_startPropmise");
|
|
1513
|
+
__publicField$2(this, "_resultPromise");
|
|
1514
|
+
__publicField$2(this, "_stream");
|
|
1515
|
+
this._variables = variables;
|
|
1516
|
+
this._params = params;
|
|
1517
|
+
this._outputSchema = outputSchema;
|
|
1518
|
+
this._skipResultValidation = params.skipResultValidation ?? false;
|
|
1519
|
+
this._client = client;
|
|
1520
|
+
this._abortController = new AbortController();
|
|
1521
|
+
}
|
|
1522
|
+
/**
|
|
1523
|
+
* Gets the unique execution ID assigned by the server.
|
|
1524
|
+
*
|
|
1525
|
+
* @throws {Error} If the execution has not been started yet.
|
|
1526
|
+
* @returns The execution ID.
|
|
1527
|
+
*/
|
|
1528
|
+
get id() {
|
|
1529
|
+
if (!this._id) {
|
|
1530
|
+
throw new ExecutionNotStartedError();
|
|
1531
|
+
}
|
|
1532
|
+
return this._id;
|
|
1533
|
+
}
|
|
1534
|
+
/**
|
|
1535
|
+
* Gets the input variables provided to this execution.
|
|
1536
|
+
*
|
|
1537
|
+
* @returns The variables object.
|
|
1538
|
+
*/
|
|
1539
|
+
get variables() {
|
|
1540
|
+
return this._variables;
|
|
1541
|
+
}
|
|
1542
|
+
/**
|
|
1543
|
+
* Gets the execution parameters configured for this instance.
|
|
1544
|
+
*
|
|
1545
|
+
* @returns The execution parameters or undefined.
|
|
1546
|
+
*/
|
|
1547
|
+
get params() {
|
|
1548
|
+
return this._params;
|
|
1549
|
+
}
|
|
1550
|
+
/**
|
|
1551
|
+
* Checks if this execution is configured for asynchronous processing.
|
|
1552
|
+
*
|
|
1553
|
+
* @returns True if async mode is enabled.
|
|
1554
|
+
*/
|
|
1555
|
+
get isAsync() {
|
|
1556
|
+
return this._isAsync(this._params);
|
|
1557
|
+
}
|
|
1558
|
+
/**
|
|
1559
|
+
* Checks if this execution is configured for synchronous processing.
|
|
1560
|
+
*
|
|
1561
|
+
* @returns True if sync mode is enabled (not async).
|
|
1562
|
+
*/
|
|
1563
|
+
get isSync() {
|
|
1564
|
+
return !this._isAsync(this._params) && !this.isStream;
|
|
1565
|
+
}
|
|
1566
|
+
/**
|
|
1567
|
+
* Checks if this execution is configured for streaming responses.
|
|
1568
|
+
*
|
|
1569
|
+
* @returns True if stream mode is enabled.
|
|
1570
|
+
*/
|
|
1571
|
+
get isStream() {
|
|
1572
|
+
return Boolean(this._params.stream);
|
|
1573
|
+
}
|
|
1574
|
+
/**
|
|
1575
|
+
* Type guard to check if params indicate async execution.
|
|
1576
|
+
*
|
|
1577
|
+
* @param params - Execution parameters to check.
|
|
1578
|
+
* @returns True if params indicate async mode.
|
|
1579
|
+
*/
|
|
1580
|
+
_isAsync(params) {
|
|
1581
|
+
return Boolean(params.async);
|
|
1582
|
+
}
|
|
1583
|
+
/**
|
|
1584
|
+
* Starts the execution based on configured parameters.
|
|
1585
|
+
* Routes to the appropriate execution method (sync, async, or stream).
|
|
1586
|
+
*
|
|
1587
|
+
* @returns A promise or async generator depending on execution mode.
|
|
1588
|
+
*/
|
|
1589
|
+
start() {
|
|
1590
|
+
if (this._resultPromise || this._stream) {
|
|
1591
|
+
return this._resultPromise ?? this._stream;
|
|
1592
|
+
}
|
|
1593
|
+
if (this._params.stream) {
|
|
1594
|
+
return this.startStream();
|
|
1595
|
+
}
|
|
1596
|
+
if (this.isSync) {
|
|
1597
|
+
return this.startSync();
|
|
1598
|
+
}
|
|
1599
|
+
return this.startAsync();
|
|
1600
|
+
}
|
|
1601
|
+
/**
|
|
1602
|
+
* Gets the execution result. For async executions, automatically starts polling.
|
|
1603
|
+
* For sync executions, returns the result promise. For streams, returns the generator.
|
|
1604
|
+
*
|
|
1605
|
+
* @returns The execution result as a promise or async generator.
|
|
1606
|
+
*/
|
|
1607
|
+
get result() {
|
|
1608
|
+
if (this.isSync) {
|
|
1609
|
+
if (!this._resultPromise) {
|
|
1610
|
+
throw new ExecutionNotStartedError();
|
|
1611
|
+
}
|
|
1612
|
+
return this._resultPromise;
|
|
1613
|
+
}
|
|
1614
|
+
if (this.isStream) {
|
|
1615
|
+
if (!this._stream) {
|
|
1616
|
+
throw new ExecutionNotStartedError();
|
|
1617
|
+
}
|
|
1618
|
+
return this._stream;
|
|
1619
|
+
}
|
|
1620
|
+
if (this._resultPromise) {
|
|
1621
|
+
return this._resultPromise;
|
|
1622
|
+
}
|
|
1623
|
+
this._resultPromise = this.startPolling();
|
|
1624
|
+
return this._resultPromise;
|
|
1625
|
+
}
|
|
1626
|
+
/**
|
|
1627
|
+
* Cancels the ongoing execution by aborting all active requests and polling operations.
|
|
1628
|
+
*/
|
|
1629
|
+
cancel() {
|
|
1630
|
+
this._abortController.abort();
|
|
1631
|
+
}
|
|
1632
|
+
/**
|
|
1633
|
+
* Builds the base request body shared across all execution types.
|
|
1634
|
+
* Includes messages, overrides, and structured output configuration.
|
|
1635
|
+
*
|
|
1636
|
+
* @returns The base request body object.
|
|
1637
|
+
*/
|
|
1638
|
+
get baseBody() {
|
|
1639
|
+
const body = {
|
|
1640
|
+
canvasId: this._params.canvasId,
|
|
1641
|
+
applicationId: this._params.applicationId,
|
|
1642
|
+
versionId: this._params.versionId,
|
|
1643
|
+
messages: this._params.messages
|
|
1644
|
+
};
|
|
1645
|
+
if (this._params.override && this._outputSchema instanceof z__default.ZodType) {
|
|
1646
|
+
return {
|
|
1647
|
+
...body,
|
|
1648
|
+
override: {
|
|
1649
|
+
...this._params.override,
|
|
1650
|
+
structured_output: z__default.toJSONSchema(this._outputSchema)
|
|
1148
1651
|
}
|
|
1652
|
+
};
|
|
1653
|
+
}
|
|
1654
|
+
return body;
|
|
1655
|
+
}
|
|
1656
|
+
/**
|
|
1657
|
+
* Processes variables and uploads any TelaFile instances to the server.
|
|
1658
|
+
* Replaces TelaFile objects with their uploaded URLs while preserving other values.
|
|
1659
|
+
*
|
|
1660
|
+
* @returns A promise resolving to the processed variables object.
|
|
1661
|
+
*/
|
|
1662
|
+
async resolveVariables() {
|
|
1663
|
+
const variables = {};
|
|
1664
|
+
for (const [key, value] of Object.entries(this._variables)) {
|
|
1665
|
+
if (isTelaFileArray(value)) {
|
|
1666
|
+
variables[key] = await this.uploadFiles(value);
|
|
1667
|
+
continue;
|
|
1668
|
+
}
|
|
1669
|
+
if (isTelaFile(value)) {
|
|
1670
|
+
variables[key] = await this.uploadFile(value);
|
|
1671
|
+
continue;
|
|
1149
1672
|
}
|
|
1150
|
-
|
|
1673
|
+
variables[key] = value;
|
|
1151
1674
|
}
|
|
1152
|
-
return
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1675
|
+
return variables;
|
|
1676
|
+
}
|
|
1677
|
+
/**
|
|
1678
|
+
* Initiates a synchronous execution that waits for the complete result.
|
|
1679
|
+
* The result is validated against the output schema if provided.
|
|
1680
|
+
*
|
|
1681
|
+
* @returns A promise resolving to the parsed execution result.
|
|
1682
|
+
*/
|
|
1683
|
+
async startSync() {
|
|
1684
|
+
const resolvedVariables = await this.resolveVariables();
|
|
1685
|
+
const body = {
|
|
1686
|
+
async: this._params.async ?? false,
|
|
1687
|
+
stream: false,
|
|
1688
|
+
...this.baseBody,
|
|
1689
|
+
variables: resolvedVariables
|
|
1690
|
+
};
|
|
1691
|
+
this._resultPromise = this._client.post("/v2/chat/completions", {
|
|
1692
|
+
body,
|
|
1693
|
+
stream: false,
|
|
1694
|
+
signal: this._abortController.signal
|
|
1695
|
+
}).then((response) => {
|
|
1696
|
+
this._id = response.id;
|
|
1697
|
+
return response.choices?.[0]?.message?.content;
|
|
1698
|
+
}).then((content) => {
|
|
1699
|
+
if (this._skipResultValidation || !(this._outputSchema instanceof z__default.ZodType)) {
|
|
1700
|
+
return content;
|
|
1701
|
+
}
|
|
1702
|
+
return this._outputSchema.parse(content);
|
|
1703
|
+
});
|
|
1704
|
+
return this._resultPromise;
|
|
1705
|
+
}
|
|
1706
|
+
/**
|
|
1707
|
+
* Initiates an asynchronous execution that returns immediately with an execution ID.
|
|
1708
|
+
* Results must be retrieved separately via polling using the `result` getter.
|
|
1709
|
+
*
|
|
1710
|
+
* @returns A promise that resolves when the execution is queued.
|
|
1711
|
+
*/
|
|
1712
|
+
async startAsync() {
|
|
1713
|
+
const resolvedVariables = await this.resolveVariables();
|
|
1714
|
+
const body = {
|
|
1715
|
+
async: true,
|
|
1716
|
+
stream: false,
|
|
1717
|
+
...this.baseBody,
|
|
1718
|
+
variables: resolvedVariables
|
|
1719
|
+
};
|
|
1720
|
+
return await this._client.post("/v2/chat/completions", {
|
|
1721
|
+
body,
|
|
1722
|
+
stream: false,
|
|
1723
|
+
signal: this._abortController.signal
|
|
1724
|
+
}).then((response) => {
|
|
1725
|
+
this._id = response.id;
|
|
1726
|
+
return response;
|
|
1727
|
+
});
|
|
1728
|
+
}
|
|
1729
|
+
/**
|
|
1730
|
+
* Initiates a streaming execution that returns results incrementally as they're generated.
|
|
1731
|
+
*
|
|
1732
|
+
* @returns A promise resolving to an async generator yielding result chunks.
|
|
1733
|
+
*/
|
|
1734
|
+
async startStream() {
|
|
1735
|
+
const resolvedVariables = await this.resolveVariables();
|
|
1736
|
+
const body = {
|
|
1737
|
+
...this.baseBody,
|
|
1738
|
+
stream: true,
|
|
1739
|
+
variables: resolvedVariables
|
|
1740
|
+
};
|
|
1741
|
+
this._stream = await this._client.post("/v2/chat/completions", {
|
|
1742
|
+
body,
|
|
1743
|
+
stream: true,
|
|
1744
|
+
signal: this._abortController.signal
|
|
1745
|
+
});
|
|
1746
|
+
return this._stream;
|
|
1747
|
+
}
|
|
1748
|
+
/**
|
|
1749
|
+
* Polls the server for async execution results at regular intervals.
|
|
1750
|
+
* Continues polling until the execution completes or the timeout is reached.
|
|
1751
|
+
*
|
|
1752
|
+
* @throws {Error} If called on a non-async execution.
|
|
1753
|
+
* @throws {Error} If the execution fails on the server.
|
|
1754
|
+
* @throws {Error} If the polling operation times out.
|
|
1755
|
+
* @returns A promise resolving to the final execution result.
|
|
1756
|
+
*/
|
|
1757
|
+
async startPolling() {
|
|
1758
|
+
if (!this._isAsync(this._params)) {
|
|
1759
|
+
throw new InvalidExecutionModeError("Polling is only supported for async executions");
|
|
1760
|
+
}
|
|
1761
|
+
return new Poller({
|
|
1762
|
+
interval: this._params.pollingInterval ?? 1e3,
|
|
1763
|
+
// 1 second
|
|
1764
|
+
timeout: this._params.pollingTimeout ?? 6e4,
|
|
1765
|
+
// 1 minute
|
|
1766
|
+
abortSignal: this._abortController.signal
|
|
1767
|
+
}).start(async (signal) => {
|
|
1768
|
+
const response = await this._client.get(
|
|
1769
|
+
`/v2/chat/completions/${this.id}`,
|
|
1770
|
+
{
|
|
1771
|
+
signal
|
|
1772
|
+
}
|
|
1773
|
+
);
|
|
1774
|
+
if (response.status === "failed") {
|
|
1775
|
+
throw new ExecutionFailedError(response.rawOutput);
|
|
1776
|
+
}
|
|
1777
|
+
if (response.status !== "succeeded") {
|
|
1778
|
+
return {
|
|
1779
|
+
done: false,
|
|
1780
|
+
value: void 0
|
|
1781
|
+
};
|
|
1782
|
+
}
|
|
1783
|
+
return {
|
|
1784
|
+
done: response.status === "succeeded",
|
|
1785
|
+
value: response.outputContent.content
|
|
1786
|
+
};
|
|
1787
|
+
}).then((value) => {
|
|
1788
|
+
if (this._skipResultValidation || !(this._outputSchema instanceof z__default.ZodType)) {
|
|
1789
|
+
return value;
|
|
1790
|
+
}
|
|
1791
|
+
return this._outputSchema.parse(value);
|
|
1156
1792
|
});
|
|
1157
1793
|
}
|
|
1158
1794
|
/**
|
|
@@ -1168,36 +1804,303 @@ class ChatCompletions extends Resource {
|
|
|
1168
1804
|
* ```typescript
|
|
1169
1805
|
* const file = new TelaFile({ /* file options *\/ });
|
|
1170
1806
|
* const uploadedFile = await this.uploadFile(file);
|
|
1171
|
-
* console.log(uploadedFile.
|
|
1807
|
+
* console.log(uploadedFile.fileUrl);
|
|
1172
1808
|
* ```
|
|
1173
1809
|
*/
|
|
1174
1810
|
async uploadFile(file) {
|
|
1175
|
-
|
|
1176
|
-
|
|
1811
|
+
let content = await file.getUploadableContent();
|
|
1812
|
+
let sha256sumStream;
|
|
1813
|
+
if (typeof content === "string") {
|
|
1177
1814
|
return { fileUrl: content, options: file.options };
|
|
1178
1815
|
}
|
|
1179
|
-
const
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1816
|
+
const filename = file.name ?? void 0;
|
|
1817
|
+
const fileType = file.type ?? void 0;
|
|
1818
|
+
const contentLength = file.size ?? void 0;
|
|
1819
|
+
if (content instanceof ReadableStream) {
|
|
1820
|
+
const [hashStream, contentStream] = content.tee();
|
|
1821
|
+
content = contentStream;
|
|
1822
|
+
sha256sumStream = hashStream;
|
|
1823
|
+
}
|
|
1824
|
+
const sha256sum = await calculateSha256sum(sha256sumStream ?? content);
|
|
1825
|
+
const { id, uploadUrl } = await this._client.post("/_services/vault/files", {
|
|
1826
|
+
body: {
|
|
1827
|
+
fileName: filename,
|
|
1828
|
+
mimeType: fileType,
|
|
1829
|
+
size: contentLength ?? void 0,
|
|
1830
|
+
sha256sum
|
|
1831
|
+
}
|
|
1832
|
+
});
|
|
1833
|
+
if (content instanceof ReadableStream && typeof Bun !== "undefined") {
|
|
1834
|
+
console.warn(
|
|
1835
|
+
"[Tela SDK - WARNING] Buffering file upload due to Bun fetch implementation. Large files may cause memory issues. Consider using Node.js for streaming uploads.",
|
|
1836
|
+
{ fileName: filename, fileSize: contentLength }
|
|
1837
|
+
);
|
|
1838
|
+
const chunks = [];
|
|
1839
|
+
const reader = content.getReader();
|
|
1840
|
+
while (true) {
|
|
1841
|
+
const { done, value } = await reader.read();
|
|
1842
|
+
if (done)
|
|
1843
|
+
break;
|
|
1844
|
+
chunks.push(value);
|
|
1845
|
+
}
|
|
1846
|
+
content = new Blob(chunks, { type: fileType ?? "application/octet-stream" });
|
|
1186
1847
|
}
|
|
1187
|
-
const
|
|
1848
|
+
const request = new Request(uploadUrl, {
|
|
1188
1849
|
method: "PUT",
|
|
1189
1850
|
body: content,
|
|
1190
1851
|
headers: {
|
|
1191
|
-
"Content-Type":
|
|
1852
|
+
"Content-Type": fileType ?? "application/octet-stream",
|
|
1192
1853
|
...file.size ? { "Content-Length": file.size.toString() } : {}
|
|
1193
|
-
}
|
|
1194
|
-
// duplex is not supported
|
|
1195
|
-
duplex: "half"
|
|
1854
|
+
}
|
|
1196
1855
|
});
|
|
1856
|
+
const uploadResponse = await fetch(request);
|
|
1197
1857
|
if (!uploadResponse.ok) {
|
|
1198
|
-
throw new FileUploadError(await uploadResponse.text());
|
|
1858
|
+
throw new FileUploadError(await uploadResponse.text(), uploadResponse.status);
|
|
1859
|
+
}
|
|
1860
|
+
return { fileUrl: `vault://${id}`, options: file.options };
|
|
1861
|
+
}
|
|
1862
|
+
/**
|
|
1863
|
+
* Uploads multiple files and returns their URLs and options.
|
|
1864
|
+
*
|
|
1865
|
+
* This is used internally to handle multiple file uploads associated with chat completions.
|
|
1866
|
+
*
|
|
1867
|
+
* @param files - An array of TelaFile instances to be uploaded.
|
|
1868
|
+
* @returns A Promise that resolves to an array of objects containing file URLs and options.
|
|
1869
|
+
* @throws {FileUploadError} If any file upload fails.
|
|
1870
|
+
*/
|
|
1871
|
+
async uploadFiles(files) {
|
|
1872
|
+
const uploadPromises = files.map((file) => this.uploadFile(file));
|
|
1873
|
+
return Promise.all(uploadPromises);
|
|
1874
|
+
}
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
var __defProp$1 = Object.defineProperty;
|
|
1878
|
+
var __defNormalProp$1 = (obj, key, value) => key in obj ? __defProp$1(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
1879
|
+
var __publicField$1 = (obj, key, value) => {
|
|
1880
|
+
__defNormalProp$1(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
1881
|
+
return value;
|
|
1882
|
+
};
|
|
1883
|
+
const zod = {
|
|
1884
|
+
string: z.string,
|
|
1885
|
+
number: z.number,
|
|
1886
|
+
boolean: z.boolean,
|
|
1887
|
+
object: z.object,
|
|
1888
|
+
array: z.array,
|
|
1889
|
+
file: TelaFileSchema,
|
|
1890
|
+
any: z.any,
|
|
1891
|
+
unknown: z.unknown
|
|
1892
|
+
};
|
|
1893
|
+
function fetchById(id, client) {
|
|
1894
|
+
return client.get(`/prompt/${id}/promoted-version`);
|
|
1895
|
+
}
|
|
1896
|
+
function fetchByVersionId(versionId, client) {
|
|
1897
|
+
return client.get(`/prompt-version/${versionId}`);
|
|
1898
|
+
}
|
|
1899
|
+
function fetchByApplicationId(applicationId, client) {
|
|
1900
|
+
return client.get(`/prompt-application/${applicationId}/targetPromptVersion`);
|
|
1901
|
+
}
|
|
1902
|
+
function fetchByAny({ id, versionId, applicationId, client }) {
|
|
1903
|
+
if (applicationId) {
|
|
1904
|
+
return fetchByApplicationId(applicationId, client);
|
|
1905
|
+
}
|
|
1906
|
+
if (versionId) {
|
|
1907
|
+
return fetchByVersionId(versionId, client);
|
|
1908
|
+
}
|
|
1909
|
+
if (id) {
|
|
1910
|
+
return fetchById(id, client);
|
|
1911
|
+
}
|
|
1912
|
+
throw new Error("Either id, versionId, or applicationId must be provided");
|
|
1913
|
+
}
|
|
1914
|
+
function validateSchemas(input, output, promptVersion) {
|
|
1915
|
+
const canvasIdentifier = `${promptVersion.title} (${promptVersion.promptId})`;
|
|
1916
|
+
if (input instanceof z.z.ZodType) {
|
|
1917
|
+
try {
|
|
1918
|
+
const inputSchema = z.z.toJSONSchema(input, { unrepresentable: "any" });
|
|
1919
|
+
const mismatches = validateInputSchema(inputSchema, promptVersion.variables);
|
|
1920
|
+
if (mismatches.length === 0) {
|
|
1921
|
+
return;
|
|
1922
|
+
}
|
|
1923
|
+
console.warn(
|
|
1924
|
+
`[Tela SDK - Canvas Input Validation] Input schema mismatches for canvas "${canvasIdentifier}":`
|
|
1925
|
+
);
|
|
1926
|
+
for (const mismatch of mismatches) {
|
|
1927
|
+
console.warn(` - ${mismatch.path}: ${mismatch.issue}`);
|
|
1928
|
+
}
|
|
1929
|
+
} catch (error) {
|
|
1930
|
+
console.warn(
|
|
1931
|
+
`[Tela SDK - Canvas Input Validation] Failed to validate input schema for canvas "${canvasIdentifier}":`,
|
|
1932
|
+
error
|
|
1933
|
+
);
|
|
1934
|
+
}
|
|
1935
|
+
}
|
|
1936
|
+
if (output instanceof z.z.ZodType) {
|
|
1937
|
+
try {
|
|
1938
|
+
const outputSchema = z.z.toJSONSchema(output);
|
|
1939
|
+
const serverOutput = promptVersion.configuration.structuredOutput;
|
|
1940
|
+
if (!serverOutput.enabled) {
|
|
1941
|
+
console.warn(
|
|
1942
|
+
`[Tela SDK - Canvas Output Validation] Output schema provided for canvas "${canvasIdentifier}", but structured output is not enabled on the server. The schema may not be enforced.`
|
|
1943
|
+
);
|
|
1944
|
+
return;
|
|
1945
|
+
}
|
|
1946
|
+
const mismatches = validateOutputSchema(outputSchema, serverOutput.schema);
|
|
1947
|
+
if (mismatches.length === 0) {
|
|
1948
|
+
return;
|
|
1949
|
+
}
|
|
1950
|
+
console.warn(
|
|
1951
|
+
`[Tela SDK - Canvas Output Validation] Output schema mismatches for canvas "${canvasIdentifier}":`
|
|
1952
|
+
);
|
|
1953
|
+
for (const mismatch of mismatches) {
|
|
1954
|
+
console.warn(` - ${mismatch.path}: ${mismatch.issue}`);
|
|
1955
|
+
}
|
|
1956
|
+
} catch (error) {
|
|
1957
|
+
console.warn(
|
|
1958
|
+
`[Tela SDK - Canvas Output Validation] Failed to validate output schema for canvas "${canvasIdentifier}":`,
|
|
1959
|
+
error
|
|
1960
|
+
);
|
|
1199
1961
|
}
|
|
1200
|
-
|
|
1962
|
+
}
|
|
1963
|
+
}
|
|
1964
|
+
class Canvas {
|
|
1965
|
+
/**
|
|
1966
|
+
* Creates a new instance of the Canvas class. Usage of this constructor is not recommended.
|
|
1967
|
+
* Use the `tela.getCanvas` method instead.
|
|
1968
|
+
*
|
|
1969
|
+
* @private
|
|
1970
|
+
*/
|
|
1971
|
+
constructor({ id, applicationId, name, versionId, input, output, client, variables }) {
|
|
1972
|
+
__publicField$1(this, "_id");
|
|
1973
|
+
__publicField$1(this, "_versionId");
|
|
1974
|
+
__publicField$1(this, "_applicationId");
|
|
1975
|
+
__publicField$1(this, "_name");
|
|
1976
|
+
__publicField$1(this, "_input");
|
|
1977
|
+
__publicField$1(this, "_output");
|
|
1978
|
+
__publicField$1(this, "_client");
|
|
1979
|
+
__publicField$1(this, "_variables");
|
|
1980
|
+
this._id = id;
|
|
1981
|
+
this._applicationId = applicationId;
|
|
1982
|
+
this._name = name;
|
|
1983
|
+
this._versionId = versionId;
|
|
1984
|
+
this._input = input && input(zod);
|
|
1985
|
+
this._output = output && output(zod);
|
|
1986
|
+
this._client = client;
|
|
1987
|
+
this._variables = variables;
|
|
1988
|
+
}
|
|
1989
|
+
/**
|
|
1990
|
+
* Gets a canvas by its ID.
|
|
1991
|
+
*
|
|
1992
|
+
* @param options - The options to use to get the canvas.
|
|
1993
|
+
* @param options.id - The ID of the canvas to get.
|
|
1994
|
+
* @param options.versionId - The version ID of the canvas to get.
|
|
1995
|
+
* @param options.applicationId - The application ID of the canvas to get.
|
|
1996
|
+
* @param options.client - The client to use to make the request.
|
|
1997
|
+
* @param options.input - The input schema of the canvas to get.
|
|
1998
|
+
* @param options.output - The output schema of the canvas to get.
|
|
1999
|
+
* @returns The canvas.
|
|
2000
|
+
*/
|
|
2001
|
+
static async get(options) {
|
|
2002
|
+
const { id, versionId, applicationId, client, input, output, skipSchemaValidation = false } = options;
|
|
2003
|
+
const promptVersion = await fetchByAny({ id, versionId, applicationId, client });
|
|
2004
|
+
const inputSchema = input && input(zod);
|
|
2005
|
+
const outputSchema = output && output(zod);
|
|
2006
|
+
if (!skipSchemaValidation) {
|
|
2007
|
+
validateSchemas(inputSchema, outputSchema, promptVersion);
|
|
2008
|
+
}
|
|
2009
|
+
return new Canvas({
|
|
2010
|
+
id: promptVersion.promptId,
|
|
2011
|
+
name: promptVersion.title,
|
|
2012
|
+
versionId: promptVersion.id,
|
|
2013
|
+
input,
|
|
2014
|
+
output,
|
|
2015
|
+
client,
|
|
2016
|
+
variables: promptVersion.variables
|
|
2017
|
+
});
|
|
2018
|
+
}
|
|
2019
|
+
/**
|
|
2020
|
+
* Gets the unique identifier of this canvas.
|
|
2021
|
+
*
|
|
2022
|
+
* @returns The canvas ID.
|
|
2023
|
+
*/
|
|
2024
|
+
get id() {
|
|
2025
|
+
if (!this._id) {
|
|
2026
|
+
throw new Error("Canvas ID is not set");
|
|
2027
|
+
}
|
|
2028
|
+
return this._id;
|
|
2029
|
+
}
|
|
2030
|
+
/**
|
|
2031
|
+
* Gets the name of this canvas, if provided.
|
|
2032
|
+
*
|
|
2033
|
+
* @returns The canvas name or undefined.
|
|
2034
|
+
*/
|
|
2035
|
+
get name() {
|
|
2036
|
+
if (!this._name) {
|
|
2037
|
+
throw new Error("Canvas name is not set");
|
|
2038
|
+
}
|
|
2039
|
+
return this._name;
|
|
2040
|
+
}
|
|
2041
|
+
/**
|
|
2042
|
+
* Gets the version identifier of this canvas, if specified.
|
|
2043
|
+
* When undefined, the latest promoted version is used.
|
|
2044
|
+
*
|
|
2045
|
+
* @returns The version ID or undefined.
|
|
2046
|
+
*/
|
|
2047
|
+
get versionId() {
|
|
2048
|
+
if (!this._versionId) {
|
|
2049
|
+
throw new Error("Canvas version ID is not set");
|
|
2050
|
+
}
|
|
2051
|
+
return this._versionId;
|
|
2052
|
+
}
|
|
2053
|
+
get applicationId() {
|
|
2054
|
+
if (!this._applicationId) {
|
|
2055
|
+
throw new Error("Canvas application ID is not set");
|
|
2056
|
+
}
|
|
2057
|
+
return this._applicationId;
|
|
2058
|
+
}
|
|
2059
|
+
/**
|
|
2060
|
+
* Gets the variables of this canvas.
|
|
2061
|
+
*
|
|
2062
|
+
* @returns The variables of the canvas.
|
|
2063
|
+
*/
|
|
2064
|
+
get variables() {
|
|
2065
|
+
return this._variables;
|
|
2066
|
+
}
|
|
2067
|
+
/**
|
|
2068
|
+
* Validates and parses input variables using the canvas input schema.
|
|
2069
|
+
*
|
|
2070
|
+
* @param variables - Raw input variables to validate.
|
|
2071
|
+
* @returns Parsed and validated variables.
|
|
2072
|
+
* @throws {ZodError} If validation fails when a Zod schema is configured.
|
|
2073
|
+
*/
|
|
2074
|
+
parseVariables(variables) {
|
|
2075
|
+
try {
|
|
2076
|
+
if (this._input instanceof z.z.ZodType) {
|
|
2077
|
+
return this._input.parse(variables);
|
|
2078
|
+
}
|
|
2079
|
+
return variables;
|
|
2080
|
+
} catch (error) {
|
|
2081
|
+
if (!(error instanceof z.ZodError)) {
|
|
2082
|
+
throw error;
|
|
2083
|
+
}
|
|
2084
|
+
throw new Error(z.z.prettifyError(error));
|
|
2085
|
+
}
|
|
2086
|
+
}
|
|
2087
|
+
execute(variables, params) {
|
|
2088
|
+
const parsedInput = this.parseVariables(variables);
|
|
2089
|
+
const fullParams = {
|
|
2090
|
+
...params ?? { async: false },
|
|
2091
|
+
versionId: this._versionId,
|
|
2092
|
+
canvasId: this._id,
|
|
2093
|
+
applicationId: this._applicationId
|
|
2094
|
+
};
|
|
2095
|
+
const execution = new CanvasExecution(parsedInput, fullParams, this._output, this._client);
|
|
2096
|
+
return {
|
|
2097
|
+
then(onfulfilled, onrejected) {
|
|
2098
|
+
return Promise.resolve(execution.start()).then(() => onfulfilled?.(execution) ?? execution).catch(onrejected);
|
|
2099
|
+
},
|
|
2100
|
+
get result() {
|
|
2101
|
+
return Promise.resolve(execution.start()).then(() => execution.result);
|
|
2102
|
+
}
|
|
2103
|
+
};
|
|
1201
2104
|
}
|
|
1202
2105
|
}
|
|
1203
2106
|
|
|
@@ -1218,31 +2121,56 @@ const _TelaSDK = class _TelaSDK extends BaseClient {
|
|
|
1218
2121
|
__publicField(this, "apiKey");
|
|
1219
2122
|
__publicField(this, "jwt");
|
|
1220
2123
|
/**
|
|
1221
|
-
*
|
|
2124
|
+
* Creates a new `TelaFile` instance from the provided file input.
|
|
1222
2125
|
*
|
|
1223
|
-
*
|
|
2126
|
+
* @param file - The file input to create a `TelaFile` instance from.
|
|
2127
|
+
* @returns A new `TelaFile` instance.
|
|
2128
|
+
*/
|
|
2129
|
+
__publicField(this, "createFile", TelaFile.create.bind(this));
|
|
2130
|
+
/**
|
|
2131
|
+
* Retrieves a canvas by its ID, version ID, or application ID.
|
|
2132
|
+
* Validates input and output schemas if Zod schemas are provided.
|
|
2133
|
+
*
|
|
2134
|
+
* @param options - Options for retrieving the canvas.
|
|
2135
|
+
* @returns A promise resolving to a Canvas instance.
|
|
1224
2136
|
*
|
|
1225
2137
|
* @example
|
|
1226
2138
|
* ```typescript
|
|
1227
|
-
*
|
|
1228
|
-
*
|
|
1229
|
-
*
|
|
2139
|
+
* import { z } from 'zod';
|
|
2140
|
+
*
|
|
2141
|
+
* // Get canvas by ID with schemas
|
|
2142
|
+
* const canvas = await tela.canvas.get({
|
|
2143
|
+
* id: 'canvas-id',
|
|
2144
|
+
* input: z.object({ query: z.string() }),
|
|
2145
|
+
* output: z.object({ response: z.string() })
|
|
1230
2146
|
* });
|
|
1231
|
-
* ```
|
|
1232
|
-
*/
|
|
1233
|
-
__publicField(this, "completions", new ChatCompletions(this));
|
|
1234
|
-
/**
|
|
1235
|
-
* Creates a new `TelaFile` instance from the provided file input.
|
|
1236
2147
|
*
|
|
1237
|
-
*
|
|
1238
|
-
*
|
|
2148
|
+
* // Get canvas by application ID
|
|
2149
|
+
* const canvas = await tela.canvas.get({
|
|
2150
|
+
* applicationId: 'app-id'
|
|
2151
|
+
* });
|
|
2152
|
+
*
|
|
2153
|
+
* // Execute the canvas
|
|
2154
|
+
* const execution = await canvas.execute({ query: 'Hello' });
|
|
2155
|
+
* const result = await execution.result;
|
|
2156
|
+
* ```
|
|
1239
2157
|
*/
|
|
1240
|
-
__publicField(this, "
|
|
2158
|
+
__publicField(this, "canvas", {
|
|
2159
|
+
get: async (options) => {
|
|
2160
|
+
return Canvas.get({
|
|
2161
|
+
...options,
|
|
2162
|
+
client: this
|
|
2163
|
+
});
|
|
2164
|
+
}
|
|
2165
|
+
});
|
|
1241
2166
|
this.opts = { baseURL, ...rest };
|
|
1242
2167
|
this.apiKey = apiKey;
|
|
1243
2168
|
this.jwt = jwt;
|
|
1244
2169
|
this.validateAuth();
|
|
1245
2170
|
}
|
|
2171
|
+
get authToken() {
|
|
2172
|
+
return this.apiKey || this.jwt;
|
|
2173
|
+
}
|
|
1246
2174
|
validateAuth() {
|
|
1247
2175
|
if (!this.apiKey && !this.jwt) {
|
|
1248
2176
|
throw new MissingApiKeyOrJWTError();
|
|
@@ -1299,6 +2227,30 @@ function createTelaClient(opts) {
|
|
|
1299
2227
|
return new TelaSDK(opts);
|
|
1300
2228
|
}
|
|
1301
2229
|
|
|
2230
|
+
exports.APIError = APIError;
|
|
2231
|
+
exports.AuthenticationError = AuthenticationError;
|
|
2232
|
+
exports.AuthorizationError = AuthorizationError;
|
|
2233
|
+
exports.BadRequestError = BadRequestError;
|
|
2234
|
+
exports.BaseClient = BaseClient;
|
|
2235
|
+
exports.ConflictApiKeyAndJWTError = ConflictApiKeyAndJWTError;
|
|
2236
|
+
exports.ConflictError = ConflictError;
|
|
2237
|
+
exports.ConnectionError = ConnectionError;
|
|
2238
|
+
exports.ConnectionTimeout = ConnectionTimeout;
|
|
2239
|
+
exports.EmptyFileError = EmptyFileError;
|
|
2240
|
+
exports.ExecutionFailedError = ExecutionFailedError;
|
|
2241
|
+
exports.ExecutionNotStartedError = ExecutionNotStartedError;
|
|
2242
|
+
exports.FileUploadError = FileUploadError;
|
|
2243
|
+
exports.InternalServerError = InternalServerError;
|
|
2244
|
+
exports.InvalidExecutionModeError = InvalidExecutionModeError;
|
|
2245
|
+
exports.InvalidFileURL = InvalidFileURL;
|
|
2246
|
+
exports.MissingApiKeyOrJWTError = MissingApiKeyOrJWTError;
|
|
2247
|
+
exports.NotFoundError = NotFoundError;
|
|
2248
|
+
exports.RateLimitError = RateLimitError;
|
|
2249
|
+
exports.TelaError = TelaError;
|
|
1302
2250
|
exports.TelaFile = TelaFile;
|
|
2251
|
+
exports.TelaFileSchema = TelaFileSchema;
|
|
1303
2252
|
exports.TelaSDK = TelaSDK;
|
|
2253
|
+
exports.UnprocessableEntityError = UnprocessableEntityError;
|
|
2254
|
+
exports.UserAbortError = UserAbortError;
|
|
1304
2255
|
exports.createTelaClient = createTelaClient;
|
|
2256
|
+
exports.toError = toError;
|