@saritasa/renewaire-frontend-sdk 0.265.1 → 0.267.0

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.
Files changed (3) hide show
  1. package/README.md +2 -2
  2. package/index.d.ts +38 -38
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
- # @@saritasa/renewaire-frontend-sdk@0.265.1
1
+ # @@saritasa/renewaire-frontend-sdk@0.267.0
2
2
 
3
3
  ```bash
4
- npm install @saritasa/renewaire-frontend-sdk@0.265.1 --save
4
+ npm install @saritasa/renewaire-frontend-sdk@0.267.0 --save
5
5
  ```
package/index.d.ts CHANGED
@@ -2786,7 +2786,7 @@ interface LinkedProjectDto {
2786
2786
  */
2787
2787
  status: ProjectStatus;
2788
2788
  /**
2789
- * QualifiedSpecificationStatus<br />0 = Approved<br />1 = ApprovedNoDiscount<br />2 = MoreInfoNeeded<br />3 = Rejected<br />4 = Cancelled
2789
+ * QualifiedSpecificationStatus<br />0 = Approved<br />1 = ApprovedNoDiscount<br />2 = MoreInfoNeeded<br />3 = Rejected<br />4 = Cancelled<br />Required permissions: SystemAdmin | ViewQsApplications
2790
2790
  */
2791
2791
  qsStatus: QualifiedSpecificationStatus | null;
2792
2792
  /**
@@ -3773,10 +3773,6 @@ interface ProjectDesignConditionsDto {
3773
3773
  * DTO for RenewAire.Cores.Domain.Distance.
3774
3774
  */
3775
3775
  elevation: DistanceDto;
3776
- /**
3777
- * Climate zone. It if filled from weather stations list.
3778
- */
3779
- climateZone: string;
3780
3776
  /**
3781
3777
  * Design weather condition DTO for RenewAire.Cores.Domain.Projects.DesignWeatherCondition.
3782
3778
  */
@@ -3809,6 +3805,10 @@ interface ProjectDesignConditionsDto {
3809
3805
  * AshraeVersion<br />0 = V2007<br />1 = V2010<br />2 = V2013<br />3 = V2016<br />4 = V2019<br />5 = V2022
3810
3806
  */
3811
3807
  ashraeVersion?: AshraeVersion | null;
3808
+ /**
3809
+ * <br />Required permissions: SystemAdmin | ViewRenewAireOnlyData
3810
+ */
3811
+ climateZone?: string | null;
3812
3812
  }
3813
3813
 
3814
3814
  /**
@@ -4037,21 +4037,21 @@ interface ProjectQualifiedSpecificationDto {
4037
4037
  */
4038
4038
  attachments: Array<ProjectQualifiedSpecificationAttachmentDto>;
4039
4039
  /**
4040
- * QualifiedSpecificationStatus<br />0 = Approved<br />1 = ApprovedNoDiscount<br />2 = MoreInfoNeeded<br />3 = Rejected<br />4 = Cancelled
4040
+ * QualifiedSpecificationStatus<br />0 = Approved<br />1 = ApprovedNoDiscount<br />2 = MoreInfoNeeded<br />3 = Rejected<br />4 = Cancelled<br />Required permissions: SystemAdmin | ApproveQsApplications
4041
4041
  */
4042
4042
  qsStatus: QualifiedSpecificationStatus | null;
4043
4043
  /**
4044
- * ESS bonus amount. Auto-calculated, but can be overwritten.
4044
+ * <br />Required permissions: SystemAdmin | QsBonus
4045
4045
  */
4046
- essBonusAmount: number;
4046
+ essBonusAmount: number | null;
4047
4047
  /**
4048
- * ESS bonus amount. Override value.
4048
+ * <br />Required permissions: SystemAdmin | QsBonus
4049
4049
  */
4050
4050
  essBonusAmountOverride: number | null;
4051
4051
  /**
4052
- * TSS review notes.
4052
+ * <br />Required permissions: SystemAdmin | ApproveQsApplications
4053
4053
  */
4054
- tssNotes: string;
4054
+ tssNotes: string | null;
4055
4055
  /**
4056
4056
  * ESS project bid date.
4057
4057
  */
@@ -4389,10 +4389,6 @@ interface ProjectQuoteDto {
4389
4389
  * Should show unit configuration memo.
4390
4390
  */
4391
4391
  unitConfigurationMemo: boolean;
4392
- /**
4393
- * Should add message \"Please send all PO to renewaireorders@renewaire.com\" to the quote. Only for RA, REP, RSD.
4394
- */
4395
- includeTextToSendPOToRenewAire: boolean;
4396
4392
  /**
4397
4393
  * Quote accessories view.<br />ProjectQuoteLogAccessoriesView<br />0 = OrderedByProjectLineNumber<br />1 = GroupedByLinkedErvLines
4398
4394
  */
@@ -4414,17 +4410,21 @@ interface ProjectQuoteDto {
4414
4410
  */
4415
4411
  pricing?: ProjectQuotePricing | null;
4416
4412
  /**
4417
- * ProjectQuoteMultiplier<br />0 = ListPrice<br />1 = Custom
4413
+ * ProjectQuoteMultiplier<br />0 = ListPrice<br />1 = Custom<br />Required permissions: SystemAdmin | ViewExtraQuoteOptions
4418
4414
  */
4419
4415
  multiplier?: ProjectQuoteMultiplier | null;
4420
4416
  /**
4421
- * Custom multiplier if RenewAire.Cores.Domain.Projects.ProjectQuote.Multiplier is custom.
4417
+ * <br />Required permissions: SystemAdmin | ViewExtraQuoteOptions
4422
4418
  */
4423
4419
  customMultiplier?: number | null;
4424
4420
  /**
4425
4421
  * Markup. Negative values are allowed.
4426
4422
  */
4427
4423
  markup?: number | null;
4424
+ /**
4425
+ * <br />Required permissions: SystemAdmin | ViewExtraQuoteOptions
4426
+ */
4427
+ includeTextToSendPOToRenewAire?: boolean | null;
4428
4428
  }
4429
4429
 
4430
4430
  /**
@@ -4594,9 +4594,9 @@ interface ProjectDto {
4594
4594
  */
4595
4595
  shippingNotesUpdatedAt: string;
4596
4596
  /**
4597
- * Project quote DTO.
4597
+ * Project quote DTO.<br />Required permissions: SystemAdmin | GenerateQuotes
4598
4598
  */
4599
- quote: ProjectQuoteDto;
4599
+ quote: ProjectQuoteDto | null;
4600
4600
  /**
4601
4601
  * Represents a data transfer object containing an identifier and a name. It is intended to be used in simple dropdown lists or in table views where we need to display a link to the object.
4602
4602
  */
@@ -6580,10 +6580,6 @@ interface SaveUserDesignConditionsDto {
6580
6580
  * DTO for RenewAire.Cores.Domain.Distance.
6581
6581
  */
6582
6582
  elevation: DistanceDto;
6583
- /**
6584
- * Climate zone. It if filled from weather stations list.
6585
- */
6586
- climateZone: string;
6587
6583
  /**
6588
6584
  * Design weather condition DTO for RenewAire.Cores.Domain.Projects.DesignWeatherCondition.
6589
6585
  */
@@ -6616,6 +6612,10 @@ interface SaveUserDesignConditionsDto {
6616
6612
  * AshraeVersion<br />0 = V2007<br />1 = V2010<br />2 = V2013<br />3 = V2016<br />4 = V2019<br />5 = V2022<br />Required permissions: SystemAdmin | ViewAshraeOptions
6617
6613
  */
6618
6614
  ashraeVersion?: AshraeVersion | null;
6615
+ /**
6616
+ * <br />Required permissions: SystemAdmin | ViewRenewAireOnlyData
6617
+ */
6618
+ climateZone?: string | null;
6619
6619
  }
6620
6620
 
6621
6621
  /**
@@ -8251,10 +8251,6 @@ interface UpdateProjectDesignConditionsDto {
8251
8251
  * DTO for RenewAire.Cores.Domain.Distance.
8252
8252
  */
8253
8253
  elevation: DistanceDto;
8254
- /**
8255
- * Climate zone. It if filled from weather stations list.
8256
- */
8257
- climateZone: string;
8258
8254
  /**
8259
8255
  * Design weather condition DTO for RenewAire.Cores.Domain.Projects.DesignWeatherCondition.
8260
8256
  */
@@ -8287,6 +8283,10 @@ interface UpdateProjectDesignConditionsDto {
8287
8283
  * AshraeVersion<br />0 = V2007<br />1 = V2010<br />2 = V2013<br />3 = V2016<br />4 = V2019<br />5 = V2022
8288
8284
  */
8289
8285
  ashraeVersion?: AshraeVersion | null;
8286
+ /**
8287
+ * <br />Required permissions: SystemAdmin | ViewRenewAireOnlyData
8288
+ */
8289
+ climateZone?: string | null;
8290
8290
  }
8291
8291
 
8292
8292
  /**
@@ -8466,10 +8466,6 @@ interface UpdateProjectQuoteDto {
8466
8466
  * Should show unit configuration memo.
8467
8467
  */
8468
8468
  unitConfigurationMemo: boolean;
8469
- /**
8470
- * Should add message \"Please send all PO to renewaireorders@renewaire.com\" to the quote. Only for RA, REP, RSD.
8471
- */
8472
- includeTextToSendPOToRenewAire: boolean;
8473
8469
  /**
8474
8470
  * Quote accessories view.<br />ProjectQuoteLogAccessoriesView<br />0 = OrderedByProjectLineNumber<br />1 = GroupedByLinkedErvLines
8475
8471
  */
@@ -8487,17 +8483,21 @@ interface UpdateProjectQuoteDto {
8487
8483
  */
8488
8484
  pricing?: ProjectQuotePricing | null;
8489
8485
  /**
8490
- * ProjectQuoteMultiplier<br />0 = ListPrice<br />1 = Custom
8486
+ * ProjectQuoteMultiplier<br />0 = ListPrice<br />1 = Custom<br />Required permissions: SystemAdmin | ViewExtraQuoteOptions
8491
8487
  */
8492
8488
  multiplier?: ProjectQuoteMultiplier | null;
8493
8489
  /**
8494
- * Custom multiplier if RenewAire.Cores.Domain.Projects.ProjectQuote.Multiplier is custom.
8490
+ * <br />Required permissions: SystemAdmin | ViewExtraQuoteOptions
8495
8491
  */
8496
8492
  customMultiplier?: number | null;
8497
8493
  /**
8498
8494
  * Markup. Negative values are allowed.
8499
8495
  */
8500
8496
  markup?: number | null;
8497
+ /**
8498
+ * <br />Required permissions: SystemAdmin | ViewExtraQuoteOptions
8499
+ */
8500
+ includeTextToSendPOToRenewAire?: boolean | null;
8501
8501
  }
8502
8502
 
8503
8503
  /**
@@ -8641,14 +8641,14 @@ interface UpdateProjectRevisionDto {
8641
8641
  * Update project facility DTO.
8642
8642
  */
8643
8643
  facility: UpdateProjectFacilityDto;
8644
- /**
8645
- * DTO to update RenewAire.Cores.Domain.Projects.ProjectRevision.SoldTo.
8646
- */
8647
- soldTo: UpdateProjectSoldToDto;
8648
8644
  /**
8649
8645
  * Project shipping notes.
8650
8646
  */
8651
8647
  shippingNotes: string;
8648
+ /**
8649
+ * DTO to update RenewAire.Cores.Domain.Projects.ProjectRevision.SoldTo.<br />Required permissions: SystemAdmin | ViewSoldToSelectionAndInformation
8650
+ */
8651
+ soldTo?: UpdateProjectSoldToDto | null;
8652
8652
  }
8653
8653
 
8654
8654
  /**
@@ -8911,7 +8911,7 @@ interface UserDetailsDto {
8911
8911
  */
8912
8912
  userPermissions?: Array<IdNameDto> | null;
8913
8913
  /**
8914
- * DTO for user quote settings.
8914
+ * DTO for user quote settings.<br />Required permissions: SystemAdmin | GenerateQuotes
8915
8915
  */
8916
8916
  quote?: UserQuoteDto | null;
8917
8917
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saritasa/renewaire-frontend-sdk",
3
- "version": "0.265.1",
4
- "description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.265.1+bfb02579dd9b3479e76395a8e8515147a67ea932)",
3
+ "version": "0.267.0",
4
+ "description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.265.1+8cc8e5cd66f17210d174037d8e3fb0fe1212c407)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
7
7
  "type": "git",