@saritasa/renewaire-frontend-sdk 0.422.0 → 0.424.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.
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
- # @@saritasa/renewaire-frontend-sdk@0.422.0
1
+ # @@saritasa/renewaire-frontend-sdk@0.424.0
2
2
 
3
3
  ```bash
4
- npm install @saritasa/renewaire-frontend-sdk@0.422.0 --save
4
+ npm install @saritasa/renewaire-frontend-sdk@0.424.0 --save
5
5
  ```
@@ -8806,6 +8806,44 @@ class ProjectRevisionsApiService extends BaseService {
8806
8806
  reportProgress: reportProgress,
8807
8807
  });
8808
8808
  }
8809
+ projectRevisionsGetOrderSubmissionSummaryUrl(requestParameters, observe = "body", reportProgress = false, options) {
8810
+ const projectRevisionId = requestParameters?.projectRevisionId;
8811
+ if (projectRevisionId === null || projectRevisionId === undefined) {
8812
+ throw new Error("Required parameter projectRevisionId was null or undefined when calling projectRevisionsGetOrderSubmissionSummaryUrl.");
8813
+ }
8814
+ let localVarHeaders = this.defaultHeaders;
8815
+ // authentication (Bearer) required
8816
+ localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
8817
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
8818
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
8819
+ localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
8820
+ }
8821
+ const localVarHttpContext = options?.context ?? new HttpContext();
8822
+ const localVarTransferCache = options?.transferCache ?? true;
8823
+ let responseType_ = "json";
8824
+ if (localVarHttpHeaderAcceptSelected) {
8825
+ if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
8826
+ responseType_ = "text";
8827
+ }
8828
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
8829
+ responseType_ = "json";
8830
+ }
8831
+ else {
8832
+ responseType_ = "blob";
8833
+ }
8834
+ }
8835
+ let localVarPath = `/api/project-revisions/${this.configuration.encodeParam({ name: "projectRevisionId", value: projectRevisionId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}/order-submission-summary`;
8836
+ const { basePath, withCredentials } = this.configuration;
8837
+ return this.httpClient.request("get", `${basePath}${localVarPath}`, {
8838
+ context: localVarHttpContext,
8839
+ responseType: responseType_,
8840
+ ...(withCredentials ? { withCredentials } : {}),
8841
+ headers: localVarHeaders,
8842
+ observe: observe,
8843
+ transferCache: localVarTransferCache,
8844
+ reportProgress: reportProgress,
8845
+ });
8846
+ }
8809
8847
  projectRevisionsGetProjectRevisionLogs(requestParameters, observe = "body", reportProgress = false, options) {
8810
8848
  const projectRevisionId = requestParameters?.projectRevisionId;
8811
8849
  if (projectRevisionId === null || projectRevisionId === undefined) {
@@ -17076,7 +17114,7 @@ var FeedbackType;
17076
17114
  * Do not edit the class manually.
17077
17115
  */
17078
17116
  /**
17079
- * File type.<br />FileType<br />0 = RsdRegionDocument<br />1 = ControllerProgram<br />2 = RepSalesReport<br />3 = ProjectNoteAttachment<br />4 = BidStatusAttachment<br />5 = DownloadLayerFile<br />6 = QualifiedSpecification<br />7 = ProjectDiscountAttachment<br />8 = ProjectQuoteLog<br />9 = PurchaseOrderAttachment
17117
+ * File type.<br />FileType<br />0 = RsdRegionDocument<br />1 = ControllerProgram<br />2 = RepSalesReport<br />3 = ProjectNoteAttachment<br />4 = BidStatusAttachment<br />5 = DownloadLayerFile<br />6 = QualifiedSpecification<br />7 = ProjectDiscountAttachment<br />8 = ProjectQuoteLog<br />9 = PurchaseOrderAttachment<br />10 = CsiSpecsReport
17080
17118
  */
17081
17119
  var FileType;
17082
17120
  (function (FileType) {
@@ -17090,6 +17128,7 @@ var FileType;
17090
17128
  FileType["ProjectDiscountAttachment"] = "ProjectDiscountAttachment";
17091
17129
  FileType["ProjectQuoteLog"] = "ProjectQuoteLog";
17092
17130
  FileType["PurchaseOrderAttachment"] = "PurchaseOrderAttachment";
17131
+ FileType["CsiSpecsReport"] = "CsiSpecsReport";
17093
17132
  })(FileType || (FileType = {}));
17094
17133
 
17095
17134
  /**
@@ -17248,11 +17287,13 @@ var LeadTimeType;
17248
17287
  * Do not edit the class manually.
17249
17288
  */
17250
17289
  /**
17251
- * Project line download file types.<br />LineDownloadFileType<br />1 = Ahri1060Report
17290
+ * Project line download file types.<br />LineDownloadFileType<br />1 = Ahri1060Report<br />2 = CsiSpecsPdf<br />3 = CsiSpecsDocx
17252
17291
  */
17253
17292
  var LineDownloadFileType;
17254
17293
  (function (LineDownloadFileType) {
17255
17294
  LineDownloadFileType["Ahri1060Report"] = "Ahri1060Report";
17295
+ LineDownloadFileType["CsiSpecsPdf"] = "CsiSpecsPdf";
17296
+ LineDownloadFileType["CsiSpecsDocx"] = "CsiSpecsDocx";
17256
17297
  })(LineDownloadFileType || (LineDownloadFileType = {}));
17257
17298
 
17258
17299
  /**