prismadoc 1.0.29
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 +425 -0
- package/dist/config.type.js +38 -0
- package/dist/entities/dto-generator.js +69 -0
- package/dist/entities/enum.js +40 -0
- package/dist/entities/field.js +192 -0
- package/dist/entities/generic.js +24 -0
- package/dist/entities/model.js +83 -0
- package/dist/entities/response-generator.js +30 -0
- package/dist/entities/validator.js +16 -0
- package/dist/field.type.js +22 -0
- package/dist/fields.ts +138 -0
- package/dist/file.js +27 -0
- package/dist/generic.dto.ts +13 -0
- package/dist/index.js +1 -0
- package/dist/index.ts +40 -0
- package/dist/main.js +155 -0
- package/dist/rules.js +35 -0
- package/dist/schemas/config.schema.json +136 -0
- package/dist/static.js +3 -0
- package/dist/types/account-agenda.ts +68 -0
- package/dist/types/account-two-factor-auth-log.ts +127 -0
- package/dist/types/account-two-factor-auth.ts +145 -0
- package/dist/types/account.ts +126 -0
- package/dist/types/admin.ts +68 -0
- package/dist/types/agenda-day-time-config.ts +113 -0
- package/dist/types/agenda-week-day-config.ts +68 -0
- package/dist/types/customer.ts +99 -0
- package/dist/types/dummy-many.ts +71 -0
- package/dist/types/dummy-unique.ts +68 -0
- package/dist/types/dummy.ts +68 -0
- package/dist/types/email-auth-code.ts +136 -0
- package/dist/types/file.ts +299 -0
- package/dist/types/firebase-config.ts +140 -0
- package/dist/types/knowledge-base-category.ts +91 -0
- package/dist/types/knowledge-base-post.ts +262 -0
- package/dist/types/kyc-attempt-details.ts +273 -0
- package/dist/types/kyc-attempt.ts +365 -0
- package/dist/types/kyc-config.ts +199 -0
- package/dist/types/kyc-document.ts +260 -0
- package/dist/types/meeting-guest.ts +185 -0
- package/dist/types/meeting.ts +205 -0
- package/dist/types/member.ts +99 -0
- package/dist/types/notification.ts +193 -0
- package/dist/types/otp-auth-code-request-log.ts +116 -0
- package/dist/types/otp-auth-code.ts +136 -0
- package/dist/types/owner.ts +68 -0
- package/dist/types/policy.ts +169 -0
- package/dist/types/push-notification.ts +77 -0
- package/dist/types/smtp-config.ts +188 -0
- package/dist/types/staff-role.ts +121 -0
- package/dist/types/staff.ts +99 -0
- package/dist/types/tenant-plan.ts +177 -0
- package/dist/types/tenant-role.ts +152 -0
- package/dist/types/tenant.ts +149 -0
- package/dist/types/ticket-message.ts +177 -0
- package/dist/types/ticket.ts +177 -0
- package/dist/types/user.ts +281 -0
- package/dist/types.js +1 -0
- package/dist/utils/helpers.js +146 -0
- package/dist/utils/loader.js +81 -0
- package/dist/utils/prisma-utils.js +73 -0
- package/dist/utils/propeties.static.js +2 -0
- package/package.json +45 -0
|
@@ -0,0 +1,262 @@
|
|
|
1
|
+
// AUTO-GERADO: NÃO EDITAR MANUALMENTE. SUJEITO A PAULADAS!
|
|
2
|
+
/* eslint-disable @typescript-eslint/no-namespace */
|
|
3
|
+
import { ApiProperty, IntersectionType } from "@nestjs/swagger";
|
|
4
|
+
import { EnumKnowledgeBasePostStatus } from "@prisma/client";
|
|
5
|
+
import {
|
|
6
|
+
IsString,
|
|
7
|
+
IsNotEmpty,
|
|
8
|
+
IsEnum,
|
|
9
|
+
IsOptional,
|
|
10
|
+
IsArray,
|
|
11
|
+
} from "src/_nest/validators";
|
|
12
|
+
|
|
13
|
+
class NameDto {
|
|
14
|
+
@ApiProperty({ type: "string", example: "Fulano", required: true })
|
|
15
|
+
@IsString()
|
|
16
|
+
@IsNotEmpty()
|
|
17
|
+
name!: string;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
class ContentDto {
|
|
21
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: true })
|
|
22
|
+
@IsString()
|
|
23
|
+
@IsNotEmpty()
|
|
24
|
+
content!: string;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
class StatusDto {
|
|
28
|
+
@ApiProperty({
|
|
29
|
+
enum: EnumKnowledgeBasePostStatus,
|
|
30
|
+
example: Object.values(EnumKnowledgeBasePostStatus)[0],
|
|
31
|
+
required: true,
|
|
32
|
+
})
|
|
33
|
+
@IsEnum(EnumKnowledgeBasePostStatus)
|
|
34
|
+
status!: EnumKnowledgeBasePostStatus;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
class CategoryIdDto {
|
|
38
|
+
@ApiProperty({
|
|
39
|
+
type: "string",
|
|
40
|
+
example: "cmfxu4njg000008l52v7t8qze",
|
|
41
|
+
required: true,
|
|
42
|
+
})
|
|
43
|
+
@IsString()
|
|
44
|
+
@IsNotEmpty()
|
|
45
|
+
categoryId!: string;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
class CoverIdDto {
|
|
49
|
+
@ApiProperty({
|
|
50
|
+
type: "string",
|
|
51
|
+
example: "cmfxu4njg000008l52v7t8qze",
|
|
52
|
+
required: false,
|
|
53
|
+
})
|
|
54
|
+
@IsString()
|
|
55
|
+
@IsOptional()
|
|
56
|
+
coverId?: string;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
class ImagesIdDto {
|
|
60
|
+
@ApiProperty({
|
|
61
|
+
type: "string",
|
|
62
|
+
example: "cmfxu4njg000008l52v7t8qze",
|
|
63
|
+
required: true,
|
|
64
|
+
isArray: true,
|
|
65
|
+
})
|
|
66
|
+
@IsString({ each: true })
|
|
67
|
+
@IsNotEmpty({ each: true })
|
|
68
|
+
@IsArray()
|
|
69
|
+
imagesId!: string[];
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
class PublishedAtDto {
|
|
73
|
+
@ApiProperty({
|
|
74
|
+
type: "string",
|
|
75
|
+
example: "2025-09-03T03:00:00.000Z",
|
|
76
|
+
required: false,
|
|
77
|
+
})
|
|
78
|
+
@IsString()
|
|
79
|
+
@IsOptional()
|
|
80
|
+
publishedAt?: Date;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
class KnowledgeBasePostDto extends IntersectionType(
|
|
84
|
+
NameDto,
|
|
85
|
+
ContentDto,
|
|
86
|
+
StatusDto,
|
|
87
|
+
CategoryIdDto,
|
|
88
|
+
CoverIdDto,
|
|
89
|
+
ImagesIdDto,
|
|
90
|
+
PublishedAtDto,
|
|
91
|
+
) {}
|
|
92
|
+
|
|
93
|
+
class KnowledgeBasePostId {
|
|
94
|
+
@ApiProperty({
|
|
95
|
+
type: "string",
|
|
96
|
+
example: "cmfxu4njg000008l52v7t8qze",
|
|
97
|
+
required: true,
|
|
98
|
+
})
|
|
99
|
+
@IsString()
|
|
100
|
+
@IsNotEmpty()
|
|
101
|
+
knowledgebasepostId!: string;
|
|
102
|
+
}
|
|
103
|
+
class IdRes {
|
|
104
|
+
@ApiProperty({
|
|
105
|
+
type: "string",
|
|
106
|
+
example: "cmfxu4njg000008l52v7t8qze",
|
|
107
|
+
required: true,
|
|
108
|
+
})
|
|
109
|
+
id!: string;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
class NameRes {
|
|
113
|
+
@ApiProperty({ type: "string", example: "Fulano", required: true })
|
|
114
|
+
name!: string;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
class ContentRes {
|
|
118
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: true })
|
|
119
|
+
content!: string;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
class StatusRes {
|
|
123
|
+
@ApiProperty({
|
|
124
|
+
enum: EnumKnowledgeBasePostStatus,
|
|
125
|
+
example: Object.values(EnumKnowledgeBasePostStatus)[0],
|
|
126
|
+
required: true,
|
|
127
|
+
})
|
|
128
|
+
status!: EnumKnowledgeBasePostStatus;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
class CategoryIdRes {
|
|
132
|
+
@ApiProperty({
|
|
133
|
+
type: "string",
|
|
134
|
+
example: "cmfxu4njg000008l52v7t8qze",
|
|
135
|
+
required: true,
|
|
136
|
+
})
|
|
137
|
+
categoryId!: string;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class CoverIdRes {
|
|
141
|
+
@ApiProperty({
|
|
142
|
+
type: "string",
|
|
143
|
+
example: "cmfxu4njg000008l52v7t8qze",
|
|
144
|
+
required: false,
|
|
145
|
+
})
|
|
146
|
+
coverId?: string;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
class ImagesIdRes {
|
|
150
|
+
@ApiProperty({
|
|
151
|
+
type: "string",
|
|
152
|
+
example: "cmfxu4njg000008l52v7t8qze",
|
|
153
|
+
required: true,
|
|
154
|
+
isArray: true,
|
|
155
|
+
})
|
|
156
|
+
imagesId!: string[];
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
class PublishedAtRes {
|
|
160
|
+
@ApiProperty({
|
|
161
|
+
type: "string",
|
|
162
|
+
example: "2025-09-03T03:00:00.000Z",
|
|
163
|
+
required: false,
|
|
164
|
+
})
|
|
165
|
+
publishedAt?: Date;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
class CreatedAtRes {
|
|
169
|
+
@ApiProperty({
|
|
170
|
+
type: "string",
|
|
171
|
+
example: "2025-09-03T03:00:00.000Z",
|
|
172
|
+
required: true,
|
|
173
|
+
})
|
|
174
|
+
createdAt!: Date;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
class UpdatedAtRes {
|
|
178
|
+
@ApiProperty({
|
|
179
|
+
type: "string",
|
|
180
|
+
example: "2025-09-03T03:00:00.000Z",
|
|
181
|
+
required: true,
|
|
182
|
+
})
|
|
183
|
+
updatedAt!: Date;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
class KnowledgeBasePostRes extends IntersectionType(
|
|
187
|
+
IdRes,
|
|
188
|
+
NameRes,
|
|
189
|
+
ContentRes,
|
|
190
|
+
StatusRes,
|
|
191
|
+
CategoryIdRes,
|
|
192
|
+
CoverIdRes,
|
|
193
|
+
ImagesIdRes,
|
|
194
|
+
PublishedAtRes,
|
|
195
|
+
CreatedAtRes,
|
|
196
|
+
UpdatedAtRes,
|
|
197
|
+
) {}
|
|
198
|
+
export namespace KnowledgeBasePost {
|
|
199
|
+
export const Dto = KnowledgeBasePostDto;
|
|
200
|
+
export type Dto = KnowledgeBasePostDto;
|
|
201
|
+
export const Res = KnowledgeBasePostRes;
|
|
202
|
+
export type Res = KnowledgeBasePostRes;
|
|
203
|
+
export const Id = KnowledgeBasePostId;
|
|
204
|
+
export type Id = KnowledgeBasePostId;
|
|
205
|
+
|
|
206
|
+
export namespace Input {
|
|
207
|
+
export namespace Name {
|
|
208
|
+
export type Dto = NameDto;
|
|
209
|
+
export const Dto = NameDto;
|
|
210
|
+
export type Res = NameRes;
|
|
211
|
+
export const Res = NameRes;
|
|
212
|
+
}
|
|
213
|
+
export namespace Content {
|
|
214
|
+
export type Dto = ContentDto;
|
|
215
|
+
export const Dto = ContentDto;
|
|
216
|
+
export type Res = ContentRes;
|
|
217
|
+
export const Res = ContentRes;
|
|
218
|
+
}
|
|
219
|
+
export namespace Status {
|
|
220
|
+
export type Dto = StatusDto;
|
|
221
|
+
export const Dto = StatusDto;
|
|
222
|
+
export type Res = StatusRes;
|
|
223
|
+
export const Res = StatusRes;
|
|
224
|
+
}
|
|
225
|
+
export namespace CategoryId {
|
|
226
|
+
export type Dto = CategoryIdDto;
|
|
227
|
+
export const Dto = CategoryIdDto;
|
|
228
|
+
export type Res = CategoryIdRes;
|
|
229
|
+
export const Res = CategoryIdRes;
|
|
230
|
+
}
|
|
231
|
+
export namespace CoverId {
|
|
232
|
+
export type Dto = CoverIdDto;
|
|
233
|
+
export const Dto = CoverIdDto;
|
|
234
|
+
export type Res = CoverIdRes;
|
|
235
|
+
export const Res = CoverIdRes;
|
|
236
|
+
}
|
|
237
|
+
export namespace ImagesId {
|
|
238
|
+
export type Dto = ImagesIdDto;
|
|
239
|
+
export const Dto = ImagesIdDto;
|
|
240
|
+
export type Res = ImagesIdRes;
|
|
241
|
+
export const Res = ImagesIdRes;
|
|
242
|
+
}
|
|
243
|
+
export namespace PublishedAt {
|
|
244
|
+
export type Dto = PublishedAtDto;
|
|
245
|
+
export const Dto = PublishedAtDto;
|
|
246
|
+
export type Res = PublishedAtRes;
|
|
247
|
+
export const Res = PublishedAtRes;
|
|
248
|
+
}
|
|
249
|
+
export namespace Id {
|
|
250
|
+
export type Res = IdRes;
|
|
251
|
+
export const Res = IdRes;
|
|
252
|
+
}
|
|
253
|
+
export namespace CreatedAt {
|
|
254
|
+
export type Res = CreatedAtRes;
|
|
255
|
+
export const Res = CreatedAtRes;
|
|
256
|
+
}
|
|
257
|
+
export namespace UpdatedAt {
|
|
258
|
+
export type Res = UpdatedAtRes;
|
|
259
|
+
export const Res = UpdatedAtRes;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
}
|
|
@@ -0,0 +1,273 @@
|
|
|
1
|
+
// AUTO-GERADO: NÃO EDITAR MANUALMENTE. SUJEITO A PAULADAS!
|
|
2
|
+
/* eslint-disable @typescript-eslint/no-namespace */
|
|
3
|
+
import { ApiProperty, IntersectionType } from "@nestjs/swagger";
|
|
4
|
+
import { IsString, IsNotEmpty, IsOptional } from "src/_nest/validators";
|
|
5
|
+
|
|
6
|
+
class PhoneDto {
|
|
7
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
8
|
+
@IsString()
|
|
9
|
+
@IsOptional()
|
|
10
|
+
phone?: string;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
class NationalityDto {
|
|
14
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
15
|
+
@IsString()
|
|
16
|
+
@IsOptional()
|
|
17
|
+
nationality?: string;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
class StreetDto {
|
|
21
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
22
|
+
@IsString()
|
|
23
|
+
@IsOptional()
|
|
24
|
+
street?: string;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
class NumberDto {
|
|
28
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
29
|
+
@IsString()
|
|
30
|
+
@IsOptional()
|
|
31
|
+
number?: string;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
class ComplementDto {
|
|
35
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
36
|
+
@IsString()
|
|
37
|
+
@IsOptional()
|
|
38
|
+
complement?: string;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
class NeighborhoodDto {
|
|
42
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
43
|
+
@IsString()
|
|
44
|
+
@IsOptional()
|
|
45
|
+
neighborhood?: string;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
class CityDto {
|
|
49
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
50
|
+
@IsString()
|
|
51
|
+
@IsOptional()
|
|
52
|
+
city?: string;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
class StateDto {
|
|
56
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
57
|
+
@IsString()
|
|
58
|
+
@IsOptional()
|
|
59
|
+
state?: string;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
class ZipCodeDto {
|
|
63
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
64
|
+
@IsString()
|
|
65
|
+
@IsOptional()
|
|
66
|
+
zipCode?: string;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
class CountryDto {
|
|
70
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
71
|
+
@IsString()
|
|
72
|
+
@IsOptional()
|
|
73
|
+
country?: string;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
class KycAttemptIdDto {
|
|
77
|
+
@ApiProperty({
|
|
78
|
+
type: "string",
|
|
79
|
+
example: "cmfxu4njg000008l52v7t8qze",
|
|
80
|
+
required: true,
|
|
81
|
+
})
|
|
82
|
+
@IsString()
|
|
83
|
+
@IsNotEmpty()
|
|
84
|
+
kycAttemptId!: string;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
class KycAttemptDetailsDto extends IntersectionType(
|
|
88
|
+
PhoneDto,
|
|
89
|
+
NationalityDto,
|
|
90
|
+
StreetDto,
|
|
91
|
+
NumberDto,
|
|
92
|
+
ComplementDto,
|
|
93
|
+
NeighborhoodDto,
|
|
94
|
+
CityDto,
|
|
95
|
+
StateDto,
|
|
96
|
+
ZipCodeDto,
|
|
97
|
+
CountryDto,
|
|
98
|
+
KycAttemptIdDto,
|
|
99
|
+
) {}
|
|
100
|
+
|
|
101
|
+
class KycAttemptDetailsId {
|
|
102
|
+
@ApiProperty({
|
|
103
|
+
type: "string",
|
|
104
|
+
example: "cmfxu4njg000008l52v7t8qze",
|
|
105
|
+
required: true,
|
|
106
|
+
})
|
|
107
|
+
@IsString()
|
|
108
|
+
@IsNotEmpty()
|
|
109
|
+
kycattemptdetailsId!: string;
|
|
110
|
+
}
|
|
111
|
+
class IdRes {
|
|
112
|
+
@ApiProperty({
|
|
113
|
+
type: "string",
|
|
114
|
+
example: "cmfxu4njg000008l52v7t8qze",
|
|
115
|
+
required: true,
|
|
116
|
+
})
|
|
117
|
+
id!: string;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
class PhoneRes {
|
|
121
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
122
|
+
phone?: string;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
class NationalityRes {
|
|
126
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
127
|
+
nationality?: string;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
class StreetRes {
|
|
131
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
132
|
+
street?: string;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
class NumberRes {
|
|
136
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
137
|
+
number?: string;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class ComplementRes {
|
|
141
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
142
|
+
complement?: string;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
class NeighborhoodRes {
|
|
146
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
147
|
+
neighborhood?: string;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
class CityRes {
|
|
151
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
152
|
+
city?: string;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
class StateRes {
|
|
156
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
157
|
+
state?: string;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
class ZipCodeRes {
|
|
161
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
162
|
+
zipCode?: string;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
class CountryRes {
|
|
166
|
+
@ApiProperty({ type: "string", example: "ordinary string", required: false })
|
|
167
|
+
country?: string;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
class KycAttemptIdRes {
|
|
171
|
+
@ApiProperty({
|
|
172
|
+
type: "string",
|
|
173
|
+
example: "cmfxu4njg000008l52v7t8qze",
|
|
174
|
+
required: true,
|
|
175
|
+
})
|
|
176
|
+
kycAttemptId!: string;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
class KycAttemptDetailsRes extends IntersectionType(
|
|
180
|
+
IdRes,
|
|
181
|
+
PhoneRes,
|
|
182
|
+
NationalityRes,
|
|
183
|
+
StreetRes,
|
|
184
|
+
NumberRes,
|
|
185
|
+
ComplementRes,
|
|
186
|
+
NeighborhoodRes,
|
|
187
|
+
CityRes,
|
|
188
|
+
StateRes,
|
|
189
|
+
ZipCodeRes,
|
|
190
|
+
CountryRes,
|
|
191
|
+
KycAttemptIdRes,
|
|
192
|
+
) {}
|
|
193
|
+
export namespace KycAttemptDetails {
|
|
194
|
+
export const Dto = KycAttemptDetailsDto;
|
|
195
|
+
export type Dto = KycAttemptDetailsDto;
|
|
196
|
+
export const Res = KycAttemptDetailsRes;
|
|
197
|
+
export type Res = KycAttemptDetailsRes;
|
|
198
|
+
export const Id = KycAttemptDetailsId;
|
|
199
|
+
export type Id = KycAttemptDetailsId;
|
|
200
|
+
|
|
201
|
+
export namespace Input {
|
|
202
|
+
export namespace Phone {
|
|
203
|
+
export type Dto = PhoneDto;
|
|
204
|
+
export const Dto = PhoneDto;
|
|
205
|
+
export type Res = PhoneRes;
|
|
206
|
+
export const Res = PhoneRes;
|
|
207
|
+
}
|
|
208
|
+
export namespace Nationality {
|
|
209
|
+
export type Dto = NationalityDto;
|
|
210
|
+
export const Dto = NationalityDto;
|
|
211
|
+
export type Res = NationalityRes;
|
|
212
|
+
export const Res = NationalityRes;
|
|
213
|
+
}
|
|
214
|
+
export namespace Street {
|
|
215
|
+
export type Dto = StreetDto;
|
|
216
|
+
export const Dto = StreetDto;
|
|
217
|
+
export type Res = StreetRes;
|
|
218
|
+
export const Res = StreetRes;
|
|
219
|
+
}
|
|
220
|
+
export namespace Number {
|
|
221
|
+
export type Dto = NumberDto;
|
|
222
|
+
export const Dto = NumberDto;
|
|
223
|
+
export type Res = NumberRes;
|
|
224
|
+
export const Res = NumberRes;
|
|
225
|
+
}
|
|
226
|
+
export namespace Complement {
|
|
227
|
+
export type Dto = ComplementDto;
|
|
228
|
+
export const Dto = ComplementDto;
|
|
229
|
+
export type Res = ComplementRes;
|
|
230
|
+
export const Res = ComplementRes;
|
|
231
|
+
}
|
|
232
|
+
export namespace Neighborhood {
|
|
233
|
+
export type Dto = NeighborhoodDto;
|
|
234
|
+
export const Dto = NeighborhoodDto;
|
|
235
|
+
export type Res = NeighborhoodRes;
|
|
236
|
+
export const Res = NeighborhoodRes;
|
|
237
|
+
}
|
|
238
|
+
export namespace City {
|
|
239
|
+
export type Dto = CityDto;
|
|
240
|
+
export const Dto = CityDto;
|
|
241
|
+
export type Res = CityRes;
|
|
242
|
+
export const Res = CityRes;
|
|
243
|
+
}
|
|
244
|
+
export namespace State {
|
|
245
|
+
export type Dto = StateDto;
|
|
246
|
+
export const Dto = StateDto;
|
|
247
|
+
export type Res = StateRes;
|
|
248
|
+
export const Res = StateRes;
|
|
249
|
+
}
|
|
250
|
+
export namespace ZipCode {
|
|
251
|
+
export type Dto = ZipCodeDto;
|
|
252
|
+
export const Dto = ZipCodeDto;
|
|
253
|
+
export type Res = ZipCodeRes;
|
|
254
|
+
export const Res = ZipCodeRes;
|
|
255
|
+
}
|
|
256
|
+
export namespace Country {
|
|
257
|
+
export type Dto = CountryDto;
|
|
258
|
+
export const Dto = CountryDto;
|
|
259
|
+
export type Res = CountryRes;
|
|
260
|
+
export const Res = CountryRes;
|
|
261
|
+
}
|
|
262
|
+
export namespace KycAttemptId {
|
|
263
|
+
export type Dto = KycAttemptIdDto;
|
|
264
|
+
export const Dto = KycAttemptIdDto;
|
|
265
|
+
export type Res = KycAttemptIdRes;
|
|
266
|
+
export const Res = KycAttemptIdRes;
|
|
267
|
+
}
|
|
268
|
+
export namespace Id {
|
|
269
|
+
export type Res = IdRes;
|
|
270
|
+
export const Res = IdRes;
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
}
|