@elizaos/plugin-elizacloud 2.0.0-alpha.4 → 2.0.0-alpha.537

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.
Files changed (73) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +185 -0
  3. package/dist/actions/check-credits.d.ts.map +1 -1
  4. package/dist/actions/confirmation.d.ts +7 -0
  5. package/dist/actions/confirmation.d.ts.map +1 -0
  6. package/dist/actions/freeze-agent.d.ts.map +1 -1
  7. package/dist/actions/provision-agent.d.ts.map +1 -1
  8. package/dist/actions/resume-agent.d.ts.map +1 -1
  9. package/dist/browser/index.browser.js +22 -19
  10. package/dist/browser/index.browser.js.map +36 -27
  11. package/dist/cjs/index.node.cjs +1710 -406
  12. package/dist/cjs/index.node.js.map +36 -27
  13. package/dist/cloud-providers/credit-balance.d.ts +1 -3
  14. package/dist/cloud-providers/credit-balance.d.ts.map +1 -1
  15. package/dist/cloud-providers/model-registry.d.ts +4 -0
  16. package/dist/cloud-providers/model-registry.d.ts.map +1 -0
  17. package/dist/index.browser.d.ts +2 -1
  18. package/dist/index.browser.d.ts.map +1 -1
  19. package/dist/index.d.ts.map +1 -1
  20. package/dist/index.node.d.ts +2 -1
  21. package/dist/index.node.d.ts.map +1 -1
  22. package/dist/init.d.ts.map +1 -1
  23. package/dist/models/embeddings.d.ts.map +1 -1
  24. package/dist/models/image.d.ts.map +1 -1
  25. package/dist/models/index.d.ts +2 -1
  26. package/dist/models/index.d.ts.map +1 -1
  27. package/dist/models/object.d.ts.map +1 -1
  28. package/dist/models/research.d.ts +4 -0
  29. package/dist/models/research.d.ts.map +1 -0
  30. package/dist/models/speech.d.ts.map +1 -1
  31. package/dist/models/text.d.ts +5 -0
  32. package/dist/models/text.d.ts.map +1 -1
  33. package/dist/models/transcription.d.ts.map +1 -1
  34. package/dist/node/index.node.js +1710 -396
  35. package/dist/node/index.node.js.map +36 -27
  36. package/dist/providers/openai.d.ts.map +1 -1
  37. package/dist/services/cloud-auth.d.ts +140 -4
  38. package/dist/services/cloud-auth.d.ts.map +1 -1
  39. package/dist/services/cloud-bootstrap.d.ts +38 -0
  40. package/dist/services/cloud-bootstrap.d.ts.map +1 -0
  41. package/dist/services/cloud-bridge.d.ts +1 -1
  42. package/dist/services/cloud-managed-gateway-relay.d.ts +38 -0
  43. package/dist/services/cloud-managed-gateway-relay.d.ts.map +1 -0
  44. package/dist/services/cloud-model-registry.d.ts +28 -0
  45. package/dist/services/cloud-model-registry.d.ts.map +1 -0
  46. package/dist/types/cloud.d.ts +41 -19
  47. package/dist/types/cloud.d.ts.map +1 -1
  48. package/dist/types/index.d.ts +1 -1
  49. package/dist/types/index.d.ts.map +1 -1
  50. package/dist/utils/cloud-api.d.ts +2 -27
  51. package/dist/utils/cloud-api.d.ts.map +1 -1
  52. package/dist/utils/config.d.ts +9 -1
  53. package/dist/utils/config.d.ts.map +1 -1
  54. package/dist/utils/events.d.ts.map +1 -1
  55. package/dist/utils/forwarded-settings.d.ts +1 -1
  56. package/dist/utils/forwarded-settings.d.ts.map +1 -1
  57. package/dist/utils/responses-output.d.ts +6 -0
  58. package/dist/utils/responses-output.d.ts.map +1 -0
  59. package/dist/utils/sdk-client.d.ts +5 -0
  60. package/dist/utils/sdk-client.d.ts.map +1 -0
  61. package/package.json +84 -16
  62. package/types/cloud.ts +54 -41
  63. package/types/index.ts +6 -0
  64. package/dist/actions/index.d.ts +0 -5
  65. package/dist/actions/index.d.ts.map +0 -1
  66. package/dist/build.d.ts +0 -3
  67. package/dist/build.d.ts.map +0 -1
  68. package/dist/cloud-providers/index.d.ts +0 -4
  69. package/dist/cloud-providers/index.d.ts.map +0 -1
  70. package/dist/generated/specs/specs.d.ts +0 -55
  71. package/dist/generated/specs/specs.d.ts.map +0 -1
  72. package/dist/services/index.d.ts +0 -5
  73. package/dist/services/index.d.ts.map +0 -1
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-elizacloud",
3
- "version": "2.0.0-alpha.4",
3
+ "version": "2.0.0-alpha.537",
4
4
  "type": "module",
5
- "main": "dist/cjs/index.node.cjs",
5
+ "main": "dist/node/index.node.js",
6
6
  "module": "dist/node/index.node.js",
7
7
  "types": "dist/node/index.d.ts",
8
8
  "browser": "dist/browser/index.browser.js",
@@ -23,7 +23,6 @@
23
23
  "node": {
24
24
  "types": "./dist/node/index.d.ts",
25
25
  "import": "./dist/node/index.node.js",
26
- "require": "./dist/cjs/index.node.cjs",
27
26
  "default": "./dist/node/index.node.js"
28
27
  },
29
28
  "default": "./dist/node/index.node.js"
@@ -35,19 +34,23 @@
35
34
  ],
36
35
  "dependencies": {
37
36
  "@ai-sdk/openai": "^3.0.9",
38
- "@elizaos/core": "2.0.0-alpha.3",
37
+ "@elizaos/cloud-sdk": "^0.1.0",
38
+ "@elizaos/core": "^2.0.0-alpha.537",
39
+ "@elizaos/shared": "^2.0.0-alpha.537",
39
40
  "ai": "^6.0.30",
41
+ "jose": "^6.2.2",
40
42
  "js-tiktoken": "^1.0.21",
41
- "undici": "^7.16.0"
43
+ "undici": "^8.0.0"
42
44
  },
43
45
  "devDependencies": {
44
- "@biomejs/biome": "^2.3.11",
46
+ "@biomejs/biome": "^2.4.14",
45
47
  "@types/bun": "^1.3.5",
46
48
  "@types/node": "^25.0.3",
47
- "typescript": "^5.9.3"
49
+ "typescript": "^6.0.0",
50
+ "vitest": "^4.1.4"
48
51
  },
49
52
  "peerDependencies": {
50
- "zod": "^4.3.6"
53
+ "zod": "^4.4.2"
51
54
  },
52
55
  "scripts": {
53
56
  "dev": "bun run build.ts --watch",
@@ -56,12 +59,14 @@
56
59
  "clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json tsconfig.tsbuildinfo",
57
60
  "format": "bunx @biomejs/biome format --write .",
58
61
  "format:check": "bunx @biomejs/biome format .",
59
- "test": "vitest run __tests__/",
62
+ "test": "vitest run",
60
63
  "test:unit": "vitest run __tests__/unit/",
61
64
  "test:integration": "vitest run __tests__/integration/",
62
65
  "lint:check": "bunx @biomejs/biome check .",
63
66
  "build": "bun run build.ts",
64
- "build:ts": "bun run build.ts"
67
+ "build:ts": "bun run build.ts",
68
+ "test:e2e": "node ../../packages/app-core/scripts/run-local-plugin-live-smoke.mjs",
69
+ "test:live": "bun run test:e2e"
65
70
  },
66
71
  "publishConfig": {
67
72
  "access": "public"
@@ -82,9 +87,22 @@
82
87
  "default": "https://www.elizacloud.ai/api/v1",
83
88
  "sensitive": false
84
89
  },
90
+ "ELIZAOS_CLOUD_NANO_MODEL": {
91
+ "type": "string",
92
+ "description": "Nano/cheapest text model for lightweight routing and should-respond tasks (overrides NANO_MODEL). Examples: openai/gpt-5.4-nano, google/gemini-2.5-flash-lite, groq/llama-3.1-8b-instant",
93
+ "required": false,
94
+ "sensitive": false
95
+ },
96
+ "NANO_MODEL": {
97
+ "type": "string",
98
+ "description": "Fallback identifier for the nano language model if ELIZAOS_CLOUD_NANO_MODEL is not set.",
99
+ "required": false,
100
+ "default": "openai/gpt-5.4-nano",
101
+ "sensitive": false
102
+ },
85
103
  "ELIZAOS_CLOUD_SMALL_MODEL": {
86
104
  "type": "string",
87
- "description": "Small/fast model for quick tasks (overrides SMALL_MODEL). Available: gpt-5-mini, gpt-5, claude-3-5-sonnet, gemini-2.0-flash",
105
+ "description": "Small/fast model for quick tasks (overrides SMALL_MODEL). Examples: gpt-5.4-mini, claude-haiku-4-5-20251001.5, gemini-2.5-flash, glm-5.1",
88
106
  "required": false,
89
107
  "sensitive": false
90
108
  },
@@ -92,12 +110,25 @@
92
110
  "type": "string",
93
111
  "description": "Fallback identifier for the small language model if ELIZAOS_CLOUD_SMALL_MODEL is not set.",
94
112
  "required": false,
95
- "default": "gpt-5-mini",
113
+ "default": "gpt-5.4-mini",
114
+ "sensitive": false
115
+ },
116
+ "ELIZAOS_CLOUD_MEDIUM_MODEL": {
117
+ "type": "string",
118
+ "description": "Medium planning model for multi-step reasoning (overrides MEDIUM_MODEL). Examples: claude-sonnet-4.6, gpt-5.4, gemini-2.5-pro, glm-5.1",
119
+ "required": false,
120
+ "sensitive": false
121
+ },
122
+ "MEDIUM_MODEL": {
123
+ "type": "string",
124
+ "description": "Fallback identifier for the medium language model if ELIZAOS_CLOUD_MEDIUM_MODEL is not set.",
125
+ "required": false,
126
+ "default": "claude-sonnet-4.6",
96
127
  "sensitive": false
97
128
  },
98
129
  "ELIZAOS_CLOUD_LARGE_MODEL": {
99
130
  "type": "string",
100
- "description": "Large/powerful model for complex tasks (overrides LARGE_MODEL). Available: gpt-5-mini, gpt-5, claude-3-5-sonnet, gemini-2.0-flash",
131
+ "description": "Large/powerful model for complex tasks (overrides LARGE_MODEL). Examples: claude-sonnet-4.6, claude-opus-4-7, gpt-5.4, glm-5.1",
101
132
  "required": false,
102
133
  "sensitive": false
103
134
  },
@@ -105,7 +136,44 @@
105
136
  "type": "string",
106
137
  "description": "Fallback identifier for the large language model if ELIZAOS_CLOUD_LARGE_MODEL is not set.",
107
138
  "required": false,
108
- "default": "gpt-5",
139
+ "default": "claude-sonnet-4.6",
140
+ "sensitive": false
141
+ },
142
+ "ELIZAOS_CLOUD_MEGA_MODEL": {
143
+ "type": "string",
144
+ "description": "Mega/top-tier model for the heaviest generation tasks (overrides MEGA_MODEL). Falls back to the large tier when unset.",
145
+ "required": false,
146
+ "sensitive": false
147
+ },
148
+ "MEGA_MODEL": {
149
+ "type": "string",
150
+ "description": "Fallback identifier for the mega language model if ELIZAOS_CLOUD_MEGA_MODEL is not set.",
151
+ "required": false,
152
+ "default": "claude-sonnet-4.6",
153
+ "sensitive": false
154
+ },
155
+ "ELIZAOS_CLOUD_RESPONSE_HANDLER_MODEL": {
156
+ "type": "string",
157
+ "description": "Optional override for RESPONSE_HANDLER. Defaults to the configured nano tier when unset.",
158
+ "required": false,
159
+ "sensitive": false
160
+ },
161
+ "RESPONSE_HANDLER_MODEL": {
162
+ "type": "string",
163
+ "description": "Fallback identifier for RESPONSE_HANDLER if ELIZAOS_CLOUD_RESPONSE_HANDLER_MODEL is not set.",
164
+ "required": false,
165
+ "sensitive": false
166
+ },
167
+ "ELIZAOS_CLOUD_ACTION_PLANNER_MODEL": {
168
+ "type": "string",
169
+ "description": "Optional override for ACTION_PLANNER. Defaults to the configured medium tier when unset.",
170
+ "required": false,
171
+ "sensitive": false
172
+ },
173
+ "ACTION_PLANNER_MODEL": {
174
+ "type": "string",
175
+ "description": "Fallback identifier for ACTION_PLANNER if ELIZAOS_CLOUD_ACTION_PLANNER_MODEL is not set.",
176
+ "required": false,
109
177
  "sensitive": false
110
178
  },
111
179
  "ELIZAOS_CLOUD_EMBEDDING_MODEL": {
@@ -138,7 +206,7 @@
138
206
  "type": "string",
139
207
  "description": "Identifier of the model used for describing images.",
140
208
  "required": false,
141
- "default": "gpt-5-mini",
209
+ "default": "gpt-5.4-mini",
142
210
  "sensitive": false
143
211
  },
144
212
  "ELIZAOS_CLOUD_IMAGE_DESCRIPTION_MAX_TOKENS": {
@@ -204,7 +272,7 @@
204
272
  }
205
273
  },
206
274
  "gitHead": "646c632924826e2b75c2304a75ee56959fe4a460",
207
- "milaidy": {
275
+ "eliza": {
208
276
  "platforms": [
209
277
  "browser",
210
278
  "node"
package/types/cloud.ts CHANGED
@@ -113,13 +113,7 @@ export interface ContainerHealthResponse {
113
113
 
114
114
  // ─── Auth Types ─────────────────────────────────────────────────────────────
115
115
 
116
- export type DevicePlatform =
117
- | "ios"
118
- | "android"
119
- | "macos"
120
- | "windows"
121
- | "linux"
122
- | "web";
116
+ export type DevicePlatform = "ios" | "android" | "macos" | "windows" | "linux" | "web";
123
117
 
124
118
  export interface DeviceAuthRequest {
125
119
  deviceId: string;
@@ -176,11 +170,7 @@ export interface CreditTransaction {
176
170
 
177
171
  // ─── Bridge Types ───────────────────────────────────────────────────────────
178
172
 
179
- export type BridgeConnectionState =
180
- | "disconnected"
181
- | "connecting"
182
- | "connected"
183
- | "reconnecting";
173
+ export type BridgeConnectionState = "disconnected" | "connecting" | "connected" | "reconnecting";
184
174
 
185
175
  export interface BridgeMessage {
186
176
  jsonrpc: "2.0";
@@ -207,6 +197,53 @@ export interface BridgeConnection {
207
197
  reconnectAttempts: number;
208
198
  }
209
199
 
200
+ // ─── Managed Gateway Relay Types ───────────────────────────────────────────
201
+
202
+ export interface GatewayRelaySession {
203
+ id: string;
204
+ organizationId: string;
205
+ userId: string;
206
+ runtimeAgentId: string;
207
+ agentName: string | null;
208
+ platform: "local-runtime";
209
+ createdAt: string;
210
+ lastSeenAt: string;
211
+ }
212
+
213
+ export interface GatewayRelayRequest {
214
+ jsonrpc: "2.0";
215
+ id?: string | number;
216
+ method: string;
217
+ params?: Record<string, unknown>;
218
+ }
219
+
220
+ export interface GatewayRelayResponse {
221
+ jsonrpc: "2.0";
222
+ id?: string | number;
223
+ result?: Record<string, unknown>;
224
+ error?: BridgeError;
225
+ }
226
+
227
+ export interface GatewayRelayRequestEnvelope {
228
+ requestId: string;
229
+ rpc: GatewayRelayRequest;
230
+ queuedAt: string;
231
+ }
232
+
233
+ export interface RegisterGatewayRelaySessionResponse {
234
+ success: boolean;
235
+ data: {
236
+ session: GatewayRelaySession;
237
+ };
238
+ }
239
+
240
+ export interface PollGatewayRelayResponse {
241
+ success: boolean;
242
+ data: {
243
+ request: GatewayRelayRequestEnvelope | null;
244
+ };
245
+ }
246
+
210
247
  // ─── Snapshot / Backup Types ────────────────────────────────────────────────
211
248
 
212
249
  export type SnapshotType = "manual" | "auto" | "pre-eviction";
@@ -312,32 +349,8 @@ export const DEFAULT_CLOUD_CONFIG: CloudPluginConfig = {
312
349
 
313
350
  // ─── API Error Types ────────────────────────────────────────────────────────
314
351
 
315
- export interface CloudApiErrorBody {
316
- success: false;
317
- error: string;
318
- details?: Record<string, unknown>;
319
- requiredCredits?: number;
320
- quota?: { current: number; max: number };
321
- }
322
-
323
- export class CloudApiError extends Error {
324
- readonly statusCode: number;
325
- readonly errorBody: CloudApiErrorBody;
326
-
327
- constructor(statusCode: number, body: CloudApiErrorBody) {
328
- super(body.error);
329
- this.name = "CloudApiError";
330
- this.statusCode = statusCode;
331
- this.errorBody = body;
332
- }
333
- }
334
-
335
- export class InsufficientCreditsError extends CloudApiError {
336
- readonly requiredCredits: number;
337
-
338
- constructor(body: CloudApiErrorBody) {
339
- super(402, body);
340
- this.name = "InsufficientCreditsError";
341
- this.requiredCredits = body.requiredCredits ?? 0;
342
- }
343
- }
352
+ export type { CloudApiErrorBody } from "@elizaos/cloud-sdk";
353
+ export {
354
+ CloudApiError,
355
+ InsufficientCreditsError,
356
+ } from "@elizaos/cloud-sdk";
package/types/index.ts CHANGED
@@ -63,7 +63,13 @@ export type {
63
63
  DeviceAuthRequest,
64
64
  DeviceAuthResponse,
65
65
  DevicePlatform,
66
+ GatewayRelayRequest,
67
+ GatewayRelayRequestEnvelope,
68
+ GatewayRelayResponse,
69
+ GatewayRelaySession,
66
70
  InferenceMode,
71
+ PollGatewayRelayResponse,
72
+ RegisterGatewayRelaySessionResponse,
67
73
  RestoreSnapshotRequest,
68
74
  RestoreSnapshotResponse,
69
75
  SnapshotListResponse,
@@ -1,5 +0,0 @@
1
- export { checkCloudCreditsAction } from "./check-credits";
2
- export { freezeCloudAgentAction } from "./freeze-agent";
3
- export { provisionCloudAgentAction } from "./provision-agent";
4
- export { resumeCloudAgentAction } from "./resume-agent";
5
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../actions/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,iBAAiB,CAAC;AAC1D,OAAO,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,yBAAyB,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAC"}
package/dist/build.d.ts DELETED
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env bun
2
- export {};
3
- //# sourceMappingURL=build.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../build.ts"],"names":[],"mappings":""}
@@ -1,4 +0,0 @@
1
- export { cloudStatusProvider } from "./cloud-status";
2
- export { containerHealthProvider } from "./container-health";
3
- export { creditBalanceProvider } from "./credit-balance";
4
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../cloud-providers/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,gBAAgB,CAAC;AACrD,OAAO,EAAE,uBAAuB,EAAE,MAAM,oBAAoB,CAAC;AAC7D,OAAO,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAC"}
@@ -1,55 +0,0 @@
1
- /**
2
- * Auto-generated canonical action/provider/evaluator docs for plugin-elizacloud.
3
- * DO NOT EDIT - Generated from prompts/specs/**.
4
- */
5
- export type ActionDoc = {
6
- name: string;
7
- description: string;
8
- similes?: readonly string[];
9
- parameters?: readonly unknown[];
10
- examples?: readonly (readonly unknown[])[];
11
- };
12
- export type ProviderDoc = {
13
- name: string;
14
- description: string;
15
- position?: number;
16
- dynamic?: boolean;
17
- };
18
- export type EvaluatorDoc = {
19
- name: string;
20
- description: string;
21
- similes?: readonly string[];
22
- alwaysRun?: boolean;
23
- examples?: readonly unknown[];
24
- };
25
- export declare const coreActionsSpec: {
26
- readonly version: "1.0.0";
27
- readonly actions: readonly [];
28
- };
29
- export declare const allActionsSpec: {
30
- readonly version: "1.0.0";
31
- readonly actions: readonly [];
32
- };
33
- export declare const coreProvidersSpec: {
34
- readonly version: "1.0.0";
35
- readonly providers: readonly [];
36
- };
37
- export declare const allProvidersSpec: {
38
- readonly version: "1.0.0";
39
- readonly providers: readonly [];
40
- };
41
- export declare const coreEvaluatorsSpec: {
42
- readonly version: "1.0.0";
43
- readonly evaluators: readonly [];
44
- };
45
- export declare const allEvaluatorsSpec: {
46
- readonly version: "1.0.0";
47
- readonly evaluators: readonly [];
48
- };
49
- export declare const coreActionDocs: readonly ActionDoc[];
50
- export declare const allActionDocs: readonly ActionDoc[];
51
- export declare const coreProviderDocs: readonly ProviderDoc[];
52
- export declare const allProviderDocs: readonly ProviderDoc[];
53
- export declare const coreEvaluatorDocs: readonly EvaluatorDoc[];
54
- export declare const allEvaluatorDocs: readonly EvaluatorDoc[];
55
- //# sourceMappingURL=specs.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"specs.d.ts","sourceRoot":"","sources":["../../../generated/specs/specs.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,MAAM,SAAS,GAAG;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IAC5B,UAAU,CAAC,EAAE,SAAS,OAAO,EAAE,CAAC;IAChC,QAAQ,CAAC,EAAE,SAAS,CAAC,SAAS,OAAO,EAAE,CAAC,EAAE,CAAC;CAC5C,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IAC5B,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,SAAS,OAAO,EAAE,CAAC;CAC/B,CAAC;AAEF,eAAO,MAAM,eAAe;;;CAGlB,CAAC;AACX,eAAO,MAAM,cAAc;;;CAGjB,CAAC;AACX,eAAO,MAAM,iBAAiB;;;CAGpB,CAAC;AACX,eAAO,MAAM,gBAAgB;;;CAGnB,CAAC;AACX,eAAO,MAAM,kBAAkB;;;CAGrB,CAAC;AACX,eAAO,MAAM,iBAAiB;;;CAGpB,CAAC;AAEX,eAAO,MAAM,cAAc,EAAE,SAAS,SAAS,EAA4B,CAAC;AAC5E,eAAO,MAAM,aAAa,EAAE,SAAS,SAAS,EAA2B,CAAC;AAC1E,eAAO,MAAM,gBAAgB,EAAE,SAAS,WAAW,EAAgC,CAAC;AACpF,eAAO,MAAM,eAAe,EAAE,SAAS,WAAW,EAA+B,CAAC;AAClF,eAAO,MAAM,iBAAiB,EAAE,SAAS,YAAY,EAAkC,CAAC;AACxF,eAAO,MAAM,gBAAgB,EAAE,SAAS,YAAY,EAAiC,CAAC"}
@@ -1,5 +0,0 @@
1
- export { CloudAuthService } from "./cloud-auth";
2
- export { CloudBackupService } from "./cloud-backup";
3
- export { CloudBridgeService } from "./cloud-bridge";
4
- export { CloudContainerService } from "./cloud-container";
5
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../services/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC"}