ob-parking-sdk 0.0.76 → 0.0.78

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
@@ -2775,6 +2775,61 @@ 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 {string}
2787
+ * @memberof RegisteredVehicleHistoryIndexResponse
2788
+ */
2789
+ 'created_by': string;
2790
+ /**
2791
+ *
2792
+ * @type {boolean}
2793
+ * @memberof RegisteredVehicleHistoryIndexResponse
2794
+ */
2795
+ 'is_vip': boolean;
2796
+ /**
2797
+ *
2798
+ * @type {string}
2799
+ * @memberof RegisteredVehicleHistoryIndexResponse
2800
+ */
2801
+ 'phone_number': string | null;
2802
+ /**
2803
+ *
2804
+ * @type {string}
2805
+ * @memberof RegisteredVehicleHistoryIndexResponse
2806
+ */
2807
+ 'email': string | null;
2808
+ /**
2809
+ *
2810
+ * @type {string}
2811
+ * @memberof RegisteredVehicleHistoryIndexResponse
2812
+ */
2813
+ 'plate_province': string | null;
2814
+ /**
2815
+ *
2816
+ * @type {string}
2817
+ * @memberof RegisteredVehicleHistoryIndexResponse
2818
+ */
2819
+ 'plate_no': string;
2820
+ /**
2821
+ *
2822
+ * @type {string}
2823
+ * @memberof RegisteredVehicleHistoryIndexResponse
2824
+ */
2825
+ 'account_id': string;
2826
+ /**
2827
+ *
2828
+ * @type {string}
2829
+ * @memberof RegisteredVehicleHistoryIndexResponse
2830
+ */
2831
+ 'id': string;
2832
+ }
2778
2833
  /**
2779
2834
  *
2780
2835
  * @export
@@ -3034,6 +3089,25 @@ export interface ResponseDataGetParkingDetailsIndexResponseArray {
3034
3089
  */
3035
3090
  'pagination'?: Pagination;
3036
3091
  }
3092
+ /**
3093
+ *
3094
+ * @export
3095
+ * @interface ResponseDataRegisteredVehicleHistoryIndexResponseArray
3096
+ */
3097
+ export interface ResponseDataRegisteredVehicleHistoryIndexResponseArray {
3098
+ /**
3099
+ *
3100
+ * @type {Array<RegisteredVehicleHistoryIndexResponse>}
3101
+ * @memberof ResponseDataRegisteredVehicleHistoryIndexResponseArray
3102
+ */
3103
+ 'data': Array<RegisteredVehicleHistoryIndexResponse>;
3104
+ /**
3105
+ *
3106
+ * @type {Pagination}
3107
+ * @memberof ResponseDataRegisteredVehicleHistoryIndexResponseArray
3108
+ */
3109
+ 'pagination'?: Pagination;
3110
+ }
3037
3111
  /**
3038
3112
  *
3039
3113
  * @export
@@ -6225,7 +6299,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
6225
6299
  * @param {*} [options] Override http request option.
6226
6300
  * @throws {RequiredError}
6227
6301
  */
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<ResponseDataRegisteredVehicleIndexResponseArray>> {
6302
+ 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
6303
  const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options);
6230
6304
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
6231
6305
  },
@@ -6784,7 +6858,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
6784
6858
  * @param {*} [options] Override http request option.
6785
6859
  * @throws {RequiredError}
6786
6860
  */
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<ResponseDataRegisteredVehicleIndexResponseArray> {
6861
+ 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
6862
  return localVarFp.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options).then((request) => request(axios, basePath));
6789
6863
  },
6790
6864
  /**
package/dist/api/api.d.ts CHANGED
@@ -2717,6 +2717,61 @@ 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 {string}
2729
+ * @memberof RegisteredVehicleHistoryIndexResponse
2730
+ */
2731
+ 'created_by': string;
2732
+ /**
2733
+ *
2734
+ * @type {boolean}
2735
+ * @memberof RegisteredVehicleHistoryIndexResponse
2736
+ */
2737
+ 'is_vip': boolean;
2738
+ /**
2739
+ *
2740
+ * @type {string}
2741
+ * @memberof RegisteredVehicleHistoryIndexResponse
2742
+ */
2743
+ 'phone_number': string | null;
2744
+ /**
2745
+ *
2746
+ * @type {string}
2747
+ * @memberof RegisteredVehicleHistoryIndexResponse
2748
+ */
2749
+ 'email': string | null;
2750
+ /**
2751
+ *
2752
+ * @type {string}
2753
+ * @memberof RegisteredVehicleHistoryIndexResponse
2754
+ */
2755
+ 'plate_province': string | null;
2756
+ /**
2757
+ *
2758
+ * @type {string}
2759
+ * @memberof RegisteredVehicleHistoryIndexResponse
2760
+ */
2761
+ 'plate_no': string;
2762
+ /**
2763
+ *
2764
+ * @type {string}
2765
+ * @memberof RegisteredVehicleHistoryIndexResponse
2766
+ */
2767
+ 'account_id': string;
2768
+ /**
2769
+ *
2770
+ * @type {string}
2771
+ * @memberof RegisteredVehicleHistoryIndexResponse
2772
+ */
2773
+ 'id': string;
2774
+ }
2720
2775
  /**
2721
2776
  *
2722
2777
  * @export
@@ -2972,6 +3027,25 @@ export interface ResponseDataGetParkingDetailsIndexResponseArray {
2972
3027
  */
2973
3028
  'pagination'?: Pagination;
2974
3029
  }
3030
+ /**
3031
+ *
3032
+ * @export
3033
+ * @interface ResponseDataRegisteredVehicleHistoryIndexResponseArray
3034
+ */
3035
+ export interface ResponseDataRegisteredVehicleHistoryIndexResponseArray {
3036
+ /**
3037
+ *
3038
+ * @type {Array<RegisteredVehicleHistoryIndexResponse>}
3039
+ * @memberof ResponseDataRegisteredVehicleHistoryIndexResponseArray
3040
+ */
3041
+ 'data': Array<RegisteredVehicleHistoryIndexResponse>;
3042
+ /**
3043
+ *
3044
+ * @type {Pagination}
3045
+ * @memberof ResponseDataRegisteredVehicleHistoryIndexResponseArray
3046
+ */
3047
+ 'pagination'?: Pagination;
3048
+ }
2975
3049
  /**
2976
3050
  *
2977
3051
  * @export
@@ -4324,7 +4398,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
4324
4398
  * @param {*} [options] Override http request option.
4325
4399
  * @throws {RequiredError}
4326
4400
  */
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<ResponseDataRegisteredVehicleIndexResponseArray>>;
4401
+ 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
4402
  /**
4329
4403
  *
4330
4404
  * @param {string} [orderBy]
@@ -4767,7 +4841,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4767
4841
  * @param {*} [options] Override http request option.
4768
4842
  * @throws {RequiredError}
4769
4843
  */
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<ResponseDataRegisteredVehicleIndexResponseArray>;
4844
+ 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
4845
  /**
4772
4846
  *
4773
4847
  * @param {string} [orderBy]
@@ -5251,7 +5325,7 @@ export declare class DefaultApi extends BaseAPI {
5251
5325
  * @throws {RequiredError}
5252
5326
  * @memberof DefaultApi
5253
5327
  */
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<ResponseDataRegisteredVehicleIndexResponseArray, any>>;
5328
+ 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
5329
  /**
5256
5330
  *
5257
5331
  * @param {string} [orderBy]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ob-parking-sdk",
3
- "version": "0.0.76",
3
+ "version": "0.0.78",
4
4
  "description": "API interfaces for OB PARKING",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT"