ob-bms-sdk 0.0.115 → 0.0.117
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 +204 -17
- package/dist/api/api.d.ts +155 -8
- package/dist/api/api.js +85 -17
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -631,6 +631,21 @@ export interface AirQualityIndexIndicatorRange {
|
|
|
631
631
|
*/
|
|
632
632
|
'id': string;
|
|
633
633
|
}
|
|
634
|
+
/**
|
|
635
|
+
*
|
|
636
|
+
* @export
|
|
637
|
+
* @enum {string}
|
|
638
|
+
*/
|
|
639
|
+
|
|
640
|
+
export const AlgType = {
|
|
641
|
+
ShopperToTenant: 'ShopperToTenant',
|
|
642
|
+
TenantToShopper: 'TenantToShopper',
|
|
643
|
+
VisitorToApp: 'VisitorToApp'
|
|
644
|
+
} as const;
|
|
645
|
+
|
|
646
|
+
export type AlgType = typeof AlgType[keyof typeof AlgType];
|
|
647
|
+
|
|
648
|
+
|
|
634
649
|
/**
|
|
635
650
|
*
|
|
636
651
|
* @export
|
|
@@ -1896,6 +1911,77 @@ export interface Image {
|
|
|
1896
1911
|
*/
|
|
1897
1912
|
'valetParkingId': number;
|
|
1898
1913
|
}
|
|
1914
|
+
/**
|
|
1915
|
+
*
|
|
1916
|
+
* @export
|
|
1917
|
+
* @interface ImportPhysicalParkingTicketBody
|
|
1918
|
+
*/
|
|
1919
|
+
export interface ImportPhysicalParkingTicketBody {
|
|
1920
|
+
/**
|
|
1921
|
+
*
|
|
1922
|
+
* @type {string}
|
|
1923
|
+
* @memberof ImportPhysicalParkingTicketBody
|
|
1924
|
+
*/
|
|
1925
|
+
'logId': string;
|
|
1926
|
+
}
|
|
1927
|
+
/**
|
|
1928
|
+
*
|
|
1929
|
+
* @export
|
|
1930
|
+
* @interface ImportPhysicalParkingTicketResponse
|
|
1931
|
+
*/
|
|
1932
|
+
export interface ImportPhysicalParkingTicketResponse {
|
|
1933
|
+
/**
|
|
1934
|
+
*
|
|
1935
|
+
* @type {string}
|
|
1936
|
+
* @memberof ImportPhysicalParkingTicketResponse
|
|
1937
|
+
*/
|
|
1938
|
+
'message': string;
|
|
1939
|
+
/**
|
|
1940
|
+
*
|
|
1941
|
+
* @type {number}
|
|
1942
|
+
* @memberof ImportPhysicalParkingTicketResponse
|
|
1943
|
+
*/
|
|
1944
|
+
'status': number;
|
|
1945
|
+
/**
|
|
1946
|
+
*
|
|
1947
|
+
* @type {ImportPhysicalParkingTicketResponseData}
|
|
1948
|
+
* @memberof ImportPhysicalParkingTicketResponse
|
|
1949
|
+
*/
|
|
1950
|
+
'data': ImportPhysicalParkingTicketResponseData;
|
|
1951
|
+
}
|
|
1952
|
+
/**
|
|
1953
|
+
*
|
|
1954
|
+
* @export
|
|
1955
|
+
* @interface ImportPhysicalParkingTicketResponseData
|
|
1956
|
+
*/
|
|
1957
|
+
export interface ImportPhysicalParkingTicketResponseData {
|
|
1958
|
+
/**
|
|
1959
|
+
*
|
|
1960
|
+
* @type {AlgType}
|
|
1961
|
+
* @memberof ImportPhysicalParkingTicketResponseData
|
|
1962
|
+
*/
|
|
1963
|
+
'algType': AlgType;
|
|
1964
|
+
/**
|
|
1965
|
+
*
|
|
1966
|
+
* @type {string}
|
|
1967
|
+
* @memberof ImportPhysicalParkingTicketResponseData
|
|
1968
|
+
*/
|
|
1969
|
+
'appId': string;
|
|
1970
|
+
/**
|
|
1971
|
+
*
|
|
1972
|
+
* @type {string}
|
|
1973
|
+
* @memberof ImportPhysicalParkingTicketResponseData
|
|
1974
|
+
*/
|
|
1975
|
+
'uid': string;
|
|
1976
|
+
/**
|
|
1977
|
+
*
|
|
1978
|
+
* @type {string}
|
|
1979
|
+
* @memberof ImportPhysicalParkingTicketResponseData
|
|
1980
|
+
*/
|
|
1981
|
+
'logId': string;
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
|
|
1899
1985
|
/**
|
|
1900
1986
|
*
|
|
1901
1987
|
* @export
|
|
@@ -7755,6 +7841,44 @@ export interface WrappedResponseGetTermsAndConditionsResidenceParkingResponseDat
|
|
|
7755
7841
|
*/
|
|
7756
7842
|
'data': GetTermsAndConditionsResidenceParkingResponseData;
|
|
7757
7843
|
}
|
|
7844
|
+
/**
|
|
7845
|
+
*
|
|
7846
|
+
* @export
|
|
7847
|
+
* @interface WrappedResponseImportPhysicalParkingTicketResponse
|
|
7848
|
+
*/
|
|
7849
|
+
export interface WrappedResponseImportPhysicalParkingTicketResponse {
|
|
7850
|
+
/**
|
|
7851
|
+
*
|
|
7852
|
+
* @type {WrappedResponseImportPhysicalParkingTicketResponseData}
|
|
7853
|
+
* @memberof WrappedResponseImportPhysicalParkingTicketResponse
|
|
7854
|
+
*/
|
|
7855
|
+
'data': WrappedResponseImportPhysicalParkingTicketResponseData | null;
|
|
7856
|
+
}
|
|
7857
|
+
/**
|
|
7858
|
+
*
|
|
7859
|
+
* @export
|
|
7860
|
+
* @interface WrappedResponseImportPhysicalParkingTicketResponseData
|
|
7861
|
+
*/
|
|
7862
|
+
export interface WrappedResponseImportPhysicalParkingTicketResponseData {
|
|
7863
|
+
/**
|
|
7864
|
+
*
|
|
7865
|
+
* @type {string}
|
|
7866
|
+
* @memberof WrappedResponseImportPhysicalParkingTicketResponseData
|
|
7867
|
+
*/
|
|
7868
|
+
'message': string;
|
|
7869
|
+
/**
|
|
7870
|
+
*
|
|
7871
|
+
* @type {number}
|
|
7872
|
+
* @memberof WrappedResponseImportPhysicalParkingTicketResponseData
|
|
7873
|
+
*/
|
|
7874
|
+
'status': number;
|
|
7875
|
+
/**
|
|
7876
|
+
*
|
|
7877
|
+
* @type {ImportPhysicalParkingTicketResponseData}
|
|
7878
|
+
* @memberof WrappedResponseImportPhysicalParkingTicketResponseData
|
|
7879
|
+
*/
|
|
7880
|
+
'data': ImportPhysicalParkingTicketResponseData;
|
|
7881
|
+
}
|
|
7758
7882
|
/**
|
|
7759
7883
|
*
|
|
7760
7884
|
* @export
|
|
@@ -10685,6 +10809,46 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
10685
10809
|
options: localVarRequestOptions,
|
|
10686
10810
|
};
|
|
10687
10811
|
},
|
|
10812
|
+
/**
|
|
10813
|
+
*
|
|
10814
|
+
* @param {ImportPhysicalParkingTicketBody} importPhysicalParkingTicketBody
|
|
10815
|
+
* @param {string} [xAccountId]
|
|
10816
|
+
* @param {*} [options] Override http request option.
|
|
10817
|
+
* @throws {RequiredError}
|
|
10818
|
+
*/
|
|
10819
|
+
parkingTicketsPhysicalTicket: async (importPhysicalParkingTicketBody: ImportPhysicalParkingTicketBody, xAccountId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
10820
|
+
// verify required parameter 'importPhysicalParkingTicketBody' is not null or undefined
|
|
10821
|
+
assertParamExists('parkingTicketsPhysicalTicket', 'importPhysicalParkingTicketBody', importPhysicalParkingTicketBody)
|
|
10822
|
+
const localVarPath = `/parking_tickets/import`;
|
|
10823
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
10824
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
10825
|
+
let baseOptions;
|
|
10826
|
+
if (configuration) {
|
|
10827
|
+
baseOptions = configuration.baseOptions;
|
|
10828
|
+
}
|
|
10829
|
+
|
|
10830
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
10831
|
+
const localVarHeaderParameter = {} as any;
|
|
10832
|
+
const localVarQueryParameter = {} as any;
|
|
10833
|
+
|
|
10834
|
+
if (xAccountId != null) {
|
|
10835
|
+
localVarHeaderParameter['x-account-id'] = String(xAccountId);
|
|
10836
|
+
}
|
|
10837
|
+
|
|
10838
|
+
|
|
10839
|
+
|
|
10840
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
10841
|
+
|
|
10842
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
10843
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
10844
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
10845
|
+
localVarRequestOptions.data = serializeDataIfNeeded(importPhysicalParkingTicketBody, localVarRequestOptions, configuration)
|
|
10846
|
+
|
|
10847
|
+
return {
|
|
10848
|
+
url: toPathString(localVarUrlObj),
|
|
10849
|
+
options: localVarRequestOptions,
|
|
10850
|
+
};
|
|
10851
|
+
},
|
|
10688
10852
|
/**
|
|
10689
10853
|
*
|
|
10690
10854
|
* @param {string} logId
|
|
@@ -11304,16 +11468,13 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
11304
11468
|
/**
|
|
11305
11469
|
*
|
|
11306
11470
|
* @param {string} id
|
|
11307
|
-
* @param {string} xAccountId
|
|
11308
11471
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
11309
11472
|
* @param {*} [options] Override http request option.
|
|
11310
11473
|
* @throws {RequiredError}
|
|
11311
11474
|
*/
|
|
11312
|
-
visitorSchedulesUpdate: async (id: string,
|
|
11475
|
+
visitorSchedulesUpdate: async (id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
11313
11476
|
// verify required parameter 'id' is not null or undefined
|
|
11314
11477
|
assertParamExists('visitorSchedulesUpdate', 'id', id)
|
|
11315
|
-
// verify required parameter 'xAccountId' is not null or undefined
|
|
11316
|
-
assertParamExists('visitorSchedulesUpdate', 'xAccountId', xAccountId)
|
|
11317
11478
|
// verify required parameter 'updateVisitorScheduleBody' is not null or undefined
|
|
11318
11479
|
assertParamExists('visitorSchedulesUpdate', 'updateVisitorScheduleBody', updateVisitorScheduleBody)
|
|
11319
11480
|
const localVarPath = `/visitor_schedules/{id}`
|
|
@@ -11329,10 +11490,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
11329
11490
|
const localVarHeaderParameter = {} as any;
|
|
11330
11491
|
const localVarQueryParameter = {} as any;
|
|
11331
11492
|
|
|
11332
|
-
if (xAccountId != null) {
|
|
11333
|
-
localVarHeaderParameter['x-account-id'] = String(xAccountId);
|
|
11334
|
-
}
|
|
11335
|
-
|
|
11336
11493
|
|
|
11337
11494
|
|
|
11338
11495
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -12069,6 +12226,17 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
12069
12226
|
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingTicketsIndex(type, id, options);
|
|
12070
12227
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
12071
12228
|
},
|
|
12229
|
+
/**
|
|
12230
|
+
*
|
|
12231
|
+
* @param {ImportPhysicalParkingTicketBody} importPhysicalParkingTicketBody
|
|
12232
|
+
* @param {string} [xAccountId]
|
|
12233
|
+
* @param {*} [options] Override http request option.
|
|
12234
|
+
* @throws {RequiredError}
|
|
12235
|
+
*/
|
|
12236
|
+
async parkingTicketsPhysicalTicket(importPhysicalParkingTicketBody: ImportPhysicalParkingTicketBody, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseImportPhysicalParkingTicketResponse>> {
|
|
12237
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingTicketsPhysicalTicket(importPhysicalParkingTicketBody, xAccountId, options);
|
|
12238
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
12239
|
+
},
|
|
12072
12240
|
/**
|
|
12073
12241
|
*
|
|
12074
12242
|
* @param {string} logId
|
|
@@ -12249,13 +12417,12 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
12249
12417
|
/**
|
|
12250
12418
|
*
|
|
12251
12419
|
* @param {string} id
|
|
12252
|
-
* @param {string} xAccountId
|
|
12253
12420
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
12254
12421
|
* @param {*} [options] Override http request option.
|
|
12255
12422
|
* @throws {RequiredError}
|
|
12256
12423
|
*/
|
|
12257
|
-
async visitorSchedulesUpdate(id: string,
|
|
12258
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.visitorSchedulesUpdate(id,
|
|
12424
|
+
async visitorSchedulesUpdate(id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseResultResponseData>> {
|
|
12425
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.visitorSchedulesUpdate(id, updateVisitorScheduleBody, options);
|
|
12259
12426
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
12260
12427
|
},
|
|
12261
12428
|
/**
|
|
@@ -12790,6 +12957,16 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
12790
12957
|
parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: any): AxiosPromise<WrappedResponseParkingTicketDataArray> {
|
|
12791
12958
|
return localVarFp.parkingTicketsIndex(type, id, options).then((request) => request(axios, basePath));
|
|
12792
12959
|
},
|
|
12960
|
+
/**
|
|
12961
|
+
*
|
|
12962
|
+
* @param {ImportPhysicalParkingTicketBody} importPhysicalParkingTicketBody
|
|
12963
|
+
* @param {string} [xAccountId]
|
|
12964
|
+
* @param {*} [options] Override http request option.
|
|
12965
|
+
* @throws {RequiredError}
|
|
12966
|
+
*/
|
|
12967
|
+
parkingTicketsPhysicalTicket(importPhysicalParkingTicketBody: ImportPhysicalParkingTicketBody, xAccountId?: string, options?: any): AxiosPromise<WrappedResponseImportPhysicalParkingTicketResponse> {
|
|
12968
|
+
return localVarFp.parkingTicketsPhysicalTicket(importPhysicalParkingTicketBody, xAccountId, options).then((request) => request(axios, basePath));
|
|
12969
|
+
},
|
|
12793
12970
|
/**
|
|
12794
12971
|
*
|
|
12795
12972
|
* @param {string} logId
|
|
@@ -12953,13 +13130,12 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
12953
13130
|
/**
|
|
12954
13131
|
*
|
|
12955
13132
|
* @param {string} id
|
|
12956
|
-
* @param {string} xAccountId
|
|
12957
13133
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
12958
13134
|
* @param {*} [options] Override http request option.
|
|
12959
13135
|
* @throws {RequiredError}
|
|
12960
13136
|
*/
|
|
12961
|
-
visitorSchedulesUpdate(id: string,
|
|
12962
|
-
return localVarFp.visitorSchedulesUpdate(id,
|
|
13137
|
+
visitorSchedulesUpdate(id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: any): AxiosPromise<WrappedResponseResultResponseData> {
|
|
13138
|
+
return localVarFp.visitorSchedulesUpdate(id, updateVisitorScheduleBody, options).then((request) => request(axios, basePath));
|
|
12963
13139
|
},
|
|
12964
13140
|
/**
|
|
12965
13141
|
*
|
|
@@ -13577,6 +13753,18 @@ export class DefaultApi extends BaseAPI {
|
|
|
13577
13753
|
return DefaultApiFp(this.configuration).parkingTicketsIndex(type, id, options).then((request) => request(this.axios, this.basePath));
|
|
13578
13754
|
}
|
|
13579
13755
|
|
|
13756
|
+
/**
|
|
13757
|
+
*
|
|
13758
|
+
* @param {ImportPhysicalParkingTicketBody} importPhysicalParkingTicketBody
|
|
13759
|
+
* @param {string} [xAccountId]
|
|
13760
|
+
* @param {*} [options] Override http request option.
|
|
13761
|
+
* @throws {RequiredError}
|
|
13762
|
+
* @memberof DefaultApi
|
|
13763
|
+
*/
|
|
13764
|
+
public parkingTicketsPhysicalTicket(importPhysicalParkingTicketBody: ImportPhysicalParkingTicketBody, xAccountId?: string, options?: AxiosRequestConfig) {
|
|
13765
|
+
return DefaultApiFp(this.configuration).parkingTicketsPhysicalTicket(importPhysicalParkingTicketBody, xAccountId, options).then((request) => request(this.axios, this.basePath));
|
|
13766
|
+
}
|
|
13767
|
+
|
|
13580
13768
|
/**
|
|
13581
13769
|
*
|
|
13582
13770
|
* @param {string} logId
|
|
@@ -13774,14 +13962,13 @@ export class DefaultApi extends BaseAPI {
|
|
|
13774
13962
|
/**
|
|
13775
13963
|
*
|
|
13776
13964
|
* @param {string} id
|
|
13777
|
-
* @param {string} xAccountId
|
|
13778
13965
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
13779
13966
|
* @param {*} [options] Override http request option.
|
|
13780
13967
|
* @throws {RequiredError}
|
|
13781
13968
|
* @memberof DefaultApi
|
|
13782
13969
|
*/
|
|
13783
|
-
public visitorSchedulesUpdate(id: string,
|
|
13784
|
-
return DefaultApiFp(this.configuration).visitorSchedulesUpdate(id,
|
|
13970
|
+
public visitorSchedulesUpdate(id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig) {
|
|
13971
|
+
return DefaultApiFp(this.configuration).visitorSchedulesUpdate(id, updateVisitorScheduleBody, options).then((request) => request(this.axios, this.basePath));
|
|
13785
13972
|
}
|
|
13786
13973
|
|
|
13787
13974
|
/**
|
package/dist/api/api.d.ts
CHANGED
|
@@ -603,6 +603,17 @@ export interface AirQualityIndexIndicatorRange {
|
|
|
603
603
|
*/
|
|
604
604
|
'id': string;
|
|
605
605
|
}
|
|
606
|
+
/**
|
|
607
|
+
*
|
|
608
|
+
* @export
|
|
609
|
+
* @enum {string}
|
|
610
|
+
*/
|
|
611
|
+
export declare const AlgType: {
|
|
612
|
+
readonly ShopperToTenant: "ShopperToTenant";
|
|
613
|
+
readonly TenantToShopper: "TenantToShopper";
|
|
614
|
+
readonly VisitorToApp: "VisitorToApp";
|
|
615
|
+
};
|
|
616
|
+
export type AlgType = typeof AlgType[keyof typeof AlgType];
|
|
606
617
|
/**
|
|
607
618
|
*
|
|
608
619
|
* @export
|
|
@@ -1872,6 +1883,75 @@ export interface Image {
|
|
|
1872
1883
|
*/
|
|
1873
1884
|
'valetParkingId': number;
|
|
1874
1885
|
}
|
|
1886
|
+
/**
|
|
1887
|
+
*
|
|
1888
|
+
* @export
|
|
1889
|
+
* @interface ImportPhysicalParkingTicketBody
|
|
1890
|
+
*/
|
|
1891
|
+
export interface ImportPhysicalParkingTicketBody {
|
|
1892
|
+
/**
|
|
1893
|
+
*
|
|
1894
|
+
* @type {string}
|
|
1895
|
+
* @memberof ImportPhysicalParkingTicketBody
|
|
1896
|
+
*/
|
|
1897
|
+
'logId': string;
|
|
1898
|
+
}
|
|
1899
|
+
/**
|
|
1900
|
+
*
|
|
1901
|
+
* @export
|
|
1902
|
+
* @interface ImportPhysicalParkingTicketResponse
|
|
1903
|
+
*/
|
|
1904
|
+
export interface ImportPhysicalParkingTicketResponse {
|
|
1905
|
+
/**
|
|
1906
|
+
*
|
|
1907
|
+
* @type {string}
|
|
1908
|
+
* @memberof ImportPhysicalParkingTicketResponse
|
|
1909
|
+
*/
|
|
1910
|
+
'message': string;
|
|
1911
|
+
/**
|
|
1912
|
+
*
|
|
1913
|
+
* @type {number}
|
|
1914
|
+
* @memberof ImportPhysicalParkingTicketResponse
|
|
1915
|
+
*/
|
|
1916
|
+
'status': number;
|
|
1917
|
+
/**
|
|
1918
|
+
*
|
|
1919
|
+
* @type {ImportPhysicalParkingTicketResponseData}
|
|
1920
|
+
* @memberof ImportPhysicalParkingTicketResponse
|
|
1921
|
+
*/
|
|
1922
|
+
'data': ImportPhysicalParkingTicketResponseData;
|
|
1923
|
+
}
|
|
1924
|
+
/**
|
|
1925
|
+
*
|
|
1926
|
+
* @export
|
|
1927
|
+
* @interface ImportPhysicalParkingTicketResponseData
|
|
1928
|
+
*/
|
|
1929
|
+
export interface ImportPhysicalParkingTicketResponseData {
|
|
1930
|
+
/**
|
|
1931
|
+
*
|
|
1932
|
+
* @type {AlgType}
|
|
1933
|
+
* @memberof ImportPhysicalParkingTicketResponseData
|
|
1934
|
+
*/
|
|
1935
|
+
'algType': AlgType;
|
|
1936
|
+
/**
|
|
1937
|
+
*
|
|
1938
|
+
* @type {string}
|
|
1939
|
+
* @memberof ImportPhysicalParkingTicketResponseData
|
|
1940
|
+
*/
|
|
1941
|
+
'appId': string;
|
|
1942
|
+
/**
|
|
1943
|
+
*
|
|
1944
|
+
* @type {string}
|
|
1945
|
+
* @memberof ImportPhysicalParkingTicketResponseData
|
|
1946
|
+
*/
|
|
1947
|
+
'uid': string;
|
|
1948
|
+
/**
|
|
1949
|
+
*
|
|
1950
|
+
* @type {string}
|
|
1951
|
+
* @memberof ImportPhysicalParkingTicketResponseData
|
|
1952
|
+
*/
|
|
1953
|
+
'logId': string;
|
|
1954
|
+
}
|
|
1875
1955
|
/**
|
|
1876
1956
|
*
|
|
1877
1957
|
* @export
|
|
@@ -7674,6 +7754,44 @@ export interface WrappedResponseGetTermsAndConditionsResidenceParkingResponseDat
|
|
|
7674
7754
|
*/
|
|
7675
7755
|
'data': GetTermsAndConditionsResidenceParkingResponseData;
|
|
7676
7756
|
}
|
|
7757
|
+
/**
|
|
7758
|
+
*
|
|
7759
|
+
* @export
|
|
7760
|
+
* @interface WrappedResponseImportPhysicalParkingTicketResponse
|
|
7761
|
+
*/
|
|
7762
|
+
export interface WrappedResponseImportPhysicalParkingTicketResponse {
|
|
7763
|
+
/**
|
|
7764
|
+
*
|
|
7765
|
+
* @type {WrappedResponseImportPhysicalParkingTicketResponseData}
|
|
7766
|
+
* @memberof WrappedResponseImportPhysicalParkingTicketResponse
|
|
7767
|
+
*/
|
|
7768
|
+
'data': WrappedResponseImportPhysicalParkingTicketResponseData | null;
|
|
7769
|
+
}
|
|
7770
|
+
/**
|
|
7771
|
+
*
|
|
7772
|
+
* @export
|
|
7773
|
+
* @interface WrappedResponseImportPhysicalParkingTicketResponseData
|
|
7774
|
+
*/
|
|
7775
|
+
export interface WrappedResponseImportPhysicalParkingTicketResponseData {
|
|
7776
|
+
/**
|
|
7777
|
+
*
|
|
7778
|
+
* @type {string}
|
|
7779
|
+
* @memberof WrappedResponseImportPhysicalParkingTicketResponseData
|
|
7780
|
+
*/
|
|
7781
|
+
'message': string;
|
|
7782
|
+
/**
|
|
7783
|
+
*
|
|
7784
|
+
* @type {number}
|
|
7785
|
+
* @memberof WrappedResponseImportPhysicalParkingTicketResponseData
|
|
7786
|
+
*/
|
|
7787
|
+
'status': number;
|
|
7788
|
+
/**
|
|
7789
|
+
*
|
|
7790
|
+
* @type {ImportPhysicalParkingTicketResponseData}
|
|
7791
|
+
* @memberof WrappedResponseImportPhysicalParkingTicketResponseData
|
|
7792
|
+
*/
|
|
7793
|
+
'data': ImportPhysicalParkingTicketResponseData;
|
|
7794
|
+
}
|
|
7677
7795
|
/**
|
|
7678
7796
|
*
|
|
7679
7797
|
* @export
|
|
@@ -9128,6 +9246,14 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
9128
9246
|
* @throws {RequiredError}
|
|
9129
9247
|
*/
|
|
9130
9248
|
parkingTicketsIndex: (type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9249
|
+
/**
|
|
9250
|
+
*
|
|
9251
|
+
* @param {ImportPhysicalParkingTicketBody} importPhysicalParkingTicketBody
|
|
9252
|
+
* @param {string} [xAccountId]
|
|
9253
|
+
* @param {*} [options] Override http request option.
|
|
9254
|
+
* @throws {RequiredError}
|
|
9255
|
+
*/
|
|
9256
|
+
parkingTicketsPhysicalTicket: (importPhysicalParkingTicketBody: ImportPhysicalParkingTicketBody, xAccountId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9131
9257
|
/**
|
|
9132
9258
|
*
|
|
9133
9259
|
* @param {string} logId
|
|
@@ -9257,12 +9383,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
9257
9383
|
/**
|
|
9258
9384
|
*
|
|
9259
9385
|
* @param {string} id
|
|
9260
|
-
* @param {string} xAccountId
|
|
9261
9386
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
9262
9387
|
* @param {*} [options] Override http request option.
|
|
9263
9388
|
* @throws {RequiredError}
|
|
9264
9389
|
*/
|
|
9265
|
-
visitorSchedulesUpdate: (id: string,
|
|
9390
|
+
visitorSchedulesUpdate: (id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9266
9391
|
/**
|
|
9267
9392
|
*
|
|
9268
9393
|
* @param {string} [tokenId]
|
|
@@ -9683,6 +9808,14 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
9683
9808
|
* @throws {RequiredError}
|
|
9684
9809
|
*/
|
|
9685
9810
|
parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketDataArray>>;
|
|
9811
|
+
/**
|
|
9812
|
+
*
|
|
9813
|
+
* @param {ImportPhysicalParkingTicketBody} importPhysicalParkingTicketBody
|
|
9814
|
+
* @param {string} [xAccountId]
|
|
9815
|
+
* @param {*} [options] Override http request option.
|
|
9816
|
+
* @throws {RequiredError}
|
|
9817
|
+
*/
|
|
9818
|
+
parkingTicketsPhysicalTicket(importPhysicalParkingTicketBody: ImportPhysicalParkingTicketBody, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseImportPhysicalParkingTicketResponse>>;
|
|
9686
9819
|
/**
|
|
9687
9820
|
*
|
|
9688
9821
|
* @param {string} logId
|
|
@@ -9812,12 +9945,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
9812
9945
|
/**
|
|
9813
9946
|
*
|
|
9814
9947
|
* @param {string} id
|
|
9815
|
-
* @param {string} xAccountId
|
|
9816
9948
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
9817
9949
|
* @param {*} [options] Override http request option.
|
|
9818
9950
|
* @throws {RequiredError}
|
|
9819
9951
|
*/
|
|
9820
|
-
visitorSchedulesUpdate(id: string,
|
|
9952
|
+
visitorSchedulesUpdate(id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseResultResponseData>>;
|
|
9821
9953
|
/**
|
|
9822
9954
|
*
|
|
9823
9955
|
* @param {string} [tokenId]
|
|
@@ -10238,6 +10370,14 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
10238
10370
|
* @throws {RequiredError}
|
|
10239
10371
|
*/
|
|
10240
10372
|
parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: any): AxiosPromise<WrappedResponseParkingTicketDataArray>;
|
|
10373
|
+
/**
|
|
10374
|
+
*
|
|
10375
|
+
* @param {ImportPhysicalParkingTicketBody} importPhysicalParkingTicketBody
|
|
10376
|
+
* @param {string} [xAccountId]
|
|
10377
|
+
* @param {*} [options] Override http request option.
|
|
10378
|
+
* @throws {RequiredError}
|
|
10379
|
+
*/
|
|
10380
|
+
parkingTicketsPhysicalTicket(importPhysicalParkingTicketBody: ImportPhysicalParkingTicketBody, xAccountId?: string, options?: any): AxiosPromise<WrappedResponseImportPhysicalParkingTicketResponse>;
|
|
10241
10381
|
/**
|
|
10242
10382
|
*
|
|
10243
10383
|
* @param {string} logId
|
|
@@ -10367,12 +10507,11 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
10367
10507
|
/**
|
|
10368
10508
|
*
|
|
10369
10509
|
* @param {string} id
|
|
10370
|
-
* @param {string} xAccountId
|
|
10371
10510
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
10372
10511
|
* @param {*} [options] Override http request option.
|
|
10373
10512
|
* @throws {RequiredError}
|
|
10374
10513
|
*/
|
|
10375
|
-
visitorSchedulesUpdate(id: string,
|
|
10514
|
+
visitorSchedulesUpdate(id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: any): AxiosPromise<WrappedResponseResultResponseData>;
|
|
10376
10515
|
/**
|
|
10377
10516
|
*
|
|
10378
10517
|
* @param {string} [tokenId]
|
|
@@ -10840,6 +10979,15 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
10840
10979
|
* @memberof DefaultApi
|
|
10841
10980
|
*/
|
|
10842
10981
|
parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseParkingTicketDataArray, any>>;
|
|
10982
|
+
/**
|
|
10983
|
+
*
|
|
10984
|
+
* @param {ImportPhysicalParkingTicketBody} importPhysicalParkingTicketBody
|
|
10985
|
+
* @param {string} [xAccountId]
|
|
10986
|
+
* @param {*} [options] Override http request option.
|
|
10987
|
+
* @throws {RequiredError}
|
|
10988
|
+
* @memberof DefaultApi
|
|
10989
|
+
*/
|
|
10990
|
+
parkingTicketsPhysicalTicket(importPhysicalParkingTicketBody: ImportPhysicalParkingTicketBody, xAccountId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseImportPhysicalParkingTicketResponse, any>>;
|
|
10843
10991
|
/**
|
|
10844
10992
|
*
|
|
10845
10993
|
* @param {string} logId
|
|
@@ -10986,13 +11134,12 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
10986
11134
|
/**
|
|
10987
11135
|
*
|
|
10988
11136
|
* @param {string} id
|
|
10989
|
-
* @param {string} xAccountId
|
|
10990
11137
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
10991
11138
|
* @param {*} [options] Override http request option.
|
|
10992
11139
|
* @throws {RequiredError}
|
|
10993
11140
|
* @memberof DefaultApi
|
|
10994
11141
|
*/
|
|
10995
|
-
visitorSchedulesUpdate(id: string,
|
|
11142
|
+
visitorSchedulesUpdate(id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseResultResponseData, any>>;
|
|
10996
11143
|
/**
|
|
10997
11144
|
*
|
|
10998
11145
|
* @param {string} [tokenId]
|
package/dist/api/api.js
CHANGED
|
@@ -25,7 +25,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
25
25
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
26
26
|
};
|
|
27
27
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
-
exports.ParkingTicketsIndexTypeEnum = exports.ParkingResidentialTicketsIndexTypeEnum = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.WrappedResponsePassConsentResponseDataStatusEnum = exports.WrappedResponseNullDataEnum = exports.TenantMemberRole = exports.ShowPassResponseStatusEnum = exports.ServiceRequestStatusInProgress = exports.ServiceRequestStatusDone = exports.ServiceRequestStatus = exports.SensorType = exports.PositionStatus = exports.PaymentStatus = exports.PassDataStatusEnum = exports.PassConsentResponseStatusEnum = exports.ParkingTicketsIndexQueryTypeEnum = exports.ParkingResidentialTicketsIndexQueryTypeEnum = exports.AccessorType = exports.ACRequestStatusRejected = exports.ACRequestStatusApproved = exports.ACRequestStatus = void 0;
|
|
28
|
+
exports.ParkingTicketsIndexTypeEnum = exports.ParkingResidentialTicketsIndexTypeEnum = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.WrappedResponsePassConsentResponseDataStatusEnum = exports.WrappedResponseNullDataEnum = exports.TenantMemberRole = exports.ShowPassResponseStatusEnum = exports.ServiceRequestStatusInProgress = exports.ServiceRequestStatusDone = exports.ServiceRequestStatus = exports.SensorType = exports.PositionStatus = exports.PaymentStatus = exports.PassDataStatusEnum = exports.PassConsentResponseStatusEnum = exports.ParkingTicketsIndexQueryTypeEnum = exports.ParkingResidentialTicketsIndexQueryTypeEnum = exports.AlgType = exports.AccessorType = exports.ACRequestStatusRejected = exports.ACRequestStatusApproved = exports.ACRequestStatus = void 0;
|
|
29
29
|
const axios_1 = __importDefault(require("axios"));
|
|
30
30
|
// Some imports not used depending on template conditions
|
|
31
31
|
// @ts-ignore
|
|
@@ -68,6 +68,16 @@ exports.AccessorType = {
|
|
|
68
68
|
Member: 'member',
|
|
69
69
|
Tenant: 'tenant'
|
|
70
70
|
};
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @export
|
|
74
|
+
* @enum {string}
|
|
75
|
+
*/
|
|
76
|
+
exports.AlgType = {
|
|
77
|
+
ShopperToTenant: 'ShopperToTenant',
|
|
78
|
+
TenantToShopper: 'TenantToShopper',
|
|
79
|
+
VisitorToApp: 'VisitorToApp'
|
|
80
|
+
};
|
|
71
81
|
exports.ParkingResidentialTicketsIndexQueryTypeEnum = {
|
|
72
82
|
LogId: 'log_id',
|
|
73
83
|
TicketNumber: 'ticket_number',
|
|
@@ -1701,6 +1711,39 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1701
1711
|
options: localVarRequestOptions,
|
|
1702
1712
|
};
|
|
1703
1713
|
}),
|
|
1714
|
+
/**
|
|
1715
|
+
*
|
|
1716
|
+
* @param {ImportPhysicalParkingTicketBody} importPhysicalParkingTicketBody
|
|
1717
|
+
* @param {string} [xAccountId]
|
|
1718
|
+
* @param {*} [options] Override http request option.
|
|
1719
|
+
* @throws {RequiredError}
|
|
1720
|
+
*/
|
|
1721
|
+
parkingTicketsPhysicalTicket: (importPhysicalParkingTicketBody, xAccountId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1722
|
+
// verify required parameter 'importPhysicalParkingTicketBody' is not null or undefined
|
|
1723
|
+
(0, common_1.assertParamExists)('parkingTicketsPhysicalTicket', 'importPhysicalParkingTicketBody', importPhysicalParkingTicketBody);
|
|
1724
|
+
const localVarPath = `/parking_tickets/import`;
|
|
1725
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1726
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1727
|
+
let baseOptions;
|
|
1728
|
+
if (configuration) {
|
|
1729
|
+
baseOptions = configuration.baseOptions;
|
|
1730
|
+
}
|
|
1731
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
1732
|
+
const localVarHeaderParameter = {};
|
|
1733
|
+
const localVarQueryParameter = {};
|
|
1734
|
+
if (xAccountId != null) {
|
|
1735
|
+
localVarHeaderParameter['x-account-id'] = String(xAccountId);
|
|
1736
|
+
}
|
|
1737
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1738
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1739
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1740
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1741
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(importPhysicalParkingTicketBody, localVarRequestOptions, configuration);
|
|
1742
|
+
return {
|
|
1743
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1744
|
+
options: localVarRequestOptions,
|
|
1745
|
+
};
|
|
1746
|
+
}),
|
|
1704
1747
|
/**
|
|
1705
1748
|
*
|
|
1706
1749
|
* @param {string} logId
|
|
@@ -2217,16 +2260,13 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2217
2260
|
/**
|
|
2218
2261
|
*
|
|
2219
2262
|
* @param {string} id
|
|
2220
|
-
* @param {string} xAccountId
|
|
2221
2263
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
2222
2264
|
* @param {*} [options] Override http request option.
|
|
2223
2265
|
* @throws {RequiredError}
|
|
2224
2266
|
*/
|
|
2225
|
-
visitorSchedulesUpdate: (id,
|
|
2267
|
+
visitorSchedulesUpdate: (id, updateVisitorScheduleBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2226
2268
|
// verify required parameter 'id' is not null or undefined
|
|
2227
2269
|
(0, common_1.assertParamExists)('visitorSchedulesUpdate', 'id', id);
|
|
2228
|
-
// verify required parameter 'xAccountId' is not null or undefined
|
|
2229
|
-
(0, common_1.assertParamExists)('visitorSchedulesUpdate', 'xAccountId', xAccountId);
|
|
2230
2270
|
// verify required parameter 'updateVisitorScheduleBody' is not null or undefined
|
|
2231
2271
|
(0, common_1.assertParamExists)('visitorSchedulesUpdate', 'updateVisitorScheduleBody', updateVisitorScheduleBody);
|
|
2232
2272
|
const localVarPath = `/visitor_schedules/{id}`
|
|
@@ -2240,9 +2280,6 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2240
2280
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
2241
2281
|
const localVarHeaderParameter = {};
|
|
2242
2282
|
const localVarQueryParameter = {};
|
|
2243
|
-
if (xAccountId != null) {
|
|
2244
|
-
localVarHeaderParameter['x-account-id'] = String(xAccountId);
|
|
2245
|
-
}
|
|
2246
2283
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2247
2284
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
2248
2285
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3031,6 +3068,19 @@ const DefaultApiFp = function (configuration) {
|
|
|
3031
3068
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
3032
3069
|
});
|
|
3033
3070
|
},
|
|
3071
|
+
/**
|
|
3072
|
+
*
|
|
3073
|
+
* @param {ImportPhysicalParkingTicketBody} importPhysicalParkingTicketBody
|
|
3074
|
+
* @param {string} [xAccountId]
|
|
3075
|
+
* @param {*} [options] Override http request option.
|
|
3076
|
+
* @throws {RequiredError}
|
|
3077
|
+
*/
|
|
3078
|
+
parkingTicketsPhysicalTicket(importPhysicalParkingTicketBody, xAccountId, options) {
|
|
3079
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3080
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingTicketsPhysicalTicket(importPhysicalParkingTicketBody, xAccountId, options);
|
|
3081
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
3082
|
+
});
|
|
3083
|
+
},
|
|
3034
3084
|
/**
|
|
3035
3085
|
*
|
|
3036
3086
|
* @param {string} logId
|
|
@@ -3245,14 +3295,13 @@ const DefaultApiFp = function (configuration) {
|
|
|
3245
3295
|
/**
|
|
3246
3296
|
*
|
|
3247
3297
|
* @param {string} id
|
|
3248
|
-
* @param {string} xAccountId
|
|
3249
3298
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
3250
3299
|
* @param {*} [options] Override http request option.
|
|
3251
3300
|
* @throws {RequiredError}
|
|
3252
3301
|
*/
|
|
3253
|
-
visitorSchedulesUpdate(id,
|
|
3302
|
+
visitorSchedulesUpdate(id, updateVisitorScheduleBody, options) {
|
|
3254
3303
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3255
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.visitorSchedulesUpdate(id,
|
|
3304
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.visitorSchedulesUpdate(id, updateVisitorScheduleBody, options);
|
|
3256
3305
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
3257
3306
|
});
|
|
3258
3307
|
},
|
|
@@ -3800,6 +3849,16 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3800
3849
|
parkingTicketsIndex(type, id, options) {
|
|
3801
3850
|
return localVarFp.parkingTicketsIndex(type, id, options).then((request) => request(axios, basePath));
|
|
3802
3851
|
},
|
|
3852
|
+
/**
|
|
3853
|
+
*
|
|
3854
|
+
* @param {ImportPhysicalParkingTicketBody} importPhysicalParkingTicketBody
|
|
3855
|
+
* @param {string} [xAccountId]
|
|
3856
|
+
* @param {*} [options] Override http request option.
|
|
3857
|
+
* @throws {RequiredError}
|
|
3858
|
+
*/
|
|
3859
|
+
parkingTicketsPhysicalTicket(importPhysicalParkingTicketBody, xAccountId, options) {
|
|
3860
|
+
return localVarFp.parkingTicketsPhysicalTicket(importPhysicalParkingTicketBody, xAccountId, options).then((request) => request(axios, basePath));
|
|
3861
|
+
},
|
|
3803
3862
|
/**
|
|
3804
3863
|
*
|
|
3805
3864
|
* @param {string} logId
|
|
@@ -3963,13 +4022,12 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3963
4022
|
/**
|
|
3964
4023
|
*
|
|
3965
4024
|
* @param {string} id
|
|
3966
|
-
* @param {string} xAccountId
|
|
3967
4025
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
3968
4026
|
* @param {*} [options] Override http request option.
|
|
3969
4027
|
* @throws {RequiredError}
|
|
3970
4028
|
*/
|
|
3971
|
-
visitorSchedulesUpdate(id,
|
|
3972
|
-
return localVarFp.visitorSchedulesUpdate(id,
|
|
4029
|
+
visitorSchedulesUpdate(id, updateVisitorScheduleBody, options) {
|
|
4030
|
+
return localVarFp.visitorSchedulesUpdate(id, updateVisitorScheduleBody, options).then((request) => request(axios, basePath));
|
|
3973
4031
|
},
|
|
3974
4032
|
/**
|
|
3975
4033
|
*
|
|
@@ -4542,6 +4600,17 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
4542
4600
|
parkingTicketsIndex(type, id, options) {
|
|
4543
4601
|
return (0, exports.DefaultApiFp)(this.configuration).parkingTicketsIndex(type, id, options).then((request) => request(this.axios, this.basePath));
|
|
4544
4602
|
}
|
|
4603
|
+
/**
|
|
4604
|
+
*
|
|
4605
|
+
* @param {ImportPhysicalParkingTicketBody} importPhysicalParkingTicketBody
|
|
4606
|
+
* @param {string} [xAccountId]
|
|
4607
|
+
* @param {*} [options] Override http request option.
|
|
4608
|
+
* @throws {RequiredError}
|
|
4609
|
+
* @memberof DefaultApi
|
|
4610
|
+
*/
|
|
4611
|
+
parkingTicketsPhysicalTicket(importPhysicalParkingTicketBody, xAccountId, options) {
|
|
4612
|
+
return (0, exports.DefaultApiFp)(this.configuration).parkingTicketsPhysicalTicket(importPhysicalParkingTicketBody, xAccountId, options).then((request) => request(this.axios, this.basePath));
|
|
4613
|
+
}
|
|
4545
4614
|
/**
|
|
4546
4615
|
*
|
|
4547
4616
|
* @param {string} logId
|
|
@@ -4722,14 +4791,13 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
4722
4791
|
/**
|
|
4723
4792
|
*
|
|
4724
4793
|
* @param {string} id
|
|
4725
|
-
* @param {string} xAccountId
|
|
4726
4794
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
4727
4795
|
* @param {*} [options] Override http request option.
|
|
4728
4796
|
* @throws {RequiredError}
|
|
4729
4797
|
* @memberof DefaultApi
|
|
4730
4798
|
*/
|
|
4731
|
-
visitorSchedulesUpdate(id,
|
|
4732
|
-
return (0, exports.DefaultApiFp)(this.configuration).visitorSchedulesUpdate(id,
|
|
4799
|
+
visitorSchedulesUpdate(id, updateVisitorScheduleBody, options) {
|
|
4800
|
+
return (0, exports.DefaultApiFp)(this.configuration).visitorSchedulesUpdate(id, updateVisitorScheduleBody, options).then((request) => request(this.axios, this.basePath));
|
|
4733
4801
|
}
|
|
4734
4802
|
/**
|
|
4735
4803
|
*
|