@xyo-network/sentinel-model 2.92.2 → 2.92.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/Automation.d.cts +1 -1
- package/dist/browser/Automation.d.mts +1 -1
- package/dist/browser/Automation.d.ts +1 -1
- package/dist/browser/typeChecks.d.cts +16 -16
- package/dist/browser/typeChecks.d.mts +16 -16
- package/dist/browser/typeChecks.d.ts +16 -16
- package/dist/node/Automation.d.cts +1 -1
- package/dist/node/Automation.d.mts +1 -1
- package/dist/node/Automation.d.ts +1 -1
- package/dist/node/typeChecks.d.cts +16 -16
- package/dist/node/typeChecks.d.mts +16 -16
- package/dist/node/typeChecks.d.ts +16 -16
- package/package.json +11 -11
|
@@ -24,7 +24,7 @@ export type SentinelIntervalAutomationPayload = SentinelBaseAutomationPayload<{
|
|
|
24
24
|
/** The type of automation */
|
|
25
25
|
type: 'interval';
|
|
26
26
|
}>;
|
|
27
|
-
export declare const isSentinelIntervalAutomation: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields &
|
|
27
|
+
export declare const isSentinelIntervalAutomation: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
28
28
|
type?: "interval" | "event" | undefined;
|
|
29
29
|
} & {
|
|
30
30
|
/** Epoch after which any reoccurrence stops */
|
|
@@ -24,7 +24,7 @@ export type SentinelIntervalAutomationPayload = SentinelBaseAutomationPayload<{
|
|
|
24
24
|
/** The type of automation */
|
|
25
25
|
type: 'interval';
|
|
26
26
|
}>;
|
|
27
|
-
export declare const isSentinelIntervalAutomation: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields &
|
|
27
|
+
export declare const isSentinelIntervalAutomation: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
28
28
|
type?: "interval" | "event" | undefined;
|
|
29
29
|
} & {
|
|
30
30
|
/** Epoch after which any reoccurrence stops */
|
|
@@ -24,7 +24,7 @@ export type SentinelIntervalAutomationPayload = SentinelBaseAutomationPayload<{
|
|
|
24
24
|
/** The type of automation */
|
|
25
25
|
type: 'interval';
|
|
26
26
|
}>;
|
|
27
|
-
export declare const isSentinelIntervalAutomation: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields &
|
|
27
|
+
export declare const isSentinelIntervalAutomation: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
28
28
|
type?: "interval" | "event" | undefined;
|
|
29
29
|
} & {
|
|
30
30
|
/** Epoch after which any reoccurrence stops */
|
|
@@ -2,7 +2,7 @@ import { SentinelInstance } from './Instance';
|
|
|
2
2
|
import { SentinelModule } from './Module';
|
|
3
3
|
export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
4
4
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
5
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
5
|
+
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
6
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
7
7
|
schema: "network.xyo.sentinel.config";
|
|
8
8
|
synchronous?: boolean | undefined;
|
|
@@ -16,7 +16,7 @@ export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<Sent
|
|
|
16
16
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
17
17
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
18
18
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
19
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
19
|
+
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 & {
|
|
20
20
|
schema: "network.xyo.module.config";
|
|
21
21
|
}, "schema"> & {
|
|
22
22
|
schema: string;
|
|
@@ -25,7 +25,7 @@ export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<Sent
|
|
|
25
25
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>;
|
|
26
26
|
export declare const isSentinelModule: import("@xyo-network/module-model").ModuleTypeCheck<SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
27
27
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
28
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
28
|
+
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 & {
|
|
29
29
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
30
30
|
schema: "network.xyo.sentinel.config";
|
|
31
31
|
synchronous?: boolean | undefined;
|
|
@@ -39,7 +39,7 @@ export declare const isSentinelModule: import("@xyo-network/module-model").Modul
|
|
|
39
39
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
40
40
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
41
41
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
42
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
42
|
+
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 & {
|
|
43
43
|
schema: "network.xyo.module.config";
|
|
44
44
|
}, "schema"> & {
|
|
45
45
|
schema: string;
|
|
@@ -49,7 +49,7 @@ export declare const isSentinelModule: import("@xyo-network/module-model").Modul
|
|
|
49
49
|
export declare const asSentinelModule: {
|
|
50
50
|
<TType extends SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
51
51
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
52
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
52
|
+
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 & {
|
|
53
53
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
54
54
|
schema: "network.xyo.sentinel.config";
|
|
55
55
|
synchronous?: boolean | undefined;
|
|
@@ -63,7 +63,7 @@ export declare const asSentinelModule: {
|
|
|
63
63
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
64
64
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
65
65
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
66
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
66
|
+
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 & {
|
|
67
67
|
schema: "network.xyo.module.config";
|
|
68
68
|
}, "schema"> & {
|
|
69
69
|
schema: string;
|
|
@@ -72,7 +72,7 @@ export declare const asSentinelModule: {
|
|
|
72
72
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: unknown, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
73
73
|
<TType_1 extends SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
74
74
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
75
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
75
|
+
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 & {
|
|
76
76
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
77
77
|
schema: "network.xyo.sentinel.config";
|
|
78
78
|
synchronous?: boolean | undefined;
|
|
@@ -86,7 +86,7 @@ export declare const asSentinelModule: {
|
|
|
86
86
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
87
87
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
88
88
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
89
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
89
|
+
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 & {
|
|
90
90
|
schema: "network.xyo.module.config";
|
|
91
91
|
}, "schema"> & {
|
|
92
92
|
schema: string;
|
|
@@ -97,7 +97,7 @@ export declare const asSentinelModule: {
|
|
|
97
97
|
export declare const asSentinelInstance: {
|
|
98
98
|
<TType extends SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
99
99
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
100
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
100
|
+
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 & {
|
|
101
101
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
102
102
|
schema: "network.xyo.sentinel.config";
|
|
103
103
|
synchronous?: boolean | undefined;
|
|
@@ -111,7 +111,7 @@ export declare const asSentinelInstance: {
|
|
|
111
111
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
112
112
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
113
113
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
114
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
114
|
+
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 & {
|
|
115
115
|
schema: "network.xyo.module.config";
|
|
116
116
|
}, "schema"> & {
|
|
117
117
|
schema: string;
|
|
@@ -120,7 +120,7 @@ export declare const asSentinelInstance: {
|
|
|
120
120
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: unknown, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
121
121
|
<TType_1 extends SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
122
122
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
123
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
123
|
+
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 & {
|
|
124
124
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
125
125
|
schema: "network.xyo.sentinel.config";
|
|
126
126
|
synchronous?: boolean | undefined;
|
|
@@ -134,7 +134,7 @@ export declare const asSentinelInstance: {
|
|
|
134
134
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
135
135
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
136
136
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
137
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
137
|
+
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 & {
|
|
138
138
|
schema: "network.xyo.module.config";
|
|
139
139
|
}, "schema"> & {
|
|
140
140
|
schema: string;
|
|
@@ -144,7 +144,7 @@ export declare const asSentinelInstance: {
|
|
|
144
144
|
};
|
|
145
145
|
export declare const withSentinelModule: <R>(module: any, closure: (module: SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
146
146
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
147
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
147
|
+
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 & {
|
|
148
148
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
149
149
|
schema: "network.xyo.sentinel.config";
|
|
150
150
|
synchronous?: boolean | undefined;
|
|
@@ -158,7 +158,7 @@ export declare const withSentinelModule: <R>(module: any, closure: (module: Sent
|
|
|
158
158
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
159
159
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
160
160
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
161
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
161
|
+
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 & {
|
|
162
162
|
schema: "network.xyo.module.config";
|
|
163
163
|
}, "schema"> & {
|
|
164
164
|
schema: string;
|
|
@@ -167,7 +167,7 @@ export declare const withSentinelModule: <R>(module: any, closure: (module: Sent
|
|
|
167
167
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>) => R) => R | undefined;
|
|
168
168
|
export declare const withSentinelInstance: <R>(module: any, closure: (module: SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
169
169
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
170
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
170
|
+
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 & {
|
|
171
171
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
172
172
|
schema: "network.xyo.sentinel.config";
|
|
173
173
|
synchronous?: boolean | undefined;
|
|
@@ -181,7 +181,7 @@ export declare const withSentinelInstance: <R>(module: any, closure: (module: Se
|
|
|
181
181
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
182
182
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
183
183
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
184
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
184
|
+
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 & {
|
|
185
185
|
schema: "network.xyo.module.config";
|
|
186
186
|
}, "schema"> & {
|
|
187
187
|
schema: string;
|
|
@@ -2,7 +2,7 @@ import { SentinelInstance } from './Instance';
|
|
|
2
2
|
import { SentinelModule } from './Module';
|
|
3
3
|
export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
4
4
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
5
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
5
|
+
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
6
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
7
7
|
schema: "network.xyo.sentinel.config";
|
|
8
8
|
synchronous?: boolean | undefined;
|
|
@@ -16,7 +16,7 @@ export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<Sent
|
|
|
16
16
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
17
17
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
18
18
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
19
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
19
|
+
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 & {
|
|
20
20
|
schema: "network.xyo.module.config";
|
|
21
21
|
}, "schema"> & {
|
|
22
22
|
schema: string;
|
|
@@ -25,7 +25,7 @@ export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<Sent
|
|
|
25
25
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>;
|
|
26
26
|
export declare const isSentinelModule: import("@xyo-network/module-model").ModuleTypeCheck<SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
27
27
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
28
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
28
|
+
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 & {
|
|
29
29
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
30
30
|
schema: "network.xyo.sentinel.config";
|
|
31
31
|
synchronous?: boolean | undefined;
|
|
@@ -39,7 +39,7 @@ export declare const isSentinelModule: import("@xyo-network/module-model").Modul
|
|
|
39
39
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
40
40
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
41
41
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
42
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
42
|
+
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 & {
|
|
43
43
|
schema: "network.xyo.module.config";
|
|
44
44
|
}, "schema"> & {
|
|
45
45
|
schema: string;
|
|
@@ -49,7 +49,7 @@ export declare const isSentinelModule: import("@xyo-network/module-model").Modul
|
|
|
49
49
|
export declare const asSentinelModule: {
|
|
50
50
|
<TType extends SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
51
51
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
52
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
52
|
+
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 & {
|
|
53
53
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
54
54
|
schema: "network.xyo.sentinel.config";
|
|
55
55
|
synchronous?: boolean | undefined;
|
|
@@ -63,7 +63,7 @@ export declare const asSentinelModule: {
|
|
|
63
63
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
64
64
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
65
65
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
66
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
66
|
+
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 & {
|
|
67
67
|
schema: "network.xyo.module.config";
|
|
68
68
|
}, "schema"> & {
|
|
69
69
|
schema: string;
|
|
@@ -72,7 +72,7 @@ export declare const asSentinelModule: {
|
|
|
72
72
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: unknown, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
73
73
|
<TType_1 extends SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
74
74
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
75
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
75
|
+
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 & {
|
|
76
76
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
77
77
|
schema: "network.xyo.sentinel.config";
|
|
78
78
|
synchronous?: boolean | undefined;
|
|
@@ -86,7 +86,7 @@ export declare const asSentinelModule: {
|
|
|
86
86
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
87
87
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
88
88
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
89
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
89
|
+
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 & {
|
|
90
90
|
schema: "network.xyo.module.config";
|
|
91
91
|
}, "schema"> & {
|
|
92
92
|
schema: string;
|
|
@@ -97,7 +97,7 @@ export declare const asSentinelModule: {
|
|
|
97
97
|
export declare const asSentinelInstance: {
|
|
98
98
|
<TType extends SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
99
99
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
100
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
100
|
+
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 & {
|
|
101
101
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
102
102
|
schema: "network.xyo.sentinel.config";
|
|
103
103
|
synchronous?: boolean | undefined;
|
|
@@ -111,7 +111,7 @@ export declare const asSentinelInstance: {
|
|
|
111
111
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
112
112
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
113
113
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
114
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
114
|
+
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 & {
|
|
115
115
|
schema: "network.xyo.module.config";
|
|
116
116
|
}, "schema"> & {
|
|
117
117
|
schema: string;
|
|
@@ -120,7 +120,7 @@ export declare const asSentinelInstance: {
|
|
|
120
120
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: unknown, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
121
121
|
<TType_1 extends SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
122
122
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
123
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
123
|
+
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 & {
|
|
124
124
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
125
125
|
schema: "network.xyo.sentinel.config";
|
|
126
126
|
synchronous?: boolean | undefined;
|
|
@@ -134,7 +134,7 @@ export declare const asSentinelInstance: {
|
|
|
134
134
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
135
135
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
136
136
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
137
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
137
|
+
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 & {
|
|
138
138
|
schema: "network.xyo.module.config";
|
|
139
139
|
}, "schema"> & {
|
|
140
140
|
schema: string;
|
|
@@ -144,7 +144,7 @@ export declare const asSentinelInstance: {
|
|
|
144
144
|
};
|
|
145
145
|
export declare const withSentinelModule: <R>(module: any, closure: (module: SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
146
146
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
147
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
147
|
+
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 & {
|
|
148
148
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
149
149
|
schema: "network.xyo.sentinel.config";
|
|
150
150
|
synchronous?: boolean | undefined;
|
|
@@ -158,7 +158,7 @@ export declare const withSentinelModule: <R>(module: any, closure: (module: Sent
|
|
|
158
158
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
159
159
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
160
160
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
161
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
161
|
+
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 & {
|
|
162
162
|
schema: "network.xyo.module.config";
|
|
163
163
|
}, "schema"> & {
|
|
164
164
|
schema: string;
|
|
@@ -167,7 +167,7 @@ export declare const withSentinelModule: <R>(module: any, closure: (module: Sent
|
|
|
167
167
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>) => R) => R | undefined;
|
|
168
168
|
export declare const withSentinelInstance: <R>(module: any, closure: (module: SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
169
169
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
170
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
170
|
+
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 & {
|
|
171
171
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
172
172
|
schema: "network.xyo.sentinel.config";
|
|
173
173
|
synchronous?: boolean | undefined;
|
|
@@ -181,7 +181,7 @@ export declare const withSentinelInstance: <R>(module: any, closure: (module: Se
|
|
|
181
181
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
182
182
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
183
183
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
184
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
184
|
+
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 & {
|
|
185
185
|
schema: "network.xyo.module.config";
|
|
186
186
|
}, "schema"> & {
|
|
187
187
|
schema: string;
|
|
@@ -2,7 +2,7 @@ import { SentinelInstance } from './Instance';
|
|
|
2
2
|
import { SentinelModule } from './Module';
|
|
3
3
|
export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
4
4
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
5
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
5
|
+
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
6
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
7
7
|
schema: "network.xyo.sentinel.config";
|
|
8
8
|
synchronous?: boolean | undefined;
|
|
@@ -16,7 +16,7 @@ export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<Sent
|
|
|
16
16
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
17
17
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
18
18
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
19
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
19
|
+
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 & {
|
|
20
20
|
schema: "network.xyo.module.config";
|
|
21
21
|
}, "schema"> & {
|
|
22
22
|
schema: string;
|
|
@@ -25,7 +25,7 @@ export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<Sent
|
|
|
25
25
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>;
|
|
26
26
|
export declare const isSentinelModule: import("@xyo-network/module-model").ModuleTypeCheck<SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
27
27
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
28
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
28
|
+
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 & {
|
|
29
29
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
30
30
|
schema: "network.xyo.sentinel.config";
|
|
31
31
|
synchronous?: boolean | undefined;
|
|
@@ -39,7 +39,7 @@ export declare const isSentinelModule: import("@xyo-network/module-model").Modul
|
|
|
39
39
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
40
40
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
41
41
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
42
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
42
|
+
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 & {
|
|
43
43
|
schema: "network.xyo.module.config";
|
|
44
44
|
}, "schema"> & {
|
|
45
45
|
schema: string;
|
|
@@ -49,7 +49,7 @@ export declare const isSentinelModule: import("@xyo-network/module-model").Modul
|
|
|
49
49
|
export declare const asSentinelModule: {
|
|
50
50
|
<TType extends SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
51
51
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
52
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
52
|
+
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 & {
|
|
53
53
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
54
54
|
schema: "network.xyo.sentinel.config";
|
|
55
55
|
synchronous?: boolean | undefined;
|
|
@@ -63,7 +63,7 @@ export declare const asSentinelModule: {
|
|
|
63
63
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
64
64
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
65
65
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
66
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
66
|
+
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 & {
|
|
67
67
|
schema: "network.xyo.module.config";
|
|
68
68
|
}, "schema"> & {
|
|
69
69
|
schema: string;
|
|
@@ -72,7 +72,7 @@ export declare const asSentinelModule: {
|
|
|
72
72
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: unknown, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
73
73
|
<TType_1 extends SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
74
74
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
75
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
75
|
+
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 & {
|
|
76
76
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
77
77
|
schema: "network.xyo.sentinel.config";
|
|
78
78
|
synchronous?: boolean | undefined;
|
|
@@ -86,7 +86,7 @@ export declare const asSentinelModule: {
|
|
|
86
86
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
87
87
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
88
88
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
89
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
89
|
+
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 & {
|
|
90
90
|
schema: "network.xyo.module.config";
|
|
91
91
|
}, "schema"> & {
|
|
92
92
|
schema: string;
|
|
@@ -97,7 +97,7 @@ export declare const asSentinelModule: {
|
|
|
97
97
|
export declare const asSentinelInstance: {
|
|
98
98
|
<TType extends SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
99
99
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
100
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
100
|
+
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 & {
|
|
101
101
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
102
102
|
schema: "network.xyo.sentinel.config";
|
|
103
103
|
synchronous?: boolean | undefined;
|
|
@@ -111,7 +111,7 @@ export declare const asSentinelInstance: {
|
|
|
111
111
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
112
112
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
113
113
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
114
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
114
|
+
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 & {
|
|
115
115
|
schema: "network.xyo.module.config";
|
|
116
116
|
}, "schema"> & {
|
|
117
117
|
schema: string;
|
|
@@ -120,7 +120,7 @@ export declare const asSentinelInstance: {
|
|
|
120
120
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: unknown, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
121
121
|
<TType_1 extends SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
122
122
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
123
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
123
|
+
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 & {
|
|
124
124
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
125
125
|
schema: "network.xyo.sentinel.config";
|
|
126
126
|
synchronous?: boolean | undefined;
|
|
@@ -134,7 +134,7 @@ export declare const asSentinelInstance: {
|
|
|
134
134
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
135
135
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
136
136
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
137
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
137
|
+
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 & {
|
|
138
138
|
schema: "network.xyo.module.config";
|
|
139
139
|
}, "schema"> & {
|
|
140
140
|
schema: string;
|
|
@@ -144,7 +144,7 @@ export declare const asSentinelInstance: {
|
|
|
144
144
|
};
|
|
145
145
|
export declare const withSentinelModule: <R>(module: any, closure: (module: SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
146
146
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
147
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
147
|
+
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 & {
|
|
148
148
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
149
149
|
schema: "network.xyo.sentinel.config";
|
|
150
150
|
synchronous?: boolean | undefined;
|
|
@@ -158,7 +158,7 @@ export declare const withSentinelModule: <R>(module: any, closure: (module: Sent
|
|
|
158
158
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
159
159
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
160
160
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
161
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
161
|
+
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 & {
|
|
162
162
|
schema: "network.xyo.module.config";
|
|
163
163
|
}, "schema"> & {
|
|
164
164
|
schema: string;
|
|
@@ -167,7 +167,7 @@ export declare const withSentinelModule: <R>(module: any, closure: (module: Sent
|
|
|
167
167
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>) => R) => R | undefined;
|
|
168
168
|
export declare const withSentinelInstance: <R>(module: any, closure: (module: SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
169
169
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
170
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
170
|
+
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 & {
|
|
171
171
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
172
172
|
schema: "network.xyo.sentinel.config";
|
|
173
173
|
synchronous?: boolean | undefined;
|
|
@@ -181,7 +181,7 @@ export declare const withSentinelInstance: <R>(module: any, closure: (module: Se
|
|
|
181
181
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
182
182
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
183
183
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
184
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
184
|
+
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 & {
|
|
185
185
|
schema: "network.xyo.module.config";
|
|
186
186
|
}, "schema"> & {
|
|
187
187
|
schema: string;
|
|
@@ -24,7 +24,7 @@ export type SentinelIntervalAutomationPayload = SentinelBaseAutomationPayload<{
|
|
|
24
24
|
/** The type of automation */
|
|
25
25
|
type: 'interval';
|
|
26
26
|
}>;
|
|
27
|
-
export declare const isSentinelIntervalAutomation: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields &
|
|
27
|
+
export declare const isSentinelIntervalAutomation: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
28
28
|
type?: "interval" | "event" | undefined;
|
|
29
29
|
} & {
|
|
30
30
|
/** Epoch after which any reoccurrence stops */
|
|
@@ -24,7 +24,7 @@ export type SentinelIntervalAutomationPayload = SentinelBaseAutomationPayload<{
|
|
|
24
24
|
/** The type of automation */
|
|
25
25
|
type: 'interval';
|
|
26
26
|
}>;
|
|
27
|
-
export declare const isSentinelIntervalAutomation: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields &
|
|
27
|
+
export declare const isSentinelIntervalAutomation: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
28
28
|
type?: "interval" | "event" | undefined;
|
|
29
29
|
} & {
|
|
30
30
|
/** Epoch after which any reoccurrence stops */
|
|
@@ -24,7 +24,7 @@ export type SentinelIntervalAutomationPayload = SentinelBaseAutomationPayload<{
|
|
|
24
24
|
/** The type of automation */
|
|
25
25
|
type: 'interval';
|
|
26
26
|
}>;
|
|
27
|
-
export declare const isSentinelIntervalAutomation: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields &
|
|
27
|
+
export declare const isSentinelIntervalAutomation: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
28
28
|
type?: "interval" | "event" | undefined;
|
|
29
29
|
} & {
|
|
30
30
|
/** Epoch after which any reoccurrence stops */
|
|
@@ -2,7 +2,7 @@ import { SentinelInstance } from './Instance';
|
|
|
2
2
|
import { SentinelModule } from './Module';
|
|
3
3
|
export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
4
4
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
5
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
5
|
+
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
6
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
7
7
|
schema: "network.xyo.sentinel.config";
|
|
8
8
|
synchronous?: boolean | undefined;
|
|
@@ -16,7 +16,7 @@ export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<Sent
|
|
|
16
16
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
17
17
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
18
18
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
19
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
19
|
+
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 & {
|
|
20
20
|
schema: "network.xyo.module.config";
|
|
21
21
|
}, "schema"> & {
|
|
22
22
|
schema: string;
|
|
@@ -25,7 +25,7 @@ export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<Sent
|
|
|
25
25
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>;
|
|
26
26
|
export declare const isSentinelModule: import("@xyo-network/module-model").ModuleTypeCheck<SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
27
27
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
28
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
28
|
+
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 & {
|
|
29
29
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
30
30
|
schema: "network.xyo.sentinel.config";
|
|
31
31
|
synchronous?: boolean | undefined;
|
|
@@ -39,7 +39,7 @@ export declare const isSentinelModule: import("@xyo-network/module-model").Modul
|
|
|
39
39
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
40
40
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
41
41
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
42
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
42
|
+
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 & {
|
|
43
43
|
schema: "network.xyo.module.config";
|
|
44
44
|
}, "schema"> & {
|
|
45
45
|
schema: string;
|
|
@@ -49,7 +49,7 @@ export declare const isSentinelModule: import("@xyo-network/module-model").Modul
|
|
|
49
49
|
export declare const asSentinelModule: {
|
|
50
50
|
<TType extends SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
51
51
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
52
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
52
|
+
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 & {
|
|
53
53
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
54
54
|
schema: "network.xyo.sentinel.config";
|
|
55
55
|
synchronous?: boolean | undefined;
|
|
@@ -63,7 +63,7 @@ export declare const asSentinelModule: {
|
|
|
63
63
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
64
64
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
65
65
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
66
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
66
|
+
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 & {
|
|
67
67
|
schema: "network.xyo.module.config";
|
|
68
68
|
}, "schema"> & {
|
|
69
69
|
schema: string;
|
|
@@ -72,7 +72,7 @@ export declare const asSentinelModule: {
|
|
|
72
72
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: unknown, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
73
73
|
<TType_1 extends SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
74
74
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
75
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
75
|
+
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 & {
|
|
76
76
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
77
77
|
schema: "network.xyo.sentinel.config";
|
|
78
78
|
synchronous?: boolean | undefined;
|
|
@@ -86,7 +86,7 @@ export declare const asSentinelModule: {
|
|
|
86
86
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
87
87
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
88
88
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
89
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
89
|
+
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 & {
|
|
90
90
|
schema: "network.xyo.module.config";
|
|
91
91
|
}, "schema"> & {
|
|
92
92
|
schema: string;
|
|
@@ -97,7 +97,7 @@ export declare const asSentinelModule: {
|
|
|
97
97
|
export declare const asSentinelInstance: {
|
|
98
98
|
<TType extends SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
99
99
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
100
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
100
|
+
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 & {
|
|
101
101
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
102
102
|
schema: "network.xyo.sentinel.config";
|
|
103
103
|
synchronous?: boolean | undefined;
|
|
@@ -111,7 +111,7 @@ export declare const asSentinelInstance: {
|
|
|
111
111
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
112
112
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
113
113
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
114
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
114
|
+
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 & {
|
|
115
115
|
schema: "network.xyo.module.config";
|
|
116
116
|
}, "schema"> & {
|
|
117
117
|
schema: string;
|
|
@@ -120,7 +120,7 @@ export declare const asSentinelInstance: {
|
|
|
120
120
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: unknown, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
121
121
|
<TType_1 extends SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
122
122
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
123
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
123
|
+
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 & {
|
|
124
124
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
125
125
|
schema: "network.xyo.sentinel.config";
|
|
126
126
|
synchronous?: boolean | undefined;
|
|
@@ -134,7 +134,7 @@ export declare const asSentinelInstance: {
|
|
|
134
134
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
135
135
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
136
136
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
137
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
137
|
+
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 & {
|
|
138
138
|
schema: "network.xyo.module.config";
|
|
139
139
|
}, "schema"> & {
|
|
140
140
|
schema: string;
|
|
@@ -144,7 +144,7 @@ export declare const asSentinelInstance: {
|
|
|
144
144
|
};
|
|
145
145
|
export declare const withSentinelModule: <R>(module: any, closure: (module: SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
146
146
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
147
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
147
|
+
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 & {
|
|
148
148
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
149
149
|
schema: "network.xyo.sentinel.config";
|
|
150
150
|
synchronous?: boolean | undefined;
|
|
@@ -158,7 +158,7 @@ export declare const withSentinelModule: <R>(module: any, closure: (module: Sent
|
|
|
158
158
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
159
159
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
160
160
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
161
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
161
|
+
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 & {
|
|
162
162
|
schema: "network.xyo.module.config";
|
|
163
163
|
}, "schema"> & {
|
|
164
164
|
schema: string;
|
|
@@ -167,7 +167,7 @@ export declare const withSentinelModule: <R>(module: any, closure: (module: Sent
|
|
|
167
167
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>) => R) => R | undefined;
|
|
168
168
|
export declare const withSentinelInstance: <R>(module: any, closure: (module: SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
169
169
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
170
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
170
|
+
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 & {
|
|
171
171
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
172
172
|
schema: "network.xyo.sentinel.config";
|
|
173
173
|
synchronous?: boolean | undefined;
|
|
@@ -181,7 +181,7 @@ export declare const withSentinelInstance: <R>(module: any, closure: (module: Se
|
|
|
181
181
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
182
182
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
183
183
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
184
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
184
|
+
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 & {
|
|
185
185
|
schema: "network.xyo.module.config";
|
|
186
186
|
}, "schema"> & {
|
|
187
187
|
schema: string;
|
|
@@ -2,7 +2,7 @@ import { SentinelInstance } from './Instance';
|
|
|
2
2
|
import { SentinelModule } from './Module';
|
|
3
3
|
export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
4
4
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
5
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
5
|
+
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
6
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
7
7
|
schema: "network.xyo.sentinel.config";
|
|
8
8
|
synchronous?: boolean | undefined;
|
|
@@ -16,7 +16,7 @@ export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<Sent
|
|
|
16
16
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
17
17
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
18
18
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
19
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
19
|
+
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 & {
|
|
20
20
|
schema: "network.xyo.module.config";
|
|
21
21
|
}, "schema"> & {
|
|
22
22
|
schema: string;
|
|
@@ -25,7 +25,7 @@ export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<Sent
|
|
|
25
25
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>;
|
|
26
26
|
export declare const isSentinelModule: import("@xyo-network/module-model").ModuleTypeCheck<SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
27
27
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
28
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
28
|
+
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 & {
|
|
29
29
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
30
30
|
schema: "network.xyo.sentinel.config";
|
|
31
31
|
synchronous?: boolean | undefined;
|
|
@@ -39,7 +39,7 @@ export declare const isSentinelModule: import("@xyo-network/module-model").Modul
|
|
|
39
39
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
40
40
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
41
41
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
42
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
42
|
+
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 & {
|
|
43
43
|
schema: "network.xyo.module.config";
|
|
44
44
|
}, "schema"> & {
|
|
45
45
|
schema: string;
|
|
@@ -49,7 +49,7 @@ export declare const isSentinelModule: import("@xyo-network/module-model").Modul
|
|
|
49
49
|
export declare const asSentinelModule: {
|
|
50
50
|
<TType extends SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
51
51
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
52
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
52
|
+
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 & {
|
|
53
53
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
54
54
|
schema: "network.xyo.sentinel.config";
|
|
55
55
|
synchronous?: boolean | undefined;
|
|
@@ -63,7 +63,7 @@ export declare const asSentinelModule: {
|
|
|
63
63
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
64
64
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
65
65
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
66
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
66
|
+
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 & {
|
|
67
67
|
schema: "network.xyo.module.config";
|
|
68
68
|
}, "schema"> & {
|
|
69
69
|
schema: string;
|
|
@@ -72,7 +72,7 @@ export declare const asSentinelModule: {
|
|
|
72
72
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: unknown, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
73
73
|
<TType_1 extends SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
74
74
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
75
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
75
|
+
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 & {
|
|
76
76
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
77
77
|
schema: "network.xyo.sentinel.config";
|
|
78
78
|
synchronous?: boolean | undefined;
|
|
@@ -86,7 +86,7 @@ export declare const asSentinelModule: {
|
|
|
86
86
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
87
87
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
88
88
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
89
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
89
|
+
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 & {
|
|
90
90
|
schema: "network.xyo.module.config";
|
|
91
91
|
}, "schema"> & {
|
|
92
92
|
schema: string;
|
|
@@ -97,7 +97,7 @@ export declare const asSentinelModule: {
|
|
|
97
97
|
export declare const asSentinelInstance: {
|
|
98
98
|
<TType extends SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
99
99
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
100
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
100
|
+
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 & {
|
|
101
101
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
102
102
|
schema: "network.xyo.sentinel.config";
|
|
103
103
|
synchronous?: boolean | undefined;
|
|
@@ -111,7 +111,7 @@ export declare const asSentinelInstance: {
|
|
|
111
111
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
112
112
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
113
113
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
114
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
114
|
+
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 & {
|
|
115
115
|
schema: "network.xyo.module.config";
|
|
116
116
|
}, "schema"> & {
|
|
117
117
|
schema: string;
|
|
@@ -120,7 +120,7 @@ export declare const asSentinelInstance: {
|
|
|
120
120
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: unknown, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
121
121
|
<TType_1 extends SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
122
122
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
123
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
123
|
+
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 & {
|
|
124
124
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
125
125
|
schema: "network.xyo.sentinel.config";
|
|
126
126
|
synchronous?: boolean | undefined;
|
|
@@ -134,7 +134,7 @@ export declare const asSentinelInstance: {
|
|
|
134
134
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
135
135
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
136
136
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
137
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
137
|
+
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 & {
|
|
138
138
|
schema: "network.xyo.module.config";
|
|
139
139
|
}, "schema"> & {
|
|
140
140
|
schema: string;
|
|
@@ -144,7 +144,7 @@ export declare const asSentinelInstance: {
|
|
|
144
144
|
};
|
|
145
145
|
export declare const withSentinelModule: <R>(module: any, closure: (module: SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
146
146
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
147
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
147
|
+
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 & {
|
|
148
148
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
149
149
|
schema: "network.xyo.sentinel.config";
|
|
150
150
|
synchronous?: boolean | undefined;
|
|
@@ -158,7 +158,7 @@ export declare const withSentinelModule: <R>(module: any, closure: (module: Sent
|
|
|
158
158
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
159
159
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
160
160
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
161
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
161
|
+
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 & {
|
|
162
162
|
schema: "network.xyo.module.config";
|
|
163
163
|
}, "schema"> & {
|
|
164
164
|
schema: string;
|
|
@@ -167,7 +167,7 @@ export declare const withSentinelModule: <R>(module: any, closure: (module: Sent
|
|
|
167
167
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>) => R) => R | undefined;
|
|
168
168
|
export declare const withSentinelInstance: <R>(module: any, closure: (module: SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
169
169
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
170
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
170
|
+
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 & {
|
|
171
171
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
172
172
|
schema: "network.xyo.sentinel.config";
|
|
173
173
|
synchronous?: boolean | undefined;
|
|
@@ -181,7 +181,7 @@ export declare const withSentinelInstance: <R>(module: any, closure: (module: Se
|
|
|
181
181
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
182
182
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
183
183
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
184
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
184
|
+
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 & {
|
|
185
185
|
schema: "network.xyo.module.config";
|
|
186
186
|
}, "schema"> & {
|
|
187
187
|
schema: string;
|
|
@@ -2,7 +2,7 @@ import { SentinelInstance } from './Instance';
|
|
|
2
2
|
import { SentinelModule } from './Module';
|
|
3
3
|
export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
4
4
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
5
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
5
|
+
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
6
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
7
7
|
schema: "network.xyo.sentinel.config";
|
|
8
8
|
synchronous?: boolean | undefined;
|
|
@@ -16,7 +16,7 @@ export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<Sent
|
|
|
16
16
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
17
17
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
18
18
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
19
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
19
|
+
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 & {
|
|
20
20
|
schema: "network.xyo.module.config";
|
|
21
21
|
}, "schema"> & {
|
|
22
22
|
schema: string;
|
|
@@ -25,7 +25,7 @@ export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<Sent
|
|
|
25
25
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>;
|
|
26
26
|
export declare const isSentinelModule: import("@xyo-network/module-model").ModuleTypeCheck<SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
27
27
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
28
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
28
|
+
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 & {
|
|
29
29
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
30
30
|
schema: "network.xyo.sentinel.config";
|
|
31
31
|
synchronous?: boolean | undefined;
|
|
@@ -39,7 +39,7 @@ export declare const isSentinelModule: import("@xyo-network/module-model").Modul
|
|
|
39
39
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
40
40
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
41
41
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
42
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
42
|
+
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 & {
|
|
43
43
|
schema: "network.xyo.module.config";
|
|
44
44
|
}, "schema"> & {
|
|
45
45
|
schema: string;
|
|
@@ -49,7 +49,7 @@ export declare const isSentinelModule: import("@xyo-network/module-model").Modul
|
|
|
49
49
|
export declare const asSentinelModule: {
|
|
50
50
|
<TType extends SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
51
51
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
52
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
52
|
+
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 & {
|
|
53
53
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
54
54
|
schema: "network.xyo.sentinel.config";
|
|
55
55
|
synchronous?: boolean | undefined;
|
|
@@ -63,7 +63,7 @@ export declare const asSentinelModule: {
|
|
|
63
63
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
64
64
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
65
65
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
66
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
66
|
+
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 & {
|
|
67
67
|
schema: "network.xyo.module.config";
|
|
68
68
|
}, "schema"> & {
|
|
69
69
|
schema: string;
|
|
@@ -72,7 +72,7 @@ export declare const asSentinelModule: {
|
|
|
72
72
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: unknown, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
73
73
|
<TType_1 extends SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
74
74
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
75
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
75
|
+
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 & {
|
|
76
76
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
77
77
|
schema: "network.xyo.sentinel.config";
|
|
78
78
|
synchronous?: boolean | undefined;
|
|
@@ -86,7 +86,7 @@ export declare const asSentinelModule: {
|
|
|
86
86
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
87
87
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
88
88
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
89
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
89
|
+
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 & {
|
|
90
90
|
schema: "network.xyo.module.config";
|
|
91
91
|
}, "schema"> & {
|
|
92
92
|
schema: string;
|
|
@@ -97,7 +97,7 @@ export declare const asSentinelModule: {
|
|
|
97
97
|
export declare const asSentinelInstance: {
|
|
98
98
|
<TType extends SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
99
99
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
100
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
100
|
+
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 & {
|
|
101
101
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
102
102
|
schema: "network.xyo.sentinel.config";
|
|
103
103
|
synchronous?: boolean | undefined;
|
|
@@ -111,7 +111,7 @@ export declare const asSentinelInstance: {
|
|
|
111
111
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
112
112
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
113
113
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
114
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
114
|
+
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 & {
|
|
115
115
|
schema: "network.xyo.module.config";
|
|
116
116
|
}, "schema"> & {
|
|
117
117
|
schema: string;
|
|
@@ -120,7 +120,7 @@ export declare const asSentinelInstance: {
|
|
|
120
120
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: unknown, config?: import("@xylabs/object").TypeCheckConfig | undefined): TType | undefined;
|
|
121
121
|
<TType_1 extends SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
122
122
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
123
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
123
|
+
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 & {
|
|
124
124
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
125
125
|
schema: "network.xyo.sentinel.config";
|
|
126
126
|
synchronous?: boolean | undefined;
|
|
@@ -134,7 +134,7 @@ export declare const asSentinelInstance: {
|
|
|
134
134
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
135
135
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
136
136
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
137
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
137
|
+
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 & {
|
|
138
138
|
schema: "network.xyo.module.config";
|
|
139
139
|
}, "schema"> & {
|
|
140
140
|
schema: string;
|
|
@@ -144,7 +144,7 @@ export declare const asSentinelInstance: {
|
|
|
144
144
|
};
|
|
145
145
|
export declare const withSentinelModule: <R>(module: any, closure: (module: SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
146
146
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
147
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
147
|
+
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 & {
|
|
148
148
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
149
149
|
schema: "network.xyo.sentinel.config";
|
|
150
150
|
synchronous?: boolean | undefined;
|
|
@@ -158,7 +158,7 @@ export declare const withSentinelModule: <R>(module: any, closure: (module: Sent
|
|
|
158
158
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
159
159
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
160
160
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
161
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
161
|
+
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 & {
|
|
162
162
|
schema: "network.xyo.module.config";
|
|
163
163
|
}, "schema"> & {
|
|
164
164
|
schema: string;
|
|
@@ -167,7 +167,7 @@ export declare const withSentinelModule: <R>(module: any, closure: (module: Sent
|
|
|
167
167
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>) => R) => R | undefined;
|
|
168
168
|
export declare const withSentinelInstance: <R>(module: any, closure: (module: SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
169
169
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
170
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
170
|
+
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 & {
|
|
171
171
|
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
172
172
|
schema: "network.xyo.sentinel.config";
|
|
173
173
|
synchronous?: boolean | undefined;
|
|
@@ -181,7 +181,7 @@ export declare const withSentinelInstance: <R>(module: any, closure: (module: Se
|
|
|
181
181
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
182
182
|
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
183
183
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
184
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
184
|
+
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 & {
|
|
185
185
|
schema: "network.xyo.module.config";
|
|
186
186
|
}, "schema"> & {
|
|
187
187
|
schema: string;
|
package/package.json
CHANGED
|
@@ -10,16 +10,16 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xylabs/hex": "^3.0.
|
|
14
|
-
"@xylabs/object": "^3.0.
|
|
15
|
-
"@xylabs/promise": "^3.0.
|
|
16
|
-
"@xyo-network/archivist-model": "~2.92.
|
|
17
|
-
"@xyo-network/boundwitness-model": "~2.92.
|
|
18
|
-
"@xyo-network/diviner-model": "~2.92.
|
|
19
|
-
"@xyo-network/module-events": "~2.92.
|
|
20
|
-
"@xyo-network/module-model": "~2.92.
|
|
21
|
-
"@xyo-network/payload-model": "~2.92.
|
|
22
|
-
"@xyo-network/witness-model": "~2.92.
|
|
13
|
+
"@xylabs/hex": "^3.0.13",
|
|
14
|
+
"@xylabs/object": "^3.0.13",
|
|
15
|
+
"@xylabs/promise": "^3.0.13",
|
|
16
|
+
"@xyo-network/archivist-model": "~2.92.4",
|
|
17
|
+
"@xyo-network/boundwitness-model": "~2.92.4",
|
|
18
|
+
"@xyo-network/diviner-model": "~2.92.4",
|
|
19
|
+
"@xyo-network/module-events": "~2.92.4",
|
|
20
|
+
"@xyo-network/module-model": "~2.92.4",
|
|
21
|
+
"@xyo-network/payload-model": "~2.92.4",
|
|
22
|
+
"@xyo-network/witness-model": "~2.92.4"
|
|
23
23
|
},
|
|
24
24
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
25
25
|
"devDependencies": {
|
|
@@ -65,6 +65,6 @@
|
|
|
65
65
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
|
|
66
66
|
},
|
|
67
67
|
"sideEffects": false,
|
|
68
|
-
"version": "2.92.
|
|
68
|
+
"version": "2.92.4",
|
|
69
69
|
"type": "module"
|
|
70
70
|
}
|