@xyo-network/react-standard-node 2.67.17 → 2.68.0-rc.1

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.
Files changed (37) hide show
  1. package/dist/browser/lib/Builders/MemoryNodeBuilder.d.cts +20 -12
  2. package/dist/browser/lib/Builders/MemoryNodeBuilder.d.cts.map +1 -1
  3. package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts +20 -12
  4. package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts.map +1 -1
  5. package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts +20 -12
  6. package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
  7. package/dist/browser/lib/Builders/SentinelBuilder.d.cts +18 -6
  8. package/dist/browser/lib/Builders/SentinelBuilder.d.cts.map +1 -1
  9. package/dist/browser/lib/Builders/SentinelBuilder.d.mts +18 -6
  10. package/dist/browser/lib/Builders/SentinelBuilder.d.mts.map +1 -1
  11. package/dist/browser/lib/Builders/SentinelBuilder.d.ts +18 -6
  12. package/dist/browser/lib/Builders/SentinelBuilder.d.ts.map +1 -1
  13. package/dist/browser/lib/Builders/StorageArchivistBuilder.d.cts +12 -4
  14. package/dist/browser/lib/Builders/StorageArchivistBuilder.d.cts.map +1 -1
  15. package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts +12 -4
  16. package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts.map +1 -1
  17. package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts +12 -4
  18. package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
  19. package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts +20 -12
  20. package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts.map +1 -1
  21. package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts +20 -12
  22. package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts.map +1 -1
  23. package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts +20 -12
  24. package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
  25. package/dist/node/lib/Builders/SentinelBuilder.d.cts +18 -6
  26. package/dist/node/lib/Builders/SentinelBuilder.d.cts.map +1 -1
  27. package/dist/node/lib/Builders/SentinelBuilder.d.mts +18 -6
  28. package/dist/node/lib/Builders/SentinelBuilder.d.mts.map +1 -1
  29. package/dist/node/lib/Builders/SentinelBuilder.d.ts +18 -6
  30. package/dist/node/lib/Builders/SentinelBuilder.d.ts.map +1 -1
  31. package/dist/node/lib/Builders/StorageArchivistBuilder.d.cts +12 -4
  32. package/dist/node/lib/Builders/StorageArchivistBuilder.d.cts.map +1 -1
  33. package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts +12 -4
  34. package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts.map +1 -1
  35. package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts +12 -4
  36. package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
  37. package/package.json +18 -17
@@ -10,7 +10,7 @@ export interface MemoryNodeBuilderConfig {
10
10
  }
11
11
  export declare class MemoryNodeBuilder {
12
12
  private _node;
13
- get node(): MemoryNode<import("@xyo-network/object").BaseParamsFields & {
13
+ get node(): MemoryNode<import("@xylabs/object").BaseParamsFields & {
14
14
  account?: AccountInstance | "random" | undefined;
15
15
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
16
16
  readonly archivist?: string | undefined;
@@ -18,7 +18,8 @@ export declare class MemoryNodeBuilder {
18
18
  readonly name?: string | undefined;
19
19
  readonly paging?: Record<string, {
20
20
  size?: number | undefined;
21
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
21
+ }> | undefined;
22
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
22
23
  schema: "network.xyo.node.config";
23
24
  readonly security?: {
24
25
  readonly allowAnonymous?: boolean | undefined;
@@ -34,7 +35,8 @@ export declare class MemoryNodeBuilder {
34
35
  readonly name?: string | undefined;
35
36
  readonly paging?: Record<string, {
36
37
  size?: number | undefined;
37
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
38
+ }> | undefined;
39
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
38
40
  schema: "network.xyo.node.config";
39
41
  readonly security?: {
40
42
  readonly allowAnonymous?: boolean | undefined;
@@ -58,7 +60,7 @@ export declare class MemoryNodeBuilder {
58
60
  addArchivistMemory(moduleName?: string, account?: AccountInstance): Promise<void>;
59
61
  addArchivistStorage(account: AccountInstance, moduleName?: string, namespace?: string): Promise<void>;
60
62
  addBridge(apiDomain: string, moduleName?: string, account?: AccountInstance): Promise<void>;
61
- addSentinel(config: SentinelConfig, account: AccountInstance): Promise<import("@xyo-network/sentinel").MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
63
+ addSentinel(config: SentinelConfig, account: AccountInstance): Promise<import("@xyo-network/sentinel").MemorySentinel<import("@xylabs/object").BaseParamsFields & {
62
64
  account?: AccountInstance | "random" | undefined;
63
65
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
64
66
  readonly archivist?: string | undefined;
@@ -66,7 +68,8 @@ export declare class MemoryNodeBuilder {
66
68
  readonly name?: string | undefined;
67
69
  readonly paging?: Record<string, {
68
70
  size?: number | undefined;
69
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
71
+ }> | undefined;
72
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
70
73
  schema: "network.xyo.sentinel.config";
71
74
  readonly security?: {
72
75
  readonly allowAnonymous?: boolean | undefined;
@@ -82,7 +85,8 @@ export declare class MemoryNodeBuilder {
82
85
  readonly name?: string | undefined;
83
86
  readonly paging?: Record<string, {
84
87
  size?: number | undefined;
85
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
88
+ }> | undefined;
89
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
86
90
  schema: "network.xyo.sentinel.config";
87
91
  readonly security?: {
88
92
  readonly allowAnonymous?: boolean | undefined;
@@ -102,7 +106,7 @@ export declare class MemoryNodeBuilder {
102
106
  schema: string;
103
107
  };
104
108
  ephemeralQueryAccountEnabled?: boolean | undefined;
105
- }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
109
+ }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
106
110
  account?: AccountInstance | "random" | undefined;
107
111
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
108
112
  readonly archivist?: string | undefined;
@@ -110,7 +114,8 @@ export declare class MemoryNodeBuilder {
110
114
  readonly name?: string | undefined;
111
115
  readonly paging?: Record<string, {
112
116
  size?: number | undefined;
113
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
117
+ }> | undefined;
118
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
114
119
  schema: "network.xyo.sentinel.config";
115
120
  readonly security?: {
116
121
  readonly allowAnonymous?: boolean | undefined;
@@ -126,7 +131,8 @@ export declare class MemoryNodeBuilder {
126
131
  readonly name?: string | undefined;
127
132
  readonly paging?: Record<string, {
128
133
  size?: number | undefined;
129
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
134
+ }> | undefined;
135
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
130
136
  schema: "network.xyo.sentinel.config";
131
137
  readonly security?: {
132
138
  readonly allowAnonymous?: boolean | undefined;
@@ -146,7 +152,7 @@ export declare class MemoryNodeBuilder {
146
152
  schema: string;
147
153
  };
148
154
  ephemeralQueryAccountEnabled?: boolean | undefined;
149
- }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
155
+ }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
150
156
  account?: AccountInstance | "random" | undefined;
151
157
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
152
158
  readonly archivist?: string | undefined;
@@ -154,7 +160,8 @@ export declare class MemoryNodeBuilder {
154
160
  readonly name?: string | undefined;
155
161
  readonly paging?: Record<string, {
156
162
  size?: number | undefined;
157
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
163
+ }> | undefined;
164
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
158
165
  schema: "network.xyo.module.config";
159
166
  readonly security?: {
160
167
  readonly allowAnonymous?: boolean | undefined;
@@ -170,7 +177,8 @@ export declare class MemoryNodeBuilder {
170
177
  readonly name?: string | undefined;
171
178
  readonly paging?: Record<string, {
172
179
  size?: number | undefined;
173
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
180
+ }> | undefined;
181
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
174
182
  schema: "network.xyo.module.config";
175
183
  readonly security?: {
176
184
  readonly allowAnonymous?: boolean | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAG5D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAiB,MAAM,4BAA4B,CAAA;AAK3E,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI;;;;;;;;4BAYR,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;8DAV3G;WAEY,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,uBAAuB,EAAE,OAAO,CAAC,EAAE,eAAe,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAQnH,4GAA4G;IACtG,YAAY,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAI9E,kBAAkB,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,eAAe;IAOjE,mBAAmB,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAOrF,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,SAAqB,EAAE,OAAO,CAAC,EAAE,eAAe;IAYvF,WAAW,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe;;;;;;;;4BA/BlE,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;IAqCtG,YAAY,CAAC,iBAAiB,EAAE,wBAAwB,EAAE,SAAS,GAAE,CAAC,MAAM,OAAO,CAAC,eAAe,CAAC,CAAC,EAAO;IAkB5G,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,QAAQ,CAAC,EAAE,OAAO,EAAE,UAAU,CAAC,EAAE,OAAO;YAgB/D,cAAc;CAM7B"}
1
+ {"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAG5D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAiB,MAAM,4BAA4B,CAAA;AAK3E,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8DAEP;WAEY,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,uBAAuB,EAAE,OAAO,CAAC,EAAE,eAAe,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAQnH,4GAA4G;IACtG,YAAY,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAI9E,kBAAkB,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,eAAe;IAOjE,mBAAmB,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAOrF,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,SAAqB,EAAE,OAAO,CAAC,EAAE,eAAe;IAYvF,WAAW,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAM5D,YAAY,CAAC,iBAAiB,EAAE,wBAAwB,EAAE,SAAS,GAAE,CAAC,MAAM,OAAO,CAAC,eAAe,CAAC,CAAC,EAAO;IAkB5G,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,QAAQ,CAAC,EAAE,OAAO,EAAE,UAAU,CAAC,EAAE,OAAO;YAgB/D,cAAc;CAM7B"}
@@ -10,7 +10,7 @@ export interface MemoryNodeBuilderConfig {
10
10
  }
11
11
  export declare class MemoryNodeBuilder {
12
12
  private _node;
13
- get node(): MemoryNode<import("@xyo-network/object").BaseParamsFields & {
13
+ get node(): MemoryNode<import("@xylabs/object").BaseParamsFields & {
14
14
  account?: AccountInstance | "random" | undefined;
15
15
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
16
16
  readonly archivist?: string | undefined;
@@ -18,7 +18,8 @@ export declare class MemoryNodeBuilder {
18
18
  readonly name?: string | undefined;
19
19
  readonly paging?: Record<string, {
20
20
  size?: number | undefined;
21
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
21
+ }> | undefined;
22
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
22
23
  schema: "network.xyo.node.config";
23
24
  readonly security?: {
24
25
  readonly allowAnonymous?: boolean | undefined;
@@ -34,7 +35,8 @@ export declare class MemoryNodeBuilder {
34
35
  readonly name?: string | undefined;
35
36
  readonly paging?: Record<string, {
36
37
  size?: number | undefined;
37
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
38
+ }> | undefined;
39
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
38
40
  schema: "network.xyo.node.config";
39
41
  readonly security?: {
40
42
  readonly allowAnonymous?: boolean | undefined;
@@ -58,7 +60,7 @@ export declare class MemoryNodeBuilder {
58
60
  addArchivistMemory(moduleName?: string, account?: AccountInstance): Promise<void>;
59
61
  addArchivistStorage(account: AccountInstance, moduleName?: string, namespace?: string): Promise<void>;
60
62
  addBridge(apiDomain: string, moduleName?: string, account?: AccountInstance): Promise<void>;
61
- addSentinel(config: SentinelConfig, account: AccountInstance): Promise<import("@xyo-network/sentinel").MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
63
+ addSentinel(config: SentinelConfig, account: AccountInstance): Promise<import("@xyo-network/sentinel").MemorySentinel<import("@xylabs/object").BaseParamsFields & {
62
64
  account?: AccountInstance | "random" | undefined;
63
65
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
64
66
  readonly archivist?: string | undefined;
@@ -66,7 +68,8 @@ export declare class MemoryNodeBuilder {
66
68
  readonly name?: string | undefined;
67
69
  readonly paging?: Record<string, {
68
70
  size?: number | undefined;
69
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
71
+ }> | undefined;
72
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
70
73
  schema: "network.xyo.sentinel.config";
71
74
  readonly security?: {
72
75
  readonly allowAnonymous?: boolean | undefined;
@@ -82,7 +85,8 @@ export declare class MemoryNodeBuilder {
82
85
  readonly name?: string | undefined;
83
86
  readonly paging?: Record<string, {
84
87
  size?: number | undefined;
85
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
88
+ }> | undefined;
89
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
86
90
  schema: "network.xyo.sentinel.config";
87
91
  readonly security?: {
88
92
  readonly allowAnonymous?: boolean | undefined;
@@ -102,7 +106,7 @@ export declare class MemoryNodeBuilder {
102
106
  schema: string;
103
107
  };
104
108
  ephemeralQueryAccountEnabled?: boolean | undefined;
105
- }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
109
+ }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
106
110
  account?: AccountInstance | "random" | undefined;
107
111
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
108
112
  readonly archivist?: string | undefined;
@@ -110,7 +114,8 @@ export declare class MemoryNodeBuilder {
110
114
  readonly name?: string | undefined;
111
115
  readonly paging?: Record<string, {
112
116
  size?: number | undefined;
113
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
117
+ }> | undefined;
118
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
114
119
  schema: "network.xyo.sentinel.config";
115
120
  readonly security?: {
116
121
  readonly allowAnonymous?: boolean | undefined;
@@ -126,7 +131,8 @@ export declare class MemoryNodeBuilder {
126
131
  readonly name?: string | undefined;
127
132
  readonly paging?: Record<string, {
128
133
  size?: number | undefined;
129
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
134
+ }> | undefined;
135
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
130
136
  schema: "network.xyo.sentinel.config";
131
137
  readonly security?: {
132
138
  readonly allowAnonymous?: boolean | undefined;
@@ -146,7 +152,7 @@ export declare class MemoryNodeBuilder {
146
152
  schema: string;
147
153
  };
148
154
  ephemeralQueryAccountEnabled?: boolean | undefined;
149
- }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
155
+ }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
150
156
  account?: AccountInstance | "random" | undefined;
151
157
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
152
158
  readonly archivist?: string | undefined;
@@ -154,7 +160,8 @@ export declare class MemoryNodeBuilder {
154
160
  readonly name?: string | undefined;
155
161
  readonly paging?: Record<string, {
156
162
  size?: number | undefined;
157
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
163
+ }> | undefined;
164
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
158
165
  schema: "network.xyo.module.config";
159
166
  readonly security?: {
160
167
  readonly allowAnonymous?: boolean | undefined;
@@ -170,7 +177,8 @@ export declare class MemoryNodeBuilder {
170
177
  readonly name?: string | undefined;
171
178
  readonly paging?: Record<string, {
172
179
  size?: number | undefined;
173
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
180
+ }> | undefined;
181
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
174
182
  schema: "network.xyo.module.config";
175
183
  readonly security?: {
176
184
  readonly allowAnonymous?: boolean | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAG5D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAiB,MAAM,4BAA4B,CAAA;AAK3E,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI;;;;;;;;4BAYR,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;8DAV3G;WAEY,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,uBAAuB,EAAE,OAAO,CAAC,EAAE,eAAe,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAQnH,4GAA4G;IACtG,YAAY,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAI9E,kBAAkB,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,eAAe;IAOjE,mBAAmB,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAOrF,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,SAAqB,EAAE,OAAO,CAAC,EAAE,eAAe;IAYvF,WAAW,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe;;;;;;;;4BA/BlE,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;IAqCtG,YAAY,CAAC,iBAAiB,EAAE,wBAAwB,EAAE,SAAS,GAAE,CAAC,MAAM,OAAO,CAAC,eAAe,CAAC,CAAC,EAAO;IAkB5G,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,QAAQ,CAAC,EAAE,OAAO,EAAE,UAAU,CAAC,EAAE,OAAO;YAgB/D,cAAc;CAM7B"}
1
+ {"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAG5D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAiB,MAAM,4BAA4B,CAAA;AAK3E,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8DAEP;WAEY,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,uBAAuB,EAAE,OAAO,CAAC,EAAE,eAAe,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAQnH,4GAA4G;IACtG,YAAY,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAI9E,kBAAkB,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,eAAe;IAOjE,mBAAmB,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAOrF,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,SAAqB,EAAE,OAAO,CAAC,EAAE,eAAe;IAYvF,WAAW,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAM5D,YAAY,CAAC,iBAAiB,EAAE,wBAAwB,EAAE,SAAS,GAAE,CAAC,MAAM,OAAO,CAAC,eAAe,CAAC,CAAC,EAAO;IAkB5G,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,QAAQ,CAAC,EAAE,OAAO,EAAE,UAAU,CAAC,EAAE,OAAO;YAgB/D,cAAc;CAM7B"}
@@ -10,7 +10,7 @@ export interface MemoryNodeBuilderConfig {
10
10
  }
11
11
  export declare class MemoryNodeBuilder {
12
12
  private _node;
13
- get node(): MemoryNode<import("@xyo-network/object").BaseParamsFields & {
13
+ get node(): MemoryNode<import("@xylabs/object").BaseParamsFields & {
14
14
  account?: AccountInstance | "random" | undefined;
15
15
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
16
16
  readonly archivist?: string | undefined;
@@ -18,7 +18,8 @@ export declare class MemoryNodeBuilder {
18
18
  readonly name?: string | undefined;
19
19
  readonly paging?: Record<string, {
20
20
  size?: number | undefined;
21
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
21
+ }> | undefined;
22
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
22
23
  schema: "network.xyo.node.config";
23
24
  readonly security?: {
24
25
  readonly allowAnonymous?: boolean | undefined;
@@ -34,7 +35,8 @@ export declare class MemoryNodeBuilder {
34
35
  readonly name?: string | undefined;
35
36
  readonly paging?: Record<string, {
36
37
  size?: number | undefined;
37
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
38
+ }> | undefined;
39
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
38
40
  schema: "network.xyo.node.config";
39
41
  readonly security?: {
40
42
  readonly allowAnonymous?: boolean | undefined;
@@ -58,7 +60,7 @@ export declare class MemoryNodeBuilder {
58
60
  addArchivistMemory(moduleName?: string, account?: AccountInstance): Promise<void>;
59
61
  addArchivistStorage(account: AccountInstance, moduleName?: string, namespace?: string): Promise<void>;
60
62
  addBridge(apiDomain: string, moduleName?: string, account?: AccountInstance): Promise<void>;
61
- addSentinel(config: SentinelConfig, account: AccountInstance): Promise<import("@xyo-network/sentinel").MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
63
+ addSentinel(config: SentinelConfig, account: AccountInstance): Promise<import("@xyo-network/sentinel").MemorySentinel<import("@xylabs/object").BaseParamsFields & {
62
64
  account?: AccountInstance | "random" | undefined;
63
65
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
64
66
  readonly archivist?: string | undefined;
@@ -66,7 +68,8 @@ export declare class MemoryNodeBuilder {
66
68
  readonly name?: string | undefined;
67
69
  readonly paging?: Record<string, {
68
70
  size?: number | undefined;
69
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
71
+ }> | undefined;
72
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
70
73
  schema: "network.xyo.sentinel.config";
71
74
  readonly security?: {
72
75
  readonly allowAnonymous?: boolean | undefined;
@@ -82,7 +85,8 @@ export declare class MemoryNodeBuilder {
82
85
  readonly name?: string | undefined;
83
86
  readonly paging?: Record<string, {
84
87
  size?: number | undefined;
85
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
88
+ }> | undefined;
89
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
86
90
  schema: "network.xyo.sentinel.config";
87
91
  readonly security?: {
88
92
  readonly allowAnonymous?: boolean | undefined;
@@ -102,7 +106,7 @@ export declare class MemoryNodeBuilder {
102
106
  schema: string;
103
107
  };
104
108
  ephemeralQueryAccountEnabled?: boolean | undefined;
105
- }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
109
+ }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
106
110
  account?: AccountInstance | "random" | undefined;
107
111
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
108
112
  readonly archivist?: string | undefined;
@@ -110,7 +114,8 @@ export declare class MemoryNodeBuilder {
110
114
  readonly name?: string | undefined;
111
115
  readonly paging?: Record<string, {
112
116
  size?: number | undefined;
113
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
117
+ }> | undefined;
118
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
114
119
  schema: "network.xyo.sentinel.config";
115
120
  readonly security?: {
116
121
  readonly allowAnonymous?: boolean | undefined;
@@ -126,7 +131,8 @@ export declare class MemoryNodeBuilder {
126
131
  readonly name?: string | undefined;
127
132
  readonly paging?: Record<string, {
128
133
  size?: number | undefined;
129
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
134
+ }> | undefined;
135
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
130
136
  schema: "network.xyo.sentinel.config";
131
137
  readonly security?: {
132
138
  readonly allowAnonymous?: boolean | undefined;
@@ -146,7 +152,7 @@ export declare class MemoryNodeBuilder {
146
152
  schema: string;
147
153
  };
148
154
  ephemeralQueryAccountEnabled?: boolean | undefined;
149
- }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
155
+ }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
150
156
  account?: AccountInstance | "random" | undefined;
151
157
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
152
158
  readonly archivist?: string | undefined;
@@ -154,7 +160,8 @@ export declare class MemoryNodeBuilder {
154
160
  readonly name?: string | undefined;
155
161
  readonly paging?: Record<string, {
156
162
  size?: number | undefined;
157
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
163
+ }> | undefined;
164
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
158
165
  schema: "network.xyo.module.config";
159
166
  readonly security?: {
160
167
  readonly allowAnonymous?: boolean | undefined;
@@ -170,7 +177,8 @@ export declare class MemoryNodeBuilder {
170
177
  readonly name?: string | undefined;
171
178
  readonly paging?: Record<string, {
172
179
  size?: number | undefined;
173
- }> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
180
+ }> | undefined;
181
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
174
182
  schema: "network.xyo.module.config";
175
183
  readonly security?: {
176
184
  readonly allowAnonymous?: boolean | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAG5D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAiB,MAAM,4BAA4B,CAAA;AAK3E,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI;;;;;;;;4BAYR,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;8DAV3G;WAEY,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,uBAAuB,EAAE,OAAO,CAAC,EAAE,eAAe,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAQnH,4GAA4G;IACtG,YAAY,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAI9E,kBAAkB,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,eAAe;IAOjE,mBAAmB,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAOrF,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,SAAqB,EAAE,OAAO,CAAC,EAAE,eAAe;IAYvF,WAAW,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe;;;;;;;;4BA/BlE,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;IAqCtG,YAAY,CAAC,iBAAiB,EAAE,wBAAwB,EAAE,SAAS,GAAE,CAAC,MAAM,OAAO,CAAC,eAAe,CAAC,CAAC,EAAO;IAkB5G,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,QAAQ,CAAC,EAAE,OAAO,EAAE,UAAU,CAAC,EAAE,OAAO;YAgB/D,cAAc;CAM7B"}
1
+ {"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAG5D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAiB,MAAM,4BAA4B,CAAA;AAK3E,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8DAEP;WAEY,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,uBAAuB,EAAE,OAAO,CAAC,EAAE,eAAe,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAQnH,4GAA4G;IACtG,YAAY,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAI9E,kBAAkB,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,eAAe;IAOjE,mBAAmB,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAOrF,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,SAAqB,EAAE,OAAO,CAAC,EAAE,eAAe;IAYvF,WAAW,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAM5D,YAAY,CAAC,iBAAiB,EAAE,wBAAwB,EAAE,SAAS,GAAE,CAAC,MAAM,OAAO,CAAC,eAAe,CAAC,CAAC,EAAO;IAkB5G,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,QAAQ,CAAC,EAAE,OAAO,EAAE,UAAU,CAAC,EAAE,OAAO;YAgB/D,cAAc;CAM7B"}
@@ -5,7 +5,7 @@ export declare class SentinelBuilder {
5
5
  private account;
6
6
  private _sentinel;
7
7
  protected constructor(config: SentinelConfig, account: AccountInstance);
8
- get sentinel(): MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
8
+ get sentinel(): MemorySentinel<import("@xylabs/object").BaseParamsFields & {
9
9
  account?: AccountInstance | "random" | undefined;
10
10
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
11
11
  readonly archivist?: string | undefined;
@@ -14,6 +14,7 @@ export declare class SentinelBuilder {
14
14
  readonly paging?: Record<string, {
15
15
  size?: number | undefined;
16
16
  }> | undefined;
17
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
17
18
  schema: "network.xyo.sentinel.config";
18
19
  readonly security?: {
19
20
  readonly allowAnonymous?: boolean | undefined;
@@ -30,6 +31,7 @@ export declare class SentinelBuilder {
30
31
  readonly paging?: Record<string, {
31
32
  size?: number | undefined;
32
33
  }> | undefined;
34
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
33
35
  schema: "network.xyo.sentinel.config";
34
36
  readonly security?: {
35
37
  readonly allowAnonymous?: boolean | undefined;
@@ -49,7 +51,7 @@ export declare class SentinelBuilder {
49
51
  schema: string;
50
52
  };
51
53
  ephemeralQueryAccountEnabled?: boolean | undefined;
52
- }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
54
+ }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
53
55
  account?: AccountInstance | "random" | undefined;
54
56
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
55
57
  readonly archivist?: string | undefined;
@@ -58,6 +60,7 @@ export declare class SentinelBuilder {
58
60
  readonly paging?: Record<string, {
59
61
  size?: number | undefined;
60
62
  }> | undefined;
63
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
61
64
  schema: "network.xyo.sentinel.config";
62
65
  readonly security?: {
63
66
  readonly allowAnonymous?: boolean | undefined;
@@ -74,6 +77,7 @@ export declare class SentinelBuilder {
74
77
  readonly paging?: Record<string, {
75
78
  size?: number | undefined;
76
79
  }> | undefined;
80
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
77
81
  schema: "network.xyo.sentinel.config";
78
82
  readonly security?: {
79
83
  readonly allowAnonymous?: boolean | undefined;
@@ -93,7 +97,7 @@ export declare class SentinelBuilder {
93
97
  schema: string;
94
98
  };
95
99
  ephemeralQueryAccountEnabled?: boolean | undefined;
96
- }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
100
+ }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
97
101
  account?: AccountInstance | "random" | undefined;
98
102
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
99
103
  readonly archivist?: string | undefined;
@@ -102,6 +106,7 @@ export declare class SentinelBuilder {
102
106
  readonly paging?: Record<string, {
103
107
  size?: number | undefined;
104
108
  }> | undefined;
109
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
105
110
  schema: "network.xyo.module.config";
106
111
  readonly security?: {
107
112
  readonly allowAnonymous?: boolean | undefined;
@@ -118,6 +123,7 @@ export declare class SentinelBuilder {
118
123
  readonly paging?: Record<string, {
119
124
  size?: number | undefined;
120
125
  }> | undefined;
126
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
121
127
  schema: "network.xyo.module.config";
122
128
  readonly security?: {
123
129
  readonly allowAnonymous?: boolean | undefined;
@@ -133,7 +139,7 @@ export declare class SentinelBuilder {
133
139
  ephemeralQueryAccountEnabled?: boolean | undefined;
134
140
  }, import("@xyo-network/module-model").ModuleEventData<object>>>>>>;
135
141
  static create(config: SentinelConfig, account: AccountInstance): Promise<SentinelBuilder>;
136
- buildSentinel(): Promise<MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
142
+ buildSentinel(): Promise<MemorySentinel<import("@xylabs/object").BaseParamsFields & {
137
143
  account?: AccountInstance | "random" | undefined;
138
144
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
139
145
  readonly archivist?: string | undefined;
@@ -142,6 +148,7 @@ export declare class SentinelBuilder {
142
148
  readonly paging?: Record<string, {
143
149
  size?: number | undefined;
144
150
  }> | undefined;
151
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
145
152
  schema: "network.xyo.sentinel.config";
146
153
  readonly security?: {
147
154
  readonly allowAnonymous?: boolean | undefined;
@@ -158,6 +165,7 @@ export declare class SentinelBuilder {
158
165
  readonly paging?: Record<string, {
159
166
  size?: number | undefined;
160
167
  }> | undefined;
168
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
161
169
  schema: "network.xyo.sentinel.config";
162
170
  readonly security?: {
163
171
  readonly allowAnonymous?: boolean | undefined;
@@ -177,7 +185,7 @@ export declare class SentinelBuilder {
177
185
  schema: string;
178
186
  };
179
187
  ephemeralQueryAccountEnabled?: boolean | undefined;
180
- }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
188
+ }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
181
189
  account?: AccountInstance | "random" | undefined;
182
190
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
183
191
  readonly archivist?: string | undefined;
@@ -186,6 +194,7 @@ export declare class SentinelBuilder {
186
194
  readonly paging?: Record<string, {
187
195
  size?: number | undefined;
188
196
  }> | undefined;
197
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
189
198
  schema: "network.xyo.sentinel.config";
190
199
  readonly security?: {
191
200
  readonly allowAnonymous?: boolean | undefined;
@@ -202,6 +211,7 @@ export declare class SentinelBuilder {
202
211
  readonly paging?: Record<string, {
203
212
  size?: number | undefined;
204
213
  }> | undefined;
214
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
205
215
  schema: "network.xyo.sentinel.config";
206
216
  readonly security?: {
207
217
  readonly allowAnonymous?: boolean | undefined;
@@ -221,7 +231,7 @@ export declare class SentinelBuilder {
221
231
  schema: string;
222
232
  };
223
233
  ephemeralQueryAccountEnabled?: boolean | undefined;
224
- }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
234
+ }, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
225
235
  account?: AccountInstance | "random" | undefined;
226
236
  config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
227
237
  readonly archivist?: string | undefined;
@@ -230,6 +240,7 @@ export declare class SentinelBuilder {
230
240
  readonly paging?: Record<string, {
231
241
  size?: number | undefined;
232
242
  }> | undefined;
243
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
233
244
  schema: "network.xyo.module.config";
234
245
  readonly security?: {
235
246
  readonly allowAnonymous?: boolean | undefined;
@@ -246,6 +257,7 @@ export declare class SentinelBuilder {
246
257
  readonly paging?: Record<string, {
247
258
  size?: number | undefined;
248
259
  }> | undefined;
260
+ readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
249
261
  schema: "network.xyo.module.config";
250
262
  readonly security?: {
251
263
  readonly allowAnonymous?: boolean | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"SentinelBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/SentinelBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAE5D,OAAO,EAAE,cAAc,EAAwB,cAAc,EAAE,MAAM,uBAAuB,CAAA;AAE5F,qBAAa,eAAe;IAIxB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IAJjB,OAAO,CAAC,SAAS,CAA4B;IAE7C,SAAS,aACC,MAAM,EAAE,cAAc,EACtB,OAAO,EAAE,eAAe;IAKlC,IAAI,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEAEX;WAEY,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IAMzF,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKnB,OAAO,CAAC,WAAW;CAMpB"}
1
+ {"version":3,"file":"SentinelBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/SentinelBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAE5D,OAAO,EAAE,cAAc,EAAwB,cAAc,EAAE,MAAM,uBAAuB,CAAA;AAE5F,qBAAa,eAAe;IAIxB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IAJjB,OAAO,CAAC,SAAS,CAA4B;IAE7C,SAAS,aACC,MAAM,EAAE,cAAc,EACtB,OAAO,EAAE,eAAe;IAKlC,IAAI,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEAEX;WAEY,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IAMzF,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKnB,OAAO,CAAC,WAAW;CAMpB"}