hl-core 0.0.10-beta.6 → 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.
- package/composables/classes.ts +20 -2
- package/nuxt.config.ts +1 -1
- package/package.json +1 -1
package/composables/classes.ts
CHANGED
|
@@ -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
|
-
{
|
|
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: {
|