@nmshd/content 2.0.0-alpha.41 → 2.0.0-alpha.44
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/AbstractComplexValue.d.ts +2 -0
- package/dist/attributes/AbstractComplexValue.js +7 -0
- package/dist/attributes/AbstractComplexValue.js.map +1 -1
- package/dist/attributes/hints/RenderHints.d.ts +13 -46
- package/dist/attributes/hints/RenderHints.js +51 -44
- package/dist/attributes/hints/RenderHints.js.map +1 -1
- package/dist/attributes/hints/RenderHintsDataType.d.ts +19 -0
- package/dist/attributes/hints/RenderHintsDataType.js +24 -0
- package/dist/attributes/hints/RenderHintsDataType.js.map +1 -0
- package/dist/attributes/hints/RenderHintsEditType.d.ts +11 -0
- package/dist/attributes/hints/RenderHintsEditType.js +16 -0
- package/dist/attributes/hints/RenderHintsEditType.js.map +1 -0
- package/dist/attributes/hints/RenderHintsTechnicalType.d.ts +7 -0
- package/dist/attributes/hints/RenderHintsTechnicalType.js +12 -0
- package/dist/attributes/hints/RenderHintsTechnicalType.js.map +1 -0
- package/dist/attributes/hints/ValueHints.d.ts +6 -0
- package/dist/attributes/hints/ValueHints.js +49 -4
- package/dist/attributes/hints/ValueHints.js.map +1 -1
- package/dist/attributes/hints/index.d.ts +3 -0
- package/dist/attributes/hints/index.js +3 -0
- package/dist/attributes/hints/index.js.map +1 -1
- package/dist/attributes/types/AbstractString.js +1 -1
- package/dist/attributes/types/AbstractString.js.map +1 -1
- package/dist/attributes/types/address/AbstractAddress.d.ts +274 -0
- package/dist/attributes/types/address/AbstractAddress.js +23 -0
- package/dist/attributes/types/address/AbstractAddress.js.map +1 -1
- package/dist/attributes/types/address/DeliveryBoxAddress.d.ts +1685 -0
- package/dist/attributes/types/address/DeliveryBoxAddress.js +38 -0
- package/dist/attributes/types/address/DeliveryBoxAddress.js.map +1 -1
- package/dist/attributes/types/address/PostOfficeBoxAddress.d.ts +1400 -0
- package/dist/attributes/types/address/PostOfficeBoxAddress.js +31 -0
- package/dist/attributes/types/address/PostOfficeBoxAddress.js.map +1 -1
- package/dist/attributes/types/address/StreetAddress.d.ts +1949 -0
- package/dist/attributes/types/address/StreetAddress.js +26 -0
- package/dist/attributes/types/address/StreetAddress.js.map +1 -1
- package/dist/attributes/types/birth/BirthDate.d.ts +1108 -0
- package/dist/attributes/types/birth/BirthDate.js +24 -0
- package/dist/attributes/types/birth/BirthDate.js.map +1 -1
- package/dist/attributes/types/birth/BirthPlace.d.ts +1108 -0
- package/dist/attributes/types/birth/BirthPlace.js +24 -0
- package/dist/attributes/types/birth/BirthPlace.js.map +1 -1
- package/dist/attributes/types/measurements/AbstractLengthMeasurement.d.ts +2 -0
- package/dist/attributes/types/measurements/AbstractLengthMeasurement.js +13 -0
- package/dist/attributes/types/measurements/AbstractLengthMeasurement.js.map +1 -1
- package/dist/attributes/types/measurements/AbstractMeasurement.d.ts +288 -0
- package/dist/attributes/types/measurements/AbstractMeasurement.js +28 -0
- package/dist/attributes/types/measurements/AbstractMeasurement.js.map +1 -1
- package/dist/attributes/types/name/LegalNameDE.d.ts +1670 -0
- package/dist/attributes/types/name/LegalNameDE.js +28 -0
- package/dist/attributes/types/name/LegalNameDE.js.map +1 -1
- package/dist/attributes/types/name/Salutation.d.ts +1670 -0
- package/dist/attributes/types/name/Salutation.js +28 -0
- package/dist/attributes/types/name/Salutation.js.map +1 -1
- package/dist/attributes/types/person/Sex.js.map +1 -1
- package/dist/attributes/types/proprietary/ProprietaryInteger.js +2 -2
- package/dist/attributes/types/proprietary/ProprietaryInteger.js.map +1 -1
- package/dist/buildInformation.js +5 -5
- package/dist/requests/items/createAttribute/CreateAttributeRequestItem.d.ts +4 -0
- package/dist/requests/items/createAttribute/CreateAttributeRequestItem.js +8 -1
- package/dist/requests/items/createAttribute/CreateAttributeRequestItem.js.map +1 -1
- package/lib-web/nmshd.content.js +596 -57
- package/lib-web/nmshd.content.min.js +1 -1
- package/package.json +3 -2
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AbstractComplexValue, AbstractComplexValueJSON, IAbstractComplexValue } from "../../AbstractComplexValue";
|
|
2
|
+
import { RenderHints, ValueHints } from "../../hints";
|
|
2
3
|
export interface AbstractAddressJSON extends AbstractComplexValueJSON {
|
|
3
4
|
recipient: string;
|
|
4
5
|
}
|
|
@@ -6,5 +7,278 @@ export interface IAbstractAddress extends IAbstractComplexValue {
|
|
|
6
7
|
recipient: string;
|
|
7
8
|
}
|
|
8
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
|
+
}>;
|
|
9
281
|
recipient: string;
|
|
282
|
+
static get valueHints(): ValueHints;
|
|
283
|
+
static get renderHints(): RenderHints;
|
|
10
284
|
}
|
|
@@ -8,12 +8,35 @@ 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
|
+
};
|
|
11
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
15
|
exports.AbstractAddress = void 0;
|
|
13
16
|
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
17
|
+
const easy_tsnameof_1 = __importDefault(require("easy-tsnameof"));
|
|
14
18
|
const AbstractComplexValue_1 = require("../../AbstractComplexValue");
|
|
19
|
+
const hints_1 = require("../../hints");
|
|
15
20
|
class AbstractAddress extends AbstractComplexValue_1.AbstractComplexValue {
|
|
21
|
+
static get valueHints() {
|
|
22
|
+
return hints_1.ValueHints.from({
|
|
23
|
+
propertyHints: {
|
|
24
|
+
[this.propertyNames.recipient.$path]: hints_1.ValueHints.from({})
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
static get renderHints() {
|
|
29
|
+
return super.renderHints.copyWith({
|
|
30
|
+
propertyHints: {
|
|
31
|
+
[this.propertyNames.recipient.$path]: hints_1.RenderHints.from({
|
|
32
|
+
editType: hints_1.RenderHintsEditType.InputLike,
|
|
33
|
+
technicalType: hints_1.RenderHintsTechnicalType.String
|
|
34
|
+
})
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
}
|
|
16
38
|
}
|
|
39
|
+
AbstractAddress.propertyNames = (0, easy_tsnameof_1.default)();
|
|
17
40
|
__decorate([
|
|
18
41
|
(0, ts_serval_1.serialize)(),
|
|
19
42
|
(0, ts_serval_1.validate)(),
|
|
@@ -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,kDAAwD;AACxD,kEAAkC;AAClC,qEAAkH;AAClH,uCAAoG;AAUpG,MAAsB,eAAgB,SAAQ,2CAAoB;IAOvD,MAAM,KAAK,UAAU;QACxB,OAAO,kBAAU,CAAC,IAAI,CAAC;YACnB,aAAa,EAAE;gBACX,CAAC,IAAI,CAAC,aAAa,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,kBAAU,CAAC,IAAI,CAAC,EAAE,CAAC;aAC5D;SACJ,CAAC,CAAA;IACN,CAAC;IAEM,MAAM,KAAc,WAAW;QAClC,OAAO,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC;YAC9B,aAAa,EAAE;gBACX,CAAC,IAAI,CAAC,aAAa,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,mBAAW,CAAC,IAAI,CAAC;oBACnD,QAAQ,EAAE,2BAAmB,CAAC,SAAS;oBACvC,aAAa,EAAE,gCAAwB,CAAC,MAAM;iBACjD,CAAC;aACL;SACJ,CAAC,CAAA;IACN,CAAC;;AAvBsB,6BAAa,GAAG,IAAA,uBAAM,GAA0B,CAAA;AAIvE;IAFC,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,GAAE;;kDACa;AAL5B,0CAyBC"}
|