@nmshd/content 2.8.9 → 2.8.11
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/dist/attributes/types/address/AbstractAddress.d.ts +0 -271
- package/dist/attributes/types/address/AbstractAddress.d.ts.map +1 -1
- package/dist/attributes/types/address/AbstractAddress.js +3 -7
- package/dist/attributes/types/address/AbstractAddress.js.map +1 -1
- package/dist/attributes/types/address/DeliveryBoxAddress.d.ts +0 -1682
- package/dist/attributes/types/address/DeliveryBoxAddress.d.ts.map +1 -1
- package/dist/attributes/types/address/DeliveryBoxAddress.js +15 -19
- package/dist/attributes/types/address/DeliveryBoxAddress.js.map +1 -1
- package/dist/attributes/types/address/PostOfficeBoxAddress.d.ts +0 -1397
- package/dist/attributes/types/address/PostOfficeBoxAddress.d.ts.map +1 -1
- package/dist/attributes/types/address/PostOfficeBoxAddress.js +11 -15
- package/dist/attributes/types/address/PostOfficeBoxAddress.js.map +1 -1
- package/dist/attributes/types/address/StreetAddress.d.ts +0 -1946
- package/dist/attributes/types/address/StreetAddress.d.ts.map +1 -1
- package/dist/attributes/types/address/StreetAddress.js +13 -14
- package/dist/attributes/types/address/StreetAddress.js.map +1 -1
- package/dist/attributes/types/affiliation/Affiliation.d.ts +0 -1105
- package/dist/attributes/types/affiliation/Affiliation.d.ts.map +1 -1
- package/dist/attributes/types/affiliation/Affiliation.js +7 -11
- package/dist/attributes/types/affiliation/Affiliation.js.map +1 -1
- package/dist/attributes/types/birth/BirthDate.d.ts +0 -1105
- package/dist/attributes/types/birth/BirthDate.d.ts.map +1 -1
- package/dist/attributes/types/birth/BirthDate.js +8 -13
- package/dist/attributes/types/birth/BirthDate.js.map +1 -1
- package/dist/attributes/types/birth/BirthPlace.d.ts +0 -1105
- package/dist/attributes/types/birth/BirthPlace.d.ts.map +1 -1
- package/dist/attributes/types/birth/BirthPlace.js +7 -11
- package/dist/attributes/types/birth/BirthPlace.js.map +1 -1
- package/dist/attributes/types/measurements/AbstractLengthMeasurement.d.ts.map +1 -1
- package/dist/attributes/types/measurements/AbstractLengthMeasurement.js +2 -1
- package/dist/attributes/types/measurements/AbstractLengthMeasurement.js.map +1 -1
- package/dist/attributes/types/measurements/AbstractMeasurement.d.ts +0 -285
- package/dist/attributes/types/measurements/AbstractMeasurement.d.ts.map +1 -1
- package/dist/attributes/types/measurements/AbstractMeasurement.js +5 -9
- package/dist/attributes/types/measurements/AbstractMeasurement.js.map +1 -1
- package/dist/attributes/types/name/PersonName.d.ts +0 -1661
- package/dist/attributes/types/name/PersonName.d.ts.map +1 -1
- package/dist/attributes/types/name/PersonName.js +11 -15
- package/dist/attributes/types/name/PersonName.js.map +1 -1
- package/dist/attributes/types/statement/AbstractIdentityDescriptor.d.ts +1 -2
- package/dist/attributes/types/statement/AbstractIdentityDescriptor.d.ts.map +1 -1
- package/dist/attributes/types/statement/AbstractIdentityDescriptor.js +3 -7
- package/dist/attributes/types/statement/AbstractIdentityDescriptor.js.map +1 -1
- package/dist/attributes/types/statement/AbstractStatement.d.ts +0 -1
- package/dist/attributes/types/statement/AbstractStatement.d.ts.map +1 -1
- package/dist/attributes/types/statement/AbstractStatement.js +12 -16
- package/dist/attributes/types/statement/AbstractStatement.js.map +1 -1
- package/dist/attributes/types/statement/DigitalIdentityDescriptor.d.ts +0 -1
- package/dist/attributes/types/statement/DigitalIdentityDescriptor.d.ts.map +1 -1
- package/dist/attributes/types/statement/DigitalIdentityDescriptor.js +3 -7
- package/dist/attributes/types/statement/DigitalIdentityDescriptor.js.map +1 -1
- package/dist/attributes/types/statement/StatementIssuerConditions.d.ts +0 -1
- package/dist/attributes/types/statement/StatementIssuerConditions.d.ts.map +1 -1
- package/dist/attributes/types/statement/StatementIssuerConditions.js +11 -15
- package/dist/attributes/types/statement/StatementIssuerConditions.js.map +1 -1
- package/dist/attributes/types/statement/StatementObject.d.ts +0 -1
- package/dist/attributes/types/statement/StatementObject.d.ts.map +1 -1
- package/dist/attributes/types/statement/StatementObject.js +3 -7
- package/dist/attributes/types/statement/StatementObject.js.map +1 -1
- package/dist/attributes/types/statement/StatementSubject.d.ts +0 -1
- package/dist/attributes/types/statement/StatementSubject.d.ts.map +1 -1
- package/dist/attributes/types/statement/StatementSubject.js +3 -7
- package/dist/attributes/types/statement/StatementSubject.js.map +1 -1
- package/dist/attributes/types/strings/AbstractPhoneNumber.js +1 -1
- package/dist/attributes/types/strings/AbstractPhoneNumber.js.map +1 -1
- package/dist/buildInformation.js +5 -5
- package/lib-web/nmshd.content.js +123 -308
- package/lib-web/nmshd.content.min.js +1 -1
- package/package.json +2 -2
|
@@ -7,277 +7,6 @@ export interface IAbstractAddress extends IAbstractComplexValue {
|
|
|
7
7
|
recipient: string;
|
|
8
8
|
}
|
|
9
9
|
export declare abstract class AbstractAddress extends AbstractComplexValue implements IAbstractAddress {
|
|
10
|
-
static readonly propertyNames: {
|
|
11
|
-
recipient: import("easy-tsnameof").PathHandlers<{
|
|
12
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
13
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
14
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
15
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
16
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
17
|
-
}>;
|
|
18
|
-
readonly valueHints: {
|
|
19
|
-
editHelp: import("easy-tsnameof").PathHandlers<{
|
|
20
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
21
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
22
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
23
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
24
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
25
|
-
}>;
|
|
26
|
-
min: import("easy-tsnameof").PathHandlers<{
|
|
27
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
28
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
29
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
30
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
31
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
32
|
-
}>;
|
|
33
|
-
max: import("easy-tsnameof").PathHandlers<{
|
|
34
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
35
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
36
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
37
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
38
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
39
|
-
}>;
|
|
40
|
-
pattern: import("easy-tsnameof").PathHandlers<{
|
|
41
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
42
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
43
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
44
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
45
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
46
|
-
}>;
|
|
47
|
-
values: ({
|
|
48
|
-
displayName: import("easy-tsnameof").PathHandlers<{
|
|
49
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
50
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
51
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
52
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
53
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
54
|
-
}>;
|
|
55
|
-
key: import("easy-tsnameof").PathHandlers<{
|
|
56
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
57
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
58
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
59
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
60
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
61
|
-
}>;
|
|
62
|
-
validate: import("easy-tsnameof").PathHandlers<{
|
|
63
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
64
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
65
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
66
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
67
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
68
|
-
}>;
|
|
69
|
-
validateProperty: import("easy-tsnameof").PathHandlers<{
|
|
70
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
71
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
72
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
73
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
74
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
75
|
-
}>;
|
|
76
|
-
serialize: import("easy-tsnameof").PathHandlers<{
|
|
77
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
78
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
79
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
80
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
81
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
82
|
-
}>;
|
|
83
|
-
toJSON: import("easy-tsnameof").PathHandlers<{
|
|
84
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
85
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
86
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
87
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
88
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
89
|
-
}>;
|
|
90
|
-
} & import("easy-tsnameof").PathHandlers<{
|
|
91
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
92
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
93
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
94
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
95
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
96
|
-
}>)[] & import("easy-tsnameof").PathHandlers<{
|
|
97
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
98
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
99
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
100
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
101
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
102
|
-
}>;
|
|
103
|
-
defaultValue: import("easy-tsnameof").PathHandlers<{
|
|
104
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
105
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
106
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
107
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
108
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
109
|
-
}>;
|
|
110
|
-
propertyHints: {
|
|
111
|
-
[x: string]: any & import("easy-tsnameof").PathHandlers<{
|
|
112
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
113
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
114
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
115
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
116
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
117
|
-
}>;
|
|
118
|
-
} & import("easy-tsnameof").PathHandlers<{
|
|
119
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
120
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
121
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
122
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
123
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
124
|
-
}>;
|
|
125
|
-
toJSON: import("easy-tsnameof").PathHandlers<{
|
|
126
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
127
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
128
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
129
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
130
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
131
|
-
}>;
|
|
132
|
-
copyWith: import("easy-tsnameof").PathHandlers<{
|
|
133
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
134
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
135
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
136
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
137
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
138
|
-
}>;
|
|
139
|
-
validate: import("easy-tsnameof").PathHandlers<{
|
|
140
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
141
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
142
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
143
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
144
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
145
|
-
}>;
|
|
146
|
-
validateProperty: import("easy-tsnameof").PathHandlers<{
|
|
147
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
148
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
149
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
150
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
151
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
152
|
-
}>;
|
|
153
|
-
serialize: import("easy-tsnameof").PathHandlers<{
|
|
154
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
155
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
156
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
157
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
158
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
159
|
-
}>;
|
|
160
|
-
} & import("easy-tsnameof").PathHandlers<{
|
|
161
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
162
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
163
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
164
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
165
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
166
|
-
}>;
|
|
167
|
-
readonly renderHints: {
|
|
168
|
-
technicalType: import("easy-tsnameof").PathHandlers<{
|
|
169
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
170
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
171
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
172
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
173
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
174
|
-
}>;
|
|
175
|
-
editType: import("easy-tsnameof").PathHandlers<{
|
|
176
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
177
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
178
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
179
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
180
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
181
|
-
}>;
|
|
182
|
-
dataType: import("easy-tsnameof").PathHandlers<{
|
|
183
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
184
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
185
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
186
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
187
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
188
|
-
}>;
|
|
189
|
-
propertyHints: {
|
|
190
|
-
[x: string]: any & import("easy-tsnameof").PathHandlers<{
|
|
191
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
192
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
193
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
194
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
195
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
196
|
-
}>;
|
|
197
|
-
} & import("easy-tsnameof").PathHandlers<{
|
|
198
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
199
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
200
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
201
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
202
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
203
|
-
}>;
|
|
204
|
-
toJSON: import("easy-tsnameof").PathHandlers<{
|
|
205
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
206
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
207
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
208
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
209
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
210
|
-
}>;
|
|
211
|
-
copyWith: import("easy-tsnameof").PathHandlers<{
|
|
212
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
213
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
214
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
215
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
216
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
217
|
-
}>;
|
|
218
|
-
validate: import("easy-tsnameof").PathHandlers<{
|
|
219
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
220
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
221
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
222
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
223
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
224
|
-
}>;
|
|
225
|
-
validateProperty: import("easy-tsnameof").PathHandlers<{
|
|
226
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
227
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
228
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
229
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
230
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
231
|
-
}>;
|
|
232
|
-
serialize: import("easy-tsnameof").PathHandlers<{
|
|
233
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
234
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
235
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
236
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
237
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
238
|
-
}>;
|
|
239
|
-
} & import("easy-tsnameof").PathHandlers<{
|
|
240
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
241
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
242
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
243
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
244
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
245
|
-
}>;
|
|
246
|
-
validate: import("easy-tsnameof").PathHandlers<{
|
|
247
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
248
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
249
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
250
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
251
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
252
|
-
}>;
|
|
253
|
-
validateProperty: import("easy-tsnameof").PathHandlers<{
|
|
254
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
255
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
256
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
257
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
258
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
259
|
-
}>;
|
|
260
|
-
serialize: import("easy-tsnameof").PathHandlers<{
|
|
261
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
262
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
263
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
264
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
265
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
266
|
-
}>;
|
|
267
|
-
toJSON: import("easy-tsnameof").PathHandlers<{
|
|
268
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
269
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
270
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
271
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
272
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
273
|
-
}>;
|
|
274
|
-
} & import("easy-tsnameof").PathHandlers<{
|
|
275
|
-
$path: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
276
|
-
$rawPath: (path: import("easy-tsnameof").PathKey[]) => import("easy-tsnameof").PathKey[];
|
|
277
|
-
toString: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
278
|
-
valueOf: (path: import("easy-tsnameof").PathKey[]) => () => string;
|
|
279
|
-
[Symbol.toStringTag]: (path: import("easy-tsnameof").PathKey[]) => string;
|
|
280
|
-
}>;
|
|
281
10
|
recipient: string;
|
|
282
11
|
static get valueHints(): ValueHints;
|
|
283
12
|
static get renderHints(): RenderHints;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AbstractAddress.d.ts","sourceRoot":"","sources":["../../../../src/attributes/types/address/AbstractAddress.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,wBAAwB,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AACnH,OAAO,EAAE,WAAW,EAAiD,UAAU,EAAE,MAAM,aAAa,CAAC;AAErG,MAAM,WAAW,mBAAoB,SAAQ,wBAAwB;IACjE,SAAS,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,gBAAiB,SAAQ,qBAAqB;IAC3D,SAAS,EAAE,MAAM,CAAC;CACrB;AAED,8BAAsB,eAAgB,SAAQ,oBAAqB,YAAW,gBAAgB;
|
|
1
|
+
{"version":3,"file":"AbstractAddress.d.ts","sourceRoot":"","sources":["../../../../src/attributes/types/address/AbstractAddress.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,wBAAwB,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AACnH,OAAO,EAAE,WAAW,EAAiD,UAAU,EAAE,MAAM,aAAa,CAAC;AAErG,MAAM,WAAW,mBAAoB,SAAQ,wBAAwB;IACjE,SAAS,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,gBAAiB,SAAQ,qBAAqB;IAC3D,SAAS,EAAE,MAAM,CAAC;CACrB;AAED,8BAAsB,eAAgB,SAAQ,oBAAqB,YAAW,gBAAgB;IAGnF,SAAS,EAAE,MAAM,CAAC;IAEzB,WAAkB,UAAU,IAAI,UAAU,CAMzC;IAED,WAA2B,WAAW,IAAI,WAAW,CASpD;CACJ"}
|
|
@@ -8,28 +8,24 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
8
8
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
|
-
};
|
|
14
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
12
|
exports.AbstractAddress = void 0;
|
|
16
13
|
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
17
|
-
const
|
|
14
|
+
const ts_simple_nameof_1 = require("ts-simple-nameof");
|
|
18
15
|
const AbstractComplexValue_1 = require("../../AbstractComplexValue");
|
|
19
16
|
const hints_1 = require("../../hints");
|
|
20
17
|
class AbstractAddress extends AbstractComplexValue_1.AbstractComplexValue {
|
|
21
|
-
static { this.propertyNames = (0, easy_tsnameof_1.default)(); }
|
|
22
18
|
static get valueHints() {
|
|
23
19
|
return hints_1.ValueHints.from({
|
|
24
20
|
propertyHints: {
|
|
25
|
-
[
|
|
21
|
+
[(0, ts_simple_nameof_1.nameof)((a) => a.recipient)]: hints_1.ValueHints.from({})
|
|
26
22
|
}
|
|
27
23
|
});
|
|
28
24
|
}
|
|
29
25
|
static get renderHints() {
|
|
30
26
|
return super.renderHints.copyWith({
|
|
31
27
|
propertyHints: {
|
|
32
|
-
[
|
|
28
|
+
[(0, ts_simple_nameof_1.nameof)((a) => a.recipient)]: hints_1.RenderHints.from({
|
|
33
29
|
editType: hints_1.RenderHintsEditType.InputLike,
|
|
34
30
|
technicalType: hints_1.RenderHintsTechnicalType.String
|
|
35
31
|
})
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AbstractAddress.js","sourceRoot":"","sources":["../../../../src/attributes/types/address/AbstractAddress.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AbstractAddress.js","sourceRoot":"","sources":["../../../../src/attributes/types/address/AbstractAddress.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAAyD;AACzD,uDAA0C;AAC1C,qEAAmH;AACnH,uCAAqG;AAUrG,MAAsB,eAAgB,SAAQ,2CAAoB;IAKvD,MAAM,KAAK,UAAU;QACxB,OAAO,kBAAU,CAAC,IAAI,CAAC;YACnB,aAAa,EAAE;gBACX,CAAC,IAAA,yBAAM,EAAkB,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,EAAE,kBAAU,CAAC,IAAI,CAAC,EAAE,CAAC;aACrE;SACJ,CAAC,CAAC;IACP,CAAC;IAEM,MAAM,KAAc,WAAW;QAClC,OAAO,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC;YAC9B,aAAa,EAAE;gBACX,CAAC,IAAA,yBAAM,EAAkB,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,EAAE,mBAAW,CAAC,IAAI,CAAC;oBAC5D,QAAQ,EAAE,2BAAmB,CAAC,SAAS;oBACvC,aAAa,EAAE,gCAAwB,CAAC,MAAM;iBACjD,CAAC;aACL;SACJ,CAAC,CAAC;IACP,CAAC;CACJ;AAvBD,0CAuBC;AApBU;IAFN,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,EAAC,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;;kDACE"}
|