@ketrics/sdk-backend 0.11.0 → 0.12.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.
@@ -0,0 +1,172 @@
1
+ /**
2
+ * Ketrics SDK - Applications Error Classes
3
+ *
4
+ * Provides typed errors for cross-app function invocation operations
5
+ * in tenant applications.
6
+ *
7
+ * Error Hierarchy:
8
+ * - ApplicationsError (base)
9
+ * - ApplicationNotFoundError
10
+ * - ApplicationNotDeployedError
11
+ * - ApplicationPermissionDeniedError
12
+ * - ApplicationInvocationError
13
+ * - ApplicationTimeoutError
14
+ */
15
+ /**
16
+ * Base error class for all Applications errors
17
+ *
18
+ * All Applications errors extend this class and include:
19
+ * - applicationCode: The target application code
20
+ * - operation: The operation that failed
21
+ * - timestamp: When the error occurred
22
+ */
23
+ export declare abstract class ApplicationsError extends Error {
24
+ /** Target application code */
25
+ readonly applicationCode: string;
26
+ /** Operation that failed */
27
+ readonly operation: string;
28
+ /** When the error occurred */
29
+ readonly timestamp: Date;
30
+ constructor(message: string, operation: string, applicationCode: string);
31
+ /**
32
+ * Serialize error for logging
33
+ */
34
+ toJSON(): Record<string, unknown>;
35
+ }
36
+ /**
37
+ * Error thrown when target application is not found
38
+ *
39
+ * @example
40
+ * ```typescript
41
+ * try {
42
+ * const app = await ketrics.Applications.connect('nonexistent');
43
+ * } catch (error) {
44
+ * if (error instanceof ketrics.Applications.NotFoundError) {
45
+ * console.log('Application not found:', error.applicationCode);
46
+ * }
47
+ * }
48
+ * ```
49
+ */
50
+ export declare class ApplicationNotFoundError extends ApplicationsError {
51
+ constructor(applicationCode: string);
52
+ }
53
+ /**
54
+ * Error thrown when target application has no active deployment
55
+ *
56
+ * @example
57
+ * ```typescript
58
+ * try {
59
+ * const app = await ketrics.Applications.connect('inactive-app');
60
+ * } catch (error) {
61
+ * if (error instanceof ketrics.Applications.NotDeployedError) {
62
+ * console.log('Application not deployed:', error.applicationCode);
63
+ * }
64
+ * }
65
+ * ```
66
+ */
67
+ export declare class ApplicationNotDeployedError extends ApplicationsError {
68
+ constructor(applicationCode: string);
69
+ }
70
+ /**
71
+ * Error thrown when the calling application lacks permission to invoke the target
72
+ *
73
+ * @example
74
+ * ```typescript
75
+ * try {
76
+ * const app = await ketrics.Applications.connect('restricted-app');
77
+ * } catch (error) {
78
+ * if (error instanceof ketrics.Applications.PermissionDeniedError) {
79
+ * console.log('Permission denied:', error.sourceApplicationCode, '->', error.applicationCode);
80
+ * }
81
+ * }
82
+ * ```
83
+ */
84
+ export declare class ApplicationPermissionDeniedError extends ApplicationsError {
85
+ /** Source application code */
86
+ readonly sourceApplicationCode: string;
87
+ constructor(sourceApplicationCode: string, targetApplicationCode: string, detail?: string);
88
+ toJSON(): Record<string, unknown>;
89
+ }
90
+ /**
91
+ * Error thrown when the invoked function fails during execution
92
+ *
93
+ * @example
94
+ * ```typescript
95
+ * try {
96
+ * const result = await app.invoke('processData', { items: [] });
97
+ * } catch (error) {
98
+ * if (error instanceof ketrics.Applications.InvocationError) {
99
+ * console.log('Function failed:', error.functionName, error.errorCode);
100
+ * }
101
+ * }
102
+ * ```
103
+ */
104
+ export declare class ApplicationInvocationError extends ApplicationsError {
105
+ /** Error code from the target function */
106
+ readonly errorCode: string;
107
+ /** Function that failed */
108
+ readonly functionName: string;
109
+ constructor(applicationCode: string, functionName: string, errorCode: string, message: string);
110
+ toJSON(): Record<string, unknown>;
111
+ }
112
+ /**
113
+ * Error thrown when cross-app function invocation times out
114
+ *
115
+ * @example
116
+ * ```typescript
117
+ * try {
118
+ * const result = await app.invoke('longRunningTask', { data: 'large' });
119
+ * } catch (error) {
120
+ * if (error instanceof ketrics.Applications.TimeoutError) {
121
+ * console.log('Timed out after', error.timeoutMs, 'ms');
122
+ * }
123
+ * }
124
+ * ```
125
+ */
126
+ export declare class ApplicationTimeoutError extends ApplicationsError {
127
+ /** Function that timed out */
128
+ readonly functionName: string;
129
+ /** Timeout in milliseconds */
130
+ readonly timeoutMs: number;
131
+ constructor(applicationCode: string, functionName: string, timeoutMs: number);
132
+ toJSON(): Record<string, unknown>;
133
+ }
134
+ /**
135
+ * Type guard to check if an error is an ApplicationsError
136
+ *
137
+ * @param error - The error to check
138
+ * @returns True if the error is an ApplicationsError
139
+ *
140
+ * @example
141
+ * ```typescript
142
+ * try {
143
+ * const app = await ketrics.Applications.connect('appb');
144
+ * const result = await app.invoke('calculate', { x: 1 });
145
+ * } catch (error) {
146
+ * if (isApplicationsError(error)) {
147
+ * console.log(`Applications error: ${error.applicationCode} - ${error.operation}`);
148
+ * }
149
+ * }
150
+ * ```
151
+ */
152
+ export declare function isApplicationsError(error: unknown): error is ApplicationsError;
153
+ /**
154
+ * Type guard to check if an error is a specific ApplicationsError type
155
+ *
156
+ * @param error - The error to check
157
+ * @param errorClass - The error class to check against
158
+ * @returns True if the error is an instance of the specified class
159
+ *
160
+ * @example
161
+ * ```typescript
162
+ * try {
163
+ * const app = await ketrics.Applications.connect('appb');
164
+ * } catch (error) {
165
+ * if (isApplicationsErrorType(error, ApplicationNotFoundError)) {
166
+ * console.log('Application not found:', error.applicationCode);
167
+ * }
168
+ * }
169
+ * ```
170
+ */
171
+ export declare function isApplicationsErrorType<T extends ApplicationsError>(error: unknown, errorClass: new (...args: any[]) => T): error is T;
172
+ //# sourceMappingURL=applications-errors.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"applications-errors.d.ts","sourceRoot":"","sources":["../src/applications-errors.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAMH;;;;;;;GAOG;AACH,8BAAsB,iBAAkB,SAAQ,KAAK;IACnD,8BAA8B;IAC9B,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IAEjC,4BAA4B;IAC5B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAE3B,8BAA8B;IAC9B,QAAQ,CAAC,SAAS,EAAE,IAAI,CAAC;gBAEb,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM;IAavE;;OAEG;IACH,MAAM,IAAI,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;CASlC;AAMD;;;;;;;;;;;;;GAaG;AACH,qBAAa,wBAAyB,SAAQ,iBAAiB;gBACjD,eAAe,EAAE,MAAM;CAOpC;AAED;;;;;;;;;;;;;GAaG;AACH,qBAAa,2BAA4B,SAAQ,iBAAiB;gBACpD,eAAe,EAAE,MAAM;CAOpC;AAED;;;;;;;;;;;;;GAaG;AACH,qBAAa,gCAAiC,SAAQ,iBAAiB;IACrE,8BAA8B;IAC9B,QAAQ,CAAC,qBAAqB,EAAE,MAAM,CAAC;gBAE3B,qBAAqB,EAAE,MAAM,EAAE,qBAAqB,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM;IAUzF,MAAM,IAAI,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;CAMlC;AAED;;;;;;;;;;;;;GAaG;AACH,qBAAa,0BAA2B,SAAQ,iBAAiB;IAC/D,0CAA0C;IAC1C,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAE3B,2BAA2B;IAC3B,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;gBAElB,eAAe,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM;IAU7F,MAAM,IAAI,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;CAOlC;AAED;;;;;;;;;;;;;GAaG;AACH,qBAAa,uBAAwB,SAAQ,iBAAiB;IAC5D,8BAA8B;IAC9B,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAE9B,8BAA8B;IAC9B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;gBAEf,eAAe,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM;IAU5E,MAAM,IAAI,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;CAOlC;AAMD;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,iBAAiB,CAE9E;AAED;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAgB,uBAAuB,CAAC,CAAC,SAAS,iBAAiB,EACjE,KAAK,EAAE,OAAO,EAEd,UAAU,EAAE,KAAK,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,CAAC,GACpC,KAAK,IAAI,CAAC,CAEZ"}
@@ -0,0 +1,233 @@
1
+ "use strict";
2
+ /**
3
+ * Ketrics SDK - Applications Error Classes
4
+ *
5
+ * Provides typed errors for cross-app function invocation operations
6
+ * in tenant applications.
7
+ *
8
+ * Error Hierarchy:
9
+ * - ApplicationsError (base)
10
+ * - ApplicationNotFoundError
11
+ * - ApplicationNotDeployedError
12
+ * - ApplicationPermissionDeniedError
13
+ * - ApplicationInvocationError
14
+ * - ApplicationTimeoutError
15
+ */
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.ApplicationTimeoutError = exports.ApplicationInvocationError = exports.ApplicationPermissionDeniedError = exports.ApplicationNotDeployedError = exports.ApplicationNotFoundError = exports.ApplicationsError = void 0;
18
+ exports.isApplicationsError = isApplicationsError;
19
+ exports.isApplicationsErrorType = isApplicationsErrorType;
20
+ // ============================================================================
21
+ // Base Error Class
22
+ // ============================================================================
23
+ /**
24
+ * Base error class for all Applications errors
25
+ *
26
+ * All Applications errors extend this class and include:
27
+ * - applicationCode: The target application code
28
+ * - operation: The operation that failed
29
+ * - timestamp: When the error occurred
30
+ */
31
+ class ApplicationsError extends Error {
32
+ constructor(message, operation, applicationCode) {
33
+ super(message);
34
+ this.name = this.constructor.name;
35
+ this.operation = operation;
36
+ this.applicationCode = applicationCode;
37
+ this.timestamp = new Date();
38
+ // Maintains proper stack trace for where error was thrown
39
+ if (Error.captureStackTrace) {
40
+ Error.captureStackTrace(this, this.constructor);
41
+ }
42
+ }
43
+ /**
44
+ * Serialize error for logging
45
+ */
46
+ toJSON() {
47
+ return {
48
+ name: this.name,
49
+ message: this.message,
50
+ applicationCode: this.applicationCode,
51
+ operation: this.operation,
52
+ timestamp: this.timestamp.toISOString(),
53
+ };
54
+ }
55
+ }
56
+ exports.ApplicationsError = ApplicationsError;
57
+ // ============================================================================
58
+ // Specific Error Classes
59
+ // ============================================================================
60
+ /**
61
+ * Error thrown when target application is not found
62
+ *
63
+ * @example
64
+ * ```typescript
65
+ * try {
66
+ * const app = await ketrics.Applications.connect('nonexistent');
67
+ * } catch (error) {
68
+ * if (error instanceof ketrics.Applications.NotFoundError) {
69
+ * console.log('Application not found:', error.applicationCode);
70
+ * }
71
+ * }
72
+ * ```
73
+ */
74
+ class ApplicationNotFoundError extends ApplicationsError {
75
+ constructor(applicationCode) {
76
+ super(`Application '${applicationCode}' not found. Verify the application code is correct.`, 'connect', applicationCode);
77
+ }
78
+ }
79
+ exports.ApplicationNotFoundError = ApplicationNotFoundError;
80
+ /**
81
+ * Error thrown when target application has no active deployment
82
+ *
83
+ * @example
84
+ * ```typescript
85
+ * try {
86
+ * const app = await ketrics.Applications.connect('inactive-app');
87
+ * } catch (error) {
88
+ * if (error instanceof ketrics.Applications.NotDeployedError) {
89
+ * console.log('Application not deployed:', error.applicationCode);
90
+ * }
91
+ * }
92
+ * ```
93
+ */
94
+ class ApplicationNotDeployedError extends ApplicationsError {
95
+ constructor(applicationCode) {
96
+ super(`Application '${applicationCode}' is not deployed or is inactive.`, 'connect', applicationCode);
97
+ }
98
+ }
99
+ exports.ApplicationNotDeployedError = ApplicationNotDeployedError;
100
+ /**
101
+ * Error thrown when the calling application lacks permission to invoke the target
102
+ *
103
+ * @example
104
+ * ```typescript
105
+ * try {
106
+ * const app = await ketrics.Applications.connect('restricted-app');
107
+ * } catch (error) {
108
+ * if (error instanceof ketrics.Applications.PermissionDeniedError) {
109
+ * console.log('Permission denied:', error.sourceApplicationCode, '->', error.applicationCode);
110
+ * }
111
+ * }
112
+ * ```
113
+ */
114
+ class ApplicationPermissionDeniedError extends ApplicationsError {
115
+ constructor(sourceApplicationCode, targetApplicationCode, detail) {
116
+ const detailMsg = detail ? ` ${detail}` : '';
117
+ super(`Application '${sourceApplicationCode}' does not have permission to invoke functions on '${targetApplicationCode}'.${detailMsg}`, 'connect', targetApplicationCode);
118
+ this.sourceApplicationCode = sourceApplicationCode;
119
+ }
120
+ toJSON() {
121
+ return {
122
+ ...super.toJSON(),
123
+ sourceApplicationCode: this.sourceApplicationCode,
124
+ };
125
+ }
126
+ }
127
+ exports.ApplicationPermissionDeniedError = ApplicationPermissionDeniedError;
128
+ /**
129
+ * Error thrown when the invoked function fails during execution
130
+ *
131
+ * @example
132
+ * ```typescript
133
+ * try {
134
+ * const result = await app.invoke('processData', { items: [] });
135
+ * } catch (error) {
136
+ * if (error instanceof ketrics.Applications.InvocationError) {
137
+ * console.log('Function failed:', error.functionName, error.errorCode);
138
+ * }
139
+ * }
140
+ * ```
141
+ */
142
+ class ApplicationInvocationError extends ApplicationsError {
143
+ constructor(applicationCode, functionName, errorCode, message) {
144
+ super(`Function '${functionName}' on application '${applicationCode}' failed: ${message}`, 'invoke', applicationCode);
145
+ this.errorCode = errorCode;
146
+ this.functionName = functionName;
147
+ }
148
+ toJSON() {
149
+ return {
150
+ ...super.toJSON(),
151
+ errorCode: this.errorCode,
152
+ functionName: this.functionName,
153
+ };
154
+ }
155
+ }
156
+ exports.ApplicationInvocationError = ApplicationInvocationError;
157
+ /**
158
+ * Error thrown when cross-app function invocation times out
159
+ *
160
+ * @example
161
+ * ```typescript
162
+ * try {
163
+ * const result = await app.invoke('longRunningTask', { data: 'large' });
164
+ * } catch (error) {
165
+ * if (error instanceof ketrics.Applications.TimeoutError) {
166
+ * console.log('Timed out after', error.timeoutMs, 'ms');
167
+ * }
168
+ * }
169
+ * ```
170
+ */
171
+ class ApplicationTimeoutError extends ApplicationsError {
172
+ constructor(applicationCode, functionName, timeoutMs) {
173
+ super(`Function '${functionName}' on application '${applicationCode}' timed out after ${timeoutMs}ms.`, 'invoke', applicationCode);
174
+ this.functionName = functionName;
175
+ this.timeoutMs = timeoutMs;
176
+ }
177
+ toJSON() {
178
+ return {
179
+ ...super.toJSON(),
180
+ functionName: this.functionName,
181
+ timeoutMs: this.timeoutMs,
182
+ };
183
+ }
184
+ }
185
+ exports.ApplicationTimeoutError = ApplicationTimeoutError;
186
+ // ============================================================================
187
+ // Type Guards
188
+ // ============================================================================
189
+ /**
190
+ * Type guard to check if an error is an ApplicationsError
191
+ *
192
+ * @param error - The error to check
193
+ * @returns True if the error is an ApplicationsError
194
+ *
195
+ * @example
196
+ * ```typescript
197
+ * try {
198
+ * const app = await ketrics.Applications.connect('appb');
199
+ * const result = await app.invoke('calculate', { x: 1 });
200
+ * } catch (error) {
201
+ * if (isApplicationsError(error)) {
202
+ * console.log(`Applications error: ${error.applicationCode} - ${error.operation}`);
203
+ * }
204
+ * }
205
+ * ```
206
+ */
207
+ function isApplicationsError(error) {
208
+ return error instanceof ApplicationsError;
209
+ }
210
+ /**
211
+ * Type guard to check if an error is a specific ApplicationsError type
212
+ *
213
+ * @param error - The error to check
214
+ * @param errorClass - The error class to check against
215
+ * @returns True if the error is an instance of the specified class
216
+ *
217
+ * @example
218
+ * ```typescript
219
+ * try {
220
+ * const app = await ketrics.Applications.connect('appb');
221
+ * } catch (error) {
222
+ * if (isApplicationsErrorType(error, ApplicationNotFoundError)) {
223
+ * console.log('Application not found:', error.applicationCode);
224
+ * }
225
+ * }
226
+ * ```
227
+ */
228
+ function isApplicationsErrorType(error,
229
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
230
+ errorClass) {
231
+ return error instanceof errorClass;
232
+ }
233
+ //# sourceMappingURL=applications-errors.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"applications-errors.js","sourceRoot":"","sources":["../src/applications-errors.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,67 @@
1
+ /**
2
+ * Ketrics SDK - Applications Interfaces
3
+ *
4
+ * Provides type definitions for cross-app function invocation
5
+ * in tenant applications.
6
+ *
7
+ * Usage in tenant code:
8
+ * ```typescript
9
+ * // Connect to another application (eagerly validates)
10
+ * const appb = await ketrics.Applications.connect('appb');
11
+ *
12
+ * // Invoke a function on the connected application
13
+ * const result = await appb.invoke('calculateTotal', { items: [...] });
14
+ * console.log(result.success); // true
15
+ * console.log(result.result); // function return value
16
+ * console.log(result.executionTime); // execution time in ms
17
+ * ```
18
+ *
19
+ * Authorization:
20
+ * - Uses role-based permissions (app_domain roles)
21
+ * - The calling application's requestor must have permissions for the target app
22
+ * - No grants required - permissions flow through RBAC
23
+ */
24
+ /**
25
+ * Result of invoking a function on a connected application
26
+ */
27
+ export interface ApplicationInvokeResult {
28
+ /** Whether the invocation succeeded */
29
+ success: boolean;
30
+ /** Return value from the target function */
31
+ result?: unknown;
32
+ /** Execution time in milliseconds */
33
+ executionTime?: number;
34
+ /** Error details (only present when success is false) */
35
+ error?: {
36
+ code: string;
37
+ message: string;
38
+ };
39
+ }
40
+ /**
41
+ * Connected Application Interface
42
+ *
43
+ * Represents a validated connection to another application.
44
+ * Returned by Applications.connect() after permission checks pass.
45
+ */
46
+ export interface IApplicationConnection {
47
+ /** Target application code (read-only) */
48
+ readonly code: string;
49
+ /** Target application display name (read-only) */
50
+ readonly name: string;
51
+ /** Target application UUID (read-only) */
52
+ readonly applicationId: string;
53
+ /**
54
+ * Invoke a function on the connected application
55
+ *
56
+ * Executes the specified function in the target application's VM sandbox.
57
+ * The response is wrapped in a standard envelope.
58
+ *
59
+ * @param functionName - Name of the exported function to call
60
+ * @param payload - Optional data to pass to the function
61
+ * @returns Invoke result envelope with success, result, and executionTime
62
+ * @throws ApplicationInvocationError if the function fails
63
+ * @throws ApplicationTimeoutError if the function exceeds the timeout
64
+ */
65
+ invoke(functionName: string, payload?: Record<string, unknown>): Promise<ApplicationInvokeResult>;
66
+ }
67
+ //# sourceMappingURL=applications.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"applications.d.ts","sourceRoot":"","sources":["../src/applications.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;GAsBG;AAMH;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC,uCAAuC;IACvC,OAAO,EAAE,OAAO,CAAC;IACjB,4CAA4C;IAC5C,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,qCAAqC;IACrC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,yDAAyD;IACzD,KAAK,CAAC,EAAE;QACN,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,MAAM,CAAC;KACjB,CAAC;CACH;AAMD;;;;;GAKG;AACH,MAAM,WAAW,sBAAsB;IACrC,0CAA0C;IAC1C,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,kDAAkD;IAClD,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,0CAA0C;IAC1C,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAC;IAE/B;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,OAAO,CAAC,uBAAuB,CAAC,CAAC;CACnG"}
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ /**
3
+ * Ketrics SDK - Applications Interfaces
4
+ *
5
+ * Provides type definitions for cross-app function invocation
6
+ * in tenant applications.
7
+ *
8
+ * Usage in tenant code:
9
+ * ```typescript
10
+ * // Connect to another application (eagerly validates)
11
+ * const appb = await ketrics.Applications.connect('appb');
12
+ *
13
+ * // Invoke a function on the connected application
14
+ * const result = await appb.invoke('calculateTotal', { items: [...] });
15
+ * console.log(result.success); // true
16
+ * console.log(result.result); // function return value
17
+ * console.log(result.executionTime); // execution time in ms
18
+ * ```
19
+ *
20
+ * Authorization:
21
+ * - Uses role-based permissions (app_domain roles)
22
+ * - The calling application's requestor must have permissions for the target app
23
+ * - No grants required - permissions flow through RBAC
24
+ */
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ //# sourceMappingURL=applications.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"applications.js","sourceRoot":"","sources":["../src/applications.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;;GAsBG"}
package/dist/index.d.ts CHANGED
@@ -74,6 +74,8 @@ export { DocumentDbListOptions, DocumentDbListResult, DocumentDbPutOptions, Docu
74
74
  export { DocumentDbError, DocumentDbNotFoundError, DocumentDbAccessDeniedError, DocumentDbPermissionDeniedError, DocumentDbValidationError, DocumentDbOperationError, isDocumentDbError, isDocumentDbErrorType, } from "./documentdb-errors";
75
75
  export { TenantUserInfo } from "./users";
76
76
  export { UsersError, UsersPermissionDeniedError, isUsersError, isUsersErrorType } from "./users-errors";
77
+ export { ApplicationInvokeResult, IApplicationConnection } from "./applications";
78
+ export { ApplicationsError, ApplicationNotFoundError, ApplicationNotDeployedError, ApplicationPermissionDeniedError, ApplicationInvocationError, ApplicationTimeoutError, isApplicationsError, isApplicationsErrorType, } from "./applications-errors";
77
79
  export { PutContent, FileContent, FileMetadata, FileInfo, PutOptions, PutResult, DeleteResult, DeleteError, DeleteByPrefixResult, ListOptions, ListResult, CopyOptions, CopyResult, MoveOptions, MoveResult, DownloadUrlOptions, UploadUrlOptions, PresignedUrl, IVolume, } from "./volumes";
78
80
  export { VolumePermissionValue, VolumeError, VolumeNotFoundError, VolumeAccessDeniedError, VolumePermissionDeniedError, FileNotFoundError, FileAlreadyExistsError, InvalidPathError, FileSizeLimitError, ContentTypeNotAllowedError, isVolumeError, isVolumeErrorType, } from "./errors";
79
81
  import type { TenantContext, ApplicationContext, RequestorContext, RuntimeContext, EnvironmentVariables } from "./context";
@@ -87,6 +89,7 @@ import type { RunInBackgroundParams, JobStatus, JobListParams, JobListResult } f
87
89
  import type { SendMessageParams, SendBulkMessageParams, SendGroupMessageParams, SendMessageResult, SendBulkMessageResult } from "./messages";
88
90
  import type { IDocumentDbConnection } from "./documentdb";
89
91
  import type { TenantUserInfo } from "./users";
92
+ import type { IApplicationConnection } from "./applications";
90
93
  /**
91
94
  * Base class for all Volume errors
92
95
  */
@@ -178,6 +181,17 @@ export interface UsersErrorClass extends Error {
178
181
  toJSON(): Record<string, unknown>;
179
182
  }
180
183
  export type UsersErrorConstructor = new (...args: any[]) => UsersErrorClass;
184
+ /**
185
+ * Base class for all Applications errors
186
+ */
187
+ export interface ApplicationsErrorClass extends Error {
188
+ readonly applicationCode: string;
189
+ readonly operation: string;
190
+ readonly timestamp: Date;
191
+ toJSON(): Record<string, unknown>;
192
+ }
193
+ export type AbstractApplicationsErrorConstructor = abstract new (...args: any[]) => ApplicationsErrorClass;
194
+ export type ApplicationsErrorConstructor = new (...args: any[]) => ApplicationsErrorClass;
181
195
  /**
182
196
  * Volume Module
183
197
  *
@@ -448,6 +462,47 @@ export interface UsersModule {
448
462
  /** Type guard to check if error is a specific UsersError type */
449
463
  isErrorType: <T extends UsersErrorClass>(error: unknown, errorClass: new (...args: any[]) => T) => error is T;
450
464
  }
465
+ /**
466
+ * Applications Module (Grouped)
467
+ *
468
+ * Groups cross-app function invocation operations, error classes, and type guards
469
+ * under a single namespace.
470
+ *
471
+ * @example
472
+ * ```typescript
473
+ * try {
474
+ * const appb = await ketrics.Applications.connect('appb');
475
+ * const result = await appb.invoke('calculateTotal', { items: [...] });
476
+ * console.log(result.success, result.result, result.executionTime);
477
+ * } catch (error) {
478
+ * if (error instanceof ketrics.Applications.NotFoundError) {
479
+ * console.log('Application not found');
480
+ * } else if (error instanceof ketrics.Applications.PermissionDeniedError) {
481
+ * console.log('No permission to invoke');
482
+ * }
483
+ * }
484
+ * ```
485
+ */
486
+ export interface ApplicationsModule {
487
+ /** Connect to another application by code (eagerly validates) */
488
+ connect(applicationCode: string): Promise<IApplicationConnection>;
489
+ /** Base error class for all Applications errors (abstract) */
490
+ Error: AbstractApplicationsErrorConstructor;
491
+ /** Error thrown when target application doesn't exist */
492
+ NotFoundError: ApplicationsErrorConstructor;
493
+ /** Error thrown when target application is not deployed or inactive */
494
+ NotDeployedError: ApplicationsErrorConstructor;
495
+ /** Error thrown when requestor lacks permission for target application */
496
+ PermissionDeniedError: ApplicationsErrorConstructor;
497
+ /** Error thrown when the invoked function fails */
498
+ InvocationError: ApplicationsErrorConstructor;
499
+ /** Error thrown when cross-app invocation times out */
500
+ TimeoutError: ApplicationsErrorConstructor;
501
+ /** Type guard to check if error is an ApplicationsError */
502
+ isError: (error: unknown) => error is ApplicationsErrorClass;
503
+ /** Type guard to check if error is a specific ApplicationsError type */
504
+ isErrorType: <T extends ApplicationsErrorClass>(error: unknown, errorClass: new (...args: any[]) => T) => error is T;
505
+ }
451
506
  /**
452
507
  * Ketrics Platform SDK Interface
453
508
  *
@@ -526,6 +581,8 @@ export interface KetricsSdkV1 {
526
581
  DocumentDb: DocumentDbModule;
527
582
  /** Users SDK - Tenant user listing */
528
583
  Users: UsersModule;
584
+ /** Applications SDK - Cross-app function invocation */
585
+ Applications: ApplicationsModule;
529
586
  }
530
587
  /**
531
588
  * Volume - S3-backed storage for tenant applications
@@ -974,6 +1031,57 @@ export declare class Users {
974
1031
  */
975
1032
  static list(): Promise<TenantUserInfo[]>;
976
1033
  }
1034
+ /**
1035
+ * Applications - Cross-app function invocation for tenant applications
1036
+ *
1037
+ * Access via `ketrics.Applications.connect()` to obtain a connection handle,
1038
+ * then invoke functions on the connected application.
1039
+ *
1040
+ * @example
1041
+ * ```typescript
1042
+ * export async function handler() {
1043
+ * try {
1044
+ * // Connect to another application (eagerly validates)
1045
+ * const appb = await ketrics.Applications.connect('appb');
1046
+ *
1047
+ * // Invoke a function on the connected application
1048
+ * const result = await appb.invoke('calculateTotal', { items: [...] });
1049
+ * console.log(result.success); // true
1050
+ * console.log(result.result); // function return value
1051
+ * console.log(result.executionTime); // execution time in ms
1052
+ *
1053
+ * } catch (error) {
1054
+ * if (error instanceof ketrics.Applications.NotFoundError) {
1055
+ * console.log('Application not found');
1056
+ * } else if (error instanceof ketrics.Applications.NotDeployedError) {
1057
+ * console.log('Application not deployed');
1058
+ * } else if (error instanceof ketrics.Applications.PermissionDeniedError) {
1059
+ * console.log('No permission to invoke');
1060
+ * } else if (error instanceof ketrics.Applications.InvocationError) {
1061
+ * console.log('Function execution failed');
1062
+ * } else if (error instanceof ketrics.Applications.TimeoutError) {
1063
+ * console.log('Function timed out');
1064
+ * }
1065
+ * }
1066
+ * }
1067
+ * ```
1068
+ */
1069
+ export declare class Applications {
1070
+ private constructor();
1071
+ /**
1072
+ * Connect to another application by code
1073
+ *
1074
+ * Eagerly validates that the target application exists, is active and deployed,
1075
+ * and that the current requestor has permission via app_domain roles.
1076
+ *
1077
+ * @param applicationCode - Target application code (e.g., "inventory", "billing")
1078
+ * @returns Connected application handle with invoke() method
1079
+ * @throws ApplicationNotFoundError if application doesn't exist
1080
+ * @throws ApplicationNotDeployedError if application is not active/deployed
1081
+ * @throws ApplicationPermissionDeniedError if requestor lacks permission
1082
+ */
1083
+ static connect(applicationCode: string): Promise<IApplicationConnection>;
1084
+ }
977
1085
  /**
978
1086
  * Global declaration for the Ketrics VM sandbox.
979
1087
  *
@@ -989,6 +1097,7 @@ export declare class Users {
989
1097
  * - Messages: Application messaging (send, sendBulk, sendToGroup, errors, type guards)
990
1098
  * - DocumentDb: DynamoDB-backed document storage (connect, put, get, delete, list, query, errors, type guards)
991
1099
  * - Users: Tenant user listing (list, errors, type guards)
1100
+ * - Applications: Cross-app function invocation (connect, invoke, errors, type guards)
992
1101
  */
993
1102
  declare global {
994
1103
  /** Ketrics SDK global object - available in all tenant application code */
@@ -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
@@ -57,8 +57,8 @@
57
57
  * ```
58
58
  */
59
59
  Object.defineProperty(exports, "__esModule", { value: true });
60
- exports.VolumeError = exports.isUsersErrorType = exports.isUsersError = exports.UsersPermissionDeniedError = exports.UsersError = exports.isDocumentDbErrorType = exports.isDocumentDbError = exports.DocumentDbOperationError = exports.DocumentDbValidationError = exports.DocumentDbPermissionDeniedError = exports.DocumentDbAccessDeniedError = exports.DocumentDbNotFoundError = exports.DocumentDbError = exports.isMessageErrorType = exports.isMessageError = exports.TenantGrantPermissionDeniedError = exports.GroupNotFoundError = exports.MessageValidationError = exports.MessageError = exports.isJobErrorType = exports.isJobError = exports.EltJobExecutionError = 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;
61
- exports.isVolumeErrorType = exports.isVolumeError = exports.ContentTypeNotAllowedError = exports.FileSizeLimitError = exports.InvalidPathError = exports.FileAlreadyExistsError = exports.FileNotFoundError = exports.VolumePermissionDeniedError = exports.VolumeAccessDeniedError = exports.VolumeNotFoundError = void 0;
60
+ exports.ApplicationsError = exports.isUsersErrorType = exports.isUsersError = exports.UsersPermissionDeniedError = exports.UsersError = exports.isDocumentDbErrorType = exports.isDocumentDbError = exports.DocumentDbOperationError = exports.DocumentDbValidationError = exports.DocumentDbPermissionDeniedError = exports.DocumentDbAccessDeniedError = exports.DocumentDbNotFoundError = exports.DocumentDbError = exports.isMessageErrorType = exports.isMessageError = exports.TenantGrantPermissionDeniedError = exports.GroupNotFoundError = exports.MessageValidationError = exports.MessageError = exports.isJobErrorType = exports.isJobError = exports.EltJobExecutionError = 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;
61
+ exports.isVolumeErrorType = exports.isVolumeError = exports.ContentTypeNotAllowedError = exports.FileSizeLimitError = exports.InvalidPathError = exports.FileAlreadyExistsError = exports.FileNotFoundError = exports.VolumePermissionDeniedError = exports.VolumeAccessDeniedError = exports.VolumeNotFoundError = exports.VolumeError = exports.isApplicationsErrorType = exports.isApplicationsError = exports.ApplicationTimeoutError = exports.ApplicationInvocationError = exports.ApplicationPermissionDeniedError = exports.ApplicationNotDeployedError = exports.ApplicationNotFoundError = void 0;
62
62
  // ============================================================================
63
63
  // Database Error Exports
64
64
  // ============================================================================
@@ -141,6 +141,18 @@ Object.defineProperty(exports, "UsersPermissionDeniedError", { enumerable: true,
141
141
  Object.defineProperty(exports, "isUsersError", { enumerable: true, get: function () { return users_errors_1.isUsersError; } });
142
142
  Object.defineProperty(exports, "isUsersErrorType", { enumerable: true, get: function () { return users_errors_1.isUsersErrorType; } });
143
143
  // ============================================================================
144
+ // Applications Error Exports
145
+ // ============================================================================
146
+ var applications_errors_1 = require("./applications-errors");
147
+ Object.defineProperty(exports, "ApplicationsError", { enumerable: true, get: function () { return applications_errors_1.ApplicationsError; } });
148
+ Object.defineProperty(exports, "ApplicationNotFoundError", { enumerable: true, get: function () { return applications_errors_1.ApplicationNotFoundError; } });
149
+ Object.defineProperty(exports, "ApplicationNotDeployedError", { enumerable: true, get: function () { return applications_errors_1.ApplicationNotDeployedError; } });
150
+ Object.defineProperty(exports, "ApplicationPermissionDeniedError", { enumerable: true, get: function () { return applications_errors_1.ApplicationPermissionDeniedError; } });
151
+ Object.defineProperty(exports, "ApplicationInvocationError", { enumerable: true, get: function () { return applications_errors_1.ApplicationInvocationError; } });
152
+ Object.defineProperty(exports, "ApplicationTimeoutError", { enumerable: true, get: function () { return applications_errors_1.ApplicationTimeoutError; } });
153
+ Object.defineProperty(exports, "isApplicationsError", { enumerable: true, get: function () { return applications_errors_1.isApplicationsError; } });
154
+ Object.defineProperty(exports, "isApplicationsErrorType", { enumerable: true, get: function () { return applications_errors_1.isApplicationsErrorType; } });
155
+ // ============================================================================
144
156
  // Volume Error Exports
145
157
  // ============================================================================
146
158
  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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwDG;;;;AA0BH,+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,iDAAqJ;AAA5I,4GAAA,WAAW,OAAA;AAAE,oHAAA,mBAAmB,OAAA;AAAE,wHAAA,uBAAuB,OAAA;AAAE,sHAAA,qBAAqB,OAAA;AAAE,8GAAA,aAAa,OAAA;AAAE,kHAAA,iBAAiB,OAAA;AAoB3H,+EAA+E;AAC/E,sBAAsB;AACtB,+EAA+E;AAE/E,+CAA8G;AAArG,0GAAA,UAAU,OAAA;AAAE,+GAAA,eAAe,OAAA;AAAE,+GAAA,eAAe,OAAA;AAAE,4GAAA,YAAY,OAAA;AAAE,gHAAA,gBAAgB,OAAA;AA0BrF,+EAA+E;AAC/E,oBAAoB;AACpB,+EAA+E;AAE/E,2CAAkG;AAAzF,sGAAA,QAAQ,OAAA;AAAE,2GAAA,aAAa,OAAA;AAAE,2GAAA,aAAa,OAAA;AAAE,wGAAA,UAAU,OAAA;AAAE,4GAAA,cAAc,OAAA;AAQ3E,+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,kHAAA,oBAAoB,OAAA;AACpB,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;AAiBpB,+EAA+E;AAC/E,2BAA2B;AAC3B,+EAA+E;AAE/E,yDAS6B;AAR3B,oHAAA,eAAe,OAAA;AACf,4HAAA,uBAAuB,OAAA;AACvB,gIAAA,2BAA2B,OAAA;AAC3B,oIAAA,+BAA+B,OAAA;AAC/B,8HAAA,yBAAyB,OAAA;AACzB,6HAAA,wBAAwB,OAAA;AACxB,sHAAA,iBAAiB,OAAA;AACjB,0HAAA,qBAAqB,OAAA;AASvB,+EAA+E;AAC/E,sBAAsB;AACtB,+EAA+E;AAE/E,+CAAwG;AAA/F,0GAAA,UAAU,OAAA;AAAE,0HAAA,0BAA0B,OAAA;AAAE,4GAAA,YAAY,OAAA;AAAE,gHAAA,gBAAgB,OAAA;AAoC/E,+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":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ketrics/sdk-backend",
3
- "version": "0.11.0",
3
+ "version": "0.12.0",
4
4
  "description": "Ketrics SDK for backend tenant application code (VM sandbox)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",