@evercam/api 1.0.0-0261f7ecb
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/dist/api/3dFirebaseApi.d.ts +9 -0
- package/dist/api/adminApi.d.ts +304 -0
- package/dist/api/aiApi.d.ts +110 -0
- package/dist/api/authzApi.d.ts +21 -0
- package/dist/api/client/axios.d.ts +13 -0
- package/dist/api/client/customErrors.d.ts +80 -0
- package/dist/api/client/index.d.ts +5 -0
- package/dist/api/client/interceptors.d.ts +10 -0
- package/dist/api/evercamApi.d.ts +266 -0
- package/dist/api/evercamLabsApi.d.ts +46 -0
- package/dist/api/exNvrApi.d.ts +43 -0
- package/dist/api/index.d.ts +13 -0
- package/dist/api/ingestApi.d.ts +65 -0
- package/dist/api/ptzApi.d.ts +36 -0
- package/dist/api/videoWallApi.d.ts +9 -0
- package/dist/api/weatherApi.d.ts +27 -0
- package/dist/api/webRtcApi.d.ts +22 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2499 -0
- package/dist/index.js.map +1 -0
- package/dist/index.umd.cjs +2 -0
- package/dist/index.umd.cjs.map +1 -0
- package/dist/types/360.d.ts +83 -0
- package/dist/types/aconex.d.ts +45 -0
- package/dist/types/analytics.d.ts +480 -0
- package/dist/types/anpr.d.ts +100 -0
- package/dist/types/auditLogs.d.ts +99 -0
- package/dist/types/autodesk.d.ts +29 -0
- package/dist/types/automation.d.ts +6 -0
- package/dist/types/axios.d.ts +50 -0
- package/dist/types/bim.d.ts +147 -0
- package/dist/types/camera.d.ts +565 -0
- package/dist/types/comments.d.ts +36 -0
- package/dist/types/company.d.ts +46 -0
- package/dist/types/compare.d.ts +57 -0
- package/dist/types/connector.d.ts +16 -0
- package/dist/types/coolify.d.ts +18 -0
- package/dist/types/copilot.d.ts +157 -0
- package/dist/types/countries.d.ts +507 -0
- package/dist/types/credentials.d.ts +5 -0
- package/dist/types/detections.d.ts +76 -0
- package/dist/types/devices.d.ts +228 -0
- package/dist/types/drone.d.ts +17 -0
- package/dist/types/errors.d.ts +36 -0
- package/dist/types/gateReport.d.ts +441 -0
- package/dist/types/hdd.d.ts +63 -0
- package/dist/types/index.d.ts +53 -0
- package/dist/types/ingest.d.ts +43 -0
- package/dist/types/kit.d.ts +299 -0
- package/dist/types/map.d.ts +4 -0
- package/dist/types/media.d.ts +114 -0
- package/dist/types/notification.d.ts +27 -0
- package/dist/types/nvr.d.ts +36 -0
- package/dist/types/planner.d.ts +28 -0
- package/dist/types/procore.d.ts +76 -0
- package/dist/types/progressPhoto.d.ts +90 -0
- package/dist/types/project.d.ts +119 -0
- package/dist/types/recording.d.ts +124 -0
- package/dist/types/roi.d.ts +26 -0
- package/dist/types/routeParams.d.ts +50 -0
- package/dist/types/router.d.ts +67 -0
- package/dist/types/shared.d.ts +199 -0
- package/dist/types/shares.d.ts +192 -0
- package/dist/types/sim.d.ts +114 -0
- package/dist/types/siteAnalytics.d.ts +84 -0
- package/dist/types/snapshots.d.ts +50 -0
- package/dist/types/storageServers.d.ts +4 -0
- package/dist/types/streaming.d.ts +118 -0
- package/dist/types/time.d.ts +19 -0
- package/dist/types/timelapse.d.ts +99 -0
- package/dist/types/user.d.ts +276 -0
- package/dist/types/vendorModel.d.ts +15 -0
- package/dist/types/videoWall.d.ts +33 -0
- package/dist/types/voyageControl.d.ts +6 -0
- package/dist/types/weather.d.ts +83 -0
- package/dist/types/widget.d.ts +172 -0
- package/dist/utils.d.ts +9 -0
- package/package.json +49 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { DateType } from "@/types/time";
|
|
2
|
+
export type CreateCoolifyAppRequestPayload = {
|
|
3
|
+
cameraExid: string;
|
|
4
|
+
startDate: DateType;
|
|
5
|
+
modelVersion: string;
|
|
6
|
+
snapshotRequestTimeout: string | number;
|
|
7
|
+
serverUuid: string;
|
|
8
|
+
branch: string;
|
|
9
|
+
};
|
|
10
|
+
export type SaveCoolifyAppRequestPayload = {
|
|
11
|
+
contextCameraExid: string;
|
|
12
|
+
coolifyServiceId: string;
|
|
13
|
+
modelVersion: string;
|
|
14
|
+
startTime: string;
|
|
15
|
+
branchName: string;
|
|
16
|
+
snapshotRequestTimeout: string | number;
|
|
17
|
+
serverUuid: string;
|
|
18
|
+
};
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
import type { AnalyticsEventPageId, CameraExid, CameraFeatureFlag, CameraStatus, ProjectExid, ProjectFeatureFlag, ProjectStatus } from "@/types";
|
|
2
|
+
export declare enum CopilotMessageAuthor {
|
|
3
|
+
Copilot = "copilot",
|
|
4
|
+
User = "user",
|
|
5
|
+
System = "system"
|
|
6
|
+
}
|
|
7
|
+
export declare enum CopilotMessageType {
|
|
8
|
+
Text = "text",
|
|
9
|
+
Progress = "progress",
|
|
10
|
+
Error = "error",
|
|
11
|
+
Json = "json"
|
|
12
|
+
}
|
|
13
|
+
export type CopilotMessage = {
|
|
14
|
+
content: string;
|
|
15
|
+
url?: string;
|
|
16
|
+
type: CopilotMessageType;
|
|
17
|
+
id?: number;
|
|
18
|
+
conversationId?: number;
|
|
19
|
+
};
|
|
20
|
+
export declare enum CopilotStepId {
|
|
21
|
+
SendToLLM = "send_to_llm",
|
|
22
|
+
FunctionCallRequest = "function_call_request",
|
|
23
|
+
ExecFunctionCall = "exec_function_call",
|
|
24
|
+
SendToUser = "send_to_user",
|
|
25
|
+
RequestMissingFields = "request_missing_fields",
|
|
26
|
+
CompletedFieldsResponse = "completed_fields_response",
|
|
27
|
+
SendRawToolCallResponse = "send_raw_tool_call_response",
|
|
28
|
+
SubmitToolOutputsToLLM = "submit_tool_outputs_to_llm",
|
|
29
|
+
CancelCall = "cancel_call"
|
|
30
|
+
}
|
|
31
|
+
export declare enum CopilotMissingFieldsLabels {
|
|
32
|
+
ProjectExid = "Project",
|
|
33
|
+
CameraExid = "Camera",
|
|
34
|
+
FromDate = "Start date",
|
|
35
|
+
ToDate = "End date"
|
|
36
|
+
}
|
|
37
|
+
export type CopilotMissingField<T = any> = {
|
|
38
|
+
name: string;
|
|
39
|
+
label: string;
|
|
40
|
+
value: any;
|
|
41
|
+
type: string;
|
|
42
|
+
toolId: string;
|
|
43
|
+
error?: T;
|
|
44
|
+
};
|
|
45
|
+
export type CopilotMissingFields = Record<number, CopilotMissingField[]>;
|
|
46
|
+
export type UserConversations = CopilotConversation & {
|
|
47
|
+
Message: CopilotMessage[];
|
|
48
|
+
};
|
|
49
|
+
export declare enum CopilotSocketEvent {
|
|
50
|
+
ConversationStart = "conversation:start",
|
|
51
|
+
ConversationCreated = "conversation:created",
|
|
52
|
+
LLMMessageChunk = "llm:message:chunk",
|
|
53
|
+
LLMMessageComplete = "llm:message:complete",
|
|
54
|
+
LLMMessageLoading = "llm:message:loading",
|
|
55
|
+
LLMRequestCancel = "llm:request:cancel",
|
|
56
|
+
LLMRequestCanceled = "llm:request:canceled",
|
|
57
|
+
UserMessage = "user:message",
|
|
58
|
+
ContextError = "chat:contextError",
|
|
59
|
+
ChatError = "chat:chatError",
|
|
60
|
+
MissingFields = "chat:missingFields",
|
|
61
|
+
MissingFieldsCompleted = "chat:missingFields:completed",
|
|
62
|
+
SystemToolCallResponse = "system:toolCall:response",
|
|
63
|
+
ChangeProvider = "chat:changeProvider"
|
|
64
|
+
}
|
|
65
|
+
export type CopilotConversation = {
|
|
66
|
+
id: number;
|
|
67
|
+
user: string;
|
|
68
|
+
model: string;
|
|
69
|
+
context: string;
|
|
70
|
+
cameraExid: CameraExid;
|
|
71
|
+
projectExid: ProjectExid;
|
|
72
|
+
startDate: string;
|
|
73
|
+
endDate: string;
|
|
74
|
+
messagesCount: number;
|
|
75
|
+
};
|
|
76
|
+
export declare enum CopilotProvider {
|
|
77
|
+
Gemini = "gemini",
|
|
78
|
+
ChatGPT = "chatgpt"
|
|
79
|
+
}
|
|
80
|
+
export declare enum CopilotSuggestion {
|
|
81
|
+
UserManual = "user_manual",
|
|
82
|
+
GateReport = "gate_report",
|
|
83
|
+
Weather = "weather",
|
|
84
|
+
Clip = "clip",
|
|
85
|
+
Timelapse = "timelapse",
|
|
86
|
+
Chart = "chart"
|
|
87
|
+
}
|
|
88
|
+
export declare enum CopilotChatProvider {
|
|
89
|
+
Gemini = "gemini",
|
|
90
|
+
ChatGpt = "chatGpt"
|
|
91
|
+
}
|
|
92
|
+
export declare enum CopilotLayout {
|
|
93
|
+
Floating = "floating"
|
|
94
|
+
}
|
|
95
|
+
export declare enum CopilotToolId {
|
|
96
|
+
GetReports = "getReports",
|
|
97
|
+
GetVehiclesDetections = "getVehiclesDetections",
|
|
98
|
+
GetVehiclesDetectionsCounts = "getVehiclesDetectionsCounts",
|
|
99
|
+
GetWeather = "getWeather",
|
|
100
|
+
CreateClip = "createClip",
|
|
101
|
+
NavigateToPage = "navigateToPage",
|
|
102
|
+
CreateTimelapse = "createTimelapse",
|
|
103
|
+
RequestMissingFields = "requestMissingFields",
|
|
104
|
+
RenderCharts = "renderCharts"
|
|
105
|
+
}
|
|
106
|
+
export type CopilotSystemToolCallResponse<I = unknown, O = unknown> = {
|
|
107
|
+
toolId?: CopilotToolId;
|
|
108
|
+
input?: I;
|
|
109
|
+
output?: O;
|
|
110
|
+
};
|
|
111
|
+
export type CopilotCamera = {
|
|
112
|
+
name: string;
|
|
113
|
+
exid: CameraExid;
|
|
114
|
+
status: CameraStatus;
|
|
115
|
+
featureFlags?: CameraFeatureFlag[];
|
|
116
|
+
};
|
|
117
|
+
export type CopilotProject = {
|
|
118
|
+
name: string;
|
|
119
|
+
exid: ProjectExid;
|
|
120
|
+
status: ProjectStatus;
|
|
121
|
+
featureFlags?: ProjectFeatureFlag[];
|
|
122
|
+
cameras?: CopilotCamera[];
|
|
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
|
+
}
|
|
157
|
+
export type CopilotCompletedFields = Record<string, unknown>;
|
|
@@ -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
|
+
}
|