@xyo-network/react-standard-node 2.70.4 → 2.70.6
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/lib/Builders/MemoryNodeBuilder.d.cts +10 -138
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts +10 -138
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts +10 -138
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.cts +14 -206
- package/dist/browser/lib/Builders/SentinelBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.mts +14 -206
- package/dist/browser/lib/Builders/SentinelBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.ts +14 -206
- package/dist/browser/lib/Builders/SentinelBuilder.d.ts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.cts +12 -140
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts +12 -140
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts +12 -140
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts +10 -138
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts +10 -138
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts +10 -138
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.cts +14 -206
- package/dist/node/lib/Builders/SentinelBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.mts +14 -206
- package/dist/node/lib/Builders/SentinelBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.ts +14 -206
- package/dist/node/lib/Builders/SentinelBuilder.d.ts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.cts +12 -140
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts +12 -140
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts +12 -140
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
- package/package.json +21 -21
|
@@ -12,43 +12,11 @@ export declare class MemoryNodeBuilder {
|
|
|
12
12
|
private _node;
|
|
13
13
|
get node(): MemoryNode<import("@xylabs/object").BaseParamsFields & {
|
|
14
14
|
account?: AccountInstance | "random" | undefined;
|
|
15
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
16
|
-
readonly archivist?: string | undefined;
|
|
17
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
18
|
-
readonly name?: string | undefined;
|
|
19
|
-
readonly paging?: Record<string, {
|
|
20
|
-
size?: number | undefined;
|
|
21
|
-
}> | undefined;
|
|
22
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
23
|
-
schema: "network.xyo.node.config";
|
|
24
|
-
readonly security?: {
|
|
25
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
26
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
27
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
28
|
-
} | undefined;
|
|
29
|
-
readonly sign?: boolean | undefined;
|
|
30
|
-
readonly storeQueries?: boolean | undefined;
|
|
31
|
-
readonly timestamp?: boolean | undefined;
|
|
32
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
33
|
-
readonly archivist?: string | undefined;
|
|
34
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
35
|
-
readonly name?: string | undefined;
|
|
36
|
-
readonly paging?: Record<string, {
|
|
37
|
-
size?: number | undefined;
|
|
38
|
-
}> | undefined;
|
|
39
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
40
|
-
schema: "network.xyo.node.config";
|
|
41
|
-
readonly security?: {
|
|
42
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
43
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
44
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
45
|
-
} | undefined;
|
|
46
|
-
readonly sign?: boolean | undefined;
|
|
47
|
-
readonly storeQueries?: boolean | undefined;
|
|
48
|
-
readonly timestamp?: boolean | undefined;
|
|
49
|
-
} & {
|
|
15
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
50
16
|
archivist?: string | undefined;
|
|
51
17
|
schema: "network.xyo.node.config";
|
|
18
|
+
}, "schema"> & {
|
|
19
|
+
schema: "network.xyo.node.config";
|
|
52
20
|
}, "schema"> & {
|
|
53
21
|
schema: string;
|
|
54
22
|
};
|
|
@@ -62,132 +30,36 @@ export declare class MemoryNodeBuilder {
|
|
|
62
30
|
addBridge(apiDomain: string, moduleName?: string, account?: AccountInstance): Promise<void>;
|
|
63
31
|
addSentinel(config: SentinelConfig, account: AccountInstance): Promise<import("@xyo-network/sentinel").MemorySentinel<import("@xylabs/object").BaseParamsFields & {
|
|
64
32
|
account?: AccountInstance | "random" | undefined;
|
|
65
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
66
|
-
readonly archivist?: string | undefined;
|
|
67
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
68
|
-
readonly name?: string | undefined;
|
|
69
|
-
readonly paging?: Record<string, {
|
|
70
|
-
size?: number | undefined;
|
|
71
|
-
}> | undefined;
|
|
72
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
73
|
-
schema: "network.xyo.sentinel.config";
|
|
74
|
-
readonly security?: {
|
|
75
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
76
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
77
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
78
|
-
} | undefined;
|
|
79
|
-
readonly sign?: boolean | undefined;
|
|
80
|
-
readonly storeQueries?: boolean | undefined;
|
|
81
|
-
readonly timestamp?: boolean | undefined;
|
|
82
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
83
|
-
readonly archivist?: string | undefined;
|
|
84
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
85
|
-
readonly name?: string | undefined;
|
|
86
|
-
readonly paging?: Record<string, {
|
|
87
|
-
size?: number | undefined;
|
|
88
|
-
}> | undefined;
|
|
89
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
90
|
-
schema: "network.xyo.sentinel.config";
|
|
91
|
-
readonly security?: {
|
|
92
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
93
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
94
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
95
|
-
} | undefined;
|
|
96
|
-
readonly sign?: boolean | undefined;
|
|
97
|
-
readonly storeQueries?: boolean | undefined;
|
|
98
|
-
readonly timestamp?: boolean | undefined;
|
|
99
|
-
} & {
|
|
33
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
100
34
|
automations?: import("@xyo-network/sentinel").SentinelAutomationPayload[] | undefined;
|
|
101
35
|
schema: "network.xyo.sentinel.config";
|
|
102
36
|
synchronous?: boolean | undefined;
|
|
103
37
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
104
38
|
throwErrors?: boolean | undefined;
|
|
39
|
+
}, "schema"> & {
|
|
40
|
+
schema: "network.xyo.sentinel.config";
|
|
105
41
|
}, "schema"> & {
|
|
106
42
|
schema: string;
|
|
107
43
|
};
|
|
108
44
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
109
45
|
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
110
46
|
account?: AccountInstance | "random" | undefined;
|
|
111
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
112
|
-
readonly archivist?: string | undefined;
|
|
113
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
114
|
-
readonly name?: string | undefined;
|
|
115
|
-
readonly paging?: Record<string, {
|
|
116
|
-
size?: number | undefined;
|
|
117
|
-
}> | undefined;
|
|
118
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
119
|
-
schema: "network.xyo.sentinel.config";
|
|
120
|
-
readonly security?: {
|
|
121
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
122
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
123
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
124
|
-
} | undefined;
|
|
125
|
-
readonly sign?: boolean | undefined;
|
|
126
|
-
readonly storeQueries?: boolean | undefined;
|
|
127
|
-
readonly timestamp?: boolean | undefined;
|
|
128
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
129
|
-
readonly archivist?: string | undefined;
|
|
130
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
131
|
-
readonly name?: string | undefined;
|
|
132
|
-
readonly paging?: Record<string, {
|
|
133
|
-
size?: number | undefined;
|
|
134
|
-
}> | undefined;
|
|
135
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
136
|
-
schema: "network.xyo.sentinel.config";
|
|
137
|
-
readonly security?: {
|
|
138
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
139
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
140
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
141
|
-
} | undefined;
|
|
142
|
-
readonly sign?: boolean | undefined;
|
|
143
|
-
readonly storeQueries?: boolean | undefined;
|
|
144
|
-
readonly timestamp?: boolean | undefined;
|
|
145
|
-
} & {
|
|
47
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
146
48
|
automations?: import("@xyo-network/sentinel").SentinelAutomationPayload[] | undefined;
|
|
147
49
|
schema: "network.xyo.sentinel.config";
|
|
148
50
|
synchronous?: boolean | undefined;
|
|
149
51
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
150
52
|
throwErrors?: boolean | undefined;
|
|
53
|
+
}, "schema"> & {
|
|
54
|
+
schema: "network.xyo.sentinel.config";
|
|
151
55
|
}, "schema"> & {
|
|
152
56
|
schema: string;
|
|
153
57
|
};
|
|
154
58
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
155
59
|
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
156
60
|
account?: AccountInstance | "random" | undefined;
|
|
157
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
158
|
-
readonly archivist?: string | undefined;
|
|
159
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
160
|
-
readonly name?: string | undefined;
|
|
161
|
-
readonly paging?: Record<string, {
|
|
162
|
-
size?: number | undefined;
|
|
163
|
-
}> | undefined;
|
|
164
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
165
|
-
schema: "network.xyo.module.config";
|
|
166
|
-
readonly security?: {
|
|
167
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
168
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
169
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
170
|
-
} | undefined;
|
|
171
|
-
readonly sign?: boolean | undefined;
|
|
172
|
-
readonly storeQueries?: boolean | undefined;
|
|
173
|
-
readonly timestamp?: boolean | undefined;
|
|
174
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
175
|
-
readonly archivist?: string | undefined;
|
|
176
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
177
|
-
readonly name?: string | undefined;
|
|
178
|
-
readonly paging?: Record<string, {
|
|
179
|
-
size?: number | undefined;
|
|
180
|
-
}> | undefined;
|
|
181
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
61
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
182
62
|
schema: "network.xyo.module.config";
|
|
183
|
-
readonly security?: {
|
|
184
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
185
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
186
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
187
|
-
} | undefined;
|
|
188
|
-
readonly sign?: boolean | undefined;
|
|
189
|
-
readonly storeQueries?: boolean | undefined;
|
|
190
|
-
readonly timestamp?: boolean | undefined;
|
|
191
63
|
}, "schema"> & {
|
|
192
64
|
schema: string;
|
|
193
65
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAG5D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAiB,MAAM,4BAA4B,CAAA;AAK3E,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI
|
|
1
|
+
{"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAG5D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAiB,MAAM,4BAA4B,CAAA;AAK3E,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI;;;;;;;;;;;8DAEP;WAEY,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,uBAAuB,EAAE,OAAO,CAAC,EAAE,eAAe,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAQnH,4GAA4G;IACtG,YAAY,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAI9E,kBAAkB,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,eAAe;IAOjE,mBAAmB,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAOrF,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,SAAqB,EAAE,OAAO,CAAC,EAAE,eAAe;IAYvF,WAAW,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAM5D,YAAY,CAAC,iBAAiB,EAAE,wBAAwB,EAAE,SAAS,GAAE,CAAC,MAAM,OAAO,CAAC,eAAe,CAAC,CAAC,EAAO;IAkB5G,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,QAAQ,CAAC,EAAE,OAAO,EAAE,UAAU,CAAC,EAAE,OAAO;YAgB/D,cAAc;CAM7B"}
|
|
@@ -12,43 +12,11 @@ export declare class MemoryNodeBuilder {
|
|
|
12
12
|
private _node;
|
|
13
13
|
get node(): MemoryNode<import("@xylabs/object").BaseParamsFields & {
|
|
14
14
|
account?: AccountInstance | "random" | undefined;
|
|
15
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
16
|
-
readonly archivist?: string | undefined;
|
|
17
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
18
|
-
readonly name?: string | undefined;
|
|
19
|
-
readonly paging?: Record<string, {
|
|
20
|
-
size?: number | undefined;
|
|
21
|
-
}> | undefined;
|
|
22
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
23
|
-
schema: "network.xyo.node.config";
|
|
24
|
-
readonly security?: {
|
|
25
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
26
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
27
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
28
|
-
} | undefined;
|
|
29
|
-
readonly sign?: boolean | undefined;
|
|
30
|
-
readonly storeQueries?: boolean | undefined;
|
|
31
|
-
readonly timestamp?: boolean | undefined;
|
|
32
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
33
|
-
readonly archivist?: string | undefined;
|
|
34
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
35
|
-
readonly name?: string | undefined;
|
|
36
|
-
readonly paging?: Record<string, {
|
|
37
|
-
size?: number | undefined;
|
|
38
|
-
}> | undefined;
|
|
39
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
40
|
-
schema: "network.xyo.node.config";
|
|
41
|
-
readonly security?: {
|
|
42
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
43
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
44
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
45
|
-
} | undefined;
|
|
46
|
-
readonly sign?: boolean | undefined;
|
|
47
|
-
readonly storeQueries?: boolean | undefined;
|
|
48
|
-
readonly timestamp?: boolean | undefined;
|
|
49
|
-
} & {
|
|
15
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
50
16
|
archivist?: string | undefined;
|
|
51
17
|
schema: "network.xyo.node.config";
|
|
18
|
+
}, "schema"> & {
|
|
19
|
+
schema: "network.xyo.node.config";
|
|
52
20
|
}, "schema"> & {
|
|
53
21
|
schema: string;
|
|
54
22
|
};
|
|
@@ -62,132 +30,36 @@ export declare class MemoryNodeBuilder {
|
|
|
62
30
|
addBridge(apiDomain: string, moduleName?: string, account?: AccountInstance): Promise<void>;
|
|
63
31
|
addSentinel(config: SentinelConfig, account: AccountInstance): Promise<import("@xyo-network/sentinel").MemorySentinel<import("@xylabs/object").BaseParamsFields & {
|
|
64
32
|
account?: AccountInstance | "random" | undefined;
|
|
65
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
66
|
-
readonly archivist?: string | undefined;
|
|
67
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
68
|
-
readonly name?: string | undefined;
|
|
69
|
-
readonly paging?: Record<string, {
|
|
70
|
-
size?: number | undefined;
|
|
71
|
-
}> | undefined;
|
|
72
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
73
|
-
schema: "network.xyo.sentinel.config";
|
|
74
|
-
readonly security?: {
|
|
75
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
76
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
77
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
78
|
-
} | undefined;
|
|
79
|
-
readonly sign?: boolean | undefined;
|
|
80
|
-
readonly storeQueries?: boolean | undefined;
|
|
81
|
-
readonly timestamp?: boolean | undefined;
|
|
82
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
83
|
-
readonly archivist?: string | undefined;
|
|
84
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
85
|
-
readonly name?: string | undefined;
|
|
86
|
-
readonly paging?: Record<string, {
|
|
87
|
-
size?: number | undefined;
|
|
88
|
-
}> | undefined;
|
|
89
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
90
|
-
schema: "network.xyo.sentinel.config";
|
|
91
|
-
readonly security?: {
|
|
92
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
93
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
94
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
95
|
-
} | undefined;
|
|
96
|
-
readonly sign?: boolean | undefined;
|
|
97
|
-
readonly storeQueries?: boolean | undefined;
|
|
98
|
-
readonly timestamp?: boolean | undefined;
|
|
99
|
-
} & {
|
|
33
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
100
34
|
automations?: import("@xyo-network/sentinel").SentinelAutomationPayload[] | undefined;
|
|
101
35
|
schema: "network.xyo.sentinel.config";
|
|
102
36
|
synchronous?: boolean | undefined;
|
|
103
37
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
104
38
|
throwErrors?: boolean | undefined;
|
|
39
|
+
}, "schema"> & {
|
|
40
|
+
schema: "network.xyo.sentinel.config";
|
|
105
41
|
}, "schema"> & {
|
|
106
42
|
schema: string;
|
|
107
43
|
};
|
|
108
44
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
109
45
|
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
110
46
|
account?: AccountInstance | "random" | undefined;
|
|
111
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
112
|
-
readonly archivist?: string | undefined;
|
|
113
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
114
|
-
readonly name?: string | undefined;
|
|
115
|
-
readonly paging?: Record<string, {
|
|
116
|
-
size?: number | undefined;
|
|
117
|
-
}> | undefined;
|
|
118
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
119
|
-
schema: "network.xyo.sentinel.config";
|
|
120
|
-
readonly security?: {
|
|
121
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
122
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
123
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
124
|
-
} | undefined;
|
|
125
|
-
readonly sign?: boolean | undefined;
|
|
126
|
-
readonly storeQueries?: boolean | undefined;
|
|
127
|
-
readonly timestamp?: boolean | undefined;
|
|
128
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
129
|
-
readonly archivist?: string | undefined;
|
|
130
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
131
|
-
readonly name?: string | undefined;
|
|
132
|
-
readonly paging?: Record<string, {
|
|
133
|
-
size?: number | undefined;
|
|
134
|
-
}> | undefined;
|
|
135
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
136
|
-
schema: "network.xyo.sentinel.config";
|
|
137
|
-
readonly security?: {
|
|
138
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
139
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
140
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
141
|
-
} | undefined;
|
|
142
|
-
readonly sign?: boolean | undefined;
|
|
143
|
-
readonly storeQueries?: boolean | undefined;
|
|
144
|
-
readonly timestamp?: boolean | undefined;
|
|
145
|
-
} & {
|
|
47
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
146
48
|
automations?: import("@xyo-network/sentinel").SentinelAutomationPayload[] | undefined;
|
|
147
49
|
schema: "network.xyo.sentinel.config";
|
|
148
50
|
synchronous?: boolean | undefined;
|
|
149
51
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
150
52
|
throwErrors?: boolean | undefined;
|
|
53
|
+
}, "schema"> & {
|
|
54
|
+
schema: "network.xyo.sentinel.config";
|
|
151
55
|
}, "schema"> & {
|
|
152
56
|
schema: string;
|
|
153
57
|
};
|
|
154
58
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
155
59
|
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
156
60
|
account?: AccountInstance | "random" | undefined;
|
|
157
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
158
|
-
readonly archivist?: string | undefined;
|
|
159
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
160
|
-
readonly name?: string | undefined;
|
|
161
|
-
readonly paging?: Record<string, {
|
|
162
|
-
size?: number | undefined;
|
|
163
|
-
}> | undefined;
|
|
164
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
165
|
-
schema: "network.xyo.module.config";
|
|
166
|
-
readonly security?: {
|
|
167
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
168
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
169
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
170
|
-
} | undefined;
|
|
171
|
-
readonly sign?: boolean | undefined;
|
|
172
|
-
readonly storeQueries?: boolean | undefined;
|
|
173
|
-
readonly timestamp?: boolean | undefined;
|
|
174
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
175
|
-
readonly archivist?: string | undefined;
|
|
176
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
177
|
-
readonly name?: string | undefined;
|
|
178
|
-
readonly paging?: Record<string, {
|
|
179
|
-
size?: number | undefined;
|
|
180
|
-
}> | undefined;
|
|
181
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
61
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
182
62
|
schema: "network.xyo.module.config";
|
|
183
|
-
readonly security?: {
|
|
184
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
185
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
186
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
187
|
-
} | undefined;
|
|
188
|
-
readonly sign?: boolean | undefined;
|
|
189
|
-
readonly storeQueries?: boolean | undefined;
|
|
190
|
-
readonly timestamp?: boolean | undefined;
|
|
191
63
|
}, "schema"> & {
|
|
192
64
|
schema: string;
|
|
193
65
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAG5D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAiB,MAAM,4BAA4B,CAAA;AAK3E,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI
|
|
1
|
+
{"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAG5D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAiB,MAAM,4BAA4B,CAAA;AAK3E,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI;;;;;;;;;;;8DAEP;WAEY,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,uBAAuB,EAAE,OAAO,CAAC,EAAE,eAAe,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAQnH,4GAA4G;IACtG,YAAY,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAI9E,kBAAkB,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,eAAe;IAOjE,mBAAmB,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAOrF,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,SAAqB,EAAE,OAAO,CAAC,EAAE,eAAe;IAYvF,WAAW,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAM5D,YAAY,CAAC,iBAAiB,EAAE,wBAAwB,EAAE,SAAS,GAAE,CAAC,MAAM,OAAO,CAAC,eAAe,CAAC,CAAC,EAAO;IAkB5G,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,QAAQ,CAAC,EAAE,OAAO,EAAE,UAAU,CAAC,EAAE,OAAO;YAgB/D,cAAc;CAM7B"}
|
|
@@ -12,43 +12,11 @@ export declare class MemoryNodeBuilder {
|
|
|
12
12
|
private _node;
|
|
13
13
|
get node(): MemoryNode<import("@xylabs/object").BaseParamsFields & {
|
|
14
14
|
account?: AccountInstance | "random" | undefined;
|
|
15
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
16
|
-
readonly archivist?: string | undefined;
|
|
17
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
18
|
-
readonly name?: string | undefined;
|
|
19
|
-
readonly paging?: Record<string, {
|
|
20
|
-
size?: number | undefined;
|
|
21
|
-
}> | undefined;
|
|
22
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
23
|
-
schema: "network.xyo.node.config";
|
|
24
|
-
readonly security?: {
|
|
25
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
26
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
27
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
28
|
-
} | undefined;
|
|
29
|
-
readonly sign?: boolean | undefined;
|
|
30
|
-
readonly storeQueries?: boolean | undefined;
|
|
31
|
-
readonly timestamp?: boolean | undefined;
|
|
32
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
33
|
-
readonly archivist?: string | undefined;
|
|
34
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
35
|
-
readonly name?: string | undefined;
|
|
36
|
-
readonly paging?: Record<string, {
|
|
37
|
-
size?: number | undefined;
|
|
38
|
-
}> | undefined;
|
|
39
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
40
|
-
schema: "network.xyo.node.config";
|
|
41
|
-
readonly security?: {
|
|
42
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
43
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
44
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
45
|
-
} | undefined;
|
|
46
|
-
readonly sign?: boolean | undefined;
|
|
47
|
-
readonly storeQueries?: boolean | undefined;
|
|
48
|
-
readonly timestamp?: boolean | undefined;
|
|
49
|
-
} & {
|
|
15
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
50
16
|
archivist?: string | undefined;
|
|
51
17
|
schema: "network.xyo.node.config";
|
|
18
|
+
}, "schema"> & {
|
|
19
|
+
schema: "network.xyo.node.config";
|
|
52
20
|
}, "schema"> & {
|
|
53
21
|
schema: string;
|
|
54
22
|
};
|
|
@@ -62,132 +30,36 @@ export declare class MemoryNodeBuilder {
|
|
|
62
30
|
addBridge(apiDomain: string, moduleName?: string, account?: AccountInstance): Promise<void>;
|
|
63
31
|
addSentinel(config: SentinelConfig, account: AccountInstance): Promise<import("@xyo-network/sentinel").MemorySentinel<import("@xylabs/object").BaseParamsFields & {
|
|
64
32
|
account?: AccountInstance | "random" | undefined;
|
|
65
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
66
|
-
readonly archivist?: string | undefined;
|
|
67
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
68
|
-
readonly name?: string | undefined;
|
|
69
|
-
readonly paging?: Record<string, {
|
|
70
|
-
size?: number | undefined;
|
|
71
|
-
}> | undefined;
|
|
72
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
73
|
-
schema: "network.xyo.sentinel.config";
|
|
74
|
-
readonly security?: {
|
|
75
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
76
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
77
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
78
|
-
} | undefined;
|
|
79
|
-
readonly sign?: boolean | undefined;
|
|
80
|
-
readonly storeQueries?: boolean | undefined;
|
|
81
|
-
readonly timestamp?: boolean | undefined;
|
|
82
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
83
|
-
readonly archivist?: string | undefined;
|
|
84
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
85
|
-
readonly name?: string | undefined;
|
|
86
|
-
readonly paging?: Record<string, {
|
|
87
|
-
size?: number | undefined;
|
|
88
|
-
}> | undefined;
|
|
89
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
90
|
-
schema: "network.xyo.sentinel.config";
|
|
91
|
-
readonly security?: {
|
|
92
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
93
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
94
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
95
|
-
} | undefined;
|
|
96
|
-
readonly sign?: boolean | undefined;
|
|
97
|
-
readonly storeQueries?: boolean | undefined;
|
|
98
|
-
readonly timestamp?: boolean | undefined;
|
|
99
|
-
} & {
|
|
33
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
100
34
|
automations?: import("@xyo-network/sentinel").SentinelAutomationPayload[] | undefined;
|
|
101
35
|
schema: "network.xyo.sentinel.config";
|
|
102
36
|
synchronous?: boolean | undefined;
|
|
103
37
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
104
38
|
throwErrors?: boolean | undefined;
|
|
39
|
+
}, "schema"> & {
|
|
40
|
+
schema: "network.xyo.sentinel.config";
|
|
105
41
|
}, "schema"> & {
|
|
106
42
|
schema: string;
|
|
107
43
|
};
|
|
108
44
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
109
45
|
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
110
46
|
account?: AccountInstance | "random" | undefined;
|
|
111
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
112
|
-
readonly archivist?: string | undefined;
|
|
113
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
114
|
-
readonly name?: string | undefined;
|
|
115
|
-
readonly paging?: Record<string, {
|
|
116
|
-
size?: number | undefined;
|
|
117
|
-
}> | undefined;
|
|
118
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
119
|
-
schema: "network.xyo.sentinel.config";
|
|
120
|
-
readonly security?: {
|
|
121
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
122
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
123
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
124
|
-
} | undefined;
|
|
125
|
-
readonly sign?: boolean | undefined;
|
|
126
|
-
readonly storeQueries?: boolean | undefined;
|
|
127
|
-
readonly timestamp?: boolean | undefined;
|
|
128
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
129
|
-
readonly archivist?: string | undefined;
|
|
130
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
131
|
-
readonly name?: string | undefined;
|
|
132
|
-
readonly paging?: Record<string, {
|
|
133
|
-
size?: number | undefined;
|
|
134
|
-
}> | undefined;
|
|
135
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
136
|
-
schema: "network.xyo.sentinel.config";
|
|
137
|
-
readonly security?: {
|
|
138
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
139
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
140
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
141
|
-
} | undefined;
|
|
142
|
-
readonly sign?: boolean | undefined;
|
|
143
|
-
readonly storeQueries?: boolean | undefined;
|
|
144
|
-
readonly timestamp?: boolean | undefined;
|
|
145
|
-
} & {
|
|
47
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
146
48
|
automations?: import("@xyo-network/sentinel").SentinelAutomationPayload[] | undefined;
|
|
147
49
|
schema: "network.xyo.sentinel.config";
|
|
148
50
|
synchronous?: boolean | undefined;
|
|
149
51
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
150
52
|
throwErrors?: boolean | undefined;
|
|
53
|
+
}, "schema"> & {
|
|
54
|
+
schema: "network.xyo.sentinel.config";
|
|
151
55
|
}, "schema"> & {
|
|
152
56
|
schema: string;
|
|
153
57
|
};
|
|
154
58
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
155
59
|
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
156
60
|
account?: AccountInstance | "random" | undefined;
|
|
157
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
158
|
-
readonly archivist?: string | undefined;
|
|
159
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
160
|
-
readonly name?: string | undefined;
|
|
161
|
-
readonly paging?: Record<string, {
|
|
162
|
-
size?: number | undefined;
|
|
163
|
-
}> | undefined;
|
|
164
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
165
|
-
schema: "network.xyo.module.config";
|
|
166
|
-
readonly security?: {
|
|
167
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
168
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
169
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
170
|
-
} | undefined;
|
|
171
|
-
readonly sign?: boolean | undefined;
|
|
172
|
-
readonly storeQueries?: boolean | undefined;
|
|
173
|
-
readonly timestamp?: boolean | undefined;
|
|
174
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
175
|
-
readonly archivist?: string | undefined;
|
|
176
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
177
|
-
readonly name?: string | undefined;
|
|
178
|
-
readonly paging?: Record<string, {
|
|
179
|
-
size?: number | undefined;
|
|
180
|
-
}> | undefined;
|
|
181
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
61
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
182
62
|
schema: "network.xyo.module.config";
|
|
183
|
-
readonly security?: {
|
|
184
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
185
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
186
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
187
|
-
} | undefined;
|
|
188
|
-
readonly sign?: boolean | undefined;
|
|
189
|
-
readonly storeQueries?: boolean | undefined;
|
|
190
|
-
readonly timestamp?: boolean | undefined;
|
|
191
63
|
}, "schema"> & {
|
|
192
64
|
schema: string;
|
|
193
65
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAG5D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAiB,MAAM,4BAA4B,CAAA;AAK3E,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI
|
|
1
|
+
{"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAG5D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAiB,MAAM,4BAA4B,CAAA;AAK3E,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI;;;;;;;;;;;8DAEP;WAEY,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,uBAAuB,EAAE,OAAO,CAAC,EAAE,eAAe,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAQnH,4GAA4G;IACtG,YAAY,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAI9E,kBAAkB,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,eAAe;IAOjE,mBAAmB,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAOrF,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,SAAqB,EAAE,OAAO,CAAC,EAAE,eAAe;IAYvF,WAAW,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAM5D,YAAY,CAAC,iBAAiB,EAAE,wBAAwB,EAAE,SAAS,GAAE,CAAC,MAAM,OAAO,CAAC,eAAe,CAAC,CAAC,EAAO;IAkB5G,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,QAAQ,CAAC,EAAE,OAAO,EAAE,UAAU,CAAC,EAAE,OAAO;YAgB/D,cAAc;CAM7B"}
|