@ketrics/sdk-backend 0.3.0 → 0.5.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/context.d.ts CHANGED
@@ -46,15 +46,15 @@ export interface UserContext {
46
46
  email: string;
47
47
  /** User full name */
48
48
  name: string;
49
- /** Whether user is tenant admin */
50
- isAdmin: boolean;
49
+ /** User's application permissions for the current app (e.g., ["read", "write"] or ["*"]) */
50
+ applicationPermissions: string[];
51
51
  }
52
52
  /**
53
- * Environment Context
53
+ * Runtime Context
54
54
  *
55
55
  * Information about the runtime environment.
56
56
  */
57
- export interface EnvironmentContext {
57
+ export interface RuntimeContext {
58
58
  /** Node.js version (e.g., "18.x") */
59
59
  nodeVersion: string;
60
60
  /** Runtime platform */
@@ -62,4 +62,11 @@ export interface EnvironmentContext {
62
62
  /** AWS region (e.g., "us-east-1") */
63
63
  region: string;
64
64
  }
65
+ /**
66
+ * Environment Variables
67
+ *
68
+ * Key-value map of application environment variables.
69
+ * Keys are uppercase with letters, numbers, and underscores only.
70
+ */
71
+ export type EnvironmentVariables = Record<string, string>;
65
72
  //# sourceMappingURL=context.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../src/context.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH;;;;GAIG;AACH,MAAM,WAAW,aAAa;IAC5B,kBAAkB;IAClB,EAAE,EAAE,MAAM,CAAC;IACX,sCAAsC;IACtC,IAAI,EAAE,MAAM,CAAC;IACb,0BAA0B;IAC1B,IAAI,EAAE,MAAM,CAAC;CACd;AAED;;;;GAIG;AACH,MAAM,WAAW,kBAAkB;IACjC,uBAAuB;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,kDAAkD;IAClD,IAAI,EAAE,MAAM,CAAC;IACb,+BAA+B;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,qCAAqC;IACrC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,4BAA4B;IAC5B,YAAY,EAAE,MAAM,CAAC;CACtB;AAED;;;;GAIG;AACH,MAAM,WAAW,WAAW;IAC1B,gBAAgB;IAChB,EAAE,EAAE,MAAM,CAAC;IACX,yBAAyB;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,qBAAqB;IACrB,IAAI,EAAE,MAAM,CAAC;IACb,mCAAmC;IACnC,OAAO,EAAE,OAAO,CAAC;CAClB;AAED;;;;GAIG;AACH,MAAM,WAAW,kBAAkB;IACjC,qCAAqC;IACrC,WAAW,EAAE,MAAM,CAAC;IACpB,uBAAuB;IACvB,OAAO,EAAE,aAAa,CAAC;IACvB,qCAAqC;IACrC,MAAM,EAAE,MAAM,CAAC;CAChB"}
1
+ {"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../src/context.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH;;;;GAIG;AACH,MAAM,WAAW,aAAa;IAC5B,kBAAkB;IAClB,EAAE,EAAE,MAAM,CAAC;IACX,sCAAsC;IACtC,IAAI,EAAE,MAAM,CAAC;IACb,0BAA0B;IAC1B,IAAI,EAAE,MAAM,CAAC;CACd;AAED;;;;GAIG;AACH,MAAM,WAAW,kBAAkB;IACjC,uBAAuB;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,kDAAkD;IAClD,IAAI,EAAE,MAAM,CAAC;IACb,+BAA+B;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,qCAAqC;IACrC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,4BAA4B;IAC5B,YAAY,EAAE,MAAM,CAAC;CACtB;AAED;;;;GAIG;AACH,MAAM,WAAW,WAAW;IAC1B,gBAAgB;IAChB,EAAE,EAAE,MAAM,CAAC;IACX,yBAAyB;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,qBAAqB;IACrB,IAAI,EAAE,MAAM,CAAC;IACb,4FAA4F;IAC5F,sBAAsB,EAAE,MAAM,EAAE,CAAC;CAClC;AAED;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC7B,qCAAqC;IACrC,WAAW,EAAE,MAAM,CAAC;IACpB,uBAAuB;IACvB,OAAO,EAAE,aAAa,CAAC;IACvB,qCAAqC;IACrC,MAAM,EAAE,MAAM,CAAC;CAChB;AAED;;;;;GAKG;AACH,MAAM,MAAM,oBAAoB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC"}
package/dist/index.d.ts CHANGED
@@ -54,7 +54,7 @@
54
54
  * }
55
55
  * ```
56
56
  */
57
- export { TenantContext, ApplicationContext, UserContext, EnvironmentContext, } from './context';
57
+ export { TenantContext, ApplicationContext, UserContext, RuntimeContext, EnvironmentVariables, } from './context';
58
58
  export { ConsoleLogger } from './console';
59
59
  export { HttpRequestConfig, HttpResponse, HttpClient } from './http';
60
60
  export { DatabaseQueryResult, DatabaseExecuteResult, IDatabaseConnection, DatabaseManager, } from './databases';
@@ -63,18 +63,37 @@ export { ISecret } from './secrets';
63
63
  export { SecretError, SecretNotFoundError, SecretAccessDeniedError, SecretDecryptionError, isSecretError, isSecretErrorType, } from './secret-errors';
64
64
  export { ExcelCellValue, ExcelRowValues, ExcelColumnDefinition, AddWorksheetOptions, IExcelCell, IExcelRow, IExcelWorksheet, IExcelWorkbook, ExcelManager, } from './excel';
65
65
  export { ExcelError, ExcelParseError, ExcelWriteError, isExcelError, isExcelErrorType, } from './excel-errors';
66
+ export { PdfPageSize, PdfStandardFont, PdfRgbColor, PdfDrawTextOptions, PdfDrawRectOptions, PdfDrawLineOptions, PdfDrawCircleOptions, PdfDrawImageOptions, PdfEmbeddedImage, PdfEmbeddedFont, IPdfPage, IPdfDocument, PdfManager, } from './pdf';
67
+ export { PdfError, PdfParseError, PdfWriteError, isPdfError, isPdfErrorType, } from './pdf-errors';
68
+ export { JobStatusValue, RunInBackgroundOptions, RunInBackgroundParams, JobErrorDetails, JobStatus, JobListParams, JobListResult, } from './job';
69
+ export { JobError, JobNotFoundError, InvalidFunctionError, CrossAppPermissionError, JobExecutionError, isJobError, isJobErrorType, } from './job-errors';
70
+ export { MessagePriorityLevel, MessageChannelConfig, SendMessageParams, SendBulkMessageParams, SendGroupMessageParams, SendMessageResult, SendBulkMessageResult, MessagesManager, } from './messages';
71
+ export { MessageError, MessageValidationError, GroupNotFoundError, TenantGrantPermissionDeniedError, isMessageError, isMessageErrorType, } from './messages-errors';
66
72
  export { PutContent, FileContent, FileMetadata, FileInfo, PutOptions, PutResult, DeleteResult, DeleteError, DeleteByPrefixResult, ListOptions, ListResult, CopyOptions, CopyResult, MoveOptions, MoveResult, DownloadUrlOptions, UploadUrlOptions, PresignedUrl, IVolume, } from './volumes';
67
73
  export { VolumePermissionValue, VolumeError, VolumeNotFoundError, VolumeAccessDeniedError, VolumePermissionDeniedError, FileNotFoundError, FileAlreadyExistsError, InvalidPathError, FileSizeLimitError, ContentTypeNotAllowedError, isVolumeError, isVolumeErrorType, } from './errors';
68
- import type { TenantContext, ApplicationContext, UserContext, EnvironmentContext } from './context';
74
+ import type { TenantContext, ApplicationContext, UserContext, RuntimeContext, EnvironmentVariables } from './context';
69
75
  import type { ConsoleLogger } from './console';
70
76
  import type { HttpClient } from './http';
71
77
  import type { IDatabaseConnection } from './databases';
72
78
  import type { IVolume } from './volumes';
73
79
  import type { IExcelWorkbook } from './excel';
80
+ import type { IPdfDocument, PdfRgbColor } from './pdf';
81
+ import type { RunInBackgroundParams, JobStatus, JobListParams, JobListResult } from './job';
82
+ import type { MessagesManager } from './messages';
74
83
  import { VolumeError as VolumeErrorClass, VolumeNotFoundError as VolumeNotFoundErrorClass, VolumeAccessDeniedError as VolumeAccessDeniedErrorClass, VolumePermissionDeniedError as VolumePermissionDeniedErrorClass, FileNotFoundError as FileNotFoundErrorClass, FileAlreadyExistsError as FileAlreadyExistsErrorClass, InvalidPathError as InvalidPathErrorClass, FileSizeLimitError as FileSizeLimitErrorClass, ContentTypeNotAllowedError as ContentTypeNotAllowedErrorClass } from './errors';
75
84
  import { DatabaseError as DatabaseErrorClass, DatabaseNotFoundError as DatabaseNotFoundErrorClass, DatabaseAccessDeniedError as DatabaseAccessDeniedErrorClass, DatabaseConnectionError as DatabaseConnectionErrorClass, DatabaseQueryError as DatabaseQueryErrorClass, DatabaseTransactionError as DatabaseTransactionErrorClass } from './database-errors';
76
85
  import { SecretError as SecretErrorClass, SecretNotFoundError as SecretNotFoundErrorClass, SecretAccessDeniedError as SecretAccessDeniedErrorClass, SecretDecryptionError as SecretDecryptionErrorClass } from './secret-errors';
77
86
  import { ExcelError as ExcelErrorClass, ExcelParseError as ExcelParseErrorClass, ExcelWriteError as ExcelWriteErrorClass } from './excel-errors';
87
+ import { PdfError as PdfErrorClass, PdfParseError as PdfParseErrorClass, PdfWriteError as PdfWriteErrorClass } from './pdf-errors';
88
+ import { JobError as JobErrorClass, JobNotFoundError as JobNotFoundErrorClass, InvalidFunctionError as InvalidFunctionErrorClass, CrossAppPermissionError as CrossAppPermissionErrorClass, JobExecutionError as JobExecutionErrorClass } from './job-errors';
89
+ import { MessageError as MessageErrorClass, MessageValidationError as MessageValidationErrorClass, GroupNotFoundError as GroupNotFoundErrorClass, TenantGrantPermissionDeniedError as TenantGrantPermissionDeniedErrorClass } from './messages-errors';
90
+ import { isVolumeError, isVolumeErrorType } from './errors';
91
+ import { isDatabaseError, isDatabaseErrorType } from './database-errors';
92
+ import { isSecretError, isSecretErrorType } from './secret-errors';
93
+ import { isExcelError, isExcelErrorType } from './excel-errors';
94
+ import { isPdfError, isPdfErrorType } from './pdf-errors';
95
+ import { isJobError, isJobErrorType } from './job-errors';
96
+ import { isMessageError, isMessageErrorType } from './messages-errors';
78
97
  /**
79
98
  * Ketrics Platform SDK Interface
80
99
  *
@@ -87,7 +106,7 @@ import { ExcelError as ExcelErrorClass, ExcelParseError as ExcelParseErrorClass,
87
106
  * console.log(ketrics.tenant.name);
88
107
  * console.log(ketrics.application.code);
89
108
  * console.log(ketrics.user.email);
90
- * console.log(ketrics.env.region);
109
+ * console.log(ketrics.runtime.region);
91
110
  *
92
111
  * // Use console logging (forwarded to CloudWatch)
93
112
  * ketrics.console.log('Processing request...');
@@ -108,6 +127,14 @@ import { ExcelError as ExcelErrorClass, ExcelParseError as ExcelParseErrorClass,
108
127
  * // Access volumes
109
128
  * const volume = await ketrics.Volume.connect('uploads');
110
129
  * const file = await volume.get('document.pdf');
130
+ *
131
+ * // Send messages to users
132
+ * await ketrics.Messages.send({
133
+ * userId: 'user-123',
134
+ * type: 'ORDER_SHIPPED',
135
+ * subject: 'Your order shipped!',
136
+ * body: 'Track your package...'
137
+ * });
111
138
  * ```
112
139
  */
113
140
  export interface KetricsSdkV1 {
@@ -118,11 +145,141 @@ export interface KetricsSdkV1 {
118
145
  /** Current user information */
119
146
  user: UserContext;
120
147
  /** Runtime environment information */
121
- env: EnvironmentContext;
148
+ runtime: RuntimeContext;
149
+ /** Application environment variables (key-value pairs) */
150
+ environment: EnvironmentVariables;
122
151
  /** Console logging (forwarded to CloudWatch) */
123
152
  console: ConsoleLogger;
124
153
  /** HTTP client for external API requests */
125
154
  http: HttpClient;
155
+ /** Volume class with static connect() factory method */
156
+ Volume: {
157
+ connect(volumeCode: string): Promise<IVolume>;
158
+ };
159
+ /** Base error class for all Volume errors (abstract) */
160
+ VolumeError: typeof VolumeErrorClass;
161
+ /** Error thrown when volume doesn't exist */
162
+ VolumeNotFoundError: typeof VolumeNotFoundErrorClass;
163
+ /** Error thrown when application has no access grant */
164
+ VolumeAccessDeniedError: typeof VolumeAccessDeniedErrorClass;
165
+ /** Error thrown when operation requires missing permission */
166
+ VolumePermissionDeniedError: typeof VolumePermissionDeniedErrorClass;
167
+ /** Error thrown when file doesn't exist */
168
+ FileNotFoundError: typeof FileNotFoundErrorClass;
169
+ /** Error thrown when file already exists (with ifNotExists option) */
170
+ FileAlreadyExistsError: typeof FileAlreadyExistsErrorClass;
171
+ /** Error thrown for invalid path characters or traversal attempts */
172
+ InvalidPathError: typeof InvalidPathErrorClass;
173
+ /** Error thrown when file exceeds size limit */
174
+ FileSizeLimitError: typeof FileSizeLimitErrorClass;
175
+ /** Error thrown when content type is not allowed */
176
+ ContentTypeNotAllowedError: typeof ContentTypeNotAllowedErrorClass;
177
+ /** Type guard to check if error is a VolumeError */
178
+ isVolumeError: typeof isVolumeError;
179
+ /** Type guard to check if error is a specific VolumeError type */
180
+ isVolumeErrorType: typeof isVolumeErrorType;
181
+ /** DatabaseConnection class with static connect() factory method */
182
+ DatabaseConnection: {
183
+ connect(databaseCode: string): Promise<IDatabaseConnection>;
184
+ };
185
+ /** Base error class for all Database errors (abstract) */
186
+ DatabaseError: typeof DatabaseErrorClass;
187
+ /** Error thrown when database doesn't exist */
188
+ DatabaseNotFoundError: typeof DatabaseNotFoundErrorClass;
189
+ /** Error thrown when application has no access grant */
190
+ DatabaseAccessDeniedError: typeof DatabaseAccessDeniedErrorClass;
191
+ /** Error thrown when connection cannot be established */
192
+ DatabaseConnectionError: typeof DatabaseConnectionErrorClass;
193
+ /** Error thrown when query execution fails */
194
+ DatabaseQueryError: typeof DatabaseQueryErrorClass;
195
+ /** Error thrown when transaction fails */
196
+ DatabaseTransactionError: typeof DatabaseTransactionErrorClass;
197
+ /** Type guard to check if error is a DatabaseError */
198
+ isDatabaseError: typeof isDatabaseError;
199
+ /** Type guard to check if error is a specific DatabaseError type */
200
+ isDatabaseErrorType: typeof isDatabaseErrorType;
201
+ /** Secret class with static get() method */
202
+ Secret: {
203
+ get(secretCode: string): Promise<string>;
204
+ exists(secretCode: string): Promise<boolean>;
205
+ };
206
+ /** Base error class for all Secret errors (abstract) */
207
+ SecretError: typeof SecretErrorClass;
208
+ /** Error thrown when secret doesn't exist */
209
+ SecretNotFoundError: typeof SecretNotFoundErrorClass;
210
+ /** Error thrown when application has no access grant */
211
+ SecretAccessDeniedError: typeof SecretAccessDeniedErrorClass;
212
+ /** Error thrown when decryption fails */
213
+ SecretDecryptionError: typeof SecretDecryptionErrorClass;
214
+ /** Type guard to check if error is a SecretError */
215
+ isSecretError: typeof isSecretError;
216
+ /** Type guard to check if error is a specific SecretError type */
217
+ isSecretErrorType: typeof isSecretErrorType;
218
+ /** Excel class with static read() and create() methods */
219
+ Excel: {
220
+ read(buffer: Buffer): Promise<IExcelWorkbook>;
221
+ create(): IExcelWorkbook;
222
+ };
223
+ /** Base error class for all Excel errors (abstract) */
224
+ ExcelError: typeof ExcelErrorClass;
225
+ /** Error thrown when parsing Excel file fails */
226
+ ExcelParseError: typeof ExcelParseErrorClass;
227
+ /** Error thrown when writing Excel file fails */
228
+ ExcelWriteError: typeof ExcelWriteErrorClass;
229
+ /** Type guard to check if error is an ExcelError */
230
+ isExcelError: typeof isExcelError;
231
+ /** Type guard to check if error is a specific ExcelError type */
232
+ isExcelErrorType: typeof isExcelErrorType;
233
+ /** PDF class with static read() and create() methods */
234
+ Pdf: {
235
+ read(buffer: Buffer): Promise<IPdfDocument>;
236
+ create(): Promise<IPdfDocument>;
237
+ rgb(r: number, g: number, b: number): PdfRgbColor;
238
+ };
239
+ /** Base error class for all PDF errors (abstract) */
240
+ PdfError: typeof PdfErrorClass;
241
+ /** Error thrown when parsing PDF file fails */
242
+ PdfParseError: typeof PdfParseErrorClass;
243
+ /** Error thrown when writing PDF file fails */
244
+ PdfWriteError: typeof PdfWriteErrorClass;
245
+ /** Type guard to check if error is a PdfError */
246
+ isPdfError: typeof isPdfError;
247
+ /** Type guard to check if error is a specific PdfError type */
248
+ isPdfErrorType: typeof isPdfErrorType;
249
+ /** Job class with static methods for background job operations */
250
+ Job: {
251
+ runInBackground(params: RunInBackgroundParams): Promise<string>;
252
+ getStatus(jobId: string): Promise<JobStatus>;
253
+ list(params?: JobListParams): Promise<JobListResult>;
254
+ };
255
+ /** Base error class for all job errors */
256
+ JobError: typeof JobErrorClass;
257
+ /** Thrown when a job is not found */
258
+ JobNotFoundError: typeof JobNotFoundErrorClass;
259
+ /** Thrown when function name is invalid or missing */
260
+ InvalidFunctionError: typeof InvalidFunctionErrorClass;
261
+ /** Thrown when cross-app job lacks required permission */
262
+ CrossAppPermissionError: typeof CrossAppPermissionErrorClass;
263
+ /** Thrown when job execution fails */
264
+ JobExecutionError: typeof JobExecutionErrorClass;
265
+ /** Type guard to check if error is a JobError */
266
+ isJobError: typeof isJobError;
267
+ /** Type guard to check if error is a specific JobError type */
268
+ isJobErrorType: typeof isJobErrorType;
269
+ /** Messages class with static methods for sending messages to users */
270
+ Messages: MessagesManager;
271
+ /** Base error class for all message errors */
272
+ MessageError: typeof MessageErrorClass;
273
+ /** Error thrown when message validation fails */
274
+ MessageValidationError: typeof MessageValidationErrorClass;
275
+ /** Error thrown when group is not found */
276
+ GroupNotFoundError: typeof GroupNotFoundErrorClass;
277
+ /** Error thrown when TenantGrant permissions are missing */
278
+ TenantGrantPermissionDeniedError: typeof TenantGrantPermissionDeniedErrorClass;
279
+ /** Type guard to check if error is a MessageError */
280
+ isMessageError: typeof isMessageError;
281
+ /** Type guard to check if error is a specific MessageError type */
282
+ isMessageErrorType: typeof isMessageErrorType;
126
283
  }
127
284
  /**
128
285
  * Volume - S3-backed storage for tenant applications
@@ -339,123 +496,156 @@ export declare class Excel {
339
496
  */
340
497
  static create(): IExcelWorkbook;
341
498
  }
499
+ /**
500
+ * Pdf - Read, create, and modify PDF files in tenant applications
501
+ *
502
+ * Access via `ketrics.Pdf.read()` or `ketrics.Pdf.create()`.
503
+ *
504
+ * @example
505
+ * ```typescript
506
+ * export async function handler() {
507
+ * try {
508
+ * // Read PDF from volume
509
+ * const volume = await ketrics.Volume.connect('uploads');
510
+ * const file = await volume.get('document.pdf');
511
+ * const doc = await ketrics.Pdf.read(file.content);
512
+ *
513
+ * // Get page info
514
+ * console.log('Pages:', doc.getPageCount());
515
+ *
516
+ * // Create new PDF
517
+ * const newDoc = await ketrics.Pdf.create();
518
+ * const page = newDoc.addPage('A4');
519
+ * await page.drawText('Hello, World!', {
520
+ * x: 50,
521
+ * y: 700,
522
+ * size: 24,
523
+ * color: ketrics.Pdf.rgb(0, 0, 0),
524
+ * });
525
+ *
526
+ * const buffer = await newDoc.toBuffer();
527
+ * await volume.put('output.pdf', buffer);
528
+ *
529
+ * } catch (error) {
530
+ * if (error instanceof ketrics.PdfParseError) {
531
+ * console.log('Failed to parse PDF file');
532
+ * } else if (error instanceof ketrics.PdfWriteError) {
533
+ * console.log('Failed to write PDF file');
534
+ * }
535
+ * }
536
+ * }
537
+ * ```
538
+ */
539
+ export declare class Pdf {
540
+ private constructor();
541
+ /**
542
+ * Read a PDF file from a buffer
543
+ *
544
+ * @param buffer - Buffer containing PDF file data
545
+ * @returns Parsed PDF document
546
+ * @throws PdfParseError if file cannot be parsed
547
+ */
548
+ static read(buffer: Buffer): Promise<IPdfDocument>;
549
+ /**
550
+ * Create a new empty PDF document
551
+ *
552
+ * @returns New empty PDF document
553
+ */
554
+ static create(): Promise<IPdfDocument>;
555
+ /**
556
+ * Create an RGB color object
557
+ *
558
+ * @param r - Red component (0-1)
559
+ * @param g - Green component (0-1)
560
+ * @param b - Blue component (0-1)
561
+ * @returns RGB color object
562
+ */
563
+ static rgb(r: number, g: number, b: number): PdfRgbColor;
564
+ }
565
+ /**
566
+ * Job - Background job execution for tenant applications
567
+ *
568
+ * Access via `ketrics.Job.runInBackground()` to queue a background job,
569
+ * `ketrics.Job.getStatus()` to check job status, or `ketrics.Job.list()`
570
+ * to list jobs.
571
+ *
572
+ * @example
573
+ * ```typescript
574
+ * export async function handler() {
575
+ * try {
576
+ * // Queue a background job
577
+ * const jobId = await ketrics.Job.runInBackground({
578
+ * function: 'generateReport',
579
+ * payload: { year: 2024, format: 'pdf' },
580
+ * options: { timeout: 600000 }
581
+ * });
582
+ * console.log('Job created:', jobId);
583
+ *
584
+ * // Check job status
585
+ * const status = await ketrics.Job.getStatus(jobId);
586
+ * console.log('Job status:', status.status);
587
+ *
588
+ * // List pending jobs
589
+ * const result = await ketrics.Job.list({ status: 'pending' });
590
+ * console.log('Pending jobs:', result.jobs.length);
591
+ *
592
+ * } catch (error) {
593
+ * if (error instanceof ketrics.JobNotFoundError) {
594
+ * console.log('Job not found');
595
+ * } else if (error instanceof ketrics.InvalidFunctionError) {
596
+ * console.log('Invalid function name');
597
+ * } else if (error instanceof ketrics.CrossAppPermissionError) {
598
+ * console.log('Cross-app permission denied');
599
+ * }
600
+ * }
601
+ * }
602
+ * ```
603
+ */
604
+ export declare class Job {
605
+ private constructor();
606
+ /**
607
+ * Queue a function to run as a background job
608
+ *
609
+ * @param params - Job parameters including function name and optional payload
610
+ * @returns Job ID (UUID) that can be used to check status
611
+ * @throws InvalidFunctionError if function name is invalid
612
+ * @throws CrossAppPermissionError if cross-app job lacks permission
613
+ */
614
+ static runInBackground(params: RunInBackgroundParams): Promise<string>;
615
+ /**
616
+ * Get the current status of a background job
617
+ *
618
+ * @param jobId - Job UUID
619
+ * @returns Job status including current state and timestamps
620
+ * @throws JobNotFoundError if job doesn't exist
621
+ */
622
+ static getStatus(jobId: string): Promise<JobStatus>;
623
+ /**
624
+ * List background jobs for the current application
625
+ *
626
+ * @param params - Optional filter and pagination parameters
627
+ * @returns List of job statuses with optional pagination cursor
628
+ */
629
+ static list(params?: JobListParams): Promise<JobListResult>;
630
+ }
342
631
  /**
343
632
  * Global declaration for the Ketrics VM sandbox.
344
633
  *
345
634
  * The `ketrics` global object provides:
346
- * - Context: tenant, application, user, env
635
+ * - Context: tenant, application, user, runtime, environment
347
636
  * - Utilities: console, http
348
637
  * - Volume: Static class for S3 storage
349
638
  * - DatabaseConnection: Static class for database access
350
639
  * - Secret: Static class for secret retrieval
640
+ * - Excel: Static class for Excel file operations
641
+ * - Pdf: Static class for PDF file operations
642
+ * - Job: Static class for background job execution
643
+ * - Messages: Static class for user messaging
351
644
  * - Error classes: For instanceof checks
645
+ * - Type guards: For error type checking
352
646
  */
353
647
  declare global {
354
648
  /** Ketrics SDK global object - available in all tenant application code */
355
- const ketrics: KetricsSdkV1 & {
356
- /**
357
- * Volume class for S3-backed storage
358
- *
359
- * Use `ketrics.Volume.connect()` to get a connected volume instance.
360
- *
361
- * @example
362
- * ```typescript
363
- * const volume = await ketrics.Volume.connect('uploads');
364
- * const file = await volume.get('document.pdf');
365
- * ```
366
- */
367
- Volume: {
368
- connect(volumeCode: string): Promise<IVolume>;
369
- };
370
- /**
371
- * DatabaseConnection class for external database access
372
- *
373
- * Use `ketrics.DatabaseConnection.connect()` to get a connected database instance.
374
- *
375
- * @example
376
- * ```typescript
377
- * const db = await ketrics.DatabaseConnection.connect('main-db');
378
- * const result = await db.query('SELECT * FROM users');
379
- * await db.close();
380
- * ```
381
- */
382
- DatabaseConnection: {
383
- connect(databaseCode: string): Promise<IDatabaseConnection>;
384
- };
385
- /**
386
- * Secret class for encrypted secret retrieval
387
- *
388
- * Use `ketrics.Secret.get()` to retrieve a secret value.
389
- *
390
- * @example
391
- * ```typescript
392
- * const apiKey = await ketrics.Secret.get('stripe-api-key');
393
- * ```
394
- */
395
- Secret: {
396
- get(secretCode: string): Promise<string>;
397
- exists(secretCode: string): Promise<boolean>;
398
- };
399
- /**
400
- * Excel class for reading and writing Excel files
401
- *
402
- * Use `ketrics.Excel.read()` to parse an Excel file or
403
- * `ketrics.Excel.create()` to create a new workbook.
404
- *
405
- * @example
406
- * ```typescript
407
- * const workbook = await ketrics.Excel.read(file.content);
408
- * const sheet = workbook.getWorksheet('Sheet1');
409
- * ```
410
- */
411
- Excel: {
412
- read(buffer: Buffer): Promise<IExcelWorkbook>;
413
- create(): IExcelWorkbook;
414
- };
415
- /** Base class for all volume errors */
416
- VolumeError: typeof VolumeErrorClass;
417
- /** Thrown when a volume does not exist */
418
- VolumeNotFoundError: typeof VolumeNotFoundErrorClass;
419
- /** Thrown when application has no access grant to volume */
420
- VolumeAccessDeniedError: typeof VolumeAccessDeniedErrorClass;
421
- /** Thrown when operation requires a permission not granted */
422
- VolumePermissionDeniedError: typeof VolumePermissionDeniedErrorClass;
423
- /** Thrown when a file does not exist */
424
- FileNotFoundError: typeof FileNotFoundErrorClass;
425
- /** Thrown when file already exists (with ifNotExists option) */
426
- FileAlreadyExistsError: typeof FileAlreadyExistsErrorClass;
427
- /** Thrown when file path is invalid */
428
- InvalidPathError: typeof InvalidPathErrorClass;
429
- /** Thrown when file exceeds size limit */
430
- FileSizeLimitError: typeof FileSizeLimitErrorClass;
431
- /** Thrown when content type is not allowed */
432
- ContentTypeNotAllowedError: typeof ContentTypeNotAllowedErrorClass;
433
- /** Base class for all database errors */
434
- DatabaseError: typeof DatabaseErrorClass;
435
- /** Thrown when a database does not exist */
436
- DatabaseNotFoundError: typeof DatabaseNotFoundErrorClass;
437
- /** Thrown when application has no access grant to database */
438
- DatabaseAccessDeniedError: typeof DatabaseAccessDeniedErrorClass;
439
- /** Thrown when database connection cannot be established */
440
- DatabaseConnectionError: typeof DatabaseConnectionErrorClass;
441
- /** Thrown when a database query fails */
442
- DatabaseQueryError: typeof DatabaseQueryErrorClass;
443
- /** Thrown when a database transaction fails */
444
- DatabaseTransactionError: typeof DatabaseTransactionErrorClass;
445
- /** Base class for all secret errors */
446
- SecretError: typeof SecretErrorClass;
447
- /** Thrown when a secret does not exist */
448
- SecretNotFoundError: typeof SecretNotFoundErrorClass;
449
- /** Thrown when application has no access grant to secret */
450
- SecretAccessDeniedError: typeof SecretAccessDeniedErrorClass;
451
- /** Thrown when secret decryption fails */
452
- SecretDecryptionError: typeof SecretDecryptionErrorClass;
453
- /** Base class for all Excel errors */
454
- ExcelError: typeof ExcelErrorClass;
455
- /** Thrown when an Excel file cannot be parsed */
456
- ExcelParseError: typeof ExcelParseErrorClass;
457
- /** Thrown when an Excel file cannot be written */
458
- ExcelWriteError: typeof ExcelWriteErrorClass;
459
- };
649
+ const ketrics: KetricsSdkV1;
460
650
  }
461
651
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/dist/index.js CHANGED
@@ -56,7 +56,7 @@
56
56
  * ```
57
57
  */
58
58
  Object.defineProperty(exports, "__esModule", { value: true });
59
- exports.isVolumeErrorType = exports.isVolumeError = exports.ContentTypeNotAllowedError = exports.FileSizeLimitError = exports.InvalidPathError = exports.FileAlreadyExistsError = exports.FileNotFoundError = exports.VolumePermissionDeniedError = exports.VolumeAccessDeniedError = exports.VolumeNotFoundError = exports.VolumeError = exports.isExcelErrorType = exports.isExcelError = exports.ExcelWriteError = exports.ExcelParseError = exports.ExcelError = exports.isSecretErrorType = exports.isSecretError = exports.SecretDecryptionError = exports.SecretAccessDeniedError = exports.SecretNotFoundError = exports.SecretError = exports.isDatabaseErrorType = exports.isDatabaseError = exports.DatabaseTransactionError = exports.DatabaseQueryError = exports.DatabaseConnectionError = exports.DatabaseAccessDeniedError = exports.DatabaseNotFoundError = exports.DatabaseError = void 0;
59
+ exports.isVolumeErrorType = exports.isVolumeError = exports.ContentTypeNotAllowedError = exports.FileSizeLimitError = exports.InvalidPathError = exports.FileAlreadyExistsError = exports.FileNotFoundError = exports.VolumePermissionDeniedError = exports.VolumeAccessDeniedError = exports.VolumeNotFoundError = exports.VolumeError = exports.isMessageErrorType = exports.isMessageError = exports.TenantGrantPermissionDeniedError = exports.GroupNotFoundError = exports.MessageValidationError = exports.MessageError = exports.isJobErrorType = exports.isJobError = exports.JobExecutionError = exports.CrossAppPermissionError = exports.InvalidFunctionError = exports.JobNotFoundError = exports.JobError = exports.isPdfErrorType = exports.isPdfError = exports.PdfWriteError = exports.PdfParseError = exports.PdfError = exports.isExcelErrorType = exports.isExcelError = exports.ExcelWriteError = exports.ExcelParseError = exports.ExcelError = exports.isSecretErrorType = exports.isSecretError = exports.SecretDecryptionError = exports.SecretAccessDeniedError = exports.SecretNotFoundError = exports.SecretError = exports.isDatabaseErrorType = exports.isDatabaseError = exports.DatabaseTransactionError = exports.DatabaseQueryError = exports.DatabaseConnectionError = exports.DatabaseAccessDeniedError = exports.DatabaseNotFoundError = exports.DatabaseError = void 0;
60
60
  // ============================================================================
61
61
  // Database Error Exports
62
62
  // ============================================================================
@@ -89,6 +89,36 @@ Object.defineProperty(exports, "ExcelWriteError", { enumerable: true, get: funct
89
89
  Object.defineProperty(exports, "isExcelError", { enumerable: true, get: function () { return excel_errors_1.isExcelError; } });
90
90
  Object.defineProperty(exports, "isExcelErrorType", { enumerable: true, get: function () { return excel_errors_1.isExcelErrorType; } });
91
91
  // ============================================================================
92
+ // PDF Error Exports
93
+ // ============================================================================
94
+ var pdf_errors_1 = require("./pdf-errors");
95
+ Object.defineProperty(exports, "PdfError", { enumerable: true, get: function () { return pdf_errors_1.PdfError; } });
96
+ Object.defineProperty(exports, "PdfParseError", { enumerable: true, get: function () { return pdf_errors_1.PdfParseError; } });
97
+ Object.defineProperty(exports, "PdfWriteError", { enumerable: true, get: function () { return pdf_errors_1.PdfWriteError; } });
98
+ Object.defineProperty(exports, "isPdfError", { enumerable: true, get: function () { return pdf_errors_1.isPdfError; } });
99
+ Object.defineProperty(exports, "isPdfErrorType", { enumerable: true, get: function () { return pdf_errors_1.isPdfErrorType; } });
100
+ // ============================================================================
101
+ // Job Error Exports
102
+ // ============================================================================
103
+ var job_errors_1 = require("./job-errors");
104
+ Object.defineProperty(exports, "JobError", { enumerable: true, get: function () { return job_errors_1.JobError; } });
105
+ Object.defineProperty(exports, "JobNotFoundError", { enumerable: true, get: function () { return job_errors_1.JobNotFoundError; } });
106
+ Object.defineProperty(exports, "InvalidFunctionError", { enumerable: true, get: function () { return job_errors_1.InvalidFunctionError; } });
107
+ Object.defineProperty(exports, "CrossAppPermissionError", { enumerable: true, get: function () { return job_errors_1.CrossAppPermissionError; } });
108
+ Object.defineProperty(exports, "JobExecutionError", { enumerable: true, get: function () { return job_errors_1.JobExecutionError; } });
109
+ Object.defineProperty(exports, "isJobError", { enumerable: true, get: function () { return job_errors_1.isJobError; } });
110
+ Object.defineProperty(exports, "isJobErrorType", { enumerable: true, get: function () { return job_errors_1.isJobErrorType; } });
111
+ // ============================================================================
112
+ // Messages Error Exports
113
+ // ============================================================================
114
+ var messages_errors_1 = require("./messages-errors");
115
+ Object.defineProperty(exports, "MessageError", { enumerable: true, get: function () { return messages_errors_1.MessageError; } });
116
+ Object.defineProperty(exports, "MessageValidationError", { enumerable: true, get: function () { return messages_errors_1.MessageValidationError; } });
117
+ Object.defineProperty(exports, "GroupNotFoundError", { enumerable: true, get: function () { return messages_errors_1.GroupNotFoundError; } });
118
+ Object.defineProperty(exports, "TenantGrantPermissionDeniedError", { enumerable: true, get: function () { return messages_errors_1.TenantGrantPermissionDeniedError; } });
119
+ Object.defineProperty(exports, "isMessageError", { enumerable: true, get: function () { return messages_errors_1.isMessageError; } });
120
+ Object.defineProperty(exports, "isMessageErrorType", { enumerable: true, get: function () { return messages_errors_1.isMessageErrorType; } });
121
+ // ============================================================================
92
122
  // Volume Error Exports
93
123
  // ============================================================================
94
124
  var errors_1 = require("./errors");
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuDG;;;AAoCH,+EAA+E;AAC/E,yBAAyB;AACzB,+EAA+E;AAE/E,qDAS2B;AARzB,gHAAA,aAAa,OAAA;AACb,wHAAA,qBAAqB,OAAA;AACrB,4HAAA,yBAAyB,OAAA;AACzB,0HAAA,uBAAuB,OAAA;AACvB,qHAAA,kBAAkB,OAAA;AAClB,2HAAA,wBAAwB,OAAA;AACxB,kHAAA,eAAe,OAAA;AACf,sHAAA,mBAAmB,OAAA;AASrB,+EAA+E;AAC/E,uBAAuB;AACvB,+EAA+E;AAE/E,iDAOyB;AANvB,4GAAA,WAAW,OAAA;AACX,oHAAA,mBAAmB,OAAA;AACnB,wHAAA,uBAAuB,OAAA;AACvB,sHAAA,qBAAqB,OAAA;AACrB,8GAAA,aAAa,OAAA;AACb,kHAAA,iBAAiB,OAAA;AAqBnB,+EAA+E;AAC/E,sBAAsB;AACtB,+EAA+E;AAE/E,+CAMwB;AALtB,0GAAA,UAAU,OAAA;AACV,+GAAA,eAAe,OAAA;AACf,+GAAA,eAAe,OAAA;AACf,4GAAA,YAAY,OAAA;AACZ,gHAAA,gBAAgB,OAAA;AAqClB,+EAA+E;AAC/E,uBAAuB;AACvB,+EAA+E;AAE/E,mCAgBkB;AAbhB,gBAAgB;AAChB,qGAAA,WAAW,OAAA;AACX,6GAAA,mBAAmB,OAAA;AACnB,iHAAA,uBAAuB,OAAA;AACvB,qHAAA,2BAA2B,OAAA;AAC3B,2GAAA,iBAAiB,OAAA;AACjB,gHAAA,sBAAsB,OAAA;AACtB,0GAAA,gBAAgB,OAAA;AAChB,4GAAA,kBAAkB,OAAA;AAClB,oHAAA,0BAA0B,OAAA;AAC1B,cAAc;AACd,uGAAA,aAAa,OAAA;AACb,2GAAA,iBAAiB,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuDG;;;AAqCH,+EAA+E;AAC/E,yBAAyB;AACzB,+EAA+E;AAE/E,qDAS2B;AARzB,gHAAA,aAAa,OAAA;AACb,wHAAA,qBAAqB,OAAA;AACrB,4HAAA,yBAAyB,OAAA;AACzB,0HAAA,uBAAuB,OAAA;AACvB,qHAAA,kBAAkB,OAAA;AAClB,2HAAA,wBAAwB,OAAA;AACxB,kHAAA,eAAe,OAAA;AACf,sHAAA,mBAAmB,OAAA;AASrB,+EAA+E;AAC/E,uBAAuB;AACvB,+EAA+E;AAE/E,iDAOyB;AANvB,4GAAA,WAAW,OAAA;AACX,oHAAA,mBAAmB,OAAA;AACnB,wHAAA,uBAAuB,OAAA;AACvB,sHAAA,qBAAqB,OAAA;AACrB,8GAAA,aAAa,OAAA;AACb,kHAAA,iBAAiB,OAAA;AAqBnB,+EAA+E;AAC/E,sBAAsB;AACtB,+EAA+E;AAE/E,+CAMwB;AALtB,0GAAA,UAAU,OAAA;AACV,+GAAA,eAAe,OAAA;AACf,+GAAA,eAAe,OAAA;AACf,4GAAA,YAAY,OAAA;AACZ,gHAAA,gBAAgB,OAAA;AA2BlB,+EAA+E;AAC/E,oBAAoB;AACpB,+EAA+E;AAE/E,2CAMsB;AALpB,sGAAA,QAAQ,OAAA;AACR,2GAAA,aAAa,OAAA;AACb,2GAAA,aAAa,OAAA;AACb,wGAAA,UAAU,OAAA;AACV,4GAAA,cAAc,OAAA;AAiBhB,+EAA+E;AAC/E,oBAAoB;AACpB,+EAA+E;AAE/E,2CAQsB;AAPpB,sGAAA,QAAQ,OAAA;AACR,8GAAA,gBAAgB,OAAA;AAChB,kHAAA,oBAAoB,OAAA;AACpB,qHAAA,uBAAuB,OAAA;AACvB,+GAAA,iBAAiB,OAAA;AACjB,wGAAA,UAAU,OAAA;AACV,4GAAA,cAAc,OAAA;AAkBhB,+EAA+E;AAC/E,yBAAyB;AACzB,+EAA+E;AAE/E,qDAO2B;AANzB,+GAAA,YAAY,OAAA;AACZ,yHAAA,sBAAsB,OAAA;AACtB,qHAAA,kBAAkB,OAAA;AAClB,mIAAA,gCAAgC,OAAA;AAChC,iHAAA,cAAc,OAAA;AACd,qHAAA,kBAAkB,OAAA;AAqCpB,+EAA+E;AAC/E,uBAAuB;AACvB,+EAA+E;AAE/E,mCAgBkB;AAbhB,gBAAgB;AAChB,qGAAA,WAAW,OAAA;AACX,6GAAA,mBAAmB,OAAA;AACnB,iHAAA,uBAAuB,OAAA;AACvB,qHAAA,2BAA2B,OAAA;AAC3B,2GAAA,iBAAiB,OAAA;AACjB,gHAAA,sBAAsB,OAAA;AACtB,0GAAA,gBAAgB,OAAA;AAChB,4GAAA,kBAAkB,OAAA;AAClB,oHAAA,0BAA0B,OAAA;AAC1B,cAAc;AACd,uGAAA,aAAa,OAAA;AACb,2GAAA,iBAAiB,OAAA"}