hl-core 0.0.10-beta.5 → 0.0.10-beta.7

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.
@@ -88,6 +88,7 @@ export class IDocument {
88
88
  iin?: string;
89
89
  fileTypeId?: string;
90
90
  fileTypeName?: string;
91
+ fileTypeNameRu?: string;
91
92
  fileId?: string;
92
93
  page?: number;
93
94
  fileName?: string;
@@ -103,6 +104,7 @@ export class IDocument {
103
104
  iin?: string,
104
105
  fileTypeId?: string,
105
106
  fileTypeName?: string,
107
+ fileTypeNameRu?: string,
106
108
  fileId?: string,
107
109
  page?: number,
108
110
  fileName?: string,
@@ -117,6 +119,7 @@ export class IDocument {
117
119
  this.iin = iin;
118
120
  this.fileTypeId = fileTypeId;
119
121
  this.fileTypeName = fileTypeName;
122
+ this.fileTypeNameRu = fileTypeNameRu;
120
123
  this.fileId = fileId;
121
124
  this.page = page;
122
125
  this.fileName = fileName;
@@ -130,9 +133,24 @@ export class IDocument {
130
133
 
131
134
  export class DocumentItem extends IDocument {
132
135
  constructor(
133
- { id, processInstanceId, iin, fileTypeId, fileTypeName, fileId, page, fileName, fileTypeCode, sharedId, signed, signId, certificateDate }: IDocument = new IDocument(),
136
+ {
137
+ id,
138
+ processInstanceId,
139
+ iin,
140
+ fileTypeId,
141
+ fileTypeName,
142
+ fileTypeNameRu,
143
+ fileId,
144
+ page,
145
+ fileName,
146
+ fileTypeCode,
147
+ sharedId,
148
+ signed,
149
+ signId,
150
+ certificateDate,
151
+ }: IDocument = new IDocument(),
134
152
  ) {
135
- super(id, processInstanceId, iin, fileTypeId, fileTypeName, fileId, page, fileName, fileTypeCode, sharedId, signed, signId, certificateDate);
153
+ super(id, processInstanceId, iin, fileTypeId, fileTypeName, fileTypeNameRu, fileId, page, fileName, fileTypeCode, sharedId, signed, signId, certificateDate);
136
154
  }
137
155
  }
138
156
 
package/nuxt.config.ts CHANGED
@@ -12,7 +12,7 @@ export default defineNuxtConfig({
12
12
  },
13
13
 
14
14
  build: {
15
- transpile: ['@vuepic/vue-datepicker', '@microsoft/signalr', 'vue-uuid', 'qrcode.vue'],
15
+ transpile: ['@vuepic/vue-datepicker', '@microsoft/signalr', 'vue-uuid', 'qrcode.vue', 'vue-json-pretty'],
16
16
  },
17
17
 
18
18
  vite: {
@@ -32,12 +32,8 @@ export default defineNuxtConfig({
32
32
  ],
33
33
  },
34
34
 
35
- future: {
36
- typescriptBundlerResolution: false,
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hl-core",
3
- "version": "0.0.10-beta.5",
3
+ "version": "0.0.10-beta.7",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "nuxt.config.ts",
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;