hl-core 0.0.10-beta.41-3 → 0.0.10-beta.41-4

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.
@@ -1353,39 +1353,6 @@ export class BaseGroupClass {
1353
1353
  }
1354
1354
  }
1355
1355
 
1356
- export class PhysGroupClass extends BaseGroupClass {
1357
- lastName: string;
1358
- firstName: string;
1359
- middleName: string;
1360
- birthDate: string;
1361
- gender: Value;
1362
- placeOfBirth: Value;
1363
- workDetails: { workplace: string; positionRu: string; positionKz: string; jobDuties: string };
1364
- hasContactPerson: boolean;
1365
- authorityDetails: {
1366
- basis: Value;
1367
- documentNumber: string | null;
1368
- date: string | null;
1369
- };
1370
-
1371
- constructor() {
1372
- super();
1373
- this.lastName = '';
1374
- this.firstName = '';
1375
- this.middleName = '';
1376
- this.birthDate = '';
1377
- this.gender = new Value();
1378
- this.placeOfBirth = new Value();
1379
- this.workDetails = { workplace: '', positionRu: '', positionKz: '', jobDuties: '' };
1380
- this.hasContactPerson = false;
1381
- this.authorityDetails = {
1382
- basis: new Value(),
1383
- documentNumber: null,
1384
- date: null,
1385
- };
1386
- }
1387
- }
1388
-
1389
1356
  export class GroupMember extends PhysGroupClass {
1390
1357
  isLeader: boolean;
1391
1358
 
@@ -1834,3 +1801,36 @@ export class Member extends Person {
1834
1801
  return this.validateFullName() ? (this.lastName + ' ' + this.firstName + ' ' + this.middleName != '' ? this.middleName?.charAt(0) : '') : null;
1835
1802
  }
1836
1803
  }
1804
+
1805
+ export class PhysGroupClass extends BaseGroupClass {
1806
+ lastName: string;
1807
+ firstName: string;
1808
+ middleName: string;
1809
+ birthDate: string;
1810
+ gender: Value;
1811
+ placeOfBirth: Value;
1812
+ workDetails: { workplace: string; positionRu: string; positionKz: string; jobDuties: string };
1813
+ hasContactPerson: boolean;
1814
+ authorityDetails: {
1815
+ basis: Value;
1816
+ documentNumber: string | null;
1817
+ date: string | null;
1818
+ };
1819
+
1820
+ constructor() {
1821
+ super();
1822
+ this.lastName = '';
1823
+ this.firstName = '';
1824
+ this.middleName = '';
1825
+ this.birthDate = '';
1826
+ this.gender = new Value();
1827
+ this.placeOfBirth = new Value();
1828
+ this.workDetails = { workplace: '', positionRu: '', positionKz: '', jobDuties: '' };
1829
+ this.hasContactPerson = false;
1830
+ this.authorityDetails = {
1831
+ basis: new Value(),
1832
+ documentNumber: null,
1833
+ date: null,
1834
+ };
1835
+ }
1836
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hl-core",
3
- "version": "0.0.10-beta.41-3",
3
+ "version": "0.0.10-beta.41-4",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "nuxt.config.ts",