@xyo-network/archivist-model 2.93.3 → 2.93.5
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/dist/browser/typeChecks.d.cts +20 -0
- package/dist/browser/typeChecks.d.cts.map +1 -1
- package/dist/browser/typeChecks.d.mts +20 -0
- package/dist/browser/typeChecks.d.mts.map +1 -1
- package/dist/browser/typeChecks.d.ts +20 -0
- package/dist/browser/typeChecks.d.ts.map +1 -1
- package/dist/node/typeChecks.d.cts +20 -0
- package/dist/node/typeChecks.d.cts.map +1 -1
- package/dist/node/typeChecks.d.mts +20 -0
- package/dist/node/typeChecks.d.mts.map +1 -1
- package/dist/node/typeChecks.d.ts +20 -0
- package/dist/node/typeChecks.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -2,6 +2,7 @@ import { ArchivistModule } from './Archivist';
|
|
|
2
2
|
import { ArchivistInstance } from './ArchivistInstance';
|
|
3
3
|
export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
4
4
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
5
|
+
addToResolvers?: boolean | undefined;
|
|
5
6
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
6
7
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
7
8
|
requireAllParents?: boolean | undefined;
|
|
@@ -13,11 +14,13 @@ export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<Arc
|
|
|
13
14
|
schema: string;
|
|
14
15
|
};
|
|
15
16
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
17
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
16
18
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
17
19
|
schema: string;
|
|
18
20
|
} & import("@xyo-network/payload-model").PayloadFields>>;
|
|
19
21
|
export declare const isArchivistModule: import("@xyo-network/module-model").ModuleTypeCheck<ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
20
22
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
23
|
+
addToResolvers?: boolean | undefined;
|
|
21
24
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
22
25
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
23
26
|
requireAllParents?: boolean | undefined;
|
|
@@ -29,10 +32,12 @@ export declare const isArchivistModule: import("@xyo-network/module-model").Modu
|
|
|
29
32
|
schema: string;
|
|
30
33
|
};
|
|
31
34
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
35
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
32
36
|
}, import("./Archivist").ArchivistModuleEventData>>;
|
|
33
37
|
export declare const asArchivistModule: {
|
|
34
38
|
<TType extends ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
35
39
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
40
|
+
addToResolvers?: boolean | undefined;
|
|
36
41
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
37
42
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
38
43
|
requireAllParents?: boolean | undefined;
|
|
@@ -44,9 +49,11 @@ export declare const asArchivistModule: {
|
|
|
44
49
|
schema: string;
|
|
45
50
|
};
|
|
46
51
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
52
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
47
53
|
}, import("./Archivist").ArchivistModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
48
54
|
<TType_1 extends ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
49
55
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
56
|
+
addToResolvers?: boolean | undefined;
|
|
50
57
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
51
58
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
52
59
|
requireAllParents?: boolean | undefined;
|
|
@@ -58,8 +65,10 @@ export declare const asArchivistModule: {
|
|
|
58
65
|
schema: string;
|
|
59
66
|
};
|
|
60
67
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
68
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
61
69
|
}, import("./Archivist").ArchivistModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, assert: import("@xylabs/object").StringOrAlertFunction<ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
62
70
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
71
|
+
addToResolvers?: boolean | undefined;
|
|
63
72
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
64
73
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
65
74
|
requireAllParents?: boolean | undefined;
|
|
@@ -71,11 +80,13 @@ export declare const asArchivistModule: {
|
|
|
71
80
|
schema: string;
|
|
72
81
|
};
|
|
73
82
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
83
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
74
84
|
}, import("./Archivist").ArchivistModuleEventData>>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType_1;
|
|
75
85
|
};
|
|
76
86
|
export declare const asArchivistInstance: {
|
|
77
87
|
<TType extends ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
78
88
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
89
|
+
addToResolvers?: boolean | undefined;
|
|
79
90
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
80
91
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
81
92
|
requireAllParents?: boolean | undefined;
|
|
@@ -87,11 +98,13 @@ export declare const asArchivistInstance: {
|
|
|
87
98
|
schema: string;
|
|
88
99
|
};
|
|
89
100
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
101
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
90
102
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
91
103
|
schema: string;
|
|
92
104
|
} & import("@xyo-network/payload-model").PayloadFields>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
93
105
|
<TType_1 extends ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
94
106
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
107
|
+
addToResolvers?: boolean | undefined;
|
|
95
108
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
96
109
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
97
110
|
requireAllParents?: boolean | undefined;
|
|
@@ -103,10 +116,12 @@ export declare const asArchivistInstance: {
|
|
|
103
116
|
schema: string;
|
|
104
117
|
};
|
|
105
118
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
119
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
106
120
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
107
121
|
schema: string;
|
|
108
122
|
} & import("@xyo-network/payload-model").PayloadFields>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, assert: import("@xylabs/object").StringOrAlertFunction<ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
109
123
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
124
|
+
addToResolvers?: boolean | undefined;
|
|
110
125
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
111
126
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
112
127
|
requireAllParents?: boolean | undefined;
|
|
@@ -118,12 +133,14 @@ export declare const asArchivistInstance: {
|
|
|
118
133
|
schema: string;
|
|
119
134
|
};
|
|
120
135
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
136
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
121
137
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
122
138
|
schema: string;
|
|
123
139
|
} & import("@xyo-network/payload-model").PayloadFields>>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType_1;
|
|
124
140
|
};
|
|
125
141
|
export declare const withArchivistModule: <R>(module: any, closure: (module: ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
126
142
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
143
|
+
addToResolvers?: boolean | undefined;
|
|
127
144
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
128
145
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
129
146
|
requireAllParents?: boolean | undefined;
|
|
@@ -135,9 +152,11 @@ export declare const withArchivistModule: <R>(module: any, closure: (module: Arc
|
|
|
135
152
|
schema: string;
|
|
136
153
|
};
|
|
137
154
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
155
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
138
156
|
}, import("./Archivist").ArchivistModuleEventData>) => R) => R | undefined;
|
|
139
157
|
export declare const withArchivistInstance: <R>(module: any, closure: (module: ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
140
158
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
159
|
+
addToResolvers?: boolean | undefined;
|
|
141
160
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
142
161
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
143
162
|
requireAllParents?: boolean | undefined;
|
|
@@ -149,6 +168,7 @@ export declare const withArchivistInstance: <R>(module: any, closure: (module: A
|
|
|
149
168
|
schema: string;
|
|
150
169
|
};
|
|
151
170
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
171
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
152
172
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
153
173
|
schema: string;
|
|
154
174
|
} & import("@xyo-network/payload-model").PayloadFields>) => R) => R | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typeChecks.d.ts","sourceRoot":"","sources":["../../src/typeChecks.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAC7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAGvD,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"typeChecks.d.ts","sourceRoot":"","sources":["../../src/typeChecks.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAC7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAGvD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;wDAA6F,CAAA;AAC7H,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;mDAA2E,CAAA;AAEzG,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA4C,CAAA;AAC1E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA8C,CAAA;AAC9E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;0EAAwC,CAAA;AACxE,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;+EAA0C,CAAA"}
|
|
@@ -2,6 +2,7 @@ import { ArchivistModule } from './Archivist';
|
|
|
2
2
|
import { ArchivistInstance } from './ArchivistInstance';
|
|
3
3
|
export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
4
4
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
5
|
+
addToResolvers?: boolean | undefined;
|
|
5
6
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
6
7
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
7
8
|
requireAllParents?: boolean | undefined;
|
|
@@ -13,11 +14,13 @@ export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<Arc
|
|
|
13
14
|
schema: string;
|
|
14
15
|
};
|
|
15
16
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
17
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
16
18
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
17
19
|
schema: string;
|
|
18
20
|
} & import("@xyo-network/payload-model").PayloadFields>>;
|
|
19
21
|
export declare const isArchivistModule: import("@xyo-network/module-model").ModuleTypeCheck<ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
20
22
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
23
|
+
addToResolvers?: boolean | undefined;
|
|
21
24
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
22
25
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
23
26
|
requireAllParents?: boolean | undefined;
|
|
@@ -29,10 +32,12 @@ export declare const isArchivistModule: import("@xyo-network/module-model").Modu
|
|
|
29
32
|
schema: string;
|
|
30
33
|
};
|
|
31
34
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
35
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
32
36
|
}, import("./Archivist").ArchivistModuleEventData>>;
|
|
33
37
|
export declare const asArchivistModule: {
|
|
34
38
|
<TType extends ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
35
39
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
40
|
+
addToResolvers?: boolean | undefined;
|
|
36
41
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
37
42
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
38
43
|
requireAllParents?: boolean | undefined;
|
|
@@ -44,9 +49,11 @@ export declare const asArchivistModule: {
|
|
|
44
49
|
schema: string;
|
|
45
50
|
};
|
|
46
51
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
52
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
47
53
|
}, import("./Archivist").ArchivistModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
48
54
|
<TType_1 extends ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
49
55
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
56
|
+
addToResolvers?: boolean | undefined;
|
|
50
57
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
51
58
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
52
59
|
requireAllParents?: boolean | undefined;
|
|
@@ -58,8 +65,10 @@ export declare const asArchivistModule: {
|
|
|
58
65
|
schema: string;
|
|
59
66
|
};
|
|
60
67
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
68
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
61
69
|
}, import("./Archivist").ArchivistModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, assert: import("@xylabs/object").StringOrAlertFunction<ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
62
70
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
71
|
+
addToResolvers?: boolean | undefined;
|
|
63
72
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
64
73
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
65
74
|
requireAllParents?: boolean | undefined;
|
|
@@ -71,11 +80,13 @@ export declare const asArchivistModule: {
|
|
|
71
80
|
schema: string;
|
|
72
81
|
};
|
|
73
82
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
83
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
74
84
|
}, import("./Archivist").ArchivistModuleEventData>>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType_1;
|
|
75
85
|
};
|
|
76
86
|
export declare const asArchivistInstance: {
|
|
77
87
|
<TType extends ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
78
88
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
89
|
+
addToResolvers?: boolean | undefined;
|
|
79
90
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
80
91
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
81
92
|
requireAllParents?: boolean | undefined;
|
|
@@ -87,11 +98,13 @@ export declare const asArchivistInstance: {
|
|
|
87
98
|
schema: string;
|
|
88
99
|
};
|
|
89
100
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
101
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
90
102
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
91
103
|
schema: string;
|
|
92
104
|
} & import("@xyo-network/payload-model").PayloadFields>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
93
105
|
<TType_1 extends ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
94
106
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
107
|
+
addToResolvers?: boolean | undefined;
|
|
95
108
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
96
109
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
97
110
|
requireAllParents?: boolean | undefined;
|
|
@@ -103,10 +116,12 @@ export declare const asArchivistInstance: {
|
|
|
103
116
|
schema: string;
|
|
104
117
|
};
|
|
105
118
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
119
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
106
120
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
107
121
|
schema: string;
|
|
108
122
|
} & import("@xyo-network/payload-model").PayloadFields>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, assert: import("@xylabs/object").StringOrAlertFunction<ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
109
123
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
124
|
+
addToResolvers?: boolean | undefined;
|
|
110
125
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
111
126
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
112
127
|
requireAllParents?: boolean | undefined;
|
|
@@ -118,12 +133,14 @@ export declare const asArchivistInstance: {
|
|
|
118
133
|
schema: string;
|
|
119
134
|
};
|
|
120
135
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
136
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
121
137
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
122
138
|
schema: string;
|
|
123
139
|
} & import("@xyo-network/payload-model").PayloadFields>>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType_1;
|
|
124
140
|
};
|
|
125
141
|
export declare const withArchivistModule: <R>(module: any, closure: (module: ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
126
142
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
143
|
+
addToResolvers?: boolean | undefined;
|
|
127
144
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
128
145
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
129
146
|
requireAllParents?: boolean | undefined;
|
|
@@ -135,9 +152,11 @@ export declare const withArchivistModule: <R>(module: any, closure: (module: Arc
|
|
|
135
152
|
schema: string;
|
|
136
153
|
};
|
|
137
154
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
155
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
138
156
|
}, import("./Archivist").ArchivistModuleEventData>) => R) => R | undefined;
|
|
139
157
|
export declare const withArchivistInstance: <R>(module: any, closure: (module: ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
140
158
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
159
|
+
addToResolvers?: boolean | undefined;
|
|
141
160
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
142
161
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
143
162
|
requireAllParents?: boolean | undefined;
|
|
@@ -149,6 +168,7 @@ export declare const withArchivistInstance: <R>(module: any, closure: (module: A
|
|
|
149
168
|
schema: string;
|
|
150
169
|
};
|
|
151
170
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
171
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
152
172
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
153
173
|
schema: string;
|
|
154
174
|
} & import("@xyo-network/payload-model").PayloadFields>) => R) => R | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typeChecks.d.ts","sourceRoot":"","sources":["../../src/typeChecks.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAC7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAGvD,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"typeChecks.d.ts","sourceRoot":"","sources":["../../src/typeChecks.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAC7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAGvD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;wDAA6F,CAAA;AAC7H,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;mDAA2E,CAAA;AAEzG,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA4C,CAAA;AAC1E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA8C,CAAA;AAC9E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;0EAAwC,CAAA;AACxE,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;+EAA0C,CAAA"}
|
|
@@ -2,6 +2,7 @@ import { ArchivistModule } from './Archivist';
|
|
|
2
2
|
import { ArchivistInstance } from './ArchivistInstance';
|
|
3
3
|
export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
4
4
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
5
|
+
addToResolvers?: boolean | undefined;
|
|
5
6
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
6
7
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
7
8
|
requireAllParents?: boolean | undefined;
|
|
@@ -13,11 +14,13 @@ export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<Arc
|
|
|
13
14
|
schema: string;
|
|
14
15
|
};
|
|
15
16
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
17
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
16
18
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
17
19
|
schema: string;
|
|
18
20
|
} & import("@xyo-network/payload-model").PayloadFields>>;
|
|
19
21
|
export declare const isArchivistModule: import("@xyo-network/module-model").ModuleTypeCheck<ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
20
22
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
23
|
+
addToResolvers?: boolean | undefined;
|
|
21
24
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
22
25
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
23
26
|
requireAllParents?: boolean | undefined;
|
|
@@ -29,10 +32,12 @@ export declare const isArchivistModule: import("@xyo-network/module-model").Modu
|
|
|
29
32
|
schema: string;
|
|
30
33
|
};
|
|
31
34
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
35
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
32
36
|
}, import("./Archivist").ArchivistModuleEventData>>;
|
|
33
37
|
export declare const asArchivistModule: {
|
|
34
38
|
<TType extends ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
35
39
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
40
|
+
addToResolvers?: boolean | undefined;
|
|
36
41
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
37
42
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
38
43
|
requireAllParents?: boolean | undefined;
|
|
@@ -44,9 +49,11 @@ export declare const asArchivistModule: {
|
|
|
44
49
|
schema: string;
|
|
45
50
|
};
|
|
46
51
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
52
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
47
53
|
}, import("./Archivist").ArchivistModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
48
54
|
<TType_1 extends ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
49
55
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
56
|
+
addToResolvers?: boolean | undefined;
|
|
50
57
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
51
58
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
52
59
|
requireAllParents?: boolean | undefined;
|
|
@@ -58,8 +65,10 @@ export declare const asArchivistModule: {
|
|
|
58
65
|
schema: string;
|
|
59
66
|
};
|
|
60
67
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
68
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
61
69
|
}, import("./Archivist").ArchivistModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, assert: import("@xylabs/object").StringOrAlertFunction<ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
62
70
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
71
|
+
addToResolvers?: boolean | undefined;
|
|
63
72
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
64
73
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
65
74
|
requireAllParents?: boolean | undefined;
|
|
@@ -71,11 +80,13 @@ export declare const asArchivistModule: {
|
|
|
71
80
|
schema: string;
|
|
72
81
|
};
|
|
73
82
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
83
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
74
84
|
}, import("./Archivist").ArchivistModuleEventData>>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType_1;
|
|
75
85
|
};
|
|
76
86
|
export declare const asArchivistInstance: {
|
|
77
87
|
<TType extends ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
78
88
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
89
|
+
addToResolvers?: boolean | undefined;
|
|
79
90
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
80
91
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
81
92
|
requireAllParents?: boolean | undefined;
|
|
@@ -87,11 +98,13 @@ export declare const asArchivistInstance: {
|
|
|
87
98
|
schema: string;
|
|
88
99
|
};
|
|
89
100
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
101
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
90
102
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
91
103
|
schema: string;
|
|
92
104
|
} & import("@xyo-network/payload-model").PayloadFields>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
93
105
|
<TType_1 extends ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
94
106
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
107
|
+
addToResolvers?: boolean | undefined;
|
|
95
108
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
96
109
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
97
110
|
requireAllParents?: boolean | undefined;
|
|
@@ -103,10 +116,12 @@ export declare const asArchivistInstance: {
|
|
|
103
116
|
schema: string;
|
|
104
117
|
};
|
|
105
118
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
119
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
106
120
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
107
121
|
schema: string;
|
|
108
122
|
} & import("@xyo-network/payload-model").PayloadFields>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, assert: import("@xylabs/object").StringOrAlertFunction<ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
109
123
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
124
|
+
addToResolvers?: boolean | undefined;
|
|
110
125
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
111
126
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
112
127
|
requireAllParents?: boolean | undefined;
|
|
@@ -118,12 +133,14 @@ export declare const asArchivistInstance: {
|
|
|
118
133
|
schema: string;
|
|
119
134
|
};
|
|
120
135
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
136
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
121
137
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
122
138
|
schema: string;
|
|
123
139
|
} & import("@xyo-network/payload-model").PayloadFields>>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType_1;
|
|
124
140
|
};
|
|
125
141
|
export declare const withArchivistModule: <R>(module: any, closure: (module: ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
126
142
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
143
|
+
addToResolvers?: boolean | undefined;
|
|
127
144
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
128
145
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
129
146
|
requireAllParents?: boolean | undefined;
|
|
@@ -135,9 +152,11 @@ export declare const withArchivistModule: <R>(module: any, closure: (module: Arc
|
|
|
135
152
|
schema: string;
|
|
136
153
|
};
|
|
137
154
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
155
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
138
156
|
}, import("./Archivist").ArchivistModuleEventData>) => R) => R | undefined;
|
|
139
157
|
export declare const withArchivistInstance: <R>(module: any, closure: (module: ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
140
158
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
159
|
+
addToResolvers?: boolean | undefined;
|
|
141
160
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
142
161
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
143
162
|
requireAllParents?: boolean | undefined;
|
|
@@ -149,6 +168,7 @@ export declare const withArchivistInstance: <R>(module: any, closure: (module: A
|
|
|
149
168
|
schema: string;
|
|
150
169
|
};
|
|
151
170
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
171
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
152
172
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
153
173
|
schema: string;
|
|
154
174
|
} & import("@xyo-network/payload-model").PayloadFields>) => R) => R | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typeChecks.d.ts","sourceRoot":"","sources":["../../src/typeChecks.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAC7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAGvD,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"typeChecks.d.ts","sourceRoot":"","sources":["../../src/typeChecks.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAC7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAGvD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;wDAA6F,CAAA;AAC7H,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;mDAA2E,CAAA;AAEzG,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA4C,CAAA;AAC1E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA8C,CAAA;AAC9E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;0EAAwC,CAAA;AACxE,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;+EAA0C,CAAA"}
|
|
@@ -2,6 +2,7 @@ import { ArchivistModule } from './Archivist';
|
|
|
2
2
|
import { ArchivistInstance } from './ArchivistInstance';
|
|
3
3
|
export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
4
4
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
5
|
+
addToResolvers?: boolean | undefined;
|
|
5
6
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
6
7
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
7
8
|
requireAllParents?: boolean | undefined;
|
|
@@ -13,11 +14,13 @@ export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<Arc
|
|
|
13
14
|
schema: string;
|
|
14
15
|
};
|
|
15
16
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
17
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
16
18
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
17
19
|
schema: string;
|
|
18
20
|
} & import("@xyo-network/payload-model").PayloadFields>>;
|
|
19
21
|
export declare const isArchivistModule: import("@xyo-network/module-model").ModuleTypeCheck<ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
20
22
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
23
|
+
addToResolvers?: boolean | undefined;
|
|
21
24
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
22
25
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
23
26
|
requireAllParents?: boolean | undefined;
|
|
@@ -29,10 +32,12 @@ export declare const isArchivistModule: import("@xyo-network/module-model").Modu
|
|
|
29
32
|
schema: string;
|
|
30
33
|
};
|
|
31
34
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
35
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
32
36
|
}, import("./Archivist").ArchivistModuleEventData>>;
|
|
33
37
|
export declare const asArchivistModule: {
|
|
34
38
|
<TType extends ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
35
39
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
40
|
+
addToResolvers?: boolean | undefined;
|
|
36
41
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
37
42
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
38
43
|
requireAllParents?: boolean | undefined;
|
|
@@ -44,9 +49,11 @@ export declare const asArchivistModule: {
|
|
|
44
49
|
schema: string;
|
|
45
50
|
};
|
|
46
51
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
52
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
47
53
|
}, import("./Archivist").ArchivistModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
48
54
|
<TType_1 extends ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
49
55
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
56
|
+
addToResolvers?: boolean | undefined;
|
|
50
57
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
51
58
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
52
59
|
requireAllParents?: boolean | undefined;
|
|
@@ -58,8 +65,10 @@ export declare const asArchivistModule: {
|
|
|
58
65
|
schema: string;
|
|
59
66
|
};
|
|
60
67
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
68
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
61
69
|
}, import("./Archivist").ArchivistModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, assert: import("@xylabs/object").StringOrAlertFunction<ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
62
70
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
71
|
+
addToResolvers?: boolean | undefined;
|
|
63
72
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
64
73
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
65
74
|
requireAllParents?: boolean | undefined;
|
|
@@ -71,11 +80,13 @@ export declare const asArchivistModule: {
|
|
|
71
80
|
schema: string;
|
|
72
81
|
};
|
|
73
82
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
83
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
74
84
|
}, import("./Archivist").ArchivistModuleEventData>>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType_1;
|
|
75
85
|
};
|
|
76
86
|
export declare const asArchivistInstance: {
|
|
77
87
|
<TType extends ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
78
88
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
89
|
+
addToResolvers?: boolean | undefined;
|
|
79
90
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
80
91
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
81
92
|
requireAllParents?: boolean | undefined;
|
|
@@ -87,11 +98,13 @@ export declare const asArchivistInstance: {
|
|
|
87
98
|
schema: string;
|
|
88
99
|
};
|
|
89
100
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
101
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
90
102
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
91
103
|
schema: string;
|
|
92
104
|
} & import("@xyo-network/payload-model").PayloadFields>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
93
105
|
<TType_1 extends ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
94
106
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
107
|
+
addToResolvers?: boolean | undefined;
|
|
95
108
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
96
109
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
97
110
|
requireAllParents?: boolean | undefined;
|
|
@@ -103,10 +116,12 @@ export declare const asArchivistInstance: {
|
|
|
103
116
|
schema: string;
|
|
104
117
|
};
|
|
105
118
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
119
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
106
120
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
107
121
|
schema: string;
|
|
108
122
|
} & import("@xyo-network/payload-model").PayloadFields>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, assert: import("@xylabs/object").StringOrAlertFunction<ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
109
123
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
124
|
+
addToResolvers?: boolean | undefined;
|
|
110
125
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
111
126
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
112
127
|
requireAllParents?: boolean | undefined;
|
|
@@ -118,12 +133,14 @@ export declare const asArchivistInstance: {
|
|
|
118
133
|
schema: string;
|
|
119
134
|
};
|
|
120
135
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
136
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
121
137
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
122
138
|
schema: string;
|
|
123
139
|
} & import("@xyo-network/payload-model").PayloadFields>>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType_1;
|
|
124
140
|
};
|
|
125
141
|
export declare const withArchivistModule: <R>(module: any, closure: (module: ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
126
142
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
143
|
+
addToResolvers?: boolean | undefined;
|
|
127
144
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
128
145
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
129
146
|
requireAllParents?: boolean | undefined;
|
|
@@ -135,9 +152,11 @@ export declare const withArchivistModule: <R>(module: any, closure: (module: Arc
|
|
|
135
152
|
schema: string;
|
|
136
153
|
};
|
|
137
154
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
155
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
138
156
|
}, import("./Archivist").ArchivistModuleEventData>) => R) => R | undefined;
|
|
139
157
|
export declare const withArchivistInstance: <R>(module: any, closure: (module: ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
140
158
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
159
|
+
addToResolvers?: boolean | undefined;
|
|
141
160
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
142
161
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
143
162
|
requireAllParents?: boolean | undefined;
|
|
@@ -149,6 +168,7 @@ export declare const withArchivistInstance: <R>(module: any, closure: (module: A
|
|
|
149
168
|
schema: string;
|
|
150
169
|
};
|
|
151
170
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
171
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
152
172
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
153
173
|
schema: string;
|
|
154
174
|
} & import("@xyo-network/payload-model").PayloadFields>) => R) => R | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typeChecks.d.ts","sourceRoot":"","sources":["../../src/typeChecks.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAC7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAGvD,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"typeChecks.d.ts","sourceRoot":"","sources":["../../src/typeChecks.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAC7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAGvD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;wDAA6F,CAAA;AAC7H,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;mDAA2E,CAAA;AAEzG,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA4C,CAAA;AAC1E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA8C,CAAA;AAC9E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;0EAAwC,CAAA;AACxE,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;+EAA0C,CAAA"}
|
|
@@ -2,6 +2,7 @@ import { ArchivistModule } from './Archivist';
|
|
|
2
2
|
import { ArchivistInstance } from './ArchivistInstance';
|
|
3
3
|
export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
4
4
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
5
|
+
addToResolvers?: boolean | undefined;
|
|
5
6
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
6
7
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
7
8
|
requireAllParents?: boolean | undefined;
|
|
@@ -13,11 +14,13 @@ export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<Arc
|
|
|
13
14
|
schema: string;
|
|
14
15
|
};
|
|
15
16
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
17
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
16
18
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
17
19
|
schema: string;
|
|
18
20
|
} & import("@xyo-network/payload-model").PayloadFields>>;
|
|
19
21
|
export declare const isArchivistModule: import("@xyo-network/module-model").ModuleTypeCheck<ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
20
22
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
23
|
+
addToResolvers?: boolean | undefined;
|
|
21
24
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
22
25
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
23
26
|
requireAllParents?: boolean | undefined;
|
|
@@ -29,10 +32,12 @@ export declare const isArchivistModule: import("@xyo-network/module-model").Modu
|
|
|
29
32
|
schema: string;
|
|
30
33
|
};
|
|
31
34
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
35
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
32
36
|
}, import("./Archivist").ArchivistModuleEventData>>;
|
|
33
37
|
export declare const asArchivistModule: {
|
|
34
38
|
<TType extends ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
35
39
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
40
|
+
addToResolvers?: boolean | undefined;
|
|
36
41
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
37
42
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
38
43
|
requireAllParents?: boolean | undefined;
|
|
@@ -44,9 +49,11 @@ export declare const asArchivistModule: {
|
|
|
44
49
|
schema: string;
|
|
45
50
|
};
|
|
46
51
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
52
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
47
53
|
}, import("./Archivist").ArchivistModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
48
54
|
<TType_1 extends ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
49
55
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
56
|
+
addToResolvers?: boolean | undefined;
|
|
50
57
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
51
58
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
52
59
|
requireAllParents?: boolean | undefined;
|
|
@@ -58,8 +65,10 @@ export declare const asArchivistModule: {
|
|
|
58
65
|
schema: string;
|
|
59
66
|
};
|
|
60
67
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
68
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
61
69
|
}, import("./Archivist").ArchivistModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, assert: import("@xylabs/object").StringOrAlertFunction<ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
62
70
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
71
|
+
addToResolvers?: boolean | undefined;
|
|
63
72
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
64
73
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
65
74
|
requireAllParents?: boolean | undefined;
|
|
@@ -71,11 +80,13 @@ export declare const asArchivistModule: {
|
|
|
71
80
|
schema: string;
|
|
72
81
|
};
|
|
73
82
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
83
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
74
84
|
}, import("./Archivist").ArchivistModuleEventData>>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType_1;
|
|
75
85
|
};
|
|
76
86
|
export declare const asArchivistInstance: {
|
|
77
87
|
<TType extends ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
78
88
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
89
|
+
addToResolvers?: boolean | undefined;
|
|
79
90
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
80
91
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
81
92
|
requireAllParents?: boolean | undefined;
|
|
@@ -87,11 +98,13 @@ export declare const asArchivistInstance: {
|
|
|
87
98
|
schema: string;
|
|
88
99
|
};
|
|
89
100
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
101
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
90
102
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
91
103
|
schema: string;
|
|
92
104
|
} & import("@xyo-network/payload-model").PayloadFields>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
93
105
|
<TType_1 extends ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
94
106
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
107
|
+
addToResolvers?: boolean | undefined;
|
|
95
108
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
96
109
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
97
110
|
requireAllParents?: boolean | undefined;
|
|
@@ -103,10 +116,12 @@ export declare const asArchivistInstance: {
|
|
|
103
116
|
schema: string;
|
|
104
117
|
};
|
|
105
118
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
119
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
106
120
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
107
121
|
schema: string;
|
|
108
122
|
} & import("@xyo-network/payload-model").PayloadFields>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, assert: import("@xylabs/object").StringOrAlertFunction<ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
109
123
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
124
|
+
addToResolvers?: boolean | undefined;
|
|
110
125
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
111
126
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
112
127
|
requireAllParents?: boolean | undefined;
|
|
@@ -118,12 +133,14 @@ export declare const asArchivistInstance: {
|
|
|
118
133
|
schema: string;
|
|
119
134
|
};
|
|
120
135
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
136
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
121
137
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
122
138
|
schema: string;
|
|
123
139
|
} & import("@xyo-network/payload-model").PayloadFields>>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType_1;
|
|
124
140
|
};
|
|
125
141
|
export declare const withArchivistModule: <R>(module: any, closure: (module: ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
126
142
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
143
|
+
addToResolvers?: boolean | undefined;
|
|
127
144
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
128
145
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
129
146
|
requireAllParents?: boolean | undefined;
|
|
@@ -135,9 +152,11 @@ export declare const withArchivistModule: <R>(module: any, closure: (module: Arc
|
|
|
135
152
|
schema: string;
|
|
136
153
|
};
|
|
137
154
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
155
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
138
156
|
}, import("./Archivist").ArchivistModuleEventData>) => R) => R | undefined;
|
|
139
157
|
export declare const withArchivistInstance: <R>(module: any, closure: (module: ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
140
158
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
159
|
+
addToResolvers?: boolean | undefined;
|
|
141
160
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
142
161
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
143
162
|
requireAllParents?: boolean | undefined;
|
|
@@ -149,6 +168,7 @@ export declare const withArchivistInstance: <R>(module: any, closure: (module: A
|
|
|
149
168
|
schema: string;
|
|
150
169
|
};
|
|
151
170
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
171
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
152
172
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
153
173
|
schema: string;
|
|
154
174
|
} & import("@xyo-network/payload-model").PayloadFields>) => R) => R | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typeChecks.d.ts","sourceRoot":"","sources":["../../src/typeChecks.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAC7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAGvD,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"typeChecks.d.ts","sourceRoot":"","sources":["../../src/typeChecks.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAC7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAGvD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;wDAA6F,CAAA;AAC7H,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;mDAA2E,CAAA;AAEzG,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA4C,CAAA;AAC1E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA8C,CAAA;AAC9E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;0EAAwC,CAAA;AACxE,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;+EAA0C,CAAA"}
|
|
@@ -2,6 +2,7 @@ import { ArchivistModule } from './Archivist';
|
|
|
2
2
|
import { ArchivistInstance } from './ArchivistInstance';
|
|
3
3
|
export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
4
4
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
5
|
+
addToResolvers?: boolean | undefined;
|
|
5
6
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
6
7
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
7
8
|
requireAllParents?: boolean | undefined;
|
|
@@ -13,11 +14,13 @@ export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<Arc
|
|
|
13
14
|
schema: string;
|
|
14
15
|
};
|
|
15
16
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
17
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
16
18
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
17
19
|
schema: string;
|
|
18
20
|
} & import("@xyo-network/payload-model").PayloadFields>>;
|
|
19
21
|
export declare const isArchivistModule: import("@xyo-network/module-model").ModuleTypeCheck<ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
20
22
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
23
|
+
addToResolvers?: boolean | undefined;
|
|
21
24
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
22
25
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
23
26
|
requireAllParents?: boolean | undefined;
|
|
@@ -29,10 +32,12 @@ export declare const isArchivistModule: import("@xyo-network/module-model").Modu
|
|
|
29
32
|
schema: string;
|
|
30
33
|
};
|
|
31
34
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
35
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
32
36
|
}, import("./Archivist").ArchivistModuleEventData>>;
|
|
33
37
|
export declare const asArchivistModule: {
|
|
34
38
|
<TType extends ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
35
39
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
40
|
+
addToResolvers?: boolean | undefined;
|
|
36
41
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
37
42
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
38
43
|
requireAllParents?: boolean | undefined;
|
|
@@ -44,9 +49,11 @@ export declare const asArchivistModule: {
|
|
|
44
49
|
schema: string;
|
|
45
50
|
};
|
|
46
51
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
52
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
47
53
|
}, import("./Archivist").ArchivistModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
48
54
|
<TType_1 extends ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
49
55
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
56
|
+
addToResolvers?: boolean | undefined;
|
|
50
57
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
51
58
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
52
59
|
requireAllParents?: boolean | undefined;
|
|
@@ -58,8 +65,10 @@ export declare const asArchivistModule: {
|
|
|
58
65
|
schema: string;
|
|
59
66
|
};
|
|
60
67
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
68
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
61
69
|
}, import("./Archivist").ArchivistModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, assert: import("@xylabs/object").StringOrAlertFunction<ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
62
70
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
71
|
+
addToResolvers?: boolean | undefined;
|
|
63
72
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
64
73
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
65
74
|
requireAllParents?: boolean | undefined;
|
|
@@ -71,11 +80,13 @@ export declare const asArchivistModule: {
|
|
|
71
80
|
schema: string;
|
|
72
81
|
};
|
|
73
82
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
83
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
74
84
|
}, import("./Archivist").ArchivistModuleEventData>>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType_1;
|
|
75
85
|
};
|
|
76
86
|
export declare const asArchivistInstance: {
|
|
77
87
|
<TType extends ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
78
88
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
89
|
+
addToResolvers?: boolean | undefined;
|
|
79
90
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
80
91
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
81
92
|
requireAllParents?: boolean | undefined;
|
|
@@ -87,11 +98,13 @@ export declare const asArchivistInstance: {
|
|
|
87
98
|
schema: string;
|
|
88
99
|
};
|
|
89
100
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
101
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
90
102
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
91
103
|
schema: string;
|
|
92
104
|
} & import("@xyo-network/payload-model").PayloadFields>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
93
105
|
<TType_1 extends ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
94
106
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
107
|
+
addToResolvers?: boolean | undefined;
|
|
95
108
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
96
109
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
97
110
|
requireAllParents?: boolean | undefined;
|
|
@@ -103,10 +116,12 @@ export declare const asArchivistInstance: {
|
|
|
103
116
|
schema: string;
|
|
104
117
|
};
|
|
105
118
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
119
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
106
120
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
107
121
|
schema: string;
|
|
108
122
|
} & import("@xyo-network/payload-model").PayloadFields>>(value: import("@xylabs/promise").AnyNonPromise<T_1>, assert: import("@xylabs/object").StringOrAlertFunction<ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
109
123
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
124
|
+
addToResolvers?: boolean | undefined;
|
|
110
125
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
111
126
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
112
127
|
requireAllParents?: boolean | undefined;
|
|
@@ -118,12 +133,14 @@ export declare const asArchivistInstance: {
|
|
|
118
133
|
schema: string;
|
|
119
134
|
};
|
|
120
135
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
136
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
121
137
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
122
138
|
schema: string;
|
|
123
139
|
} & import("@xyo-network/payload-model").PayloadFields>>, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType_1;
|
|
124
140
|
};
|
|
125
141
|
export declare const withArchivistModule: <R>(module: any, closure: (module: ArchivistModule<import("@xylabs/object").BaseParamsFields & {
|
|
126
142
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
143
|
+
addToResolvers?: boolean | undefined;
|
|
127
144
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
128
145
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
129
146
|
requireAllParents?: boolean | undefined;
|
|
@@ -135,9 +152,11 @@ export declare const withArchivistModule: <R>(module: any, closure: (module: Arc
|
|
|
135
152
|
schema: string;
|
|
136
153
|
};
|
|
137
154
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
155
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
138
156
|
}, import("./Archivist").ArchivistModuleEventData>) => R) => R | undefined;
|
|
139
157
|
export declare const withArchivistInstance: <R>(module: any, closure: (module: ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
140
158
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
159
|
+
addToResolvers?: boolean | undefined;
|
|
141
160
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
142
161
|
parents?: import("./Config").ArchivistParents | undefined;
|
|
143
162
|
requireAllParents?: boolean | undefined;
|
|
@@ -149,6 +168,7 @@ export declare const withArchivistInstance: <R>(module: any, closure: (module: A
|
|
|
149
168
|
schema: string;
|
|
150
169
|
};
|
|
151
170
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
171
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
152
172
|
}, import("./Archivist").ArchivistModuleEventData, {
|
|
153
173
|
schema: string;
|
|
154
174
|
} & import("@xyo-network/payload-model").PayloadFields>) => R) => R | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typeChecks.d.ts","sourceRoot":"","sources":["../../src/typeChecks.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAC7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAGvD,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"typeChecks.d.ts","sourceRoot":"","sources":["../../src/typeChecks.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAC7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAGvD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;wDAA6F,CAAA;AAC7H,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;mDAA2E,CAAA;AAEzG,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA4C,CAAA;AAC1E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA8C,CAAA;AAC9E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;0EAAwC,CAAA;AACxE,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;+EAA0C,CAAA"}
|
package/package.json
CHANGED
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
"@xylabs/hex": "^3.0.24",
|
|
14
14
|
"@xylabs/object": "^3.0.24",
|
|
15
15
|
"@xylabs/promise": "^3.0.24",
|
|
16
|
-
"@xyo-network/module-events": "~2.93.
|
|
17
|
-
"@xyo-network/module-model": "~2.93.
|
|
18
|
-
"@xyo-network/payload-model": "~2.93.
|
|
16
|
+
"@xyo-network/module-events": "~2.93.5",
|
|
17
|
+
"@xyo-network/module-model": "~2.93.5",
|
|
18
|
+
"@xyo-network/payload-model": "~2.93.5"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@xylabs/ts-scripts-yarn3": "^3.5.2",
|
|
@@ -61,6 +61,6 @@
|
|
|
61
61
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
|
|
62
62
|
},
|
|
63
63
|
"sideEffects": false,
|
|
64
|
-
"version": "2.93.
|
|
64
|
+
"version": "2.93.5",
|
|
65
65
|
"type": "module"
|
|
66
66
|
}
|