@evercam/api 1.0.0-1b85d13c0 → 1.0.0-1c3e516cc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/api/aiApi.d.ts +32 -1
- package/dist/api/api/ingestApi.d.ts +2 -1
- package/dist/api/types/aiConfigs.d.ts +154 -0
- package/dist/api/types/gateReportManagement.d.ts +151 -0
- package/dist/api/types/index.d.ts +2 -0
- package/dist/api/types/recording.d.ts +0 -7
- package/dist/api/utils.d.ts +0 -1
- package/dist/index.js +424 -300
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/dist/shared/types/components.d.ts +2 -1
- package/package.json +1 -1
package/dist/api/api/aiApi.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AnprQueryParams, AnprEvent, EventCountRequestPayload, EventCountResponsePayload, EventsExportRequestParameters, GateReportROI, PaginatedItems, GateReportVerifiedDay, ProjectExid, CameraExid, AnprCountsQueryParams, AnprCount, AnprBasedGateReportExportRequestParams, GateReportResponsePayload, GatReportRequestPayload, VerifiedDaysQueryParams, VerifyDayUpdateRequestPayload, ProcessedDaysQueryParams, RoisQueryParams, GateReportRoiRequestPayload, SegmentsSimilaritySearchParams, DetectionsFilters, TrackingsByLabel, SegmentsByLabel, DetectionsCountsParams, DetectionsPresenceByLabel, SmartSearchBackendQueryPayload, SavedQuery, DateType, DetectionsRequestParams, DetectionsGroup, DetectionsCountsByPeriod, DetectionsExportRequestParams, SegmentsFilters, DownloadFileType, SmartSearchBackendQuery, SmartSearchHeatmapData, SmartSearchOperatorType, DetectionLabel, SmartSearchResponse, SmartSearchRequestPayload, LegacyAnprExportParams, AnprBulkUpdateRequestPayload, AnprUpdateRequestPayload, SmartSearchQueriesRequestPayload, _360FloorId, CreateCoolifyAppRequestPayload, RegisterCoolifyAppResponsePayload, SaveCoolifyAppRequestPayload, SegmentsCountsParams, SegmentsPresenceResponse } from "@evercam/api/types";
|
|
1
|
+
import { AnprQueryParams, AnprEvent, EventCountRequestPayload, EventCountResponsePayload, EventsExportRequestParameters, GateReportROI, PaginatedItems, GateReportVerifiedDay, ProjectExid, CameraExid, AnprCountsQueryParams, AnprCount, AnprBasedGateReportExportRequestParams, GateReportResponsePayload, GatReportRequestPayload, VerifiedDaysQueryParams, VerifyDayUpdateRequestPayload, ProcessedDaysQueryParams, RoisQueryParams, GateReportRoiRequestPayload, SegmentsSimilaritySearchParams, DetectionsFilters, TrackingsByLabel, SegmentsByLabel, DetectionsCountsParams, DetectionsPresenceByLabel, SmartSearchBackendQueryPayload, SavedQuery, DateType, DetectionsRequestParams, DetectionsGroup, DetectionsCountsByPeriod, DetectionsExportRequestParams, SegmentsFilters, DownloadFileType, SmartSearchBackendQuery, SmartSearchHeatmapData, SmartSearchOperatorType, DetectionLabel, SmartSearchResponse, SmartSearchRequestPayload, LegacyAnprExportParams, AnprBulkUpdateRequestPayload, AnprUpdateRequestPayload, SmartSearchQueriesRequestPayload, _360FloorId, CreateCoolifyAppRequestPayload, RegisterCoolifyAppResponsePayload, SaveCoolifyAppRequestPayload, SegmentsCountsParams, SegmentsPresenceResponse, AiPrompt, AiPromptCreatePayload, AiPromptCreateResponse, AiPromptDeleteResponse, AiPromptListResponse, AiPromptQueryParams, AiPromptUpdatePayload, AiPromptUpdateResponse, AiApiKey, AiApiKeyCreatePayload, AiApiKeyCreateResponse, AiApiKeyDeleteResponse, AiApiKeyQueryParams, AiApiKeyUpdatePayload, AiApiKeyUpdateResponse, APIEnvelope, AppActionResponse, AppRuntimeState, CoolifyProjectOption, CoolifyServerOption, CreateGateReportAppPayload, CreateGateReportAppResponse, GateReportAppEvents, GateReportManagedApp, GateReportManagementListParams, UpdateGateReportAppPayload } from "@evercam/api/types";
|
|
2
2
|
import type { AxiosPromise, AxiosRequestConfig } from "axios";
|
|
3
3
|
export declare const getAiApiUrl: () => string;
|
|
4
4
|
export declare const getAiApiUrlV2: () => string;
|
|
@@ -125,4 +125,35 @@ export declare const AiApi: {
|
|
|
125
125
|
fovChanges: {
|
|
126
126
|
getCameraFovChanges(cameraExid: string, extraConfig?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
127
127
|
};
|
|
128
|
+
prompts: {
|
|
129
|
+
list(params?: AiPromptQueryParams): Promise<AiPromptListResponse>;
|
|
130
|
+
get(promptId: number): Promise<AiPrompt>;
|
|
131
|
+
create(payload: AiPromptCreatePayload): Promise<AiPromptCreateResponse>;
|
|
132
|
+
update(promptId: number, payload: AiPromptUpdatePayload): Promise<AiPromptUpdateResponse>;
|
|
133
|
+
delete(promptId: number): Promise<AiPromptDeleteResponse>;
|
|
134
|
+
};
|
|
135
|
+
apiKeys: {
|
|
136
|
+
list(params?: AiApiKeyQueryParams): Promise<AiApiKey[]>;
|
|
137
|
+
purposes(): Promise<string[]>;
|
|
138
|
+
get(keyId: number): Promise<AiApiKey>;
|
|
139
|
+
create(payload: AiApiKeyCreatePayload): Promise<AiApiKeyCreateResponse>;
|
|
140
|
+
update(keyId: number, payload: AiApiKeyUpdatePayload): Promise<AiApiKeyUpdateResponse>;
|
|
141
|
+
delete(keyId: number, revoke?: boolean): Promise<AiApiKeyDeleteResponse>;
|
|
142
|
+
};
|
|
143
|
+
gateReportManagement: {
|
|
144
|
+
listApps(params?: GateReportManagementListParams): Promise<PaginatedItems<GateReportManagedApp>>;
|
|
145
|
+
getApp(projectExid: ProjectExid, cameraExid: CameraExid): Promise<APIEnvelope<GateReportManagedApp>>;
|
|
146
|
+
listAppEvents(projectExid?: ProjectExid): Promise<APIEnvelope<GateReportAppEvents[]>>;
|
|
147
|
+
createApp(payload: CreateGateReportAppPayload): Promise<CreateGateReportAppResponse>;
|
|
148
|
+
updateApp(projectExid: ProjectExid, cameraExid: CameraExid, payload: UpdateGateReportAppPayload): Promise<APIEnvelope<GateReportManagedApp>>;
|
|
149
|
+
deleteApp(projectExid: ProjectExid, cameraExid: CameraExid): Promise<{
|
|
150
|
+
deleted: boolean;
|
|
151
|
+
count: number;
|
|
152
|
+
message: string;
|
|
153
|
+
}>;
|
|
154
|
+
setAppState(projectExid: ProjectExid, cameraExid: CameraExid, state: AppRuntimeState): Promise<APIEnvelope<AppActionResponse>>;
|
|
155
|
+
listCoolifyProjects(): Promise<APIEnvelope<CoolifyProjectOption[]>>;
|
|
156
|
+
listCoolifyServers(): Promise<APIEnvelope<CoolifyServerOption[]>>;
|
|
157
|
+
listImageTags(): Promise<APIEnvelope<string[]>>;
|
|
158
|
+
};
|
|
128
159
|
};
|
|
@@ -68,7 +68,8 @@ export declare const IngestApi: {
|
|
|
68
68
|
createDrawing(projectExid: string, payload: GenerateFloorPayload, createdBy: string): Promise<_360FloorV2>;
|
|
69
69
|
fetchDrawingOverlay(id: number, params: {
|
|
70
70
|
view: boolean;
|
|
71
|
-
|
|
71
|
+
thumbnail?: boolean;
|
|
72
|
+
}, onDownloadProgress?: (progress: ProgressEvent) => void): Promise<string>;
|
|
72
73
|
getFloorArchive(id: number): Promise<string>;
|
|
73
74
|
generate360map(projectId: string, params: Generate360MapRequestPayload): Promise<JsonObject>;
|
|
74
75
|
get360QueueSize(ingestUrl: string, params?: _360QueueQueryParams): Promise<_360QueueResponse>;
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
export declare enum AiApp {
|
|
2
|
+
GateReport = "gate_report",
|
|
3
|
+
Ppe = "ppe",
|
|
4
|
+
SiteAnalytics = "site_analytics"
|
|
5
|
+
}
|
|
6
|
+
export declare enum AiProvider {
|
|
7
|
+
Gemini = "gemini",
|
|
8
|
+
OpenAi = "openai",
|
|
9
|
+
Anthropic = "anthropic"
|
|
10
|
+
}
|
|
11
|
+
export declare enum AiConfigsPromptDialogMode {
|
|
12
|
+
Create = "create",
|
|
13
|
+
Edit = "edit",
|
|
14
|
+
View = "view"
|
|
15
|
+
}
|
|
16
|
+
export declare enum AiConfigsKeyDialogMode {
|
|
17
|
+
Create = "create",
|
|
18
|
+
Rotate = "rotate",
|
|
19
|
+
Rename = "rename"
|
|
20
|
+
}
|
|
21
|
+
export interface AiAppConfig {
|
|
22
|
+
bg: string;
|
|
23
|
+
fg: string;
|
|
24
|
+
border: string;
|
|
25
|
+
icon: string;
|
|
26
|
+
}
|
|
27
|
+
export declare const AI_APP_CONFIGS: Record<AiApp | "generic", AiAppConfig>;
|
|
28
|
+
export interface AiProviderConfig {
|
|
29
|
+
bg: string;
|
|
30
|
+
fg: string;
|
|
31
|
+
icon: string;
|
|
32
|
+
}
|
|
33
|
+
export declare const AI_PROVIDER_CONFIGS: Record<AiProvider, AiProviderConfig>;
|
|
34
|
+
export declare enum AiPromptModel {
|
|
35
|
+
Gemini3Pro = "gemini-3-pro",
|
|
36
|
+
Gemini3FlashPreview = "gemini-3-flash-preview",
|
|
37
|
+
Gemini25Pro = "gemini-2.5-pro",
|
|
38
|
+
Gemini25Flash = "gemini-2.5-flash",
|
|
39
|
+
Gemini20Flash = "gemini-2.0-flash",
|
|
40
|
+
Gpt5 = "gpt-5",
|
|
41
|
+
Gpt5Mini = "gpt-5-mini",
|
|
42
|
+
Gpt4o = "gpt-4o",
|
|
43
|
+
Gpt4oMini = "gpt-4o-mini",
|
|
44
|
+
ClaudeOpus45 = "claude-opus-4-5",
|
|
45
|
+
ClaudeSonnet46 = "claude-sonnet-4-6",
|
|
46
|
+
ClaudeHaiku45 = "claude-haiku-4-5"
|
|
47
|
+
}
|
|
48
|
+
export interface AiPrompt {
|
|
49
|
+
id: number;
|
|
50
|
+
title: string | null;
|
|
51
|
+
purpose: string | null;
|
|
52
|
+
app: string | null;
|
|
53
|
+
model: string | null;
|
|
54
|
+
prompt: string;
|
|
55
|
+
outputSchema: Record<string, unknown> | null;
|
|
56
|
+
createdBy: string;
|
|
57
|
+
createdAt: string;
|
|
58
|
+
updatedAt: string;
|
|
59
|
+
}
|
|
60
|
+
export interface AiPromptCreatePayload {
|
|
61
|
+
title?: string | null;
|
|
62
|
+
purpose: string;
|
|
63
|
+
app: string;
|
|
64
|
+
model?: string | null;
|
|
65
|
+
prompt: string;
|
|
66
|
+
outputSchema?: Record<string, unknown> | null;
|
|
67
|
+
}
|
|
68
|
+
export interface AiPromptUpdatePayload {
|
|
69
|
+
title?: string | null;
|
|
70
|
+
purpose?: string;
|
|
71
|
+
app?: string;
|
|
72
|
+
model?: string | null;
|
|
73
|
+
prompt?: string;
|
|
74
|
+
outputSchema?: Record<string, unknown> | null;
|
|
75
|
+
}
|
|
76
|
+
export type AiPromptQueryParams = {
|
|
77
|
+
app?: string;
|
|
78
|
+
purpose?: string;
|
|
79
|
+
model?: string;
|
|
80
|
+
search?: string;
|
|
81
|
+
createdBy?: string;
|
|
82
|
+
page?: number;
|
|
83
|
+
limit?: number;
|
|
84
|
+
};
|
|
85
|
+
export interface AiPromptListResponse {
|
|
86
|
+
items: AiPrompt[];
|
|
87
|
+
total: number;
|
|
88
|
+
page: number;
|
|
89
|
+
limit: number;
|
|
90
|
+
from: number;
|
|
91
|
+
to: number;
|
|
92
|
+
}
|
|
93
|
+
export interface AiPromptCreateResponse {
|
|
94
|
+
created: boolean;
|
|
95
|
+
data: AiPrompt;
|
|
96
|
+
message: string;
|
|
97
|
+
}
|
|
98
|
+
export interface AiPromptUpdateResponse {
|
|
99
|
+
updated: boolean;
|
|
100
|
+
id: number | string;
|
|
101
|
+
message: string;
|
|
102
|
+
}
|
|
103
|
+
export interface AiPromptDeleteResponse {
|
|
104
|
+
deleted: boolean;
|
|
105
|
+
count: number;
|
|
106
|
+
message: string;
|
|
107
|
+
}
|
|
108
|
+
export interface AiApiKey {
|
|
109
|
+
id: number;
|
|
110
|
+
projectExid: string;
|
|
111
|
+
provider: string;
|
|
112
|
+
name: string;
|
|
113
|
+
purpose: string;
|
|
114
|
+
enabled: boolean;
|
|
115
|
+
autoGenerated: boolean;
|
|
116
|
+
firstUsedAt: string | null;
|
|
117
|
+
lastUsedAt: string | null;
|
|
118
|
+
insertedAt: string;
|
|
119
|
+
updatedAt: string;
|
|
120
|
+
}
|
|
121
|
+
export interface AiApiKeyCreatePayload {
|
|
122
|
+
projectExid: string;
|
|
123
|
+
provider: string;
|
|
124
|
+
name?: string;
|
|
125
|
+
purpose?: string;
|
|
126
|
+
apiKey?: string;
|
|
127
|
+
enabled?: boolean;
|
|
128
|
+
}
|
|
129
|
+
export interface AiApiKeyUpdatePayload {
|
|
130
|
+
name?: string;
|
|
131
|
+
enabled?: boolean;
|
|
132
|
+
apiKey?: string;
|
|
133
|
+
}
|
|
134
|
+
export type AiApiKeyQueryParams = {
|
|
135
|
+
projectExid?: string;
|
|
136
|
+
provider?: string;
|
|
137
|
+
purpose?: string;
|
|
138
|
+
enabled?: boolean;
|
|
139
|
+
};
|
|
140
|
+
export interface AiApiKeyCreateResponse {
|
|
141
|
+
created: boolean;
|
|
142
|
+
data: AiApiKey;
|
|
143
|
+
message: string;
|
|
144
|
+
}
|
|
145
|
+
export interface AiApiKeyUpdateResponse {
|
|
146
|
+
updated: boolean;
|
|
147
|
+
id: number | string;
|
|
148
|
+
message: string;
|
|
149
|
+
}
|
|
150
|
+
export interface AiApiKeyDeleteResponse {
|
|
151
|
+
deleted: boolean;
|
|
152
|
+
count: number;
|
|
153
|
+
message: string;
|
|
154
|
+
}
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
import { CameraExid, DateType, ProjectExid } from "@evercam/api/types";
|
|
2
|
+
export declare enum VehicleClassifierSource {
|
|
3
|
+
Local = "local",
|
|
4
|
+
Api = "api"
|
|
5
|
+
}
|
|
6
|
+
export type GateReportCoolifyStatus = {
|
|
7
|
+
appUuid: string | null;
|
|
8
|
+
name: string | null;
|
|
9
|
+
serverUuid: string | null;
|
|
10
|
+
serverName: string | null;
|
|
11
|
+
appUrl: string | null;
|
|
12
|
+
status: string | null;
|
|
13
|
+
isRunning: boolean;
|
|
14
|
+
fqdn: string | null;
|
|
15
|
+
updatedAt: string | null;
|
|
16
|
+
};
|
|
17
|
+
export type GateReportProjectMeta = {
|
|
18
|
+
exid: ProjectExid;
|
|
19
|
+
name: string | null;
|
|
20
|
+
timezone: string | null;
|
|
21
|
+
featureFlags: string[] | null;
|
|
22
|
+
};
|
|
23
|
+
export type GateReportCameraMeta = {
|
|
24
|
+
exid: CameraExid;
|
|
25
|
+
name: string | null;
|
|
26
|
+
status: string | null;
|
|
27
|
+
kitSerial: string | null;
|
|
28
|
+
kitAlarms: string[] | Record<string, unknown> | null;
|
|
29
|
+
};
|
|
30
|
+
export type GateReportManagedApp = {
|
|
31
|
+
id: number;
|
|
32
|
+
projectExid: ProjectExid;
|
|
33
|
+
anprCameraExid: CameraExid;
|
|
34
|
+
contextCameraExid: CameraExid | null;
|
|
35
|
+
coolifyAppId: string | null;
|
|
36
|
+
startDate: DateType | null;
|
|
37
|
+
endDate: DateType | null;
|
|
38
|
+
startHour: number;
|
|
39
|
+
endHour: number;
|
|
40
|
+
enabled: boolean;
|
|
41
|
+
enableEnrichments: boolean;
|
|
42
|
+
reviewModel: string;
|
|
43
|
+
enrichmentModel: string;
|
|
44
|
+
geminiTimeoutSeconds: number;
|
|
45
|
+
geminiMaxAttempts: number;
|
|
46
|
+
vehicleClassifierSource: VehicleClassifierSource;
|
|
47
|
+
snapshotDelaySeconds: number;
|
|
48
|
+
snapshotRequestTimeout: number;
|
|
49
|
+
plateClassifierThreshold: number;
|
|
50
|
+
plateClassifierHighConfidence: number;
|
|
51
|
+
maxPriorEvents: number;
|
|
52
|
+
recordsFetchInterval: number;
|
|
53
|
+
insertedAt: DateType;
|
|
54
|
+
updatedAt: DateType;
|
|
55
|
+
coolify: GateReportCoolifyStatus | null;
|
|
56
|
+
project: GateReportProjectMeta | null;
|
|
57
|
+
anprCamera: GateReportCameraMeta | null;
|
|
58
|
+
contextCamera: GateReportCameraMeta | null;
|
|
59
|
+
lastProcessedEventAt: DateType | null;
|
|
60
|
+
lastUnprocessedEventAt: DateType | null;
|
|
61
|
+
};
|
|
62
|
+
export type GateReportAppEvents = {
|
|
63
|
+
anprCameraExid: CameraExid;
|
|
64
|
+
lastProcessedEventAt: DateType | null;
|
|
65
|
+
lastUnprocessedEventAt: DateType | null;
|
|
66
|
+
};
|
|
67
|
+
export type AppConfigFormValue = {
|
|
68
|
+
contextCameraExid: string | null;
|
|
69
|
+
startDate: DateType | null;
|
|
70
|
+
endDate: DateType | null;
|
|
71
|
+
startHour: number;
|
|
72
|
+
endHour: number;
|
|
73
|
+
enabled: boolean;
|
|
74
|
+
enableEnrichments: boolean;
|
|
75
|
+
reviewModel: string;
|
|
76
|
+
enrichmentModel: string;
|
|
77
|
+
geminiTimeoutSeconds: number;
|
|
78
|
+
geminiMaxAttempts: number;
|
|
79
|
+
vehicleClassifierSource: VehicleClassifierSource;
|
|
80
|
+
snapshotDelaySeconds: number;
|
|
81
|
+
snapshotRequestTimeout: number;
|
|
82
|
+
plateClassifierThreshold: number;
|
|
83
|
+
plateClassifierHighConfidence: number;
|
|
84
|
+
maxPriorEvents: number;
|
|
85
|
+
recordsFetchInterval: number;
|
|
86
|
+
};
|
|
87
|
+
export type CreateGateReportAppPayload = {
|
|
88
|
+
projectExid: ProjectExid;
|
|
89
|
+
anprCameraExid: CameraExid;
|
|
90
|
+
contextCameraExid?: CameraExid | null;
|
|
91
|
+
coolifyServerUuid: string;
|
|
92
|
+
imageTag?: string;
|
|
93
|
+
geminiApiKey?: string | null;
|
|
94
|
+
startDate?: DateType | null;
|
|
95
|
+
endDate?: DateType | null;
|
|
96
|
+
startHour?: number;
|
|
97
|
+
endHour?: number;
|
|
98
|
+
enabled?: boolean;
|
|
99
|
+
enableEnrichments?: boolean;
|
|
100
|
+
reviewModel?: string;
|
|
101
|
+
enrichmentModel?: string;
|
|
102
|
+
geminiTimeoutSeconds?: number;
|
|
103
|
+
geminiMaxAttempts?: number;
|
|
104
|
+
vehicleClassifierSource?: VehicleClassifierSource;
|
|
105
|
+
snapshotDelaySeconds?: number;
|
|
106
|
+
snapshotRequestTimeout?: number;
|
|
107
|
+
plateClassifierThreshold?: number;
|
|
108
|
+
plateClassifierHighConfidence?: number;
|
|
109
|
+
maxPriorEvents?: number;
|
|
110
|
+
recordsFetchInterval?: number;
|
|
111
|
+
};
|
|
112
|
+
export type UpdateGateReportAppPayload = Partial<Omit<CreateGateReportAppPayload, "projectExid" | "anprCameraExid" | "coolifyServerUuid" | "geminiApiKey">>;
|
|
113
|
+
export type GateReportManagementListParams = {
|
|
114
|
+
projectExid?: ProjectExid;
|
|
115
|
+
includeStatus?: boolean;
|
|
116
|
+
page?: number;
|
|
117
|
+
limit?: number;
|
|
118
|
+
};
|
|
119
|
+
export type CoolifyProjectOption = {
|
|
120
|
+
uuid: string;
|
|
121
|
+
name: string;
|
|
122
|
+
description: string | null;
|
|
123
|
+
};
|
|
124
|
+
export type CoolifyServerOption = {
|
|
125
|
+
uuid: string;
|
|
126
|
+
name: string;
|
|
127
|
+
isReachable: boolean;
|
|
128
|
+
isUsable: boolean;
|
|
129
|
+
};
|
|
130
|
+
export type AppRuntimeState = "running" | "stopped" | "restarting";
|
|
131
|
+
export type AppRuntimeStateRequest = {
|
|
132
|
+
state: AppRuntimeState;
|
|
133
|
+
};
|
|
134
|
+
export type AppActionResponse = {
|
|
135
|
+
success: boolean;
|
|
136
|
+
message: string | null;
|
|
137
|
+
appUuid: string | null;
|
|
138
|
+
state: AppRuntimeState | null;
|
|
139
|
+
};
|
|
140
|
+
export type APIEnvelope<T> = {
|
|
141
|
+
success: boolean;
|
|
142
|
+
data: T | null;
|
|
143
|
+
message: string;
|
|
144
|
+
};
|
|
145
|
+
export type CreateGateReportAppResponse = {
|
|
146
|
+
created: boolean;
|
|
147
|
+
id: number | null;
|
|
148
|
+
data: GateReportManagedApp | null;
|
|
149
|
+
count: number | null;
|
|
150
|
+
message: string;
|
|
151
|
+
};
|
|
@@ -104,13 +104,6 @@ export declare enum SnapshotExtractionInterval {
|
|
|
104
104
|
}
|
|
105
105
|
export declare enum VpnServer {
|
|
106
106
|
None = "None",
|
|
107
|
-
OpenVPN1 = "OpenVPN1",
|
|
108
|
-
OpenVPN2 = "OpenVPN2",
|
|
109
|
-
OpenVPN3 = "OpenVPN3",
|
|
110
|
-
OpenVPN4 = "OpenVPN4",
|
|
111
|
-
OpenVPN5 = "OpenVPN5",
|
|
112
|
-
PPTP1 = "PPTP1",
|
|
113
|
-
PPTP2 = "PPTP2",
|
|
114
107
|
WireGuard1 = "WireGuard1",
|
|
115
108
|
WireGuard2 = "WireGuard2",
|
|
116
109
|
WireGuard3 = "WireGuard3",
|
package/dist/api/utils.d.ts
CHANGED
|
@@ -7,4 +7,3 @@ export declare const toQueryString: <T extends Record<string, unknown>>(paramsOb
|
|
|
7
7
|
forceArrayBrackets?: boolean | undefined;
|
|
8
8
|
}) => string | undefined;
|
|
9
9
|
export declare function queryStringToObject(queryString?: string): QueryParams;
|
|
10
|
-
export declare function capitalizeFirstLetter(inputString: string): string;
|