ob-bms-sdk 0.0.79 → 0.0.81

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
@@ -329,6 +329,12 @@ export interface ACRequestZone {
329
329
  * @memberof ACRequestZone
330
330
  */
331
331
  'id': string;
332
+ /**
333
+ *
334
+ * @type {string}
335
+ * @memberof ACRequestZone
336
+ */
337
+ 'name': string;
332
338
  /**
333
339
  *
334
340
  * @type {ACZoneData}
@@ -887,6 +893,49 @@ export interface FloorSensorData {
887
893
  */
888
894
  'floor_id': string;
889
895
  }
896
+ /**
897
+ *
898
+ * @export
899
+ * @interface HolidayResponse
900
+ */
901
+ export interface HolidayResponse {
902
+ /**
903
+ *
904
+ * @type {string}
905
+ * @memberof HolidayResponse
906
+ */
907
+ 'holiday_week_day': string;
908
+ /**
909
+ *
910
+ * @type {string}
911
+ * @memberof HolidayResponse
912
+ */
913
+ 'holiday_week_day_thai': string;
914
+ /**
915
+ *
916
+ * @type {string}
917
+ * @memberof HolidayResponse
918
+ */
919
+ 'date': string;
920
+ /**
921
+ *
922
+ * @type {string}
923
+ * @memberof HolidayResponse
924
+ */
925
+ 'date_thai': string;
926
+ /**
927
+ *
928
+ * @type {string}
929
+ * @memberof HolidayResponse
930
+ */
931
+ 'holiday_description': string;
932
+ /**
933
+ *
934
+ * @type {string}
935
+ * @memberof HolidayResponse
936
+ */
937
+ 'holiday_description_thai': string;
938
+ }
890
939
  /**
891
940
  *
892
941
  * @export
@@ -905,6 +954,12 @@ export interface IssueTypeData {
905
954
  * @memberof IssueTypeData
906
955
  */
907
956
  'created_at': string;
957
+ /**
958
+ *
959
+ * @type {string}
960
+ * @memberof IssueTypeData
961
+ */
962
+ 'internal_remark': string | null;
908
963
  /**
909
964
  *
910
965
  * @type {JsonValue}
@@ -1123,6 +1178,55 @@ export interface LocationPasses {
1123
1178
  */
1124
1179
  'updated_at': string;
1125
1180
  }
1181
+ /**
1182
+ *
1183
+ * @export
1184
+ * @interface MemberAccessLog
1185
+ */
1186
+ export interface MemberAccessLog {
1187
+ /**
1188
+ *
1189
+ * @type {number}
1190
+ * @memberof MemberAccessLog
1191
+ */
1192
+ 'transacId': number;
1193
+ /**
1194
+ *
1195
+ * @type {string}
1196
+ * @memberof MemberAccessLog
1197
+ */
1198
+ 'transcDatetime': string;
1199
+ /**
1200
+ *
1201
+ * @type {number}
1202
+ * @memberof MemberAccessLog
1203
+ */
1204
+ 'projectID': number;
1205
+ /**
1206
+ *
1207
+ * @type {number}
1208
+ * @memberof MemberAccessLog
1209
+ */
1210
+ 'towerID': number;
1211
+ /**
1212
+ *
1213
+ * @type {string}
1214
+ * @memberof MemberAccessLog
1215
+ */
1216
+ 'personID': string;
1217
+ /**
1218
+ *
1219
+ * @type {string}
1220
+ * @memberof MemberAccessLog
1221
+ */
1222
+ 'turnstileID': string;
1223
+ /**
1224
+ *
1225
+ * @type {number}
1226
+ * @memberof MemberAccessLog
1227
+ */
1228
+ 'terminalPosition': number;
1229
+ }
1126
1230
  /**
1127
1231
  *
1128
1232
  * @export
@@ -1183,6 +1287,12 @@ export interface MemberIndexInterface {
1183
1287
  * @memberof MemberIndexInterface
1184
1288
  */
1185
1289
  'tenant': Tenant | null;
1290
+ /**
1291
+ *
1292
+ * @type {boolean}
1293
+ * @memberof MemberIndexInterface
1294
+ */
1295
+ 'canPreRegister'?: boolean;
1186
1296
  }
1187
1297
  /**
1188
1298
  *
@@ -1410,6 +1520,43 @@ export interface ParkingLotData {
1410
1520
  */
1411
1521
  'total_available_slots': number;
1412
1522
  }
1523
+ /**
1524
+ *
1525
+ * @export
1526
+ * @interface ParkingMemberAccessLog
1527
+ */
1528
+ export interface ParkingMemberAccessLog {
1529
+ /**
1530
+ *
1531
+ * @type {number}
1532
+ * @memberof ParkingMemberAccessLog
1533
+ */
1534
+ 'transacId': number;
1535
+ /**
1536
+ *
1537
+ * @type {string}
1538
+ * @memberof ParkingMemberAccessLog
1539
+ */
1540
+ 'transcDatetime': string;
1541
+ /**
1542
+ *
1543
+ * @type {string}
1544
+ * @memberof ParkingMemberAccessLog
1545
+ */
1546
+ 'personID': string;
1547
+ /**
1548
+ *
1549
+ * @type {string}
1550
+ * @memberof ParkingMemberAccessLog
1551
+ */
1552
+ 'terminalID': string;
1553
+ /**
1554
+ *
1555
+ * @type {number}
1556
+ * @memberof ParkingMemberAccessLog
1557
+ */
1558
+ 'terminalPosition': number;
1559
+ }
1413
1560
  /**
1414
1561
  *
1415
1562
  * @export
@@ -1537,6 +1684,43 @@ export interface ParkingTicketsRedeemBody {
1537
1684
  */
1538
1685
  'redeemer_id': string;
1539
1686
  }
1687
+ /**
1688
+ *
1689
+ * @export
1690
+ * @interface ParkingVisitorAccessLog
1691
+ */
1692
+ export interface ParkingVisitorAccessLog {
1693
+ /**
1694
+ *
1695
+ * @type {number}
1696
+ * @memberof ParkingVisitorAccessLog
1697
+ */
1698
+ 'transacId': number;
1699
+ /**
1700
+ *
1701
+ * @type {string}
1702
+ * @memberof ParkingVisitorAccessLog
1703
+ */
1704
+ 'transcDatetime': string;
1705
+ /**
1706
+ *
1707
+ * @type {string}
1708
+ * @memberof ParkingVisitorAccessLog
1709
+ */
1710
+ 'inviteID': string;
1711
+ /**
1712
+ *
1713
+ * @type {string}
1714
+ * @memberof ParkingVisitorAccessLog
1715
+ */
1716
+ 'terminalID': string;
1717
+ /**
1718
+ *
1719
+ * @type {number}
1720
+ * @memberof ParkingVisitorAccessLog
1721
+ */
1722
+ 'terminalPosition': number;
1723
+ }
1540
1724
  /**
1541
1725
  *
1542
1726
  * @export
@@ -2745,6 +2929,55 @@ export interface UpdateVisitorScheduleBody {
2745
2929
  */
2746
2930
  export interface UpdateVisitorScheduleBodyDeletedAt {
2747
2931
  }
2932
+ /**
2933
+ *
2934
+ * @export
2935
+ * @interface VisitorAccessLog
2936
+ */
2937
+ export interface VisitorAccessLog {
2938
+ /**
2939
+ *
2940
+ * @type {number}
2941
+ * @memberof VisitorAccessLog
2942
+ */
2943
+ 'transacId': number;
2944
+ /**
2945
+ *
2946
+ * @type {string}
2947
+ * @memberof VisitorAccessLog
2948
+ */
2949
+ 'transcDatetime': string;
2950
+ /**
2951
+ *
2952
+ * @type {number}
2953
+ * @memberof VisitorAccessLog
2954
+ */
2955
+ 'projectID': number;
2956
+ /**
2957
+ *
2958
+ * @type {number}
2959
+ * @memberof VisitorAccessLog
2960
+ */
2961
+ 'towerID': number;
2962
+ /**
2963
+ *
2964
+ * @type {string}
2965
+ * @memberof VisitorAccessLog
2966
+ */
2967
+ 'inviteID': string;
2968
+ /**
2969
+ *
2970
+ * @type {string}
2971
+ * @memberof VisitorAccessLog
2972
+ */
2973
+ 'turnstileID': string;
2974
+ /**
2975
+ *
2976
+ * @type {number}
2977
+ * @memberof VisitorAccessLog
2978
+ */
2979
+ 'terminalPosition': number;
2980
+ }
2748
2981
  /**
2749
2982
  *
2750
2983
  * @export
@@ -3171,6 +3404,19 @@ export interface WrappedArrayResponseACZoneData {
3171
3404
  */
3172
3405
  'data': Array<ACZoneData>;
3173
3406
  }
3407
+ /**
3408
+ *
3409
+ * @export
3410
+ * @interface WrappedArrayResponseHolidayResponse
3411
+ */
3412
+ export interface WrappedArrayResponseHolidayResponse {
3413
+ /**
3414
+ *
3415
+ * @type {Array<HolidayResponse>}
3416
+ * @memberof WrappedArrayResponseHolidayResponse
3417
+ */
3418
+ 'data': Array<HolidayResponse>;
3419
+ }
3174
3420
  /**
3175
3421
  *
3176
3422
  * @export
@@ -4240,6 +4486,35 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4240
4486
 
4241
4487
 
4242
4488
 
4489
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
4490
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4491
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
4492
+
4493
+ return {
4494
+ url: toPathString(localVarUrlObj),
4495
+ options: localVarRequestOptions,
4496
+ };
4497
+ },
4498
+ /**
4499
+ *
4500
+ * @param {*} [options] Override http request option.
4501
+ * @throws {RequiredError}
4502
+ */
4503
+ holidaysIndex: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4504
+ const localVarPath = `/holidays`;
4505
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
4506
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4507
+ let baseOptions;
4508
+ if (configuration) {
4509
+ baseOptions = configuration.baseOptions;
4510
+ }
4511
+
4512
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
4513
+ const localVarHeaderParameter = {} as any;
4514
+ const localVarQueryParameter = {} as any;
4515
+
4516
+
4517
+
4243
4518
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4244
4519
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4245
4520
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -5493,6 +5768,15 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5493
5768
  const localVarAxiosArgs = await localVarAxiosParamCreator.fetch(options);
5494
5769
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5495
5770
  },
5771
+ /**
5772
+ *
5773
+ * @param {*} [options] Override http request option.
5774
+ * @throws {RequiredError}
5775
+ */
5776
+ async holidaysIndex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseHolidayResponse>> {
5777
+ const localVarAxiosArgs = await localVarAxiosParamCreator.holidaysIndex(options);
5778
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5779
+ },
5496
5780
  /**
5497
5781
  *
5498
5782
  * @param {CreateFSMembersBody} createFSMembersBody
@@ -5902,6 +6186,14 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
5902
6186
  fetch(options?: any): AxiosPromise<WrappedResponseFetchParkingResult> {
5903
6187
  return localVarFp.fetch(options).then((request) => request(axios, basePath));
5904
6188
  },
6189
+ /**
6190
+ *
6191
+ * @param {*} [options] Override http request option.
6192
+ * @throws {RequiredError}
6193
+ */
6194
+ holidaysIndex(options?: any): AxiosPromise<WrappedArrayResponseHolidayResponse> {
6195
+ return localVarFp.holidaysIndex(options).then((request) => request(axios, basePath));
6196
+ },
5905
6197
  /**
5906
6198
  *
5907
6199
  * @param {CreateFSMembersBody} createFSMembersBody
@@ -6294,6 +6586,16 @@ export class DefaultApi extends BaseAPI {
6294
6586
  return DefaultApiFp(this.configuration).fetch(options).then((request) => request(this.axios, this.basePath));
6295
6587
  }
6296
6588
 
6589
+ /**
6590
+ *
6591
+ * @param {*} [options] Override http request option.
6592
+ * @throws {RequiredError}
6593
+ * @memberof DefaultApi
6594
+ */
6595
+ public holidaysIndex(options?: AxiosRequestConfig) {
6596
+ return DefaultApiFp(this.configuration).holidaysIndex(options).then((request) => request(this.axios, this.basePath));
6597
+ }
6598
+
6297
6599
  /**
6298
6600
  *
6299
6601
  * @param {CreateFSMembersBody} createFSMembersBody
package/dist/api/api.d.ts CHANGED
@@ -305,6 +305,12 @@ export interface ACRequestZone {
305
305
  * @memberof ACRequestZone
306
306
  */
307
307
  'id': string;
308
+ /**
309
+ *
310
+ * @type {string}
311
+ * @memberof ACRequestZone
312
+ */
313
+ 'name': string;
308
314
  /**
309
315
  *
310
316
  * @type {ACZoneData}
@@ -871,6 +877,49 @@ export interface FloorSensorData {
871
877
  */
872
878
  'floor_id': string;
873
879
  }
880
+ /**
881
+ *
882
+ * @export
883
+ * @interface HolidayResponse
884
+ */
885
+ export interface HolidayResponse {
886
+ /**
887
+ *
888
+ * @type {string}
889
+ * @memberof HolidayResponse
890
+ */
891
+ 'holiday_week_day': string;
892
+ /**
893
+ *
894
+ * @type {string}
895
+ * @memberof HolidayResponse
896
+ */
897
+ 'holiday_week_day_thai': string;
898
+ /**
899
+ *
900
+ * @type {string}
901
+ * @memberof HolidayResponse
902
+ */
903
+ 'date': string;
904
+ /**
905
+ *
906
+ * @type {string}
907
+ * @memberof HolidayResponse
908
+ */
909
+ 'date_thai': string;
910
+ /**
911
+ *
912
+ * @type {string}
913
+ * @memberof HolidayResponse
914
+ */
915
+ 'holiday_description': string;
916
+ /**
917
+ *
918
+ * @type {string}
919
+ * @memberof HolidayResponse
920
+ */
921
+ 'holiday_description_thai': string;
922
+ }
874
923
  /**
875
924
  *
876
925
  * @export
@@ -889,6 +938,12 @@ export interface IssueTypeData {
889
938
  * @memberof IssueTypeData
890
939
  */
891
940
  'created_at': string;
941
+ /**
942
+ *
943
+ * @type {string}
944
+ * @memberof IssueTypeData
945
+ */
946
+ 'internal_remark': string | null;
892
947
  /**
893
948
  *
894
949
  * @type {JsonValue}
@@ -1107,6 +1162,55 @@ export interface LocationPasses {
1107
1162
  */
1108
1163
  'updated_at': string;
1109
1164
  }
1165
+ /**
1166
+ *
1167
+ * @export
1168
+ * @interface MemberAccessLog
1169
+ */
1170
+ export interface MemberAccessLog {
1171
+ /**
1172
+ *
1173
+ * @type {number}
1174
+ * @memberof MemberAccessLog
1175
+ */
1176
+ 'transacId': number;
1177
+ /**
1178
+ *
1179
+ * @type {string}
1180
+ * @memberof MemberAccessLog
1181
+ */
1182
+ 'transcDatetime': string;
1183
+ /**
1184
+ *
1185
+ * @type {number}
1186
+ * @memberof MemberAccessLog
1187
+ */
1188
+ 'projectID': number;
1189
+ /**
1190
+ *
1191
+ * @type {number}
1192
+ * @memberof MemberAccessLog
1193
+ */
1194
+ 'towerID': number;
1195
+ /**
1196
+ *
1197
+ * @type {string}
1198
+ * @memberof MemberAccessLog
1199
+ */
1200
+ 'personID': string;
1201
+ /**
1202
+ *
1203
+ * @type {string}
1204
+ * @memberof MemberAccessLog
1205
+ */
1206
+ 'turnstileID': string;
1207
+ /**
1208
+ *
1209
+ * @type {number}
1210
+ * @memberof MemberAccessLog
1211
+ */
1212
+ 'terminalPosition': number;
1213
+ }
1110
1214
  /**
1111
1215
  *
1112
1216
  * @export
@@ -1167,6 +1271,12 @@ export interface MemberIndexInterface {
1167
1271
  * @memberof MemberIndexInterface
1168
1272
  */
1169
1273
  'tenant': Tenant | null;
1274
+ /**
1275
+ *
1276
+ * @type {boolean}
1277
+ * @memberof MemberIndexInterface
1278
+ */
1279
+ 'canPreRegister'?: boolean;
1170
1280
  }
1171
1281
  /**
1172
1282
  *
@@ -1394,6 +1504,43 @@ export interface ParkingLotData {
1394
1504
  */
1395
1505
  'total_available_slots': number;
1396
1506
  }
1507
+ /**
1508
+ *
1509
+ * @export
1510
+ * @interface ParkingMemberAccessLog
1511
+ */
1512
+ export interface ParkingMemberAccessLog {
1513
+ /**
1514
+ *
1515
+ * @type {number}
1516
+ * @memberof ParkingMemberAccessLog
1517
+ */
1518
+ 'transacId': number;
1519
+ /**
1520
+ *
1521
+ * @type {string}
1522
+ * @memberof ParkingMemberAccessLog
1523
+ */
1524
+ 'transcDatetime': string;
1525
+ /**
1526
+ *
1527
+ * @type {string}
1528
+ * @memberof ParkingMemberAccessLog
1529
+ */
1530
+ 'personID': string;
1531
+ /**
1532
+ *
1533
+ * @type {string}
1534
+ * @memberof ParkingMemberAccessLog
1535
+ */
1536
+ 'terminalID': string;
1537
+ /**
1538
+ *
1539
+ * @type {number}
1540
+ * @memberof ParkingMemberAccessLog
1541
+ */
1542
+ 'terminalPosition': number;
1543
+ }
1397
1544
  /**
1398
1545
  *
1399
1546
  * @export
@@ -1518,6 +1665,43 @@ export interface ParkingTicketsRedeemBody {
1518
1665
  */
1519
1666
  'redeemer_id': string;
1520
1667
  }
1668
+ /**
1669
+ *
1670
+ * @export
1671
+ * @interface ParkingVisitorAccessLog
1672
+ */
1673
+ export interface ParkingVisitorAccessLog {
1674
+ /**
1675
+ *
1676
+ * @type {number}
1677
+ * @memberof ParkingVisitorAccessLog
1678
+ */
1679
+ 'transacId': number;
1680
+ /**
1681
+ *
1682
+ * @type {string}
1683
+ * @memberof ParkingVisitorAccessLog
1684
+ */
1685
+ 'transcDatetime': string;
1686
+ /**
1687
+ *
1688
+ * @type {string}
1689
+ * @memberof ParkingVisitorAccessLog
1690
+ */
1691
+ 'inviteID': string;
1692
+ /**
1693
+ *
1694
+ * @type {string}
1695
+ * @memberof ParkingVisitorAccessLog
1696
+ */
1697
+ 'terminalID': string;
1698
+ /**
1699
+ *
1700
+ * @type {number}
1701
+ * @memberof ParkingVisitorAccessLog
1702
+ */
1703
+ 'terminalPosition': number;
1704
+ }
1521
1705
  /**
1522
1706
  *
1523
1707
  * @export
@@ -2697,6 +2881,55 @@ export interface UpdateVisitorScheduleBody {
2697
2881
  */
2698
2882
  export interface UpdateVisitorScheduleBodyDeletedAt {
2699
2883
  }
2884
+ /**
2885
+ *
2886
+ * @export
2887
+ * @interface VisitorAccessLog
2888
+ */
2889
+ export interface VisitorAccessLog {
2890
+ /**
2891
+ *
2892
+ * @type {number}
2893
+ * @memberof VisitorAccessLog
2894
+ */
2895
+ 'transacId': number;
2896
+ /**
2897
+ *
2898
+ * @type {string}
2899
+ * @memberof VisitorAccessLog
2900
+ */
2901
+ 'transcDatetime': string;
2902
+ /**
2903
+ *
2904
+ * @type {number}
2905
+ * @memberof VisitorAccessLog
2906
+ */
2907
+ 'projectID': number;
2908
+ /**
2909
+ *
2910
+ * @type {number}
2911
+ * @memberof VisitorAccessLog
2912
+ */
2913
+ 'towerID': number;
2914
+ /**
2915
+ *
2916
+ * @type {string}
2917
+ * @memberof VisitorAccessLog
2918
+ */
2919
+ 'inviteID': string;
2920
+ /**
2921
+ *
2922
+ * @type {string}
2923
+ * @memberof VisitorAccessLog
2924
+ */
2925
+ 'turnstileID': string;
2926
+ /**
2927
+ *
2928
+ * @type {number}
2929
+ * @memberof VisitorAccessLog
2930
+ */
2931
+ 'terminalPosition': number;
2932
+ }
2700
2933
  /**
2701
2934
  *
2702
2935
  * @export
@@ -3123,6 +3356,19 @@ export interface WrappedArrayResponseACZoneData {
3123
3356
  */
3124
3357
  'data': Array<ACZoneData>;
3125
3358
  }
3359
+ /**
3360
+ *
3361
+ * @export
3362
+ * @interface WrappedArrayResponseHolidayResponse
3363
+ */
3364
+ export interface WrappedArrayResponseHolidayResponse {
3365
+ /**
3366
+ *
3367
+ * @type {Array<HolidayResponse>}
3368
+ * @memberof WrappedArrayResponseHolidayResponse
3369
+ */
3370
+ 'data': Array<HolidayResponse>;
3371
+ }
3126
3372
  /**
3127
3373
  *
3128
3374
  * @export
@@ -3976,6 +4222,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3976
4222
  * @throws {RequiredError}
3977
4223
  */
3978
4224
  fetch: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
4225
+ /**
4226
+ *
4227
+ * @param {*} [options] Override http request option.
4228
+ * @throws {RequiredError}
4229
+ */
4230
+ holidaysIndex: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
3979
4231
  /**
3980
4232
  *
3981
4233
  * @param {CreateFSMembersBody} createFSMembersBody
@@ -4274,6 +4526,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
4274
4526
  * @throws {RequiredError}
4275
4527
  */
4276
4528
  fetch(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseFetchParkingResult>>;
4529
+ /**
4530
+ *
4531
+ * @param {*} [options] Override http request option.
4532
+ * @throws {RequiredError}
4533
+ */
4534
+ holidaysIndex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseHolidayResponse>>;
4277
4535
  /**
4278
4536
  *
4279
4537
  * @param {CreateFSMembersBody} createFSMembersBody
@@ -4572,6 +4830,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4572
4830
  * @throws {RequiredError}
4573
4831
  */
4574
4832
  fetch(options?: any): AxiosPromise<WrappedResponseFetchParkingResult>;
4833
+ /**
4834
+ *
4835
+ * @param {*} [options] Override http request option.
4836
+ * @throws {RequiredError}
4837
+ */
4838
+ holidaysIndex(options?: any): AxiosPromise<WrappedArrayResponseHolidayResponse>;
4575
4839
  /**
4576
4840
  *
4577
4841
  * @param {CreateFSMembersBody} createFSMembersBody
@@ -4879,6 +5143,13 @@ export declare class DefaultApi extends BaseAPI {
4879
5143
  * @memberof DefaultApi
4880
5144
  */
4881
5145
  fetch(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseFetchParkingResult, any>>;
5146
+ /**
5147
+ *
5148
+ * @param {*} [options] Override http request option.
5149
+ * @throws {RequiredError}
5150
+ * @memberof DefaultApi
5151
+ */
5152
+ holidaysIndex(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedArrayResponseHolidayResponse, any>>;
4882
5153
  /**
4883
5154
  *
4884
5155
  * @param {CreateFSMembersBody} createFSMembersBody
package/dist/api/api.js CHANGED
@@ -353,6 +353,30 @@ const DefaultApiAxiosParamCreator = function (configuration) {
353
353
  options: localVarRequestOptions,
354
354
  };
355
355
  }),
356
+ /**
357
+ *
358
+ * @param {*} [options] Override http request option.
359
+ * @throws {RequiredError}
360
+ */
361
+ holidaysIndex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
362
+ const localVarPath = `/holidays`;
363
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
364
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
365
+ let baseOptions;
366
+ if (configuration) {
367
+ baseOptions = configuration.baseOptions;
368
+ }
369
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
370
+ const localVarHeaderParameter = {};
371
+ const localVarQueryParameter = {};
372
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
373
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
374
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
375
+ return {
376
+ url: (0, common_1.toPathString)(localVarUrlObj),
377
+ options: localVarRequestOptions,
378
+ };
379
+ }),
356
380
  /**
357
381
  *
358
382
  * @param {CreateFSMembersBody} createFSMembersBody
@@ -1421,6 +1445,17 @@ const DefaultApiFp = function (configuration) {
1421
1445
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1422
1446
  });
1423
1447
  },
1448
+ /**
1449
+ *
1450
+ * @param {*} [options] Override http request option.
1451
+ * @throws {RequiredError}
1452
+ */
1453
+ holidaysIndex(options) {
1454
+ return __awaiter(this, void 0, void 0, function* () {
1455
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.holidaysIndex(options);
1456
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1457
+ });
1458
+ },
1424
1459
  /**
1425
1460
  *
1426
1461
  * @param {CreateFSMembersBody} createFSMembersBody
@@ -1892,6 +1927,14 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
1892
1927
  fetch(options) {
1893
1928
  return localVarFp.fetch(options).then((request) => request(axios, basePath));
1894
1929
  },
1930
+ /**
1931
+ *
1932
+ * @param {*} [options] Override http request option.
1933
+ * @throws {RequiredError}
1934
+ */
1935
+ holidaysIndex(options) {
1936
+ return localVarFp.holidaysIndex(options).then((request) => request(axios, basePath));
1937
+ },
1895
1938
  /**
1896
1939
  *
1897
1940
  * @param {CreateFSMembersBody} createFSMembersBody
@@ -2277,6 +2320,15 @@ class DefaultApi extends base_1.BaseAPI {
2277
2320
  fetch(options) {
2278
2321
  return (0, exports.DefaultApiFp)(this.configuration).fetch(options).then((request) => request(this.axios, this.basePath));
2279
2322
  }
2323
+ /**
2324
+ *
2325
+ * @param {*} [options] Override http request option.
2326
+ * @throws {RequiredError}
2327
+ * @memberof DefaultApi
2328
+ */
2329
+ holidaysIndex(options) {
2330
+ return (0, exports.DefaultApiFp)(this.configuration).holidaysIndex(options).then((request) => request(this.axios, this.basePath));
2331
+ }
2280
2332
  /**
2281
2333
  *
2282
2334
  * @param {CreateFSMembersBody} createFSMembersBody
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ob-bms-sdk",
3
- "version": "0.0.79",
3
+ "version": "0.0.81",
4
4
  "description": "API interfaces for OB BMS",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT"