@evercam/api 1.0.0-213bdb2b3

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 (77) hide show
  1. package/README.md +1 -0
  2. package/dist/api/3dFirebaseApi.d.ts +9 -0
  3. package/dist/api/adminApi.d.ts +289 -0
  4. package/dist/api/aiApi.d.ts +79 -0
  5. package/dist/api/authzApi.d.ts +21 -0
  6. package/dist/api/client/axios.d.ts +13 -0
  7. package/dist/api/client/customErrors.d.ts +80 -0
  8. package/dist/api/client/index.d.ts +5 -0
  9. package/dist/api/client/interceptors.d.ts +9 -0
  10. package/dist/api/evercamApi.d.ts +266 -0
  11. package/dist/api/evercamLabsApi.d.ts +47 -0
  12. package/dist/api/exNvrApi.d.ts +43 -0
  13. package/dist/api/index.d.ts +13 -0
  14. package/dist/api/ingestApi.d.ts +65 -0
  15. package/dist/api/ptzApi.d.ts +36 -0
  16. package/dist/api/videoWallApi.d.ts +9 -0
  17. package/dist/api/weatherApi.d.ts +25 -0
  18. package/dist/api/webRtcApi.d.ts +22 -0
  19. package/dist/index.d.ts +3 -0
  20. package/dist/index.js +2385 -0
  21. package/dist/index.js.map +1 -0
  22. package/dist/index.umd.cjs +2 -0
  23. package/dist/index.umd.cjs.map +1 -0
  24. package/dist/types/360.d.ts +83 -0
  25. package/dist/types/aconex.d.ts +45 -0
  26. package/dist/types/analytics.d.ts +481 -0
  27. package/dist/types/anpr.d.ts +98 -0
  28. package/dist/types/auditLogs.d.ts +99 -0
  29. package/dist/types/autodesk.d.ts +29 -0
  30. package/dist/types/automation.d.ts +6 -0
  31. package/dist/types/axios.d.ts +51 -0
  32. package/dist/types/bim.d.ts +147 -0
  33. package/dist/types/camera.d.ts +563 -0
  34. package/dist/types/comments.d.ts +36 -0
  35. package/dist/types/company.d.ts +46 -0
  36. package/dist/types/compare.d.ts +57 -0
  37. package/dist/types/connector.d.ts +16 -0
  38. package/dist/types/copilot.d.ts +156 -0
  39. package/dist/types/countries.d.ts +507 -0
  40. package/dist/types/credentials.d.ts +5 -0
  41. package/dist/types/detections.d.ts +73 -0
  42. package/dist/types/devices.d.ts +228 -0
  43. package/dist/types/drone.d.ts +17 -0
  44. package/dist/types/errors.d.ts +36 -0
  45. package/dist/types/gateReport.d.ts +441 -0
  46. package/dist/types/index.d.ts +51 -0
  47. package/dist/types/ingest.d.ts +43 -0
  48. package/dist/types/kit.d.ts +295 -0
  49. package/dist/types/map.d.ts +4 -0
  50. package/dist/types/media.d.ts +114 -0
  51. package/dist/types/notification.d.ts +27 -0
  52. package/dist/types/nvr.d.ts +35 -0
  53. package/dist/types/procore.d.ts +76 -0
  54. package/dist/types/progressPhoto.d.ts +90 -0
  55. package/dist/types/project.d.ts +120 -0
  56. package/dist/types/recording.d.ts +124 -0
  57. package/dist/types/roi.d.ts +26 -0
  58. package/dist/types/routeParams.d.ts +50 -0
  59. package/dist/types/router.d.ts +67 -0
  60. package/dist/types/shared.d.ts +208 -0
  61. package/dist/types/shares.d.ts +192 -0
  62. package/dist/types/sim.d.ts +114 -0
  63. package/dist/types/siteAnalytics.d.ts +5 -0
  64. package/dist/types/sitePlanner.d.ts +26 -0
  65. package/dist/types/snapshots.d.ts +50 -0
  66. package/dist/types/storageServers.d.ts +4 -0
  67. package/dist/types/streaming.d.ts +119 -0
  68. package/dist/types/time.d.ts +19 -0
  69. package/dist/types/timelapse.d.ts +84 -0
  70. package/dist/types/user.d.ts +276 -0
  71. package/dist/types/vendorModel.d.ts +15 -0
  72. package/dist/types/videoWall.d.ts +33 -0
  73. package/dist/types/voyageControl.d.ts +6 -0
  74. package/dist/types/weather.d.ts +83 -0
  75. package/dist/types/widget.d.ts +169 -0
  76. package/dist/utils.d.ts +9 -0
  77. package/package.json +49 -0
@@ -0,0 +1,156 @@
1
+ import type { AnalyticsEventPageId, CameraExid, CameraFeatureFlag, CameraStatus, ProjectExid, ProjectFeatureFlag, ProjectStatus } from "@/types";
2
+ export declare enum CopilotMessageAuthor {
3
+ Copilot = "copilot",
4
+ User = "user"
5
+ }
6
+ export declare enum CopilotMessageType {
7
+ Text = "text",
8
+ Progress = "progress",
9
+ Error = "error",
10
+ Json = "json"
11
+ }
12
+ export type CopilotMessage = {
13
+ content: string;
14
+ url?: string;
15
+ type: CopilotMessageType;
16
+ id?: number;
17
+ conversationId?: number;
18
+ };
19
+ export declare enum CopilotStepId {
20
+ SendToLLM = "send_to_llm",
21
+ FunctionCallRequest = "function_call_request",
22
+ ExecFunctionCall = "exec_function_call",
23
+ SendToUser = "send_to_user",
24
+ RequestMissingFields = "request_missing_fields",
25
+ CompletedFieldsResponse = "completed_fields_response",
26
+ SendRawToolCallResponse = "send_raw_tool_call_response",
27
+ SubmitToolOutputsToLLM = "submit_tool_outputs_to_llm",
28
+ CancelCall = "cancel_call"
29
+ }
30
+ export declare enum CopilotMissingFieldsLabels {
31
+ ProjectExid = "Project",
32
+ CameraExid = "Camera",
33
+ FromDate = "Start date",
34
+ ToDate = "End date"
35
+ }
36
+ export type CopilotMissingField = {
37
+ name: string;
38
+ label: string;
39
+ value: any;
40
+ type: string;
41
+ toolId: string;
42
+ };
43
+ export type CopilotMissingFields = Record<number, CopilotMissingField[]>;
44
+ export type UserConversations = CopilotConversation & {
45
+ Message: CopilotMessage[];
46
+ };
47
+ export declare enum CopilotSocketEvent {
48
+ ConversationStart = "conversation:start",
49
+ ConversationCreated = "conversation:created",
50
+ LLMMessageChunk = "llm:message:chunk",
51
+ LLMMessageComplete = "llm:message:complete",
52
+ LLMMessageLoading = "llm:message:loading",
53
+ LLMRequestCancel = "llm:request:cancel",
54
+ LLMRequestCanceled = "llm:request:canceled",
55
+ UserMessage = "user:message",
56
+ ContextError = "chat:contextError",
57
+ ChatError = "chat:chatError",
58
+ MissingFields = "chat:missingFields",
59
+ MissingFieldsCompleted = "chat:missingFields:completed",
60
+ SystemToolCallResponse = "system:toolCall:response"
61
+ }
62
+ export type CopilotConversation = {
63
+ id: number;
64
+ user: string;
65
+ model: string;
66
+ context: string;
67
+ cameraExid: CameraExid;
68
+ projectExid: ProjectExid;
69
+ startDate: string;
70
+ endDate: string;
71
+ messagesCount: number;
72
+ };
73
+ export declare enum CopilotProvider {
74
+ Gemini = "gemini",
75
+ ChatGPT = "chatgpt"
76
+ }
77
+ export declare enum CopilotSuggestion {
78
+ UserManual = "user_manual",
79
+ GateReport = "gate_report",
80
+ Weather = "weather",
81
+ Clip = "clip",
82
+ Timelapse = "timelapse",
83
+ Chart = "chart"
84
+ }
85
+ export declare enum CopilotChatProvider {
86
+ Gemini = "gemini",
87
+ ChatGpt = "chatGpt"
88
+ }
89
+ export declare enum CopilotLayout {
90
+ Floating = "floating"
91
+ }
92
+ export declare enum CopilotToolId {
93
+ GetReports = "getReports",
94
+ GetVehiclesDetections = "getVehiclesDetections",
95
+ GetVehiclesDetectionsCounts = "getVehiclesDetectionsCounts",
96
+ GetWeather = "getWeather",
97
+ CreateClip = "createClip",
98
+ NavigateToPage = "navigateToPage",
99
+ CreateTimelapse = "createTimelapse",
100
+ RequestMissingFields = "requestMissingFields",
101
+ RenderCharts = "renderCharts"
102
+ }
103
+ export type CopilotSystemToolCallResponse<I = unknown, O = unknown> = {
104
+ toolId?: CopilotToolId;
105
+ input?: I;
106
+ output?: O;
107
+ };
108
+ export type CopilotCamera = {
109
+ name: string;
110
+ exid: CameraExid;
111
+ status: CameraStatus;
112
+ featureFlags?: CameraFeatureFlag[];
113
+ };
114
+ export type CopilotProject = {
115
+ name: string;
116
+ exid: ProjectExid;
117
+ status: ProjectStatus;
118
+ featureFlags?: ProjectFeatureFlag[];
119
+ cameras?: CopilotCamera[];
120
+ };
121
+ export type CopilotConversationContext = {
122
+ availableProjects: CopilotProject[];
123
+ };
124
+ export type CopilotMessageContext = {
125
+ pageId?: AnalyticsEventPageId;
126
+ selectedCamera?: CopilotCamera;
127
+ selectedProject?: CopilotProject;
128
+ };
129
+ export type CopilotMessageStep = {
130
+ args: string[];
131
+ depth: number;
132
+ id: number;
133
+ message_id: number;
134
+ step: CopilotStepId;
135
+ timestamp: string;
136
+ };
137
+ export declare enum CopilotMissingFieldComponent {
138
+ Select = "SelectField",
139
+ DateTime = "DateTimeField",
140
+ Schedule = "ScheduleField",
141
+ MultiOptions = "MultiOptionsField",
142
+ Switch = "SwitchField"
143
+ }
144
+ export declare enum CopilotMissingFieldName {
145
+ ProjectExid = "projectExid",
146
+ CameraExid = "cameraExid",
147
+ FromDate = "fromDate",
148
+ ToDate = "toDate",
149
+ Schedule = "schedule",
150
+ Duration = "duration"
151
+ }
152
+ export declare enum CopilotMissingFieldType {
153
+ Boolean = "boolean",
154
+ String = "string",
155
+ Number = "number"
156
+ }
@@ -0,0 +1,507 @@
1
+ export declare enum CountryId {
2
+ Andorra = 1,
3
+ UnitedArabEmirates = 2,
4
+ Afghanistan = 3,
5
+ AntiguaAndBarbuda = 4,
6
+ Anguilla = 5,
7
+ Albania = 6,
8
+ Armenia = 7,
9
+ NetherlandsAntilles = 8,
10
+ Angola = 9,
11
+ Antarctica = 10,
12
+ Argentina = 11,
13
+ AmericanSamoa = 12,
14
+ Austria = 13,
15
+ Australia = 14,
16
+ Aruba = 15,
17
+ AlandIslands = 16,
18
+ Azerbaijan = 17,
19
+ BosniaAndHerzegovina = 18,
20
+ Barbados = 19,
21
+ Bangladesh = 20,
22
+ Belgium = 21,
23
+ BurkinaFaso = 22,
24
+ Bulgaria = 23,
25
+ Bahrain = 24,
26
+ Burundi = 25,
27
+ Benin = 26,
28
+ Bermuda = 27,
29
+ BruneiDarussalam = 28,
30
+ Bolivia = 29,
31
+ Brazil = 30,
32
+ Bahamas = 31,
33
+ Bhutan = 32,
34
+ BouvetIsland = 33,
35
+ Botswana = 34,
36
+ Belarus = 35,
37
+ Belize = 36,
38
+ Canada = 37,
39
+ CocosKeelingIslands = 38,
40
+ CongoKinshasa = 39,
41
+ CentralAfricanRepublic = 40,
42
+ CongoBrazzaville = 41,
43
+ Switzerland = 42,
44
+ CoteDIvoire = 43,
45
+ CookIslands = 44,
46
+ Chile = 45,
47
+ Cameroon = 46,
48
+ China = 47,
49
+ Colombia = 48,
50
+ CostaRica = 49,
51
+ Cuba = 50,
52
+ CapeVerde = 51,
53
+ ChristmasIsland = 52,
54
+ Cyprus = 53,
55
+ CzechRepublic = 54,
56
+ Germany = 55,
57
+ Djibouti = 56,
58
+ Denmark = 57,
59
+ Dominica = 58,
60
+ DominicanRepublic = 59,
61
+ Algeria = 60,
62
+ Ecuador = 61,
63
+ Estonia = 62,
64
+ Egypt = 63,
65
+ WesternSahara = 64,
66
+ Eritrea = 65,
67
+ Spain = 66,
68
+ Ethiopia = 67,
69
+ Finland = 68,
70
+ Fiji = 69,
71
+ FalklandIslands = 70,
72
+ Micronesia = 71,
73
+ FaroeIslands = 72,
74
+ France = 73,
75
+ Gabon = 74,
76
+ UnitedKingdom = 75,
77
+ Grenada = 76,
78
+ Georgia = 77,
79
+ FrenchGuiana = 78,
80
+ Guernsey = 79,
81
+ Ghana = 80,
82
+ Gibraltar = 81,
83
+ Greenland = 82,
84
+ Gambia = 83,
85
+ Guinea = 84,
86
+ Guadeloupe = 85,
87
+ EquatorialGuinea = 86,
88
+ Greece = 87,
89
+ SouthGeorgiaAndTheSouthSandwichIslands = 88,
90
+ Guatemala = 89,
91
+ Guam = 90,
92
+ GuineaBissau = 91,
93
+ Guyana = 92,
94
+ HongKong = 93,
95
+ HeardIslandAndMcDonaldIslands = 94,
96
+ Honduras = 95,
97
+ Croatia = 96,
98
+ Haiti = 97,
99
+ Hungary = 98,
100
+ Indonesia = 99,
101
+ Ireland = 100,
102
+ Israel = 101,
103
+ IsleOfMan = 102,
104
+ India = 103,
105
+ BritishIndianOceanTerritory = 104,
106
+ Iraq = 105,
107
+ Iran = 106,
108
+ Iceland = 107,
109
+ Italy = 108,
110
+ Jersey = 109,
111
+ Jamaica = 110,
112
+ Jordan = 111,
113
+ Japan = 112,
114
+ Kenya = 113,
115
+ Kyrgyzstan = 114,
116
+ Cambodia = 115,
117
+ Kiribati = 116,
118
+ Comoros = 117,
119
+ SaintKittsAndNevis = 118,
120
+ NorthKorea = 119,
121
+ SouthKorea = 120,
122
+ Kuwait = 121,
123
+ CaymanIslands = 122,
124
+ Kazakhstan = 123,
125
+ Laos = 124,
126
+ Lebanon = 125,
127
+ SaintLucia = 126,
128
+ Liechtenstein = 127,
129
+ SriLanka = 128,
130
+ Liberia = 129,
131
+ Lesotho = 130,
132
+ Lithuania = 131,
133
+ Luxembourg = 132,
134
+ Latvia = 133,
135
+ LibyanArabJamahiriya = 134,
136
+ Morocco = 135,
137
+ Monaco = 136,
138
+ Moldova = 137,
139
+ Montenegro = 138,
140
+ Madagascar = 139,
141
+ MarshallIslands = 140,
142
+ Macedonia = 141,
143
+ Mali = 142,
144
+ Myanmar = 143,
145
+ Mongolia = 144,
146
+ Macao = 145,
147
+ NorthernMarianaIslands = 146,
148
+ Martinique = 147,
149
+ Mauritania = 148,
150
+ Montserrat = 149,
151
+ Malta = 150,
152
+ Mauritius = 151,
153
+ Maldives = 152,
154
+ Malawi = 153,
155
+ Mexico = 154,
156
+ Malaysia = 155,
157
+ Mozambique = 156,
158
+ Namibia = 157,
159
+ NewCaledonia = 158,
160
+ Niger = 159,
161
+ NorfolkIsland = 160,
162
+ Nigeria = 161,
163
+ Nicaragua = 162,
164
+ Netherlands = 163,
165
+ Norway = 164,
166
+ Nepal = 165,
167
+ Nauru = 166,
168
+ Niue = 167,
169
+ NewZealand = 168,
170
+ Oman = 169,
171
+ Panama = 170,
172
+ Peru = 171,
173
+ FrenchPolynesia = 172,
174
+ PapuaNewGuinea = 173,
175
+ Philippines = 174,
176
+ Pakistan = 175,
177
+ Poland = 176,
178
+ SaintPierreAndMiquelon = 177,
179
+ Pitcairn = 178,
180
+ PuertoRico = 179,
181
+ PalestinianTerritory = 180,
182
+ Portugal = 181,
183
+ Palau = 182,
184
+ Paraguay = 183,
185
+ Qatar = 184,
186
+ Reunion = 185,
187
+ Romania = 186,
188
+ Serbia = 187,
189
+ RussianFederation = 188,
190
+ Rwanda = 189,
191
+ SaudiArabia = 190,
192
+ SolomonIslands = 191,
193
+ Seychelles = 192,
194
+ Sudan = 193,
195
+ Sweden = 194,
196
+ Singapore = 195,
197
+ SaintHelena = 196,
198
+ Slovenia = 197,
199
+ SvalbardAndJanMayen = 198,
200
+ Slovakia = 199,
201
+ SierraLeone = 200,
202
+ SanMarino = 201,
203
+ Senegal = 202,
204
+ Somalia = 203,
205
+ Suriname = 204,
206
+ SaoTomeAndPrincipe = 205,
207
+ ElSalvador = 206,
208
+ SyrianArabRepublic = 207,
209
+ Swaziland = 208,
210
+ TurksAndCaicosIslands = 209,
211
+ Chad = 210,
212
+ FrenchSouthernTerritories = 211,
213
+ Togo = 212,
214
+ Thailand = 213,
215
+ Tajikistan = 214,
216
+ Tokelau = 215,
217
+ TimorLeste = 216,
218
+ Turkmenistan = 217,
219
+ Tunisia = 218,
220
+ Tonga = 219,
221
+ Turkey = 220,
222
+ TrinidadAndTobago = 221,
223
+ Tuvalu = 222,
224
+ Taiwan = 223,
225
+ Tanzania = 224,
226
+ Ukraine = 225,
227
+ Uganda = 226,
228
+ UnitedStatesMinorOutlyingIslands = 227,
229
+ UnitedStates = 228,
230
+ Uruguay = 229,
231
+ Uzbekistan = 230,
232
+ VaticanCityState = 231,
233
+ SaintVincentAndTheGrenadines = 232,
234
+ Venezuela = 233,
235
+ VirginIslandsBritish = 234,
236
+ VirginIslandsUS = 235,
237
+ VietNam = 236,
238
+ Vanuatu = 237,
239
+ WallisAndFutuna = 238,
240
+ Samoa = 239,
241
+ Yemen = 240,
242
+ Mayotte = 241,
243
+ SouthAfrica = 242,
244
+ Zambia = 243,
245
+ Zimbabwe = 244
246
+ }
247
+ export declare enum CountryCode {
248
+ Andorra = "ad",
249
+ UnitedArabEmirates = "ae",
250
+ Afghanistan = "af",
251
+ AntiguaAndBarbuda = "ag",
252
+ Anguilla = "ai",
253
+ Albania = "al",
254
+ Armenia = "am",
255
+ NetherlandsAntilles = "an",
256
+ Angola = "ao",
257
+ Antarctica = "aq",
258
+ Argentina = "ar",
259
+ AmericanSamoa = "as",
260
+ Austria = "at",
261
+ Australia = "au",
262
+ Aruba = "aw",
263
+ AlandIslands = "ax",
264
+ Azerbaijan = "az",
265
+ BosniaAndHerzegovina = "ba",
266
+ Barbados = "bb",
267
+ Bangladesh = "bd",
268
+ Belgium = "be",
269
+ BurkinaFaso = "bf",
270
+ Bulgaria = "bg",
271
+ Bahrain = "bh",
272
+ Burundi = "bi",
273
+ Benin = "bj",
274
+ Bermuda = "bm",
275
+ BruneiDarussalam = "bn",
276
+ Bolivia = "bo",
277
+ Brazil = "br",
278
+ Bahamas = "bs",
279
+ Bhutan = "bt",
280
+ BouvetIsland = "bv",
281
+ Botswana = "bw",
282
+ Belarus = "by",
283
+ Belize = "bz",
284
+ Canada = "ca",
285
+ CocosKeelingIslands = "cc",
286
+ CongoKinshasa = "cd",
287
+ CentralAfricanRepublic = "cf",
288
+ CongoBrazzaville = "cg",
289
+ Switzerland = "ch",
290
+ CoteDIvoire = "ci",
291
+ CookIslands = "ck",
292
+ Chile = "cl",
293
+ Cameroon = "cm",
294
+ China = "cn",
295
+ Colombia = "co",
296
+ CostaRica = "cr",
297
+ Cuba = "cu",
298
+ CapeVerde = "cv",
299
+ ChristmasIsland = "cx",
300
+ Cyprus = "cy",
301
+ CzechRepublic = "cz",
302
+ Germany = "de",
303
+ Djibouti = "dj",
304
+ Denmark = "dk",
305
+ Dominica = "dm",
306
+ DominicanRepublic = "do",
307
+ Algeria = "dz",
308
+ Ecuador = "ec",
309
+ Estonia = "ee",
310
+ Egypt = "eg",
311
+ WesternSahara = "eh",
312
+ Eritrea = "er",
313
+ Spain = "es",
314
+ Ethiopia = "et",
315
+ Finland = "fi",
316
+ Fiji = "fj",
317
+ FalklandIslands = "fk",
318
+ Micronesia = "fm",
319
+ FaroeIslands = "fo",
320
+ France = "fr",
321
+ Gabon = "ga",
322
+ UnitedKingdom = "gb",
323
+ Grenada = "gd",
324
+ Georgia = "ge",
325
+ FrenchGuiana = "gf",
326
+ Guernsey = "gg",
327
+ Ghana = "gh",
328
+ Gibraltar = "gi",
329
+ Greenland = "gl",
330
+ Gambia = "gm",
331
+ Guinea = "gn",
332
+ Guadeloupe = "gp",
333
+ EquatorialGuinea = "gq",
334
+ Greece = "gr",
335
+ SouthGeorgiaAndTheSouthSandwichIslands = "gs",
336
+ Guatemala = "gt",
337
+ Guam = "gu",
338
+ GuineaBissau = "gw",
339
+ Guyana = "gy",
340
+ HongKong = "hk",
341
+ HeardIslandAndMcDonaldIslands = "hm",
342
+ Honduras = "hn",
343
+ Croatia = "hr",
344
+ Haiti = "ht",
345
+ Hungary = "hu",
346
+ Indonesia = "id",
347
+ Ireland = "ie",
348
+ Israel = "il",
349
+ IsleOfMan = "im",
350
+ India = "in",
351
+ BritishIndianOceanTerritory = "io",
352
+ Iraq = "iq",
353
+ Iran = "ir",
354
+ Iceland = "is",
355
+ Italy = "it",
356
+ Jersey = "je",
357
+ Jamaica = "jm",
358
+ Jordan = "jo",
359
+ Japan = "jp",
360
+ Kenya = "ke",
361
+ Kyrgyzstan = "kg",
362
+ Cambodia = "kh",
363
+ Kiribati = "ki",
364
+ Comoros = "km",
365
+ SaintKittsAndNevis = "kn",
366
+ NorthKorea = "kp",
367
+ SouthKorea = "kr",
368
+ Kuwait = "kw",
369
+ CaymanIslands = "ky",
370
+ Kazakhstan = "kz",
371
+ Laos = "la",
372
+ Lebanon = "lb",
373
+ SaintLucia = "lc",
374
+ Liechtenstein = "li",
375
+ SriLanka = "lk",
376
+ Liberia = "lr",
377
+ Lesotho = "ls",
378
+ Lithuania = "lt",
379
+ Luxembourg = "lu",
380
+ Latvia = "lv",
381
+ LibyanArabJamahiriya = "ly",
382
+ Morocco = "ma",
383
+ Monaco = "mc",
384
+ Moldova = "md",
385
+ Montenegro = "me",
386
+ Madagascar = "mg",
387
+ MarshallIslands = "mh",
388
+ Macedonia = "mk",
389
+ Mali = "ml",
390
+ Myanmar = "mm",
391
+ Mongolia = "mn",
392
+ Macao = "mo",
393
+ NorthernMarianaIslands = "mp",
394
+ Martinique = "mq",
395
+ Mauritania = "mr",
396
+ Montserrat = "ms",
397
+ Malta = "mt",
398
+ Mauritius = "mu",
399
+ Maldives = "mv",
400
+ Malawi = "mw",
401
+ Mexico = "mx",
402
+ Malaysia = "my",
403
+ Mozambique = "mz",
404
+ Namibia = "na",
405
+ NewCaledonia = "nc",
406
+ Niger = "ne",
407
+ NorfolkIsland = "nf",
408
+ Nigeria = "ng",
409
+ Nicaragua = "ni",
410
+ Netherlands = "nl",
411
+ Norway = "no",
412
+ Nepal = "np",
413
+ Nauru = "nr",
414
+ Niue = "nu",
415
+ NewZealand = "nz",
416
+ Oman = "om",
417
+ Panama = "pa",
418
+ Peru = "pe",
419
+ FrenchPolynesia = "pf",
420
+ PapuaNewGuinea = "pg",
421
+ Philippines = "ph",
422
+ Pakistan = "pk",
423
+ Poland = "pl",
424
+ SaintPierreAndMiquelon = "pm",
425
+ Pitcairn = "pn",
426
+ PuertoRico = "pr",
427
+ PalestinianTerritory = "ps",
428
+ Portugal = "pt",
429
+ Palau = "pw",
430
+ Paraguay = "py",
431
+ Qatar = "qa",
432
+ Reunion = "re",
433
+ Romania = "ro",
434
+ Serbia = "rs",
435
+ RussianFederation = "ru",
436
+ Rwanda = "rw",
437
+ SaudiArabia = "sa",
438
+ SolomonIslands = "sb",
439
+ Seychelles = "sc",
440
+ Sudan = "sd",
441
+ Sweden = "se",
442
+ Singapore = "sg",
443
+ SaintHelena = "sh",
444
+ Slovenia = "si",
445
+ SvalbardAndJanMayen = "sj",
446
+ Slovakia = "sk",
447
+ SierraLeone = "sl",
448
+ SanMarino = "sm",
449
+ Senegal = "sn",
450
+ Somalia = "so",
451
+ Suriname = "sr",
452
+ SaoTomeAndPrincipe = "st",
453
+ ElSalvador = "sv",
454
+ SyrianArabRepublic = "sy",
455
+ Swaziland = "sz",
456
+ TurksAndCaicosIslands = "tc",
457
+ Chad = "td",
458
+ FrenchSouthernTerritories = "tf",
459
+ Togo = "tg",
460
+ Thailand = "th",
461
+ Tajikistan = "tj",
462
+ Tokelau = "tk",
463
+ TimorLeste = "tl",
464
+ Turkmenistan = "tm",
465
+ Tunisia = "tn",
466
+ Tonga = "to",
467
+ Turkey = "tr",
468
+ TrinidadAndTobago = "tt",
469
+ Tuvalu = "tv",
470
+ Taiwan = "tw",
471
+ Tanzania = "tz",
472
+ Ukraine = "ua",
473
+ Uganda = "ug",
474
+ UnitedStatesMinorOutlyingIslands = "um",
475
+ UnitedStates = "us",
476
+ Uruguay = "uy",
477
+ Uzbekistan = "uz",
478
+ VaticanCityState = "va",
479
+ SaintVincentAndTheGrenadines = "vc",
480
+ Venezuela = "ve",
481
+ VirginIslandsBritish = "vg",
482
+ VirginIslandsUS = "vi",
483
+ VietNam = "vn",
484
+ Vanuatu = "vu",
485
+ WallisAndFutuna = "wf",
486
+ Samoa = "ws",
487
+ Yemen = "ye",
488
+ Mayotte = "yt",
489
+ SouthAfrica = "za",
490
+ Zambia = "zm",
491
+ Zimbabwe = "zw"
492
+ }
493
+ export declare enum Region {
494
+ Apac = "apac",
495
+ Emea = "emea",
496
+ Us = "us",
497
+ Latam = "latam",
498
+ Na = "na"
499
+ }
500
+ export declare enum CameraRegion {
501
+ APAC = "apac",
502
+ AU = "au",
503
+ EU = "eu",
504
+ UK = "uk",
505
+ IE = "ie",
506
+ US = "us"
507
+ }
@@ -0,0 +1,5 @@
1
+ export type ApiCredentials = {
2
+ apiKey?: string;
3
+ apiId?: string;
4
+ token?: string;
5
+ };