@saritasa/renewaire-frontend-sdk 0.137.1 → 0.137.3

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/index.d.ts CHANGED
@@ -1796,7 +1796,7 @@ declare enum QualifiedSpecificationStatus {
1796
1796
  * Do not edit the class manually.
1797
1797
  */
1798
1798
  /**
1799
- * Project status.<br />ProjectStatus<br />0 = Started<br />1 = QSSubmitted<br />2 = QuoteRequested<br />3 = CustomPricingRequested<br />4 = QuoteSubmitted<br />5 = AwaitingCustomerApproval<br />6 = SubmittedToRenewAire<br />7 = AwaitingApproval<br />8 = Open<br />9 = OrderChangeRequested<br />10 = OrderCancellationRequested<br />11 = OrderChangeSubmitted<br />12 = OrderCancellationSubmitted<br />13 = OnHold<br />14 = Cancelled<br />15 = Closed<br />16 = TestProject<br />17 = Archived
1799
+ * Project status.<br />ProjectStatus<br />0 = Started<br />1 = QSSubmitted<br />2 = QuoteRequested<br />3 = CustomPricingRequested<br />4 = QuoteSubmitted<br />5 = AwaitingCustomerApproval<br />6 = SubmittedToRenewAire<br />7 = AwaitingApproval<br />8 = Open<br />9 = OrderChangeRequested<br />10 = OrderCancellationRequested<br />11 = OrderChangeSubmitted<br />12 = OrderCancellationSubmitted<br />13 = OnHold<br />14 = Cancelled<br />15 = Closed<br />16 = Ordered<br />17 = Archived
1800
1800
  */
1801
1801
  declare enum ProjectStatus {
1802
1802
  Started = "Started",
@@ -1815,7 +1815,7 @@ declare enum ProjectStatus {
1815
1815
  OnHold = "OnHold",
1816
1816
  Cancelled = "Cancelled",
1817
1817
  Closed = "Closed",
1818
- TestProject = "TestProject",
1818
+ Ordered = "Ordered",
1819
1819
  Archived = "Archived"
1820
1820
  }
1821
1821
 
@@ -1842,7 +1842,7 @@ interface LinkedProjectDto {
1842
1842
  */
1843
1843
  projectNumber: string;
1844
1844
  /**
1845
- * Project status.<br />ProjectStatus<br />0 = Started<br />1 = QSSubmitted<br />2 = QuoteRequested<br />3 = CustomPricingRequested<br />4 = QuoteSubmitted<br />5 = AwaitingCustomerApproval<br />6 = SubmittedToRenewAire<br />7 = AwaitingApproval<br />8 = Open<br />9 = OrderChangeRequested<br />10 = OrderCancellationRequested<br />11 = OrderChangeSubmitted<br />12 = OrderCancellationSubmitted<br />13 = OnHold<br />14 = Cancelled<br />15 = Closed<br />16 = TestProject<br />17 = Archived
1845
+ * Project status.<br />ProjectStatus<br />0 = Started<br />1 = QSSubmitted<br />2 = QuoteRequested<br />3 = CustomPricingRequested<br />4 = QuoteSubmitted<br />5 = AwaitingCustomerApproval<br />6 = SubmittedToRenewAire<br />7 = AwaitingApproval<br />8 = Open<br />9 = OrderChangeRequested<br />10 = OrderCancellationRequested<br />11 = OrderChangeSubmitted<br />12 = OrderCancellationSubmitted<br />13 = OnHold<br />14 = Cancelled<br />15 = Closed<br />16 = Ordered<br />17 = Archived
1846
1846
  */
1847
1847
  status: ProjectStatus;
1848
1848
  /**
@@ -2174,6 +2174,22 @@ interface ProjectBidStatusDto {
2174
2174
  * Project revision attachments.
2175
2175
  */
2176
2176
  attachments: Array<ProjectBidStatusAttachmentDto>;
2177
+ /**
2178
+ * Bid status creation date/time.
2179
+ */
2180
+ createdAt: string;
2181
+ /**
2182
+ * 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.
2183
+ */
2184
+ createdByUser: IdNameDto;
2185
+ /**
2186
+ * Bid status updated at date/time.
2187
+ */
2188
+ updatedAt: string | null;
2189
+ /**
2190
+ * 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.
2191
+ */
2192
+ updatedByUser: IdNameDto | null;
2177
2193
  /**
2178
2194
  * If RenewAire.Cores.UseCases.Projects.Dtos.BidStatus.ProjectBidStatusDto.Status is RenewAire.Cores.Domain.Projects.ProjectBidStatusType.Lost, states the reason why the revision was lost.
2179
2195
  */
@@ -2454,7 +2470,7 @@ interface ProjectDto {
2454
2470
  */
2455
2471
  revisionNotes: string;
2456
2472
  /**
2457
- * Project status.<br />ProjectStatus<br />0 = Started<br />1 = QSSubmitted<br />2 = QuoteRequested<br />3 = CustomPricingRequested<br />4 = QuoteSubmitted<br />5 = AwaitingCustomerApproval<br />6 = SubmittedToRenewAire<br />7 = AwaitingApproval<br />8 = Open<br />9 = OrderChangeRequested<br />10 = OrderCancellationRequested<br />11 = OrderChangeSubmitted<br />12 = OrderCancellationSubmitted<br />13 = OnHold<br />14 = Cancelled<br />15 = Closed<br />16 = TestProject<br />17 = Archived
2473
+ * Project status.<br />ProjectStatus<br />0 = Started<br />1 = QSSubmitted<br />2 = QuoteRequested<br />3 = CustomPricingRequested<br />4 = QuoteSubmitted<br />5 = AwaitingCustomerApproval<br />6 = SubmittedToRenewAire<br />7 = AwaitingApproval<br />8 = Open<br />9 = OrderChangeRequested<br />10 = OrderCancellationRequested<br />11 = OrderChangeSubmitted<br />12 = OrderCancellationSubmitted<br />13 = OnHold<br />14 = Cancelled<br />15 = Closed<br />16 = Ordered<br />17 = Archived
2458
2474
  */
2459
2475
  status: ProjectStatus;
2460
2476
  /**
@@ -4141,7 +4157,7 @@ interface SearchProjectDto {
4141
4157
  */
4142
4158
  name?: string | null;
4143
4159
  /**
4144
- * ProjectStatus<br />0 = Started<br />1 = QSSubmitted<br />2 = QuoteRequested<br />3 = CustomPricingRequested<br />4 = QuoteSubmitted<br />5 = AwaitingCustomerApproval<br />6 = SubmittedToRenewAire<br />7 = AwaitingApproval<br />8 = Open<br />9 = OrderChangeRequested<br />10 = OrderCancellationRequested<br />11 = OrderChangeSubmitted<br />12 = OrderCancellationSubmitted<br />13 = OnHold<br />14 = Cancelled<br />15 = Closed<br />16 = TestProject<br />17 = Archived
4160
+ * ProjectStatus<br />0 = Started<br />1 = QSSubmitted<br />2 = QuoteRequested<br />3 = CustomPricingRequested<br />4 = QuoteSubmitted<br />5 = AwaitingCustomerApproval<br />6 = SubmittedToRenewAire<br />7 = AwaitingApproval<br />8 = Open<br />9 = OrderChangeRequested<br />10 = OrderCancellationRequested<br />11 = OrderChangeSubmitted<br />12 = OrderCancellationSubmitted<br />13 = OnHold<br />14 = Cancelled<br />15 = Closed<br />16 = Ordered<br />17 = Archived
4145
4161
  */
4146
4162
  status?: ProjectStatus | null;
4147
4163
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saritasa/renewaire-frontend-sdk",
3
- "version": "0.137.1",
4
- "description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.137.1+9e365acd6b22ea322035a2d4686962b6f7beab06)",
3
+ "version": "0.137.3",
4
+ "description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.137.3+6ac3f757663f5acb2f35ae59cef2af194c05e859)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
7
7
  "type": "git",