ob-bms-sdk 0.0.59 → 0.0.60

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.
Files changed (3) hide show
  1. package/api/api.ts +20 -135
  2. package/dist/api/api.d.ts +21 -136
  3. package/package.json +1 -1
package/api/api.ts CHANGED
@@ -1049,67 +1049,6 @@ export const ParkingTicketsIndexQueryTypeEnum = {
1049
1049
 
1050
1050
  export type ParkingTicketsIndexQueryTypeEnum = typeof ParkingTicketsIndexQueryTypeEnum[keyof typeof ParkingTicketsIndexQueryTypeEnum];
1051
1051
 
1052
- /**
1053
- *
1054
- * @export
1055
- * @interface ParkingTicketsIndexResponseData
1056
- */
1057
- export interface ParkingTicketsIndexResponseData {
1058
- /**
1059
- *
1060
- * @type {number}
1061
- * @memberof ParkingTicketsIndexResponseData
1062
- */
1063
- 'vehicle_type_id': number;
1064
- /**
1065
- *
1066
- * @type {number}
1067
- * @memberof ParkingTicketsIndexResponseData
1068
- */
1069
- 'member_type_id': number;
1070
- /**
1071
- *
1072
- * @type {RateDetail}
1073
- * @memberof ParkingTicketsIndexResponseData
1074
- */
1075
- 'rate_detail': RateDetail;
1076
- /**
1077
- *
1078
- * @type {string}
1079
- * @memberof ParkingTicketsIndexResponseData
1080
- */
1081
- 'parked_at': string;
1082
- /**
1083
- *
1084
- * @type {number}
1085
- * @memberof ParkingTicketsIndexResponseData
1086
- */
1087
- 'total_fee': number;
1088
- /**
1089
- *
1090
- * @type {string}
1091
- * @memberof ParkingTicketsIndexResponseData
1092
- */
1093
- 'vehicle_type': string;
1094
- /**
1095
- *
1096
- * @type {string}
1097
- * @memberof ParkingTicketsIndexResponseData
1098
- */
1099
- 'ticket_number': string;
1100
- /**
1101
- *
1102
- * @type {string}
1103
- * @memberof ParkingTicketsIndexResponseData
1104
- */
1105
- 'plate_number': string;
1106
- /**
1107
- *
1108
- * @type {string}
1109
- * @memberof ParkingTicketsIndexResponseData
1110
- */
1111
- 'id': string;
1112
- }
1113
1052
  /**
1114
1053
  *
1115
1054
  * @export
@@ -2536,135 +2475,81 @@ export interface WrappedResponseParkingTicketData {
2536
2475
  /**
2537
2476
  *
2538
2477
  * @export
2539
- * @interface WrappedResponseParkingTicketDataData
2478
+ * @interface WrappedResponseParkingTicketDataArray
2540
2479
  */
2541
- export interface WrappedResponseParkingTicketDataData {
2480
+ export interface WrappedResponseParkingTicketDataArray {
2542
2481
  /**
2543
2482
  *
2544
- * @type {number}
2545
- * @memberof WrappedResponseParkingTicketDataData
2483
+ * @type {WrappedResponseParkingTicketDataArrayData}
2484
+ * @memberof WrappedResponseParkingTicketDataArray
2546
2485
  */
2547
- 'vehicle_type_id': number;
2548
- /**
2549
- *
2550
- * @type {number}
2551
- * @memberof WrappedResponseParkingTicketDataData
2552
- */
2553
- 'member_type_id': number;
2554
- /**
2555
- *
2556
- * @type {RateDetail}
2557
- * @memberof WrappedResponseParkingTicketDataData
2558
- */
2559
- 'rate_detail': RateDetail;
2560
- /**
2561
- *
2562
- * @type {string}
2563
- * @memberof WrappedResponseParkingTicketDataData
2564
- */
2565
- 'parked_at': string;
2566
- /**
2567
- *
2568
- * @type {number}
2569
- * @memberof WrappedResponseParkingTicketDataData
2570
- */
2571
- 'total_fee': number;
2572
- /**
2573
- *
2574
- * @type {string}
2575
- * @memberof WrappedResponseParkingTicketDataData
2576
- */
2577
- 'vehicle_type': string;
2578
- /**
2579
- *
2580
- * @type {string}
2581
- * @memberof WrappedResponseParkingTicketDataData
2582
- */
2583
- 'ticket_number': string;
2584
- /**
2585
- *
2586
- * @type {string}
2587
- * @memberof WrappedResponseParkingTicketDataData
2588
- */
2589
- 'plate_number': string;
2590
- /**
2591
- *
2592
- * @type {string}
2593
- * @memberof WrappedResponseParkingTicketDataData
2594
- */
2595
- 'id': string;
2486
+ 'data': WrappedResponseParkingTicketDataArrayData | null;
2596
2487
  }
2597
2488
  /**
2598
2489
  *
2599
2490
  * @export
2600
- * @interface WrappedResponseParkingTicketsIndexResponseData
2491
+ * @interface WrappedResponseParkingTicketDataArrayData
2601
2492
  */
2602
- export interface WrappedResponseParkingTicketsIndexResponseData {
2603
- /**
2604
- *
2605
- * @type {WrappedResponseParkingTicketsIndexResponseDataData}
2606
- * @memberof WrappedResponseParkingTicketsIndexResponseData
2607
- */
2608
- 'data': WrappedResponseParkingTicketsIndexResponseDataData | null;
2493
+ export interface WrappedResponseParkingTicketDataArrayData {
2609
2494
  }
2610
2495
  /**
2611
2496
  *
2612
2497
  * @export
2613
- * @interface WrappedResponseParkingTicketsIndexResponseDataData
2498
+ * @interface WrappedResponseParkingTicketDataData
2614
2499
  */
2615
- export interface WrappedResponseParkingTicketsIndexResponseDataData {
2500
+ export interface WrappedResponseParkingTicketDataData {
2616
2501
  /**
2617
2502
  *
2618
2503
  * @type {number}
2619
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2504
+ * @memberof WrappedResponseParkingTicketDataData
2620
2505
  */
2621
2506
  'vehicle_type_id': number;
2622
2507
  /**
2623
2508
  *
2624
2509
  * @type {number}
2625
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2510
+ * @memberof WrappedResponseParkingTicketDataData
2626
2511
  */
2627
2512
  'member_type_id': number;
2628
2513
  /**
2629
2514
  *
2630
2515
  * @type {RateDetail}
2631
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2516
+ * @memberof WrappedResponseParkingTicketDataData
2632
2517
  */
2633
2518
  'rate_detail': RateDetail;
2634
2519
  /**
2635
2520
  *
2636
2521
  * @type {string}
2637
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2522
+ * @memberof WrappedResponseParkingTicketDataData
2638
2523
  */
2639
2524
  'parked_at': string;
2640
2525
  /**
2641
2526
  *
2642
2527
  * @type {number}
2643
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2528
+ * @memberof WrappedResponseParkingTicketDataData
2644
2529
  */
2645
2530
  'total_fee': number;
2646
2531
  /**
2647
2532
  *
2648
2533
  * @type {string}
2649
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2534
+ * @memberof WrappedResponseParkingTicketDataData
2650
2535
  */
2651
2536
  'vehicle_type': string;
2652
2537
  /**
2653
2538
  *
2654
2539
  * @type {string}
2655
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2540
+ * @memberof WrappedResponseParkingTicketDataData
2656
2541
  */
2657
2542
  'ticket_number': string;
2658
2543
  /**
2659
2544
  *
2660
2545
  * @type {string}
2661
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2546
+ * @memberof WrappedResponseParkingTicketDataData
2662
2547
  */
2663
2548
  'plate_number': string;
2664
2549
  /**
2665
2550
  *
2666
2551
  * @type {string}
2667
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2552
+ * @memberof WrappedResponseParkingTicketDataData
2668
2553
  */
2669
2554
  'id': string;
2670
2555
  }
@@ -3838,7 +3723,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
3838
3723
  * @param {*} [options] Override http request option.
3839
3724
  * @throws {RequiredError}
3840
3725
  */
3841
- async parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketsIndexResponseData>> {
3726
+ async parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketDataArray>> {
3842
3727
  const localVarAxiosArgs = await localVarAxiosParamCreator.parkingTicketsIndex(type, id, options);
3843
3728
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
3844
3729
  },
@@ -4060,7 +3945,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
4060
3945
  * @param {*} [options] Override http request option.
4061
3946
  * @throws {RequiredError}
4062
3947
  */
4063
- parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: any): AxiosPromise<WrappedResponseParkingTicketsIndexResponseData> {
3948
+ parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: any): AxiosPromise<WrappedResponseParkingTicketDataArray> {
4064
3949
  return localVarFp.parkingTicketsIndex(type, id, options).then((request) => request(axios, basePath));
4065
3950
  },
4066
3951
  /**
package/dist/api/api.d.ts CHANGED
@@ -1044,67 +1044,6 @@ export declare const ParkingTicketsIndexQueryTypeEnum: {
1044
1044
  readonly MemberId: "member_id";
1045
1045
  };
1046
1046
  export type ParkingTicketsIndexQueryTypeEnum = typeof ParkingTicketsIndexQueryTypeEnum[keyof typeof ParkingTicketsIndexQueryTypeEnum];
1047
- /**
1048
- *
1049
- * @export
1050
- * @interface ParkingTicketsIndexResponseData
1051
- */
1052
- export interface ParkingTicketsIndexResponseData {
1053
- /**
1054
- *
1055
- * @type {number}
1056
- * @memberof ParkingTicketsIndexResponseData
1057
- */
1058
- 'vehicle_type_id': number;
1059
- /**
1060
- *
1061
- * @type {number}
1062
- * @memberof ParkingTicketsIndexResponseData
1063
- */
1064
- 'member_type_id': number;
1065
- /**
1066
- *
1067
- * @type {RateDetail}
1068
- * @memberof ParkingTicketsIndexResponseData
1069
- */
1070
- 'rate_detail': RateDetail;
1071
- /**
1072
- *
1073
- * @type {string}
1074
- * @memberof ParkingTicketsIndexResponseData
1075
- */
1076
- 'parked_at': string;
1077
- /**
1078
- *
1079
- * @type {number}
1080
- * @memberof ParkingTicketsIndexResponseData
1081
- */
1082
- 'total_fee': number;
1083
- /**
1084
- *
1085
- * @type {string}
1086
- * @memberof ParkingTicketsIndexResponseData
1087
- */
1088
- 'vehicle_type': string;
1089
- /**
1090
- *
1091
- * @type {string}
1092
- * @memberof ParkingTicketsIndexResponseData
1093
- */
1094
- 'ticket_number': string;
1095
- /**
1096
- *
1097
- * @type {string}
1098
- * @memberof ParkingTicketsIndexResponseData
1099
- */
1100
- 'plate_number': string;
1101
- /**
1102
- *
1103
- * @type {string}
1104
- * @memberof ParkingTicketsIndexResponseData
1105
- */
1106
- 'id': string;
1107
- }
1108
1047
  /**
1109
1048
  *
1110
1049
  * @export
@@ -2519,135 +2458,81 @@ export interface WrappedResponseParkingTicketData {
2519
2458
  /**
2520
2459
  *
2521
2460
  * @export
2522
- * @interface WrappedResponseParkingTicketDataData
2461
+ * @interface WrappedResponseParkingTicketDataArray
2523
2462
  */
2524
- export interface WrappedResponseParkingTicketDataData {
2463
+ export interface WrappedResponseParkingTicketDataArray {
2525
2464
  /**
2526
2465
  *
2527
- * @type {number}
2528
- * @memberof WrappedResponseParkingTicketDataData
2466
+ * @type {WrappedResponseParkingTicketDataArrayData}
2467
+ * @memberof WrappedResponseParkingTicketDataArray
2529
2468
  */
2530
- 'vehicle_type_id': number;
2531
- /**
2532
- *
2533
- * @type {number}
2534
- * @memberof WrappedResponseParkingTicketDataData
2535
- */
2536
- 'member_type_id': number;
2537
- /**
2538
- *
2539
- * @type {RateDetail}
2540
- * @memberof WrappedResponseParkingTicketDataData
2541
- */
2542
- 'rate_detail': RateDetail;
2543
- /**
2544
- *
2545
- * @type {string}
2546
- * @memberof WrappedResponseParkingTicketDataData
2547
- */
2548
- 'parked_at': string;
2549
- /**
2550
- *
2551
- * @type {number}
2552
- * @memberof WrappedResponseParkingTicketDataData
2553
- */
2554
- 'total_fee': number;
2555
- /**
2556
- *
2557
- * @type {string}
2558
- * @memberof WrappedResponseParkingTicketDataData
2559
- */
2560
- 'vehicle_type': string;
2561
- /**
2562
- *
2563
- * @type {string}
2564
- * @memberof WrappedResponseParkingTicketDataData
2565
- */
2566
- 'ticket_number': string;
2567
- /**
2568
- *
2569
- * @type {string}
2570
- * @memberof WrappedResponseParkingTicketDataData
2571
- */
2572
- 'plate_number': string;
2573
- /**
2574
- *
2575
- * @type {string}
2576
- * @memberof WrappedResponseParkingTicketDataData
2577
- */
2578
- 'id': string;
2469
+ 'data': WrappedResponseParkingTicketDataArrayData | null;
2579
2470
  }
2580
2471
  /**
2581
2472
  *
2582
2473
  * @export
2583
- * @interface WrappedResponseParkingTicketsIndexResponseData
2474
+ * @interface WrappedResponseParkingTicketDataArrayData
2584
2475
  */
2585
- export interface WrappedResponseParkingTicketsIndexResponseData {
2586
- /**
2587
- *
2588
- * @type {WrappedResponseParkingTicketsIndexResponseDataData}
2589
- * @memberof WrappedResponseParkingTicketsIndexResponseData
2590
- */
2591
- 'data': WrappedResponseParkingTicketsIndexResponseDataData | null;
2476
+ export interface WrappedResponseParkingTicketDataArrayData {
2592
2477
  }
2593
2478
  /**
2594
2479
  *
2595
2480
  * @export
2596
- * @interface WrappedResponseParkingTicketsIndexResponseDataData
2481
+ * @interface WrappedResponseParkingTicketDataData
2597
2482
  */
2598
- export interface WrappedResponseParkingTicketsIndexResponseDataData {
2483
+ export interface WrappedResponseParkingTicketDataData {
2599
2484
  /**
2600
2485
  *
2601
2486
  * @type {number}
2602
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2487
+ * @memberof WrappedResponseParkingTicketDataData
2603
2488
  */
2604
2489
  'vehicle_type_id': number;
2605
2490
  /**
2606
2491
  *
2607
2492
  * @type {number}
2608
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2493
+ * @memberof WrappedResponseParkingTicketDataData
2609
2494
  */
2610
2495
  'member_type_id': number;
2611
2496
  /**
2612
2497
  *
2613
2498
  * @type {RateDetail}
2614
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2499
+ * @memberof WrappedResponseParkingTicketDataData
2615
2500
  */
2616
2501
  'rate_detail': RateDetail;
2617
2502
  /**
2618
2503
  *
2619
2504
  * @type {string}
2620
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2505
+ * @memberof WrappedResponseParkingTicketDataData
2621
2506
  */
2622
2507
  'parked_at': string;
2623
2508
  /**
2624
2509
  *
2625
2510
  * @type {number}
2626
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2511
+ * @memberof WrappedResponseParkingTicketDataData
2627
2512
  */
2628
2513
  'total_fee': number;
2629
2514
  /**
2630
2515
  *
2631
2516
  * @type {string}
2632
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2517
+ * @memberof WrappedResponseParkingTicketDataData
2633
2518
  */
2634
2519
  'vehicle_type': string;
2635
2520
  /**
2636
2521
  *
2637
2522
  * @type {string}
2638
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2523
+ * @memberof WrappedResponseParkingTicketDataData
2639
2524
  */
2640
2525
  'ticket_number': string;
2641
2526
  /**
2642
2527
  *
2643
2528
  * @type {string}
2644
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2529
+ * @memberof WrappedResponseParkingTicketDataData
2645
2530
  */
2646
2531
  'plate_number': string;
2647
2532
  /**
2648
2533
  *
2649
2534
  * @type {string}
2650
- * @memberof WrappedResponseParkingTicketsIndexResponseDataData
2535
+ * @memberof WrappedResponseParkingTicketDataData
2651
2536
  */
2652
2537
  'id': string;
2653
2538
  }
@@ -3147,7 +3032,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3147
3032
  * @param {*} [options] Override http request option.
3148
3033
  * @throws {RequiredError}
3149
3034
  */
3150
- parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketsIndexResponseData>>;
3035
+ parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketDataArray>>;
3151
3036
  /**
3152
3037
  *
3153
3038
  * @param {string} memberId
@@ -3314,7 +3199,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3314
3199
  * @param {*} [options] Override http request option.
3315
3200
  * @throws {RequiredError}
3316
3201
  */
3317
- parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: any): AxiosPromise<WrappedResponseParkingTicketsIndexResponseData>;
3202
+ parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: any): AxiosPromise<WrappedResponseParkingTicketDataArray>;
3318
3203
  /**
3319
3204
  *
3320
3205
  * @param {string} memberId
@@ -3496,7 +3381,7 @@ export declare class DefaultApi extends BaseAPI {
3496
3381
  * @throws {RequiredError}
3497
3382
  * @memberof DefaultApi
3498
3383
  */
3499
- parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseParkingTicketsIndexResponseData, any>>;
3384
+ parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseParkingTicketDataArray, any>>;
3500
3385
  /**
3501
3386
  *
3502
3387
  * @param {string} memberId
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ob-bms-sdk",
3
- "version": "0.0.59",
3
+ "version": "0.0.60",
4
4
  "description": "API interfaces for OB BMS",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT"