@lemoncloud/ssocio-tenants-api 0.23.113

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/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # @lemoncloud/ssocio-tenants-api
2
+
3
+ - 관리용 서비스 API
4
+
@@ -0,0 +1,137 @@
1
+ /**
2
+ * `types.ts`
3
+ * - common types used in `/cores`
4
+ *
5
+ * @author Steve <steve@lemoncloud.io>
6
+ * @date 2022-06-21 optimized w/ `abstract-services`
7
+ * @date 2022-06-28 added `Codable` interface for general types.
8
+ *
9
+ * @copyright (C) 2022 LemonCloud Co Ltd. - All Rights Reserved.
10
+ */
11
+ import { CoreModel, SimpleSet } from 'lemon-model';
12
+ export { SimpleSet };
13
+ /**
14
+ * type `ListResult`
15
+ */
16
+ export interface ListResult<T> {
17
+ /**
18
+ * total searched count
19
+ */
20
+ total?: number;
21
+ /**
22
+ * max items count in the page
23
+ */
24
+ limit?: number;
25
+ /**
26
+ * items searched
27
+ */
28
+ list: T[];
29
+ /**
30
+ * (optional) aggr list
31
+ */
32
+ aggr?: string[];
33
+ }
34
+ /**
35
+ * type `PaginatedListResult`
36
+ */
37
+ export interface PaginatedListResult<T> extends ListResult<T> {
38
+ /**
39
+ * current page
40
+ */
41
+ page: number;
42
+ }
43
+ /**
44
+ * type `ListParam`
45
+ */
46
+ export interface ListParam {
47
+ /**
48
+ * max items count to be fetched
49
+ */
50
+ limit?: number;
51
+ /**
52
+ * (optional) sorting order
53
+ * - 'asc': older first
54
+ * - 'desc': newer first
55
+ * - string: extended sorting features
56
+ */
57
+ sort?: 'asc' | 'desc' | string;
58
+ }
59
+ /**
60
+ * type `PaginateParam`
61
+ */
62
+ export interface PaginateParam extends ListParam {
63
+ /**
64
+ * page # to fetch (0-indexed)
65
+ */
66
+ page?: number;
67
+ /**
68
+ * (optional) flag to filter by uid
69
+ */
70
+ uid?: string;
71
+ }
72
+ /**
73
+ * type `BulkUpdateBody`
74
+ */
75
+ export interface BulkUpdateBody<T> extends BulkBody<T> {
76
+ /**
77
+ * list bulk update model with id
78
+ */
79
+ list: T[];
80
+ }
81
+ /**
82
+ * body data for bulk
83
+ */
84
+ export interface BulkBody<T> {
85
+ list: T[];
86
+ }
87
+ /**
88
+ * common `View` types.
89
+ * - layout of response.
90
+ */
91
+ export interface View {
92
+ /**
93
+ * (optional) model's id
94
+ */
95
+ id?: string;
96
+ /**
97
+ * created timestamp
98
+ */
99
+ createdAt?: number;
100
+ /**
101
+ * updated timestamp
102
+ */
103
+ updatedAt?: number;
104
+ /**
105
+ * deleted timestamp
106
+ */
107
+ deletedAt?: number;
108
+ /**
109
+ * (optional) internal error.
110
+ */
111
+ error?: string;
112
+ }
113
+ /**
114
+ * common `Body` types.
115
+ * - layout of request's body.
116
+ */
117
+ export interface Body {
118
+ /**
119
+ * (optional) target model's id
120
+ */
121
+ id?: string;
122
+ }
123
+ /**
124
+ * transform model to view, or body to model.
125
+ */
126
+ export interface Transformable<MyModel extends CoreModel<string>, MyView extends View, MyBody extends Body> {
127
+ /**
128
+ * transform model to view
129
+ * - result will be response json.
130
+ */
131
+ modelAsView: (model: MyModel) => MyView;
132
+ /**
133
+ * transform request-body to model.
134
+ * - must check data types.
135
+ */
136
+ bodyToModel: (body: MyBody) => MyModel;
137
+ }
@@ -0,0 +1,267 @@
1
+ /**
2
+ * `backend-model.ts`
3
+ * - model definitions per account data
4
+ *
5
+ * @author Steve <steve@lemoncloud.io>
6
+ * @date 2022-08-29 initial version.
7
+ *
8
+ * Copyright (C) 2020 LemonCloud Co Ltd. - All Rights Reserved.
9
+ */
10
+ import { CoreModel, NextIdentityAccess } from 'lemon-model';
11
+ import { HOUSESTATUS_TEXT, TENANT_TEXT } from './backend-types';
12
+ /**
13
+ * type: model-type
14
+ * - use this type to make pkey per data.
15
+ */
16
+ export declare type ModelType = 'tenant' | 'asset' | 'contract' | 'install' | 'test' | 'mock';
17
+ /**
18
+ * type: `Model`: common model
19
+ */
20
+ export declare type Model = CoreModel<ModelType>;
21
+ /**
22
+ * type: `TenantStereo`
23
+ */
24
+ export declare type TenantStereo = 'resident' | 'owner' | 'mananger' | string;
25
+ /**
26
+ * address in site
27
+ */
28
+ export interface SiteAddress {
29
+ /** block-name (ex: 1) in address */
30
+ block?: string;
31
+ /** dong-name (ex: 505) in address */
32
+ dong?: string;
33
+ /** house-name (ex: 203) in address */
34
+ house?: string;
35
+ }
36
+ /**
37
+ * type: `TenantModel`
38
+ * - 회원가입 신청현황 관련 정보를 가짐
39
+ */
40
+ export interface TenantModel extends Model {
41
+ /** Tenant ID like `N000001` */
42
+ id?: string;
43
+ /** 거주자(tenant) 종류 (owner, manager, resident) */
44
+ stereo?: TenantStereo;
45
+ /** site-address */
46
+ addr$?: SiteAddress;
47
+ /** 회원 유형 */
48
+ role?: TENANT_TEXT;
49
+ /** 소유자명 */
50
+ name?: string;
51
+ /** 연락처 (연락처1, 연락처2) */
52
+ phones?: string[];
53
+ /** 세대 상태 */
54
+ houseStatus?: HOUSESTATUS_TEXT;
55
+ /** install id */
56
+ installId?: string;
57
+ /** 메모 */
58
+ memo?: string;
59
+ /** (optional) 소유자 모델 */
60
+ owner$?: Owner;
61
+ /** (optional) 입주민 모델 */
62
+ resident$?: Resident;
63
+ /** (optional) 관리자 모델 */
64
+ manager$?: Manager;
65
+ /** (optional) 설치코드 모델 */
66
+ install$?: InstallHead;
67
+ }
68
+ /**
69
+ * type: `Owner` (소유자)
70
+ */
71
+ export interface Owner {
72
+ /** 사업자 유형 (법인, 개인) */
73
+ ownerType?: string;
74
+ /** 소유자 실 거주 주소 */
75
+ address?: string;
76
+ /** 복수 소유 여부 */
77
+ isMulti?: number;
78
+ }
79
+ /**
80
+ * type: `Resident` (입주민)
81
+ */
82
+ export interface Resident {
83
+ /** 입주일자 */
84
+ moveInAt?: number;
85
+ /** 퇴거일자*/
86
+ leavingAt?: number;
87
+ }
88
+ /**
89
+ * type: `Manager` (관리자)
90
+ */
91
+ export interface Manager {
92
+ /** 앱 회원 상태 (임시)*/
93
+ status?: string;
94
+ }
95
+ /**
96
+ * type: `AssetModel`
97
+ * 자산에 관한 모델
98
+ */
99
+ export interface AssetModel extends Model {
100
+ id?: string;
101
+ /** stereo type (car) */
102
+ stereo?: string;
103
+ /** site-address */
104
+ addr$?: SiteAddress;
105
+ /** 소유자 회원 유형 */
106
+ role?: TENANT_TEXT;
107
+ /** 소유자 이름 */
108
+ name?: string;
109
+ /** 등록일자 */
110
+ registerAt?: number;
111
+ /** (optional) 차량 정보 */
112
+ car$?: Car;
113
+ }
114
+ /**
115
+ * type: `Car` (차량)
116
+ */
117
+ export interface Car {
118
+ /** 차량 종류 (대형차, 중형차, 소형차, 경차) */
119
+ carType?: string;
120
+ /** 차량 번호 */
121
+ carNumber?: string;
122
+ /** 모델명 */
123
+ carModel?: string;
124
+ /** 색상 */
125
+ color?: string;
126
+ /** 지정주차 구역 */
127
+ fixedParkingArea?: string;
128
+ /** EV 충전기 코드 */
129
+ chargerCode?: string;
130
+ }
131
+ /**
132
+ * `Contract` : 계약 (자산)에 관한 모델
133
+ */
134
+ export interface ContractModel extends Model {
135
+ /** Contract Id */
136
+ id?: string;
137
+ /** stereo type (rent) */
138
+ stereo?: string;
139
+ /** site-address */
140
+ addr$?: SiteAddress;
141
+ /** 소유자 ID */
142
+ ownerId?: string;
143
+ /** 소유자 이름 */
144
+ name?: string;
145
+ /** 취득일 */
146
+ getAt?: number;
147
+ /** 양도일 */
148
+ transferAt?: number;
149
+ /** 소유자 위탁여부 */
150
+ entrust?: string;
151
+ /** 최종 이사일 */
152
+ lastMoveInAt?: number;
153
+ /** 세대 상태 */
154
+ houseStatus?: HOUSESTATUS_TEXT;
155
+ /** (optional) 임대 정보 */
156
+ rent$?: Rent;
157
+ }
158
+ /**
159
+ * type: `Rent` (임대)
160
+ */
161
+ export interface Rent {
162
+ /** 계약상태 */
163
+ rentStatus?: string;
164
+ /** 계약 체결일 */
165
+ rentAt?: number;
166
+ /** 계약 기간 */
167
+ rentDuration?: number;
168
+ /** 계약자(임차인) 성명 */
169
+ tenantName?: string;
170
+ /** 계약자(임차인) 연락처 */
171
+ tenantPhone?: string;
172
+ }
173
+ /**
174
+ * type: `InstallHead`
175
+ * - common head of install
176
+ * - 주요 용도는 `join()`이 검색에서는 힘드니깐, 일부 내용을 복제해둠
177
+ * - 기준) 검색 조건에 들어가냐?
178
+ * - but) 목록에서 보여줘야할때는? --> list 에서 결합해서 쓴느걸로 (use `my_parrallel()`)
179
+ */
180
+ export interface InstallHead {
181
+ /** install-id */
182
+ id?: string;
183
+ /** 설치 일시 */
184
+ installedAt?: number;
185
+ /** 설치 코드 */
186
+ code?: string;
187
+ /** 만료 일시 */
188
+ expiredAt?: number;
189
+ }
190
+ /**
191
+ * `Install` : 설치 코드에 관한 모델
192
+ */
193
+ export interface InstallModel extends InstallHead {
194
+ /** stereo type */
195
+ stereo?: string;
196
+ /** name of model */
197
+ name?: string;
198
+ /** 전송 일자 */
199
+ sendAt?: number;
200
+ /** 신청자 */
201
+ sender?: string;
202
+ /** 수신자 자격 */
203
+ recipientRole?: TENANT_TEXT;
204
+ /** 수신자 */
205
+ recipientName?: string;
206
+ /** 수신자 연락처 */
207
+ recipientPhone?: string;
208
+ /** 수신자의 회원 전환 상태 (승인, 신청, 미신청) */
209
+ recipientStatus?: string;
210
+ }
211
+ /**
212
+ * type: `TestHead`
213
+ * - common head of test-model.
214
+ */
215
+ export interface TestHead {
216
+ /** internal reference */
217
+ _idx?: number;
218
+ /** internal date(YYYY-MM-DD) */
219
+ _date?: string;
220
+ }
221
+ /**
222
+ * `test`: internal test model.
223
+ */
224
+ export interface TestModel extends Model, TestHead {
225
+ /** name of model */
226
+ name?: string;
227
+ /** test count */
228
+ test?: number;
229
+ /**
230
+ * inner Object.
231
+ */
232
+ readonly Model?: Model;
233
+ /**
234
+ * (view) Access Infor.
235
+ */
236
+ readonly $identity?: NextIdentityAccess;
237
+ }
238
+ /**
239
+ * `mock`: internal mock model.
240
+ * - provice mocks data
241
+ */
242
+ export interface MockModel extends Model {
243
+ /** name of this model */
244
+ name?: string;
245
+ /** json encoding all data */
246
+ meta?: string;
247
+ /** support any data-types */
248
+ [key: string]: any;
249
+ }
250
+ /**
251
+ * extract field names from models
252
+ * - only fields start with lowercase, or all upper.
253
+ */
254
+ export declare const filterFields: (fields: string[], base?: string[]) => string[];
255
+ /** field names from head */
256
+ export declare const $HEAD: {
257
+ install: string[];
258
+ test: string[];
259
+ };
260
+ export declare const $FIELD: {
261
+ tenant: string[];
262
+ asset: string[];
263
+ contract: string[];
264
+ install: string[];
265
+ test: string[];
266
+ mock: string[];
267
+ };
@@ -0,0 +1,130 @@
1
+ /**
2
+ * `backend-types.ts`
3
+ * - types used in `backed-proxy`
4
+ *
5
+ * @author Steve <steve@lemoncloud.io>
6
+ * @date 2022-08-29 initial version.
7
+ *
8
+ * Copyright (C) 2022 LemonCloud Co Ltd. - All Rights Reserved.
9
+ */
10
+ import { NextIdentity } from 'lemon-model';
11
+ import { PaginateParam } from '../cores/types';
12
+ /**
13
+ * type: simple data-types
14
+ * - it should be compartible with elastic-search.
15
+ * - it should be consistancy within same key name.
16
+ */
17
+ export interface SimpleSet {
18
+ [key: string]: string | number;
19
+ }
20
+ /**
21
+ * type: `SessionToken`
22
+ * - 세션토큰(= JWT(identityToken))으로, `/reg-dev`시 액세스토큰과 함께 발급됨 (약 1일동안 유효함)
23
+ * - `backend-api`에서 조직/그룹/사용자에 맞게 재설정됨!
24
+ * - `backend-api`에서 슈퍼타입을 정의하고, 다른곳에서는 이것을 import 하여 이용함.
25
+ * - 세션토큰 검사는 `proxy.getCurrenSession()` 이용하기
26
+ */
27
+ export interface SessionToken extends NextIdentity<any> {
28
+ /**
29
+ * site-id (= <auto-seq> in `SiteModel(사이트/아파트)`)
30
+ *
31
+ * @see SiteModel
32
+ */
33
+ sid: string;
34
+ /**
35
+ * group-id (= <auto-seq> in `GroupModel(동/호)`)
36
+ * - `group`은 `user`를 물리적 구분으로 나눠서 생각해볼때 이용가능함.
37
+ *
38
+ * @see GroupModel
39
+ */
40
+ gid: string;
41
+ /**
42
+ * user-id (= <auto-seq> in `UserModel(이용자)`)
43
+ * - `account`는 인증(로그인)처리와 관련된 것으로, 특정 `user`가 이 인증을 사용하여 특정 사이트에서 역활(role) 수행을함.
44
+ *
45
+ * @see UserModel
46
+ */
47
+ uid: string;
48
+ /**
49
+ * list of roles (like `user`, `admin`, `super`)
50
+ */
51
+ roles: string[];
52
+ /**
53
+ * (optional) internal identity-id (= delegated identity)
54
+ * - `.identityId` 는 cognito 인증을 통해서, 현재 인증된 `identity-id`를 알 수 있음
55
+ * - 다만, 해당 Account가 `delegated-id`가 있을 경우, 여기에 위임된 id 가 들어감.
56
+ *
57
+ * @see NextIdentityCognito
58
+ */
59
+ iid?: string;
60
+ /** Site Extensions */
61
+ Site?: {
62
+ /** site-code */
63
+ code: string;
64
+ };
65
+ /** User Extensions */
66
+ User?: {
67
+ /** user-name */
68
+ name: string;
69
+ };
70
+ }
71
+ /**
72
+ * query param for tenants-list
73
+ */
74
+ export interface TenantListParam extends PaginateParam {
75
+ /** sort selection: (format: <field>:<asc|desc?>, ex: price, price:desc ) */
76
+ sort?: 'latest' | 'popular' | 'lowPrice' | 'highPrice';
77
+ /** filter by category-id */
78
+ categoryId?: string;
79
+ /** filter `isDisplay` condition (default true) */
80
+ display?: boolean | string;
81
+ }
82
+ /**
83
+ * lookup table to translate.
84
+ *
85
+ * view -> model 매핑
86
+ */
87
+ export declare const $LUT: {
88
+ /** 세대 상태(houseStatus) Table */
89
+ house_status: {
90
+ /** 입주예정: 소유주정보가 세대에 등록되어 있는 상태 */
91
+ plannedMoveIn: string;
92
+ /** 전출입승인: 이사예약을 신청/승인받을 수 있는 상태 */
93
+ approval: string;
94
+ /** 정상: 가입된 단지의 정보를 제공받으며 서비스를 예약, 결제 등의 행위를 할 수 있는 상태 */
95
+ normal: string;
96
+ /** 반려: 대표회원이 발송한 세대원의 "정상" 상태 "취소"상태로 변경 */
97
+ reject: string;
98
+ /** 미납: 결제가 미납인 경우 결제가 가능한 상품의 신규 예약 및 결제가 불가능*/
99
+ arrears: string;
100
+ /** 정지: 관리자가 요청 및 운영에 따라서 중지시킨 회원 */
101
+ stop: string;
102
+ /** 휴면: 1년동안 로그인 등의 사용이력이 없어 휴면상태로 전환된 경우 */
103
+ quite: string;
104
+ /** 퇴거예정: 퇴거예정으로 상태변경 시 "퇴거예정일"을 추가로 입력한다 */
105
+ leaving: string;
106
+ /** 퇴거: 단지 내 서비스 정보 노출 중단, 신규 예약 및 매출 발생이 불가한 상태 (00시 기준) */
107
+ leave: string;
108
+ };
109
+ /** 회원 유형 (role) Table */
110
+ role: {
111
+ /** 소유자 */
112
+ owner: string;
113
+ /** 세대원 */
114
+ member: string;
115
+ /** 대표회원 */
116
+ houseHolder: string;
117
+ /** 부대표회원 */
118
+ subHouseHolder: string;
119
+ /** 준회원 */
120
+ associate: string;
121
+ };
122
+ };
123
+ /**
124
+ * translate `house status`
125
+ * */
126
+ export declare type HOUSESTATUS_TEXT = keyof typeof $LUT.house_status;
127
+ /**
128
+ * translate `tenant role`
129
+ * */
130
+ export declare type TENANT_TEXT = keyof typeof $LUT.role;
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es6.d.ts","../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/lemon-model/dist/types/core-types.d.ts","../../node_modules/lemon-model/dist/types/core-storage.d.ts","../../node_modules/lemon-model/dist/types/index.d.ts","../../node_modules/lemon-model/dist/index.d.ts","../../src/cores/types.ts","../../src/service/backend-types.ts","../../node_modules/ts-transformer-keys/index.d.ts","../../src/service/backend-model.ts","../../src/view/types.ts","../../node_modules/@types/aws-lambda/handler.d.ts","../../node_modules/@types/aws-lambda/common/api-gateway.d.ts","../../node_modules/@types/aws-lambda/common/cloudfront.d.ts","../../node_modules/@types/aws-lambda/trigger/alb.d.ts","../../node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts","../../node_modules/@types/aws-lambda/trigger/api-gateway-authorizer.d.ts","../../node_modules/@types/aws-lambda/trigger/appsync-resolver.d.ts","../../node_modules/@types/aws-lambda/trigger/autoscaling.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudformation-custom-resource.d.ts","../../node_modules/@types/aws-lambda/trigger/cdk-custom-resource.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudfront-request.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudfront-response.d.ts","../../node_modules/@types/aws-lambda/trigger/eventbridge.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudwatch-events.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudwatch-logs.d.ts","../../node_modules/@types/aws-lambda/trigger/codebuild-cloudwatch-state.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-action.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-pipeline.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-stage.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/_common.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/create-auth-challenge.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-message.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-email-sender.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-sms-sender.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/define-auth-challenge.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-authentication.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-confirmation.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-authentication.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-signup.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/user-migration.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/verify-auth-challenge-response.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/index.d.ts","../../node_modules/@types/aws-lambda/trigger/connect-contact-flow.d.ts","../../node_modules/@types/aws-lambda/trigger/dynamodb-stream.d.ts","../../node_modules/@types/aws-lambda/trigger/iot.d.ts","../../node_modules/@types/aws-lambda/trigger/kinesis-firehose-transformation.d.ts","../../node_modules/@types/aws-lambda/trigger/kinesis-stream.d.ts","../../node_modules/@types/aws-lambda/trigger/lex.d.ts","../../node_modules/@types/aws-lambda/trigger/lex-v2.d.ts","../../node_modules/@types/aws-lambda/trigger/s3.d.ts","../../node_modules/@types/aws-lambda/trigger/s3-batch.d.ts","../../node_modules/@types/aws-lambda/trigger/ses.d.ts","../../node_modules/@types/aws-lambda/trigger/sns.d.ts","../../node_modules/@types/aws-lambda/trigger/sqs.d.ts","../../node_modules/@types/aws-lambda/trigger/msk.d.ts","../../node_modules/@types/aws-lambda/trigger/secretsmanager.d.ts","../../node_modules/@types/aws-lambda/trigger/s3-event-notification.d.ts","../../node_modules/@types/aws-lambda/trigger/amplify-resolver.d.ts","../../node_modules/@types/aws-lambda/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/keyv/src/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/caseless/index.d.ts","../../node_modules/@types/cookiejar/index.d.ts","../../node_modules/@types/cors/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/mime/mime.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/express/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/ioredis/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/chalk/types/index.d.ts","../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/difflines.d.ts","../../node_modules/jest-diff/build/printdiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/json-buffer/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/jsonwebtoken/index.d.ts","../../node_modules/@types/keyv/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/request/index.d.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/superagent/index.d.ts","../../node_modules/@types/supertest/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"66b9118e28714c00048e95323dff0b99dae33315120971de45305ea62ad29c1d","f51f5f5dd0696f2e268662fcd88ce359b06e830b73182af96761a44ece51181b","e7390687ca5063ac5852f889935dedd1141bbd2539888ef82eab8e7020b7b3ee","439c019c08af4cb91775716758af2c9a21e27cc32ff70e0c6070069339540c81",{"version":"1110038a7c447232ce1e1c39396ad931294038171ad85275a02c93ea2ff4d59c","signature":"d26a96f5c904ebc038a3f609f9e8161924937e818332a63af46bd65d40ed6088"},{"version":"5cc7bf9f6ff92957966b2f6bca0cb6ade6efa3b2625f9cb944339f58f4a4b2ad","signature":"7f3a470733f6ae06b37528cc4190d4311f9e3e3f9c63ab5c77d60dd0ce4ac43f"},"2f3d01a489a66f328ca802e41c7c8374e7f73ed3ff4e6a54a540410c99821644",{"version":"6ab85c1ef93fdf86cddc4bd52607d25641fb8d17a40fe935cd7e57ac700fa16f","signature":"d2132ca22c61ba9171a93cdbe3e509c157e57db3245008bb7b0dfaff06c2571a"},{"version":"4965a8cd6bbe1c1d550e2203c0675ea9f4ea3aa680110fc4a8bfd2269c33bafd","signature":"bcd4e0b63a5e816eebd74e20411019c0f1de1213be81174a0c0657a27cbb9b72"},"6d1675231de1aa366144f91852cddb2eb3cad8d9f2e7e48f4e5e0031e7046ddc","bc9d1a62f3ab938e3ac66b85363c8f1ec1c5b9cf32e5d393f7b14209b4811c48","429d2e0d28ec8be13ebc5e0b389f34e0622d435c88ec5efe408c4d82e17f37c9","6bb7cbba94c9a5c43add2e17d93d04da08e51a69d412e9d1afaf130f4624e91a","f6f23892b68818f45d4863d7009401085ec48c699c9a65a8786ba9ad6b552628","7305cccc01f462295be680ae8955284e7182e34102256e2af2d21ec924bc87a0","bd6cd4ae039cc123778bd665d1711665415b18edde58fdc8ca3610e5ff84182a","46b3f5cf0c95f16651fa2582446bb9b35a28421a56097e9e853e00ebaeb9c610","004678b644cdb4615ac6cda7b2d285d0eb850e55eb53da47e8c1325cba362bb9","4205ae686b67d9dea3bff36ff28888ebfd278ca09ce45b66918a6420b26a09cc","d29a230261d709ce237307b4eadf9f0b55b00eee6ce3b47f389bf348614c132c","0dad26ffdf5cae28cb67ac9c0ce06c7ec732001b01046f47eeaa4ee5a3655f5d","ad5939fcb0c3db887f55a55284a9d7672c1a6f747d083751b614b2f0ed34b611","4194cc6e823aa830a71c733b18d0de1c29323b102c6460e9fe835ac5f8b8a9ba","4ff4add7b8cf26df217f2c883292778205847aefb0fd2aee64f5a229d0ffd399","420878898a89ebc3515fb87bbfd6662f0432fe918652669414b584c2540e3bc8","c24e2fddbca24f0b63d0b82e5aca4da50c8c591566711be7260c900c97d7c9f2","f4922a1814e47fdb4d93c2cf27968ea30c174e04d4a3374774046a9307dbbaf0","bfff1bb349423cc262a88775d8233f7ea2b87d66ba1f0631eec0c30bea097dd5","a177f76c040e29b9c31adfc93225c273828ff784b592bf56c6131771e624f628","06236dfec90a14b0c3db8249831069ea3f90b004d73d496a559a4466e5a344a4","19c08e1ce502625c711682ec21495ca47ca893b21f346621e7a175bcd677335f","5d36c521b96ba0d4b98919ca833c8cc62f1f225d40467122ba561a2c5553ab80","b8b71558bba1cdf2dff3d7796bd8e3383daa5f1278be5144ff0b0ac7538fa264","2b3046d66390c6447811adc06be3b085a7f396c53a7a4670d11159672d5aeb15","84d9e9735b2d0d9b1f5b58666d849b7d9a730749dd531e55bd17cb5c7e6e21eb","0aaa0e1d10349bc24bdee9dd2bca420741f1deb7028c7a17a2b9d5df2f5d9d63","dd289cb306f619c7844ff82fec02badc571c6ed66c7da72815239647febee137","754fb3e7737eb1feb7fcf4902e925cae8c050dd134819deb25ae3ed6843b7dd1","f05c1be0c5bf0e983941f9f75a43297b04730393d0bdabc687066d8b1d6b8d16","a97972e1e9b4bc5d31380c695b7a827c014bd042ec17369bc4d920a1fab7d47b","b5740b8d4723dcdc408195835a52cc83501b1f44399e3104eb4677b082c8973e","feb17c6ab54766cb447ed7efa1da2eacfe289d024da02eb0171fc072704f9be7","dd50796be484a4f4f3733dd67d0a829d93c5b6dd678552d40683f89e6767706c","4e50d35ec611c6d56d740d374bb78120280de9c077b3ecf6c8c6297a7058d5ea","b12effb4e275d1e3516506c030f4046283cc7a4d7e2b4e316b4397446444aa22","cdbff147b3bd958f7be6f4c621e8b29c5c17226ba8aa506e5d01d3446ee6ff21","66738976a7aa2d5fb2770a1b689f8bc643af958f836b7bc08e412d4092de3ab9","0751ea9602b019c630c160aa81c6d59495f0119123d171f2351c9907cd3440d7","33107c5cb9509a44748ca6de5159993a4366fdcea6828ca5d3241b216d5b0627","3809c600654ed5b6bdce015f7110d40a75e402e59de80c12b622b925f44a8599","146577c9761cc6015ae035a1407d4ada5f2232453acb82e7998daabe9f3a23d0","cec3cf5159f51f7725d5b06b631996fef4863d8f5c237b8a3f9a18f5570c8286","47ffa0bd85219fa1551c7cb128e3e1b44f980c9eb5baee26b0164db191ab917b","bb7de140ec25957e693e6b48de186b7229653d5c683fe7bbd1d24bcc66a86a15","162994e0ad049c7c8aa5f99a7f1e556f700d80452441a6ff0e4648cfcfaebbb8","fb8aebad66729980040dcf5ec38b723a4abb2336db77e51b1d642f73a81291b4","5b6df0d20c824e4c66b791ec39d10721af9954794231ad9e0f73889b38e83858","35c3631308ca05a1cac7a31b6a3d2a68442cdd2315adfb476d0461dea2cac030","256d2eed83c1e05fc9b18694f07f7b74da266bed410c6d392e3236ab36cdd0da","f3711e90a75e13ce96795f7c02287dd7ef76905998cb5804a69795f863b7d776","a0c6f9338d39354a276bb9431c19e23d6d03a72cc868e41438a9a9e1ab80a2b8","e432b56911b58550616fc4d54c1606f65fe98c74875b81d74601f5f965767c60","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","a46a2e69d12afe63876ec1e58d70e5dbee6d3e74132f4468f570c3d69f809f1c","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","fc72135da24040641388fb5f2c2a7a99aa5b962c0fa125bd96fabeec63dd2e63","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"3e4624c306340ad303cc536a07004e81336c3f088308a9e4a9f4c957a3cda2fd","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","025fc13211ed47d2798269017af3ec869122a050d5431a6ad3c1997900e65c58","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"249a2b90439cdfd51709539fbfa4dfe0791cbae6efce1e9b327ba8f8cd703f49","affectsGlobalScope":true},"40b991dc3365179e1365643589e168d7ea0588b4dd5bbb3a974ffefa7cb05e7f","bf057bb805c5e1c0e795ac7c759d40ebbe0e9894df9be3413bbdd8d1a2fc229e","74f2bb83d1ccf390f48681be57a30c09e85b4c7a801267746e382b2386fc667e","7bac475dcdd9f7e4e9da934d32c305bc889c4ce3c8ac0ef45a93a8d670fff607","5d357e7965026197a3152fa4e990fa7a4cbaf1578a17dff920ff1a71a325e198","8acf99b1c8682276a63ea5bb68433782715892726b97e4604a415e4e56bce41c",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"3b145a2351f5cf16abf999c8d5f4481c74dffdc54ec1e9a89992e2622e1226c5","a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","d270fd4b565eda11a0a737c181892316b7a1ace06c7988d0246219c3df11db06","70caef0271088abc5f5ae7ff6d84421d35bb192b690fbaa1b2ecf2b0ef01deb6",{"version":"59a638a504490fecaacf0020b9814b6abee37edb66047eb1ab9f7c2274bf1da0","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","8c4c1a64db28930732033c31418f817dcb9d09d706766707ae6d38f23faf0c53","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","12a70315c8281e46d65696086dd25827408e967b305a22276ae2779fe519e0fe","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","29d613c3964ea75b2b4e0d17098245c34529282e9cc72b7e4eeb2a7b12c27cb7",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","a381f079c4804442f179d742fdb2e495fe28d67a47cac673485f75ae2e77aeca","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true},"2af17363f8a062e3a8cd1b26030af0058b3f86e783f4fc6aa9f57247f240ebaa","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","dfe08140492cdc135fb7fd9c4a652c05207b61a436906079b87da1d3111314bf","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","089e1f8603cbc35ab977c8dcc662eb754b82fca32ed1dfb16bd682726c2d5432","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"82fc37849846a3a0264047621d5beb6ce2ddeb2f83bdee2c79523af3c3282d97","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","275ab6886b96185e298bf6bd9c16c1d198ad657e4bdcca8d1362b5ff373d4133","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","5343f3c160282dfbaab9af350119a0c3b59b7076ef0117bb5995a66e240dab28","8d48b8f8a377ade8dd1f000625bc276eea067f2529cc9cafdf082d17142107d6","6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"a34eb69d404f1db719580115825bd7ba837023effe04d235bdbb2e0168df7451","affectsGlobalScope":true},"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","f47887b61c6cf2f48746980390d6cb5b8013518951d912cfb37fe748071942be","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","be00321090ed100e3bd1e566c0408004137e73feb19d6380eba57d68519ff6c5","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","091f417275a51ab3c47b949723e9e8a193012157ecc64a96e2d7b1505e82f395","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true},"75bdc1b420f0ffc6cc6fd0b6694d89f5072bf755b4e6c7e65a2fda797ca0bb8a","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","bb4ed283cfb3db7ec1d4bb79c37f5e96d39b340f1f4de995c4b0b836c8d5fa05","fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"f1d8b21cdf08726021c8cce0cd6159486236cf1d633eeabbc435b5b2e5869c2e","e91ad231af87f864b3f07cd0e39b1cf6c133988156f087c1c3ccb0a5491c9115","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","bf0b1297461549a0e32cd57dffb992c63d7c7134fe0f9e15d359abcc88dbd28c","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","31c502014e5ba046d5cb060136929b73fd53f0f989aa37b2b0424644cb0d93ef","76232dbb982272b182a76ad8745a9b02724dc9896e2328ce360e2c56c64c9778","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"declaration":true,"emitDeclarationOnly":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noImplicitAny":true,"outDir":"./","removeComments":false,"sourceMap":true,"target":2},"fileIdsList":[[107,157],[157],[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,157],[55,157],[55,61,157],[55,56,59,157],[55,56,157],[55,63,157],[55,57,157],[67,157],[55,72,73,74,157],[55,76,157],[55,77,78,79,80,81,82,83,84,85,86,87,88,157],[55,67,157],[107,108,109,110,111,157],[107,109,157],[131,157,164,165],[128,131,156,157,164,167,168,169],[131,157,164],[131,157],[128,131,157,164,174,175],[157,166,175,176,179],[129,157,164],[128,145,153,157,164],[157,183],[157,184],[157,189,194],[157,164],[128,157,164],[157,200,202,203,204,205,206,207,208,209,210,211,212],[157,200,201,203,204,205,206,207,208,209,210,211,212],[157,201,202,203,204,205,206,207,208,209,210,211,212],[157,200,201,202,204,205,206,207,208,209,210,211,212],[157,200,201,202,203,205,206,207,208,209,210,211,212],[157,200,201,202,203,204,206,207,208,209,210,211,212],[157,200,201,202,203,204,205,207,208,209,210,211,212],[157,200,201,202,203,204,205,206,208,209,210,211,212],[157,200,201,202,203,204,205,206,207,209,210,211,212],[157,200,201,202,203,204,205,206,207,208,210,211,212],[157,200,201,202,203,204,205,206,207,208,209,211,212],[157,200,201,202,203,204,205,206,207,208,209,210,212],[157,200,201,202,203,204,205,206,207,208,209,210,211],[157,177],[157,178],[113,157],[116,157],[117,122,157],[118,128,129,136,145,156,157],[118,119,128,136,157],[120,157],[121,122,129,137,157],[122,145,153,157],[123,125,128,136,157],[124,157],[125,126,157],[127,128,157],[128,157],[128,129,130,145,156,157],[128,129,130,145,148,157],[157,161],[131,136,145,156,157],[128,129,131,132,136,145,153,156,157],[131,133,145,153,156,157],[113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163],[128,134,157],[135,156,157],[125,128,136,145,157],[137,157],[138,157],[116,139,157],[140,155,157,161],[141,157],[142,157],[128,143,157],[143,144,157,159],[128,145,146,147,148,157],[145,147,157],[145,146,157],[148,157],[149,157],[128,151,152,157],[151,152,157],[122,136,145,153,157],[154,157],[136,155,157],[117,131,142,156,157],[122,157],[145,157,158],[157,159],[157,160],[117,122,128,130,139,145,156,157,159,161],[145,157,162],[129,131,133,136,145,156,157,164,171,214,215],[131,145,157,164],[131,157,164,178],[117,129,131,145,157,164,172],[157,219],[157,222],[157,187,190],[157,187,190,191,192],[157,189],[157,186,193],[48,157],[46,47,157],[157,188],[49,157],[49,51,52,157],[49,50,157],[50,51,53,157],[49],[49,51],[49,50],[50,51,53]],"referencedMap":[[109,1],[107,2],[56,2],[57,2],[55,2],[106,3],[58,4],[105,5],[60,6],[59,7],[61,4],[62,4],[64,8],[63,4],[65,9],[66,9],[68,10],[69,4],[70,10],[72,4],[73,4],[74,4],[75,11],[71,4],[76,2],[77,12],[79,12],[78,12],[80,12],[81,12],[89,13],[82,12],[83,12],[84,12],[85,12],[86,12],[87,12],[88,12],[90,4],[91,4],[67,4],[92,4],[93,4],[94,4],[96,4],[95,4],[102,4],[98,4],[104,14],[97,4],[103,4],[99,4],[100,4],[101,4],[112,15],[108,1],[110,16],[111,1],[166,17],[170,18],[171,2],[165,19],[172,2],[173,20],[176,21],[180,22],[181,23],[168,2],[182,24],[183,2],[184,25],[185,26],[195,27],[196,2],[197,2],[198,28],[199,29],[201,30],[202,31],[200,32],[203,33],[204,34],[205,35],[206,36],[207,37],[208,38],[209,39],[210,40],[211,41],[212,42],[178,43],[177,44],[113,45],[114,45],[116,46],[117,47],[118,48],[119,49],[120,50],[121,51],[122,52],[123,53],[124,54],[125,55],[126,55],[127,56],[128,57],[129,58],[130,59],[115,60],[163,2],[131,61],[132,62],[133,63],[164,64],[134,65],[135,66],[136,67],[137,68],[138,69],[139,70],[140,71],[141,72],[142,73],[143,74],[144,75],[145,76],[147,77],[146,78],[148,79],[149,80],[150,2],[151,81],[152,82],[153,83],[154,84],[155,85],[156,86],[157,87],[158,88],[159,89],[160,90],[161,91],[162,92],[213,2],[175,2],[174,2],[216,93],[169,94],[217,2],[179,95],[218,2],[219,96],[220,97],[215,2],[221,2],[222,2],[223,98],[186,2],[214,94],[187,2],[191,99],[193,100],[192,99],[190,101],[194,102],[167,57],[49,103],[47,2],[46,2],[48,104],[189,105],[188,2],[52,2],[9,2],[10,2],[14,2],[13,2],[3,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[4,2],[5,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[34,2],[35,2],[36,2],[37,2],[8,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[2,2],[1,2],[45,2],[12,2],[11,2],[50,106],[53,107],[51,108],[54,109]],"exportedModulesMap":[[109,1],[107,2],[56,2],[57,2],[55,2],[106,3],[58,4],[105,5],[60,6],[59,7],[61,4],[62,4],[64,8],[63,4],[65,9],[66,9],[68,10],[69,4],[70,10],[72,4],[73,4],[74,4],[75,11],[71,4],[76,2],[77,12],[79,12],[78,12],[80,12],[81,12],[89,13],[82,12],[83,12],[84,12],[85,12],[86,12],[87,12],[88,12],[90,4],[91,4],[67,4],[92,4],[93,4],[94,4],[96,4],[95,4],[102,4],[98,4],[104,14],[97,4],[103,4],[99,4],[100,4],[101,4],[112,15],[108,1],[110,16],[111,1],[166,17],[170,18],[171,2],[165,19],[172,2],[173,20],[176,21],[180,22],[181,23],[168,2],[182,24],[183,2],[184,25],[185,26],[195,27],[196,2],[197,2],[198,28],[199,29],[201,30],[202,31],[200,32],[203,33],[204,34],[205,35],[206,36],[207,37],[208,38],[209,39],[210,40],[211,41],[212,42],[178,43],[177,44],[113,45],[114,45],[116,46],[117,47],[118,48],[119,49],[120,50],[121,51],[122,52],[123,53],[124,54],[125,55],[126,55],[127,56],[128,57],[129,58],[130,59],[115,60],[163,2],[131,61],[132,62],[133,63],[164,64],[134,65],[135,66],[136,67],[137,68],[138,69],[139,70],[140,71],[141,72],[142,73],[143,74],[144,75],[145,76],[147,77],[146,78],[148,79],[149,80],[150,2],[151,81],[152,82],[153,83],[154,84],[155,85],[156,86],[157,87],[158,88],[159,89],[160,90],[161,91],[162,92],[213,2],[175,2],[174,2],[216,93],[169,94],[217,2],[179,95],[218,2],[219,96],[220,97],[215,2],[221,2],[222,2],[223,98],[186,2],[214,94],[187,2],[191,99],[193,100],[192,99],[190,101],[194,102],[167,57],[49,103],[47,2],[46,2],[48,104],[189,105],[188,2],[52,2],[9,2],[10,2],[14,2],[13,2],[3,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[4,2],[5,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[34,2],[35,2],[36,2],[37,2],[8,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[2,2],[1,2],[45,2],[12,2],[11,2],[50,110],[53,111],[51,112],[54,113]],"semanticDiagnosticsPerFile":[109,107,56,57,55,106,58,105,60,59,61,62,64,63,65,66,68,69,70,72,73,74,75,71,76,77,79,78,80,81,89,82,83,84,85,86,87,88,90,91,67,92,93,94,96,95,102,98,104,97,103,99,100,101,112,108,110,111,166,170,171,165,172,173,176,180,181,168,182,183,184,185,195,196,197,198,199,201,202,200,203,204,205,206,207,208,209,210,211,212,178,177,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,115,163,131,132,133,164,134,135,136,137,138,139,140,141,142,143,144,145,147,146,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,213,175,174,216,169,217,179,218,219,220,215,221,222,223,186,214,187,191,193,192,190,194,167,49,47,46,48,189,188,52,9,10,14,13,3,15,16,17,18,19,20,21,22,4,5,26,23,24,25,27,28,29,6,30,31,32,33,7,34,35,36,37,8,38,43,44,39,40,41,42,2,1,45,12,11,50,53,51,54]},"version":"4.7.4"}
@@ -0,0 +1,149 @@
1
+ /**
2
+ * `types.ts`
3
+ * - view types used in API controllers and transformer
4
+ *
5
+ * @author Steve <steve@lemoncloud.io>
6
+ * @date 2022-06-21 optimized w/ `abstract-services`
7
+ *
8
+ * @copyright (C) 2022 LemonCloud Co Ltd. - All Rights Reserved.
9
+ */
10
+ import { View, Body } from '../cores/types';
11
+ import { MockModel, TestModel, TenantModel, AssetModel, Car, Owner, Manager, Resident, ContractModel, Rent, InstallModel, InstallHead } from '../service/backend-model';
12
+ export * from '../service/backend-types';
13
+ /**
14
+ * Type: `TenantView`
15
+ */
16
+ export interface TenantView extends View, Omit<Partial<TenantModel>, 'resident$' | 'owner$' | 'manager$' | 'install$'> {
17
+ /** (optional) 입주민에 대한 정보를 보여줌 */
18
+ readonly resident$?: ResidentView;
19
+ /** (optional) 소유자에 대한 정보를 보여줌 */
20
+ readonly owner$?: OwnerView;
21
+ /** (optional) 관리자에 대한 정보를 보여줌 */
22
+ readonly manager$?: ManagerView;
23
+ /** translated $install */
24
+ readonly install$?: InstallHead;
25
+ }
26
+ /**
27
+ * Type `TenantBody`
28
+ */
29
+ export interface TenantBody extends Body, Omit<Partial<TenantView>, 'resident$' | 'owner$' | 'manager$'> {
30
+ /** (optional) 입주민에 대한 정보를 가짐 */
31
+ resident$?: ResidentBody;
32
+ /** (optional) 소유자에 대한 정보를 가짐 */
33
+ owner$?: OwnerBody;
34
+ /** (optional) 관리자에 대한 정보를 보여줌 */
35
+ manager$?: ManagerBody;
36
+ }
37
+ /**
38
+ * Type `OwnerView` (소유자 or 임대인)
39
+ */
40
+ export interface OwnerView extends View, Partial<Owner> {
41
+ }
42
+ /**
43
+ * Type `OwnerBody`
44
+ */
45
+ export interface OwnerBody extends Body, Partial<OwnerView> {
46
+ }
47
+ /**
48
+ * Type `ResidentView` (입주민)
49
+ */
50
+ export interface ResidentView extends View, Partial<Resident> {
51
+ }
52
+ /**
53
+ * Type `ResidentBody`
54
+ */
55
+ export interface ResidentBody extends Body, Partial<ResidentView> {
56
+ }
57
+ /**
58
+ * Type `ManangerView` (책임자 or 관리자)
59
+ */
60
+ export interface ManagerView extends View, Partial<Manager> {
61
+ }
62
+ /**
63
+ * Type `ManangerBody`
64
+ */
65
+ export interface ManagerBody extends Body, Partial<ManagerView> {
66
+ }
67
+ /**
68
+ * Type `AssetView`
69
+ */
70
+ export interface AssetView extends View, Omit<Partial<AssetModel>, 'car$'> {
71
+ /** 자산(차량) 관련 정보를 보여줌 */
72
+ readonly car$?: CarView;
73
+ }
74
+ /**
75
+ * Type `AssetModel`
76
+ */
77
+ export interface AssetBody extends Body, Omit<Partial<AssetView>, 'car$'> {
78
+ /** 자산(차량) 관련 정보를 가짐 */
79
+ car$?: CarBody;
80
+ }
81
+ /**
82
+ * type: `CarView`
83
+ */
84
+ export interface CarView extends View, Partial<Car> {
85
+ }
86
+ /**
87
+ * type: `CarBody`
88
+ */
89
+ export interface CarBody extends Body, Partial<CarView> {
90
+ }
91
+ /**
92
+ * Type `ContractView`
93
+ */
94
+ export interface ContractView extends View, Omit<Partial<ContractModel>, 'rent$'> {
95
+ /** 계약 (임대) 관련 정보를 보여줌 */
96
+ readonly rent$?: RentView;
97
+ }
98
+ /**
99
+ * Type `ContractBody`
100
+ */
101
+ export interface ContractBody extends Body, Omit<Partial<ContractView>, 'rent$'> {
102
+ /** 계약 (임대) 관련 정보를 가짐 */
103
+ rent$?: RentBody;
104
+ }
105
+ /**
106
+ * type: `RentView`
107
+ */
108
+ export interface RentView extends View, Partial<Rent> {
109
+ }
110
+ /**
111
+ * type: `RentBody`
112
+ */
113
+ export interface RentBody extends Body, Partial<RentView> {
114
+ }
115
+ /**
116
+ * type: `InstallView`
117
+ */
118
+ export interface InstallView extends View, Partial<InstallModel> {
119
+ }
120
+ /**
121
+ * type: `InstallBody`
122
+ */
123
+ export interface InstallBody extends Body, Partial<InstallView> {
124
+ }
125
+ /**
126
+ * type: `TestView`
127
+ * - usually same as post's body.
128
+ */
129
+ export interface TestView extends View, Partial<TestModel> {
130
+ /**
131
+ * unique id of this type
132
+ */
133
+ id: string;
134
+ }
135
+ /**
136
+ * Type `TypeBody`
137
+ */
138
+ export interface TestBody extends Body, Partial<TestView> {
139
+ }
140
+ /**
141
+ * Type: `MockView`
142
+ */
143
+ export interface MockView extends View, Partial<MockModel> {
144
+ }
145
+ /**
146
+ * Type `MockBody`
147
+ */
148
+ export interface MockBody extends Body, Partial<MockView> {
149
+ }
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "@lemoncloud/ssocio-tenants-api",
3
+ "version": "0.23.113",
4
+ "description": "ssocio tenants management api",
5
+ "types": "dist/view/types.d.ts",
6
+ "scripts": {},
7
+ "dependencies": {
8
+ "lemon-model": "^1.0.1"
9
+ },
10
+ "browser": {
11
+ "fs": false
12
+ },
13
+ "files": [
14
+ "lib/**/*",
15
+ "dist/**/*",
16
+ "example/**/*"
17
+ ],
18
+ "private": false,
19
+ "publishConfig": {
20
+ "access": "public"
21
+ },
22
+ "author": "Steve Jung (steve@lemoncloud.io)",
23
+ "license": "MIT"
24
+ }