@xyo-network/archivist-model-mongodb 4.1.2 → 4.1.3

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.
@@ -1,24 +1,5 @@
1
- import { BaseMongoSdkPublicConfig, BaseMongoSdkPrivateConfig } from '@xylabs/mongo';
2
- import { ArchivistConfig, ArchivistParams } from '@xyo-network/archivist-model';
3
- import { Labels, AnyConfigSchema } from '@xyo-network/module-model';
4
-
5
- declare const MongoDBArchivistConfigSchema = "network.xyo.archivist.mongodb.config";
6
- type MongoDBArchivistConfigSchema = typeof MongoDBArchivistConfigSchema;
7
-
8
- type MongoDBArchivistConfig = ArchivistConfig<{
9
- boundWitnessSdkConfig?: Partial<BaseMongoSdkPublicConfig>;
10
- payloadSdkConfig?: Partial<BaseMongoSdkPublicConfig>;
11
- schema: MongoDBArchivistConfigSchema;
12
- }>;
13
-
14
- interface ArchivistLabels extends Labels {
15
- 'network.xyo.archivist.persistence.scope': 'memory' | 'thread' | 'process' | 'disk' | 'network';
16
- }
17
-
18
- interface MongoDBArchivistParams extends ArchivistParams<AnyConfigSchema<MongoDBArchivistConfig>> {
19
- boundWitnessSdkConfig: BaseMongoSdkPrivateConfig & Partial<BaseMongoSdkPublicConfig>;
20
- payloadSdkConfig: BaseMongoSdkPrivateConfig & Partial<BaseMongoSdkPublicConfig>;
21
- }
22
-
23
- export { MongoDBArchivistConfigSchema };
24
- export type { ArchivistLabels, MongoDBArchivistConfig, MongoDBArchivistParams };
1
+ export * from './Config.js';
2
+ export * from './Labels.js';
3
+ export * from './Params.js';
4
+ export * from './Schema.js';
5
+ //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/archivist-model-mongodb",
3
- "version": "4.1.2",
3
+ "version": "4.1.3",
4
4
  "description": "Primary SDK for using XYO Protocol 2.0",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -32,13 +32,13 @@
32
32
  "module": "dist/node/index.mjs",
33
33
  "types": "dist/node/index.d.ts",
34
34
  "dependencies": {
35
- "@xylabs/mongo": "^4.13.15",
36
- "@xyo-network/archivist-model": "^4.1.2",
37
- "@xyo-network/module-model": "^4.1.2"
35
+ "@xylabs/mongo": "^4.13.16",
36
+ "@xyo-network/archivist-model": "^4.1.3",
37
+ "@xyo-network/module-model": "^4.1.3"
38
38
  },
39
39
  "devDependencies": {
40
- "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.23",
41
- "@xylabs/tsconfig": "^7.0.0-rc.23",
40
+ "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.27",
41
+ "@xylabs/tsconfig": "^7.0.0-rc.27",
42
42
  "typescript": "^5.8.3"
43
43
  },
44
44
  "engines": {