ob-bms-sdk 0.0.60 → 0.0.62

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
@@ -246,6 +246,19 @@ export interface CreateMembersResponse {
246
246
  */
247
247
  'error': { [key: string]: any; } | null;
248
248
  }
249
+ /**
250
+ *
251
+ * @export
252
+ * @interface CreateServiceRequestResponse
253
+ */
254
+ export interface CreateServiceRequestResponse {
255
+ /**
256
+ *
257
+ * @type {string}
258
+ * @memberof CreateServiceRequestResponse
259
+ */
260
+ 'id': string;
261
+ }
249
262
  /**
250
263
  *
251
264
  * @export
@@ -511,6 +524,43 @@ export interface FloorDataPasses {
511
524
  */
512
525
  'updated_at': string;
513
526
  }
527
+ /**
528
+ *
529
+ * @export
530
+ * @interface IssueTypeData
531
+ */
532
+ export interface IssueTypeData {
533
+ /**
534
+ *
535
+ * @type {string}
536
+ * @memberof IssueTypeData
537
+ */
538
+ 'updated_at': string;
539
+ /**
540
+ *
541
+ * @type {string}
542
+ * @memberof IssueTypeData
543
+ */
544
+ 'created_at': string;
545
+ /**
546
+ *
547
+ * @type {JsonValue}
548
+ * @memberof IssueTypeData
549
+ */
550
+ 'display_name': JsonValue | null;
551
+ /**
552
+ *
553
+ * @type {string}
554
+ * @memberof IssueTypeData
555
+ */
556
+ 'name': string;
557
+ /**
558
+ *
559
+ * @type {string}
560
+ * @memberof IssueTypeData
561
+ */
562
+ 'id': string;
563
+ }
514
564
  /**
515
565
  *
516
566
  * @export
@@ -1061,6 +1111,12 @@ export interface ParkingTicketsRedeemBody {
1061
1111
  * @memberof ParkingTicketsRedeemBody
1062
1112
  */
1063
1113
  'rate_code': string;
1114
+ /**
1115
+ *
1116
+ * @type {string}
1117
+ * @memberof ParkingTicketsRedeemBody
1118
+ */
1119
+ 'redeemer_id': string;
1064
1120
  }
1065
1121
  /**
1066
1122
  *
@@ -1317,6 +1373,128 @@ export interface RateDetail {
1317
1373
  */
1318
1374
  'en': string;
1319
1375
  }
1376
+ /**
1377
+ *
1378
+ * @export
1379
+ * @interface ServiceRequestBody
1380
+ */
1381
+ export interface ServiceRequestBody {
1382
+ /**
1383
+ *
1384
+ * @type {string}
1385
+ * @memberof ServiceRequestBody
1386
+ */
1387
+ 'description': string;
1388
+ /**
1389
+ *
1390
+ * @type {string}
1391
+ * @memberof ServiceRequestBody
1392
+ */
1393
+ 'title': string;
1394
+ /**
1395
+ *
1396
+ * @type {string}
1397
+ * @memberof ServiceRequestBody
1398
+ */
1399
+ 'requester_id': string;
1400
+ /**
1401
+ *
1402
+ * @type {string}
1403
+ * @memberof ServiceRequestBody
1404
+ */
1405
+ 'issue_type_id': string;
1406
+ /**
1407
+ *
1408
+ * @type {string}
1409
+ * @memberof ServiceRequestBody
1410
+ */
1411
+ 'floor_id': string;
1412
+ /**
1413
+ *
1414
+ * @type {string}
1415
+ * @memberof ServiceRequestBody
1416
+ */
1417
+ 'tower_id': string;
1418
+ /**
1419
+ *
1420
+ * @type {Array<string>}
1421
+ * @memberof ServiceRequestBody
1422
+ */
1423
+ 'image_url': Array<string>;
1424
+ }
1425
+ /**
1426
+ *
1427
+ * @export
1428
+ * @interface ServiceRequestData
1429
+ */
1430
+ export interface ServiceRequestData {
1431
+ /**
1432
+ *
1433
+ * @type {string}
1434
+ * @memberof ServiceRequestData
1435
+ */
1436
+ 'updated_at': string;
1437
+ /**
1438
+ *
1439
+ * @type {string}
1440
+ * @memberof ServiceRequestData
1441
+ */
1442
+ 'created_at': string;
1443
+ /**
1444
+ *
1445
+ * @type {string}
1446
+ * @memberof ServiceRequestData
1447
+ */
1448
+ 'description': string;
1449
+ /**
1450
+ *
1451
+ * @type {string}
1452
+ * @memberof ServiceRequestData
1453
+ */
1454
+ 'status': string;
1455
+ /**
1456
+ *
1457
+ * @type {string}
1458
+ * @memberof ServiceRequestData
1459
+ */
1460
+ 'title': string;
1461
+ /**
1462
+ *
1463
+ * @type {string}
1464
+ * @memberof ServiceRequestData
1465
+ */
1466
+ 'requester_id': string;
1467
+ /**
1468
+ *
1469
+ * @type {IssueTypeData}
1470
+ * @memberof ServiceRequestData
1471
+ */
1472
+ 'issue_type': IssueTypeData;
1473
+ /**
1474
+ *
1475
+ * @type {FloorData}
1476
+ * @memberof ServiceRequestData
1477
+ */
1478
+ 'floor': FloorData;
1479
+ /**
1480
+ *
1481
+ * @type {TowerData}
1482
+ * @memberof ServiceRequestData
1483
+ */
1484
+ 'tower': TowerData;
1485
+ /**
1486
+ *
1487
+ * @type {Array<string>}
1488
+ * @memberof ServiceRequestData
1489
+ */
1490
+ 'image_url': Array<string>;
1491
+ /**
1492
+ *
1493
+ * @type {string}
1494
+ * @memberof ServiceRequestData
1495
+ */
1496
+ 'id': string;
1497
+ }
1320
1498
  /**
1321
1499
  *
1322
1500
  * @export
@@ -2113,7 +2291,7 @@ export interface WebhookCreateBody {
2113
2291
  * @type {WebhookCreateBodyPayload}
2114
2292
  * @memberof WebhookCreateBody
2115
2293
  */
2116
- 'payload': WebhookCreateBodyPayload;
2294
+ 'payload': WebhookCreateBodyPayload | null;
2117
2295
  }
2118
2296
  /**
2119
2297
  *
@@ -2240,6 +2418,32 @@ export interface WrappedResponseCommandsIndexResponse {
2240
2418
  */
2241
2419
  export interface WrappedResponseCommandsIndexResponseData {
2242
2420
  }
2421
+ /**
2422
+ *
2423
+ * @export
2424
+ * @interface WrappedResponseCreateServiceRequestResponse
2425
+ */
2426
+ export interface WrappedResponseCreateServiceRequestResponse {
2427
+ /**
2428
+ *
2429
+ * @type {WrappedResponseCreateServiceRequestResponseData}
2430
+ * @memberof WrappedResponseCreateServiceRequestResponse
2431
+ */
2432
+ 'data': WrappedResponseCreateServiceRequestResponseData | null;
2433
+ }
2434
+ /**
2435
+ *
2436
+ * @export
2437
+ * @interface WrappedResponseCreateServiceRequestResponseData
2438
+ */
2439
+ export interface WrappedResponseCreateServiceRequestResponseData {
2440
+ /**
2441
+ *
2442
+ * @type {string}
2443
+ * @memberof WrappedResponseCreateServiceRequestResponseData
2444
+ */
2445
+ 'id': string;
2446
+ }
2243
2447
  /**
2244
2448
  *
2245
2449
  * @export
@@ -2346,6 +2550,26 @@ export interface WrappedResponseFetchParkingResultData {
2346
2550
  */
2347
2551
  'error': Array<SyncResultSyncJobErrorInner>;
2348
2552
  }
2553
+ /**
2554
+ *
2555
+ * @export
2556
+ * @interface WrappedResponseIssueTypeResponse
2557
+ */
2558
+ export interface WrappedResponseIssueTypeResponse {
2559
+ /**
2560
+ *
2561
+ * @type {WrappedResponseIssueTypeResponseData}
2562
+ * @memberof WrappedResponseIssueTypeResponse
2563
+ */
2564
+ 'data': WrappedResponseIssueTypeResponseData | null;
2565
+ }
2566
+ /**
2567
+ *
2568
+ * @export
2569
+ * @interface WrappedResponseIssueTypeResponseData
2570
+ */
2571
+ export interface WrappedResponseIssueTypeResponseData {
2572
+ }
2349
2573
  /**
2350
2574
  *
2351
2575
  * @export
@@ -2647,6 +2871,26 @@ export const WrappedResponsePassConsentResponseDataStatusEnum = {
2647
2871
 
2648
2872
  export type WrappedResponsePassConsentResponseDataStatusEnum = typeof WrappedResponsePassConsentResponseDataStatusEnum[keyof typeof WrappedResponsePassConsentResponseDataStatusEnum];
2649
2873
 
2874
+ /**
2875
+ *
2876
+ * @export
2877
+ * @interface WrappedResponseServiceRequestResponse
2878
+ */
2879
+ export interface WrappedResponseServiceRequestResponse {
2880
+ /**
2881
+ *
2882
+ * @type {WrappedResponseServiceRequestResponseData}
2883
+ * @memberof WrappedResponseServiceRequestResponse
2884
+ */
2885
+ 'data': WrappedResponseServiceRequestResponseData | null;
2886
+ }
2887
+ /**
2888
+ *
2889
+ * @export
2890
+ * @interface WrappedResponseServiceRequestResponseData
2891
+ */
2892
+ export interface WrappedResponseServiceRequestResponseData {
2893
+ }
2650
2894
  /**
2651
2895
  *
2652
2896
  * @export
@@ -2921,6 +3165,35 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
2921
3165
  options: localVarRequestOptions,
2922
3166
  };
2923
3167
  },
3168
+ /**
3169
+ *
3170
+ * @param {*} [options] Override http request option.
3171
+ * @throws {RequiredError}
3172
+ */
3173
+ issueTypesIndex: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
3174
+ const localVarPath = `/issue_types`;
3175
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
3176
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3177
+ let baseOptions;
3178
+ if (configuration) {
3179
+ baseOptions = configuration.baseOptions;
3180
+ }
3181
+
3182
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
3183
+ const localVarHeaderParameter = {} as any;
3184
+ const localVarQueryParameter = {} as any;
3185
+
3186
+
3187
+
3188
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
3189
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3190
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
3191
+
3192
+ return {
3193
+ url: toPathString(localVarUrlObj),
3194
+ options: localVarRequestOptions,
3195
+ };
3196
+ },
2924
3197
  /**
2925
3198
  *
2926
3199
  * @param {*} [options] Override http request option.
@@ -3289,22 +3562,17 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3289
3562
  },
3290
3563
  /**
3291
3564
  *
3292
- * @param {string} memberId
3293
3565
  * @param {string} logId
3294
3566
  * @param {ParkingTicketsRedeemBody} parkingTicketsRedeemBody
3295
- * @param {string} [xAccountId]
3296
3567
  * @param {*} [options] Override http request option.
3297
3568
  * @throws {RequiredError}
3298
3569
  */
3299
- parkingTicketsRedeem: async (memberId: string, logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, xAccountId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
3300
- // verify required parameter 'memberId' is not null or undefined
3301
- assertParamExists('parkingTicketsRedeem', 'memberId', memberId)
3570
+ parkingTicketsRedeem: async (logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
3302
3571
  // verify required parameter 'logId' is not null or undefined
3303
3572
  assertParamExists('parkingTicketsRedeem', 'logId', logId)
3304
3573
  // verify required parameter 'parkingTicketsRedeemBody' is not null or undefined
3305
3574
  assertParamExists('parkingTicketsRedeem', 'parkingTicketsRedeemBody', parkingTicketsRedeemBody)
3306
- const localVarPath = `/members/{member_id}/parking_tickets/{log_id}/redeem`
3307
- .replace(`{${"member_id"}}`, encodeURIComponent(String(memberId)))
3575
+ const localVarPath = `/parking_tickets/{log_id}/redeem`
3308
3576
  .replace(`{${"log_id"}}`, encodeURIComponent(String(logId)));
3309
3577
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3310
3578
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -3317,10 +3585,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3317
3585
  const localVarHeaderParameter = {} as any;
3318
3586
  const localVarQueryParameter = {} as any;
3319
3587
 
3320
- if (xAccountId != null) {
3321
- localVarHeaderParameter['x-account-id'] = String(xAccountId);
3322
- }
3323
-
3324
3588
 
3325
3589
 
3326
3590
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -3398,6 +3662,75 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3398
3662
 
3399
3663
 
3400
3664
 
3665
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
3666
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3667
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
3668
+
3669
+ return {
3670
+ url: toPathString(localVarUrlObj),
3671
+ options: localVarRequestOptions,
3672
+ };
3673
+ },
3674
+ /**
3675
+ *
3676
+ * @param {ServiceRequestBody} serviceRequestBody
3677
+ * @param {*} [options] Override http request option.
3678
+ * @throws {RequiredError}
3679
+ */
3680
+ serviceRequestsCreate: async (serviceRequestBody: ServiceRequestBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
3681
+ // verify required parameter 'serviceRequestBody' is not null or undefined
3682
+ assertParamExists('serviceRequestsCreate', 'serviceRequestBody', serviceRequestBody)
3683
+ const localVarPath = `/service_requests`;
3684
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
3685
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3686
+ let baseOptions;
3687
+ if (configuration) {
3688
+ baseOptions = configuration.baseOptions;
3689
+ }
3690
+
3691
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
3692
+ const localVarHeaderParameter = {} as any;
3693
+ const localVarQueryParameter = {} as any;
3694
+
3695
+
3696
+
3697
+ localVarHeaderParameter['Content-Type'] = 'application/json';
3698
+
3699
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
3700
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3701
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
3702
+ localVarRequestOptions.data = serializeDataIfNeeded(serviceRequestBody, localVarRequestOptions, configuration)
3703
+
3704
+ return {
3705
+ url: toPathString(localVarUrlObj),
3706
+ options: localVarRequestOptions,
3707
+ };
3708
+ },
3709
+ /**
3710
+ *
3711
+ * @param {string} [requesterId]
3712
+ * @param {*} [options] Override http request option.
3713
+ * @throws {RequiredError}
3714
+ */
3715
+ serviceRequestsIndex: async (requesterId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
3716
+ const localVarPath = `/service_requests`;
3717
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
3718
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3719
+ let baseOptions;
3720
+ if (configuration) {
3721
+ baseOptions = configuration.baseOptions;
3722
+ }
3723
+
3724
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
3725
+ const localVarHeaderParameter = {} as any;
3726
+ const localVarQueryParameter = {} as any;
3727
+
3728
+ if (requesterId !== undefined) {
3729
+ localVarQueryParameter['requester_id'] = requesterId;
3730
+ }
3731
+
3732
+
3733
+
3401
3734
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3402
3735
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3403
3736
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -3626,6 +3959,15 @@ export const DefaultApiFp = function(configuration?: Configuration) {
3626
3959
  const localVarAxiosArgs = await localVarAxiosParamCreator.integrationsFsMembersDelete(destroyFSMembers, options);
3627
3960
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
3628
3961
  },
3962
+ /**
3963
+ *
3964
+ * @param {*} [options] Override http request option.
3965
+ * @throws {RequiredError}
3966
+ */
3967
+ async issueTypesIndex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseIssueTypeResponse>> {
3968
+ const localVarAxiosArgs = await localVarAxiosParamCreator.issueTypesIndex(options);
3969
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
3970
+ },
3629
3971
  /**
3630
3972
  *
3631
3973
  * @param {*} [options] Override http request option.
@@ -3729,15 +4071,13 @@ export const DefaultApiFp = function(configuration?: Configuration) {
3729
4071
  },
3730
4072
  /**
3731
4073
  *
3732
- * @param {string} memberId
3733
4074
  * @param {string} logId
3734
4075
  * @param {ParkingTicketsRedeemBody} parkingTicketsRedeemBody
3735
- * @param {string} [xAccountId]
3736
4076
  * @param {*} [options] Override http request option.
3737
4077
  * @throws {RequiredError}
3738
4078
  */
3739
- async parkingTicketsRedeem(memberId: string, logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketData>> {
3740
- const localVarAxiosArgs = await localVarAxiosParamCreator.parkingTicketsRedeem(memberId, logId, parkingTicketsRedeemBody, xAccountId, options);
4079
+ async parkingTicketsRedeem(logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketData>> {
4080
+ const localVarAxiosArgs = await localVarAxiosParamCreator.parkingTicketsRedeem(logId, parkingTicketsRedeemBody, options);
3741
4081
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
3742
4082
  },
3743
4083
  /**
@@ -3761,6 +4101,26 @@ export const DefaultApiFp = function(configuration?: Configuration) {
3761
4101
  const localVarAxiosArgs = await localVarAxiosParamCreator.passesShow(visitScheduleId, options);
3762
4102
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
3763
4103
  },
4104
+ /**
4105
+ *
4106
+ * @param {ServiceRequestBody} serviceRequestBody
4107
+ * @param {*} [options] Override http request option.
4108
+ * @throws {RequiredError}
4109
+ */
4110
+ async serviceRequestsCreate(serviceRequestBody: ServiceRequestBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseCreateServiceRequestResponse>> {
4111
+ const localVarAxiosArgs = await localVarAxiosParamCreator.serviceRequestsCreate(serviceRequestBody, options);
4112
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
4113
+ },
4114
+ /**
4115
+ *
4116
+ * @param {string} [requesterId]
4117
+ * @param {*} [options] Override http request option.
4118
+ * @throws {RequiredError}
4119
+ */
4120
+ async serviceRequestsIndex(requesterId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseServiceRequestResponse>> {
4121
+ const localVarAxiosArgs = await localVarAxiosParamCreator.serviceRequestsIndex(requesterId, options);
4122
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
4123
+ },
3764
4124
  /**
3765
4125
  *
3766
4126
  * @param {SyncBody} syncBody
@@ -3856,6 +4216,14 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
3856
4216
  integrationsFsMembersDelete(destroyFSMembers: DestroyFSMembers, options?: any): AxiosPromise<DestroyMembersResponse> {
3857
4217
  return localVarFp.integrationsFsMembersDelete(destroyFSMembers, options).then((request) => request(axios, basePath));
3858
4218
  },
4219
+ /**
4220
+ *
4221
+ * @param {*} [options] Override http request option.
4222
+ * @throws {RequiredError}
4223
+ */
4224
+ issueTypesIndex(options?: any): AxiosPromise<WrappedResponseIssueTypeResponse> {
4225
+ return localVarFp.issueTypesIndex(options).then((request) => request(axios, basePath));
4226
+ },
3859
4227
  /**
3860
4228
  *
3861
4229
  * @param {*} [options] Override http request option.
@@ -3950,15 +4318,13 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
3950
4318
  },
3951
4319
  /**
3952
4320
  *
3953
- * @param {string} memberId
3954
4321
  * @param {string} logId
3955
4322
  * @param {ParkingTicketsRedeemBody} parkingTicketsRedeemBody
3956
- * @param {string} [xAccountId]
3957
4323
  * @param {*} [options] Override http request option.
3958
4324
  * @throws {RequiredError}
3959
4325
  */
3960
- parkingTicketsRedeem(memberId: string, logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, xAccountId?: string, options?: any): AxiosPromise<WrappedResponseParkingTicketData> {
3961
- return localVarFp.parkingTicketsRedeem(memberId, logId, parkingTicketsRedeemBody, xAccountId, options).then((request) => request(axios, basePath));
4326
+ parkingTicketsRedeem(logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, options?: any): AxiosPromise<WrappedResponseParkingTicketData> {
4327
+ return localVarFp.parkingTicketsRedeem(logId, parkingTicketsRedeemBody, options).then((request) => request(axios, basePath));
3962
4328
  },
3963
4329
  /**
3964
4330
  *
@@ -3979,6 +4345,24 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
3979
4345
  passesShow(visitScheduleId: string, options?: any): AxiosPromise<WrappedResponseShowPassResponseOrNull> {
3980
4346
  return localVarFp.passesShow(visitScheduleId, options).then((request) => request(axios, basePath));
3981
4347
  },
4348
+ /**
4349
+ *
4350
+ * @param {ServiceRequestBody} serviceRequestBody
4351
+ * @param {*} [options] Override http request option.
4352
+ * @throws {RequiredError}
4353
+ */
4354
+ serviceRequestsCreate(serviceRequestBody: ServiceRequestBody, options?: any): AxiosPromise<WrappedResponseCreateServiceRequestResponse> {
4355
+ return localVarFp.serviceRequestsCreate(serviceRequestBody, options).then((request) => request(axios, basePath));
4356
+ },
4357
+ /**
4358
+ *
4359
+ * @param {string} [requesterId]
4360
+ * @param {*} [options] Override http request option.
4361
+ * @throws {RequiredError}
4362
+ */
4363
+ serviceRequestsIndex(requesterId?: string, options?: any): AxiosPromise<WrappedResponseServiceRequestResponse> {
4364
+ return localVarFp.serviceRequestsIndex(requesterId, options).then((request) => request(axios, basePath));
4365
+ },
3982
4366
  /**
3983
4367
  *
3984
4368
  * @param {SyncBody} syncBody
@@ -4077,6 +4461,16 @@ export class DefaultApi extends BaseAPI {
4077
4461
  return DefaultApiFp(this.configuration).integrationsFsMembersDelete(destroyFSMembers, options).then((request) => request(this.axios, this.basePath));
4078
4462
  }
4079
4463
 
4464
+ /**
4465
+ *
4466
+ * @param {*} [options] Override http request option.
4467
+ * @throws {RequiredError}
4468
+ * @memberof DefaultApi
4469
+ */
4470
+ public issueTypesIndex(options?: AxiosRequestConfig) {
4471
+ return DefaultApiFp(this.configuration).issueTypesIndex(options).then((request) => request(this.axios, this.basePath));
4472
+ }
4473
+
4080
4474
  /**
4081
4475
  *
4082
4476
  * @param {*} [options] Override http request option.
@@ -4189,16 +4583,14 @@ export class DefaultApi extends BaseAPI {
4189
4583
 
4190
4584
  /**
4191
4585
  *
4192
- * @param {string} memberId
4193
4586
  * @param {string} logId
4194
4587
  * @param {ParkingTicketsRedeemBody} parkingTicketsRedeemBody
4195
- * @param {string} [xAccountId]
4196
4588
  * @param {*} [options] Override http request option.
4197
4589
  * @throws {RequiredError}
4198
4590
  * @memberof DefaultApi
4199
4591
  */
4200
- public parkingTicketsRedeem(memberId: string, logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, xAccountId?: string, options?: AxiosRequestConfig) {
4201
- return DefaultApiFp(this.configuration).parkingTicketsRedeem(memberId, logId, parkingTicketsRedeemBody, xAccountId, options).then((request) => request(this.axios, this.basePath));
4592
+ public parkingTicketsRedeem(logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, options?: AxiosRequestConfig) {
4593
+ return DefaultApiFp(this.configuration).parkingTicketsRedeem(logId, parkingTicketsRedeemBody, options).then((request) => request(this.axios, this.basePath));
4202
4594
  }
4203
4595
 
4204
4596
  /**
@@ -4224,6 +4616,28 @@ export class DefaultApi extends BaseAPI {
4224
4616
  return DefaultApiFp(this.configuration).passesShow(visitScheduleId, options).then((request) => request(this.axios, this.basePath));
4225
4617
  }
4226
4618
 
4619
+ /**
4620
+ *
4621
+ * @param {ServiceRequestBody} serviceRequestBody
4622
+ * @param {*} [options] Override http request option.
4623
+ * @throws {RequiredError}
4624
+ * @memberof DefaultApi
4625
+ */
4626
+ public serviceRequestsCreate(serviceRequestBody: ServiceRequestBody, options?: AxiosRequestConfig) {
4627
+ return DefaultApiFp(this.configuration).serviceRequestsCreate(serviceRequestBody, options).then((request) => request(this.axios, this.basePath));
4628
+ }
4629
+
4630
+ /**
4631
+ *
4632
+ * @param {string} [requesterId]
4633
+ * @param {*} [options] Override http request option.
4634
+ * @throws {RequiredError}
4635
+ * @memberof DefaultApi
4636
+ */
4637
+ public serviceRequestsIndex(requesterId?: string, options?: AxiosRequestConfig) {
4638
+ return DefaultApiFp(this.configuration).serviceRequestsIndex(requesterId, options).then((request) => request(this.axios, this.basePath));
4639
+ }
4640
+
4227
4641
  /**
4228
4642
  *
4229
4643
  * @param {SyncBody} syncBody