ob-parking-sdk 0.0.76 → 0.0.77
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 +70 -2
- package/dist/api/api.d.ts +71 -3
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -2775,6 +2775,55 @@ export const RedeemType = {
|
|
|
2775
2775
|
export type RedeemType = typeof RedeemType[keyof typeof RedeemType];
|
|
2776
2776
|
|
|
2777
2777
|
|
|
2778
|
+
/**
|
|
2779
|
+
*
|
|
2780
|
+
* @export
|
|
2781
|
+
* @interface RegisteredVehicleHistoryIndexResponse
|
|
2782
|
+
*/
|
|
2783
|
+
export interface RegisteredVehicleHistoryIndexResponse {
|
|
2784
|
+
/**
|
|
2785
|
+
*
|
|
2786
|
+
* @type {boolean}
|
|
2787
|
+
* @memberof RegisteredVehicleHistoryIndexResponse
|
|
2788
|
+
*/
|
|
2789
|
+
'is_vip': boolean;
|
|
2790
|
+
/**
|
|
2791
|
+
*
|
|
2792
|
+
* @type {string}
|
|
2793
|
+
* @memberof RegisteredVehicleHistoryIndexResponse
|
|
2794
|
+
*/
|
|
2795
|
+
'phone_number': string | null;
|
|
2796
|
+
/**
|
|
2797
|
+
*
|
|
2798
|
+
* @type {string}
|
|
2799
|
+
* @memberof RegisteredVehicleHistoryIndexResponse
|
|
2800
|
+
*/
|
|
2801
|
+
'email': string | null;
|
|
2802
|
+
/**
|
|
2803
|
+
*
|
|
2804
|
+
* @type {string}
|
|
2805
|
+
* @memberof RegisteredVehicleHistoryIndexResponse
|
|
2806
|
+
*/
|
|
2807
|
+
'plate_province': string | null;
|
|
2808
|
+
/**
|
|
2809
|
+
*
|
|
2810
|
+
* @type {string}
|
|
2811
|
+
* @memberof RegisteredVehicleHistoryIndexResponse
|
|
2812
|
+
*/
|
|
2813
|
+
'plate_no': string;
|
|
2814
|
+
/**
|
|
2815
|
+
*
|
|
2816
|
+
* @type {string}
|
|
2817
|
+
* @memberof RegisteredVehicleHistoryIndexResponse
|
|
2818
|
+
*/
|
|
2819
|
+
'account_id': string;
|
|
2820
|
+
/**
|
|
2821
|
+
*
|
|
2822
|
+
* @type {string}
|
|
2823
|
+
* @memberof RegisteredVehicleHistoryIndexResponse
|
|
2824
|
+
*/
|
|
2825
|
+
'id': string;
|
|
2826
|
+
}
|
|
2778
2827
|
/**
|
|
2779
2828
|
*
|
|
2780
2829
|
* @export
|
|
@@ -3034,6 +3083,25 @@ export interface ResponseDataGetParkingDetailsIndexResponseArray {
|
|
|
3034
3083
|
*/
|
|
3035
3084
|
'pagination'?: Pagination;
|
|
3036
3085
|
}
|
|
3086
|
+
/**
|
|
3087
|
+
*
|
|
3088
|
+
* @export
|
|
3089
|
+
* @interface ResponseDataRegisteredVehicleHistoryIndexResponseArray
|
|
3090
|
+
*/
|
|
3091
|
+
export interface ResponseDataRegisteredVehicleHistoryIndexResponseArray {
|
|
3092
|
+
/**
|
|
3093
|
+
*
|
|
3094
|
+
* @type {Array<RegisteredVehicleHistoryIndexResponse>}
|
|
3095
|
+
* @memberof ResponseDataRegisteredVehicleHistoryIndexResponseArray
|
|
3096
|
+
*/
|
|
3097
|
+
'data': Array<RegisteredVehicleHistoryIndexResponse>;
|
|
3098
|
+
/**
|
|
3099
|
+
*
|
|
3100
|
+
* @type {Pagination}
|
|
3101
|
+
* @memberof ResponseDataRegisteredVehicleHistoryIndexResponseArray
|
|
3102
|
+
*/
|
|
3103
|
+
'pagination'?: Pagination;
|
|
3104
|
+
}
|
|
3037
3105
|
/**
|
|
3038
3106
|
*
|
|
3039
3107
|
* @export
|
|
@@ -6225,7 +6293,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
6225
6293
|
* @param {*} [options] Override http request option.
|
|
6226
6294
|
* @throws {RequiredError}
|
|
6227
6295
|
*/
|
|
6228
|
-
async registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6296
|
+
async registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleHistoryIndexResponseArray>> {
|
|
6229
6297
|
const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options);
|
|
6230
6298
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6231
6299
|
},
|
|
@@ -6784,7 +6852,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
6784
6852
|
* @param {*} [options] Override http request option.
|
|
6785
6853
|
* @throws {RequiredError}
|
|
6786
6854
|
*/
|
|
6787
|
-
registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: any): AxiosPromise<
|
|
6855
|
+
registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleHistoryIndexResponseArray> {
|
|
6788
6856
|
return localVarFp.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options).then((request) => request(axios, basePath));
|
|
6789
6857
|
},
|
|
6790
6858
|
/**
|
package/dist/api/api.d.ts
CHANGED
|
@@ -2717,6 +2717,55 @@ export declare const RedeemType: {
|
|
|
2717
2717
|
readonly Redeem: "REDEEM";
|
|
2718
2718
|
};
|
|
2719
2719
|
export type RedeemType = typeof RedeemType[keyof typeof RedeemType];
|
|
2720
|
+
/**
|
|
2721
|
+
*
|
|
2722
|
+
* @export
|
|
2723
|
+
* @interface RegisteredVehicleHistoryIndexResponse
|
|
2724
|
+
*/
|
|
2725
|
+
export interface RegisteredVehicleHistoryIndexResponse {
|
|
2726
|
+
/**
|
|
2727
|
+
*
|
|
2728
|
+
* @type {boolean}
|
|
2729
|
+
* @memberof RegisteredVehicleHistoryIndexResponse
|
|
2730
|
+
*/
|
|
2731
|
+
'is_vip': boolean;
|
|
2732
|
+
/**
|
|
2733
|
+
*
|
|
2734
|
+
* @type {string}
|
|
2735
|
+
* @memberof RegisteredVehicleHistoryIndexResponse
|
|
2736
|
+
*/
|
|
2737
|
+
'phone_number': string | null;
|
|
2738
|
+
/**
|
|
2739
|
+
*
|
|
2740
|
+
* @type {string}
|
|
2741
|
+
* @memberof RegisteredVehicleHistoryIndexResponse
|
|
2742
|
+
*/
|
|
2743
|
+
'email': string | null;
|
|
2744
|
+
/**
|
|
2745
|
+
*
|
|
2746
|
+
* @type {string}
|
|
2747
|
+
* @memberof RegisteredVehicleHistoryIndexResponse
|
|
2748
|
+
*/
|
|
2749
|
+
'plate_province': string | null;
|
|
2750
|
+
/**
|
|
2751
|
+
*
|
|
2752
|
+
* @type {string}
|
|
2753
|
+
* @memberof RegisteredVehicleHistoryIndexResponse
|
|
2754
|
+
*/
|
|
2755
|
+
'plate_no': string;
|
|
2756
|
+
/**
|
|
2757
|
+
*
|
|
2758
|
+
* @type {string}
|
|
2759
|
+
* @memberof RegisteredVehicleHistoryIndexResponse
|
|
2760
|
+
*/
|
|
2761
|
+
'account_id': string;
|
|
2762
|
+
/**
|
|
2763
|
+
*
|
|
2764
|
+
* @type {string}
|
|
2765
|
+
* @memberof RegisteredVehicleHistoryIndexResponse
|
|
2766
|
+
*/
|
|
2767
|
+
'id': string;
|
|
2768
|
+
}
|
|
2720
2769
|
/**
|
|
2721
2770
|
*
|
|
2722
2771
|
* @export
|
|
@@ -2972,6 +3021,25 @@ export interface ResponseDataGetParkingDetailsIndexResponseArray {
|
|
|
2972
3021
|
*/
|
|
2973
3022
|
'pagination'?: Pagination;
|
|
2974
3023
|
}
|
|
3024
|
+
/**
|
|
3025
|
+
*
|
|
3026
|
+
* @export
|
|
3027
|
+
* @interface ResponseDataRegisteredVehicleHistoryIndexResponseArray
|
|
3028
|
+
*/
|
|
3029
|
+
export interface ResponseDataRegisteredVehicleHistoryIndexResponseArray {
|
|
3030
|
+
/**
|
|
3031
|
+
*
|
|
3032
|
+
* @type {Array<RegisteredVehicleHistoryIndexResponse>}
|
|
3033
|
+
* @memberof ResponseDataRegisteredVehicleHistoryIndexResponseArray
|
|
3034
|
+
*/
|
|
3035
|
+
'data': Array<RegisteredVehicleHistoryIndexResponse>;
|
|
3036
|
+
/**
|
|
3037
|
+
*
|
|
3038
|
+
* @type {Pagination}
|
|
3039
|
+
* @memberof ResponseDataRegisteredVehicleHistoryIndexResponseArray
|
|
3040
|
+
*/
|
|
3041
|
+
'pagination'?: Pagination;
|
|
3042
|
+
}
|
|
2975
3043
|
/**
|
|
2976
3044
|
*
|
|
2977
3045
|
* @export
|
|
@@ -4324,7 +4392,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4324
4392
|
* @param {*} [options] Override http request option.
|
|
4325
4393
|
* @throws {RequiredError}
|
|
4326
4394
|
*/
|
|
4327
|
-
registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4395
|
+
registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleHistoryIndexResponseArray>>;
|
|
4328
4396
|
/**
|
|
4329
4397
|
*
|
|
4330
4398
|
* @param {string} [orderBy]
|
|
@@ -4767,7 +4835,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4767
4835
|
* @param {*} [options] Override http request option.
|
|
4768
4836
|
* @throws {RequiredError}
|
|
4769
4837
|
*/
|
|
4770
|
-
registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: any): AxiosPromise<
|
|
4838
|
+
registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleHistoryIndexResponseArray>;
|
|
4771
4839
|
/**
|
|
4772
4840
|
*
|
|
4773
4841
|
* @param {string} [orderBy]
|
|
@@ -5251,7 +5319,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5251
5319
|
* @throws {RequiredError}
|
|
5252
5320
|
* @memberof DefaultApi
|
|
5253
5321
|
*/
|
|
5254
|
-
registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
5322
|
+
registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResponseDataRegisteredVehicleHistoryIndexResponseArray, any>>;
|
|
5255
5323
|
/**
|
|
5256
5324
|
*
|
|
5257
5325
|
* @param {string} [orderBy]
|