@saritasa/renewaire-frontend-sdk 0.296.3 → 0.297.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
|
@@ -5723,7 +5723,7 @@ class ProjectLinesApiService extends BaseService {
|
|
|
5723
5723
|
});
|
|
5724
5724
|
}
|
|
5725
5725
|
projectLinesCreateProjectLine(requestParameters, observe = "body", reportProgress = false, options) {
|
|
5726
|
-
const
|
|
5726
|
+
const createLineDto = requestParameters?.createLineDto;
|
|
5727
5727
|
let localVarHeaders = this.defaultHeaders;
|
|
5728
5728
|
// authentication (Bearer) required
|
|
5729
5729
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -5765,7 +5765,7 @@ class ProjectLinesApiService extends BaseService {
|
|
|
5765
5765
|
const { basePath, withCredentials } = this.configuration;
|
|
5766
5766
|
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
5767
5767
|
context: localVarHttpContext,
|
|
5768
|
-
body:
|
|
5768
|
+
body: createLineDto,
|
|
5769
5769
|
responseType: responseType_,
|
|
5770
5770
|
...(withCredentials ? { withCredentials } : {}),
|
|
5771
5771
|
headers: localVarHeaders,
|
|
@@ -14721,13 +14721,14 @@ var ProjectLineStatus;
|
|
|
14721
14721
|
* Do not edit the class manually.
|
|
14722
14722
|
*/
|
|
14723
14723
|
/**
|
|
14724
|
-
* Line type.<br />ProjectLineType<br />0 =
|
|
14724
|
+
* Line type.<br />ProjectLineType<br />0 = Unit<br />1 = Accessory<br />2 = ServicePart<br />3 = QuickShip
|
|
14725
14725
|
*/
|
|
14726
14726
|
var ProjectLineType;
|
|
14727
14727
|
(function (ProjectLineType) {
|
|
14728
|
-
ProjectLineType["
|
|
14729
|
-
ProjectLineType["CustomLine"] = "CustomLine";
|
|
14728
|
+
ProjectLineType["Unit"] = "Unit";
|
|
14730
14729
|
ProjectLineType["Accessory"] = "Accessory";
|
|
14730
|
+
ProjectLineType["ServicePart"] = "ServicePart";
|
|
14731
|
+
ProjectLineType["QuickShip"] = "QuickShip";
|
|
14731
14732
|
})(ProjectLineType || (ProjectLineType = {}));
|
|
14732
14733
|
|
|
14733
14734
|
/**
|