@le-space/core 0.1.18 → 0.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -2
- package/index.d.ts +12 -12
- package/package.json +2 -2
package/README.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import { RootfsResolution, RootfsManifest, RootfsManifestState, CrnRecord, RootfsRequiredPortForward, PortForwardAggregate, PortForwardFlags, PortForwardAggregateEntry, MessageReference, InstanceExecution, MessageStatus, DeploymentInspectionResult, MessageInspectionResult, AlephBroadcastMessage, AlephBroadcastResponse, MessageSigner, MessageHasher, AlephAggregateContent, AlephInstanceContent, DeploymentResult, InstanceAllocation, InstanceRuntimeDetails, InstanceWebAccess, RuntimeDiagnostics, PortMapping } from '@
|
|
1
|
+
import * as _le_space_shared_types from '@le-space/shared-types';
|
|
2
|
+
import { RootfsResolution, RootfsManifest, RootfsManifestState, CrnRecord, RootfsRequiredPortForward, PortForwardAggregate, PortForwardFlags, PortForwardAggregateEntry, MessageReference, InstanceExecution, MessageStatus, DeploymentInspectionResult, MessageInspectionResult, AlephBroadcastMessage, AlephBroadcastResponse, MessageSigner, MessageHasher, AlephAggregateContent, AlephInstanceContent, DeploymentResult, InstanceAllocation, InstanceRuntimeDetails, InstanceWebAccess, RuntimeDiagnostics, PortMapping } from '@le-space/shared-types';
|
|
3
3
|
|
|
4
4
|
declare const DEFAULT_ALEPH_CHANNEL = "TEST";
|
|
5
5
|
|
|
@@ -237,9 +237,9 @@ declare function forgetAlephMessages(args: {
|
|
|
237
237
|
}): Promise<{
|
|
238
238
|
sender: string;
|
|
239
239
|
itemHash: string;
|
|
240
|
-
response:
|
|
240
|
+
response: _le_space_shared_types.AlephBroadcastResponse;
|
|
241
241
|
httpStatus: number;
|
|
242
|
-
status:
|
|
242
|
+
status: _le_space_shared_types.MessageStatus;
|
|
243
243
|
}>;
|
|
244
244
|
declare function cleanupFailedDeployment(args: {
|
|
245
245
|
sender: string;
|
|
@@ -253,9 +253,9 @@ declare function cleanupFailedDeployment(args: {
|
|
|
253
253
|
}): Promise<{
|
|
254
254
|
sender: string;
|
|
255
255
|
itemHash: string;
|
|
256
|
-
response:
|
|
256
|
+
response: _le_space_shared_types.AlephBroadcastResponse;
|
|
257
257
|
httpStatus: number;
|
|
258
|
-
status:
|
|
258
|
+
status: _le_space_shared_types.MessageStatus;
|
|
259
259
|
} | {
|
|
260
260
|
error: string;
|
|
261
261
|
}>;
|
|
@@ -290,8 +290,8 @@ declare function publishAggregateKey(args: {
|
|
|
290
290
|
now?: number;
|
|
291
291
|
}): Promise<{
|
|
292
292
|
itemHash: string;
|
|
293
|
-
status:
|
|
294
|
-
response:
|
|
293
|
+
status: _le_space_shared_types.MessageStatus;
|
|
294
|
+
response: _le_space_shared_types.AlephBroadcastResponse;
|
|
295
295
|
httpStatus: number;
|
|
296
296
|
}>;
|
|
297
297
|
declare function retainSuccessfulDeployments(args: {
|
|
@@ -313,8 +313,8 @@ declare function retainSuccessfulDeployments(args: {
|
|
|
313
313
|
keepCount: number;
|
|
314
314
|
aggregatePublication: {
|
|
315
315
|
itemHash: string;
|
|
316
|
-
status:
|
|
317
|
-
response:
|
|
316
|
+
status: _le_space_shared_types.MessageStatus;
|
|
317
|
+
response: _le_space_shared_types.AlephBroadcastResponse;
|
|
318
318
|
httpStatus: number;
|
|
319
319
|
};
|
|
320
320
|
retainedRecords: RetentionRecord[];
|
|
@@ -326,9 +326,9 @@ declare function retainSuccessfulDeployments(args: {
|
|
|
326
326
|
forgetResult: {
|
|
327
327
|
sender: string;
|
|
328
328
|
itemHash: string;
|
|
329
|
-
response:
|
|
329
|
+
response: _le_space_shared_types.AlephBroadcastResponse;
|
|
330
330
|
httpStatus: number;
|
|
331
|
-
status:
|
|
331
|
+
status: _le_space_shared_types.MessageStatus;
|
|
332
332
|
} | null;
|
|
333
333
|
followUpForgetResults: {
|
|
334
334
|
hash: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@le-space/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.19",
|
|
4
4
|
"description": "Reusable Aleph deployment, runtime, and guest lifecycle logic.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -16,6 +16,6 @@
|
|
|
16
16
|
"access": "public"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@le-space/shared-types": "0.1.
|
|
19
|
+
"@le-space/shared-types": "0.1.19"
|
|
20
20
|
}
|
|
21
21
|
}
|