@dangl/ava-model 2.25.6-add-basic-npm-pa0019 → 2.25.6-add-basic-npm-pa0021

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/src/ava-models.ts CHANGED
@@ -1213,7 +1213,6 @@ export interface IServiceSpecificationDto {
1213
1213
  /** Base interface definition for elements within an ElementContainerBase. */
1214
1214
  export abstract class IElementDto implements IIElementDto {
1215
1215
  elementType!: string;
1216
- elementTypeDiscriminator?: string;
1217
1216
  /** Elements GUID identifier. */
1218
1217
  id!: string;
1219
1218
  /** This is used to store the GAEB XML Id within this IElement. This data is not used for any calculations or evaluations but only for GAEB serialization and deserialization. */
@@ -1777,14 +1776,14 @@ elementType = 'Position';
1777
1776
  }
1778
1777
  }
1779
1778
 
1780
- static fromJS(data: any): PositionDto {
1779
+ static override fromJS(data: any): PositionDto {
1781
1780
  data = typeof data === 'object' ? data : {};
1782
1781
  let result = new PositionDto();
1783
1782
  result.init!(data);
1784
1783
  return result;
1785
1784
  }
1786
1785
 
1787
- toJSON?(data?: any) {
1786
+ override toJSON?(data?: any) {
1788
1787
  data = typeof data === 'object' ? data : {};
1789
1788
  data["unitPrice"] = this.unitPrice;
1790
1789
  data["unitPriceOverride"] = this.unitPriceOverride;
@@ -3678,14 +3677,14 @@ elementType = 'ExecutionDescription';
3678
3677
  }
3679
3678
  }
3680
3679
 
3681
- static fromJS(data: any): ExecutionDescriptionDto {
3680
+ static override fromJS(data: any): ExecutionDescriptionDto {
3682
3681
  data = typeof data === 'object' ? data : {};
3683
3682
  let result = new ExecutionDescriptionDto();
3684
3683
  result.init!(data);
3685
3684
  return result;
3686
3685
  }
3687
3686
 
3688
- toJSON?(data?: any) {
3687
+ override toJSON?(data?: any) {
3689
3688
  data = typeof data === 'object' ? data : {};
3690
3689
  if (Array.isArray(this.blocks)) {
3691
3690
  data["blocks"] = [];
@@ -3782,14 +3781,14 @@ elementType = 'NoteText';
3782
3781
  }
3783
3782
  }
3784
3783
 
3785
- static fromJS(data: any): NoteTextDto {
3784
+ static override fromJS(data: any): NoteTextDto {
3786
3785
  data = typeof data === 'object' ? data : {};
3787
3786
  let result = new NoteTextDto();
3788
3787
  result.init!(data);
3789
3788
  return result;
3790
3789
  }
3791
3790
 
3792
- toJSON?(data?: any) {
3791
+ override toJSON?(data?: any) {
3793
3792
  data = typeof data === 'object' ? data : {};
3794
3793
  data["isOpeningText"] = this.isOpeningText;
3795
3794
  data["isClosingText"] = this.isClosingText;
@@ -4047,14 +4046,14 @@ elementType = 'ServiceSpecificationGroup';
4047
4046
  }
4048
4047
  }
4049
4048
 
4050
- static fromJS(data: any): ServiceSpecificationGroupDto {
4049
+ static override fromJS(data: any): ServiceSpecificationGroupDto {
4051
4050
  data = typeof data === 'object' ? data : {};
4052
4051
  let result = new ServiceSpecificationGroupDto();
4053
4052
  result.init!(data);
4054
4053
  return result;
4055
4054
  }
4056
4055
 
4057
- toJSON?(data?: any) {
4056
+ override toJSON?(data?: any) {
4058
4057
  data = typeof data === 'object' ? data : {};
4059
4058
  data["projectHourlyWage"] = this.projectHourlyWage;
4060
4059
  data["projectTaxRate"] = this.projectTaxRate;
package/src/version.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  // This file is automatically generated as part of the build process
2
2
 
3
3
  export const avaModelsVersion = {
4
- version: "2.25.6-add-basic-npm-pa0019",
5
- commitInfo: "Branch.feature-add-basic-npm-package.Sha.2c9a15939b2d02924666fc01926a085c7e2dac16",
4
+ version: "2.25.6-add-basic-npm-pa0021",
5
+ commitInfo: "Branch.feature-add-basic-npm-package.Sha.029137f93c2e502fafc74b3661d8eff1f1bd0b03",
6
6
  commitDate: "2025-08-07",
7
- commitHash: "2c9a15939b2d02924666fc01926a085c7e2dac16",
8
- informationalVersion: "2.25.6-add-basic-npm-package.19+Branch.feature-add-basic-npm-package.Sha.2c9a15939b2d02924666fc01926a085c7e2dac16",
9
- buildDateUtc: new Date(Date.UTC(2025, 7, 7, 12, 7, 33))
7
+ commitHash: "029137f93c2e502fafc74b3661d8eff1f1bd0b03",
8
+ informationalVersion: "2.25.6-add-basic-npm-package.21+Branch.feature-add-basic-npm-package.Sha.029137f93c2e502fafc74b3661d8eff1f1bd0b03",
9
+ buildDateUtc: new Date(Date.UTC(2025, 7, 7, 20, 34, 9))
10
10
  }
@@ -1,3 +0,0 @@
1
- # @dangl/ava-model
2
-
3
- Basic npm package for Dangl.AVA models