ob-bms-sdk 0.0.96 → 0.0.98

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/api/api.ts CHANGED
@@ -741,6 +741,21 @@ export interface BuildingAccessLogResult {
741
741
  */
742
742
  export interface BuildingAccessLogResultCreatedAt {
743
743
  }
744
+ /**
745
+ *
746
+ * @export
747
+ * @interface BuildingAccessLogShowQuery
748
+ */
749
+ export interface BuildingAccessLogShowQuery {
750
+ /**
751
+ *
752
+ * @type {AccessorType}
753
+ * @memberof BuildingAccessLogShowQuery
754
+ */
755
+ 'accessorType': AccessorType;
756
+ }
757
+
758
+
744
759
  /**
745
760
  *
746
761
  * @export
@@ -776,13 +791,7 @@ export interface BuildingAccessgLogQuery {
776
791
  * @type {AccessorType}
777
792
  * @memberof BuildingAccessgLogQuery
778
793
  */
779
- 'type': AccessorType;
780
- /**
781
- *
782
- * @type {string}
783
- * @memberof BuildingAccessgLogQuery
784
- */
785
- 'name'?: string;
794
+ 'accessorType': AccessorType;
786
795
  /**
787
796
  *
788
797
  * @type {string}
@@ -794,19 +803,13 @@ export interface BuildingAccessgLogQuery {
794
803
  * @type {string}
795
804
  * @memberof BuildingAccessgLogQuery
796
805
  */
797
- 'company_name'?: string;
806
+ 'filter'?: string;
798
807
  /**
799
808
  *
800
809
  * @type {string}
801
810
  * @memberof BuildingAccessgLogQuery
802
811
  */
803
812
  'id'?: string;
804
- /**
805
- *
806
- * @type {string}
807
- * @memberof BuildingAccessgLogQuery
808
- */
809
- 'filter'?: string;
810
813
  /**
811
814
  *
812
815
  * @type {string}
@@ -831,6 +834,12 @@ export interface BuildingAccessgLogQuery {
831
834
  * @memberof BuildingAccessgLogQuery
832
835
  */
833
836
  'endDate'?: string;
837
+ /**
838
+ *
839
+ * @type {string}
840
+ * @memberof BuildingAccessgLogQuery
841
+ */
842
+ 'name'?: string;
834
843
  }
835
844
 
836
845
 
@@ -2038,6 +2047,37 @@ export interface MembersShowResponse {
2038
2047
  */
2039
2048
  'passed_turnstile': boolean;
2040
2049
  }
2050
+ /**
2051
+ *
2052
+ * @export
2053
+ * @interface Pagination
2054
+ */
2055
+ export interface Pagination {
2056
+ /**
2057
+ *
2058
+ * @type {number}
2059
+ * @memberof Pagination
2060
+ */
2061
+ 'total': number;
2062
+ /**
2063
+ *
2064
+ * @type {number}
2065
+ * @memberof Pagination
2066
+ */
2067
+ 'total_page': number;
2068
+ /**
2069
+ *
2070
+ * @type {number}
2071
+ * @memberof Pagination
2072
+ */
2073
+ 'page_number': number;
2074
+ /**
2075
+ *
2076
+ * @type {number}
2077
+ * @memberof Pagination
2078
+ */
2079
+ 'page_size': number;
2080
+ }
2041
2081
  /**
2042
2082
  *
2043
2083
  * @export
@@ -2134,7 +2174,7 @@ export interface ParkingLogQuery {
2134
2174
  * @type {AccessorType}
2135
2175
  * @memberof ParkingLogQuery
2136
2176
  */
2137
- 'type'?: AccessorType;
2177
+ 'accessorType'?: AccessorType;
2138
2178
  /**
2139
2179
  *
2140
2180
  * @type {string}
@@ -4476,6 +4516,12 @@ export interface WrappedArrayResponseBuildingAccessLogResult {
4476
4516
  * @memberof WrappedArrayResponseBuildingAccessLogResult
4477
4517
  */
4478
4518
  'data': Array<BuildingAccessLogResult>;
4519
+ /**
4520
+ *
4521
+ * @type {Pagination}
4522
+ * @memberof WrappedArrayResponseBuildingAccessLogResult
4523
+ */
4524
+ 'pagination'?: Pagination;
4479
4525
  }
4480
4526
  /**
4481
4527
  *
@@ -4528,6 +4574,12 @@ export interface WrappedArrayResponseParkingLogResult {
4528
4574
  * @memberof WrappedArrayResponseParkingLogResult
4529
4575
  */
4530
4576
  'data': Array<ParkingLogResult>;
4577
+ /**
4578
+ *
4579
+ * @type {Pagination}
4580
+ * @memberof WrappedArrayResponseParkingLogResult
4581
+ */
4582
+ 'pagination'?: Pagination;
4531
4583
  }
4532
4584
  /**
4533
4585
  *
@@ -5600,26 +5652,25 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
5600
5652
  },
5601
5653
  /**
5602
5654
  *
5603
- * @param {AccessorType} type
5655
+ * @param {AccessorType} accessorType
5604
5656
  * @param {string} [orderBy]
5605
5657
  * @param {string} [orderDirection]
5606
5658
  * @param {number} [pageNumber]
5607
5659
  * @param {number} [pageSize]
5608
- * @param {string} [name]
5609
5660
  * @param {string} [displayTower]
5610
- * @param {string} [companyName]
5611
- * @param {string} [id]
5612
5661
  * @param {string} [filter]
5662
+ * @param {string} [id]
5613
5663
  * @param {string} [building]
5614
5664
  * @param {number} [status]
5615
5665
  * @param {string} [startDate]
5616
5666
  * @param {string} [endDate]
5667
+ * @param {string} [name]
5617
5668
  * @param {*} [options] Override http request option.
5618
5669
  * @throws {RequiredError}
5619
5670
  */
5620
- buildingAccessLogsIndex: async (type: AccessorType, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, name?: string, displayTower?: string, companyName?: string, id?: string, filter?: string, building?: string, status?: number, startDate?: string, endDate?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
5621
- // verify required parameter 'type' is not null or undefined
5622
- assertParamExists('buildingAccessLogsIndex', 'type', type)
5671
+ buildingAccessLogsIndex: async (accessorType: AccessorType, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, displayTower?: string, filter?: string, id?: string, building?: string, status?: number, startDate?: string, endDate?: string, name?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
5672
+ // verify required parameter 'accessorType' is not null or undefined
5673
+ assertParamExists('buildingAccessLogsIndex', 'accessorType', accessorType)
5623
5674
  const localVarPath = `/building_access`;
5624
5675
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5625
5676
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -5648,30 +5699,22 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
5648
5699
  localVarQueryParameter['page_size'] = pageSize;
5649
5700
  }
5650
5701
 
5651
- if (type !== undefined) {
5652
- localVarQueryParameter['type'] = type;
5653
- }
5654
-
5655
- if (name !== undefined) {
5656
- localVarQueryParameter['name'] = name;
5702
+ if (accessorType !== undefined) {
5703
+ localVarQueryParameter['accessorType'] = accessorType;
5657
5704
  }
5658
5705
 
5659
5706
  if (displayTower !== undefined) {
5660
5707
  localVarQueryParameter['display_tower'] = displayTower;
5661
5708
  }
5662
5709
 
5663
- if (companyName !== undefined) {
5664
- localVarQueryParameter['company_name'] = companyName;
5710
+ if (filter !== undefined) {
5711
+ localVarQueryParameter['filter'] = filter;
5665
5712
  }
5666
5713
 
5667
5714
  if (id !== undefined) {
5668
5715
  localVarQueryParameter['id'] = id;
5669
5716
  }
5670
5717
 
5671
- if (filter !== undefined) {
5672
- localVarQueryParameter['filter'] = filter;
5673
- }
5674
-
5675
5718
  if (building !== undefined) {
5676
5719
  localVarQueryParameter['building'] = building;
5677
5720
  }
@@ -5688,6 +5731,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
5688
5731
  localVarQueryParameter['endDate'] = endDate;
5689
5732
  }
5690
5733
 
5734
+ if (name !== undefined) {
5735
+ localVarQueryParameter['name'] = name;
5736
+ }
5737
+
5691
5738
 
5692
5739
 
5693
5740
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -5702,28 +5749,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
5702
5749
  /**
5703
5750
  *
5704
5751
  * @param {string} id
5705
- * @param {AccessorType} type
5706
- * @param {string} [orderBy]
5707
- * @param {string} [orderDirection]
5708
- * @param {number} [pageNumber]
5709
- * @param {number} [pageSize]
5710
- * @param {string} [name]
5711
- * @param {string} [displayTower]
5712
- * @param {string} [companyName]
5713
- * @param {string} [id2]
5714
- * @param {string} [filter]
5715
- * @param {string} [building]
5716
- * @param {number} [status]
5717
- * @param {string} [startDate]
5718
- * @param {string} [endDate]
5752
+ * @param {AccessorType} accessorType
5719
5753
  * @param {*} [options] Override http request option.
5720
5754
  * @throws {RequiredError}
5721
5755
  */
5722
- buildingAccessLogsShow: async (id: string, type: AccessorType, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, name?: string, displayTower?: string, companyName?: string, id2?: string, filter?: string, building?: string, status?: number, startDate?: string, endDate?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
5756
+ buildingAccessLogsShow: async (id: string, accessorType: AccessorType, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
5723
5757
  // verify required parameter 'id' is not null or undefined
5724
5758
  assertParamExists('buildingAccessLogsShow', 'id', id)
5725
- // verify required parameter 'type' is not null or undefined
5726
- assertParamExists('buildingAccessLogsShow', 'type', type)
5759
+ // verify required parameter 'accessorType' is not null or undefined
5760
+ assertParamExists('buildingAccessLogsShow', 'accessorType', accessorType)
5727
5761
  const localVarPath = `/building_access/{id}`
5728
5762
  .replace(`{${"id"}}`, encodeURIComponent(String(id)));
5729
5763
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -5737,60 +5771,8 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
5737
5771
  const localVarHeaderParameter = {} as any;
5738
5772
  const localVarQueryParameter = {} as any;
5739
5773
 
5740
- if (orderBy !== undefined) {
5741
- localVarQueryParameter['order_by'] = orderBy;
5742
- }
5743
-
5744
- if (orderDirection !== undefined) {
5745
- localVarQueryParameter['order_direction'] = orderDirection;
5746
- }
5747
-
5748
- if (pageNumber !== undefined) {
5749
- localVarQueryParameter['page_number'] = pageNumber;
5750
- }
5751
-
5752
- if (pageSize !== undefined) {
5753
- localVarQueryParameter['page_size'] = pageSize;
5754
- }
5755
-
5756
- if (type !== undefined) {
5757
- localVarQueryParameter['type'] = type;
5758
- }
5759
-
5760
- if (name !== undefined) {
5761
- localVarQueryParameter['name'] = name;
5762
- }
5763
-
5764
- if (displayTower !== undefined) {
5765
- localVarQueryParameter['display_tower'] = displayTower;
5766
- }
5767
-
5768
- if (companyName !== undefined) {
5769
- localVarQueryParameter['company_name'] = companyName;
5770
- }
5771
-
5772
- if (id2 !== undefined) {
5773
- localVarQueryParameter['id'] = id2;
5774
- }
5775
-
5776
- if (filter !== undefined) {
5777
- localVarQueryParameter['filter'] = filter;
5778
- }
5779
-
5780
- if (building !== undefined) {
5781
- localVarQueryParameter['building'] = building;
5782
- }
5783
-
5784
- if (status !== undefined) {
5785
- localVarQueryParameter['status'] = status;
5786
- }
5787
-
5788
- if (startDate !== undefined) {
5789
- localVarQueryParameter['startDate'] = startDate;
5790
- }
5791
-
5792
- if (endDate !== undefined) {
5793
- localVarQueryParameter['endDate'] = endDate;
5774
+ if (accessorType !== undefined) {
5775
+ localVarQueryParameter['accessorType'] = accessorType;
5794
5776
  }
5795
5777
 
5796
5778
 
@@ -6425,7 +6407,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
6425
6407
  * @param {string} [orderDirection]
6426
6408
  * @param {number} [pageNumber]
6427
6409
  * @param {number} [pageSize]
6428
- * @param {AccessorType} [type]
6410
+ * @param {AccessorType} [accessorType]
6429
6411
  * @param {string} [gate]
6430
6412
  * @param {string} [id]
6431
6413
  * @param {string} [filter]
@@ -6434,7 +6416,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
6434
6416
  * @param {*} [options] Override http request option.
6435
6417
  * @throws {RequiredError}
6436
6418
  */
6437
- parkingAccessLogsIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, type?: AccessorType, gate?: string, id?: string, filter?: string, startDate?: string, endDate?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
6419
+ parkingAccessLogsIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, accessorType?: AccessorType, gate?: string, id?: string, filter?: string, startDate?: string, endDate?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
6438
6420
  const localVarPath = `/parking_access`;
6439
6421
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
6440
6422
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -6463,8 +6445,8 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
6463
6445
  localVarQueryParameter['page_size'] = pageSize;
6464
6446
  }
6465
6447
 
6466
- if (type !== undefined) {
6467
- localVarQueryParameter['type'] = type;
6448
+ if (accessorType !== undefined) {
6449
+ localVarQueryParameter['accessorType'] = accessorType;
6468
6450
  }
6469
6451
 
6470
6452
  if (gate !== undefined) {
@@ -6500,25 +6482,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
6500
6482
  },
6501
6483
  /**
6502
6484
  *
6503
- * @param {string} id
6504
- * @param {string} [orderBy]
6505
- * @param {string} [orderDirection]
6506
- * @param {number} [pageNumber]
6507
- * @param {number} [pageSize]
6508
- * @param {AccessorType} [type]
6509
- * @param {string} [gate]
6510
- * @param {string} [id2]
6511
- * @param {string} [filter]
6512
- * @param {string} [startDate]
6513
- * @param {string} [endDate]
6485
+ * @param {string} plateNumber
6514
6486
  * @param {*} [options] Override http request option.
6515
6487
  * @throws {RequiredError}
6516
6488
  */
6517
- parkingAccessLogsShow: async (id: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, type?: AccessorType, gate?: string, id2?: string, filter?: string, startDate?: string, endDate?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
6518
- // verify required parameter 'id' is not null or undefined
6519
- assertParamExists('parkingAccessLogsShow', 'id', id)
6520
- const localVarPath = `/parking_access/{id}`
6521
- .replace(`{${"id"}}`, encodeURIComponent(String(id)));
6489
+ parkingAccessLogsShow: async (plateNumber: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
6490
+ // verify required parameter 'plateNumber' is not null or undefined
6491
+ assertParamExists('parkingAccessLogsShow', 'plateNumber', plateNumber)
6492
+ const localVarPath = `/parking_access/{plate_number}`
6493
+ .replace(`{${"plate_number"}}`, encodeURIComponent(String(plateNumber)));
6522
6494
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
6523
6495
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6524
6496
  let baseOptions;
@@ -6530,46 +6502,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
6530
6502
  const localVarHeaderParameter = {} as any;
6531
6503
  const localVarQueryParameter = {} as any;
6532
6504
 
6533
- if (orderBy !== undefined) {
6534
- localVarQueryParameter['order_by'] = orderBy;
6535
- }
6536
-
6537
- if (orderDirection !== undefined) {
6538
- localVarQueryParameter['order_direction'] = orderDirection;
6539
- }
6540
-
6541
- if (pageNumber !== undefined) {
6542
- localVarQueryParameter['page_number'] = pageNumber;
6543
- }
6544
-
6545
- if (pageSize !== undefined) {
6546
- localVarQueryParameter['page_size'] = pageSize;
6547
- }
6548
-
6549
- if (type !== undefined) {
6550
- localVarQueryParameter['type'] = type;
6551
- }
6552
-
6553
- if (gate !== undefined) {
6554
- localVarQueryParameter['gate'] = gate;
6555
- }
6556
-
6557
- if (id2 !== undefined) {
6558
- localVarQueryParameter['id'] = id2;
6559
- }
6560
-
6561
- if (filter !== undefined) {
6562
- localVarQueryParameter['filter'] = filter;
6563
- }
6564
-
6565
- if (startDate !== undefined) {
6566
- localVarQueryParameter['startDate'] = startDate;
6567
- }
6568
-
6569
- if (endDate !== undefined) {
6570
- localVarQueryParameter['endDate'] = endDate;
6571
- }
6572
-
6573
6505
 
6574
6506
 
6575
6507
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7369,49 +7301,35 @@ export const DefaultApiFp = function(configuration?: Configuration) {
7369
7301
  },
7370
7302
  /**
7371
7303
  *
7372
- * @param {AccessorType} type
7304
+ * @param {AccessorType} accessorType
7373
7305
  * @param {string} [orderBy]
7374
7306
  * @param {string} [orderDirection]
7375
7307
  * @param {number} [pageNumber]
7376
7308
  * @param {number} [pageSize]
7377
- * @param {string} [name]
7378
7309
  * @param {string} [displayTower]
7379
- * @param {string} [companyName]
7380
- * @param {string} [id]
7381
7310
  * @param {string} [filter]
7311
+ * @param {string} [id]
7382
7312
  * @param {string} [building]
7383
7313
  * @param {number} [status]
7384
7314
  * @param {string} [startDate]
7385
7315
  * @param {string} [endDate]
7316
+ * @param {string} [name]
7386
7317
  * @param {*} [options] Override http request option.
7387
7318
  * @throws {RequiredError}
7388
7319
  */
7389
- async buildingAccessLogsIndex(type: AccessorType, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, name?: string, displayTower?: string, companyName?: string, id?: string, filter?: string, building?: string, status?: number, startDate?: string, endDate?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseBuildingAccessLogResult>> {
7390
- const localVarAxiosArgs = await localVarAxiosParamCreator.buildingAccessLogsIndex(type, orderBy, orderDirection, pageNumber, pageSize, name, displayTower, companyName, id, filter, building, status, startDate, endDate, options);
7320
+ async buildingAccessLogsIndex(accessorType: AccessorType, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, displayTower?: string, filter?: string, id?: string, building?: string, status?: number, startDate?: string, endDate?: string, name?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseBuildingAccessLogResult>> {
7321
+ const localVarAxiosArgs = await localVarAxiosParamCreator.buildingAccessLogsIndex(accessorType, orderBy, orderDirection, pageNumber, pageSize, displayTower, filter, id, building, status, startDate, endDate, name, options);
7391
7322
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
7392
7323
  },
7393
7324
  /**
7394
7325
  *
7395
7326
  * @param {string} id
7396
- * @param {AccessorType} type
7397
- * @param {string} [orderBy]
7398
- * @param {string} [orderDirection]
7399
- * @param {number} [pageNumber]
7400
- * @param {number} [pageSize]
7401
- * @param {string} [name]
7402
- * @param {string} [displayTower]
7403
- * @param {string} [companyName]
7404
- * @param {string} [id2]
7405
- * @param {string} [filter]
7406
- * @param {string} [building]
7407
- * @param {number} [status]
7408
- * @param {string} [startDate]
7409
- * @param {string} [endDate]
7327
+ * @param {AccessorType} accessorType
7410
7328
  * @param {*} [options] Override http request option.
7411
7329
  * @throws {RequiredError}
7412
7330
  */
7413
- async buildingAccessLogsShow(id: string, type: AccessorType, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, name?: string, displayTower?: string, companyName?: string, id2?: string, filter?: string, building?: string, status?: number, startDate?: string, endDate?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseBuildingAccessLogResult>> {
7414
- const localVarAxiosArgs = await localVarAxiosParamCreator.buildingAccessLogsShow(id, type, orderBy, orderDirection, pageNumber, pageSize, name, displayTower, companyName, id2, filter, building, status, startDate, endDate, options);
7331
+ async buildingAccessLogsShow(id: string, accessorType: AccessorType, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseBuildingAccessLogResult>> {
7332
+ const localVarAxiosArgs = await localVarAxiosParamCreator.buildingAccessLogsShow(id, accessorType, options);
7415
7333
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
7416
7334
  },
7417
7335
  /**
@@ -7597,7 +7515,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
7597
7515
  * @param {string} [orderDirection]
7598
7516
  * @param {number} [pageNumber]
7599
7517
  * @param {number} [pageSize]
7600
- * @param {AccessorType} [type]
7518
+ * @param {AccessorType} [accessorType]
7601
7519
  * @param {string} [gate]
7602
7520
  * @param {string} [id]
7603
7521
  * @param {string} [filter]
@@ -7606,28 +7524,18 @@ export const DefaultApiFp = function(configuration?: Configuration) {
7606
7524
  * @param {*} [options] Override http request option.
7607
7525
  * @throws {RequiredError}
7608
7526
  */
7609
- async parkingAccessLogsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, type?: AccessorType, gate?: string, id?: string, filter?: string, startDate?: string, endDate?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseParkingLogResult>> {
7610
- const localVarAxiosArgs = await localVarAxiosParamCreator.parkingAccessLogsIndex(orderBy, orderDirection, pageNumber, pageSize, type, gate, id, filter, startDate, endDate, options);
7527
+ async parkingAccessLogsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, accessorType?: AccessorType, gate?: string, id?: string, filter?: string, startDate?: string, endDate?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseParkingLogResult>> {
7528
+ const localVarAxiosArgs = await localVarAxiosParamCreator.parkingAccessLogsIndex(orderBy, orderDirection, pageNumber, pageSize, accessorType, gate, id, filter, startDate, endDate, options);
7611
7529
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
7612
7530
  },
7613
7531
  /**
7614
7532
  *
7615
- * @param {string} id
7616
- * @param {string} [orderBy]
7617
- * @param {string} [orderDirection]
7618
- * @param {number} [pageNumber]
7619
- * @param {number} [pageSize]
7620
- * @param {AccessorType} [type]
7621
- * @param {string} [gate]
7622
- * @param {string} [id2]
7623
- * @param {string} [filter]
7624
- * @param {string} [startDate]
7625
- * @param {string} [endDate]
7533
+ * @param {string} plateNumber
7626
7534
  * @param {*} [options] Override http request option.
7627
7535
  * @throws {RequiredError}
7628
7536
  */
7629
- async parkingAccessLogsShow(id: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, type?: AccessorType, gate?: string, id2?: string, filter?: string, startDate?: string, endDate?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseParkingLogResult>> {
7630
- const localVarAxiosArgs = await localVarAxiosParamCreator.parkingAccessLogsShow(id, orderBy, orderDirection, pageNumber, pageSize, type, gate, id2, filter, startDate, endDate, options);
7537
+ async parkingAccessLogsShow(plateNumber: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseParkingLogResult>> {
7538
+ const localVarAxiosArgs = await localVarAxiosParamCreator.parkingAccessLogsShow(plateNumber, options);
7631
7539
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
7632
7540
  },
7633
7541
  /**
@@ -7904,48 +7812,34 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
7904
7812
  },
7905
7813
  /**
7906
7814
  *
7907
- * @param {AccessorType} type
7815
+ * @param {AccessorType} accessorType
7908
7816
  * @param {string} [orderBy]
7909
7817
  * @param {string} [orderDirection]
7910
7818
  * @param {number} [pageNumber]
7911
7819
  * @param {number} [pageSize]
7912
- * @param {string} [name]
7913
7820
  * @param {string} [displayTower]
7914
- * @param {string} [companyName]
7915
- * @param {string} [id]
7916
7821
  * @param {string} [filter]
7822
+ * @param {string} [id]
7917
7823
  * @param {string} [building]
7918
7824
  * @param {number} [status]
7919
7825
  * @param {string} [startDate]
7920
7826
  * @param {string} [endDate]
7827
+ * @param {string} [name]
7921
7828
  * @param {*} [options] Override http request option.
7922
7829
  * @throws {RequiredError}
7923
7830
  */
7924
- buildingAccessLogsIndex(type: AccessorType, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, name?: string, displayTower?: string, companyName?: string, id?: string, filter?: string, building?: string, status?: number, startDate?: string, endDate?: string, options?: any): AxiosPromise<WrappedArrayResponseBuildingAccessLogResult> {
7925
- return localVarFp.buildingAccessLogsIndex(type, orderBy, orderDirection, pageNumber, pageSize, name, displayTower, companyName, id, filter, building, status, startDate, endDate, options).then((request) => request(axios, basePath));
7831
+ buildingAccessLogsIndex(accessorType: AccessorType, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, displayTower?: string, filter?: string, id?: string, building?: string, status?: number, startDate?: string, endDate?: string, name?: string, options?: any): AxiosPromise<WrappedArrayResponseBuildingAccessLogResult> {
7832
+ return localVarFp.buildingAccessLogsIndex(accessorType, orderBy, orderDirection, pageNumber, pageSize, displayTower, filter, id, building, status, startDate, endDate, name, options).then((request) => request(axios, basePath));
7926
7833
  },
7927
7834
  /**
7928
7835
  *
7929
7836
  * @param {string} id
7930
- * @param {AccessorType} type
7931
- * @param {string} [orderBy]
7932
- * @param {string} [orderDirection]
7933
- * @param {number} [pageNumber]
7934
- * @param {number} [pageSize]
7935
- * @param {string} [name]
7936
- * @param {string} [displayTower]
7937
- * @param {string} [companyName]
7938
- * @param {string} [id2]
7939
- * @param {string} [filter]
7940
- * @param {string} [building]
7941
- * @param {number} [status]
7942
- * @param {string} [startDate]
7943
- * @param {string} [endDate]
7837
+ * @param {AccessorType} accessorType
7944
7838
  * @param {*} [options] Override http request option.
7945
7839
  * @throws {RequiredError}
7946
7840
  */
7947
- buildingAccessLogsShow(id: string, type: AccessorType, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, name?: string, displayTower?: string, companyName?: string, id2?: string, filter?: string, building?: string, status?: number, startDate?: string, endDate?: string, options?: any): AxiosPromise<WrappedArrayResponseBuildingAccessLogResult> {
7948
- return localVarFp.buildingAccessLogsShow(id, type, orderBy, orderDirection, pageNumber, pageSize, name, displayTower, companyName, id2, filter, building, status, startDate, endDate, options).then((request) => request(axios, basePath));
7841
+ buildingAccessLogsShow(id: string, accessorType: AccessorType, options?: any): AxiosPromise<WrappedArrayResponseBuildingAccessLogResult> {
7842
+ return localVarFp.buildingAccessLogsShow(id, accessorType, options).then((request) => request(axios, basePath));
7949
7843
  },
7950
7844
  /**
7951
7845
  *
@@ -8113,7 +8007,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
8113
8007
  * @param {string} [orderDirection]
8114
8008
  * @param {number} [pageNumber]
8115
8009
  * @param {number} [pageSize]
8116
- * @param {AccessorType} [type]
8010
+ * @param {AccessorType} [accessorType]
8117
8011
  * @param {string} [gate]
8118
8012
  * @param {string} [id]
8119
8013
  * @param {string} [filter]
@@ -8122,27 +8016,17 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
8122
8016
  * @param {*} [options] Override http request option.
8123
8017
  * @throws {RequiredError}
8124
8018
  */
8125
- parkingAccessLogsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, type?: AccessorType, gate?: string, id?: string, filter?: string, startDate?: string, endDate?: string, options?: any): AxiosPromise<WrappedArrayResponseParkingLogResult> {
8126
- return localVarFp.parkingAccessLogsIndex(orderBy, orderDirection, pageNumber, pageSize, type, gate, id, filter, startDate, endDate, options).then((request) => request(axios, basePath));
8019
+ parkingAccessLogsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, accessorType?: AccessorType, gate?: string, id?: string, filter?: string, startDate?: string, endDate?: string, options?: any): AxiosPromise<WrappedArrayResponseParkingLogResult> {
8020
+ return localVarFp.parkingAccessLogsIndex(orderBy, orderDirection, pageNumber, pageSize, accessorType, gate, id, filter, startDate, endDate, options).then((request) => request(axios, basePath));
8127
8021
  },
8128
8022
  /**
8129
8023
  *
8130
- * @param {string} id
8131
- * @param {string} [orderBy]
8132
- * @param {string} [orderDirection]
8133
- * @param {number} [pageNumber]
8134
- * @param {number} [pageSize]
8135
- * @param {AccessorType} [type]
8136
- * @param {string} [gate]
8137
- * @param {string} [id2]
8138
- * @param {string} [filter]
8139
- * @param {string} [startDate]
8140
- * @param {string} [endDate]
8024
+ * @param {string} plateNumber
8141
8025
  * @param {*} [options] Override http request option.
8142
8026
  * @throws {RequiredError}
8143
8027
  */
8144
- parkingAccessLogsShow(id: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, type?: AccessorType, gate?: string, id2?: string, filter?: string, startDate?: string, endDate?: string, options?: any): AxiosPromise<WrappedOneResponseParkingLogResult> {
8145
- return localVarFp.parkingAccessLogsShow(id, orderBy, orderDirection, pageNumber, pageSize, type, gate, id2, filter, startDate, endDate, options).then((request) => request(axios, basePath));
8028
+ parkingAccessLogsShow(plateNumber: string, options?: any): AxiosPromise<WrappedOneResponseParkingLogResult> {
8029
+ return localVarFp.parkingAccessLogsShow(plateNumber, options).then((request) => request(axios, basePath));
8146
8030
  },
8147
8031
  /**
8148
8032
  *
@@ -8411,51 +8295,37 @@ export class DefaultApi extends BaseAPI {
8411
8295
 
8412
8296
  /**
8413
8297
  *
8414
- * @param {AccessorType} type
8298
+ * @param {AccessorType} accessorType
8415
8299
  * @param {string} [orderBy]
8416
8300
  * @param {string} [orderDirection]
8417
8301
  * @param {number} [pageNumber]
8418
8302
  * @param {number} [pageSize]
8419
- * @param {string} [name]
8420
8303
  * @param {string} [displayTower]
8421
- * @param {string} [companyName]
8422
- * @param {string} [id]
8423
8304
  * @param {string} [filter]
8305
+ * @param {string} [id]
8424
8306
  * @param {string} [building]
8425
8307
  * @param {number} [status]
8426
8308
  * @param {string} [startDate]
8427
8309
  * @param {string} [endDate]
8310
+ * @param {string} [name]
8428
8311
  * @param {*} [options] Override http request option.
8429
8312
  * @throws {RequiredError}
8430
8313
  * @memberof DefaultApi
8431
8314
  */
8432
- public buildingAccessLogsIndex(type: AccessorType, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, name?: string, displayTower?: string, companyName?: string, id?: string, filter?: string, building?: string, status?: number, startDate?: string, endDate?: string, options?: AxiosRequestConfig) {
8433
- return DefaultApiFp(this.configuration).buildingAccessLogsIndex(type, orderBy, orderDirection, pageNumber, pageSize, name, displayTower, companyName, id, filter, building, status, startDate, endDate, options).then((request) => request(this.axios, this.basePath));
8315
+ public buildingAccessLogsIndex(accessorType: AccessorType, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, displayTower?: string, filter?: string, id?: string, building?: string, status?: number, startDate?: string, endDate?: string, name?: string, options?: AxiosRequestConfig) {
8316
+ return DefaultApiFp(this.configuration).buildingAccessLogsIndex(accessorType, orderBy, orderDirection, pageNumber, pageSize, displayTower, filter, id, building, status, startDate, endDate, name, options).then((request) => request(this.axios, this.basePath));
8434
8317
  }
8435
8318
 
8436
8319
  /**
8437
8320
  *
8438
8321
  * @param {string} id
8439
- * @param {AccessorType} type
8440
- * @param {string} [orderBy]
8441
- * @param {string} [orderDirection]
8442
- * @param {number} [pageNumber]
8443
- * @param {number} [pageSize]
8444
- * @param {string} [name]
8445
- * @param {string} [displayTower]
8446
- * @param {string} [companyName]
8447
- * @param {string} [id2]
8448
- * @param {string} [filter]
8449
- * @param {string} [building]
8450
- * @param {number} [status]
8451
- * @param {string} [startDate]
8452
- * @param {string} [endDate]
8322
+ * @param {AccessorType} accessorType
8453
8323
  * @param {*} [options] Override http request option.
8454
8324
  * @throws {RequiredError}
8455
8325
  * @memberof DefaultApi
8456
8326
  */
8457
- public buildingAccessLogsShow(id: string, type: AccessorType, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, name?: string, displayTower?: string, companyName?: string, id2?: string, filter?: string, building?: string, status?: number, startDate?: string, endDate?: string, options?: AxiosRequestConfig) {
8458
- return DefaultApiFp(this.configuration).buildingAccessLogsShow(id, type, orderBy, orderDirection, pageNumber, pageSize, name, displayTower, companyName, id2, filter, building, status, startDate, endDate, options).then((request) => request(this.axios, this.basePath));
8327
+ public buildingAccessLogsShow(id: string, accessorType: AccessorType, options?: AxiosRequestConfig) {
8328
+ return DefaultApiFp(this.configuration).buildingAccessLogsShow(id, accessorType, options).then((request) => request(this.axios, this.basePath));
8459
8329
  }
8460
8330
 
8461
8331
  /**
@@ -8658,7 +8528,7 @@ export class DefaultApi extends BaseAPI {
8658
8528
  * @param {string} [orderDirection]
8659
8529
  * @param {number} [pageNumber]
8660
8530
  * @param {number} [pageSize]
8661
- * @param {AccessorType} [type]
8531
+ * @param {AccessorType} [accessorType]
8662
8532
  * @param {string} [gate]
8663
8533
  * @param {string} [id]
8664
8534
  * @param {string} [filter]
@@ -8668,29 +8538,19 @@ export class DefaultApi extends BaseAPI {
8668
8538
  * @throws {RequiredError}
8669
8539
  * @memberof DefaultApi
8670
8540
  */
8671
- public parkingAccessLogsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, type?: AccessorType, gate?: string, id?: string, filter?: string, startDate?: string, endDate?: string, options?: AxiosRequestConfig) {
8672
- return DefaultApiFp(this.configuration).parkingAccessLogsIndex(orderBy, orderDirection, pageNumber, pageSize, type, gate, id, filter, startDate, endDate, options).then((request) => request(this.axios, this.basePath));
8541
+ public parkingAccessLogsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, accessorType?: AccessorType, gate?: string, id?: string, filter?: string, startDate?: string, endDate?: string, options?: AxiosRequestConfig) {
8542
+ return DefaultApiFp(this.configuration).parkingAccessLogsIndex(orderBy, orderDirection, pageNumber, pageSize, accessorType, gate, id, filter, startDate, endDate, options).then((request) => request(this.axios, this.basePath));
8673
8543
  }
8674
8544
 
8675
8545
  /**
8676
8546
  *
8677
- * @param {string} id
8678
- * @param {string} [orderBy]
8679
- * @param {string} [orderDirection]
8680
- * @param {number} [pageNumber]
8681
- * @param {number} [pageSize]
8682
- * @param {AccessorType} [type]
8683
- * @param {string} [gate]
8684
- * @param {string} [id2]
8685
- * @param {string} [filter]
8686
- * @param {string} [startDate]
8687
- * @param {string} [endDate]
8547
+ * @param {string} plateNumber
8688
8548
  * @param {*} [options] Override http request option.
8689
8549
  * @throws {RequiredError}
8690
8550
  * @memberof DefaultApi
8691
8551
  */
8692
- public parkingAccessLogsShow(id: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, type?: AccessorType, gate?: string, id2?: string, filter?: string, startDate?: string, endDate?: string, options?: AxiosRequestConfig) {
8693
- return DefaultApiFp(this.configuration).parkingAccessLogsShow(id, orderBy, orderDirection, pageNumber, pageSize, type, gate, id2, filter, startDate, endDate, options).then((request) => request(this.axios, this.basePath));
8552
+ public parkingAccessLogsShow(plateNumber: string, options?: AxiosRequestConfig) {
8553
+ return DefaultApiFp(this.configuration).parkingAccessLogsShow(plateNumber, options).then((request) => request(this.axios, this.basePath));
8694
8554
  }
8695
8555
 
8696
8556
  /**