hl-core 0.0.10-beta.5 → 0.0.10-beta.6
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/nuxt.config.ts +2 -6
- package/package.json +1 -1
- package/types/index.ts +0 -51
package/nuxt.config.ts
CHANGED
|
@@ -32,12 +32,8 @@ export default defineNuxtConfig({
|
|
|
32
32
|
],
|
|
33
33
|
},
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
},
|
|
38
|
-
vue: {
|
|
39
|
-
propsDestructure: true,
|
|
40
|
-
},
|
|
35
|
+
vue: { propsDestructure: true },
|
|
36
|
+
future: { typescriptBundlerResolution: false },
|
|
41
37
|
|
|
42
38
|
components: [{ path: './components', prefix: 'Base', pathPrefix: false }],
|
|
43
39
|
});
|
package/package.json
CHANGED
package/types/index.ts
CHANGED
|
@@ -115,57 +115,6 @@ export type Item = {
|
|
|
115
115
|
itemName: string;
|
|
116
116
|
};
|
|
117
117
|
|
|
118
|
-
// Remove
|
|
119
|
-
export type GBDFLResponse = {
|
|
120
|
-
status: string;
|
|
121
|
-
statusName: string;
|
|
122
|
-
content: string;
|
|
123
|
-
};
|
|
124
|
-
|
|
125
|
-
// Remove
|
|
126
|
-
export type FamilyInfoGKB = {
|
|
127
|
-
infoList: InfoListGKB;
|
|
128
|
-
status: string;
|
|
129
|
-
statusName: string;
|
|
130
|
-
content: null;
|
|
131
|
-
};
|
|
132
|
-
|
|
133
|
-
// Remove
|
|
134
|
-
export type InfoListGKB = {
|
|
135
|
-
birthInfos: BirthInfoGKB[];
|
|
136
|
-
};
|
|
137
|
-
|
|
138
|
-
// Remove
|
|
139
|
-
export type BirthInfoGKB = {
|
|
140
|
-
actDate?: string;
|
|
141
|
-
actNumber?: string;
|
|
142
|
-
childBirthDate?: string;
|
|
143
|
-
childIIN?: string;
|
|
144
|
-
childLifeStatus?: number;
|
|
145
|
-
childName?: string;
|
|
146
|
-
childPatronymic?: string;
|
|
147
|
-
childSurName?: string;
|
|
148
|
-
fatherBirthDate?: string;
|
|
149
|
-
fatherLifeStatus?: number;
|
|
150
|
-
fatherIIN?: string;
|
|
151
|
-
fatherName?: string;
|
|
152
|
-
fatherPatronymic?: string;
|
|
153
|
-
fatherSurName?: string;
|
|
154
|
-
marriageActDate?: string;
|
|
155
|
-
marriageActNumber?: string;
|
|
156
|
-
marriageActPlace?: string;
|
|
157
|
-
motherApplication?: number;
|
|
158
|
-
motherBirthDate?: string;
|
|
159
|
-
motherLifeStatus?: string | null;
|
|
160
|
-
motherIIN?: string | null;
|
|
161
|
-
motherName?: string | null;
|
|
162
|
-
motherPatronymic?: string | null;
|
|
163
|
-
motherSurName?: string | null;
|
|
164
|
-
zagsCode?: string;
|
|
165
|
-
zagsNameKZ?: string;
|
|
166
|
-
zagsNameRU?: string;
|
|
167
|
-
};
|
|
168
|
-
|
|
169
118
|
export type AnketaBody = {
|
|
170
119
|
first: EachAnketa;
|
|
171
120
|
second: AnketaSecond[] | null;
|