@xyo-network/api 5.3.25 → 5.3.26

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 (2) hide show
  1. package/README.md +3759 -10
  2. package/package.json +19 -19
package/README.md CHANGED
@@ -1,23 +1,3772 @@
1
+ [![logo][]](https://xyo.network)
2
+
1
3
  # @xyo-network/api
2
4
 
3
- [![logo][]](https://xyo.network)
5
+ [![npm][npm-badge]][npm-link]
6
+ [![license][license-badge]][license-link]
7
+
8
+ > Primary SDK for using XYO Protocol 2.0
9
+
10
+ ## Install
11
+
12
+ Using npm:
13
+
14
+ ```sh
15
+ npm install {{name}}
16
+ ```
17
+
18
+ Using yarn:
4
19
 
5
- Version: 5.0.2
20
+ ```sh
21
+ yarn add {{name}}
22
+ ```
6
23
 
7
- Primary SDK for using XYO Protocol 2.0
24
+ Using pnpm:
8
25
 
9
- ## Documentation
26
+ ```sh
27
+ pnpm add {{name}}
28
+ ```
10
29
 
11
- [TypeDoc Generated Documentation](https://gitbook.xyo.network/xyo-data-lab/xyo-reference/package-documentation/xyo-network__api)
30
+ Using bun:
31
+
32
+ ```sh
33
+ bun add {{name}}
34
+ ```
12
35
 
13
- Part of [sdk-xyo-client-js](https://www.npmjs.com/package/@xyo-network/sdk-xyo-client-js)
14
36
 
15
37
  ## License
16
38
 
17
- > See the [LICENSE](LICENSE) file for license details
39
+ See the [LICENSE](LICENSE) file for license rights and limitations (LGPL-3.0-only).
40
+
41
+ ## Reference
42
+
43
+ ### packages
44
+
45
+ ### sdk-utils
46
+
47
+ ### packages
48
+
49
+ ### api
50
+
51
+ ### .temp-typedoc
52
+
53
+ ### classes
54
+
55
+ ### <a id="ApiBase"></a>ApiBase
56
+
57
+ [**@xyo-network/api**](#../README)
58
+
59
+ ***
60
+
61
+ ## Extended by
62
+
63
+ - [`ApiSimple`](#ApiSimple)
64
+
65
+ ## Type Parameters
66
+
67
+ ### C
68
+
69
+ `C` *extends* `ApiConfig` = `ApiConfig`
70
+
71
+ ## Implements
72
+
73
+ - `ApiReportable`
74
+
75
+ ## Constructors
76
+
77
+ ### Constructor
78
+
79
+ ```ts
80
+ new ApiBase<C>(config): ApiBase<C>;
81
+ ```
82
+
83
+ ### Parameters
84
+
85
+ #### config
86
+
87
+ `C`
88
+
89
+ ### Returns
90
+
91
+ `ApiBase`\<`C`\>
92
+
93
+ ## Properties
94
+
95
+ ### config
96
+
97
+ ```ts
98
+ readonly config: C;
99
+ ```
100
+
101
+ ***
102
+
103
+ ### axios
104
+
105
+ ```ts
106
+ protected axios: Axios;
107
+ ```
108
+
109
+ ## Accessors
110
+
111
+ ### authenticated
112
+
113
+ ### Get Signature
114
+
115
+ ```ts
116
+ get authenticated(): boolean;
117
+ ```
118
+
119
+ #### Returns
120
+
121
+ `boolean`
122
+
123
+ ***
124
+
125
+ ### headers
126
+
127
+ ### Get Signature
128
+
129
+ ```ts
130
+ get protected headers(): Record<string, string>;
131
+ ```
132
+
133
+ #### Returns
134
+
135
+ `Record`\<`string`, `string`\>
136
+
137
+ ***
138
+
139
+ ### query
140
+
141
+ ### Get Signature
142
+
143
+ ```ts
144
+ get protected query(): string;
145
+ ```
146
+
147
+ #### Returns
148
+
149
+ `string`
150
+
151
+ ***
152
+
153
+ ### root
154
+
155
+ ### Get Signature
156
+
157
+ ```ts
158
+ get protected root(): string;
159
+ ```
160
+
161
+ #### Returns
162
+
163
+ `string`
164
+
165
+ ## Methods
166
+
167
+ ### onError()
168
+
169
+ ```ts
170
+ onError(error, depth?): void;
171
+ ```
172
+
173
+ ### Parameters
174
+
175
+ #### error
176
+
177
+ `ApiError`
178
+
179
+ #### depth?
180
+
181
+ `number` = `0`
182
+
183
+ ### Returns
184
+
185
+ `void`
186
+
187
+ ### Implementation of
188
+
189
+ ```ts
190
+ ApiReportable.onError
191
+ ```
192
+
193
+ ***
194
+
195
+ ### onFailure()
196
+
197
+ ```ts
198
+ onFailure(response, depth?): void;
199
+ ```
200
+
201
+ ### Parameters
202
+
203
+ #### response
204
+
205
+ `ApiResponse`
206
+
207
+ #### depth?
208
+
209
+ `number` = `0`
210
+
211
+ ### Returns
212
+
213
+ `void`
214
+
215
+ ### Implementation of
216
+
217
+ ```ts
218
+ ApiReportable.onFailure
219
+ ```
220
+
221
+ ***
222
+
223
+ ### onSuccess()
224
+
225
+ ```ts
226
+ onSuccess(response, depth?): void;
227
+ ```
228
+
229
+ ### Parameters
230
+
231
+ #### response
232
+
233
+ `ApiResponse`
234
+
235
+ #### depth?
236
+
237
+ `number` = `0`
238
+
239
+ ### Returns
240
+
241
+ `void`
242
+
243
+ ### Implementation of
244
+
245
+ ```ts
246
+ ApiReportable.onSuccess
247
+ ```
248
+
249
+ ***
250
+
251
+ ### deleteEndpoint()
252
+
253
+ ### Call Signature
254
+
255
+ ```ts
256
+ protected deleteEndpoint<T>(endPoint?): Promise<ApiResponseBody<T>>;
257
+ ```
258
+
259
+ #### Type Parameters
260
+
261
+ ##### T
262
+
263
+ `T` = `unknown`
264
+
265
+ #### Parameters
266
+
267
+ ##### endPoint?
268
+
269
+ `string`
270
+
271
+ #### Returns
272
+
273
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
274
+
275
+ ### Call Signature
276
+
277
+ ```ts
278
+ protected deleteEndpoint<T>(endPoint?, responseType?): Promise<ApiResponseBody<T>>;
279
+ ```
280
+
281
+ #### Type Parameters
282
+
283
+ ##### T
284
+
285
+ `T` = `unknown`
286
+
287
+ #### Parameters
288
+
289
+ ##### endPoint?
290
+
291
+ `string`
292
+
293
+ ##### responseType?
294
+
295
+ `"body"`
296
+
297
+ #### Returns
298
+
299
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
300
+
301
+ ### Call Signature
302
+
303
+ ```ts
304
+ protected deleteEndpoint<T>(endPoint?, responseType?): Promise<ApiResponseTuple<T>>;
305
+ ```
306
+
307
+ #### Type Parameters
308
+
309
+ ##### T
310
+
311
+ `T` = `unknown`
312
+
313
+ #### Parameters
314
+
315
+ ##### endPoint?
316
+
317
+ `string`
318
+
319
+ ##### responseType?
320
+
321
+ `"tuple"`
322
+
323
+ #### Returns
324
+
325
+ `Promise`\<`ApiResponseTuple`\<`T`\>\>
326
+
327
+ ***
328
+
329
+ ### getEndpoint()
330
+
331
+ ### Call Signature
332
+
333
+ ```ts
334
+ protected getEndpoint<T>(endPoint?): Promise<ApiResponseBody<T>>;
335
+ ```
336
+
337
+ #### Type Parameters
338
+
339
+ ##### T
340
+
341
+ `T` = `unknown`
342
+
343
+ #### Parameters
344
+
345
+ ##### endPoint?
346
+
347
+ `string`
348
+
349
+ #### Returns
350
+
351
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
352
+
353
+ ### Call Signature
354
+
355
+ ```ts
356
+ protected getEndpoint<T>(endPoint?, responseType?): Promise<ApiResponseBody<T>>;
357
+ ```
358
+
359
+ #### Type Parameters
360
+
361
+ ##### T
362
+
363
+ `T` = `unknown`
364
+
365
+ #### Parameters
366
+
367
+ ##### endPoint?
368
+
369
+ `string`
370
+
371
+ ##### responseType?
372
+
373
+ `"body"`
374
+
375
+ #### Returns
376
+
377
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
378
+
379
+ ### Call Signature
380
+
381
+ ```ts
382
+ protected getEndpoint<T>(endPoint?, responseType?): Promise<ApiResponseTuple<T>>;
383
+ ```
384
+
385
+ #### Type Parameters
386
+
387
+ ##### T
388
+
389
+ `T` = `unknown`
390
+
391
+ #### Parameters
392
+
393
+ ##### endPoint?
394
+
395
+ `string`
396
+
397
+ ##### responseType?
398
+
399
+ `"tuple"`
400
+
401
+ #### Returns
402
+
403
+ `Promise`\<`ApiResponseTuple`\<`T`\>\>
404
+
405
+ ***
406
+
407
+ ### handleMonitorResponseError()
408
+
409
+ ```ts
410
+ protected handleMonitorResponseError<T>(error, trapAxiosException): ApiResponse<ApiEnvelope<T>> | undefined;
411
+ ```
412
+
413
+ ### Type Parameters
414
+
415
+ #### T
416
+
417
+ `T`
418
+
419
+ ### Parameters
420
+
421
+ #### error
422
+
423
+ `ApiError`
424
+
425
+ #### trapAxiosException
426
+
427
+ `boolean`
428
+
429
+ ### Returns
430
+
431
+ `ApiResponse`\<`ApiEnvelope`\<`T`\>\> \| `undefined`
432
+
433
+ ***
434
+
435
+ ### monitorResponse()
436
+
437
+ ```ts
438
+ protected monitorResponse<T>(closure): Promise<ApiResponse<ApiEnvelope<T>> | undefined>;
439
+ ```
440
+
441
+ ### Type Parameters
442
+
443
+ #### T
444
+
445
+ `T`
446
+
447
+ ### Parameters
448
+
449
+ #### closure
450
+
451
+ () => `Promise`\<`ApiResponse`\<`ApiEnvelope`\<`T`\>\>\>
452
+
453
+ ### Returns
454
+
455
+ `Promise`\<`ApiResponse`\<`ApiEnvelope`\<`T`\>\> \| `undefined`\>
456
+
457
+ ***
458
+
459
+ ### postEndpoint()
460
+
461
+ ### Call Signature
462
+
463
+ ```ts
464
+ protected postEndpoint<T, D>(endPoint?, data?): Promise<ApiResponseBody<T>>;
465
+ ```
466
+
467
+ #### Type Parameters
468
+
469
+ ##### T
470
+
471
+ `T` = `unknown`
472
+
473
+ ##### D
474
+
475
+ `D` = `unknown`
476
+
477
+ #### Parameters
478
+
479
+ ##### endPoint?
480
+
481
+ `string`
482
+
483
+ ##### data?
484
+
485
+ `D`
486
+
487
+ #### Returns
488
+
489
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
490
+
491
+ ### Call Signature
492
+
493
+ ```ts
494
+ protected postEndpoint<T, D>(
495
+ endPoint?,
496
+ data?,
497
+ responseType?): Promise<ApiResponseBody<T>>;
498
+ ```
499
+
500
+ #### Type Parameters
501
+
502
+ ##### T
503
+
504
+ `T` = `unknown`
505
+
506
+ ##### D
507
+
508
+ `D` = `unknown`
509
+
510
+ #### Parameters
511
+
512
+ ##### endPoint?
513
+
514
+ `string`
515
+
516
+ ##### data?
517
+
518
+ `D`
519
+
520
+ ##### responseType?
521
+
522
+ `"body"`
523
+
524
+ #### Returns
525
+
526
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
527
+
528
+ ### Call Signature
529
+
530
+ ```ts
531
+ protected postEndpoint<T, D>(
532
+ endPoint?,
533
+ data?,
534
+ responseType?): Promise<ApiResponseTuple<T>>;
535
+ ```
536
+
537
+ #### Type Parameters
538
+
539
+ ##### T
540
+
541
+ `T` = `unknown`
542
+
543
+ ##### D
544
+
545
+ `D` = `unknown`
546
+
547
+ #### Parameters
548
+
549
+ ##### endPoint?
550
+
551
+ `string`
552
+
553
+ ##### data?
554
+
555
+ `D`
556
+
557
+ ##### responseType?
558
+
559
+ `"tuple"`
560
+
561
+ #### Returns
562
+
563
+ `Promise`\<`ApiResponseTuple`\<`T`\>\>
564
+
565
+ ***
566
+
567
+ ### putEndpoint()
568
+
569
+ ### Call Signature
570
+
571
+ ```ts
572
+ protected putEndpoint<T, D>(endPoint?, data?): Promise<ApiResponseBody<T>>;
573
+ ```
574
+
575
+ #### Type Parameters
576
+
577
+ ##### T
578
+
579
+ `T` = `unknown`
580
+
581
+ ##### D
582
+
583
+ `D` = `unknown`
584
+
585
+ #### Parameters
586
+
587
+ ##### endPoint?
588
+
589
+ `string`
590
+
591
+ ##### data?
592
+
593
+ `D`
594
+
595
+ #### Returns
596
+
597
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
598
+
599
+ ### Call Signature
600
+
601
+ ```ts
602
+ protected putEndpoint<T, D>(
603
+ endPoint?,
604
+ data?,
605
+ responseType?): Promise<ApiResponseBody<T>>;
606
+ ```
607
+
608
+ #### Type Parameters
609
+
610
+ ##### T
611
+
612
+ `T` = `unknown`
613
+
614
+ ##### D
615
+
616
+ `D` = `unknown`
617
+
618
+ #### Parameters
619
+
620
+ ##### endPoint?
621
+
622
+ `string`
623
+
624
+ ##### data?
625
+
626
+ `D`
627
+
628
+ ##### responseType?
629
+
630
+ `"body"`
631
+
632
+ #### Returns
633
+
634
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
635
+
636
+ ### Call Signature
637
+
638
+ ```ts
639
+ protected putEndpoint<T, D>(
640
+ endPoint?,
641
+ data?,
642
+ responseType?): Promise<ApiResponseTuple<T>>;
643
+ ```
644
+
645
+ #### Type Parameters
646
+
647
+ ##### T
648
+
649
+ `T` = `unknown`
650
+
651
+ ##### D
652
+
653
+ `D` = `unknown`
654
+
655
+ #### Parameters
656
+
657
+ ##### endPoint?
658
+
659
+ `string`
660
+
661
+ ##### data?
662
+
663
+ `D`
664
+
665
+ ##### responseType?
666
+
667
+ `"tuple"`
668
+
669
+ #### Returns
670
+
671
+ `Promise`\<`ApiResponseTuple`\<`T`\>\>
672
+
673
+ ### <a id="ApiSimple"></a>ApiSimple
674
+
675
+ [**@xyo-network/api**](#../README)
676
+
677
+ ***
678
+
679
+ ## Extends
680
+
681
+ - [`ApiBase`](#ApiBase)\<`C`\>
682
+
683
+ ## Extended by
684
+
685
+ - [`ArchivistApi`](#ArchivistApi)
686
+
687
+ ## Type Parameters
688
+
689
+ ### T
690
+
691
+ `T` = `Payload`
692
+
693
+ ### D
694
+
695
+ `D` = `T`
696
+
697
+ ### Q
698
+
699
+ `Q` *extends* [`ApiSimpleQuery`](#../type-aliases/ApiSimpleQuery) = [`ApiSimpleQuery`](#../type-aliases/ApiSimpleQuery)
700
+
701
+ ### C
702
+
703
+ `C` *extends* `ApiConfig` = `ApiConfig`
704
+
705
+ ## Constructors
706
+
707
+ ### Constructor
708
+
709
+ ```ts
710
+ new ApiSimple<T, D, Q, C>(config): ApiSimple<T, D, Q, C>;
711
+ ```
712
+
713
+ ### Parameters
714
+
715
+ #### config
716
+
717
+ `C`
718
+
719
+ ### Returns
720
+
721
+ `ApiSimple`\<`T`, `D`, `Q`, `C`\>
722
+
723
+ ### Inherited from
724
+
725
+ [`ApiBase`](#ApiBase).[`constructor`](ApiBase.md#constructor)
726
+
727
+ ## Properties
728
+
729
+ ### config
730
+
731
+ ```ts
732
+ readonly config: C;
733
+ ```
734
+
735
+ ### Inherited from
736
+
737
+ [`ApiBase`](#ApiBase).[`config`](ApiBase.md#config)
738
+
739
+ ***
740
+
741
+ ### axios
742
+
743
+ ```ts
744
+ protected axios: Axios;
745
+ ```
746
+
747
+ ### Inherited from
748
+
749
+ [`ApiBase`](#ApiBase).[`axios`](ApiBase.md#axios)
750
+
751
+ ## Accessors
752
+
753
+ ### authenticated
754
+
755
+ ### Get Signature
756
+
757
+ ```ts
758
+ get authenticated(): boolean;
759
+ ```
760
+
761
+ #### Returns
762
+
763
+ `boolean`
764
+
765
+ ### Inherited from
766
+
767
+ [`ApiBase`](#ApiBase).[`authenticated`](ApiBase.md#authenticated)
768
+
769
+ ***
770
+
771
+ ### headers
772
+
773
+ ### Get Signature
774
+
775
+ ```ts
776
+ get protected headers(): Record<string, string>;
777
+ ```
778
+
779
+ #### Returns
780
+
781
+ `Record`\<`string`, `string`\>
782
+
783
+ ### Inherited from
784
+
785
+ [`ApiBase`](#ApiBase).[`headers`](ApiBase.md#headers)
786
+
787
+ ***
788
+
789
+ ### query
790
+
791
+ ### Get Signature
792
+
793
+ ```ts
794
+ get protected query(): string;
795
+ ```
796
+
797
+ #### Returns
798
+
799
+ `string`
800
+
801
+ ### Inherited from
802
+
803
+ [`ApiBase`](#ApiBase).[`query`](ApiBase.md#query)
804
+
805
+ ***
806
+
807
+ ### root
808
+
809
+ ### Get Signature
810
+
811
+ ```ts
812
+ get protected root(): string;
813
+ ```
814
+
815
+ #### Returns
816
+
817
+ `string`
818
+
819
+ ### Inherited from
820
+
821
+ [`ApiBase`](#ApiBase).[`root`](ApiBase.md#root)
822
+
823
+ ## Methods
824
+
825
+ ### onError()
826
+
827
+ ```ts
828
+ onError(error, depth?): void;
829
+ ```
830
+
831
+ ### Parameters
832
+
833
+ #### error
834
+
835
+ `ApiError`
836
+
837
+ #### depth?
838
+
839
+ `number` = `0`
840
+
841
+ ### Returns
842
+
843
+ `void`
844
+
845
+ ### Inherited from
846
+
847
+ [`ApiBase`](#ApiBase).[`onError`](ApiBase.md#onerror)
848
+
849
+ ***
850
+
851
+ ### onFailure()
852
+
853
+ ```ts
854
+ onFailure(response, depth?): void;
855
+ ```
856
+
857
+ ### Parameters
858
+
859
+ #### response
860
+
861
+ `ApiResponse`
862
+
863
+ #### depth?
864
+
865
+ `number` = `0`
866
+
867
+ ### Returns
868
+
869
+ `void`
870
+
871
+ ### Inherited from
872
+
873
+ [`ApiBase`](#ApiBase).[`onFailure`](ApiBase.md#onfailure)
874
+
875
+ ***
876
+
877
+ ### onSuccess()
878
+
879
+ ```ts
880
+ onSuccess(response, depth?): void;
881
+ ```
882
+
883
+ ### Parameters
884
+
885
+ #### response
886
+
887
+ `ApiResponse`
888
+
889
+ #### depth?
890
+
891
+ `number` = `0`
892
+
893
+ ### Returns
894
+
895
+ `void`
896
+
897
+ ### Inherited from
898
+
899
+ [`ApiBase`](#ApiBase).[`onSuccess`](ApiBase.md#onsuccess)
900
+
901
+ ***
902
+
903
+ ### deleteEndpoint()
904
+
905
+ ### Call Signature
906
+
907
+ ```ts
908
+ protected deleteEndpoint<T>(endPoint?): Promise<ApiResponseBody<T>>;
909
+ ```
910
+
911
+ #### Type Parameters
912
+
913
+ ##### T
914
+
915
+ `T` = `unknown`
916
+
917
+ #### Parameters
918
+
919
+ ##### endPoint?
920
+
921
+ `string`
922
+
923
+ #### Returns
924
+
925
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
926
+
927
+ #### Inherited from
928
+
929
+ [`ApiBase`](#ApiBase).[`deleteEndpoint`](ApiBase.md#deleteendpoint)
930
+
931
+ ### Call Signature
932
+
933
+ ```ts
934
+ protected deleteEndpoint<T>(endPoint?, responseType?): Promise<ApiResponseBody<T>>;
935
+ ```
936
+
937
+ #### Type Parameters
938
+
939
+ ##### T
940
+
941
+ `T` = `unknown`
942
+
943
+ #### Parameters
944
+
945
+ ##### endPoint?
946
+
947
+ `string`
948
+
949
+ ##### responseType?
950
+
951
+ `"body"`
952
+
953
+ #### Returns
954
+
955
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
956
+
957
+ #### Inherited from
958
+
959
+ [`ApiBase`](#ApiBase).[`deleteEndpoint`](ApiBase.md#deleteendpoint)
960
+
961
+ ### Call Signature
962
+
963
+ ```ts
964
+ protected deleteEndpoint<T>(endPoint?, responseType?): Promise<ApiResponseTuple<T>>;
965
+ ```
966
+
967
+ #### Type Parameters
968
+
969
+ ##### T
970
+
971
+ `T` = `unknown`
972
+
973
+ #### Parameters
974
+
975
+ ##### endPoint?
976
+
977
+ `string`
978
+
979
+ ##### responseType?
980
+
981
+ `"tuple"`
982
+
983
+ #### Returns
984
+
985
+ `Promise`\<`ApiResponseTuple`\<`T`\>\>
986
+
987
+ #### Inherited from
988
+
989
+ [`ApiBase`](#ApiBase).[`deleteEndpoint`](ApiBase.md#deleteendpoint)
990
+
991
+ ***
992
+
993
+ ### getEndpoint()
994
+
995
+ ### Call Signature
996
+
997
+ ```ts
998
+ protected getEndpoint<T>(endPoint?): Promise<ApiResponseBody<T>>;
999
+ ```
1000
+
1001
+ #### Type Parameters
1002
+
1003
+ ##### T
1004
+
1005
+ `T` = `unknown`
1006
+
1007
+ #### Parameters
1008
+
1009
+ ##### endPoint?
1010
+
1011
+ `string`
1012
+
1013
+ #### Returns
1014
+
1015
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1016
+
1017
+ #### Inherited from
1018
+
1019
+ [`ApiBase`](#ApiBase).[`getEndpoint`](ApiBase.md#getendpoint)
1020
+
1021
+ ### Call Signature
1022
+
1023
+ ```ts
1024
+ protected getEndpoint<T>(endPoint?, responseType?): Promise<ApiResponseBody<T>>;
1025
+ ```
1026
+
1027
+ #### Type Parameters
1028
+
1029
+ ##### T
1030
+
1031
+ `T` = `unknown`
1032
+
1033
+ #### Parameters
1034
+
1035
+ ##### endPoint?
1036
+
1037
+ `string`
1038
+
1039
+ ##### responseType?
1040
+
1041
+ `"body"`
1042
+
1043
+ #### Returns
1044
+
1045
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1046
+
1047
+ #### Inherited from
1048
+
1049
+ [`ApiBase`](#ApiBase).[`getEndpoint`](ApiBase.md#getendpoint)
1050
+
1051
+ ### Call Signature
1052
+
1053
+ ```ts
1054
+ protected getEndpoint<T>(endPoint?, responseType?): Promise<ApiResponseTuple<T>>;
1055
+ ```
1056
+
1057
+ #### Type Parameters
1058
+
1059
+ ##### T
1060
+
1061
+ `T` = `unknown`
1062
+
1063
+ #### Parameters
1064
+
1065
+ ##### endPoint?
1066
+
1067
+ `string`
1068
+
1069
+ ##### responseType?
1070
+
1071
+ `"tuple"`
1072
+
1073
+ #### Returns
1074
+
1075
+ `Promise`\<`ApiResponseTuple`\<`T`\>\>
1076
+
1077
+ #### Inherited from
1078
+
1079
+ [`ApiBase`](#ApiBase).[`getEndpoint`](ApiBase.md#getendpoint)
1080
+
1081
+ ***
1082
+
1083
+ ### handleMonitorResponseError()
1084
+
1085
+ ```ts
1086
+ protected handleMonitorResponseError<T>(error, trapAxiosException): ApiResponse<ApiEnvelope<T>> | undefined;
1087
+ ```
1088
+
1089
+ ### Type Parameters
1090
+
1091
+ #### T
1092
+
1093
+ `T`
1094
+
1095
+ ### Parameters
1096
+
1097
+ #### error
1098
+
1099
+ `ApiError`
1100
+
1101
+ #### trapAxiosException
1102
+
1103
+ `boolean`
1104
+
1105
+ ### Returns
1106
+
1107
+ `ApiResponse`\<`ApiEnvelope`\<`T`\>\> \| `undefined`
1108
+
1109
+ ### Inherited from
1110
+
1111
+ [`ApiBase`](#ApiBase).[`handleMonitorResponseError`](ApiBase.md#handlemonitorresponseerror)
1112
+
1113
+ ***
1114
+
1115
+ ### monitorResponse()
1116
+
1117
+ ```ts
1118
+ protected monitorResponse<T>(closure): Promise<ApiResponse<ApiEnvelope<T>> | undefined>;
1119
+ ```
1120
+
1121
+ ### Type Parameters
1122
+
1123
+ #### T
1124
+
1125
+ `T`
1126
+
1127
+ ### Parameters
1128
+
1129
+ #### closure
1130
+
1131
+ () => `Promise`\<`ApiResponse`\<`ApiEnvelope`\<`T`\>\>\>
1132
+
1133
+ ### Returns
1134
+
1135
+ `Promise`\<`ApiResponse`\<`ApiEnvelope`\<`T`\>\> \| `undefined`\>
1136
+
1137
+ ### Inherited from
1138
+
1139
+ [`ApiBase`](#ApiBase).[`monitorResponse`](ApiBase.md#monitorresponse)
1140
+
1141
+ ***
1142
+
1143
+ ### postEndpoint()
1144
+
1145
+ ### Call Signature
1146
+
1147
+ ```ts
1148
+ protected postEndpoint<T, D>(endPoint?, data?): Promise<ApiResponseBody<T>>;
1149
+ ```
1150
+
1151
+ #### Type Parameters
1152
+
1153
+ ##### T
1154
+
1155
+ `T` = `unknown`
1156
+
1157
+ ##### D
1158
+
1159
+ `D` = `unknown`
1160
+
1161
+ #### Parameters
1162
+
1163
+ ##### endPoint?
1164
+
1165
+ `string`
1166
+
1167
+ ##### data?
1168
+
1169
+ `D`
1170
+
1171
+ #### Returns
1172
+
1173
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1174
+
1175
+ #### Inherited from
1176
+
1177
+ [`ApiBase`](#ApiBase).[`postEndpoint`](ApiBase.md#postendpoint)
1178
+
1179
+ ### Call Signature
1180
+
1181
+ ```ts
1182
+ protected postEndpoint<T, D>(
1183
+ endPoint?,
1184
+ data?,
1185
+ responseType?): Promise<ApiResponseBody<T>>;
1186
+ ```
1187
+
1188
+ #### Type Parameters
1189
+
1190
+ ##### T
1191
+
1192
+ `T` = `unknown`
1193
+
1194
+ ##### D
1195
+
1196
+ `D` = `unknown`
1197
+
1198
+ #### Parameters
1199
+
1200
+ ##### endPoint?
1201
+
1202
+ `string`
1203
+
1204
+ ##### data?
1205
+
1206
+ `D`
1207
+
1208
+ ##### responseType?
1209
+
1210
+ `"body"`
1211
+
1212
+ #### Returns
1213
+
1214
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1215
+
1216
+ #### Inherited from
1217
+
1218
+ [`ApiBase`](#ApiBase).[`postEndpoint`](ApiBase.md#postendpoint)
1219
+
1220
+ ### Call Signature
1221
+
1222
+ ```ts
1223
+ protected postEndpoint<T, D>(
1224
+ endPoint?,
1225
+ data?,
1226
+ responseType?): Promise<ApiResponseTuple<T>>;
1227
+ ```
1228
+
1229
+ #### Type Parameters
1230
+
1231
+ ##### T
1232
+
1233
+ `T` = `unknown`
1234
+
1235
+ ##### D
1236
+
1237
+ `D` = `unknown`
1238
+
1239
+ #### Parameters
1240
+
1241
+ ##### endPoint?
1242
+
1243
+ `string`
1244
+
1245
+ ##### data?
1246
+
1247
+ `D`
1248
+
1249
+ ##### responseType?
1250
+
1251
+ `"tuple"`
1252
+
1253
+ #### Returns
1254
+
1255
+ `Promise`\<`ApiResponseTuple`\<`T`\>\>
1256
+
1257
+ #### Inherited from
1258
+
1259
+ [`ApiBase`](#ApiBase).[`postEndpoint`](ApiBase.md#postendpoint)
1260
+
1261
+ ***
1262
+
1263
+ ### putEndpoint()
1264
+
1265
+ ### Call Signature
1266
+
1267
+ ```ts
1268
+ protected putEndpoint<T, D>(endPoint?, data?): Promise<ApiResponseBody<T>>;
1269
+ ```
1270
+
1271
+ #### Type Parameters
1272
+
1273
+ ##### T
1274
+
1275
+ `T` = `unknown`
1276
+
1277
+ ##### D
1278
+
1279
+ `D` = `unknown`
1280
+
1281
+ #### Parameters
1282
+
1283
+ ##### endPoint?
1284
+
1285
+ `string`
1286
+
1287
+ ##### data?
1288
+
1289
+ `D`
1290
+
1291
+ #### Returns
1292
+
1293
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1294
+
1295
+ #### Inherited from
1296
+
1297
+ [`ApiBase`](#ApiBase).[`putEndpoint`](ApiBase.md#putendpoint)
1298
+
1299
+ ### Call Signature
1300
+
1301
+ ```ts
1302
+ protected putEndpoint<T, D>(
1303
+ endPoint?,
1304
+ data?,
1305
+ responseType?): Promise<ApiResponseBody<T>>;
1306
+ ```
1307
+
1308
+ #### Type Parameters
1309
+
1310
+ ##### T
1311
+
1312
+ `T` = `unknown`
1313
+
1314
+ ##### D
1315
+
1316
+ `D` = `unknown`
1317
+
1318
+ #### Parameters
1319
+
1320
+ ##### endPoint?
1321
+
1322
+ `string`
1323
+
1324
+ ##### data?
1325
+
1326
+ `D`
1327
+
1328
+ ##### responseType?
1329
+
1330
+ `"body"`
1331
+
1332
+ #### Returns
1333
+
1334
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1335
+
1336
+ #### Inherited from
1337
+
1338
+ [`ApiBase`](#ApiBase).[`putEndpoint`](ApiBase.md#putendpoint)
1339
+
1340
+ ### Call Signature
1341
+
1342
+ ```ts
1343
+ protected putEndpoint<T, D>(
1344
+ endPoint?,
1345
+ data?,
1346
+ responseType?): Promise<ApiResponseTuple<T>>;
1347
+ ```
1348
+
1349
+ #### Type Parameters
1350
+
1351
+ ##### T
1352
+
1353
+ `T` = `unknown`
1354
+
1355
+ ##### D
1356
+
1357
+ `D` = `unknown`
1358
+
1359
+ #### Parameters
1360
+
1361
+ ##### endPoint?
1362
+
1363
+ `string`
1364
+
1365
+ ##### data?
1366
+
1367
+ `D`
1368
+
1369
+ ##### responseType?
1370
+
1371
+ `"tuple"`
1372
+
1373
+ #### Returns
1374
+
1375
+ `Promise`\<`ApiResponseTuple`\<`T`\>\>
1376
+
1377
+ #### Inherited from
1378
+
1379
+ [`ApiBase`](#ApiBase).[`putEndpoint`](ApiBase.md#putendpoint)
1380
+
1381
+ ***
1382
+
1383
+ ### delete()
1384
+
1385
+ ### Call Signature
1386
+
1387
+ ```ts
1388
+ delete(): Promise<ApiResponseBody<T>>;
1389
+ ```
1390
+
1391
+ #### Returns
1392
+
1393
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1394
+
1395
+ ### Call Signature
1396
+
1397
+ ```ts
1398
+ delete(responseType?): Promise<ApiResponseBody<T>>;
1399
+ ```
1400
+
1401
+ #### Parameters
1402
+
1403
+ ##### responseType?
1404
+
1405
+ `"body"`
1406
+
1407
+ #### Returns
1408
+
1409
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1410
+
1411
+ ### Call Signature
1412
+
1413
+ ```ts
1414
+ delete(responseType?): Promise<ApiResponseTuple<T>>;
1415
+ ```
1416
+
1417
+ #### Parameters
1418
+
1419
+ ##### responseType?
1420
+
1421
+ `"tuple"`
1422
+
1423
+ #### Returns
1424
+
1425
+ `Promise`\<`ApiResponseTuple`\<`T`\>\>
1426
+
1427
+ ***
1428
+
1429
+ ### find()
1430
+
1431
+ ### Call Signature
1432
+
1433
+ ```ts
1434
+ find(query?): Promise<ApiResponseBody<T>>;
1435
+ ```
1436
+
1437
+ #### Parameters
1438
+
1439
+ ##### query?
1440
+
1441
+ `Q`
1442
+
1443
+ #### Returns
1444
+
1445
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1446
+
1447
+ ### Call Signature
1448
+
1449
+ ```ts
1450
+ find(query?, responseType?): Promise<ApiResponseBody<T>>;
1451
+ ```
1452
+
1453
+ #### Parameters
1454
+
1455
+ ##### query?
1456
+
1457
+ `Q`
1458
+
1459
+ ##### responseType?
1460
+
1461
+ `"body"`
1462
+
1463
+ #### Returns
1464
+
1465
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1466
+
1467
+ ### Call Signature
1468
+
1469
+ ```ts
1470
+ find(query?, responseType?): Promise<ApiResponseTuple<T>>;
1471
+ ```
1472
+
1473
+ #### Parameters
1474
+
1475
+ ##### query?
1476
+
1477
+ `Q`
1478
+
1479
+ ##### responseType?
1480
+
1481
+ `"tuple"`
1482
+
1483
+ #### Returns
1484
+
1485
+ `Promise`\<`ApiResponseTuple`\<`T`\>\>
1486
+
1487
+ ***
1488
+
1489
+ ### get()
1490
+
1491
+ ### Call Signature
1492
+
1493
+ ```ts
1494
+ get(): Promise<ApiResponseBody<T>>;
1495
+ ```
1496
+
1497
+ #### Returns
1498
+
1499
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1500
+
1501
+ ### Call Signature
1502
+
1503
+ ```ts
1504
+ get(responseType?): Promise<ApiResponseBody<T>>;
1505
+ ```
1506
+
1507
+ #### Parameters
1508
+
1509
+ ##### responseType?
1510
+
1511
+ `"body"`
1512
+
1513
+ #### Returns
1514
+
1515
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1516
+
1517
+ ### Call Signature
1518
+
1519
+ ```ts
1520
+ get(responseType?): Promise<ApiResponseTuple<T>>;
1521
+ ```
1522
+
1523
+ #### Parameters
1524
+
1525
+ ##### responseType?
1526
+
1527
+ `"tuple"`
1528
+
1529
+ #### Returns
1530
+
1531
+ `Promise`\<`ApiResponseTuple`\<`T`\>\>
1532
+
1533
+ ***
1534
+
1535
+ ### post()
1536
+
1537
+ ### Call Signature
1538
+
1539
+ ```ts
1540
+ post(data?): Promise<ApiResponseBody<T>>;
1541
+ ```
1542
+
1543
+ #### Parameters
1544
+
1545
+ ##### data?
1546
+
1547
+ `D`
1548
+
1549
+ #### Returns
1550
+
1551
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1552
+
1553
+ ### Call Signature
1554
+
1555
+ ```ts
1556
+ post(data?, responseType?): Promise<ApiResponseBody<T>>;
1557
+ ```
1558
+
1559
+ #### Parameters
1560
+
1561
+ ##### data?
1562
+
1563
+ `D`
1564
+
1565
+ ##### responseType?
1566
+
1567
+ `"body"`
1568
+
1569
+ #### Returns
1570
+
1571
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1572
+
1573
+ ### Call Signature
1574
+
1575
+ ```ts
1576
+ post(data?, responseType?): Promise<ApiResponseTuple<T>>;
1577
+ ```
1578
+
1579
+ #### Parameters
1580
+
1581
+ ##### data?
1582
+
1583
+ `D`
1584
+
1585
+ ##### responseType?
1586
+
1587
+ `"tuple"`
1588
+
1589
+ #### Returns
1590
+
1591
+ `Promise`\<`ApiResponseTuple`\<`T`\>\>
1592
+
1593
+ ***
1594
+
1595
+ ### put()
1596
+
1597
+ ### Call Signature
1598
+
1599
+ ```ts
1600
+ put(data?): Promise<ApiResponseBody<T>>;
1601
+ ```
1602
+
1603
+ #### Parameters
1604
+
1605
+ ##### data?
1606
+
1607
+ `D`
1608
+
1609
+ #### Returns
1610
+
1611
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1612
+
1613
+ ### Call Signature
1614
+
1615
+ ```ts
1616
+ put(data?, responseType?): Promise<ApiResponseBody<T>>;
1617
+ ```
1618
+
1619
+ #### Parameters
1620
+
1621
+ ##### data?
1622
+
1623
+ `D`
1624
+
1625
+ ##### responseType?
1626
+
1627
+ `"body"`
1628
+
1629
+ #### Returns
1630
+
1631
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1632
+
1633
+ ### Call Signature
1634
+
1635
+ ```ts
1636
+ put(data?, responseType?): Promise<ApiResponseTuple<T>>;
1637
+ ```
1638
+
1639
+ #### Parameters
1640
+
1641
+ ##### data?
1642
+
1643
+ `D`
1644
+
1645
+ ##### responseType?
1646
+
1647
+ `"tuple"`
1648
+
1649
+ #### Returns
1650
+
1651
+ `Promise`\<`ApiResponseTuple`\<`T`\>\>
1652
+
1653
+ ### <a id="ArchivistApi"></a>ArchivistApi
1654
+
1655
+ [**@xyo-network/api**](#../README)
1656
+
1657
+ ***
1658
+
1659
+ ## Extends
1660
+
1661
+ - [`ApiSimple`](#ApiSimple)\<`Payload`[], `C`\>
1662
+
1663
+ ## Type Parameters
1664
+
1665
+ ### C
1666
+
1667
+ `C` *extends* `ApiConfig` = `ApiConfig`
1668
+
1669
+ ## Constructors
1670
+
1671
+ ### Constructor
1672
+
1673
+ ```ts
1674
+ new ArchivistApi<C>(config): ArchivistApi<C>;
1675
+ ```
1676
+
1677
+ ### Parameters
1678
+
1679
+ #### config
1680
+
1681
+ `ApiConfig`
1682
+
1683
+ ### Returns
1684
+
1685
+ `ArchivistApi`\<`C`\>
1686
+
1687
+ ### Inherited from
1688
+
1689
+ [`ApiSimple`](#ApiSimple).[`constructor`](ApiSimple.md#constructor)
1690
+
1691
+ ## Properties
1692
+
1693
+ ### config
1694
+
1695
+ ```ts
1696
+ readonly config: ApiConfig;
1697
+ ```
1698
+
1699
+ ### Inherited from
1700
+
1701
+ [`ApiSimple`](#ApiSimple).[`config`](ApiSimple.md#config)
1702
+
1703
+ ***
1704
+
1705
+ ### axios
1706
+
1707
+ ```ts
1708
+ protected axios: Axios;
1709
+ ```
1710
+
1711
+ ### Inherited from
1712
+
1713
+ [`ApiBase`](#ApiBase).[`axios`](ApiBase.md#axios)
1714
+
1715
+ ## Accessors
1716
+
1717
+ ### authenticated
1718
+
1719
+ ### Get Signature
1720
+
1721
+ ```ts
1722
+ get authenticated(): boolean;
1723
+ ```
1724
+
1725
+ #### Returns
1726
+
1727
+ `boolean`
1728
+
1729
+ ### Inherited from
1730
+
1731
+ [`ApiSimple`](#ApiSimple).[`authenticated`](ApiSimple.md#authenticated)
1732
+
1733
+ ***
1734
+
1735
+ ### headers
1736
+
1737
+ ### Get Signature
1738
+
1739
+ ```ts
1740
+ get protected headers(): Record<string, string>;
1741
+ ```
1742
+
1743
+ #### Returns
1744
+
1745
+ `Record`\<`string`, `string`\>
1746
+
1747
+ ### Inherited from
1748
+
1749
+ [`ApiSimple`](#ApiSimple).[`headers`](ApiSimple.md#headers)
1750
+
1751
+ ***
1752
+
1753
+ ### query
1754
+
1755
+ ### Get Signature
1756
+
1757
+ ```ts
1758
+ get protected query(): string;
1759
+ ```
1760
+
1761
+ #### Returns
1762
+
1763
+ `string`
1764
+
1765
+ ### Inherited from
1766
+
1767
+ [`ApiSimple`](#ApiSimple).[`query`](ApiSimple.md#query)
1768
+
1769
+ ***
1770
+
1771
+ ### root
1772
+
1773
+ ### Get Signature
1774
+
1775
+ ```ts
1776
+ get protected root(): string;
1777
+ ```
1778
+
1779
+ #### Returns
1780
+
1781
+ `string`
1782
+
1783
+ ### Inherited from
1784
+
1785
+ [`ApiBase`](#ApiBase).[`root`](ApiBase.md#root)
1786
+
1787
+ ## Methods
1788
+
1789
+ ### huri()
1790
+
1791
+ ```ts
1792
+ huri(huri): ApiSimple<Payload, Payload, PayloadFindFilter, ApiConfig>;
1793
+ ```
1794
+
1795
+ ### Parameters
1796
+
1797
+ #### huri
1798
+
1799
+ `string` \| `Huri`\<`Payload`\>
1800
+
1801
+ ### Returns
1802
+
1803
+ [`ApiSimple`](#ApiSimple)\<`Payload`, `Payload`, `PayloadFindFilter`, `ApiConfig`\>
1804
+
1805
+ ***
1806
+
1807
+ ### onError()
1808
+
1809
+ ```ts
1810
+ onError(error, depth?): void;
1811
+ ```
1812
+
1813
+ ### Parameters
1814
+
1815
+ #### error
1816
+
1817
+ `ApiError`
1818
+
1819
+ #### depth?
1820
+
1821
+ `number` = `0`
1822
+
1823
+ ### Returns
1824
+
1825
+ `void`
1826
+
1827
+ ### Inherited from
1828
+
1829
+ [`ApiSimple`](#ApiSimple).[`onError`](ApiSimple.md#onerror)
1830
+
1831
+ ***
1832
+
1833
+ ### onFailure()
1834
+
1835
+ ```ts
1836
+ onFailure(response, depth?): void;
1837
+ ```
1838
+
1839
+ ### Parameters
1840
+
1841
+ #### response
1842
+
1843
+ `ApiResponse`
1844
+
1845
+ #### depth?
1846
+
1847
+ `number` = `0`
1848
+
1849
+ ### Returns
1850
+
1851
+ `void`
1852
+
1853
+ ### Inherited from
1854
+
1855
+ [`ApiSimple`](#ApiSimple).[`onFailure`](ApiSimple.md#onfailure)
1856
+
1857
+ ***
1858
+
1859
+ ### onSuccess()
1860
+
1861
+ ```ts
1862
+ onSuccess(response, depth?): void;
1863
+ ```
1864
+
1865
+ ### Parameters
1866
+
1867
+ #### response
1868
+
1869
+ `ApiResponse`
1870
+
1871
+ #### depth?
1872
+
1873
+ `number` = `0`
1874
+
1875
+ ### Returns
1876
+
1877
+ `void`
1878
+
1879
+ ### Inherited from
1880
+
1881
+ [`ApiSimple`](#ApiSimple).[`onSuccess`](ApiSimple.md#onsuccess)
1882
+
1883
+ ***
1884
+
1885
+ ### deleteEndpoint()
1886
+
1887
+ ### Call Signature
1888
+
1889
+ ```ts
1890
+ protected deleteEndpoint<T>(endPoint?): Promise<ApiResponseBody<T>>;
1891
+ ```
1892
+
1893
+ #### Type Parameters
1894
+
1895
+ ##### T
1896
+
1897
+ `T` = `unknown`
1898
+
1899
+ #### Parameters
1900
+
1901
+ ##### endPoint?
1902
+
1903
+ `string`
1904
+
1905
+ #### Returns
1906
+
1907
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1908
+
1909
+ #### Inherited from
1910
+
1911
+ [`ApiSimple`](#ApiSimple).[`deleteEndpoint`](ApiSimple.md#deleteendpoint)
1912
+
1913
+ ### Call Signature
1914
+
1915
+ ```ts
1916
+ protected deleteEndpoint<T>(endPoint?, responseType?): Promise<ApiResponseBody<T>>;
1917
+ ```
1918
+
1919
+ #### Type Parameters
1920
+
1921
+ ##### T
1922
+
1923
+ `T` = `unknown`
1924
+
1925
+ #### Parameters
1926
+
1927
+ ##### endPoint?
1928
+
1929
+ `string`
1930
+
1931
+ ##### responseType?
1932
+
1933
+ `"body"`
1934
+
1935
+ #### Returns
1936
+
1937
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1938
+
1939
+ #### Inherited from
1940
+
1941
+ [`ApiSimple`](#ApiSimple).[`deleteEndpoint`](ApiSimple.md#deleteendpoint)
1942
+
1943
+ ### Call Signature
1944
+
1945
+ ```ts
1946
+ protected deleteEndpoint<T>(endPoint?, responseType?): Promise<ApiResponseTuple<T>>;
1947
+ ```
1948
+
1949
+ #### Type Parameters
1950
+
1951
+ ##### T
1952
+
1953
+ `T` = `unknown`
1954
+
1955
+ #### Parameters
1956
+
1957
+ ##### endPoint?
1958
+
1959
+ `string`
1960
+
1961
+ ##### responseType?
1962
+
1963
+ `"tuple"`
1964
+
1965
+ #### Returns
1966
+
1967
+ `Promise`\<`ApiResponseTuple`\<`T`\>\>
1968
+
1969
+ #### Inherited from
1970
+
1971
+ [`ApiSimple`](#ApiSimple).[`deleteEndpoint`](ApiSimple.md#deleteendpoint)
1972
+
1973
+ ***
1974
+
1975
+ ### getEndpoint()
1976
+
1977
+ ### Call Signature
1978
+
1979
+ ```ts
1980
+ protected getEndpoint<T>(endPoint?): Promise<ApiResponseBody<T>>;
1981
+ ```
1982
+
1983
+ #### Type Parameters
1984
+
1985
+ ##### T
1986
+
1987
+ `T` = `unknown`
1988
+
1989
+ #### Parameters
1990
+
1991
+ ##### endPoint?
1992
+
1993
+ `string`
1994
+
1995
+ #### Returns
1996
+
1997
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
1998
+
1999
+ #### Inherited from
2000
+
2001
+ [`ApiSimple`](#ApiSimple).[`getEndpoint`](ApiSimple.md#getendpoint)
2002
+
2003
+ ### Call Signature
2004
+
2005
+ ```ts
2006
+ protected getEndpoint<T>(endPoint?, responseType?): Promise<ApiResponseBody<T>>;
2007
+ ```
2008
+
2009
+ #### Type Parameters
2010
+
2011
+ ##### T
2012
+
2013
+ `T` = `unknown`
2014
+
2015
+ #### Parameters
2016
+
2017
+ ##### endPoint?
2018
+
2019
+ `string`
2020
+
2021
+ ##### responseType?
2022
+
2023
+ `"body"`
2024
+
2025
+ #### Returns
2026
+
2027
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
2028
+
2029
+ #### Inherited from
2030
+
2031
+ [`ApiSimple`](#ApiSimple).[`getEndpoint`](ApiSimple.md#getendpoint)
2032
+
2033
+ ### Call Signature
2034
+
2035
+ ```ts
2036
+ protected getEndpoint<T>(endPoint?, responseType?): Promise<ApiResponseTuple<T>>;
2037
+ ```
2038
+
2039
+ #### Type Parameters
2040
+
2041
+ ##### T
2042
+
2043
+ `T` = `unknown`
2044
+
2045
+ #### Parameters
2046
+
2047
+ ##### endPoint?
2048
+
2049
+ `string`
2050
+
2051
+ ##### responseType?
2052
+
2053
+ `"tuple"`
2054
+
2055
+ #### Returns
2056
+
2057
+ `Promise`\<`ApiResponseTuple`\<`T`\>\>
2058
+
2059
+ #### Inherited from
2060
+
2061
+ [`ApiSimple`](#ApiSimple).[`getEndpoint`](ApiSimple.md#getendpoint)
2062
+
2063
+ ***
2064
+
2065
+ ### handleMonitorResponseError()
2066
+
2067
+ ```ts
2068
+ protected handleMonitorResponseError<T>(error, trapAxiosException): ApiResponse<ApiEnvelope<T>> | undefined;
2069
+ ```
2070
+
2071
+ ### Type Parameters
2072
+
2073
+ #### T
2074
+
2075
+ `T`
2076
+
2077
+ ### Parameters
2078
+
2079
+ #### error
2080
+
2081
+ `ApiError`
2082
+
2083
+ #### trapAxiosException
2084
+
2085
+ `boolean`
2086
+
2087
+ ### Returns
2088
+
2089
+ `ApiResponse`\<`ApiEnvelope`\<`T`\>\> \| `undefined`
2090
+
2091
+ ### Inherited from
2092
+
2093
+ [`ApiSimple`](#ApiSimple).[`handleMonitorResponseError`](ApiSimple.md#handlemonitorresponseerror)
2094
+
2095
+ ***
2096
+
2097
+ ### monitorResponse()
2098
+
2099
+ ```ts
2100
+ protected monitorResponse<T>(closure): Promise<ApiResponse<ApiEnvelope<T>> | undefined>;
2101
+ ```
2102
+
2103
+ ### Type Parameters
2104
+
2105
+ #### T
2106
+
2107
+ `T`
2108
+
2109
+ ### Parameters
2110
+
2111
+ #### closure
2112
+
2113
+ () => `Promise`\<`ApiResponse`\<`ApiEnvelope`\<`T`\>\>\>
2114
+
2115
+ ### Returns
2116
+
2117
+ `Promise`\<`ApiResponse`\<`ApiEnvelope`\<`T`\>\> \| `undefined`\>
2118
+
2119
+ ### Inherited from
2120
+
2121
+ [`ApiSimple`](#ApiSimple).[`monitorResponse`](ApiSimple.md#monitorresponse)
2122
+
2123
+ ***
2124
+
2125
+ ### postEndpoint()
2126
+
2127
+ ### Call Signature
2128
+
2129
+ ```ts
2130
+ protected postEndpoint<T, D>(endPoint?, data?): Promise<ApiResponseBody<T>>;
2131
+ ```
2132
+
2133
+ #### Type Parameters
2134
+
2135
+ ##### T
2136
+
2137
+ `T` = `unknown`
2138
+
2139
+ ##### D
2140
+
2141
+ `D` = `unknown`
2142
+
2143
+ #### Parameters
2144
+
2145
+ ##### endPoint?
2146
+
2147
+ `string`
2148
+
2149
+ ##### data?
2150
+
2151
+ `D`
2152
+
2153
+ #### Returns
2154
+
2155
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
2156
+
2157
+ #### Inherited from
2158
+
2159
+ [`ApiSimple`](#ApiSimple).[`postEndpoint`](ApiSimple.md#postendpoint)
2160
+
2161
+ ### Call Signature
2162
+
2163
+ ```ts
2164
+ protected postEndpoint<T, D>(
2165
+ endPoint?,
2166
+ data?,
2167
+ responseType?): Promise<ApiResponseBody<T>>;
2168
+ ```
2169
+
2170
+ #### Type Parameters
2171
+
2172
+ ##### T
2173
+
2174
+ `T` = `unknown`
2175
+
2176
+ ##### D
2177
+
2178
+ `D` = `unknown`
2179
+
2180
+ #### Parameters
2181
+
2182
+ ##### endPoint?
2183
+
2184
+ `string`
2185
+
2186
+ ##### data?
2187
+
2188
+ `D`
2189
+
2190
+ ##### responseType?
2191
+
2192
+ `"body"`
2193
+
2194
+ #### Returns
2195
+
2196
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
2197
+
2198
+ #### Inherited from
2199
+
2200
+ [`ApiSimple`](#ApiSimple).[`postEndpoint`](ApiSimple.md#postendpoint)
2201
+
2202
+ ### Call Signature
2203
+
2204
+ ```ts
2205
+ protected postEndpoint<T, D>(
2206
+ endPoint?,
2207
+ data?,
2208
+ responseType?): Promise<ApiResponseTuple<T>>;
2209
+ ```
2210
+
2211
+ #### Type Parameters
2212
+
2213
+ ##### T
2214
+
2215
+ `T` = `unknown`
2216
+
2217
+ ##### D
2218
+
2219
+ `D` = `unknown`
2220
+
2221
+ #### Parameters
2222
+
2223
+ ##### endPoint?
2224
+
2225
+ `string`
2226
+
2227
+ ##### data?
2228
+
2229
+ `D`
2230
+
2231
+ ##### responseType?
2232
+
2233
+ `"tuple"`
2234
+
2235
+ #### Returns
2236
+
2237
+ `Promise`\<`ApiResponseTuple`\<`T`\>\>
2238
+
2239
+ #### Inherited from
2240
+
2241
+ [`ApiSimple`](#ApiSimple).[`postEndpoint`](ApiSimple.md#postendpoint)
2242
+
2243
+ ***
2244
+
2245
+ ### putEndpoint()
2246
+
2247
+ ### Call Signature
2248
+
2249
+ ```ts
2250
+ protected putEndpoint<T, D>(endPoint?, data?): Promise<ApiResponseBody<T>>;
2251
+ ```
2252
+
2253
+ #### Type Parameters
2254
+
2255
+ ##### T
2256
+
2257
+ `T` = `unknown`
2258
+
2259
+ ##### D
2260
+
2261
+ `D` = `unknown`
2262
+
2263
+ #### Parameters
2264
+
2265
+ ##### endPoint?
2266
+
2267
+ `string`
2268
+
2269
+ ##### data?
2270
+
2271
+ `D`
2272
+
2273
+ #### Returns
2274
+
2275
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
2276
+
2277
+ #### Inherited from
2278
+
2279
+ [`ApiSimple`](#ApiSimple).[`putEndpoint`](ApiSimple.md#putendpoint)
2280
+
2281
+ ### Call Signature
2282
+
2283
+ ```ts
2284
+ protected putEndpoint<T, D>(
2285
+ endPoint?,
2286
+ data?,
2287
+ responseType?): Promise<ApiResponseBody<T>>;
2288
+ ```
2289
+
2290
+ #### Type Parameters
2291
+
2292
+ ##### T
2293
+
2294
+ `T` = `unknown`
2295
+
2296
+ ##### D
2297
+
2298
+ `D` = `unknown`
2299
+
2300
+ #### Parameters
2301
+
2302
+ ##### endPoint?
2303
+
2304
+ `string`
2305
+
2306
+ ##### data?
2307
+
2308
+ `D`
2309
+
2310
+ ##### responseType?
2311
+
2312
+ `"body"`
2313
+
2314
+ #### Returns
2315
+
2316
+ `Promise`\<`ApiResponseBody`\<`T`\>\>
2317
+
2318
+ #### Inherited from
2319
+
2320
+ [`ApiSimple`](#ApiSimple).[`putEndpoint`](ApiSimple.md#putendpoint)
2321
+
2322
+ ### Call Signature
2323
+
2324
+ ```ts
2325
+ protected putEndpoint<T, D>(
2326
+ endPoint?,
2327
+ data?,
2328
+ responseType?): Promise<ApiResponseTuple<T>>;
2329
+ ```
2330
+
2331
+ #### Type Parameters
2332
+
2333
+ ##### T
2334
+
2335
+ `T` = `unknown`
2336
+
2337
+ ##### D
2338
+
2339
+ `D` = `unknown`
2340
+
2341
+ #### Parameters
2342
+
2343
+ ##### endPoint?
2344
+
2345
+ `string`
2346
+
2347
+ ##### data?
2348
+
2349
+ `D`
2350
+
2351
+ ##### responseType?
2352
+
2353
+ `"tuple"`
2354
+
2355
+ #### Returns
2356
+
2357
+ `Promise`\<`ApiResponseTuple`\<`T`\>\>
2358
+
2359
+ #### Inherited from
2360
+
2361
+ [`ApiSimple`](#ApiSimple).[`putEndpoint`](ApiSimple.md#putendpoint)
2362
+
2363
+ ***
2364
+
2365
+ ### delete()
2366
+
2367
+ ### Call Signature
2368
+
2369
+ ```ts
2370
+ delete(): Promise<ApiResponseBody<Payload[]>>;
2371
+ ```
2372
+
2373
+ #### Returns
2374
+
2375
+ `Promise`\<`ApiResponseBody`\<`Payload`[]\>\>
2376
+
2377
+ #### Inherited from
2378
+
2379
+ [`ApiSimple`](#ApiSimple).[`delete`](ApiSimple.md#delete)
2380
+
2381
+ ### Call Signature
2382
+
2383
+ ```ts
2384
+ delete(responseType?): Promise<ApiResponseBody<Payload[]>>;
2385
+ ```
2386
+
2387
+ #### Parameters
2388
+
2389
+ ##### responseType?
2390
+
2391
+ `"body"`
2392
+
2393
+ #### Returns
2394
+
2395
+ `Promise`\<`ApiResponseBody`\<`Payload`[]\>\>
2396
+
2397
+ #### Inherited from
2398
+
2399
+ [`ApiSimple`](#ApiSimple).[`delete`](ApiSimple.md#delete)
2400
+
2401
+ ### Call Signature
2402
+
2403
+ ```ts
2404
+ delete(responseType?): Promise<ApiResponseTuple<Payload[]>>;
2405
+ ```
2406
+
2407
+ #### Parameters
2408
+
2409
+ ##### responseType?
2410
+
2411
+ `"tuple"`
2412
+
2413
+ #### Returns
2414
+
2415
+ `Promise`\<`ApiResponseTuple`\<`Payload`[]\>\>
2416
+
2417
+ #### Inherited from
2418
+
2419
+ [`ApiSimple`](#ApiSimple).[`delete`](ApiSimple.md#delete)
2420
+
2421
+ ***
2422
+
2423
+ ### find()
2424
+
2425
+ ### Call Signature
2426
+
2427
+ ```ts
2428
+ find(query?): Promise<ApiResponseBody<Payload[]>>;
2429
+ ```
2430
+
2431
+ #### Parameters
2432
+
2433
+ ##### query?
2434
+
2435
+ `PayloadFindFilter`
2436
+
2437
+ #### Returns
2438
+
2439
+ `Promise`\<`ApiResponseBody`\<`Payload`[]\>\>
2440
+
2441
+ #### Inherited from
2442
+
2443
+ [`ApiSimple`](#ApiSimple).[`find`](ApiSimple.md#find)
2444
+
2445
+ ### Call Signature
2446
+
2447
+ ```ts
2448
+ find(query?, responseType?): Promise<ApiResponseBody<Payload[]>>;
2449
+ ```
2450
+
2451
+ #### Parameters
2452
+
2453
+ ##### query?
2454
+
2455
+ `PayloadFindFilter`
2456
+
2457
+ ##### responseType?
2458
+
2459
+ `"body"`
2460
+
2461
+ #### Returns
2462
+
2463
+ `Promise`\<`ApiResponseBody`\<`Payload`[]\>\>
2464
+
2465
+ #### Inherited from
2466
+
2467
+ [`ApiSimple`](#ApiSimple).[`find`](ApiSimple.md#find)
2468
+
2469
+ ### Call Signature
2470
+
2471
+ ```ts
2472
+ find(query?, responseType?): Promise<ApiResponseTuple<Payload[]>>;
2473
+ ```
2474
+
2475
+ #### Parameters
2476
+
2477
+ ##### query?
2478
+
2479
+ `PayloadFindFilter`
2480
+
2481
+ ##### responseType?
2482
+
2483
+ `"tuple"`
2484
+
2485
+ #### Returns
2486
+
2487
+ `Promise`\<`ApiResponseTuple`\<`Payload`[]\>\>
2488
+
2489
+ #### Inherited from
2490
+
2491
+ [`ApiSimple`](#ApiSimple).[`find`](ApiSimple.md#find)
2492
+
2493
+ ***
2494
+
2495
+ ### get()
2496
+
2497
+ ### Call Signature
2498
+
2499
+ ```ts
2500
+ get(): Promise<ApiResponseBody<Payload[]>>;
2501
+ ```
2502
+
2503
+ #### Returns
2504
+
2505
+ `Promise`\<`ApiResponseBody`\<`Payload`[]\>\>
2506
+
2507
+ #### Inherited from
2508
+
2509
+ [`ApiSimple`](#ApiSimple).[`get`](ApiSimple.md#get)
2510
+
2511
+ ### Call Signature
2512
+
2513
+ ```ts
2514
+ get(responseType?): Promise<ApiResponseBody<Payload[]>>;
2515
+ ```
2516
+
2517
+ #### Parameters
2518
+
2519
+ ##### responseType?
2520
+
2521
+ `"body"`
2522
+
2523
+ #### Returns
2524
+
2525
+ `Promise`\<`ApiResponseBody`\<`Payload`[]\>\>
2526
+
2527
+ #### Inherited from
2528
+
2529
+ [`ApiSimple`](#ApiSimple).[`get`](ApiSimple.md#get)
2530
+
2531
+ ### Call Signature
2532
+
2533
+ ```ts
2534
+ get(responseType?): Promise<ApiResponseTuple<Payload[]>>;
2535
+ ```
2536
+
2537
+ #### Parameters
2538
+
2539
+ ##### responseType?
2540
+
2541
+ `"tuple"`
2542
+
2543
+ #### Returns
2544
+
2545
+ `Promise`\<`ApiResponseTuple`\<`Payload`[]\>\>
2546
+
2547
+ #### Inherited from
2548
+
2549
+ [`ApiSimple`](#ApiSimple).[`get`](ApiSimple.md#get)
2550
+
2551
+ ***
2552
+
2553
+ ### post()
2554
+
2555
+ ### Call Signature
2556
+
2557
+ ```ts
2558
+ post(data?): Promise<ApiResponseBody<Payload[]>>;
2559
+ ```
2560
+
2561
+ #### Parameters
2562
+
2563
+ ##### data?
2564
+
2565
+ `C`
2566
+
2567
+ #### Returns
2568
+
2569
+ `Promise`\<`ApiResponseBody`\<`Payload`[]\>\>
2570
+
2571
+ #### Inherited from
2572
+
2573
+ [`ApiSimple`](#ApiSimple).[`post`](ApiSimple.md#post)
2574
+
2575
+ ### Call Signature
2576
+
2577
+ ```ts
2578
+ post(data?, responseType?): Promise<ApiResponseBody<Payload[]>>;
2579
+ ```
2580
+
2581
+ #### Parameters
2582
+
2583
+ ##### data?
2584
+
2585
+ `C`
2586
+
2587
+ ##### responseType?
2588
+
2589
+ `"body"`
2590
+
2591
+ #### Returns
2592
+
2593
+ `Promise`\<`ApiResponseBody`\<`Payload`[]\>\>
2594
+
2595
+ #### Inherited from
2596
+
2597
+ [`ApiSimple`](#ApiSimple).[`post`](ApiSimple.md#post)
2598
+
2599
+ ### Call Signature
2600
+
2601
+ ```ts
2602
+ post(data?, responseType?): Promise<ApiResponseTuple<Payload[]>>;
2603
+ ```
2604
+
2605
+ #### Parameters
2606
+
2607
+ ##### data?
2608
+
2609
+ `C`
2610
+
2611
+ ##### responseType?
2612
+
2613
+ `"tuple"`
2614
+
2615
+ #### Returns
2616
+
2617
+ `Promise`\<`ApiResponseTuple`\<`Payload`[]\>\>
2618
+
2619
+ #### Inherited from
2620
+
2621
+ [`ApiSimple`](#ApiSimple).[`post`](ApiSimple.md#post)
2622
+
2623
+ ***
2624
+
2625
+ ### put()
2626
+
2627
+ ### Call Signature
2628
+
2629
+ ```ts
2630
+ put(data?): Promise<ApiResponseBody<Payload[]>>;
2631
+ ```
2632
+
2633
+ #### Parameters
2634
+
2635
+ ##### data?
2636
+
2637
+ `C`
2638
+
2639
+ #### Returns
2640
+
2641
+ `Promise`\<`ApiResponseBody`\<`Payload`[]\>\>
2642
+
2643
+ #### Inherited from
2644
+
2645
+ [`ApiSimple`](#ApiSimple).[`put`](ApiSimple.md#put)
2646
+
2647
+ ### Call Signature
2648
+
2649
+ ```ts
2650
+ put(data?, responseType?): Promise<ApiResponseBody<Payload[]>>;
2651
+ ```
2652
+
2653
+ #### Parameters
2654
+
2655
+ ##### data?
2656
+
2657
+ `C`
2658
+
2659
+ ##### responseType?
2660
+
2661
+ `"body"`
2662
+
2663
+ #### Returns
2664
+
2665
+ `Promise`\<`ApiResponseBody`\<`Payload`[]\>\>
2666
+
2667
+ #### Inherited from
2668
+
2669
+ [`ApiSimple`](#ApiSimple).[`put`](ApiSimple.md#put)
2670
+
2671
+ ### Call Signature
2672
+
2673
+ ```ts
2674
+ put(data?, responseType?): Promise<ApiResponseTuple<Payload[]>>;
2675
+ ```
2676
+
2677
+ #### Parameters
2678
+
2679
+ ##### data?
2680
+
2681
+ `C`
2682
+
2683
+ ##### responseType?
2684
+
2685
+ `"tuple"`
2686
+
2687
+ #### Returns
2688
+
2689
+ `Promise`\<`ApiResponseTuple`\<`Payload`[]\>\>
2690
+
2691
+ #### Inherited from
2692
+
2693
+ [`ApiSimple`](#ApiSimple).[`put`](ApiSimple.md#put)
2694
+
2695
+ ### <a id="LocationDivinerApi"></a>LocationDivinerApi
2696
+
2697
+ [**@xyo-network/api**](#../README)
2698
+
2699
+ ***
2700
+
2701
+ ## Constructors
2702
+
2703
+ ### Constructor
2704
+
2705
+ ```ts
2706
+ new LocationDivinerApi(config): LocationDivinerApi;
2707
+ ```
2708
+
2709
+ ### Parameters
2710
+
2711
+ #### config
2712
+
2713
+ `ApiConfig`
2714
+
2715
+ ### Returns
2716
+
2717
+ `LocationDivinerApi`
2718
+
2719
+ ## Properties
2720
+
2721
+ ### config
2722
+
2723
+ ```ts
2724
+ config: ApiConfig;
2725
+ ```
2726
+
2727
+ ## Methods
2728
+
2729
+ ### getLocationQuery()
2730
+
2731
+ ```ts
2732
+ getLocationQuery(hash): Promise<GetLocationQueryResponse>;
2733
+ ```
2734
+
2735
+ ### Parameters
2736
+
2737
+ #### hash
2738
+
2739
+ `string`
2740
+
2741
+ ### Returns
2742
+
2743
+ `Promise`\<[`GetLocationQueryResponse`](#../interfaces/GetLocationQueryResponse)\>
2744
+
2745
+ ***
2746
+
2747
+ ### postLocationQuery()
2748
+
2749
+ ```ts
2750
+ postLocationQuery(request): Promise<LocationQueryCreationResponse>;
2751
+ ```
2752
+
2753
+ ### Parameters
2754
+
2755
+ #### request
2756
+
2757
+ [`SupportedLocationQueryCreationRequest`](#../type-aliases/SupportedLocationQueryCreationRequest)
2758
+
2759
+ ### Returns
2760
+
2761
+ `Promise`\<[`LocationQueryCreationResponse`](#../interfaces/LocationQueryCreationResponse)\>
2762
+
2763
+ ### <a id="RemoteDivinerError"></a>RemoteDivinerError
2764
+
2765
+ [**@xyo-network/api**](#../README)
2766
+
2767
+ ***
2768
+
2769
+ ## Extends
2770
+
2771
+ - `Error`
2772
+
2773
+ ## Constructors
2774
+
2775
+ ### Constructor
2776
+
2777
+ ```ts
2778
+ new RemoteDivinerError(
2779
+ action,
2780
+ error,
2781
+ message?): RemoteDivinerError;
2782
+ ```
2783
+
2784
+ ### Parameters
2785
+
2786
+ #### action
2787
+
2788
+ `string`
2789
+
2790
+ #### error
2791
+
2792
+ `unknown`
2793
+
2794
+ #### message?
2795
+
2796
+ `string`
2797
+
2798
+ ### Returns
2799
+
2800
+ `RemoteDivinerError`
2801
+
2802
+ ### Overrides
2803
+
2804
+ ```ts
2805
+ Error.constructor
2806
+ ```
2807
+
2808
+ ## Properties
2809
+
2810
+ ### isRemoteDivinerError
2811
+
2812
+ ```ts
2813
+ isRemoteDivinerError: boolean = true;
2814
+ ```
2815
+
2816
+ ## Methods
2817
+
2818
+ ### isRemoteDivinerError()
2819
+
2820
+ ```ts
2821
+ static isRemoteDivinerError(error): RemoteDivinerError | undefined;
2822
+ ```
2823
+
2824
+ ### Parameters
2825
+
2826
+ #### error
2827
+
2828
+ `unknown`
2829
+
2830
+ ### Returns
2831
+
2832
+ `RemoteDivinerError` \| `undefined`
2833
+
2834
+ ### functions
2835
+
2836
+ ### <a id="isLocationHeatmapQuery"></a>isLocationHeatmapQuery
2837
+
2838
+ [**@xyo-network/api**](#../README)
2839
+
2840
+ ***
2841
+
2842
+ ```ts
2843
+ function isLocationHeatmapQuery(query): query is LocationHeatmapQuery;
2844
+ ```
2845
+
2846
+ ## Parameters
2847
+
2848
+ ### query
2849
+
2850
+ `Record`\<`string`, `unknown`\>
2851
+
2852
+ ## Returns
2853
+
2854
+ `query is LocationHeatmapQuery`
2855
+
2856
+ ### <a id="isLocationQuadkeyHeatmapQuery"></a>isLocationQuadkeyHeatmapQuery
2857
+
2858
+ [**@xyo-network/api**](#../README)
2859
+
2860
+ ***
2861
+
2862
+ ```ts
2863
+ function isLocationQuadkeyHeatmapQuery(query): query is LocationQuadkeyHeatmapQuery;
2864
+ ```
2865
+
2866
+ ## Parameters
2867
+
2868
+ ### query
2869
+
2870
+ `Record`\<`string`, `unknown`\>
2871
+
2872
+ ## Returns
2873
+
2874
+ `query is LocationQuadkeyHeatmapQuery`
2875
+
2876
+ ### <a id="isSupportedLocationQuerySchema"></a>isSupportedLocationQuerySchema
2877
+
2878
+ [**@xyo-network/api**](#../README)
2879
+
2880
+ ***
2881
+
2882
+ ```ts
2883
+ function isSupportedLocationQuerySchema(schema): schema is LocationQuerySchema;
2884
+ ```
2885
+
2886
+ ## Parameters
2887
+
2888
+ ### schema
2889
+
2890
+ `Schema`
2891
+
2892
+ ## Returns
2893
+
2894
+ `schema is LocationQuerySchema`
2895
+
2896
+ ### interfaces
2897
+
2898
+ ### <a id="ArchivePath"></a>ArchivePath
2899
+
2900
+ [**@xyo-network/api**](#../README)
2901
+
2902
+ ***
2903
+
2904
+ ## Properties
2905
+
2906
+ ### archive
2907
+
2908
+ ```ts
2909
+ archive: string;
2910
+ ```
2911
+
2912
+ ### <a id="Coordinates"></a>Coordinates
2913
+
2914
+ [**@xyo-network/api**](#../README)
2915
+
2916
+ ***
2917
+
2918
+ ## Properties
2919
+
2920
+ ### accuracy
2921
+
2922
+ ```ts
2923
+ accuracy: number | null;
2924
+ ```
2925
+
2926
+ ***
2927
+
2928
+ ### altitude
2929
+
2930
+ ```ts
2931
+ altitude: number | null;
2932
+ ```
2933
+
2934
+ ***
2935
+
2936
+ ### altitudeAccuracy
2937
+
2938
+ ```ts
2939
+ altitudeAccuracy: number | null;
2940
+ ```
2941
+
2942
+ ***
2943
+
2944
+ ### heading
2945
+
2946
+ ```ts
2947
+ heading: number | null;
2948
+ ```
2949
+
2950
+ ***
2951
+
2952
+ ### latitude
2953
+
2954
+ ```ts
2955
+ latitude: number;
2956
+ ```
2957
+
2958
+ ***
2959
+
2960
+ ### longitude
2961
+
2962
+ ```ts
2963
+ longitude: number;
2964
+ ```
2965
+
2966
+ ***
2967
+
2968
+ ### speed
2969
+
2970
+ ```ts
2971
+ speed: number | null;
2972
+ ```
2973
+
2974
+ ### <a id="CurrentLocation"></a>CurrentLocation
2975
+
2976
+ [**@xyo-network/api**](#../README)
2977
+
2978
+ ***
2979
+
2980
+ ## Properties
2981
+
2982
+ ### coords
2983
+
2984
+ ```ts
2985
+ coords: Coordinates;
2986
+ ```
2987
+
2988
+ ***
2989
+
2990
+ ### timestamp
2991
+
2992
+ ```ts
2993
+ timestamp: number;
2994
+ ```
2995
+
2996
+ ### <a id="GetLocationQueryResponse"></a>GetLocationQueryResponse
2997
+
2998
+ [**@xyo-network/api**](#../README)
2999
+
3000
+ ***
3001
+
3002
+ ## Properties
3003
+
3004
+ ### answerHash?
3005
+
3006
+ ```ts
3007
+ optional answerHash?: string;
3008
+ ```
3009
+
3010
+ ***
3011
+
3012
+ ### queryHash
3013
+
3014
+ ```ts
3015
+ queryHash: string;
3016
+ ```
3017
+
3018
+ ### <a id="LocationHeatmapPointProperties"></a>LocationHeatmapPointProperties
3019
+
3020
+ [**@xyo-network/api**](#../README)
3021
+
3022
+ ***
3023
+
3024
+ ## Properties
3025
+
3026
+ ### hash
3027
+
3028
+ ```ts
3029
+ hash: string;
3030
+ ```
3031
+
3032
+ ***
3033
+
3034
+ ### value
3035
+
3036
+ ```ts
3037
+ value: number;
3038
+ ```
3039
+
3040
+ ### <a id="LocationQueryCreationRequest"></a>LocationQueryCreationRequest
3041
+
3042
+ [**@xyo-network/api**](#../README)
3043
+
3044
+ ***
3045
+
3046
+ ## Extended by
3047
+
3048
+ - [`LocationQueryCreationResponse`](#LocationQueryCreationResponse)
3049
+
3050
+ ## Type Parameters
3051
+
3052
+ ### TSchema
3053
+
3054
+ `TSchema` *extends* [`LocationQuerySchema`](#../type-aliases/LocationQuerySchema) = [`LocationQuerySchema`](#../type-aliases/LocationQuerySchema)
3055
+
3056
+ ### TQuery
3057
+
3058
+ `TQuery` *extends* `Record`\<`string`, `unknown`\> = `Record`\<`string`, `unknown`\>
3059
+
3060
+ ## Properties
3061
+
3062
+ ### query
3063
+
3064
+ ```ts
3065
+ query: TQuery;
3066
+ ```
3067
+
3068
+ ***
3069
+
3070
+ ### resultArchive
3071
+
3072
+ ```ts
3073
+ resultArchive: string;
3074
+ ```
3075
+
3076
+ ***
3077
+
3078
+ ### resultArchivist
3079
+
3080
+ ```ts
3081
+ resultArchivist: ApiConfig;
3082
+ ```
3083
+
3084
+ ***
3085
+
3086
+ ### schema
3087
+
3088
+ ```ts
3089
+ schema: TSchema;
3090
+ ```
3091
+
3092
+ ***
3093
+
3094
+ ### sourceArchive
3095
+
3096
+ ```ts
3097
+ sourceArchive: string;
3098
+ ```
3099
+
3100
+ ***
3101
+
3102
+ ### sourceArchivist
3103
+
3104
+ ```ts
3105
+ sourceArchivist: ApiConfig;
3106
+ ```
3107
+
3108
+ ### <a id="LocationQueryCreationResponse"></a>LocationQueryCreationResponse
3109
+
3110
+ [**@xyo-network/api**](#../README)
3111
+
3112
+ ***
3113
+
3114
+ ## Extends
3115
+
3116
+ - [`LocationQueryCreationRequest`](#LocationQueryCreationRequest)
3117
+
3118
+ ## Properties
3119
+
3120
+ ### query
3121
+
3122
+ ```ts
3123
+ query: TQuery;
3124
+ ```
3125
+
3126
+ ### Inherited from
3127
+
3128
+ [`LocationQueryCreationRequest`](#LocationQueryCreationRequest).[`query`](LocationQueryCreationRequest.md#query)
3129
+
3130
+ ***
3131
+
3132
+ ### resultArchive
3133
+
3134
+ ```ts
3135
+ resultArchive: string;
3136
+ ```
3137
+
3138
+ ### Inherited from
3139
+
3140
+ [`LocationQueryCreationRequest`](#LocationQueryCreationRequest).[`resultArchive`](LocationQueryCreationRequest.md#resultarchive)
3141
+
3142
+ ***
3143
+
3144
+ ### resultArchivist
3145
+
3146
+ ```ts
3147
+ resultArchivist: ApiConfig;
3148
+ ```
3149
+
3150
+ ### Inherited from
3151
+
3152
+ [`LocationQueryCreationRequest`](#LocationQueryCreationRequest).[`resultArchivist`](LocationQueryCreationRequest.md#resultarchivist)
3153
+
3154
+ ***
3155
+
3156
+ ### schema
3157
+
3158
+ ```ts
3159
+ schema: LocationQuerySchema;
3160
+ ```
3161
+
3162
+ ### Inherited from
3163
+
3164
+ [`LocationQueryCreationRequest`](#LocationQueryCreationRequest).[`schema`](LocationQueryCreationRequest.md#schema)
3165
+
3166
+ ***
3167
+
3168
+ ### sourceArchive
3169
+
3170
+ ```ts
3171
+ sourceArchive: string;
3172
+ ```
3173
+
3174
+ ### Inherited from
3175
+
3176
+ [`LocationQueryCreationRequest`](#LocationQueryCreationRequest).[`sourceArchive`](LocationQueryCreationRequest.md#sourcearchive)
3177
+
3178
+ ***
3179
+
3180
+ ### sourceArchivist
3181
+
3182
+ ```ts
3183
+ sourceArchivist: ApiConfig;
3184
+ ```
3185
+
3186
+ ### Inherited from
3187
+
3188
+ [`LocationQueryCreationRequest`](#LocationQueryCreationRequest).[`sourceArchivist`](LocationQueryCreationRequest.md#sourcearchivist)
3189
+
3190
+ ***
3191
+
3192
+ ### hash
3193
+
3194
+ ```ts
3195
+ hash: string;
3196
+ ```
3197
+
3198
+ ### <a id="LocationTimeRangePointProperties"></a>LocationTimeRangePointProperties
3199
+
3200
+ [**@xyo-network/api**](#../README)
3201
+
3202
+ ***
3203
+
3204
+ ## Properties
3205
+
3206
+ ### \_archive
3207
+
3208
+ ```ts
3209
+ _archive: string;
3210
+ ```
3211
+
3212
+ ***
3213
+
3214
+ ### \_client
3215
+
3216
+ ```ts
3217
+ _client: string;
3218
+ ```
3219
+
3220
+ ***
3221
+
3222
+ ### \_timestamp
3223
+
3224
+ ```ts
3225
+ _timestamp: number;
3226
+ ```
3227
+
3228
+ ***
3229
+
3230
+ ### schema
3231
+
3232
+ ```ts
3233
+ schema: "network.xyo.location" & object;
3234
+ ```
3235
+
3236
+ ### Type Declaration
3237
+
3238
+ #### \_\_schema
3239
+
3240
+ ```ts
3241
+ readonly __schema: true;
3242
+ ```
3243
+
3244
+ ### type-aliases
3245
+
3246
+ ### <a id="ApiSimpleQuery"></a>ApiSimpleQuery
3247
+
3248
+ [**@xyo-network/api**](#../README)
3249
+
3250
+ ***
3251
+
3252
+ ```ts
3253
+ type ApiSimpleQuery = PayloadFindFilter;
3254
+ ```
3255
+
3256
+ ### <a id="CurrentLocationWitnessPayload"></a>CurrentLocationWitnessPayload
3257
+
3258
+ [**@xyo-network/api**](#../README)
3259
+
3260
+ ***
3261
+
3262
+ ```ts
3263
+ type CurrentLocationWitnessPayload = Payload<{
3264
+ altitudeMeters: number;
3265
+ directionDegrees: number;
3266
+ latitude: number;
3267
+ longitude: number;
3268
+ quadkey: string;
3269
+ schema: CurrentLocationWitnessSchema;
3270
+ speedKph: number;
3271
+ }>;
3272
+ ```
3273
+
3274
+ ### <a id="CurrentLocationWitnessSchema"></a>CurrentLocationWitnessSchema
3275
+
3276
+ [**@xyo-network/api**](#../README)
3277
+
3278
+ ***
3279
+
3280
+ ```ts
3281
+ type CurrentLocationWitnessSchema = typeof CurrentLocationWitnessSchema;
3282
+ ```
3283
+
3284
+ ### <a id="LocationHeatmapAnswerSchema"></a>LocationHeatmapAnswerSchema
3285
+
3286
+ [**@xyo-network/api**](#../README)
3287
+
3288
+ ***
3289
+
3290
+ ```ts
3291
+ type LocationHeatmapAnswerSchema = typeof LocationHeatmapAnswerSchema;
3292
+ ```
3293
+
3294
+ ### <a id="LocationHeatmapQuery"></a>LocationHeatmapQuery
3295
+
3296
+ [**@xyo-network/api**](#../README)
3297
+
3298
+ ***
3299
+
3300
+ ```ts
3301
+ type LocationHeatmapQuery = object;
3302
+ ```
3303
+
3304
+ ## Properties
3305
+
3306
+ ### schema
3307
+
3308
+ ```ts
3309
+ schema: LocationWitnessSchema;
3310
+ ```
3311
+
3312
+ ***
3313
+
3314
+ ### startTime?
3315
+
3316
+ ```ts
3317
+ optional startTime?: string;
3318
+ ```
3319
+
3320
+ ***
3321
+
3322
+ ### stopTime?
3323
+
3324
+ ```ts
3325
+ optional stopTime?: string;
3326
+ ```
3327
+
3328
+ ### <a id="LocationHeatmapQueryCreationRequest"></a>LocationHeatmapQueryCreationRequest
3329
+
3330
+ [**@xyo-network/api**](#../README)
3331
+
3332
+ ***
3333
+
3334
+ ```ts
3335
+ type LocationHeatmapQueryCreationRequest = LocationQueryCreationRequest<LocationHeatmapQuerySchema, LocationHeatmapQuery>;
3336
+ ```
3337
+
3338
+ ### <a id="LocationHeatmapQuerySchema"></a>LocationHeatmapQuerySchema
3339
+
3340
+ [**@xyo-network/api**](#../README)
3341
+
3342
+ ***
3343
+
3344
+ ```ts
3345
+ type LocationHeatmapQuerySchema = typeof LocationHeatmapQuerySchema;
3346
+ ```
3347
+
3348
+ ### <a id="LocationQuadkeyHeatmapAnswerSchema"></a>LocationQuadkeyHeatmapAnswerSchema
3349
+
3350
+ [**@xyo-network/api**](#../README)
3351
+
3352
+ ***
3353
+
3354
+ ```ts
3355
+ type LocationQuadkeyHeatmapAnswerSchema = typeof LocationQuadkeyHeatmapAnswerSchema;
3356
+ ```
3357
+
3358
+ ### <a id="LocationQuadkeyHeatmapQuery"></a>LocationQuadkeyHeatmapQuery
3359
+
3360
+ [**@xyo-network/api**](#../README)
3361
+
3362
+ ***
3363
+
3364
+ ```ts
3365
+ type LocationQuadkeyHeatmapQuery = object;
3366
+ ```
3367
+
3368
+ ## Properties
3369
+
3370
+ ### schema
3371
+
3372
+ ```ts
3373
+ schema: LocationWitnessSchema;
3374
+ ```
3375
+
3376
+ ***
3377
+
3378
+ ### startTime?
3379
+
3380
+ ```ts
3381
+ optional startTime?: string;
3382
+ ```
3383
+
3384
+ ***
3385
+
3386
+ ### stopTime?
3387
+
3388
+ ```ts
3389
+ optional stopTime?: string;
3390
+ ```
3391
+
3392
+ ### <a id="LocationQuadkeyHeatmapQueryCreationRequest"></a>LocationQuadkeyHeatmapQueryCreationRequest
3393
+
3394
+ [**@xyo-network/api**](#../README)
3395
+
3396
+ ***
3397
+
3398
+ ```ts
3399
+ type LocationQuadkeyHeatmapQueryCreationRequest = LocationQueryCreationRequest<LocationQuadkeyHeatmapQuerySchema, LocationQuadkeyHeatmapQuery>;
3400
+ ```
3401
+
3402
+ ### <a id="LocationQuadkeyHeatmapQuerySchema"></a>LocationQuadkeyHeatmapQuerySchema
3403
+
3404
+ [**@xyo-network/api**](#../README)
3405
+
3406
+ ***
3407
+
3408
+ ```ts
3409
+ type LocationQuadkeyHeatmapQuerySchema = typeof LocationQuadkeyHeatmapQuerySchema;
3410
+ ```
3411
+
3412
+ ### <a id="LocationQuerySchema"></a>LocationQuerySchema
3413
+
3414
+ [**@xyo-network/api**](#../README)
3415
+
3416
+ ***
3417
+
3418
+ ```ts
3419
+ type LocationQuerySchema =
3420
+ | LocationQuadkeyHeatmapQuerySchema
3421
+ | LocationHeatmapQuerySchema
3422
+ | LocationTimeRangeQuerySchema;
3423
+ ```
3424
+
3425
+ ### <a id="LocationTimeRangeAnswerSchema"></a>LocationTimeRangeAnswerSchema
3426
+
3427
+ [**@xyo-network/api**](#../README)
3428
+
3429
+ ***
3430
+
3431
+ ```ts
3432
+ type LocationTimeRangeAnswerSchema = typeof LocationTimeRangeAnswerSchema;
3433
+ ```
3434
+
3435
+ ### <a id="LocationTimeRangeQuery"></a>LocationTimeRangeQuery
3436
+
3437
+ [**@xyo-network/api**](#../README)
3438
+
3439
+ ***
3440
+
3441
+ ```ts
3442
+ type LocationTimeRangeQuery = object;
3443
+ ```
3444
+
3445
+ ## Properties
3446
+
3447
+ ### schema
3448
+
3449
+ ```ts
3450
+ schema: LocationWitnessSchema;
3451
+ ```
3452
+
3453
+ ***
3454
+
3455
+ ### startTime?
3456
+
3457
+ ```ts
3458
+ optional startTime?: string;
3459
+ ```
3460
+
3461
+ ***
3462
+
3463
+ ### stopTime?
3464
+
3465
+ ```ts
3466
+ optional stopTime?: string;
3467
+ ```
3468
+
3469
+ ### <a id="LocationTimeRangeQueryCreationRequest"></a>LocationTimeRangeQueryCreationRequest
3470
+
3471
+ [**@xyo-network/api**](#../README)
3472
+
3473
+ ***
3474
+
3475
+ ```ts
3476
+ type LocationTimeRangeQueryCreationRequest = LocationQueryCreationRequest<LocationTimeRangeQuerySchema, LocationTimeRangeQuery>;
3477
+ ```
3478
+
3479
+ ### <a id="LocationTimeRangeQuerySchema"></a>LocationTimeRangeQuerySchema
3480
+
3481
+ [**@xyo-network/api**](#../README)
3482
+
3483
+ ***
3484
+
3485
+ ```ts
3486
+ type LocationTimeRangeQuerySchema = typeof LocationTimeRangeQuerySchema;
3487
+ ```
3488
+
3489
+ ### <a id="LocationWitnessPayload"></a>LocationWitnessPayload
3490
+
3491
+ [**@xyo-network/api**](#../README)
3492
+
3493
+ ***
3494
+
3495
+ ```ts
3496
+ type LocationWitnessPayload = Payload<{
3497
+ currentLocation: CurrentLocation;
3498
+ schema: LocationWitnessSchema;
3499
+ }>;
3500
+ ```
3501
+
3502
+ ### <a id="LocationWitnessSchema"></a>LocationWitnessSchema
3503
+
3504
+ [**@xyo-network/api**](#../README)
3505
+
3506
+ ***
3507
+
3508
+ ```ts
3509
+ type LocationWitnessSchema = typeof LocationWitnessSchema;
3510
+ ```
3511
+
3512
+ ### <a id="RemoteDivinerConfig"></a>RemoteDivinerConfig
3513
+
3514
+ [**@xyo-network/api**](#../README)
3515
+
3516
+ ***
3517
+
3518
+ ```ts
3519
+ type RemoteDivinerConfig = DivinerConfig & object;
3520
+ ```
3521
+
3522
+ ## Type Declaration
3523
+
3524
+ ### ~~api?~~
3525
+
3526
+ ```ts
3527
+ optional api?: ArchivistApi;
3528
+ ```
3529
+
3530
+ ### Deprecated
3531
+
3532
+ use in params instead
3533
+
3534
+ ### archive?
3535
+
3536
+ ```ts
3537
+ optional archive?: string;
3538
+ ```
3539
+
3540
+ ### schema
3541
+
3542
+ ```ts
3543
+ schema: RemoteDivinerConfigSchema;
3544
+ ```
3545
+
3546
+ ### <a id="RemoteDivinerConfigSchema"></a>RemoteDivinerConfigSchema
3547
+
3548
+ [**@xyo-network/api**](#../README)
3549
+
3550
+ ***
3551
+
3552
+ ```ts
3553
+ type RemoteDivinerConfigSchema = typeof RemoteDivinerConfigSchema;
3554
+ ```
3555
+
3556
+ ### <a id="SupportedLocationQueryCreationRequest"></a>SupportedLocationQueryCreationRequest
3557
+
3558
+ [**@xyo-network/api**](#../README)
3559
+
3560
+ ***
3561
+
3562
+ ```ts
3563
+ type SupportedLocationQueryCreationRequest =
3564
+ | LocationTimeRangeQueryCreationRequest
3565
+ | LocationHeatmapQueryCreationRequest
3566
+ | LocationQuadkeyHeatmapQueryCreationRequest;
3567
+ ```
3568
+
3569
+ ### <a id="WithArchive"></a>WithArchive
3570
+
3571
+ [**@xyo-network/api**](#../README)
3572
+
3573
+ ***
3574
+
3575
+ ```ts
3576
+ type WithArchive<ArchivistApiConfig> = ArchivistApiConfig & object;
3577
+ ```
3578
+
3579
+ ## Type Declaration
3580
+
3581
+ ### \_archive?
3582
+
3583
+ ```ts
3584
+ optional _archive?: string;
3585
+ ```
3586
+
3587
+ ## Type Parameters
3588
+
3589
+ ### ArchivistApiConfig
3590
+
3591
+ `ArchivistApiConfig`
3592
+
3593
+ ### variables
3594
+
3595
+ ### <a id="CurrentLocationWitnessSchema"></a>CurrentLocationWitnessSchema
3596
+
3597
+ [**@xyo-network/api**](#../README)
3598
+
3599
+ ***
3600
+
3601
+ ```ts
3602
+ const CurrentLocationWitnessSchema: "co.coinapp.currentlocationwitness" & object;
3603
+ ```
3604
+
3605
+ ## Type Declaration
3606
+
3607
+ ### \_\_schema
3608
+
3609
+ ```ts
3610
+ readonly __schema: true;
3611
+ ```
3612
+
3613
+ ### <a id="LocationHeatmapAnswerSchema"></a>LocationHeatmapAnswerSchema
3614
+
3615
+ [**@xyo-network/api**](#../README)
3616
+
3617
+ ***
3618
+
3619
+ ```ts
3620
+ const LocationHeatmapAnswerSchema: "network.xyo.location.heatmap.answer" & object;
3621
+ ```
3622
+
3623
+ ## Type Declaration
3624
+
3625
+ ### \_\_schema
3626
+
3627
+ ```ts
3628
+ readonly __schema: true;
3629
+ ```
3630
+
3631
+ ### <a id="LocationHeatmapQuerySchema"></a>LocationHeatmapQuerySchema
3632
+
3633
+ [**@xyo-network/api**](#../README)
3634
+
3635
+ ***
3636
+
3637
+ ```ts
3638
+ const LocationHeatmapQuerySchema: "network.xyo.location.heatmap.query" & object;
3639
+ ```
3640
+
3641
+ ## Type Declaration
3642
+
3643
+ ### \_\_schema
3644
+
3645
+ ```ts
3646
+ readonly __schema: true;
3647
+ ```
3648
+
3649
+ ### <a id="LocationQuadkeyHeatmapAnswerSchema"></a>LocationQuadkeyHeatmapAnswerSchema
3650
+
3651
+ [**@xyo-network/api**](#../README)
3652
+
3653
+ ***
3654
+
3655
+ ```ts
3656
+ const LocationQuadkeyHeatmapAnswerSchema: "network.xyo.location.heatmap.quadkey.answer" & object;
3657
+ ```
3658
+
3659
+ ## Type Declaration
3660
+
3661
+ ### \_\_schema
3662
+
3663
+ ```ts
3664
+ readonly __schema: true;
3665
+ ```
3666
+
3667
+ ### <a id="LocationQuadkeyHeatmapQuerySchema"></a>LocationQuadkeyHeatmapQuerySchema
3668
+
3669
+ [**@xyo-network/api**](#../README)
3670
+
3671
+ ***
3672
+
3673
+ ```ts
3674
+ const LocationQuadkeyHeatmapQuerySchema: "network.xyo.location.heatmap.quadkey.query" & object;
3675
+ ```
3676
+
3677
+ ## Type Declaration
3678
+
3679
+ ### \_\_schema
3680
+
3681
+ ```ts
3682
+ readonly __schema: true;
3683
+ ```
3684
+
3685
+ ### <a id="LocationTimeRangeAnswerSchema"></a>LocationTimeRangeAnswerSchema
3686
+
3687
+ [**@xyo-network/api**](#../README)
3688
+
3689
+ ***
3690
+
3691
+ ```ts
3692
+ const LocationTimeRangeAnswerSchema: "network.xyo.location.range.answer" & object;
3693
+ ```
3694
+
3695
+ ## Type Declaration
3696
+
3697
+ ### \_\_schema
3698
+
3699
+ ```ts
3700
+ readonly __schema: true;
3701
+ ```
3702
+
3703
+ ### <a id="LocationTimeRangeQuerySchema"></a>LocationTimeRangeQuerySchema
3704
+
3705
+ [**@xyo-network/api**](#../README)
3706
+
3707
+ ***
3708
+
3709
+ ```ts
3710
+ const LocationTimeRangeQuerySchema: "network.xyo.location.range.query" & object;
3711
+ ```
3712
+
3713
+ ## Type Declaration
3714
+
3715
+ ### \_\_schema
3716
+
3717
+ ```ts
3718
+ readonly __schema: true;
3719
+ ```
3720
+
3721
+ ### <a id="LocationWitnessSchema"></a>LocationWitnessSchema
3722
+
3723
+ [**@xyo-network/api**](#../README)
3724
+
3725
+ ***
3726
+
3727
+ ```ts
3728
+ const LocationWitnessSchema: "network.xyo.location" & object;
3729
+ ```
3730
+
3731
+ ## Type Declaration
3732
+
3733
+ ### \_\_schema
3734
+
3735
+ ```ts
3736
+ readonly __schema: true;
3737
+ ```
3738
+
3739
+ ### <a id="RemoteDivinerConfigSchema"></a>RemoteDivinerConfigSchema
3740
+
3741
+ [**@xyo-network/api**](#../README)
3742
+
3743
+ ***
3744
+
3745
+ ```ts
3746
+ const RemoteDivinerConfigSchema: "network.xyo.diviner.remote.config" & object;
3747
+ ```
3748
+
3749
+ ## Type Declaration
3750
+
3751
+ ### \_\_schema
3752
+
3753
+ ```ts
3754
+ readonly __schema: true;
3755
+ ```
3756
+
3757
+ ### <a id="isLocationTimeRangeQuery"></a>isLocationTimeRangeQuery
3758
+
3759
+ [**@xyo-network/api**](#../README)
3760
+
3761
+ ***
18
3762
 
19
- ## Credits
3763
+ ```ts
3764
+ const isLocationTimeRangeQuery: boolean;
3765
+ ```
20
3766
 
21
- [Made with 🔥 and ❄️ by XYO](https://xyo.network)
22
3767
 
23
- [logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png
3768
+ [logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png
3769
+ [npm-badge]: https://img.shields.io/npm/v/@xyo-network/api.svg
3770
+ [npm-link]: https://www.npmjs.com/package/@xyo-network/api
3771
+ [license-badge]: https://img.shields.io/npm/l/@xyo-network/api.svg
3772
+ [license-link]: https://github.com/xylabs/sdk-js/blob/main/LICENSE