@gizone/rrs-client 3.11.17-alpha.95 → 3.11.17-alpha.97
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/apis/surveillance-api.ts +11 -11
- package/apis/surveillance-settings-api.ts +6 -6
- package/dist/apis/surveillance-api.js +11 -11
- package/dist/apis/surveillance-settings-api.js +6 -6
- package/dist/esm/apis/surveillance-api.js +11 -11
- package/dist/esm/apis/surveillance-settings-api.js +6 -6
- package/dist/esm/models/get-user-wx200-response.d.ts +6 -6
- package/dist/esm/models/ipage-access-vo.d.ts +3 -3
- package/dist/models/get-user-wx200-response.d.ts +6 -6
- package/dist/models/ipage-access-vo.d.ts +3 -3
- package/models/get-user-wx200-response.ts +6 -6
- package/models/ipage-access-vo.ts +3 -3
- package/package.json +1 -1
package/apis/surveillance-api.ts
CHANGED
|
@@ -57,7 +57,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
|
|
|
57
57
|
surveillanceCapture: async (id: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
58
58
|
// verify required parameter 'id' is not null or undefined
|
|
59
59
|
assertParamExists('surveillanceCapture', 'id', id)
|
|
60
|
-
const localVarPath = `/surveillance/capture/{id}`
|
|
60
|
+
const localVarPath = `/gizone/surveillance/capture/{id}`
|
|
61
61
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
62
62
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
63
63
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -95,7 +95,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
|
|
|
95
95
|
surveillanceDelete: async (id: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
96
96
|
// verify required parameter 'id' is not null or undefined
|
|
97
97
|
assertParamExists('surveillanceDelete', 'id', id)
|
|
98
|
-
const localVarPath = `/surveillance/{id}`
|
|
98
|
+
const localVarPath = `/gizone/surveillance/{id}`
|
|
99
99
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
100
100
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
101
101
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -133,7 +133,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
|
|
|
133
133
|
surveillanceDetails: async (id: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
134
134
|
// verify required parameter 'id' is not null or undefined
|
|
135
135
|
assertParamExists('surveillanceDetails', 'id', id)
|
|
136
|
-
const localVarPath = `/surveillance/{id}`
|
|
136
|
+
const localVarPath = `/gizone/surveillance/{id}`
|
|
137
137
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
138
138
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
139
139
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -178,7 +178,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
|
|
|
178
178
|
surveillanceList: async (parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?: SurveillanceStatusEnum, spaceId?: number, flgFirst?: number, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
179
179
|
// verify required parameter 'parkId' is not null or undefined
|
|
180
180
|
assertParamExists('surveillanceList', 'parkId', parkId)
|
|
181
|
-
const localVarPath = `/surveillance`;
|
|
181
|
+
const localVarPath = `/gizone/surveillance`;
|
|
182
182
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
183
183
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
184
184
|
let baseOptions;
|
|
@@ -247,7 +247,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
|
|
|
247
247
|
surveillanceLive: async (id: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
248
248
|
// verify required parameter 'id' is not null or undefined
|
|
249
249
|
assertParamExists('surveillanceLive', 'id', id)
|
|
250
|
-
const localVarPath = `/surveillance/live/{id}`
|
|
250
|
+
const localVarPath = `/gizone/surveillance/live/{id}`
|
|
251
251
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
252
252
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
253
253
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -291,7 +291,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
|
|
|
291
291
|
assertParamExists('surveillancePlayback', 'startTime', startTime)
|
|
292
292
|
// verify required parameter 'endTime' is not null or undefined
|
|
293
293
|
assertParamExists('surveillancePlayback', 'endTime', endTime)
|
|
294
|
-
const localVarPath = `/surveillance/playback/{id}`
|
|
294
|
+
const localVarPath = `/gizone/surveillance/playback/{id}`
|
|
295
295
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
296
296
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
297
297
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -343,7 +343,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
|
|
|
343
343
|
assertParamExists('surveillancePtzControl', 'command', command)
|
|
344
344
|
// verify required parameter 'action' is not null or undefined
|
|
345
345
|
assertParamExists('surveillancePtzControl', 'action', action)
|
|
346
|
-
const localVarPath = `/surveillance/ptzControl/{id}`
|
|
346
|
+
const localVarPath = `/gizone/surveillance/ptzControl/{id}`
|
|
347
347
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
348
348
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
349
349
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -396,7 +396,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
|
|
|
396
396
|
surveillanceSpaceList: async (parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?: SurveillanceStatusEnum, spaceId?: number, flgFirst?: number, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
397
397
|
// verify required parameter 'parkId' is not null or undefined
|
|
398
398
|
assertParamExists('surveillanceSpaceList', 'parkId', parkId)
|
|
399
|
-
const localVarPath = `/surveillance/spaceList`;
|
|
399
|
+
const localVarPath = `/gizone/surveillance/spaceList`;
|
|
400
400
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
401
401
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
402
402
|
let baseOptions;
|
|
@@ -465,7 +465,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
|
|
|
465
465
|
surveillanceSync: async (surveillanceAddVo: Array<SurveillanceAddVo>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
466
466
|
// verify required parameter 'surveillanceAddVo' is not null or undefined
|
|
467
467
|
assertParamExists('surveillanceSync', 'surveillanceAddVo', surveillanceAddVo)
|
|
468
|
-
const localVarPath = `/surveillance/sync`;
|
|
468
|
+
const localVarPath = `/gizone/surveillance/sync`;
|
|
469
469
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
470
470
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
471
471
|
let baseOptions;
|
|
@@ -508,7 +508,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
|
|
|
508
508
|
assertParamExists('surveillanceUpdate', 'id', id)
|
|
509
509
|
// verify required parameter 'surveillanceUpdateVo' is not null or undefined
|
|
510
510
|
assertParamExists('surveillanceUpdate', 'surveillanceUpdateVo', surveillanceUpdateVo)
|
|
511
|
-
const localVarPath = `/surveillance/{id}`
|
|
511
|
+
const localVarPath = `/gizone/surveillance/{id}`
|
|
512
512
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
513
513
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
514
514
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -552,7 +552,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
|
|
|
552
552
|
assertParamExists('surveillanceUpdatePoint', 'id', id)
|
|
553
553
|
// verify required parameter 'requestBody' is not null or undefined
|
|
554
554
|
assertParamExists('surveillanceUpdatePoint', 'requestBody', requestBody)
|
|
555
|
-
const localVarPath = `/surveillance/point/{id}`
|
|
555
|
+
const localVarPath = `/gizone/surveillance/point/{id}`
|
|
556
556
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
557
557
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
558
558
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -42,7 +42,7 @@ export const SurveillanceSettingsApiAxiosParamCreator = function (configuration?
|
|
|
42
42
|
* @throws {RequiredError}
|
|
43
43
|
*/
|
|
44
44
|
exportAllParkSurveillanceSettings: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
45
|
-
const localVarPath = `/surveillance/settings/export/monitoringCoverageStandard`;
|
|
45
|
+
const localVarPath = `/gizone/surveillance/settings/export/monitoringCoverageStandard`;
|
|
46
46
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
47
47
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
48
48
|
let baseOptions;
|
|
@@ -79,7 +79,7 @@ export const SurveillanceSettingsApiAxiosParamCreator = function (configuration?
|
|
|
79
79
|
importMonitoringCoverageStandard: async (file: File, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
80
80
|
// verify required parameter 'file' is not null or undefined
|
|
81
81
|
assertParamExists('importMonitoringCoverageStandard', 'file', file)
|
|
82
|
-
const localVarPath = `/surveillance/settings/import/monitoringCoverageStandard`;
|
|
82
|
+
const localVarPath = `/gizone/surveillance/settings/import/monitoringCoverageStandard`;
|
|
83
83
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
84
84
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
85
85
|
let baseOptions;
|
|
@@ -127,7 +127,7 @@ export const SurveillanceSettingsApiAxiosParamCreator = function (configuration?
|
|
|
127
127
|
assertParamExists('monitoringCoverageStandardUpdateCoverage', 'parkId', parkId)
|
|
128
128
|
// verify required parameter 'body' is not null or undefined
|
|
129
129
|
assertParamExists('monitoringCoverageStandardUpdateCoverage', 'body', body)
|
|
130
|
-
const localVarPath = `/surveillance/settings/coverage/{parkId}`
|
|
130
|
+
const localVarPath = `/gizone/surveillance/settings/coverage/{parkId}`
|
|
131
131
|
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
132
132
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
133
133
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -165,7 +165,7 @@ export const SurveillanceSettingsApiAxiosParamCreator = function (configuration?
|
|
|
165
165
|
* @throws {RequiredError}
|
|
166
166
|
*/
|
|
167
167
|
selectAllParkSurveillanceSettings: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
168
|
-
const localVarPath = `/surveillance/settings/allPark`;
|
|
168
|
+
const localVarPath = `/gizone/surveillance/settings/allPark`;
|
|
169
169
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
170
170
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
171
171
|
let baseOptions;
|
|
@@ -202,7 +202,7 @@ export const SurveillanceSettingsApiAxiosParamCreator = function (configuration?
|
|
|
202
202
|
surveillanceSettingsDetails: async (parkId: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
203
203
|
// verify required parameter 'parkId' is not null or undefined
|
|
204
204
|
assertParamExists('surveillanceSettingsDetails', 'parkId', parkId)
|
|
205
|
-
const localVarPath = `/surveillance/settings/{parkId}`
|
|
205
|
+
const localVarPath = `/gizone/surveillance/settings/{parkId}`
|
|
206
206
|
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
207
207
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
208
208
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -243,7 +243,7 @@ export const SurveillanceSettingsApiAxiosParamCreator = function (configuration?
|
|
|
243
243
|
assertParamExists('surveillanceSettingsUpdatePolling', 'parkId', parkId)
|
|
244
244
|
// verify required parameter 'surveillanceSettingsPollingVo' is not null or undefined
|
|
245
245
|
assertParamExists('surveillanceSettingsUpdatePolling', 'surveillanceSettingsPollingVo', surveillanceSettingsPollingVo)
|
|
246
|
-
const localVarPath = `/surveillance/settings/polling/{parkId}`
|
|
246
|
+
const localVarPath = `/gizone/surveillance/settings/polling/{parkId}`
|
|
247
247
|
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
248
248
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
249
249
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -45,7 +45,7 @@ const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
45
45
|
surveillanceCapture: (id_1, ...args_1) => __awaiter(this, [id_1, ...args_1], void 0, function* (id, options = {}) {
|
|
46
46
|
// verify required parameter 'id' is not null or undefined
|
|
47
47
|
(0, common_1.assertParamExists)('surveillanceCapture', 'id', id);
|
|
48
|
-
const localVarPath = `/surveillance/capture/{id}`
|
|
48
|
+
const localVarPath = `/gizone/surveillance/capture/{id}`
|
|
49
49
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
50
50
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
51
51
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -77,7 +77,7 @@ const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
77
77
|
surveillanceDelete: (id_1, ...args_1) => __awaiter(this, [id_1, ...args_1], void 0, function* (id, options = {}) {
|
|
78
78
|
// verify required parameter 'id' is not null or undefined
|
|
79
79
|
(0, common_1.assertParamExists)('surveillanceDelete', 'id', id);
|
|
80
|
-
const localVarPath = `/surveillance/{id}`
|
|
80
|
+
const localVarPath = `/gizone/surveillance/{id}`
|
|
81
81
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
82
82
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
83
83
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -109,7 +109,7 @@ const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
109
109
|
surveillanceDetails: (id_1, ...args_1) => __awaiter(this, [id_1, ...args_1], void 0, function* (id, options = {}) {
|
|
110
110
|
// verify required parameter 'id' is not null or undefined
|
|
111
111
|
(0, common_1.assertParamExists)('surveillanceDetails', 'id', id);
|
|
112
|
-
const localVarPath = `/surveillance/{id}`
|
|
112
|
+
const localVarPath = `/gizone/surveillance/{id}`
|
|
113
113
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
114
114
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
115
115
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -148,7 +148,7 @@ const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
148
148
|
surveillanceList: (parkId_1, surveillanceName_1, functionalArea_1, surveillanceStatus_1, spaceId_1, flgFirst_1, page_1, pageSize_1, ...args_1) => __awaiter(this, [parkId_1, surveillanceName_1, functionalArea_1, surveillanceStatus_1, spaceId_1, flgFirst_1, page_1, pageSize_1, ...args_1], void 0, function* (parkId, surveillanceName, functionalArea, surveillanceStatus, spaceId, flgFirst, page, pageSize, options = {}) {
|
|
149
149
|
// verify required parameter 'parkId' is not null or undefined
|
|
150
150
|
(0, common_1.assertParamExists)('surveillanceList', 'parkId', parkId);
|
|
151
|
-
const localVarPath = `/surveillance`;
|
|
151
|
+
const localVarPath = `/gizone/surveillance`;
|
|
152
152
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
153
153
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
154
154
|
let baseOptions;
|
|
@@ -203,7 +203,7 @@ const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
203
203
|
surveillanceLive: (id_1, ...args_1) => __awaiter(this, [id_1, ...args_1], void 0, function* (id, options = {}) {
|
|
204
204
|
// verify required parameter 'id' is not null or undefined
|
|
205
205
|
(0, common_1.assertParamExists)('surveillanceLive', 'id', id);
|
|
206
|
-
const localVarPath = `/surveillance/live/{id}`
|
|
206
|
+
const localVarPath = `/gizone/surveillance/live/{id}`
|
|
207
207
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
208
208
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
209
209
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -241,7 +241,7 @@ const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
241
241
|
(0, common_1.assertParamExists)('surveillancePlayback', 'startTime', startTime);
|
|
242
242
|
// verify required parameter 'endTime' is not null or undefined
|
|
243
243
|
(0, common_1.assertParamExists)('surveillancePlayback', 'endTime', endTime);
|
|
244
|
-
const localVarPath = `/surveillance/playback/{id}`
|
|
244
|
+
const localVarPath = `/gizone/surveillance/playback/{id}`
|
|
245
245
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
246
246
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
247
247
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -285,7 +285,7 @@ const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
285
285
|
(0, common_1.assertParamExists)('surveillancePtzControl', 'command', command);
|
|
286
286
|
// verify required parameter 'action' is not null or undefined
|
|
287
287
|
(0, common_1.assertParamExists)('surveillancePtzControl', 'action', action);
|
|
288
|
-
const localVarPath = `/surveillance/ptzControl/{id}`
|
|
288
|
+
const localVarPath = `/gizone/surveillance/ptzControl/{id}`
|
|
289
289
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
290
290
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
291
291
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -330,7 +330,7 @@ const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
330
330
|
surveillanceSpaceList: (parkId_1, surveillanceName_1, functionalArea_1, surveillanceStatus_1, spaceId_1, flgFirst_1, page_1, pageSize_1, ...args_1) => __awaiter(this, [parkId_1, surveillanceName_1, functionalArea_1, surveillanceStatus_1, spaceId_1, flgFirst_1, page_1, pageSize_1, ...args_1], void 0, function* (parkId, surveillanceName, functionalArea, surveillanceStatus, spaceId, flgFirst, page, pageSize, options = {}) {
|
|
331
331
|
// verify required parameter 'parkId' is not null or undefined
|
|
332
332
|
(0, common_1.assertParamExists)('surveillanceSpaceList', 'parkId', parkId);
|
|
333
|
-
const localVarPath = `/surveillance/spaceList`;
|
|
333
|
+
const localVarPath = `/gizone/surveillance/spaceList`;
|
|
334
334
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
335
335
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
336
336
|
let baseOptions;
|
|
@@ -385,7 +385,7 @@ const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
385
385
|
surveillanceSync: (surveillanceAddVo_1, ...args_1) => __awaiter(this, [surveillanceAddVo_1, ...args_1], void 0, function* (surveillanceAddVo, options = {}) {
|
|
386
386
|
// verify required parameter 'surveillanceAddVo' is not null or undefined
|
|
387
387
|
(0, common_1.assertParamExists)('surveillanceSync', 'surveillanceAddVo', surveillanceAddVo);
|
|
388
|
-
const localVarPath = `/surveillance/sync`;
|
|
388
|
+
const localVarPath = `/gizone/surveillance/sync`;
|
|
389
389
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
390
390
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
391
391
|
let baseOptions;
|
|
@@ -421,7 +421,7 @@ const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
421
421
|
(0, common_1.assertParamExists)('surveillanceUpdate', 'id', id);
|
|
422
422
|
// verify required parameter 'surveillanceUpdateVo' is not null or undefined
|
|
423
423
|
(0, common_1.assertParamExists)('surveillanceUpdate', 'surveillanceUpdateVo', surveillanceUpdateVo);
|
|
424
|
-
const localVarPath = `/surveillance/{id}`
|
|
424
|
+
const localVarPath = `/gizone/surveillance/{id}`
|
|
425
425
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
426
426
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
427
427
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -458,7 +458,7 @@ const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
458
458
|
(0, common_1.assertParamExists)('surveillanceUpdatePoint', 'id', id);
|
|
459
459
|
// verify required parameter 'requestBody' is not null or undefined
|
|
460
460
|
(0, common_1.assertParamExists)('surveillanceUpdatePoint', 'requestBody', requestBody);
|
|
461
|
-
const localVarPath = `/surveillance/point/{id}`
|
|
461
|
+
const localVarPath = `/gizone/surveillance/point/{id}`
|
|
462
462
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
463
463
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
464
464
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -42,7 +42,7 @@ const SurveillanceSettingsApiAxiosParamCreator = function (configuration) {
|
|
|
42
42
|
* @throws {RequiredError}
|
|
43
43
|
*/
|
|
44
44
|
exportAllParkSurveillanceSettings: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
45
|
-
const localVarPath = `/surveillance/settings/export/monitoringCoverageStandard`;
|
|
45
|
+
const localVarPath = `/gizone/surveillance/settings/export/monitoringCoverageStandard`;
|
|
46
46
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
47
47
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
48
48
|
let baseOptions;
|
|
@@ -73,7 +73,7 @@ const SurveillanceSettingsApiAxiosParamCreator = function (configuration) {
|
|
|
73
73
|
importMonitoringCoverageStandard: (file_1, ...args_1) => __awaiter(this, [file_1, ...args_1], void 0, function* (file, options = {}) {
|
|
74
74
|
// verify required parameter 'file' is not null or undefined
|
|
75
75
|
(0, common_1.assertParamExists)('importMonitoringCoverageStandard', 'file', file);
|
|
76
|
-
const localVarPath = `/surveillance/settings/import/monitoringCoverageStandard`;
|
|
76
|
+
const localVarPath = `/gizone/surveillance/settings/import/monitoringCoverageStandard`;
|
|
77
77
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
78
78
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
79
79
|
let baseOptions;
|
|
@@ -113,7 +113,7 @@ const SurveillanceSettingsApiAxiosParamCreator = function (configuration) {
|
|
|
113
113
|
(0, common_1.assertParamExists)('monitoringCoverageStandardUpdateCoverage', 'parkId', parkId);
|
|
114
114
|
// verify required parameter 'body' is not null or undefined
|
|
115
115
|
(0, common_1.assertParamExists)('monitoringCoverageStandardUpdateCoverage', 'body', body);
|
|
116
|
-
const localVarPath = `/surveillance/settings/coverage/{parkId}`
|
|
116
|
+
const localVarPath = `/gizone/surveillance/settings/coverage/{parkId}`
|
|
117
117
|
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
118
118
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
119
119
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -144,7 +144,7 @@ const SurveillanceSettingsApiAxiosParamCreator = function (configuration) {
|
|
|
144
144
|
* @throws {RequiredError}
|
|
145
145
|
*/
|
|
146
146
|
selectAllParkSurveillanceSettings: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
147
|
-
const localVarPath = `/surveillance/settings/allPark`;
|
|
147
|
+
const localVarPath = `/gizone/surveillance/settings/allPark`;
|
|
148
148
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
149
149
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
150
150
|
let baseOptions;
|
|
@@ -175,7 +175,7 @@ const SurveillanceSettingsApiAxiosParamCreator = function (configuration) {
|
|
|
175
175
|
surveillanceSettingsDetails: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
176
176
|
// verify required parameter 'parkId' is not null or undefined
|
|
177
177
|
(0, common_1.assertParamExists)('surveillanceSettingsDetails', 'parkId', parkId);
|
|
178
|
-
const localVarPath = `/surveillance/settings/{parkId}`
|
|
178
|
+
const localVarPath = `/gizone/surveillance/settings/{parkId}`
|
|
179
179
|
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
180
180
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
181
181
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -210,7 +210,7 @@ const SurveillanceSettingsApiAxiosParamCreator = function (configuration) {
|
|
|
210
210
|
(0, common_1.assertParamExists)('surveillanceSettingsUpdatePolling', 'parkId', parkId);
|
|
211
211
|
// verify required parameter 'surveillanceSettingsPollingVo' is not null or undefined
|
|
212
212
|
(0, common_1.assertParamExists)('surveillanceSettingsUpdatePolling', 'surveillanceSettingsPollingVo', surveillanceSettingsPollingVo);
|
|
213
|
-
const localVarPath = `/surveillance/settings/polling/{parkId}`
|
|
213
|
+
const localVarPath = `/gizone/surveillance/settings/polling/{parkId}`
|
|
214
214
|
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
215
215
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
216
216
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -42,7 +42,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
42
42
|
surveillanceCapture: (id_1, ...args_1) => __awaiter(this, [id_1, ...args_1], void 0, function* (id, options = {}) {
|
|
43
43
|
// verify required parameter 'id' is not null or undefined
|
|
44
44
|
assertParamExists('surveillanceCapture', 'id', id);
|
|
45
|
-
const localVarPath = `/surveillance/capture/{id}`
|
|
45
|
+
const localVarPath = `/gizone/surveillance/capture/{id}`
|
|
46
46
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
47
47
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
48
48
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -74,7 +74,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
74
74
|
surveillanceDelete: (id_1, ...args_1) => __awaiter(this, [id_1, ...args_1], void 0, function* (id, options = {}) {
|
|
75
75
|
// verify required parameter 'id' is not null or undefined
|
|
76
76
|
assertParamExists('surveillanceDelete', 'id', id);
|
|
77
|
-
const localVarPath = `/surveillance/{id}`
|
|
77
|
+
const localVarPath = `/gizone/surveillance/{id}`
|
|
78
78
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
79
79
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
80
80
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -106,7 +106,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
106
106
|
surveillanceDetails: (id_1, ...args_1) => __awaiter(this, [id_1, ...args_1], void 0, function* (id, options = {}) {
|
|
107
107
|
// verify required parameter 'id' is not null or undefined
|
|
108
108
|
assertParamExists('surveillanceDetails', 'id', id);
|
|
109
|
-
const localVarPath = `/surveillance/{id}`
|
|
109
|
+
const localVarPath = `/gizone/surveillance/{id}`
|
|
110
110
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
111
111
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
112
112
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -145,7 +145,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
145
145
|
surveillanceList: (parkId_1, surveillanceName_1, functionalArea_1, surveillanceStatus_1, spaceId_1, flgFirst_1, page_1, pageSize_1, ...args_1) => __awaiter(this, [parkId_1, surveillanceName_1, functionalArea_1, surveillanceStatus_1, spaceId_1, flgFirst_1, page_1, pageSize_1, ...args_1], void 0, function* (parkId, surveillanceName, functionalArea, surveillanceStatus, spaceId, flgFirst, page, pageSize, options = {}) {
|
|
146
146
|
// verify required parameter 'parkId' is not null or undefined
|
|
147
147
|
assertParamExists('surveillanceList', 'parkId', parkId);
|
|
148
|
-
const localVarPath = `/surveillance`;
|
|
148
|
+
const localVarPath = `/gizone/surveillance`;
|
|
149
149
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
150
150
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
151
151
|
let baseOptions;
|
|
@@ -200,7 +200,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
200
200
|
surveillanceLive: (id_1, ...args_1) => __awaiter(this, [id_1, ...args_1], void 0, function* (id, options = {}) {
|
|
201
201
|
// verify required parameter 'id' is not null or undefined
|
|
202
202
|
assertParamExists('surveillanceLive', 'id', id);
|
|
203
|
-
const localVarPath = `/surveillance/live/{id}`
|
|
203
|
+
const localVarPath = `/gizone/surveillance/live/{id}`
|
|
204
204
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
205
205
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
206
206
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -238,7 +238,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
238
238
|
assertParamExists('surveillancePlayback', 'startTime', startTime);
|
|
239
239
|
// verify required parameter 'endTime' is not null or undefined
|
|
240
240
|
assertParamExists('surveillancePlayback', 'endTime', endTime);
|
|
241
|
-
const localVarPath = `/surveillance/playback/{id}`
|
|
241
|
+
const localVarPath = `/gizone/surveillance/playback/{id}`
|
|
242
242
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
243
243
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
244
244
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -282,7 +282,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
282
282
|
assertParamExists('surveillancePtzControl', 'command', command);
|
|
283
283
|
// verify required parameter 'action' is not null or undefined
|
|
284
284
|
assertParamExists('surveillancePtzControl', 'action', action);
|
|
285
|
-
const localVarPath = `/surveillance/ptzControl/{id}`
|
|
285
|
+
const localVarPath = `/gizone/surveillance/ptzControl/{id}`
|
|
286
286
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
287
287
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
288
288
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -327,7 +327,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
327
327
|
surveillanceSpaceList: (parkId_1, surveillanceName_1, functionalArea_1, surveillanceStatus_1, spaceId_1, flgFirst_1, page_1, pageSize_1, ...args_1) => __awaiter(this, [parkId_1, surveillanceName_1, functionalArea_1, surveillanceStatus_1, spaceId_1, flgFirst_1, page_1, pageSize_1, ...args_1], void 0, function* (parkId, surveillanceName, functionalArea, surveillanceStatus, spaceId, flgFirst, page, pageSize, options = {}) {
|
|
328
328
|
// verify required parameter 'parkId' is not null or undefined
|
|
329
329
|
assertParamExists('surveillanceSpaceList', 'parkId', parkId);
|
|
330
|
-
const localVarPath = `/surveillance/spaceList`;
|
|
330
|
+
const localVarPath = `/gizone/surveillance/spaceList`;
|
|
331
331
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
332
332
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
333
333
|
let baseOptions;
|
|
@@ -382,7 +382,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
382
382
|
surveillanceSync: (surveillanceAddVo_1, ...args_1) => __awaiter(this, [surveillanceAddVo_1, ...args_1], void 0, function* (surveillanceAddVo, options = {}) {
|
|
383
383
|
// verify required parameter 'surveillanceAddVo' is not null or undefined
|
|
384
384
|
assertParamExists('surveillanceSync', 'surveillanceAddVo', surveillanceAddVo);
|
|
385
|
-
const localVarPath = `/surveillance/sync`;
|
|
385
|
+
const localVarPath = `/gizone/surveillance/sync`;
|
|
386
386
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
387
387
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
388
388
|
let baseOptions;
|
|
@@ -418,7 +418,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
418
418
|
assertParamExists('surveillanceUpdate', 'id', id);
|
|
419
419
|
// verify required parameter 'surveillanceUpdateVo' is not null or undefined
|
|
420
420
|
assertParamExists('surveillanceUpdate', 'surveillanceUpdateVo', surveillanceUpdateVo);
|
|
421
|
-
const localVarPath = `/surveillance/{id}`
|
|
421
|
+
const localVarPath = `/gizone/surveillance/{id}`
|
|
422
422
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
423
423
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
424
424
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -455,7 +455,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
455
455
|
assertParamExists('surveillanceUpdatePoint', 'id', id);
|
|
456
456
|
// verify required parameter 'requestBody' is not null or undefined
|
|
457
457
|
assertParamExists('surveillanceUpdatePoint', 'requestBody', requestBody);
|
|
458
|
-
const localVarPath = `/surveillance/point/{id}`
|
|
458
|
+
const localVarPath = `/gizone/surveillance/point/{id}`
|
|
459
459
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
460
460
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
461
461
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -39,7 +39,7 @@ export const SurveillanceSettingsApiAxiosParamCreator = function (configuration)
|
|
|
39
39
|
* @throws {RequiredError}
|
|
40
40
|
*/
|
|
41
41
|
exportAllParkSurveillanceSettings: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
42
|
-
const localVarPath = `/surveillance/settings/export/monitoringCoverageStandard`;
|
|
42
|
+
const localVarPath = `/gizone/surveillance/settings/export/monitoringCoverageStandard`;
|
|
43
43
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
44
44
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
45
45
|
let baseOptions;
|
|
@@ -70,7 +70,7 @@ export const SurveillanceSettingsApiAxiosParamCreator = function (configuration)
|
|
|
70
70
|
importMonitoringCoverageStandard: (file_1, ...args_1) => __awaiter(this, [file_1, ...args_1], void 0, function* (file, options = {}) {
|
|
71
71
|
// verify required parameter 'file' is not null or undefined
|
|
72
72
|
assertParamExists('importMonitoringCoverageStandard', 'file', file);
|
|
73
|
-
const localVarPath = `/surveillance/settings/import/monitoringCoverageStandard`;
|
|
73
|
+
const localVarPath = `/gizone/surveillance/settings/import/monitoringCoverageStandard`;
|
|
74
74
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
75
75
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
76
76
|
let baseOptions;
|
|
@@ -110,7 +110,7 @@ export const SurveillanceSettingsApiAxiosParamCreator = function (configuration)
|
|
|
110
110
|
assertParamExists('monitoringCoverageStandardUpdateCoverage', 'parkId', parkId);
|
|
111
111
|
// verify required parameter 'body' is not null or undefined
|
|
112
112
|
assertParamExists('monitoringCoverageStandardUpdateCoverage', 'body', body);
|
|
113
|
-
const localVarPath = `/surveillance/settings/coverage/{parkId}`
|
|
113
|
+
const localVarPath = `/gizone/surveillance/settings/coverage/{parkId}`
|
|
114
114
|
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
115
115
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
116
116
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -141,7 +141,7 @@ export const SurveillanceSettingsApiAxiosParamCreator = function (configuration)
|
|
|
141
141
|
* @throws {RequiredError}
|
|
142
142
|
*/
|
|
143
143
|
selectAllParkSurveillanceSettings: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
144
|
-
const localVarPath = `/surveillance/settings/allPark`;
|
|
144
|
+
const localVarPath = `/gizone/surveillance/settings/allPark`;
|
|
145
145
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
146
146
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
147
147
|
let baseOptions;
|
|
@@ -172,7 +172,7 @@ export const SurveillanceSettingsApiAxiosParamCreator = function (configuration)
|
|
|
172
172
|
surveillanceSettingsDetails: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
173
173
|
// verify required parameter 'parkId' is not null or undefined
|
|
174
174
|
assertParamExists('surveillanceSettingsDetails', 'parkId', parkId);
|
|
175
|
-
const localVarPath = `/surveillance/settings/{parkId}`
|
|
175
|
+
const localVarPath = `/gizone/surveillance/settings/{parkId}`
|
|
176
176
|
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
177
177
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
178
178
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -207,7 +207,7 @@ export const SurveillanceSettingsApiAxiosParamCreator = function (configuration)
|
|
|
207
207
|
assertParamExists('surveillanceSettingsUpdatePolling', 'parkId', parkId);
|
|
208
208
|
// verify required parameter 'surveillanceSettingsPollingVo' is not null or undefined
|
|
209
209
|
assertParamExists('surveillanceSettingsUpdatePolling', 'surveillanceSettingsPollingVo', surveillanceSettingsPollingVo);
|
|
210
|
-
const localVarPath = `/surveillance/settings/polling/{parkId}`
|
|
210
|
+
const localVarPath = `/gizone/surveillance/settings/polling/{parkId}`
|
|
211
211
|
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
212
212
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
213
213
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -17,12 +17,6 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
17
17
|
* @interface GetUserWx200Response
|
|
18
18
|
*/
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {object}
|
|
23
|
-
* @memberof GetUserWx200Response
|
|
24
|
-
*/
|
|
25
|
-
'trailerFields'?: object;
|
|
26
20
|
/**
|
|
27
21
|
*
|
|
28
22
|
* @type {number}
|
|
@@ -35,6 +29,12 @@ export interface GetUserWx200Response {
|
|
|
35
29
|
* @memberof GetUserWx200Response
|
|
36
30
|
*/
|
|
37
31
|
'headerNames'?: Array<string>;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {object}
|
|
35
|
+
* @memberof GetUserWx200Response
|
|
36
|
+
*/
|
|
37
|
+
'trailerFields'?: object;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
40
|
* @type {GetUserWx200ResponseLocale}
|
|
@@ -44,15 +44,15 @@ export interface IPageAccessVO {
|
|
|
44
44
|
*
|
|
45
45
|
* @type {boolean}
|
|
46
46
|
* @memberof IPageAccessVO
|
|
47
|
+
* @deprecated
|
|
47
48
|
*/
|
|
48
|
-
'
|
|
49
|
+
'hitCount'?: boolean;
|
|
49
50
|
/**
|
|
50
51
|
*
|
|
51
52
|
* @type {boolean}
|
|
52
53
|
* @memberof IPageAccessVO
|
|
53
|
-
* @deprecated
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'searchCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -17,12 +17,6 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
17
17
|
* @interface GetUserWx200Response
|
|
18
18
|
*/
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {object}
|
|
23
|
-
* @memberof GetUserWx200Response
|
|
24
|
-
*/
|
|
25
|
-
'trailerFields'?: object;
|
|
26
20
|
/**
|
|
27
21
|
*
|
|
28
22
|
* @type {number}
|
|
@@ -35,6 +29,12 @@ export interface GetUserWx200Response {
|
|
|
35
29
|
* @memberof GetUserWx200Response
|
|
36
30
|
*/
|
|
37
31
|
'headerNames'?: Array<string>;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {object}
|
|
35
|
+
* @memberof GetUserWx200Response
|
|
36
|
+
*/
|
|
37
|
+
'trailerFields'?: object;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
40
|
* @type {GetUserWx200ResponseLocale}
|
|
@@ -44,15 +44,15 @@ export interface IPageAccessVO {
|
|
|
44
44
|
*
|
|
45
45
|
* @type {boolean}
|
|
46
46
|
* @memberof IPageAccessVO
|
|
47
|
+
* @deprecated
|
|
47
48
|
*/
|
|
48
|
-
'
|
|
49
|
+
'hitCount'?: boolean;
|
|
49
50
|
/**
|
|
50
51
|
*
|
|
51
52
|
* @type {boolean}
|
|
52
53
|
* @memberof IPageAccessVO
|
|
53
|
-
* @deprecated
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'searchCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -26,12 +26,6 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
26
26
|
* @interface GetUserWx200Response
|
|
27
27
|
*/
|
|
28
28
|
export interface GetUserWx200Response {
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {object}
|
|
32
|
-
* @memberof GetUserWx200Response
|
|
33
|
-
*/
|
|
34
|
-
'trailerFields'?: object;
|
|
35
29
|
/**
|
|
36
30
|
*
|
|
37
31
|
* @type {number}
|
|
@@ -44,6 +38,12 @@ export interface GetUserWx200Response {
|
|
|
44
38
|
* @memberof GetUserWx200Response
|
|
45
39
|
*/
|
|
46
40
|
'headerNames'?: Array<string>;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {object}
|
|
44
|
+
* @memberof GetUserWx200Response
|
|
45
|
+
*/
|
|
46
|
+
'trailerFields'?: object;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
49
|
* @type {GetUserWx200ResponseLocale}
|
|
@@ -51,15 +51,15 @@ export interface IPageAccessVO {
|
|
|
51
51
|
*
|
|
52
52
|
* @type {boolean}
|
|
53
53
|
* @memberof IPageAccessVO
|
|
54
|
+
* @deprecated
|
|
54
55
|
*/
|
|
55
|
-
'
|
|
56
|
+
'hitCount'?: boolean;
|
|
56
57
|
/**
|
|
57
58
|
*
|
|
58
59
|
* @type {boolean}
|
|
59
60
|
* @memberof IPageAccessVO
|
|
60
|
-
* @deprecated
|
|
61
61
|
*/
|
|
62
|
-
'
|
|
62
|
+
'searchCount'?: boolean;
|
|
63
63
|
/**
|
|
64
64
|
*
|
|
65
65
|
* @type {number}
|