ob-bms-sdk 0.0.57 → 0.0.59
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 +455 -205
- package/dist/api/api.d.ts +404 -201
- package/dist/api/api.js +99 -16
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -413,56 +413,6 @@ export interface FetchParkingResult {
|
|
|
413
413
|
*/
|
|
414
414
|
'error': Array<SyncResultSyncJobErrorInner>;
|
|
415
415
|
}
|
|
416
|
-
/**
|
|
417
|
-
*
|
|
418
|
-
* @export
|
|
419
|
-
* @interface FindMemberResult
|
|
420
|
-
*/
|
|
421
|
-
export interface FindMemberResult {
|
|
422
|
-
/**
|
|
423
|
-
*
|
|
424
|
-
* @type {FindMemberResultUpdatedAt}
|
|
425
|
-
* @memberof FindMemberResult
|
|
426
|
-
*/
|
|
427
|
-
'updated_at': FindMemberResultUpdatedAt;
|
|
428
|
-
/**
|
|
429
|
-
*
|
|
430
|
-
* @type {FindMemberResultUpdatedAt}
|
|
431
|
-
* @memberof FindMemberResult
|
|
432
|
-
*/
|
|
433
|
-
'created_at': FindMemberResultUpdatedAt;
|
|
434
|
-
/**
|
|
435
|
-
*
|
|
436
|
-
* @type {JsonValue}
|
|
437
|
-
* @memberof FindMemberResult
|
|
438
|
-
*/
|
|
439
|
-
'metadata'?: JsonValue | null;
|
|
440
|
-
/**
|
|
441
|
-
*
|
|
442
|
-
* @type {string}
|
|
443
|
-
* @memberof FindMemberResult
|
|
444
|
-
*/
|
|
445
|
-
'account_id'?: string | null;
|
|
446
|
-
/**
|
|
447
|
-
*
|
|
448
|
-
* @type {string}
|
|
449
|
-
* @memberof FindMemberResult
|
|
450
|
-
*/
|
|
451
|
-
'uid': string;
|
|
452
|
-
/**
|
|
453
|
-
*
|
|
454
|
-
* @type {string}
|
|
455
|
-
* @memberof FindMemberResult
|
|
456
|
-
*/
|
|
457
|
-
'id': string;
|
|
458
|
-
}
|
|
459
|
-
/**
|
|
460
|
-
*
|
|
461
|
-
* @export
|
|
462
|
-
* @interface FindMemberResultUpdatedAt
|
|
463
|
-
*/
|
|
464
|
-
export interface FindMemberResultUpdatedAt {
|
|
465
|
-
}
|
|
466
416
|
/**
|
|
467
417
|
*
|
|
468
418
|
* @export
|
|
@@ -710,6 +660,61 @@ export interface LocationPasses {
|
|
|
710
660
|
*/
|
|
711
661
|
'updated_at': string;
|
|
712
662
|
}
|
|
663
|
+
/**
|
|
664
|
+
*
|
|
665
|
+
* @export
|
|
666
|
+
* @interface MemberIndexInterface
|
|
667
|
+
*/
|
|
668
|
+
export interface MemberIndexInterface {
|
|
669
|
+
/**
|
|
670
|
+
*
|
|
671
|
+
* @type {string}
|
|
672
|
+
* @memberof MemberIndexInterface
|
|
673
|
+
*/
|
|
674
|
+
'id'?: string;
|
|
675
|
+
/**
|
|
676
|
+
*
|
|
677
|
+
* @type {string}
|
|
678
|
+
* @memberof MemberIndexInterface
|
|
679
|
+
*/
|
|
680
|
+
'uid'?: string;
|
|
681
|
+
/**
|
|
682
|
+
*
|
|
683
|
+
* @type {PrismaJsonValue}
|
|
684
|
+
* @memberof MemberIndexInterface
|
|
685
|
+
*/
|
|
686
|
+
'metadata'?: PrismaJsonValue | null;
|
|
687
|
+
/**
|
|
688
|
+
*
|
|
689
|
+
* @type {string}
|
|
690
|
+
* @memberof MemberIndexInterface
|
|
691
|
+
*/
|
|
692
|
+
'account_id'?: string | null;
|
|
693
|
+
/**
|
|
694
|
+
*
|
|
695
|
+
* @type {string}
|
|
696
|
+
* @memberof MemberIndexInterface
|
|
697
|
+
*/
|
|
698
|
+
'created_at'?: string;
|
|
699
|
+
/**
|
|
700
|
+
*
|
|
701
|
+
* @type {string}
|
|
702
|
+
* @memberof MemberIndexInterface
|
|
703
|
+
*/
|
|
704
|
+
'updated_at'?: string;
|
|
705
|
+
/**
|
|
706
|
+
*
|
|
707
|
+
* @type {string}
|
|
708
|
+
* @memberof MemberIndexInterface
|
|
709
|
+
*/
|
|
710
|
+
'default_floor'?: string | null;
|
|
711
|
+
/**
|
|
712
|
+
*
|
|
713
|
+
* @type {boolean}
|
|
714
|
+
* @memberof MemberIndexInterface
|
|
715
|
+
*/
|
|
716
|
+
'redemption_authorized': boolean;
|
|
717
|
+
}
|
|
713
718
|
/**
|
|
714
719
|
*
|
|
715
720
|
* @export
|
|
@@ -958,67 +963,150 @@ export interface ParkingRedemptionRateResult {
|
|
|
958
963
|
/**
|
|
959
964
|
*
|
|
960
965
|
* @export
|
|
961
|
-
* @interface
|
|
966
|
+
* @interface ParkingTicketData
|
|
962
967
|
*/
|
|
963
|
-
export interface
|
|
968
|
+
export interface ParkingTicketData {
|
|
964
969
|
/**
|
|
965
970
|
*
|
|
966
971
|
* @type {number}
|
|
967
|
-
* @memberof
|
|
972
|
+
* @memberof ParkingTicketData
|
|
968
973
|
*/
|
|
969
974
|
'vehicle_type_id': number;
|
|
970
975
|
/**
|
|
971
976
|
*
|
|
972
977
|
* @type {number}
|
|
973
|
-
* @memberof
|
|
978
|
+
* @memberof ParkingTicketData
|
|
974
979
|
*/
|
|
975
980
|
'member_type_id': number;
|
|
976
981
|
/**
|
|
977
982
|
*
|
|
978
983
|
* @type {RateDetail}
|
|
979
|
-
* @memberof
|
|
984
|
+
* @memberof ParkingTicketData
|
|
980
985
|
*/
|
|
981
986
|
'rate_detail': RateDetail;
|
|
982
987
|
/**
|
|
983
988
|
*
|
|
984
989
|
* @type {string}
|
|
985
|
-
* @memberof
|
|
990
|
+
* @memberof ParkingTicketData
|
|
986
991
|
*/
|
|
987
992
|
'parked_at': string;
|
|
993
|
+
/**
|
|
994
|
+
*
|
|
995
|
+
* @type {number}
|
|
996
|
+
* @memberof ParkingTicketData
|
|
997
|
+
*/
|
|
998
|
+
'total_fee': number;
|
|
988
999
|
/**
|
|
989
1000
|
*
|
|
990
1001
|
* @type {string}
|
|
991
|
-
* @memberof
|
|
1002
|
+
* @memberof ParkingTicketData
|
|
992
1003
|
*/
|
|
993
|
-
'
|
|
1004
|
+
'vehicle_type': string;
|
|
1005
|
+
/**
|
|
1006
|
+
*
|
|
1007
|
+
* @type {string}
|
|
1008
|
+
* @memberof ParkingTicketData
|
|
1009
|
+
*/
|
|
1010
|
+
'ticket_number': string;
|
|
1011
|
+
/**
|
|
1012
|
+
*
|
|
1013
|
+
* @type {string}
|
|
1014
|
+
* @memberof ParkingTicketData
|
|
1015
|
+
*/
|
|
1016
|
+
'plate_number': string;
|
|
1017
|
+
/**
|
|
1018
|
+
*
|
|
1019
|
+
* @type {string}
|
|
1020
|
+
* @memberof ParkingTicketData
|
|
1021
|
+
*/
|
|
1022
|
+
'id': string;
|
|
1023
|
+
}
|
|
1024
|
+
/**
|
|
1025
|
+
*
|
|
1026
|
+
* @export
|
|
1027
|
+
* @interface ParkingTicketsIndexQuery
|
|
1028
|
+
*/
|
|
1029
|
+
export interface ParkingTicketsIndexQuery {
|
|
1030
|
+
/**
|
|
1031
|
+
*
|
|
1032
|
+
* @type {string}
|
|
1033
|
+
* @memberof ParkingTicketsIndexQuery
|
|
1034
|
+
*/
|
|
1035
|
+
'type': ParkingTicketsIndexQueryTypeEnum;
|
|
1036
|
+
/**
|
|
1037
|
+
*
|
|
1038
|
+
* @type {string}
|
|
1039
|
+
* @memberof ParkingTicketsIndexQuery
|
|
1040
|
+
*/
|
|
1041
|
+
'id': string;
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
export const ParkingTicketsIndexQueryTypeEnum = {
|
|
1045
|
+
LogId: 'log_id',
|
|
1046
|
+
InviteId: 'invite_id',
|
|
1047
|
+
MemberId: 'member_id'
|
|
1048
|
+
} as const;
|
|
1049
|
+
|
|
1050
|
+
export type ParkingTicketsIndexQueryTypeEnum = typeof ParkingTicketsIndexQueryTypeEnum[keyof typeof ParkingTicketsIndexQueryTypeEnum];
|
|
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;
|
|
994
1064
|
/**
|
|
995
1065
|
*
|
|
996
1066
|
* @type {number}
|
|
997
|
-
* @memberof
|
|
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
|
|
998
1086
|
*/
|
|
999
1087
|
'total_fee': number;
|
|
1000
1088
|
/**
|
|
1001
1089
|
*
|
|
1002
1090
|
* @type {string}
|
|
1003
|
-
* @memberof
|
|
1091
|
+
* @memberof ParkingTicketsIndexResponseData
|
|
1004
1092
|
*/
|
|
1005
1093
|
'vehicle_type': string;
|
|
1006
1094
|
/**
|
|
1007
1095
|
*
|
|
1008
1096
|
* @type {string}
|
|
1009
|
-
* @memberof
|
|
1097
|
+
* @memberof ParkingTicketsIndexResponseData
|
|
1010
1098
|
*/
|
|
1011
1099
|
'ticket_number': string;
|
|
1012
1100
|
/**
|
|
1013
1101
|
*
|
|
1014
1102
|
* @type {string}
|
|
1015
|
-
* @memberof
|
|
1103
|
+
* @memberof ParkingTicketsIndexResponseData
|
|
1016
1104
|
*/
|
|
1017
1105
|
'plate_number': string;
|
|
1018
1106
|
/**
|
|
1019
1107
|
*
|
|
1020
1108
|
* @type {string}
|
|
1021
|
-
* @memberof
|
|
1109
|
+
* @memberof ParkingTicketsIndexResponseData
|
|
1022
1110
|
*/
|
|
1023
1111
|
'id': string;
|
|
1024
1112
|
}
|
|
@@ -1052,7 +1140,7 @@ export interface PassConsentResponse {
|
|
|
1052
1140
|
* @type {string}
|
|
1053
1141
|
* @memberof PassConsentResponse
|
|
1054
1142
|
*/
|
|
1055
|
-
'
|
|
1143
|
+
'uid': string | null;
|
|
1056
1144
|
/**
|
|
1057
1145
|
*
|
|
1058
1146
|
* @type {string}
|
|
@@ -1070,7 +1158,7 @@ export interface PassConsentResponse {
|
|
|
1070
1158
|
* @type {string}
|
|
1071
1159
|
* @memberof PassConsentResponse
|
|
1072
1160
|
*/
|
|
1073
|
-
'
|
|
1161
|
+
'status': PassConsentResponseStatusEnum;
|
|
1074
1162
|
/**
|
|
1075
1163
|
*
|
|
1076
1164
|
* @type {string}
|
|
@@ -1164,6 +1252,12 @@ export interface PassData {
|
|
|
1164
1252
|
* @memberof PassData
|
|
1165
1253
|
*/
|
|
1166
1254
|
'visitor_id': string;
|
|
1255
|
+
/**
|
|
1256
|
+
*
|
|
1257
|
+
* @type {boolean}
|
|
1258
|
+
* @memberof PassData
|
|
1259
|
+
*/
|
|
1260
|
+
'consent': boolean | null;
|
|
1167
1261
|
/**
|
|
1168
1262
|
*
|
|
1169
1263
|
* @type {string}
|
|
@@ -1879,16 +1973,16 @@ export interface VisitorSchedule {
|
|
|
1879
1973
|
'floor_id': string;
|
|
1880
1974
|
/**
|
|
1881
1975
|
*
|
|
1882
|
-
* @type {
|
|
1976
|
+
* @type {VisitorScheduleFrom}
|
|
1883
1977
|
* @memberof VisitorSchedule
|
|
1884
1978
|
*/
|
|
1885
|
-
'from':
|
|
1979
|
+
'from': VisitorScheduleFrom;
|
|
1886
1980
|
/**
|
|
1887
1981
|
*
|
|
1888
|
-
* @type {
|
|
1982
|
+
* @type {VisitorScheduleFrom}
|
|
1889
1983
|
* @memberof VisitorSchedule
|
|
1890
1984
|
*/
|
|
1891
|
-
'to':
|
|
1985
|
+
'to': VisitorScheduleFrom;
|
|
1892
1986
|
/**
|
|
1893
1987
|
*
|
|
1894
1988
|
* @type {object}
|
|
@@ -1896,6 +1990,13 @@ export interface VisitorSchedule {
|
|
|
1896
1990
|
*/
|
|
1897
1991
|
'repetition'?: object;
|
|
1898
1992
|
}
|
|
1993
|
+
/**
|
|
1994
|
+
*
|
|
1995
|
+
* @export
|
|
1996
|
+
* @interface VisitorScheduleFrom
|
|
1997
|
+
*/
|
|
1998
|
+
export interface VisitorScheduleFrom {
|
|
1999
|
+
}
|
|
1899
2000
|
/**
|
|
1900
2001
|
*
|
|
1901
2002
|
* @export
|
|
@@ -1994,6 +2095,68 @@ export interface VisitorScheduleTokens {
|
|
|
1994
2095
|
*/
|
|
1995
2096
|
'updated_at'?: string;
|
|
1996
2097
|
}
|
|
2098
|
+
/**
|
|
2099
|
+
*
|
|
2100
|
+
* @export
|
|
2101
|
+
* @interface VisitorTokenData
|
|
2102
|
+
*/
|
|
2103
|
+
export interface VisitorTokenData {
|
|
2104
|
+
/**
|
|
2105
|
+
*
|
|
2106
|
+
* @type {string}
|
|
2107
|
+
* @memberof VisitorTokenData
|
|
2108
|
+
*/
|
|
2109
|
+
'id': string;
|
|
2110
|
+
/**
|
|
2111
|
+
*
|
|
2112
|
+
* @type {string}
|
|
2113
|
+
* @memberof VisitorTokenData
|
|
2114
|
+
*/
|
|
2115
|
+
'token_id': string;
|
|
2116
|
+
/**
|
|
2117
|
+
*
|
|
2118
|
+
* @type {string}
|
|
2119
|
+
* @memberof VisitorTokenData
|
|
2120
|
+
*/
|
|
2121
|
+
'expired_date': string | null;
|
|
2122
|
+
/**
|
|
2123
|
+
*
|
|
2124
|
+
* @type {string}
|
|
2125
|
+
* @memberof VisitorTokenData
|
|
2126
|
+
*/
|
|
2127
|
+
'visitor_schedule_id': string;
|
|
2128
|
+
/**
|
|
2129
|
+
*
|
|
2130
|
+
* @type {string}
|
|
2131
|
+
* @memberof VisitorTokenData
|
|
2132
|
+
*/
|
|
2133
|
+
'uid': string;
|
|
2134
|
+
/**
|
|
2135
|
+
*
|
|
2136
|
+
* @type {string}
|
|
2137
|
+
* @memberof VisitorTokenData
|
|
2138
|
+
*/
|
|
2139
|
+
'created_at': string;
|
|
2140
|
+
/**
|
|
2141
|
+
*
|
|
2142
|
+
* @type {string}
|
|
2143
|
+
* @memberof VisitorTokenData
|
|
2144
|
+
*/
|
|
2145
|
+
'updated_at': string;
|
|
2146
|
+
}
|
|
2147
|
+
/**
|
|
2148
|
+
*
|
|
2149
|
+
* @export
|
|
2150
|
+
* @interface VisitorTokensIndexQuery
|
|
2151
|
+
*/
|
|
2152
|
+
export interface VisitorTokensIndexQuery {
|
|
2153
|
+
/**
|
|
2154
|
+
*
|
|
2155
|
+
* @type {string}
|
|
2156
|
+
* @memberof VisitorTokensIndexQuery
|
|
2157
|
+
*/
|
|
2158
|
+
'token_id'?: string;
|
|
2159
|
+
}
|
|
1997
2160
|
/**
|
|
1998
2161
|
*
|
|
1999
2162
|
* @export
|
|
@@ -2244,26 +2407,6 @@ export interface WrappedResponseFetchParkingResultData {
|
|
|
2244
2407
|
*/
|
|
2245
2408
|
'error': Array<SyncResultSyncJobErrorInner>;
|
|
2246
2409
|
}
|
|
2247
|
-
/**
|
|
2248
|
-
*
|
|
2249
|
-
* @export
|
|
2250
|
-
* @interface WrappedResponseFindMemberResultArray
|
|
2251
|
-
*/
|
|
2252
|
-
export interface WrappedResponseFindMemberResultArray {
|
|
2253
|
-
/**
|
|
2254
|
-
*
|
|
2255
|
-
* @type {WrappedResponseFindMemberResultArrayData}
|
|
2256
|
-
* @memberof WrappedResponseFindMemberResultArray
|
|
2257
|
-
*/
|
|
2258
|
-
'data': WrappedResponseFindMemberResultArrayData | null;
|
|
2259
|
-
}
|
|
2260
|
-
/**
|
|
2261
|
-
*
|
|
2262
|
-
* @export
|
|
2263
|
-
* @interface WrappedResponseFindMemberResultArrayData
|
|
2264
|
-
*/
|
|
2265
|
-
export interface WrappedResponseFindMemberResultArrayData {
|
|
2266
|
-
}
|
|
2267
2410
|
/**
|
|
2268
2411
|
*
|
|
2269
2412
|
* @export
|
|
@@ -2287,82 +2430,35 @@ export interface WrappedResponseLocationIndexResponseData {
|
|
|
2287
2430
|
/**
|
|
2288
2431
|
*
|
|
2289
2432
|
* @export
|
|
2290
|
-
* @interface
|
|
2433
|
+
* @interface WrappedResponseMemberIndexInterfaceArrayOrNull
|
|
2291
2434
|
*/
|
|
2292
|
-
export interface
|
|
2435
|
+
export interface WrappedResponseMemberIndexInterfaceArrayOrNull {
|
|
2293
2436
|
/**
|
|
2294
2437
|
*
|
|
2295
|
-
* @type {
|
|
2296
|
-
* @memberof
|
|
2438
|
+
* @type {WrappedResponseMemberIndexInterfaceArrayOrNullData}
|
|
2439
|
+
* @memberof WrappedResponseMemberIndexInterfaceArrayOrNull
|
|
2297
2440
|
*/
|
|
2298
|
-
'data':
|
|
2441
|
+
'data': WrappedResponseMemberIndexInterfaceArrayOrNullData | null;
|
|
2299
2442
|
}
|
|
2300
2443
|
/**
|
|
2301
2444
|
*
|
|
2302
2445
|
* @export
|
|
2303
|
-
* @interface
|
|
2446
|
+
* @interface WrappedResponseMemberIndexInterfaceArrayOrNullData
|
|
2304
2447
|
*/
|
|
2305
|
-
export interface
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
*
|
|
2314
|
-
* @type {string}
|
|
2315
|
-
* @memberof WrappedResponseMembersShowResponseData
|
|
2316
|
-
*/
|
|
2317
|
-
'uid': string;
|
|
2318
|
-
/**
|
|
2319
|
-
*
|
|
2320
|
-
* @type {JsonValue}
|
|
2321
|
-
* @memberof WrappedResponseMembersShowResponseData
|
|
2322
|
-
*/
|
|
2323
|
-
'metadata': JsonValue | null;
|
|
2324
|
-
/**
|
|
2325
|
-
*
|
|
2326
|
-
* @type {string}
|
|
2327
|
-
* @memberof WrappedResponseMembersShowResponseData
|
|
2328
|
-
*/
|
|
2329
|
-
'defaultFloor': string | null;
|
|
2330
|
-
/**
|
|
2331
|
-
*
|
|
2332
|
-
* @type {string}
|
|
2333
|
-
* @memberof WrappedResponseMembersShowResponseData
|
|
2334
|
-
*/
|
|
2335
|
-
'account_id': string | null;
|
|
2336
|
-
/**
|
|
2337
|
-
*
|
|
2338
|
-
* @type {string}
|
|
2339
|
-
* @memberof WrappedResponseMembersShowResponseData
|
|
2340
|
-
*/
|
|
2341
|
-
'created_at': string;
|
|
2342
|
-
/**
|
|
2343
|
-
*
|
|
2344
|
-
* @type {string}
|
|
2345
|
-
* @memberof WrappedResponseMembersShowResponseData
|
|
2346
|
-
*/
|
|
2347
|
-
'updated_at': string;
|
|
2348
|
-
/**
|
|
2349
|
-
*
|
|
2350
|
-
* @type {Array<PassData>}
|
|
2351
|
-
* @memberof WrappedResponseMembersShowResponseData
|
|
2352
|
-
*/
|
|
2353
|
-
'passes': Array<PassData>;
|
|
2448
|
+
export interface WrappedResponseMemberIndexInterfaceArrayOrNullData {
|
|
2449
|
+
}
|
|
2450
|
+
/**
|
|
2451
|
+
*
|
|
2452
|
+
* @export
|
|
2453
|
+
* @interface WrappedResponseMembersShowResponseOrNull
|
|
2454
|
+
*/
|
|
2455
|
+
export interface WrappedResponseMembersShowResponseOrNull {
|
|
2354
2456
|
/**
|
|
2355
2457
|
*
|
|
2356
|
-
* @type {Array<
|
|
2357
|
-
* @memberof
|
|
2458
|
+
* @type {Array<MembersShowResponse>}
|
|
2459
|
+
* @memberof WrappedResponseMembersShowResponseOrNull
|
|
2358
2460
|
*/
|
|
2359
|
-
'
|
|
2360
|
-
/**
|
|
2361
|
-
*
|
|
2362
|
-
* @type {boolean}
|
|
2363
|
-
* @memberof WrappedResponseMembersShowResponseData
|
|
2364
|
-
*/
|
|
2365
|
-
'passed_turnstile': boolean;
|
|
2461
|
+
'data': Array<MembersShowResponse> | null;
|
|
2366
2462
|
}
|
|
2367
2463
|
/**
|
|
2368
2464
|
*
|
|
@@ -2427,100 +2523,148 @@ export interface WrappedResponseParkingRedemptionRateResultArrayData {
|
|
|
2427
2523
|
/**
|
|
2428
2524
|
*
|
|
2429
2525
|
* @export
|
|
2430
|
-
* @interface
|
|
2526
|
+
* @interface WrappedResponseParkingTicketData
|
|
2431
2527
|
*/
|
|
2432
|
-
export interface
|
|
2528
|
+
export interface WrappedResponseParkingTicketData {
|
|
2433
2529
|
/**
|
|
2434
2530
|
*
|
|
2435
|
-
* @type {
|
|
2436
|
-
* @memberof
|
|
2531
|
+
* @type {WrappedResponseParkingTicketDataData}
|
|
2532
|
+
* @memberof WrappedResponseParkingTicketData
|
|
2437
2533
|
*/
|
|
2438
|
-
'data':
|
|
2534
|
+
'data': WrappedResponseParkingTicketDataData | null;
|
|
2439
2535
|
}
|
|
2440
2536
|
/**
|
|
2441
2537
|
*
|
|
2442
2538
|
* @export
|
|
2443
|
-
* @interface
|
|
2539
|
+
* @interface WrappedResponseParkingTicketDataData
|
|
2444
2540
|
*/
|
|
2445
|
-
export interface
|
|
2541
|
+
export interface WrappedResponseParkingTicketDataData {
|
|
2542
|
+
/**
|
|
2543
|
+
*
|
|
2544
|
+
* @type {number}
|
|
2545
|
+
* @memberof WrappedResponseParkingTicketDataData
|
|
2546
|
+
*/
|
|
2547
|
+
'vehicle_type_id': number;
|
|
2548
|
+
/**
|
|
2549
|
+
*
|
|
2550
|
+
* @type {number}
|
|
2551
|
+
* @memberof WrappedResponseParkingTicketDataData
|
|
2552
|
+
*/
|
|
2553
|
+
'member_type_id': number;
|
|
2446
2554
|
/**
|
|
2447
2555
|
*
|
|
2448
|
-
* @type {
|
|
2449
|
-
* @memberof
|
|
2556
|
+
* @type {RateDetail}
|
|
2557
|
+
* @memberof WrappedResponseParkingTicketDataData
|
|
2450
2558
|
*/
|
|
2451
|
-
'
|
|
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;
|
|
2452
2596
|
}
|
|
2453
2597
|
/**
|
|
2454
2598
|
*
|
|
2455
2599
|
* @export
|
|
2456
|
-
* @interface
|
|
2600
|
+
* @interface WrappedResponseParkingTicketsIndexResponseData
|
|
2457
2601
|
*/
|
|
2458
|
-
export interface
|
|
2602
|
+
export interface WrappedResponseParkingTicketsIndexResponseData {
|
|
2603
|
+
/**
|
|
2604
|
+
*
|
|
2605
|
+
* @type {WrappedResponseParkingTicketsIndexResponseDataData}
|
|
2606
|
+
* @memberof WrappedResponseParkingTicketsIndexResponseData
|
|
2607
|
+
*/
|
|
2608
|
+
'data': WrappedResponseParkingTicketsIndexResponseDataData | null;
|
|
2459
2609
|
}
|
|
2460
2610
|
/**
|
|
2461
2611
|
*
|
|
2462
2612
|
* @export
|
|
2463
|
-
* @interface
|
|
2613
|
+
* @interface WrappedResponseParkingTicketsIndexResponseDataData
|
|
2464
2614
|
*/
|
|
2465
|
-
export interface
|
|
2615
|
+
export interface WrappedResponseParkingTicketsIndexResponseDataData {
|
|
2466
2616
|
/**
|
|
2467
2617
|
*
|
|
2468
2618
|
* @type {number}
|
|
2469
|
-
* @memberof
|
|
2619
|
+
* @memberof WrappedResponseParkingTicketsIndexResponseDataData
|
|
2470
2620
|
*/
|
|
2471
2621
|
'vehicle_type_id': number;
|
|
2472
2622
|
/**
|
|
2473
2623
|
*
|
|
2474
2624
|
* @type {number}
|
|
2475
|
-
* @memberof
|
|
2625
|
+
* @memberof WrappedResponseParkingTicketsIndexResponseDataData
|
|
2476
2626
|
*/
|
|
2477
2627
|
'member_type_id': number;
|
|
2478
2628
|
/**
|
|
2479
2629
|
*
|
|
2480
2630
|
* @type {RateDetail}
|
|
2481
|
-
* @memberof
|
|
2631
|
+
* @memberof WrappedResponseParkingTicketsIndexResponseDataData
|
|
2482
2632
|
*/
|
|
2483
2633
|
'rate_detail': RateDetail;
|
|
2484
2634
|
/**
|
|
2485
2635
|
*
|
|
2486
2636
|
* @type {string}
|
|
2487
|
-
* @memberof
|
|
2637
|
+
* @memberof WrappedResponseParkingTicketsIndexResponseDataData
|
|
2488
2638
|
*/
|
|
2489
2639
|
'parked_at': string;
|
|
2490
|
-
/**
|
|
2491
|
-
*
|
|
2492
|
-
* @type {string}
|
|
2493
|
-
* @memberof WrappedResponseParkingTicketResultData
|
|
2494
|
-
*/
|
|
2495
|
-
'member_id': string;
|
|
2496
2640
|
/**
|
|
2497
2641
|
*
|
|
2498
2642
|
* @type {number}
|
|
2499
|
-
* @memberof
|
|
2643
|
+
* @memberof WrappedResponseParkingTicketsIndexResponseDataData
|
|
2500
2644
|
*/
|
|
2501
2645
|
'total_fee': number;
|
|
2502
2646
|
/**
|
|
2503
2647
|
*
|
|
2504
2648
|
* @type {string}
|
|
2505
|
-
* @memberof
|
|
2649
|
+
* @memberof WrappedResponseParkingTicketsIndexResponseDataData
|
|
2506
2650
|
*/
|
|
2507
2651
|
'vehicle_type': string;
|
|
2508
2652
|
/**
|
|
2509
2653
|
*
|
|
2510
2654
|
* @type {string}
|
|
2511
|
-
* @memberof
|
|
2655
|
+
* @memberof WrappedResponseParkingTicketsIndexResponseDataData
|
|
2512
2656
|
*/
|
|
2513
2657
|
'ticket_number': string;
|
|
2514
2658
|
/**
|
|
2515
2659
|
*
|
|
2516
2660
|
* @type {string}
|
|
2517
|
-
* @memberof
|
|
2661
|
+
* @memberof WrappedResponseParkingTicketsIndexResponseDataData
|
|
2518
2662
|
*/
|
|
2519
2663
|
'plate_number': string;
|
|
2520
2664
|
/**
|
|
2521
2665
|
*
|
|
2522
2666
|
* @type {string}
|
|
2523
|
-
* @memberof
|
|
2667
|
+
* @memberof WrappedResponseParkingTicketsIndexResponseDataData
|
|
2524
2668
|
*/
|
|
2525
2669
|
'id': string;
|
|
2526
2670
|
}
|
|
@@ -2554,7 +2698,7 @@ export interface WrappedResponsePassConsentResponseData {
|
|
|
2554
2698
|
* @type {string}
|
|
2555
2699
|
* @memberof WrappedResponsePassConsentResponseData
|
|
2556
2700
|
*/
|
|
2557
|
-
'
|
|
2701
|
+
'uid': string | null;
|
|
2558
2702
|
/**
|
|
2559
2703
|
*
|
|
2560
2704
|
* @type {string}
|
|
@@ -2572,7 +2716,7 @@ export interface WrappedResponsePassConsentResponseData {
|
|
|
2572
2716
|
* @type {string}
|
|
2573
2717
|
* @memberof WrappedResponsePassConsentResponseData
|
|
2574
2718
|
*/
|
|
2575
|
-
'
|
|
2719
|
+
'status': WrappedResponsePassConsentResponseDataStatusEnum;
|
|
2576
2720
|
/**
|
|
2577
2721
|
*
|
|
2578
2722
|
* @type {string}
|
|
@@ -2731,6 +2875,26 @@ export interface WrappedResponseUpdateMemberResponseData {
|
|
|
2731
2875
|
*/
|
|
2732
2876
|
'result': boolean | null;
|
|
2733
2877
|
}
|
|
2878
|
+
/**
|
|
2879
|
+
*
|
|
2880
|
+
* @export
|
|
2881
|
+
* @interface WrappedResponseVisitorTokensIndexResponseData
|
|
2882
|
+
*/
|
|
2883
|
+
export interface WrappedResponseVisitorTokensIndexResponseData {
|
|
2884
|
+
/**
|
|
2885
|
+
*
|
|
2886
|
+
* @type {WrappedResponseVisitorTokensIndexResponseDataData}
|
|
2887
|
+
* @memberof WrappedResponseVisitorTokensIndexResponseData
|
|
2888
|
+
*/
|
|
2889
|
+
'data': WrappedResponseVisitorTokensIndexResponseDataData | null;
|
|
2890
|
+
}
|
|
2891
|
+
/**
|
|
2892
|
+
*
|
|
2893
|
+
* @export
|
|
2894
|
+
* @interface WrappedResponseVisitorTokensIndexResponseDataData
|
|
2895
|
+
*/
|
|
2896
|
+
export interface WrappedResponseVisitorTokensIndexResponseDataData {
|
|
2897
|
+
}
|
|
2734
2898
|
|
|
2735
2899
|
/**
|
|
2736
2900
|
* DefaultApi - axios parameter creator
|
|
@@ -3197,15 +3361,17 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3197
3361
|
},
|
|
3198
3362
|
/**
|
|
3199
3363
|
*
|
|
3200
|
-
* @param {
|
|
3364
|
+
* @param {ParkingTicketsIndexTypeEnum} type
|
|
3365
|
+
* @param {string} id
|
|
3201
3366
|
* @param {*} [options] Override http request option.
|
|
3202
3367
|
* @throws {RequiredError}
|
|
3203
3368
|
*/
|
|
3204
|
-
parkingTicketsIndex: async (
|
|
3205
|
-
// verify required parameter '
|
|
3206
|
-
assertParamExists('parkingTicketsIndex', '
|
|
3207
|
-
|
|
3208
|
-
|
|
3369
|
+
parkingTicketsIndex: async (type: ParkingTicketsIndexTypeEnum, id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3370
|
+
// verify required parameter 'type' is not null or undefined
|
|
3371
|
+
assertParamExists('parkingTicketsIndex', 'type', type)
|
|
3372
|
+
// verify required parameter 'id' is not null or undefined
|
|
3373
|
+
assertParamExists('parkingTicketsIndex', 'id', id)
|
|
3374
|
+
const localVarPath = `/parking_tickets`;
|
|
3209
3375
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3210
3376
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3211
3377
|
let baseOptions;
|
|
@@ -3217,6 +3383,14 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3217
3383
|
const localVarHeaderParameter = {} as any;
|
|
3218
3384
|
const localVarQueryParameter = {} as any;
|
|
3219
3385
|
|
|
3386
|
+
if (type !== undefined) {
|
|
3387
|
+
localVarQueryParameter['type'] = type;
|
|
3388
|
+
}
|
|
3389
|
+
|
|
3390
|
+
if (id !== undefined) {
|
|
3391
|
+
localVarQueryParameter['id'] = id;
|
|
3392
|
+
}
|
|
3393
|
+
|
|
3220
3394
|
|
|
3221
3395
|
|
|
3222
3396
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -3383,6 +3557,40 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3383
3557
|
options: localVarRequestOptions,
|
|
3384
3558
|
};
|
|
3385
3559
|
},
|
|
3560
|
+
/**
|
|
3561
|
+
*
|
|
3562
|
+
* @param {string} [tokenId]
|
|
3563
|
+
* @param {*} [options] Override http request option.
|
|
3564
|
+
* @throws {RequiredError}
|
|
3565
|
+
*/
|
|
3566
|
+
visitorTokensIndex: async (tokenId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3567
|
+
const localVarPath = `/visitor_tokens`;
|
|
3568
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3569
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3570
|
+
let baseOptions;
|
|
3571
|
+
if (configuration) {
|
|
3572
|
+
baseOptions = configuration.baseOptions;
|
|
3573
|
+
}
|
|
3574
|
+
|
|
3575
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3576
|
+
const localVarHeaderParameter = {} as any;
|
|
3577
|
+
const localVarQueryParameter = {} as any;
|
|
3578
|
+
|
|
3579
|
+
if (tokenId !== undefined) {
|
|
3580
|
+
localVarQueryParameter['token_id'] = tokenId;
|
|
3581
|
+
}
|
|
3582
|
+
|
|
3583
|
+
|
|
3584
|
+
|
|
3585
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3586
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3587
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3588
|
+
|
|
3589
|
+
return {
|
|
3590
|
+
url: toPathString(localVarUrlObj),
|
|
3591
|
+
options: localVarRequestOptions,
|
|
3592
|
+
};
|
|
3593
|
+
},
|
|
3386
3594
|
/**
|
|
3387
3595
|
*
|
|
3388
3596
|
* @param {CreateVisitorBody} createVisitorBody
|
|
@@ -3576,7 +3784,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3576
3784
|
* @param {*} [options] Override http request option.
|
|
3577
3785
|
* @throws {RequiredError}
|
|
3578
3786
|
*/
|
|
3579
|
-
async membersIndex(identifier?: string, accountId?: string, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3787
|
+
async membersIndex(identifier?: string, accountId?: string, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseMemberIndexInterfaceArrayOrNull>> {
|
|
3580
3788
|
const localVarAxiosArgs = await localVarAxiosParamCreator.membersIndex(identifier, accountId, xAccountId, options);
|
|
3581
3789
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3582
3790
|
},
|
|
@@ -3587,7 +3795,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3587
3795
|
* @param {*} [options] Override http request option.
|
|
3588
3796
|
* @throws {RequiredError}
|
|
3589
3797
|
*/
|
|
3590
|
-
async membersShow(id: string, locationId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3798
|
+
async membersShow(id: string, locationId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseMembersShowResponseOrNull>> {
|
|
3591
3799
|
const localVarAxiosArgs = await localVarAxiosParamCreator.membersShow(id, locationId, options);
|
|
3592
3800
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3593
3801
|
},
|
|
@@ -3625,12 +3833,13 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3625
3833
|
},
|
|
3626
3834
|
/**
|
|
3627
3835
|
*
|
|
3628
|
-
* @param {
|
|
3836
|
+
* @param {ParkingTicketsIndexTypeEnum} type
|
|
3837
|
+
* @param {string} id
|
|
3629
3838
|
* @param {*} [options] Override http request option.
|
|
3630
3839
|
* @throws {RequiredError}
|
|
3631
3840
|
*/
|
|
3632
|
-
async parkingTicketsIndex(
|
|
3633
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingTicketsIndex(
|
|
3841
|
+
async parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketsIndexResponseData>> {
|
|
3842
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingTicketsIndex(type, id, options);
|
|
3634
3843
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3635
3844
|
},
|
|
3636
3845
|
/**
|
|
@@ -3642,7 +3851,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3642
3851
|
* @param {*} [options] Override http request option.
|
|
3643
3852
|
* @throws {RequiredError}
|
|
3644
3853
|
*/
|
|
3645
|
-
async parkingTicketsRedeem(memberId: string, logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3854
|
+
async parkingTicketsRedeem(memberId: string, logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketData>> {
|
|
3646
3855
|
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingTicketsRedeem(memberId, logId, parkingTicketsRedeemBody, xAccountId, options);
|
|
3647
3856
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3648
3857
|
},
|
|
@@ -3677,6 +3886,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3677
3886
|
const localVarAxiosArgs = await localVarAxiosParamCreator.sync(syncBody, options);
|
|
3678
3887
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3679
3888
|
},
|
|
3889
|
+
/**
|
|
3890
|
+
*
|
|
3891
|
+
* @param {string} [tokenId]
|
|
3892
|
+
* @param {*} [options] Override http request option.
|
|
3893
|
+
* @throws {RequiredError}
|
|
3894
|
+
*/
|
|
3895
|
+
async visitorTokensIndex(tokenId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseVisitorTokensIndexResponseData>> {
|
|
3896
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.visitorTokensIndex(tokenId, options);
|
|
3897
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3898
|
+
},
|
|
3680
3899
|
/**
|
|
3681
3900
|
*
|
|
3682
3901
|
* @param {CreateVisitorBody} createVisitorBody
|
|
@@ -3792,7 +4011,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3792
4011
|
* @param {*} [options] Override http request option.
|
|
3793
4012
|
* @throws {RequiredError}
|
|
3794
4013
|
*/
|
|
3795
|
-
membersIndex(identifier?: string, accountId?: string, xAccountId?: string, options?: any): AxiosPromise<
|
|
4014
|
+
membersIndex(identifier?: string, accountId?: string, xAccountId?: string, options?: any): AxiosPromise<WrappedResponseMemberIndexInterfaceArrayOrNull> {
|
|
3796
4015
|
return localVarFp.membersIndex(identifier, accountId, xAccountId, options).then((request) => request(axios, basePath));
|
|
3797
4016
|
},
|
|
3798
4017
|
/**
|
|
@@ -3802,7 +4021,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3802
4021
|
* @param {*} [options] Override http request option.
|
|
3803
4022
|
* @throws {RequiredError}
|
|
3804
4023
|
*/
|
|
3805
|
-
membersShow(id: string, locationId?: string, options?: any): AxiosPromise<
|
|
4024
|
+
membersShow(id: string, locationId?: string, options?: any): AxiosPromise<WrappedResponseMembersShowResponseOrNull> {
|
|
3806
4025
|
return localVarFp.membersShow(id, locationId, options).then((request) => request(axios, basePath));
|
|
3807
4026
|
},
|
|
3808
4027
|
/**
|
|
@@ -3836,12 +4055,13 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3836
4055
|
},
|
|
3837
4056
|
/**
|
|
3838
4057
|
*
|
|
3839
|
-
* @param {
|
|
4058
|
+
* @param {ParkingTicketsIndexTypeEnum} type
|
|
4059
|
+
* @param {string} id
|
|
3840
4060
|
* @param {*} [options] Override http request option.
|
|
3841
4061
|
* @throws {RequiredError}
|
|
3842
4062
|
*/
|
|
3843
|
-
parkingTicketsIndex(
|
|
3844
|
-
return localVarFp.parkingTicketsIndex(
|
|
4063
|
+
parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: any): AxiosPromise<WrappedResponseParkingTicketsIndexResponseData> {
|
|
4064
|
+
return localVarFp.parkingTicketsIndex(type, id, options).then((request) => request(axios, basePath));
|
|
3845
4065
|
},
|
|
3846
4066
|
/**
|
|
3847
4067
|
*
|
|
@@ -3852,7 +4072,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3852
4072
|
* @param {*} [options] Override http request option.
|
|
3853
4073
|
* @throws {RequiredError}
|
|
3854
4074
|
*/
|
|
3855
|
-
parkingTicketsRedeem(memberId: string, logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, xAccountId?: string, options?: any): AxiosPromise<
|
|
4075
|
+
parkingTicketsRedeem(memberId: string, logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, xAccountId?: string, options?: any): AxiosPromise<WrappedResponseParkingTicketData> {
|
|
3856
4076
|
return localVarFp.parkingTicketsRedeem(memberId, logId, parkingTicketsRedeemBody, xAccountId, options).then((request) => request(axios, basePath));
|
|
3857
4077
|
},
|
|
3858
4078
|
/**
|
|
@@ -3883,6 +4103,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3883
4103
|
sync(syncBody: SyncBody, options?: any): AxiosPromise<SyncResponse> {
|
|
3884
4104
|
return localVarFp.sync(syncBody, options).then((request) => request(axios, basePath));
|
|
3885
4105
|
},
|
|
4106
|
+
/**
|
|
4107
|
+
*
|
|
4108
|
+
* @param {string} [tokenId]
|
|
4109
|
+
* @param {*} [options] Override http request option.
|
|
4110
|
+
* @throws {RequiredError}
|
|
4111
|
+
*/
|
|
4112
|
+
visitorTokensIndex(tokenId?: string, options?: any): AxiosPromise<WrappedResponseVisitorTokensIndexResponseData> {
|
|
4113
|
+
return localVarFp.visitorTokensIndex(tokenId, options).then((request) => request(axios, basePath));
|
|
4114
|
+
},
|
|
3886
4115
|
/**
|
|
3887
4116
|
*
|
|
3888
4117
|
* @param {CreateVisitorBody} createVisitorBody
|
|
@@ -4063,13 +4292,14 @@ export class DefaultApi extends BaseAPI {
|
|
|
4063
4292
|
|
|
4064
4293
|
/**
|
|
4065
4294
|
*
|
|
4066
|
-
* @param {
|
|
4295
|
+
* @param {ParkingTicketsIndexTypeEnum} type
|
|
4296
|
+
* @param {string} id
|
|
4067
4297
|
* @param {*} [options] Override http request option.
|
|
4068
4298
|
* @throws {RequiredError}
|
|
4069
4299
|
* @memberof DefaultApi
|
|
4070
4300
|
*/
|
|
4071
|
-
public parkingTicketsIndex(
|
|
4072
|
-
return DefaultApiFp(this.configuration).parkingTicketsIndex(
|
|
4301
|
+
public parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig) {
|
|
4302
|
+
return DefaultApiFp(this.configuration).parkingTicketsIndex(type, id, options).then((request) => request(this.axios, this.basePath));
|
|
4073
4303
|
}
|
|
4074
4304
|
|
|
4075
4305
|
/**
|
|
@@ -4120,6 +4350,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
4120
4350
|
return DefaultApiFp(this.configuration).sync(syncBody, options).then((request) => request(this.axios, this.basePath));
|
|
4121
4351
|
}
|
|
4122
4352
|
|
|
4353
|
+
/**
|
|
4354
|
+
*
|
|
4355
|
+
* @param {string} [tokenId]
|
|
4356
|
+
* @param {*} [options] Override http request option.
|
|
4357
|
+
* @throws {RequiredError}
|
|
4358
|
+
* @memberof DefaultApi
|
|
4359
|
+
*/
|
|
4360
|
+
public visitorTokensIndex(tokenId?: string, options?: AxiosRequestConfig) {
|
|
4361
|
+
return DefaultApiFp(this.configuration).visitorTokensIndex(tokenId, options).then((request) => request(this.axios, this.basePath));
|
|
4362
|
+
}
|
|
4363
|
+
|
|
4123
4364
|
/**
|
|
4124
4365
|
*
|
|
4125
4366
|
* @param {CreateVisitorBody} createVisitorBody
|
|
@@ -4154,5 +4395,14 @@ export class DefaultApi extends BaseAPI {
|
|
|
4154
4395
|
}
|
|
4155
4396
|
}
|
|
4156
4397
|
|
|
4398
|
+
/**
|
|
4399
|
+
* @export
|
|
4400
|
+
*/
|
|
4401
|
+
export const ParkingTicketsIndexTypeEnum = {
|
|
4402
|
+
LogId: 'log_id',
|
|
4403
|
+
InviteId: 'invite_id',
|
|
4404
|
+
MemberId: 'member_id'
|
|
4405
|
+
} as const;
|
|
4406
|
+
export type ParkingTicketsIndexTypeEnum = typeof ParkingTicketsIndexTypeEnum[keyof typeof ParkingTicketsIndexTypeEnum];
|
|
4157
4407
|
|
|
4158
4408
|
|