@cmpsbl/failsafe 3.4.0 → 5.1.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/LICENSE +22 -0
- package/README.md +12 -0
- package/dist/index.d.ts +8 -5
- package/dist/index.js +8 -5
- package/package.json +26 -8
package/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Copyright 2025–2026 CMPSBL® · PromptFluid™ TX
|
|
2
|
+
All rights reserved.
|
|
3
|
+
|
|
4
|
+
U.S. Patent App. No. 64/029,678 — Ascension™ Discovery Engine
|
|
5
|
+
U.S. Patent App. No. 64/031,637 — Mana™ Silent Software Symbiosis
|
|
6
|
+
|
|
7
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
you may not use this file except in compliance with the License.
|
|
9
|
+
You may obtain a copy of the License at
|
|
10
|
+
|
|
11
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
|
|
13
|
+
Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
See the License for the specific language governing permissions and
|
|
17
|
+
limitations under the License.
|
|
18
|
+
|
|
19
|
+
CMPSBL®, PromptFluid™, Ascension™, and Mana™ are trademarks of
|
|
20
|
+
Kenneth E. Sweet Jr. d/b/a PromptFluid™ TX.
|
|
21
|
+
|
|
22
|
+
https://cmpsbl.com · npm i @cmpsbl/cli
|
package/README.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
# @cmpsbl/failsafe
|
|
2
|
+
> **CMPSBL®** — Governed Cognitive Infrastructure · [cmpsbl.com](https://cmpsbl.com)
|
|
3
|
+
> Protected under U.S. Patent App. No. 64/029,678 & 64/031,637 · PromptFluid™
|
|
4
|
+
|
|
2
5
|
|
|
3
6
|
> CMPSBL® FAILSAFE — Zero-dependency disaster recovery & platform migration engine.
|
|
4
7
|
|
|
@@ -32,3 +35,12 @@ const backup = await createBackup({
|
|
|
32
35
|
## License
|
|
33
36
|
|
|
34
37
|
Apache-2.0 — © CMPSBL®
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
<p align="center">
|
|
42
|
+
<strong>CMPSBL®</strong> · Governed Cognitive Infrastructure<br>
|
|
43
|
+
U.S. Patent App. No. 64/029,678 (Ascension™) · 64/031,637 (Mana™)<br>
|
|
44
|
+
<a href="https://cmpsbl.com">cmpsbl.com</a> · <code>npm i @cmpsbl/cli</code><br>
|
|
45
|
+
© 2025–2026 CMPSBL® · PromptFluid™
|
|
46
|
+
</p>
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
2
|
+
* ┌──────────────────────────────────────────────────────────────┐
|
|
3
|
+
* │ CMPSBL® Failsafe — Governed Cognitive Infrastructure │
|
|
4
|
+
* │ Disaster recovery & platform migration engine. │
|
|
5
|
+
* │ │
|
|
6
|
+
* │ U.S. Patent App. No. 64/029,678 · 64/031,637 │
|
|
7
|
+
* │ https://cmpsbl.com · npm i @cmpsbl/cli │
|
|
8
|
+
* │ © 2025–2026 CMPSBL® · PromptFluid™ │
|
|
9
|
+
* └──────────────────────────────────────────────────────────────┘
|
|
7
10
|
*/
|
|
8
11
|
export interface MemoryChain {
|
|
9
12
|
id: string;
|
package/dist/index.js
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
3
|
+
* ┌──────────────────────────────────────────────────────────────┐
|
|
4
|
+
* │ CMPSBL® Failsafe — Governed Cognitive Infrastructure │
|
|
5
|
+
* │ Disaster recovery & platform migration engine. │
|
|
6
|
+
* │ │
|
|
7
|
+
* │ U.S. Patent App. No. 64/029,678 · 64/031,637 │
|
|
8
|
+
* │ https://cmpsbl.com · npm i @cmpsbl/cli │
|
|
9
|
+
* │ © 2025–2026 CMPSBL® · PromptFluid™ │
|
|
10
|
+
* └──────────────────────────────────────────────────────────────┘
|
|
8
11
|
*/
|
|
9
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
13
|
exports.createBackup = createBackup;
|
package/package.json
CHANGED
|
@@ -1,17 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cmpsbl/failsafe",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "CMPSBL
|
|
3
|
+
"version": "5.1.0",
|
|
4
|
+
"description": "CMPSBL\u00ae FAILSAFE \u2014 Zero-dependency disaster recovery & platform migration engine",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
-
"files": [
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
8
10
|
"scripts": {
|
|
9
11
|
"build": "tsc",
|
|
10
12
|
"prepublishOnly": "npm run build"
|
|
11
13
|
},
|
|
12
|
-
"keywords": [
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
"keywords": [
|
|
15
|
+
"cmpsbl",
|
|
16
|
+
"failsafe",
|
|
17
|
+
"disaster-recovery",
|
|
18
|
+
"migration",
|
|
19
|
+
"backup",
|
|
20
|
+
"restore",
|
|
21
|
+
"governed-cognitive-infrastructure",
|
|
22
|
+
"substrate",
|
|
23
|
+
"promptfluid"
|
|
24
|
+
],
|
|
25
|
+
"author": "Kenneth E. Sweet Jr. <hello@cmpsbl.com>",
|
|
26
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/cmpsbl/failsafe"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://cmpsbl.com",
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://cmpsbl.com/support"
|
|
34
|
+
}
|
|
17
35
|
}
|