@ibgib/core-gib 0.0.4
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/.vscode/core-gib-snippets.code-snippets +189 -0
- package/.vscode/launch.json +24 -0
- package/.vscode/settings.json +56 -0
- package/.vscode/tasks.json +37 -0
- package/CHANGELOG.md +11 -0
- package/README.md +215 -0
- package/dist/common/aws-constants.d.mts +7 -0
- package/dist/common/aws-constants.d.mts.map +1 -0
- package/dist/common/aws-constants.mjs +7 -0
- package/dist/common/aws-constants.mjs.map +1 -0
- package/dist/common/bin/bin-types.d.mts +17 -0
- package/dist/common/bin/bin-types.d.mts.map +1 -0
- package/dist/common/bin/bin-types.mjs +3 -0
- package/dist/common/bin/bin-types.mjs.map +1 -0
- package/dist/common/cache/cache-types.d.mts +57 -0
- package/dist/common/cache/cache-types.d.mts.map +1 -0
- package/dist/common/cache/cache-types.mjs +2 -0
- package/dist/common/cache/cache-types.mjs.map +1 -0
- package/dist/common/comment/comment-constants.d.mts +11 -0
- package/dist/common/comment/comment-constants.d.mts.map +1 -0
- package/dist/common/comment/comment-constants.mjs +11 -0
- package/dist/common/comment/comment-constants.mjs.map +1 -0
- package/dist/common/comment/comment-helper.d.mts +59 -0
- package/dist/common/comment/comment-helper.d.mts.map +1 -0
- package/dist/common/comment/comment-helper.mjs +173 -0
- package/dist/common/comment/comment-helper.mjs.map +1 -0
- package/dist/common/comment/comment-types.d.mts +16 -0
- package/dist/common/comment/comment-types.d.mts.map +1 -0
- package/dist/common/comment/comment-types.mjs +2 -0
- package/dist/common/comment/comment-types.mjs.map +1 -0
- package/dist/common/display/display-helper.d.mts +19 -0
- package/dist/common/display/display-helper.d.mts.map +1 -0
- package/dist/common/display/display-helper.mjs +68 -0
- package/dist/common/display/display-helper.mjs.map +1 -0
- package/dist/common/display/display-types.d.mts +97 -0
- package/dist/common/display/display-types.d.mts.map +1 -0
- package/dist/common/display/display-types.mjs +37 -0
- package/dist/common/display/display-types.mjs.map +1 -0
- package/dist/common/encrypt/encrypt-constants.d.mts +27 -0
- package/dist/common/encrypt/encrypt-constants.d.mts.map +1 -0
- package/dist/common/encrypt/encrypt-constants.mjs +27 -0
- package/dist/common/encrypt/encrypt-constants.mjs.map +1 -0
- package/dist/common/encrypt/encrypt-types.d.mts +116 -0
- package/dist/common/encrypt/encrypt-types.d.mts.map +1 -0
- package/dist/common/encrypt/encrypt-types.mjs +9 -0
- package/dist/common/encrypt/encrypt-types.mjs.map +1 -0
- package/dist/common/error/error-constants.d.mts +9 -0
- package/dist/common/error/error-constants.d.mts.map +1 -0
- package/dist/common/error/error-constants.mjs +9 -0
- package/dist/common/error/error-constants.mjs.map +1 -0
- package/dist/common/error/error-helper.d.mts +43 -0
- package/dist/common/error/error-helper.d.mts.map +1 -0
- package/dist/common/error/error-helper.mjs +167 -0
- package/dist/common/error/error-helper.mjs.map +1 -0
- package/dist/common/error/error-types.d.mts +58 -0
- package/dist/common/error/error-types.d.mts.map +1 -0
- package/dist/common/error/error-types.mjs +2 -0
- package/dist/common/error/error-types.mjs.map +1 -0
- package/dist/common/form/form-helper.d.mts +97 -0
- package/dist/common/form/form-helper.d.mts.map +1 -0
- package/dist/common/form/form-helper.mjs +185 -0
- package/dist/common/form/form-helper.mjs.map +1 -0
- package/dist/common/form/form-items.d.mts +229 -0
- package/dist/common/form/form-items.d.mts.map +1 -0
- package/dist/common/form/form-items.mjs +63 -0
- package/dist/common/form/form-items.mjs.map +1 -0
- package/dist/common/import-export/import-export-types.d.mts +18 -0
- package/dist/common/import-export/import-export-types.d.mts.map +1 -0
- package/dist/common/import-export/import-export-types.mjs +2 -0
- package/dist/common/import-export/import-export-types.mjs.map +1 -0
- package/dist/common/legacy/legacy-types.d.mts +2 -0
- package/dist/common/legacy/legacy-types.d.mts.map +1 -0
- package/dist/common/legacy/legacy-types.mjs +2 -0
- package/dist/common/legacy/legacy-types.mjs.map +1 -0
- package/dist/common/link/link-constants.d.mts +2 -0
- package/dist/common/link/link-constants.d.mts.map +1 -0
- package/dist/common/link/link-constants.mjs +2 -0
- package/dist/common/link/link-constants.mjs.map +1 -0
- package/dist/common/link/link-helper.d.mts +37 -0
- package/dist/common/link/link-helper.d.mts.map +1 -0
- package/dist/common/link/link-helper.mjs +143 -0
- package/dist/common/link/link-helper.mjs.map +1 -0
- package/dist/common/link/link-types.d.mts +14 -0
- package/dist/common/link/link-types.d.mts.map +1 -0
- package/dist/common/link/link-types.mjs +2 -0
- package/dist/common/link/link-types.mjs.map +1 -0
- package/dist/common/other/graph-helper.d.mts +166 -0
- package/dist/common/other/graph-helper.d.mts.map +1 -0
- package/dist/common/other/graph-helper.mjs +710 -0
- package/dist/common/other/graph-helper.mjs.map +1 -0
- package/dist/common/other/ibgib-helper.d.mts +245 -0
- package/dist/common/other/ibgib-helper.d.mts.map +1 -0
- package/dist/common/other/ibgib-helper.mjs +641 -0
- package/dist/common/other/ibgib-helper.mjs.map +1 -0
- package/dist/common/other/other-constants.d.mts +53 -0
- package/dist/common/other/other-constants.d.mts.map +1 -0
- package/dist/common/other/other-constants.mjs +67 -0
- package/dist/common/other/other-constants.mjs.map +1 -0
- package/dist/common/other/other-types.d.mts +166 -0
- package/dist/common/other/other-types.d.mts.map +1 -0
- package/dist/common/other/other-types.mjs +30 -0
- package/dist/common/other/other-types.mjs.map +1 -0
- package/dist/common/other/svg-constants.d.mts +2 -0
- package/dist/common/other/svg-constants.d.mts.map +1 -0
- package/dist/common/other/svg-constants.mjs +2 -0
- package/dist/common/other/svg-constants.mjs.map +1 -0
- package/dist/common/other/svg-helper.d.mts +54 -0
- package/dist/common/other/svg-helper.d.mts.map +1 -0
- package/dist/common/other/svg-helper.mjs +170 -0
- package/dist/common/other/svg-helper.mjs.map +1 -0
- package/dist/common/pic/pic-constants.d.mts +13 -0
- package/dist/common/pic/pic-constants.d.mts.map +1 -0
- package/dist/common/pic/pic-constants.mjs +13 -0
- package/dist/common/pic/pic-constants.mjs.map +1 -0
- package/dist/common/pic/pic-helper.d.mts +70 -0
- package/dist/common/pic/pic-helper.d.mts.map +1 -0
- package/dist/common/pic/pic-helper.mjs +235 -0
- package/dist/common/pic/pic-helper.mjs.map +1 -0
- package/dist/common/pic/pic-types.d.mts +23 -0
- package/dist/common/pic/pic-types.d.mts.map +1 -0
- package/dist/common/pic/pic-types.mjs +2 -0
- package/dist/common/pic/pic-types.mjs.map +1 -0
- package/dist/common/root/root-constants.d.mts +40 -0
- package/dist/common/root/root-constants.d.mts.map +1 -0
- package/dist/common/root/root-constants.mjs +40 -0
- package/dist/common/root/root-constants.mjs.map +1 -0
- package/dist/common/root/root-types.d.mts +9 -0
- package/dist/common/root/root-types.d.mts.map +1 -0
- package/dist/common/root/root-types.mjs +2 -0
- package/dist/common/root/root-types.mjs.map +1 -0
- package/dist/common/tag/tag-constants.d.mts +21 -0
- package/dist/common/tag/tag-constants.d.mts.map +1 -0
- package/dist/common/tag/tag-constants.mjs +28 -0
- package/dist/common/tag/tag-constants.mjs.map +1 -0
- package/dist/common/tag/tag-types.d.mts +14 -0
- package/dist/common/tag/tag-types.d.mts.map +1 -0
- package/dist/common/tag/tag-types.mjs +2 -0
- package/dist/common/tag/tag-types.mjs.map +1 -0
- package/dist/core-constants.d.mts +89 -0
- package/dist/core-constants.d.mts.map +1 -0
- package/dist/core-constants.mjs +484 -0
- package/dist/core-constants.mjs.map +1 -0
- package/dist/core-helper.d.mts +6 -0
- package/dist/core-helper.d.mts.map +1 -0
- package/dist/core-helper.mjs +28 -0
- package/dist/core-helper.mjs.map +1 -0
- package/dist/core-types.d.mts +520 -0
- package/dist/core-types.d.mts.map +1 -0
- package/dist/core-types.mjs +2 -0
- package/dist/core-types.mjs.map +1 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -0
- package/dist/witness/app/app-base-v1.d.mts +130 -0
- package/dist/witness/app/app-base-v1.d.mts.map +1 -0
- package/dist/witness/app/app-base-v1.mjs +462 -0
- package/dist/witness/app/app-base-v1.mjs.map +1 -0
- package/dist/witness/app/app-constants.d.mts +10 -0
- package/dist/witness/app/app-constants.d.mts.map +1 -0
- package/dist/witness/app/app-constants.mjs +13 -0
- package/dist/witness/app/app-constants.mjs.map +1 -0
- package/dist/witness/app/app-helper.d.mts +85 -0
- package/dist/witness/app/app-helper.d.mts.map +1 -0
- package/dist/witness/app/app-helper.mjs +258 -0
- package/dist/witness/app/app-helper.mjs.map +1 -0
- package/dist/witness/app/app-types.d.mts +211 -0
- package/dist/witness/app/app-types.d.mts.map +1 -0
- package/dist/witness/app/app-types.mjs +49 -0
- package/dist/witness/app/app-types.mjs.map +1 -0
- package/dist/witness/app/chat-app/chat-app-types.d.mts +18 -0
- package/dist/witness/app/chat-app/chat-app-types.d.mts.map +1 -0
- package/dist/witness/app/chat-app/chat-app-types.mjs +25 -0
- package/dist/witness/app/chat-app/chat-app-types.mjs.map +1 -0
- package/dist/witness/app/flash-app/flash-app-types.d.mts +16 -0
- package/dist/witness/app/flash-app/flash-app-types.d.mts.map +1 -0
- package/dist/witness/app/flash-app/flash-app-types.mjs +23 -0
- package/dist/witness/app/flash-app/flash-app-types.mjs.map +1 -0
- package/dist/witness/app/raw-app/raw-app-types.d.mts +18 -0
- package/dist/witness/app/raw-app/raw-app-types.d.mts.map +1 -0
- package/dist/witness/app/raw-app/raw-app-types.mjs +25 -0
- package/dist/witness/app/raw-app/raw-app-types.mjs.map +1 -0
- package/dist/witness/app/todo-app/todo-app-types.d.ts +33 -0
- package/dist/witness/app/todo-app/todo-app-types.d.ts.map +1 -0
- package/dist/witness/app/todo-app/todo-app-types.js +31 -0
- package/dist/witness/app/todo-app/todo-app-types.js.map +1 -0
- package/dist/witness/robbot/robbot-base-v1.d.ts +432 -0
- package/dist/witness/robbot/robbot-base-v1.d.ts.map +1 -0
- package/dist/witness/robbot/robbot-base-v1.js +1407 -0
- package/dist/witness/robbot/robbot-base-v1.js.map +1 -0
- package/dist/witness/robbot/robbot-constants.d.mts +24 -0
- package/dist/witness/robbot/robbot-constants.d.mts.map +1 -0
- package/dist/witness/robbot/robbot-constants.mjs +24 -0
- package/dist/witness/robbot/robbot-constants.mjs.map +1 -0
- package/dist/witness/robbot/robbot-helper.d.mts +152 -0
- package/dist/witness/robbot/robbot-helper.d.mts.map +1 -0
- package/dist/witness/robbot/robbot-helper.mjs +609 -0
- package/dist/witness/robbot/robbot-helper.mjs.map +1 -0
- package/dist/witness/robbot/robbot-types.d.mts +539 -0
- package/dist/witness/robbot/robbot-types.d.mts.map +1 -0
- package/dist/witness/robbot/robbot-types.mjs +294 -0
- package/dist/witness/robbot/robbot-types.mjs.map +1 -0
- package/dist/witness/space/bootstrap/bootstrap-constants.d.mts +14 -0
- package/dist/witness/space/bootstrap/bootstrap-constants.d.mts.map +1 -0
- package/dist/witness/space/bootstrap/bootstrap-constants.mjs +15 -0
- package/dist/witness/space/bootstrap/bootstrap-constants.mjs.map +1 -0
- package/dist/witness/space/inner-space-v1.d.ts +63 -0
- package/dist/witness/space/inner-space-v1.d.ts.map +1 -0
- package/dist/witness/space/inner-space-v1.js +356 -0
- package/dist/witness/space/inner-space-v1.js.map +1 -0
- package/dist/witness/space/outer-space/outer-space-constants.d.mts +2 -0
- package/dist/witness/space/outer-space/outer-space-constants.d.mts.map +1 -0
- package/dist/witness/space/outer-space/outer-space-constants.mjs +2 -0
- package/dist/witness/space/outer-space/outer-space-constants.mjs.map +1 -0
- package/dist/witness/space/outer-space/outer-space-helper.d.mts +28 -0
- package/dist/witness/space/outer-space/outer-space-helper.d.mts.map +1 -0
- package/dist/witness/space/outer-space/outer-space-helper.mjs +87 -0
- package/dist/witness/space/outer-space/outer-space-helper.mjs.map +1 -0
- package/dist/witness/space/outer-space/outer-space-types.d.mts +548 -0
- package/dist/witness/space/outer-space/outer-space-types.d.mts.map +1 -0
- package/dist/witness/space/outer-space/outer-space-types.mjs +118 -0
- package/dist/witness/space/outer-space/outer-space-types.mjs.map +1 -0
- package/dist/witness/space/space-base-v1.d.mts +147 -0
- package/dist/witness/space/space-base-v1.d.mts.map +1 -0
- package/dist/witness/space/space-base-v1.mjs +350 -0
- package/dist/witness/space/space-base-v1.mjs.map +1 -0
- package/dist/witness/space/space-constants.d.mts +181 -0
- package/dist/witness/space/space-constants.d.mts.map +1 -0
- package/dist/witness/space/space-constants.mjs +192 -0
- package/dist/witness/space/space-constants.mjs.map +1 -0
- package/dist/witness/space/space-helper.d.mts +666 -0
- package/dist/witness/space/space-helper.d.mts.map +1 -0
- package/dist/witness/space/space-helper.mjs +2830 -0
- package/dist/witness/space/space-helper.mjs.map +1 -0
- package/dist/witness/space/space-types.d.mts +422 -0
- package/dist/witness/space/space-types.d.mts.map +1 -0
- package/dist/witness/space/space-types.mjs +52 -0
- package/dist/witness/space/space-types.mjs.map +1 -0
- package/dist/witness/witness-base-v1.d.ts +144 -0
- package/dist/witness/witness-base-v1.d.ts.map +1 -0
- package/dist/witness/witness-base-v1.js +300 -0
- package/dist/witness/witness-base-v1.js.map +1 -0
- package/dist/witness/witness-constants.d.mts +3 -0
- package/dist/witness/witness-constants.d.mts.map +1 -0
- package/dist/witness/witness-constants.mjs +3 -0
- package/dist/witness/witness-constants.mjs.map +1 -0
- package/dist/witness/witness-form-builder.d.mts +45 -0
- package/dist/witness/witness-form-builder.d.mts.map +1 -0
- package/dist/witness/witness-form-builder.mjs +95 -0
- package/dist/witness/witness-form-builder.mjs.map +1 -0
- package/dist/witness/witness-helper.d.mts +89 -0
- package/dist/witness/witness-helper.d.mts.map +1 -0
- package/dist/witness/witness-helper.mjs +229 -0
- package/dist/witness/witness-helper.mjs.map +1 -0
- package/dist/witness/witness-types.d.mts +211 -0
- package/dist/witness/witness-types.d.mts.map +1 -0
- package/dist/witness/witness-types.mjs +2 -0
- package/dist/witness/witness-types.mjs.map +1 -0
- package/jasmine-browser.json +18 -0
- package/jasmine.json +6 -0
- package/package.json +67 -0
- package/src/assumptions.spec.mts +45 -0
- package/src/common/aws-constants.mts +5 -0
- package/src/common/bin/bin-types.mts +17 -0
- package/src/common/cache/cache-types.mts +53 -0
- package/src/common/comment/comment-constants.mts +10 -0
- package/src/common/comment/comment-helper.mts +211 -0
- package/src/common/comment/comment-types.mts +19 -0
- package/src/common/display/display-helper.mts +88 -0
- package/src/common/display/display-types.mts +108 -0
- package/src/common/encrypt/encrypt-constants.mts +28 -0
- package/src/common/encrypt/encrypt-types.mts +130 -0
- package/src/common/error/error-constants.mts +8 -0
- package/src/common/error/error-helper.mts +155 -0
- package/src/common/error/error-types.mts +62 -0
- package/src/common/form/form-helper.mts +253 -0
- package/src/common/form/form-items.mts +236 -0
- package/src/common/import-export/import-export-types.mts +18 -0
- package/src/common/legacy/about-legacy.md +0 -0
- package/src/common/legacy/legacy-types.mts +0 -0
- package/src/common/link/link-constants.mts +1 -0
- package/src/common/link/link-helper.mts +155 -0
- package/src/common/link/link-types.mts +16 -0
- package/src/common/other/graph-helper.mts +853 -0
- package/src/common/other/ibgib-helper.mts +671 -0
- package/src/common/other/other-constants.mts +76 -0
- package/src/common/other/other-types.mts +186 -0
- package/src/common/other/svg-constants.mts +1 -0
- package/src/common/other/svg-helper.mts +238 -0
- package/src/common/pic/pic-constants.mts +13 -0
- package/src/common/pic/pic-helper.mts +295 -0
- package/src/common/pic/pic-types.mts +29 -0
- package/src/common/root/root-constants.mts +41 -0
- package/src/common/root/root-types.mts +8 -0
- package/src/common/tag/tag-constants.mts +34 -0
- package/src/common/tag/tag-types.mts +19 -0
- package/src/core-constants.mts +506 -0
- package/src/core-helper.mts +33 -0
- package/src/core-types.mts +519 -0
- package/src/helper.spec.mts +64 -0
- package/src/index.mts +1 -0
- package/src/witness/app/app-base-v1.mts +584 -0
- package/src/witness/app/app-constants.mts +16 -0
- package/src/witness/app/app-helper.mts +322 -0
- package/src/witness/app/app-types.mts +252 -0
- package/src/witness/app/chat-app/chat-app-types.mts +40 -0
- package/src/witness/app/flash-app/flash-app-types.mts +38 -0
- package/src/witness/app/raw-app/raw-app-types.mts +40 -0
- package/src/witness/app/todo-app/todo-app-types.ts +59 -0
- package/src/witness/robbot/robbot-base-v1.ts +1531 -0
- package/src/witness/robbot/robbot-constants.mts +25 -0
- package/src/witness/robbot/robbot-helper.mts +676 -0
- package/src/witness/robbot/robbot-helper.spec.mts +135 -0
- package/src/witness/robbot/robbot-types.mts +797 -0
- package/src/witness/space/bootstrap/bootstrap-constants.mts +15 -0
- package/src/witness/space/inner-space-v1.ts +372 -0
- package/src/witness/space/outer-space/outer-space-constants.mts +1 -0
- package/src/witness/space/outer-space/outer-space-helper.mts +91 -0
- package/src/witness/space/outer-space/outer-space-types.mts +627 -0
- package/src/witness/space/space-base-v1.mts +414 -0
- package/src/witness/space/space-constants.mts +208 -0
- package/src/witness/space/space-helper.mts +3242 -0
- package/src/witness/space/space-types.mts +476 -0
- package/src/witness/witness-base-v1.ts +325 -0
- package/src/witness/witness-constants.mts +2 -0
- package/src/witness/witness-form-builder.mts +128 -0
- package/src/witness/witness-helper.mts +256 -0
- package/src/witness/witness-types.mts +249 -0
- package/tsconfig.json +15 -0
- package/tsconfig.test.json +10 -0
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Zero space is a default space that uses default values that should be
|
|
3
|
+
* reproducible and not break or something...it's all in flux really.
|
|
4
|
+
*/
|
|
5
|
+
export declare const ZERO_SPACE_ID = "zero";
|
|
6
|
+
export declare const IBGIB_SPACE_NAME_DEFAULT = "default_space";
|
|
7
|
+
/**
|
|
8
|
+
* Base directory for all data of the app.
|
|
9
|
+
*/
|
|
10
|
+
export declare const IBGIB_BASE_SUBPATH = "ibgib";
|
|
11
|
+
/**
|
|
12
|
+
* Default space that is also used for bootstrapping.
|
|
13
|
+
*
|
|
14
|
+
* The user should provide his/her own space name that will contain their data.
|
|
15
|
+
* If a custom user space name is not provided, one should be auto-generated.
|
|
16
|
+
*
|
|
17
|
+
* ## notes
|
|
18
|
+
*
|
|
19
|
+
* * the leading 000's help to put the space earlier in alphabetized listing if viewing through an OS file viewer
|
|
20
|
+
*/
|
|
21
|
+
export declare const IBGIB_SPACE_SUBPATH_DEFAULT: string;
|
|
22
|
+
/**
|
|
23
|
+
* Subpath for "normal" ibgibs (non-meta, non-dna, non-binary, etc.).
|
|
24
|
+
*/
|
|
25
|
+
export declare const IBGIB_IBGIBS_SUBPATH = "ibgibs";
|
|
26
|
+
/**
|
|
27
|
+
* should contain special-use ibgibs to the application.
|
|
28
|
+
*
|
|
29
|
+
* Use case:
|
|
30
|
+
* Because some special ibgibs will be changed frequently,
|
|
31
|
+
* e.g. settings, a separate folder will be useful.
|
|
32
|
+
*/
|
|
33
|
+
export declare const IBGIB_META_SUBPATH = "meta";
|
|
34
|
+
/**
|
|
35
|
+
* For use with documentation and UX help.
|
|
36
|
+
*
|
|
37
|
+
* This is probably scoped to a particular schema...(e.g. v1)
|
|
38
|
+
*/
|
|
39
|
+
export declare const VALID_SPACE_NAME_EXAMPLES: string[];
|
|
40
|
+
/**
|
|
41
|
+
* For use with documentation and UX help.
|
|
42
|
+
*
|
|
43
|
+
* This is probably scoped to a particular schema...(e.g. v1)
|
|
44
|
+
*/
|
|
45
|
+
export declare const INVALID_SPACE_NAME_EXAMPLES: string[];
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
*/
|
|
49
|
+
export declare const PERSIST_OPTS_AND_RESULTS_IBGIBS_DEFAULT = false;
|
|
50
|
+
/**
|
|
51
|
+
* Yep, this one starts with default instead of ending with it.
|
|
52
|
+
*/
|
|
53
|
+
export declare const DEFAULT_LOCAL_SPACE_DESCRIPTION = "This is a local space. There are many like it, but this one is mine.";
|
|
54
|
+
/**
|
|
55
|
+
* The main roots^gib ibgib uses this rel8n name to keep track of roots.
|
|
56
|
+
*/
|
|
57
|
+
export declare const SPACE_REL8N_NAME = "space";
|
|
58
|
+
/**
|
|
59
|
+
* rel8n name in a space ibgib to the config ibgib(s?)
|
|
60
|
+
*/
|
|
61
|
+
export declare const SPACE_REL8N_NAME_CONFIG = "config";
|
|
62
|
+
export declare const SPACE_NAME_REGEXP: RegExp;
|
|
63
|
+
/**
|
|
64
|
+
* A spaces ibGib uses this rel8n name for related sync spaces, used
|
|
65
|
+
* in replicating ibgib spaces.
|
|
66
|
+
*/
|
|
67
|
+
export declare const SYNC_SPACE_REL8N_NAME = "syncSpace";
|
|
68
|
+
/**
|
|
69
|
+
* ...?
|
|
70
|
+
*/
|
|
71
|
+
export declare const DEFAULT_SPACE_TEXT = "space";
|
|
72
|
+
/**
|
|
73
|
+
* Default icon specifically for spaces.
|
|
74
|
+
*/
|
|
75
|
+
export declare const DEFAULT_SPACE_ICON = "sparkles-outline";
|
|
76
|
+
/**
|
|
77
|
+
* Default description specifically for spaces.
|
|
78
|
+
*/
|
|
79
|
+
export declare const DEFAULT_SPACE_DESCRIPTION = "This is a space ibgib, which is basically a special ibgib who has behavior\nto interface with data stores and/or other space(s) to provide concrete location\nfor ibgibs. All ibgibs can have relationships with other ibgibs, but this one\nspecifically either implies a physical interface to things like databases,\nfile systems, and similar; OR, when this space interfaces with other spaces, this\nis a logical organization of ibgib locations, like when configuring clusters or\nconsensus algorithms.";
|
|
80
|
+
/**
|
|
81
|
+
* rel8n name used inside the root to those ibgib it contains.
|
|
82
|
+
*
|
|
83
|
+
* @example
|
|
84
|
+
* ```json
|
|
85
|
+
* {
|
|
86
|
+
* ib: root,
|
|
87
|
+
* gib: ABC123,
|
|
88
|
+
* data: {...},
|
|
89
|
+
* rel8ns: {
|
|
90
|
+
* [rel8nName]: ["a^1", "b^2"]
|
|
91
|
+
* }
|
|
92
|
+
* }
|
|
93
|
+
* ```
|
|
94
|
+
*/
|
|
95
|
+
export declare const DEFAULT_SPACE_REL8N_NAME = "x";
|
|
96
|
+
/**
|
|
97
|
+
* Interval in ms between polling for updates ("notifications") between local
|
|
98
|
+
* space (ibgibs service) and dynamo sync space(s), or for use within a single
|
|
99
|
+
* space for checking its internal state.
|
|
100
|
+
*
|
|
101
|
+
* Of course, long polling is very hacky, but so is using DynamoDB in the cloud
|
|
102
|
+
* for a sync space. Obviously need to progress to a more mature and robust sync
|
|
103
|
+
* space/outer space architecture.
|
|
104
|
+
*/
|
|
105
|
+
export declare const DEFAULT_LOCAL_SPACE_POLLING_INTERVAL_MS = 30000;
|
|
106
|
+
export declare const DEFAULT_LOCAL_SPACE_POLLING_DELAY_FIRST_RUN_MS = 10000;
|
|
107
|
+
/**
|
|
108
|
+
* {@link DEFAULT_LOCAL_SPACE_POLLING_INTERVAL_MS} but for outer spaces, so
|
|
109
|
+
* longer interval atow.
|
|
110
|
+
*/
|
|
111
|
+
export declare const DEFAULT_OUTER_SPACE_POLLING_INTERVAL_MS = 20000;
|
|
112
|
+
/**
|
|
113
|
+
* Amount of time to delay for FIRST poll execution.
|
|
114
|
+
*/
|
|
115
|
+
export declare const DEFAULT_OUTER_SPACE_POLLING_DELAY_FIRST_RUN_MS = 10000;
|
|
116
|
+
/**
|
|
117
|
+
* When a status is first created, this is used to indicate that
|
|
118
|
+
* the tjp has not been set.
|
|
119
|
+
*/
|
|
120
|
+
export declare const STATUS_UNDEFINED_TJP_GIB = "gib";
|
|
121
|
+
/**
|
|
122
|
+
* When a status is first created, this is used to indicate that
|
|
123
|
+
* the txId has not been set.
|
|
124
|
+
*/
|
|
125
|
+
export declare const STATUS_UNDEFINED_TX_ID = "0";
|
|
126
|
+
export declare const SPACE_LOCK_IB_TERM = "space_lock";
|
|
127
|
+
/**
|
|
128
|
+
* When attempting to acquire a lock ona space, and it is already lock, it will
|
|
129
|
+
* wait a random amount of ms before trying to lock again. This is the default
|
|
130
|
+
* max amount of ms before reattempting.
|
|
131
|
+
*/
|
|
132
|
+
export declare const DEFAULT_MAX_DELAY_MS_RETRY_LOCK_ACQUIRE = 100;
|
|
133
|
+
/**
|
|
134
|
+
* Will retry this many times before giving up...
|
|
135
|
+
*/
|
|
136
|
+
export declare const DEFAULT_MAX_DELAY_RETRY_LOCK_ACQUIRE_ATTEMPTS = 100;
|
|
137
|
+
/**
|
|
138
|
+
* We don't want someone locking a space forever by accident.
|
|
139
|
+
*/
|
|
140
|
+
export declare const MAX_LOCK_SECONDS_VALID: number;
|
|
141
|
+
/**
|
|
142
|
+
* Default value for secondsValid when acquiring/releasing lock in/on LOCAL
|
|
143
|
+
* space.
|
|
144
|
+
*/
|
|
145
|
+
export declare const DEFAULT_SECONDS_VALID_LOCAL = 2;
|
|
146
|
+
/**
|
|
147
|
+
* Default value for secondsValid when acquiring/releasing lock in/on
|
|
148
|
+
* OUTER space, e.g. sync spaces like aws dynamo sync space.
|
|
149
|
+
*/
|
|
150
|
+
export declare const DEFAULT_SECONDS_VALID_OUTER = 30;
|
|
151
|
+
/**
|
|
152
|
+
* retry count when calling getDependencyGraph.
|
|
153
|
+
*
|
|
154
|
+
* ## driving use case
|
|
155
|
+
*
|
|
156
|
+
* dependency graph fails when concurrent merges made in sync space.
|
|
157
|
+
* need to wait until previous graph merger happens then retry.
|
|
158
|
+
*/
|
|
159
|
+
export declare const DEFAULT_MAX_RETRIES_GET_DEPENDENCY_GRAPH_OUTERSPACE = 5;
|
|
160
|
+
/**
|
|
161
|
+
* when getting dependency graph, sometimes we have to wait to retry
|
|
162
|
+
*/
|
|
163
|
+
export declare const DEFAULT_MS_BETWEEN_RETRIES_GET_DEPENDENCY_GRAPH_OUTERSPACE = 5000;
|
|
164
|
+
/**
|
|
165
|
+
* retry count when calling getDependencyGraph.
|
|
166
|
+
*
|
|
167
|
+
* ## driving use case
|
|
168
|
+
*
|
|
169
|
+
* dependency graph fails when concurrent merges made in sync space.
|
|
170
|
+
* need to wait until previous graph merger happens then retry.
|
|
171
|
+
*/
|
|
172
|
+
export declare const DEFAULT_MAX_RETRIES_GET_DEPENDENCY_GRAPH_LOCAL = 3;
|
|
173
|
+
/**
|
|
174
|
+
* when getting dependency graph, sometimes we have to wait to retry
|
|
175
|
+
*/
|
|
176
|
+
export declare const DEFAULT_MS_BETWEEN_RETRIES_GET_DEPENDENCY_GRAPH_LOCAL = 1000;
|
|
177
|
+
/**
|
|
178
|
+
* currently not used in ionic-gib.
|
|
179
|
+
*/
|
|
180
|
+
export declare const DEFAULT_TX_ID_LENGTH = 5;
|
|
181
|
+
//# sourceMappingURL=space-constants.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"space-constants.d.mts","sourceRoot":"","sources":["../../../src/witness/space/space-constants.mts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,eAAO,MAAM,aAAa,SAAS,CAAC;AAEpC,eAAO,MAAM,wBAAwB,kBAAkB,CAAC;AAExD;;GAEG;AACH,eAAO,MAAM,kBAAkB,UAAU,CAAC;AAC1C;;;;;;;;;GASG;AACH,eAAO,MAAM,2BAA2B,QAAoC,CAAC;AAC7E;;GAEG;AACH,eAAO,MAAM,oBAAoB,WAAW,CAAC;AAC7C;;;;;;GAMG;AACH,eAAO,MAAM,kBAAkB,SAAS,CAAC;AAEzC;;;;GAIG;AACH,eAAO,MAAM,yBAAyB,UAErC,CAAC;AACF;;;;GAIG;AACH,eAAO,MAAM,2BAA2B,UAEvC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,uCAAuC,QAAQ,CAAC;AAE7D;;GAEG;AACH,eAAO,MAAM,+BAA+B,yEAAyE,CAAC;AAEtH;;GAEG;AACH,eAAO,MAAM,gBAAgB,UAAU,CAAC;AAExC;;GAEG;AACH,eAAO,MAAM,uBAAuB,WAAW,CAAC;AAChD,eAAO,MAAM,iBAAiB,QAAmC,CAAC;AAElE;;;GAGG;AACH,eAAO,MAAM,qBAAqB,cAAc,CAAC;AAEjD;;GAEG;AACH,eAAO,MAAM,kBAAkB,UAAU,CAAC;AAC1C;;GAEG;AACH,eAAO,MAAM,kBAAkB,qBAAqB,CAAC;AACrD;;GAEG;AACH,eAAO,MAAM,yBAAyB,ufAOhB,CAAC;AACvB;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,wBAAwB,MAAM,CAAC;AAE5C;;;;;;;;GAQG;AACH,eAAO,MAAM,uCAAuC,QAAS,CAAC;AAC9D,eAAO,MAAM,8CAA8C,QAAS,CAAC;AAErE;;;GAGG;AACH,eAAO,MAAM,uCAAuC,QAAS,CAAC;AAC9D;;GAEG;AACH,eAAO,MAAM,8CAA8C,QAAS,CAAC;AAErE;;;GAGG;AACH,eAAO,MAAM,wBAAwB,QAAM,CAAC;AAC5C;;;GAGG;AACH,eAAO,MAAM,sBAAsB,MAAM,CAAC;AAE1C,eAAO,MAAM,kBAAkB,eAAe,CAAC;AAC/C;;;;GAIG;AACH,eAAO,MAAM,uCAAuC,MAAM,CAAC;AAC3D;;GAEG;AACH,eAAO,MAAM,6CAA6C,MAAM,CAAC;AACjE;;GAEG;AACH,eAAO,MAAM,sBAAsB,QAAS,CAAC;AAC7C;;;GAGG;AACH,eAAO,MAAM,2BAA2B,IAAI,CAAC;AAC7C;;;GAGG;AACH,eAAO,MAAM,2BAA2B,KAAK,CAAC;AAE9C;;;;;;;GAOG;AACH,eAAO,MAAM,mDAAmD,IAAI,CAAC;AACrE;;GAEG;AACH,eAAO,MAAM,0DAA0D,OAAO,CAAC;AAC/E;;;;;;;GAOG;AACH,eAAO,MAAM,8CAA8C,IAAI,CAAC;AAChE;;GAEG;AACH,eAAO,MAAM,qDAAqD,OAAO,CAAC;AAE1E;;GAEG;AACH,eAAO,MAAM,oBAAoB,IAAI,CAAC"}
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
import { GIB } from '@ibgib/ts-gib/dist/V1/index.mjs';
|
|
2
|
+
/**
|
|
3
|
+
* Zero space is a default space that uses default values that should be
|
|
4
|
+
* reproducible and not break or something...it's all in flux really.
|
|
5
|
+
*/
|
|
6
|
+
export const ZERO_SPACE_ID = 'zero';
|
|
7
|
+
export const IBGIB_SPACE_NAME_DEFAULT = 'default_space';
|
|
8
|
+
/**
|
|
9
|
+
* Base directory for all data of the app.
|
|
10
|
+
*/
|
|
11
|
+
export const IBGIB_BASE_SUBPATH = 'ibgib';
|
|
12
|
+
/**
|
|
13
|
+
* Default space that is also used for bootstrapping.
|
|
14
|
+
*
|
|
15
|
+
* The user should provide his/her own space name that will contain their data.
|
|
16
|
+
* If a custom user space name is not provided, one should be auto-generated.
|
|
17
|
+
*
|
|
18
|
+
* ## notes
|
|
19
|
+
*
|
|
20
|
+
* * the leading 000's help to put the space earlier in alphabetized listing if viewing through an OS file viewer
|
|
21
|
+
*/
|
|
22
|
+
export const IBGIB_SPACE_SUBPATH_DEFAULT = `000_${IBGIB_SPACE_NAME_DEFAULT}`;
|
|
23
|
+
/**
|
|
24
|
+
* Subpath for "normal" ibgibs (non-meta, non-dna, non-binary, etc.).
|
|
25
|
+
*/
|
|
26
|
+
export const IBGIB_IBGIBS_SUBPATH = 'ibgibs';
|
|
27
|
+
/**
|
|
28
|
+
* should contain special-use ibgibs to the application.
|
|
29
|
+
*
|
|
30
|
+
* Use case:
|
|
31
|
+
* Because some special ibgibs will be changed frequently,
|
|
32
|
+
* e.g. settings, a separate folder will be useful.
|
|
33
|
+
*/
|
|
34
|
+
export const IBGIB_META_SUBPATH = 'meta';
|
|
35
|
+
/**
|
|
36
|
+
* For use with documentation and UX help.
|
|
37
|
+
*
|
|
38
|
+
* This is probably scoped to a particular schema...(e.g. v1)
|
|
39
|
+
*/
|
|
40
|
+
export const VALID_SPACE_NAME_EXAMPLES = [
|
|
41
|
+
'justLetters', 'valid_here', 'hyphens-allowed', '0CanStartOrEndWithNumbers9'
|
|
42
|
+
];
|
|
43
|
+
/**
|
|
44
|
+
* For use with documentation and UX help.
|
|
45
|
+
*
|
|
46
|
+
* This is probably scoped to a particular schema...(e.g. v1)
|
|
47
|
+
*/
|
|
48
|
+
export const INVALID_SPACE_NAME_EXAMPLES = [
|
|
49
|
+
'IHaveASymbol!', 'invalid hereWithSpace', '-cantStartWithHyphen', '_OrUnderscore'
|
|
50
|
+
];
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
*/
|
|
54
|
+
export const PERSIST_OPTS_AND_RESULTS_IBGIBS_DEFAULT = false;
|
|
55
|
+
/**
|
|
56
|
+
* Yep, this one starts with default instead of ending with it.
|
|
57
|
+
*/
|
|
58
|
+
export const DEFAULT_LOCAL_SPACE_DESCRIPTION = `This is a local space. There are many like it, but this one is mine.`;
|
|
59
|
+
/**
|
|
60
|
+
* The main roots^gib ibgib uses this rel8n name to keep track of roots.
|
|
61
|
+
*/
|
|
62
|
+
export const SPACE_REL8N_NAME = 'space';
|
|
63
|
+
/**
|
|
64
|
+
* rel8n name in a space ibgib to the config ibgib(s?)
|
|
65
|
+
*/
|
|
66
|
+
export const SPACE_REL8N_NAME_CONFIG = `config`;
|
|
67
|
+
export const SPACE_NAME_REGEXP = /^[a-zA-Z][\w\-]{0,62}[a-zA-Z]$/;
|
|
68
|
+
/**
|
|
69
|
+
* A spaces ibGib uses this rel8n name for related sync spaces, used
|
|
70
|
+
* in replicating ibgib spaces.
|
|
71
|
+
*/
|
|
72
|
+
export const SYNC_SPACE_REL8N_NAME = 'syncSpace';
|
|
73
|
+
/**
|
|
74
|
+
* ...?
|
|
75
|
+
*/
|
|
76
|
+
export const DEFAULT_SPACE_TEXT = 'space';
|
|
77
|
+
/**
|
|
78
|
+
* Default icon specifically for spaces.
|
|
79
|
+
*/
|
|
80
|
+
export const DEFAULT_SPACE_ICON = 'sparkles-outline';
|
|
81
|
+
/**
|
|
82
|
+
* Default description specifically for spaces.
|
|
83
|
+
*/
|
|
84
|
+
export const DEFAULT_SPACE_DESCRIPTION = `This is a space ibgib, which is basically a special ibgib who has behavior
|
|
85
|
+
to interface with data stores and/or other space(s) to provide concrete location
|
|
86
|
+
for ibgibs. All ibgibs can have relationships with other ibgibs, but this one
|
|
87
|
+
specifically either implies a physical interface to things like databases,
|
|
88
|
+
file systems, and similar; OR, when this space interfaces with other spaces, this
|
|
89
|
+
is a logical organization of ibgib locations, like when configuring clusters or
|
|
90
|
+
consensus algorithms.`;
|
|
91
|
+
/**
|
|
92
|
+
* rel8n name used inside the root to those ibgib it contains.
|
|
93
|
+
*
|
|
94
|
+
* @example
|
|
95
|
+
* ```json
|
|
96
|
+
* {
|
|
97
|
+
* ib: root,
|
|
98
|
+
* gib: ABC123,
|
|
99
|
+
* data: {...},
|
|
100
|
+
* rel8ns: {
|
|
101
|
+
* [rel8nName]: ["a^1", "b^2"]
|
|
102
|
+
* }
|
|
103
|
+
* }
|
|
104
|
+
* ```
|
|
105
|
+
*/
|
|
106
|
+
export const DEFAULT_SPACE_REL8N_NAME = 'x';
|
|
107
|
+
/**
|
|
108
|
+
* Interval in ms between polling for updates ("notifications") between local
|
|
109
|
+
* space (ibgibs service) and dynamo sync space(s), or for use within a single
|
|
110
|
+
* space for checking its internal state.
|
|
111
|
+
*
|
|
112
|
+
* Of course, long polling is very hacky, but so is using DynamoDB in the cloud
|
|
113
|
+
* for a sync space. Obviously need to progress to a more mature and robust sync
|
|
114
|
+
* space/outer space architecture.
|
|
115
|
+
*/
|
|
116
|
+
export const DEFAULT_LOCAL_SPACE_POLLING_INTERVAL_MS = 30000;
|
|
117
|
+
export const DEFAULT_LOCAL_SPACE_POLLING_DELAY_FIRST_RUN_MS = 10000;
|
|
118
|
+
/**
|
|
119
|
+
* {@link DEFAULT_LOCAL_SPACE_POLLING_INTERVAL_MS} but for outer spaces, so
|
|
120
|
+
* longer interval atow.
|
|
121
|
+
*/
|
|
122
|
+
export const DEFAULT_OUTER_SPACE_POLLING_INTERVAL_MS = 20000;
|
|
123
|
+
/**
|
|
124
|
+
* Amount of time to delay for FIRST poll execution.
|
|
125
|
+
*/
|
|
126
|
+
export const DEFAULT_OUTER_SPACE_POLLING_DELAY_FIRST_RUN_MS = 10000;
|
|
127
|
+
/**
|
|
128
|
+
* When a status is first created, this is used to indicate that
|
|
129
|
+
* the tjp has not been set.
|
|
130
|
+
*/
|
|
131
|
+
export const STATUS_UNDEFINED_TJP_GIB = GIB;
|
|
132
|
+
/**
|
|
133
|
+
* When a status is first created, this is used to indicate that
|
|
134
|
+
* the txId has not been set.
|
|
135
|
+
*/
|
|
136
|
+
export const STATUS_UNDEFINED_TX_ID = '0';
|
|
137
|
+
export const SPACE_LOCK_IB_TERM = 'space_lock';
|
|
138
|
+
/**
|
|
139
|
+
* When attempting to acquire a lock ona space, and it is already lock, it will
|
|
140
|
+
* wait a random amount of ms before trying to lock again. This is the default
|
|
141
|
+
* max amount of ms before reattempting.
|
|
142
|
+
*/
|
|
143
|
+
export const DEFAULT_MAX_DELAY_MS_RETRY_LOCK_ACQUIRE = 100;
|
|
144
|
+
/**
|
|
145
|
+
* Will retry this many times before giving up...
|
|
146
|
+
*/
|
|
147
|
+
export const DEFAULT_MAX_DELAY_RETRY_LOCK_ACQUIRE_ATTEMPTS = 100;
|
|
148
|
+
/**
|
|
149
|
+
* We don't want someone locking a space forever by accident.
|
|
150
|
+
*/
|
|
151
|
+
export const MAX_LOCK_SECONDS_VALID = 60 * 2; // two minutes
|
|
152
|
+
/**
|
|
153
|
+
* Default value for secondsValid when acquiring/releasing lock in/on LOCAL
|
|
154
|
+
* space.
|
|
155
|
+
*/
|
|
156
|
+
export const DEFAULT_SECONDS_VALID_LOCAL = 2;
|
|
157
|
+
/**
|
|
158
|
+
* Default value for secondsValid when acquiring/releasing lock in/on
|
|
159
|
+
* OUTER space, e.g. sync spaces like aws dynamo sync space.
|
|
160
|
+
*/
|
|
161
|
+
export const DEFAULT_SECONDS_VALID_OUTER = 30;
|
|
162
|
+
/**
|
|
163
|
+
* retry count when calling getDependencyGraph.
|
|
164
|
+
*
|
|
165
|
+
* ## driving use case
|
|
166
|
+
*
|
|
167
|
+
* dependency graph fails when concurrent merges made in sync space.
|
|
168
|
+
* need to wait until previous graph merger happens then retry.
|
|
169
|
+
*/
|
|
170
|
+
export const DEFAULT_MAX_RETRIES_GET_DEPENDENCY_GRAPH_OUTERSPACE = 5;
|
|
171
|
+
/**
|
|
172
|
+
* when getting dependency graph, sometimes we have to wait to retry
|
|
173
|
+
*/
|
|
174
|
+
export const DEFAULT_MS_BETWEEN_RETRIES_GET_DEPENDENCY_GRAPH_OUTERSPACE = 5000;
|
|
175
|
+
/**
|
|
176
|
+
* retry count when calling getDependencyGraph.
|
|
177
|
+
*
|
|
178
|
+
* ## driving use case
|
|
179
|
+
*
|
|
180
|
+
* dependency graph fails when concurrent merges made in sync space.
|
|
181
|
+
* need to wait until previous graph merger happens then retry.
|
|
182
|
+
*/
|
|
183
|
+
export const DEFAULT_MAX_RETRIES_GET_DEPENDENCY_GRAPH_LOCAL = 3;
|
|
184
|
+
/**
|
|
185
|
+
* when getting dependency graph, sometimes we have to wait to retry
|
|
186
|
+
*/
|
|
187
|
+
export const DEFAULT_MS_BETWEEN_RETRIES_GET_DEPENDENCY_GRAPH_LOCAL = 1000;
|
|
188
|
+
/**
|
|
189
|
+
* currently not used in ionic-gib.
|
|
190
|
+
*/
|
|
191
|
+
export const DEFAULT_TX_ID_LENGTH = 5;
|
|
192
|
+
//# sourceMappingURL=space-constants.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"space-constants.mjs","sourceRoot":"","sources":["../../../src/witness/space/space-constants.mts"],"names":[],"mappings":"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"}
|