@pkcprotocol/pkc-js 0.0.81 → 0.0.83
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 +3 -1
- package/dist/browser/clients/base-client-manager.js +19 -1
- package/dist/browser/clients/base-client-manager.js.map +1 -1
- package/dist/browser/clients/rpc-client/rpc-schema-util.d.ts +1 -0
- package/dist/browser/clients/rpc-client/schema.d.ts +3 -0
- package/dist/browser/community/schema.d.ts +24 -0
- package/dist/browser/community/schema.js +6 -1
- package/dist/browser/community/schema.js.map +1 -1
- package/dist/browser/errors.d.ts +10 -1
- package/dist/browser/errors.js +10 -1
- package/dist/browser/errors.js.map +1 -1
- package/dist/browser/generated-version.d.ts +1 -1
- package/dist/browser/generated-version.js +1 -1
- package/dist/browser/pages/pages.js +8 -0
- package/dist/browser/pages/pages.js.map +1 -1
- package/dist/browser/pages/schema.d.ts +4 -0
- package/dist/browser/pages/util.d.ts +2 -0
- package/dist/browser/pages/util.js +23 -3
- package/dist/browser/pages/util.js.map +1 -1
- package/dist/browser/pkc/pkc.d.ts +2 -0
- package/dist/browser/pkc/pkc.js +20 -0
- package/dist/browser/pkc/pkc.js.map +1 -1
- package/dist/browser/pkc-error.d.ts +1 -1
- package/dist/browser/publications/comment/comment-client-manager.js +22 -4
- package/dist/browser/publications/comment/comment-client-manager.js.map +1 -1
- package/dist/browser/publications/comment/comment.d.ts +2 -1
- package/dist/browser/publications/comment/comment.js +29 -6
- package/dist/browser/publications/comment/comment.js.map +1 -1
- package/dist/browser/publications/comment/crosspost-depth.d.ts +5 -0
- package/dist/browser/publications/comment/crosspost-depth.js +75 -0
- package/dist/browser/publications/comment/crosspost-depth.js.map +1 -0
- package/dist/browser/publications/comment/crosspost-runtime.d.ts +30 -0
- package/dist/browser/publications/comment/crosspost-runtime.js +133 -0
- package/dist/browser/publications/comment/crosspost-runtime.js.map +1 -0
- package/dist/browser/publications/comment/schema.d.ts +20 -2
- package/dist/browser/publications/comment/schema.js +21 -10
- package/dist/browser/publications/comment/schema.js.map +1 -1
- package/dist/browser/publications/comment/types.d.ts +10 -0
- package/dist/browser/publications/community-edit/schema.d.ts +4 -0
- package/dist/browser/publications/publication.d.ts +4 -0
- package/dist/browser/publications/publication.js +80 -5
- package/dist/browser/publications/publication.js.map +1 -1
- package/dist/browser/pubsub-messages/schema.d.ts +5 -0
- package/dist/browser/rpc/src/index.js +13 -1
- package/dist/browser/rpc/src/index.js.map +1 -1
- package/dist/browser/runtime/node/community/db-handler.d.ts +2 -0
- package/dist/browser/runtime/node/community/db-handler.js +24 -6
- package/dist/browser/runtime/node/community/db-handler.js.map +1 -1
- package/dist/browser/runtime/node/community/local-community/publication-validation.js +15 -0
- package/dist/browser/runtime/node/community/local-community/publication-validation.js.map +1 -1
- package/dist/browser/runtime/node/community/page-generator.d.ts +2 -0
- package/dist/browser/schema/schema-util.d.ts +17 -0
- package/dist/browser/schema/schema-util.js +49 -5
- package/dist/browser/schema/schema-util.js.map +1 -1
- package/dist/browser/signer/signatures.d.ts +1 -10
- package/dist/browser/signer/signatures.js +83 -0
- package/dist/browser/signer/signatures.js.map +1 -1
- package/dist/browser/test/test-util.d.ts +6 -0
- package/dist/browser/version.js +1 -1
- package/dist/bundled/bundle-manifest.json +27 -25
- package/dist/bundled/chunks/{helia-for-pkc-BcNF-orO.js → helia-for-pkc-BtjQ8rfd.js} +33 -33
- package/dist/bundled/chunks/{local-community-B6-jaMsn.js → local-community-B_Yg8LQH.js} +1 -1
- package/dist/bundled/chunks/{local-community-CyX1HwD0.js → local-community-DJM47U8C.js} +47 -32
- package/dist/bundled/chunks/{node-BCXmIYLQ.js → node-lb4SvdBh.js} +67 -14
- package/dist/bundled/chunks/{rpc-local-community-BOiy8BX1.js → rpc-local-community-a464veDe.js} +253 -12
- package/dist/bundled/chunks/{schema-DZyEx0YQ.js → schema-mdv9_FG5.js} +23 -8
- package/dist/bundled/chunks/{util-BTPlI1yF.js → util-y9-A9BnM.js} +1 -1
- package/dist/bundled/index.js +1 -1
- package/dist/bundled/rpc/src/index.js +13 -5
- package/dist/node/clients/base-client-manager.js +19 -1
- package/dist/node/clients/base-client-manager.js.map +1 -1
- package/dist/node/clients/rpc-client/rpc-schema-util.d.ts +1 -0
- package/dist/node/clients/rpc-client/schema.d.ts +3 -0
- package/dist/node/community/schema.d.ts +24 -0
- package/dist/node/community/schema.js +6 -1
- package/dist/node/community/schema.js.map +1 -1
- package/dist/node/errors.d.ts +10 -1
- package/dist/node/errors.js +10 -1
- package/dist/node/errors.js.map +1 -1
- package/dist/node/generated-version.d.ts +1 -1
- package/dist/node/generated-version.js +1 -1
- package/dist/node/pages/pages.js +8 -0
- package/dist/node/pages/pages.js.map +1 -1
- package/dist/node/pages/schema.d.ts +4 -0
- package/dist/node/pages/util.d.ts +2 -0
- package/dist/node/pages/util.js +23 -3
- package/dist/node/pages/util.js.map +1 -1
- package/dist/node/pkc/pkc.d.ts +2 -0
- package/dist/node/pkc/pkc.js +20 -0
- package/dist/node/pkc/pkc.js.map +1 -1
- package/dist/node/pkc-error.d.ts +1 -1
- package/dist/node/publications/comment/comment-client-manager.js +22 -4
- package/dist/node/publications/comment/comment-client-manager.js.map +1 -1
- package/dist/node/publications/comment/comment.d.ts +2 -1
- package/dist/node/publications/comment/comment.js +29 -6
- package/dist/node/publications/comment/comment.js.map +1 -1
- package/dist/node/publications/comment/crosspost-depth.d.ts +5 -0
- package/dist/node/publications/comment/crosspost-depth.js +75 -0
- package/dist/node/publications/comment/crosspost-depth.js.map +1 -0
- package/dist/node/publications/comment/crosspost-runtime.d.ts +30 -0
- package/dist/node/publications/comment/crosspost-runtime.js +133 -0
- package/dist/node/publications/comment/crosspost-runtime.js.map +1 -0
- package/dist/node/publications/comment/schema.d.ts +20 -2
- package/dist/node/publications/comment/schema.js +21 -10
- package/dist/node/publications/comment/schema.js.map +1 -1
- package/dist/node/publications/comment/types.d.ts +10 -0
- package/dist/node/publications/community-edit/schema.d.ts +4 -0
- package/dist/node/publications/publication.d.ts +4 -0
- package/dist/node/publications/publication.js +80 -5
- package/dist/node/publications/publication.js.map +1 -1
- package/dist/node/pubsub-messages/schema.d.ts +5 -0
- package/dist/node/rpc/src/index.js +13 -1
- package/dist/node/rpc/src/index.js.map +1 -1
- package/dist/node/runtime/node/community/db-handler.d.ts +2 -0
- package/dist/node/runtime/node/community/db-handler.js +24 -6
- package/dist/node/runtime/node/community/db-handler.js.map +1 -1
- package/dist/node/runtime/node/community/local-community/publication-validation.js +15 -0
- package/dist/node/runtime/node/community/local-community/publication-validation.js.map +1 -1
- package/dist/node/runtime/node/community/page-generator.d.ts +2 -0
- package/dist/node/schema/schema-util.d.ts +17 -0
- package/dist/node/schema/schema-util.js +49 -5
- package/dist/node/schema/schema-util.js.map +1 -1
- package/dist/node/signer/signatures.d.ts +1 -10
- package/dist/node/signer/signatures.js +83 -0
- package/dist/node/signer/signatures.js.map +1 -1
- package/dist/node/test/test-util.d.ts +6 -0
- package/dist/node/version.js +1 -1
- package/package.json +1 -1
|
@@ -303,6 +303,7 @@ export declare function createDelegatedCommunityIpns(communityOpts?: Partial<Com
|
|
|
303
303
|
parentCid?: string | undefined;
|
|
304
304
|
postCid?: string | undefined;
|
|
305
305
|
quotedCids?: string[] | undefined;
|
|
306
|
+
crosspost?: import("../publications/comment/schema.js").Crosspost | undefined;
|
|
306
307
|
author?: {
|
|
307
308
|
[x: string]: unknown;
|
|
308
309
|
name?: string | undefined;
|
|
@@ -490,6 +491,7 @@ export declare function createDelegatedCommunityIpns(communityOpts?: Partial<Com
|
|
|
490
491
|
noReplyLinks?: boolean | undefined;
|
|
491
492
|
noPolls?: boolean | undefined;
|
|
492
493
|
noCrossposts?: boolean | undefined;
|
|
494
|
+
maxCrosspostDepth?: number | undefined;
|
|
493
495
|
noNestedReplies?: boolean | undefined;
|
|
494
496
|
safeForWork?: boolean | undefined;
|
|
495
497
|
authorFlairs?: boolean | undefined;
|
|
@@ -639,6 +641,7 @@ export declare function createMockedCommunityIpns(communityOpts: CreateNewLocalC
|
|
|
639
641
|
parentCid?: string | undefined;
|
|
640
642
|
postCid?: string | undefined;
|
|
641
643
|
quotedCids?: string[] | undefined;
|
|
644
|
+
crosspost?: import("../publications/comment/schema.js").Crosspost | undefined;
|
|
642
645
|
author?: {
|
|
643
646
|
[x: string]: unknown;
|
|
644
647
|
name?: string | undefined;
|
|
@@ -826,6 +829,7 @@ export declare function createMockedCommunityIpns(communityOpts: CreateNewLocalC
|
|
|
826
829
|
noReplyLinks?: boolean | undefined;
|
|
827
830
|
noPolls?: boolean | undefined;
|
|
828
831
|
noCrossposts?: boolean | undefined;
|
|
832
|
+
maxCrosspostDepth?: number | undefined;
|
|
829
833
|
noNestedReplies?: boolean | undefined;
|
|
830
834
|
safeForWork?: boolean | undefined;
|
|
831
835
|
authorFlairs?: boolean | undefined;
|
|
@@ -939,6 +943,7 @@ export declare function jsonifyLocalCommunityWithNoInternalProps(community: Loca
|
|
|
939
943
|
noReplyLinks?: boolean | undefined;
|
|
940
944
|
noPolls?: boolean | undefined;
|
|
941
945
|
noCrossposts?: boolean | undefined;
|
|
946
|
+
maxCrosspostDepth?: number | undefined;
|
|
942
947
|
noNestedReplies?: boolean | undefined;
|
|
943
948
|
safeForWork?: boolean | undefined;
|
|
944
949
|
authorFlairs?: boolean | undefined;
|
|
@@ -1142,6 +1147,7 @@ export declare function createCommentUpdateWithInvalidSignature(commentCid: stri
|
|
|
1142
1147
|
parentCid?: string | undefined;
|
|
1143
1148
|
postCid?: string | undefined;
|
|
1144
1149
|
quotedCids?: string[] | undefined;
|
|
1150
|
+
crosspost?: import("../publications/comment/schema.js").Crosspost | undefined;
|
|
1145
1151
|
author?: {
|
|
1146
1152
|
[x: string]: unknown;
|
|
1147
1153
|
name?: string | undefined;
|
package/dist/browser/version.js
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"node:module"
|
|
15
15
|
],
|
|
16
16
|
"dynamicImports": [
|
|
17
|
-
"chunks/node-
|
|
17
|
+
"chunks/node-lb4SvdBh.js"
|
|
18
18
|
],
|
|
19
19
|
"inputs": [
|
|
20
20
|
"dist/node/runtime/node/compile-cache.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"index.js": {
|
|
25
25
|
"isEntry": true,
|
|
26
26
|
"imports": [
|
|
27
|
-
"chunks/node-
|
|
27
|
+
"chunks/node-lb4SvdBh.js"
|
|
28
28
|
],
|
|
29
29
|
"dynamicImports": [],
|
|
30
30
|
"inputs": []
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"rpc/src/index.js": {
|
|
33
33
|
"isEntry": true,
|
|
34
34
|
"imports": [
|
|
35
|
-
"chunks/rpc-local-community-
|
|
36
|
-
"chunks/node-
|
|
37
|
-
"chunks/schema-
|
|
38
|
-
"chunks/local-community-
|
|
35
|
+
"chunks/rpc-local-community-a464veDe.js",
|
|
36
|
+
"chunks/node-lb4SvdBh.js",
|
|
37
|
+
"chunks/schema-mdv9_FG5.js",
|
|
38
|
+
"chunks/local-community-DJM47U8C.js",
|
|
39
39
|
"node:url",
|
|
40
40
|
"path",
|
|
41
41
|
"assert",
|
|
@@ -65,12 +65,12 @@
|
|
|
65
65
|
"\u0000rolldown/runtime.js"
|
|
66
66
|
]
|
|
67
67
|
},
|
|
68
|
-
"chunks/helia-for-pkc-
|
|
68
|
+
"chunks/helia-for-pkc-BtjQ8rfd.js": {
|
|
69
69
|
"isEntry": false,
|
|
70
70
|
"imports": [
|
|
71
71
|
"chunks/chunk-2rV9d50f.js",
|
|
72
|
-
"chunks/schema-
|
|
73
|
-
"chunks/util-
|
|
72
|
+
"chunks/schema-mdv9_FG5.js",
|
|
73
|
+
"chunks/util-y9-A9BnM.js",
|
|
74
74
|
"chunks/src-DKntVmyX.js",
|
|
75
75
|
"chunks/src-Cpx2Sts8.js",
|
|
76
76
|
"node:url",
|
|
@@ -186,20 +186,20 @@
|
|
|
186
186
|
"dist/node/helia/helia-for-pkc.js"
|
|
187
187
|
]
|
|
188
188
|
},
|
|
189
|
-
"chunks/local-community-
|
|
189
|
+
"chunks/local-community-B_Yg8LQH.js": {
|
|
190
190
|
"isEntry": false,
|
|
191
191
|
"imports": [
|
|
192
|
-
"chunks/local-community-
|
|
192
|
+
"chunks/local-community-DJM47U8C.js"
|
|
193
193
|
],
|
|
194
194
|
"dynamicImports": [],
|
|
195
195
|
"inputs": []
|
|
196
196
|
},
|
|
197
|
-
"chunks/local-community-
|
|
197
|
+
"chunks/local-community-DJM47U8C.js": {
|
|
198
198
|
"isEntry": false,
|
|
199
199
|
"imports": [
|
|
200
200
|
"chunks/chunk-2rV9d50f.js",
|
|
201
|
-
"chunks/rpc-local-community-
|
|
202
|
-
"chunks/schema-
|
|
201
|
+
"chunks/rpc-local-community-a464veDe.js",
|
|
202
|
+
"chunks/schema-mdv9_FG5.js",
|
|
203
203
|
"node:crypto",
|
|
204
204
|
"node:url",
|
|
205
205
|
"node:path",
|
|
@@ -255,13 +255,13 @@
|
|
|
255
255
|
"dist/node/runtime/node/community/local-community.js"
|
|
256
256
|
]
|
|
257
257
|
},
|
|
258
|
-
"chunks/node-
|
|
258
|
+
"chunks/node-lb4SvdBh.js": {
|
|
259
259
|
"isEntry": false,
|
|
260
260
|
"imports": [
|
|
261
261
|
"chunks/chunk-2rV9d50f.js",
|
|
262
|
-
"chunks/rpc-local-community-
|
|
263
|
-
"chunks/schema-
|
|
264
|
-
"chunks/util-
|
|
262
|
+
"chunks/rpc-local-community-a464veDe.js",
|
|
263
|
+
"chunks/schema-mdv9_FG5.js",
|
|
264
|
+
"chunks/util-y9-A9BnM.js",
|
|
265
265
|
"path",
|
|
266
266
|
"assert",
|
|
267
267
|
"fs",
|
|
@@ -272,8 +272,8 @@
|
|
|
272
272
|
"rpc-websockets"
|
|
273
273
|
],
|
|
274
274
|
"dynamicImports": [
|
|
275
|
-
"chunks/helia-for-pkc-
|
|
276
|
-
"chunks/local-community-
|
|
275
|
+
"chunks/helia-for-pkc-BtjQ8rfd.js",
|
|
276
|
+
"chunks/local-community-DJM47U8C.js"
|
|
277
277
|
],
|
|
278
278
|
"inputs": [
|
|
279
279
|
"node_modules/zod/v4/locales/en.js",
|
|
@@ -315,11 +315,11 @@
|
|
|
315
315
|
"dist/node/index.js"
|
|
316
316
|
]
|
|
317
317
|
},
|
|
318
|
-
"chunks/rpc-local-community-
|
|
318
|
+
"chunks/rpc-local-community-a464veDe.js": {
|
|
319
319
|
"isEntry": false,
|
|
320
320
|
"imports": [
|
|
321
321
|
"chunks/chunk-2rV9d50f.js",
|
|
322
|
-
"chunks/schema-
|
|
322
|
+
"chunks/schema-mdv9_FG5.js",
|
|
323
323
|
"chunks/src-CYIMjhjK.js",
|
|
324
324
|
"node:crypto",
|
|
325
325
|
"node:url",
|
|
@@ -732,6 +732,7 @@
|
|
|
732
732
|
"node_modules/remeda/dist/withPrecision-CqXhgRqZ.js",
|
|
733
733
|
"node_modules/remeda/dist/round.js",
|
|
734
734
|
"node_modules/remeda/dist/stringToPath.js",
|
|
735
|
+
"dist/node/publications/comment/crosspost-depth.js",
|
|
735
736
|
"dist/node/clients/rpc-client/schema.js",
|
|
736
737
|
"dist/node/rpc/src/schema.js",
|
|
737
738
|
"dist/node/schema/schema-util.js",
|
|
@@ -785,6 +786,7 @@
|
|
|
785
786
|
"dist/node/pages/pages-clients.js",
|
|
786
787
|
"dist/node/pages/pages-client-manager.js",
|
|
787
788
|
"dist/node/pages/schema-util.js",
|
|
789
|
+
"dist/node/publications/comment/crosspost-runtime.js",
|
|
788
790
|
"dist/node/pages/pages.js",
|
|
789
791
|
"dist/node/pages/util.js",
|
|
790
792
|
"dist/node/publications/comment/comment-clients.js",
|
|
@@ -870,7 +872,7 @@
|
|
|
870
872
|
"dist/node/community/rpc-local-community.js"
|
|
871
873
|
]
|
|
872
874
|
},
|
|
873
|
-
"chunks/schema-
|
|
875
|
+
"chunks/schema-mdv9_FG5.js": {
|
|
874
876
|
"isEntry": false,
|
|
875
877
|
"imports": [
|
|
876
878
|
"chunks/chunk-2rV9d50f.js",
|
|
@@ -1323,10 +1325,10 @@
|
|
|
1323
1325
|
"node_modules/kubo-rpc-client/dist/src/index.js"
|
|
1324
1326
|
]
|
|
1325
1327
|
},
|
|
1326
|
-
"chunks/util-
|
|
1328
|
+
"chunks/util-y9-A9BnM.js": {
|
|
1327
1329
|
"isEntry": false,
|
|
1328
1330
|
"imports": [
|
|
1329
|
-
"chunks/schema-
|
|
1331
|
+
"chunks/schema-mdv9_FG5.js",
|
|
1330
1332
|
"ipns/selector",
|
|
1331
1333
|
"uint8arrays/equals"
|
|
1332
1334
|
],
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { i as __toESM, r as __require, t as __commonJSMin } from "./chunk-2rV9d50f.js";
|
|
2
|
-
import { L as hideClassPrivateProps, R as ipnsNameToIpnsOverPubsubTopic, br as logger_default, vr as PKCError } from "./schema-
|
|
3
|
-
import { a as fetchBlockWithStalledSessionFailover, i as directFetchIpnsRecordFromProviders, n as cacheIpnsRecordInPubsubLocalStore, o as getHeliaDebugContext, r as connectToPubsubPeers, s as selectBitswapSessionSeedPeers } from "./util-
|
|
2
|
+
import { L as hideClassPrivateProps, R as ipnsNameToIpnsOverPubsubTopic, br as logger_default, vr as PKCError } from "./schema-mdv9_FG5.js";
|
|
3
|
+
import { a as fetchBlockWithStalledSessionFailover, i as directFetchIpnsRecordFromProviders, n as cacheIpnsRecordInPubsubLocalStore, o as getHeliaDebugContext, r as connectToPubsubPeers, s as selectBitswapSessionSeedPeers } from "./util-y9-A9BnM.js";
|
|
4
4
|
import { t as map } from "./src-Cpx2Sts8.js";
|
|
5
5
|
import { t as parallelBatch } from "./src-DKntVmyX.js";
|
|
6
6
|
import { fileURLToPath } from "node:url";
|
|
7
7
|
import fsp, { rename, writeFile } from "node:fs/promises";
|
|
8
|
-
import
|
|
9
|
-
import path
|
|
8
|
+
import Path, { basename, dirname, join } from "node:path";
|
|
9
|
+
import path from "path";
|
|
10
10
|
import { CID } from "multiformats/cid";
|
|
11
11
|
import { peerIdFromString } from "@libp2p/peer-id";
|
|
12
12
|
import * as Digest from "multiformats/hashes/digest";
|
|
@@ -148,7 +148,7 @@ var require_path = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
148
148
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
149
149
|
exports.convertPosixPathToPattern = exports.convertWindowsPathToPattern = exports.convertPathToPattern = exports.escapePosixPath = exports.escapeWindowsPath = exports.escape = exports.removeLeadingDotSegment = exports.makeAbsolute = exports.unixify = void 0;
|
|
150
150
|
const os$1 = __require("os");
|
|
151
|
-
const path$
|
|
151
|
+
const path$9 = __require("path");
|
|
152
152
|
const IS_WINDOWS_PLATFORM = os$1.platform() === "win32";
|
|
153
153
|
const LEADING_DOT_SEGMENT_CHARACTERS_COUNT = 2;
|
|
154
154
|
/**
|
|
@@ -177,7 +177,7 @@ var require_path = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
177
177
|
}
|
|
178
178
|
exports.unixify = unixify;
|
|
179
179
|
function makeAbsolute(cwd, filepath) {
|
|
180
|
-
return path$
|
|
180
|
+
return path$9.resolve(cwd, filepath);
|
|
181
181
|
}
|
|
182
182
|
exports.makeAbsolute = makeAbsolute;
|
|
183
183
|
function removeLeadingDotSegment(entry) {
|
|
@@ -1429,7 +1429,7 @@ var require_braces = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
1429
1429
|
//#endregion
|
|
1430
1430
|
//#region node_modules/picomatch/lib/constants.js
|
|
1431
1431
|
var require_constants$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
1432
|
-
const path$
|
|
1432
|
+
const path$8 = __require("path");
|
|
1433
1433
|
const WIN_SLASH = "\\\\/";
|
|
1434
1434
|
const WIN_NO_SLASH = `[^${WIN_SLASH}]`;
|
|
1435
1435
|
const DEFAULT_MAX_EXTGLOB_RECURSION = 0;
|
|
@@ -1554,7 +1554,7 @@ var require_constants$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
1554
1554
|
CHAR_UNDERSCORE: 95,
|
|
1555
1555
|
CHAR_VERTICAL_LINE: 124,
|
|
1556
1556
|
CHAR_ZERO_WIDTH_NOBREAK_SPACE: 65279,
|
|
1557
|
-
SEP: path$
|
|
1557
|
+
SEP: path$8.sep,
|
|
1558
1558
|
/**
|
|
1559
1559
|
* Create EXTGLOB_CHARS
|
|
1560
1560
|
*/
|
|
@@ -1598,7 +1598,7 @@ var require_constants$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
1598
1598
|
//#endregion
|
|
1599
1599
|
//#region node_modules/picomatch/lib/utils.js
|
|
1600
1600
|
var require_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1601
|
-
const path$
|
|
1601
|
+
const path$7 = __require("path");
|
|
1602
1602
|
const win32 = process.platform === "win32";
|
|
1603
1603
|
const { REGEX_BACKSLASH, REGEX_REMOVE_BACKSLASH, REGEX_SPECIAL_CHARS, REGEX_SPECIAL_CHARS_GLOBAL } = require_constants$1();
|
|
1604
1604
|
exports.isObject = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
|
|
@@ -1618,7 +1618,7 @@ var require_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1618
1618
|
};
|
|
1619
1619
|
exports.isWindows = (options) => {
|
|
1620
1620
|
if (options && typeof options.windows === "boolean") return options.windows;
|
|
1621
|
-
return win32 === true || path$
|
|
1621
|
+
return win32 === true || path$7.sep === "\\";
|
|
1622
1622
|
};
|
|
1623
1623
|
exports.escapeLast = (input, char, lastIdx) => {
|
|
1624
1624
|
const idx = input.lastIndexOf(char, lastIdx);
|
|
@@ -2988,7 +2988,7 @@ var require_parse = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
2988
2988
|
//#endregion
|
|
2989
2989
|
//#region node_modules/picomatch/lib/picomatch.js
|
|
2990
2990
|
var require_picomatch$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
2991
|
-
const path$
|
|
2991
|
+
const path$6 = __require("path");
|
|
2992
2992
|
const scan = require_scan();
|
|
2993
2993
|
const parse = require_parse();
|
|
2994
2994
|
const utils = require_utils$2();
|
|
@@ -3127,7 +3127,7 @@ var require_picomatch$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
3127
3127
|
* @api public
|
|
3128
3128
|
*/
|
|
3129
3129
|
picomatch.matchBase = (input, glob, options, posix = utils.isWindows(options)) => {
|
|
3130
|
-
return (glob instanceof RegExp ? glob : picomatch.makeRe(glob, options)).test(path$
|
|
3130
|
+
return (glob instanceof RegExp ? glob : picomatch.makeRe(glob, options)).test(path$6.basename(input));
|
|
3131
3131
|
};
|
|
3132
3132
|
/**
|
|
3133
3133
|
* Returns true if **any** of the given glob `patterns` match the specified `string`.
|
|
@@ -3682,7 +3682,7 @@ var require_micromatch = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
3682
3682
|
var require_pattern = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3683
3683
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3684
3684
|
exports.isAbsolute = exports.partitionAbsoluteAndRelative = exports.removeDuplicateSlashes = exports.matchAny = exports.convertPatternsToRe = exports.makeRe = exports.getPatternParts = exports.expandBraceExpansion = exports.expandPatternsWithBraceExpansion = exports.isAffectDepthOfReadingPattern = exports.endsWithSlashGlobStar = exports.hasGlobStar = exports.getBaseDirectory = exports.isPatternRelatedToParentDirectory = exports.getPatternsOutsideCurrentDirectory = exports.getPatternsInsideCurrentDirectory = exports.getPositivePatterns = exports.getNegativePatterns = exports.isPositivePattern = exports.isNegativePattern = exports.convertToNegativePattern = exports.convertToPositivePattern = exports.isDynamicPattern = exports.isStaticPattern = void 0;
|
|
3685
|
-
const path$
|
|
3685
|
+
const path$5 = __require("path");
|
|
3686
3686
|
const globParent = require_glob_parent();
|
|
3687
3687
|
const micromatch = require_micromatch();
|
|
3688
3688
|
const GLOBSTAR = "**";
|
|
@@ -3790,7 +3790,7 @@ var require_pattern = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3790
3790
|
}
|
|
3791
3791
|
exports.endsWithSlashGlobStar = endsWithSlashGlobStar;
|
|
3792
3792
|
function isAffectDepthOfReadingPattern(pattern) {
|
|
3793
|
-
const basename = path$
|
|
3793
|
+
const basename = path$5.basename(pattern);
|
|
3794
3794
|
return endsWithSlashGlobStar(pattern) || isStaticPattern(basename);
|
|
3795
3795
|
}
|
|
3796
3796
|
exports.isAffectDepthOfReadingPattern = isAffectDepthOfReadingPattern;
|
|
@@ -3864,7 +3864,7 @@ var require_pattern = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3864
3864
|
}
|
|
3865
3865
|
exports.partitionAbsoluteAndRelative = partitionAbsoluteAndRelative;
|
|
3866
3866
|
function isAbsolute(pattern) {
|
|
3867
|
-
return path$
|
|
3867
|
+
return path$5.isAbsolute(pattern);
|
|
3868
3868
|
}
|
|
3869
3869
|
exports.isAbsolute = isAbsolute;
|
|
3870
3870
|
}));
|
|
@@ -4492,7 +4492,7 @@ var require_fs = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
4492
4492
|
//#region node_modules/@nodelib/fs.scandir/out/settings.js
|
|
4493
4493
|
var require_settings$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
4494
4494
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4495
|
-
const path$
|
|
4495
|
+
const path$4 = __require("path");
|
|
4496
4496
|
const fsStat = require_out$3();
|
|
4497
4497
|
const fs = require_fs();
|
|
4498
4498
|
var Settings = class {
|
|
@@ -4500,7 +4500,7 @@ var require_settings$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
4500
4500
|
this._options = _options;
|
|
4501
4501
|
this.followSymbolicLinks = this._getValue(this._options.followSymbolicLinks, false);
|
|
4502
4502
|
this.fs = fs.createFileSystemAdapter(this._options.fs);
|
|
4503
|
-
this.pathSegmentSeparator = this._getValue(this._options.pathSegmentSeparator, path$
|
|
4503
|
+
this.pathSegmentSeparator = this._getValue(this._options.pathSegmentSeparator, path$4.sep);
|
|
4504
4504
|
this.stats = this._getValue(this._options.stats, false);
|
|
4505
4505
|
this.throwErrorOnBrokenSymbolicLink = this._getValue(this._options.throwErrorOnBrokenSymbolicLink, true);
|
|
4506
4506
|
this.fsStatSettings = new fsStat.Settings({
|
|
@@ -5094,7 +5094,7 @@ var require_sync$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5094
5094
|
//#region node_modules/@nodelib/fs.walk/out/settings.js
|
|
5095
5095
|
var require_settings$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5096
5096
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5097
|
-
const path$
|
|
5097
|
+
const path$3 = __require("path");
|
|
5098
5098
|
const fsScandir = require_out$2();
|
|
5099
5099
|
var Settings = class {
|
|
5100
5100
|
constructor(_options = {}) {
|
|
@@ -5104,7 +5104,7 @@ var require_settings$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5104
5104
|
this.deepFilter = this._getValue(this._options.deepFilter, null);
|
|
5105
5105
|
this.entryFilter = this._getValue(this._options.entryFilter, null);
|
|
5106
5106
|
this.errorFilter = this._getValue(this._options.errorFilter, null);
|
|
5107
|
-
this.pathSegmentSeparator = this._getValue(this._options.pathSegmentSeparator, path$
|
|
5107
|
+
this.pathSegmentSeparator = this._getValue(this._options.pathSegmentSeparator, path$3.sep);
|
|
5108
5108
|
this.fsScandirSettings = new fsScandir.Settings({
|
|
5109
5109
|
followSymbolicLinks: this._options.followSymbolicLinks,
|
|
5110
5110
|
fs: this._options.fs,
|
|
@@ -5156,7 +5156,7 @@ var require_out$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5156
5156
|
//#region node_modules/fast-glob/out/readers/reader.js
|
|
5157
5157
|
var require_reader = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5158
5158
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5159
|
-
const path$
|
|
5159
|
+
const path$2 = __require("path");
|
|
5160
5160
|
const fsStat = require_out$3();
|
|
5161
5161
|
const utils = require_utils$1();
|
|
5162
5162
|
var Reader = class {
|
|
@@ -5169,7 +5169,7 @@ var require_reader = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5169
5169
|
});
|
|
5170
5170
|
}
|
|
5171
5171
|
_getFullEntryPath(filepath) {
|
|
5172
|
-
return path$
|
|
5172
|
+
return path$2.resolve(this._settings.cwd, filepath);
|
|
5173
5173
|
}
|
|
5174
5174
|
_makeEntry(stats, pattern) {
|
|
5175
5175
|
const entry = {
|
|
@@ -5504,7 +5504,7 @@ var require_entry = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5504
5504
|
//#region node_modules/fast-glob/out/providers/provider.js
|
|
5505
5505
|
var require_provider = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
5506
5506
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5507
|
-
const path$
|
|
5507
|
+
const path$1 = __require("path");
|
|
5508
5508
|
const deep_1 = require_deep();
|
|
5509
5509
|
const entry_1 = require_entry$1();
|
|
5510
5510
|
const error_1 = require_error();
|
|
@@ -5518,7 +5518,7 @@ var require_provider = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5518
5518
|
this.entryTransformer = new entry_2.default(this._settings);
|
|
5519
5519
|
}
|
|
5520
5520
|
_getRootDirectory(task) {
|
|
5521
|
-
return path$
|
|
5521
|
+
return path$1.resolve(this._settings.cwd, task.base);
|
|
5522
5522
|
}
|
|
5523
5523
|
_getReaderOptions(task) {
|
|
5524
5524
|
const basePath = task.base === "." ? "" : task.base;
|
|
@@ -5849,7 +5849,7 @@ var import_out = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((export
|
|
|
5849
5849
|
* Async iterable filename pattern matcher
|
|
5850
5850
|
*/
|
|
5851
5851
|
async function* glob(dir, pattern, options = {}) {
|
|
5852
|
-
const absoluteDir =
|
|
5852
|
+
const absoluteDir = Path.resolve(dir);
|
|
5853
5853
|
const stats = await fsp.stat(absoluteDir);
|
|
5854
5854
|
for await (const entry of import_out.default.stream(pattern, {
|
|
5855
5855
|
...options,
|
|
@@ -6024,7 +6024,7 @@ var NextToLast = class {
|
|
|
6024
6024
|
};
|
|
6025
6025
|
}
|
|
6026
6026
|
decode(str) {
|
|
6027
|
-
let fileName =
|
|
6027
|
+
let fileName = Path.basename(str);
|
|
6028
6028
|
if (fileName.endsWith(this.extension)) fileName = fileName.substring(0, fileName.length - this.extension.length);
|
|
6029
6029
|
return CID.decode(this.base.decoder.decode(fileName));
|
|
6030
6030
|
}
|
|
@@ -6050,7 +6050,7 @@ var NextToLast = class {
|
|
|
6050
6050
|
async function writeFile$1(file, contents, options) {
|
|
6051
6051
|
try {
|
|
6052
6052
|
options?.signal?.throwIfAborted();
|
|
6053
|
-
await raceSignal(fsp.mkdir(
|
|
6053
|
+
await raceSignal(fsp.mkdir(Path.dirname(file), { recursive: true }), options?.signal);
|
|
6054
6054
|
const writer = new Writer(file);
|
|
6055
6055
|
options?.signal?.throwIfAborted();
|
|
6056
6056
|
await writer.write(contents);
|
|
@@ -6075,7 +6075,7 @@ var FsBlockstore = class {
|
|
|
6075
6075
|
deleteManyConcurrency;
|
|
6076
6076
|
shardingStrategy;
|
|
6077
6077
|
constructor(location, init = {}) {
|
|
6078
|
-
this.path =
|
|
6078
|
+
this.path = Path.resolve(location);
|
|
6079
6079
|
this.createIfMissing = init.createIfMissing ?? true;
|
|
6080
6080
|
this.errorIfExists = init.errorIfExists ?? false;
|
|
6081
6081
|
this.deleteManyConcurrency = init.deleteManyConcurrency ?? 50;
|
|
@@ -6101,7 +6101,7 @@ var FsBlockstore = class {
|
|
|
6101
6101
|
async put(key, val, options) {
|
|
6102
6102
|
const { dir, file } = this.shardingStrategy.encode(key);
|
|
6103
6103
|
try {
|
|
6104
|
-
await writeFile$1(
|
|
6104
|
+
await writeFile$1(Path.join(this.path, dir, file), val, options);
|
|
6105
6105
|
return key;
|
|
6106
6106
|
} catch (err) {
|
|
6107
6107
|
throw new PutFailedError(String(err));
|
|
@@ -6120,7 +6120,7 @@ var FsBlockstore = class {
|
|
|
6120
6120
|
let handle;
|
|
6121
6121
|
try {
|
|
6122
6122
|
options?.signal?.throwIfAborted();
|
|
6123
|
-
handle = await raceSignal(fsp.open(
|
|
6123
|
+
handle = await raceSignal(fsp.open(Path.join(this.path, dir, file)), options?.signal);
|
|
6124
6124
|
yield* handle.createReadStream();
|
|
6125
6125
|
} catch (err) {
|
|
6126
6126
|
if (handle != null) await raceSignal(handle.close(), options?.signal);
|
|
@@ -6141,7 +6141,7 @@ var FsBlockstore = class {
|
|
|
6141
6141
|
const { dir, file } = this.shardingStrategy.encode(key);
|
|
6142
6142
|
try {
|
|
6143
6143
|
options?.signal?.throwIfAborted();
|
|
6144
|
-
await raceSignal(fsp.unlink(
|
|
6144
|
+
await raceSignal(fsp.unlink(Path.join(this.path, dir, file)), options?.signal);
|
|
6145
6145
|
} catch (err) {
|
|
6146
6146
|
if (err.code === "ENOENT") return;
|
|
6147
6147
|
throw new DeleteFailedError(String(err));
|
|
@@ -6159,14 +6159,14 @@ var FsBlockstore = class {
|
|
|
6159
6159
|
const { dir, file } = this.shardingStrategy.encode(key);
|
|
6160
6160
|
try {
|
|
6161
6161
|
options?.signal?.throwIfAborted();
|
|
6162
|
-
await raceSignal(fsp.access(
|
|
6162
|
+
await raceSignal(fsp.access(Path.join(this.path, dir, file)), options?.signal);
|
|
6163
6163
|
} catch (err) {
|
|
6164
6164
|
return false;
|
|
6165
6165
|
}
|
|
6166
6166
|
return true;
|
|
6167
6167
|
}
|
|
6168
6168
|
async *getAll(options) {
|
|
6169
|
-
const pattern = `**/*${this.shardingStrategy.extension}`.split(
|
|
6169
|
+
const pattern = `**/*${this.shardingStrategy.extension}`.split(Path.sep).join("/");
|
|
6170
6170
|
const files = glob(this.path, pattern, { absolute: true });
|
|
6171
6171
|
for await (const file of files) try {
|
|
6172
6172
|
options?.signal?.throwIfAborted();
|
|
@@ -6218,7 +6218,7 @@ async function createBlockstoreForLibp2pJsClient({ dataPath, key }) {
|
|
|
6218
6218
|
defaultMaxBytes: DEFAULT_IN_MEMORY_BLOCKSTORE_MAX_BYTES,
|
|
6219
6219
|
close: async () => {}
|
|
6220
6220
|
};
|
|
6221
|
-
const store = new FsBlockstore(path
|
|
6221
|
+
const store = new FsBlockstore(path.join(dataPath, "blockstore", key));
|
|
6222
6222
|
await store.open();
|
|
6223
6223
|
return {
|
|
6224
6224
|
blockstore: store,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as createNewLocalCommunityDb, r as updateInstancePropsWithStartedCommunityOrDb, t as LocalCommunity } from "./local-community-
|
|
1
|
+
import { n as createNewLocalCommunityDb, r as updateInstancePropsWithStartedCommunityOrDb, t as LocalCommunity } from "./local-community-DJM47U8C.js";
|
|
2
2
|
export { LocalCommunity, createNewLocalCommunityDb, updateInstancePropsWithStartedCommunityOrDb };
|