@saritasa/renewaire-frontend-sdk 0.117.0 → 0.118.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
|
@@ -2186,6 +2186,178 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.6", ngImpor
|
|
|
2186
2186
|
type: Optional
|
|
2187
2187
|
}] }] });
|
|
2188
2188
|
|
|
2189
|
+
/**
|
|
2190
|
+
* RenewAire CORES API
|
|
2191
|
+
*
|
|
2192
|
+
* Contact: renewaire@saritasa.com
|
|
2193
|
+
*
|
|
2194
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2195
|
+
* https://openapi-generator.tech
|
|
2196
|
+
* Do not edit the class manually.
|
|
2197
|
+
*/
|
|
2198
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
2199
|
+
class ProjectNotesApiService extends BaseService {
|
|
2200
|
+
httpClient;
|
|
2201
|
+
constructor(httpClient, basePath, configuration) {
|
|
2202
|
+
super(basePath, configuration);
|
|
2203
|
+
this.httpClient = httpClient;
|
|
2204
|
+
}
|
|
2205
|
+
projectNotesCreateProjectNote(requestParameters, observe = "body", reportProgress = false, options) {
|
|
2206
|
+
const projectId = requestParameters?.projectId;
|
|
2207
|
+
const saveProjectNoteDto = requestParameters?.saveProjectNoteDto;
|
|
2208
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
2209
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, projectId, "projectId");
|
|
2210
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2211
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
2212
|
+
this.configuration.selectHeaderAccept([
|
|
2213
|
+
"text/plain",
|
|
2214
|
+
"application/json",
|
|
2215
|
+
"text/json",
|
|
2216
|
+
]);
|
|
2217
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2218
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
2219
|
+
}
|
|
2220
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2221
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2222
|
+
// to determine the Content-Type header
|
|
2223
|
+
const consumes = [
|
|
2224
|
+
"application/json-patch+json",
|
|
2225
|
+
"application/json",
|
|
2226
|
+
"text/json",
|
|
2227
|
+
"application/*+json",
|
|
2228
|
+
];
|
|
2229
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
2230
|
+
if (httpContentTypeSelected !== undefined) {
|
|
2231
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
2232
|
+
}
|
|
2233
|
+
let responseType_ = "json";
|
|
2234
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2235
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
2236
|
+
responseType_ = "text";
|
|
2237
|
+
}
|
|
2238
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2239
|
+
responseType_ = "json";
|
|
2240
|
+
}
|
|
2241
|
+
else {
|
|
2242
|
+
responseType_ = "blob";
|
|
2243
|
+
}
|
|
2244
|
+
}
|
|
2245
|
+
let localVarPath = `/api/project-notes`;
|
|
2246
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2247
|
+
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
2248
|
+
context: localVarHttpContext,
|
|
2249
|
+
body: saveProjectNoteDto,
|
|
2250
|
+
params: localVarQueryParameters,
|
|
2251
|
+
responseType: responseType_,
|
|
2252
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2253
|
+
headers: localVarHeaders,
|
|
2254
|
+
observe: observe,
|
|
2255
|
+
transferCache: localVarTransferCache,
|
|
2256
|
+
reportProgress: reportProgress,
|
|
2257
|
+
});
|
|
2258
|
+
}
|
|
2259
|
+
projectNotesRemoveProjectNote(requestParameters, observe = "body", reportProgress = false, options) {
|
|
2260
|
+
const projectNoteId = requestParameters?.projectNoteId;
|
|
2261
|
+
if (projectNoteId === null || projectNoteId === undefined) {
|
|
2262
|
+
throw new Error("Required parameter projectNoteId was null or undefined when calling projectNotesRemoveProjectNote.");
|
|
2263
|
+
}
|
|
2264
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2265
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
2266
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2267
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
2268
|
+
}
|
|
2269
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2270
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2271
|
+
let responseType_ = "json";
|
|
2272
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2273
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
2274
|
+
responseType_ = "text";
|
|
2275
|
+
}
|
|
2276
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2277
|
+
responseType_ = "json";
|
|
2278
|
+
}
|
|
2279
|
+
else {
|
|
2280
|
+
responseType_ = "blob";
|
|
2281
|
+
}
|
|
2282
|
+
}
|
|
2283
|
+
let localVarPath = `/api/project-notes/${this.configuration.encodeParam({ name: "projectNoteId", value: projectNoteId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
|
|
2284
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2285
|
+
return this.httpClient.request("delete", `${basePath}${localVarPath}`, {
|
|
2286
|
+
context: localVarHttpContext,
|
|
2287
|
+
responseType: responseType_,
|
|
2288
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2289
|
+
headers: localVarHeaders,
|
|
2290
|
+
observe: observe,
|
|
2291
|
+
transferCache: localVarTransferCache,
|
|
2292
|
+
reportProgress: reportProgress,
|
|
2293
|
+
});
|
|
2294
|
+
}
|
|
2295
|
+
projectNotesUpdateProjectNote(requestParameters, observe = "body", reportProgress = false, options) {
|
|
2296
|
+
const projectNoteId = requestParameters?.projectNoteId;
|
|
2297
|
+
if (projectNoteId === null || projectNoteId === undefined) {
|
|
2298
|
+
throw new Error("Required parameter projectNoteId was null or undefined when calling projectNotesUpdateProjectNote.");
|
|
2299
|
+
}
|
|
2300
|
+
const updateProjectNoteDto = requestParameters?.updateProjectNoteDto;
|
|
2301
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2302
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
2303
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2304
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
2305
|
+
}
|
|
2306
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2307
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2308
|
+
// to determine the Content-Type header
|
|
2309
|
+
const consumes = [
|
|
2310
|
+
"application/json-patch+json",
|
|
2311
|
+
"application/json",
|
|
2312
|
+
"text/json",
|
|
2313
|
+
"application/*+json",
|
|
2314
|
+
];
|
|
2315
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
2316
|
+
if (httpContentTypeSelected !== undefined) {
|
|
2317
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
2318
|
+
}
|
|
2319
|
+
let responseType_ = "json";
|
|
2320
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2321
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
2322
|
+
responseType_ = "text";
|
|
2323
|
+
}
|
|
2324
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2325
|
+
responseType_ = "json";
|
|
2326
|
+
}
|
|
2327
|
+
else {
|
|
2328
|
+
responseType_ = "blob";
|
|
2329
|
+
}
|
|
2330
|
+
}
|
|
2331
|
+
let localVarPath = `/api/project-notes/${this.configuration.encodeParam({ name: "projectNoteId", value: projectNoteId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
|
|
2332
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2333
|
+
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
2334
|
+
context: localVarHttpContext,
|
|
2335
|
+
body: updateProjectNoteDto,
|
|
2336
|
+
responseType: responseType_,
|
|
2337
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2338
|
+
headers: localVarHeaders,
|
|
2339
|
+
observe: observe,
|
|
2340
|
+
transferCache: localVarTransferCache,
|
|
2341
|
+
reportProgress: reportProgress,
|
|
2342
|
+
});
|
|
2343
|
+
}
|
|
2344
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.6", ngImport: i0, type: ProjectNotesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2345
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.6", ngImport: i0, type: ProjectNotesApiService, providedIn: "root" });
|
|
2346
|
+
}
|
|
2347
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.6", ngImport: i0, type: ProjectNotesApiService, decorators: [{
|
|
2348
|
+
type: Injectable,
|
|
2349
|
+
args: [{
|
|
2350
|
+
providedIn: "root",
|
|
2351
|
+
}]
|
|
2352
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
2353
|
+
type: Optional
|
|
2354
|
+
}, {
|
|
2355
|
+
type: Inject,
|
|
2356
|
+
args: [BASE_PATH]
|
|
2357
|
+
}] }, { type: Configuration, decorators: [{
|
|
2358
|
+
type: Optional
|
|
2359
|
+
}] }] });
|
|
2360
|
+
|
|
2189
2361
|
/**
|
|
2190
2362
|
* RenewAire CORES API
|
|
2191
2363
|
*
|
|
@@ -7481,6 +7653,7 @@ const APIS = [
|
|
|
7481
7653
|
MaintenanceApiService,
|
|
7482
7654
|
PermissionBundlesApiService,
|
|
7483
7655
|
PermissionsApiService,
|
|
7656
|
+
ProjectNotesApiService,
|
|
7484
7657
|
ProjectStatusesApiService,
|
|
7485
7658
|
ProjectsApiService,
|
|
7486
7659
|
RegionsApiService,
|
|
@@ -7862,13 +8035,14 @@ var FeedbackType;
|
|
|
7862
8035
|
* Do not edit the class manually.
|
|
7863
8036
|
*/
|
|
7864
8037
|
/**
|
|
7865
|
-
* File type.<br />FileType<br />0 = RsdRegionDocument<br />1 = ControllerProgram<br />2 = RepSalesReport
|
|
8038
|
+
* File type.<br />FileType<br />0 = RsdRegionDocument<br />1 = ControllerProgram<br />2 = RepSalesReport<br />3 = ProjectNoteAttachment
|
|
7866
8039
|
*/
|
|
7867
8040
|
var FileType;
|
|
7868
8041
|
(function (FileType) {
|
|
7869
8042
|
FileType["RsdRegionDocument"] = "RsdRegionDocument";
|
|
7870
8043
|
FileType["ControllerProgram"] = "ControllerProgram";
|
|
7871
8044
|
FileType["RepSalesReport"] = "RepSalesReport";
|
|
8045
|
+
FileType["ProjectNoteAttachment"] = "ProjectNoteAttachment";
|
|
7872
8046
|
})(FileType || (FileType = {}));
|
|
7873
8047
|
|
|
7874
8048
|
/**
|
|
@@ -8060,7 +8234,7 @@ var OperationType;
|
|
|
8060
8234
|
* Do not edit the class manually.
|
|
8061
8235
|
*/
|
|
8062
8236
|
/**
|
|
8063
|
-
* Group/user permission.<br />Permission<br />0 = SystemAdmin<br />1 = ManageUsers<br />2 = ViewAllProjectsInTheSystem<br />3 = EditAllProjectsInTheSystem<br />4 = ViewOtherGroupMembersProjects<br />5 = EditEachOthersGroupMembersProjects<br />6 = AnswerIncomingChats<br />7 = QsEligible<br />8 = ViewQsApplications<br />9 = ViewPricing<br />10 = ConfigurationAccessDoas<br />11 = ConfigurationAccessCommercial<br />12 = ConfigurationAccessResidential<br />13 = ConfigurationAccessApplied<br />14 = ConfigurationAccessElectricHeaters<br />15 = ConfigurationAccessGasFurnaces<br />16 = ConfigurationAccessCoilModules<br />17 = ConfigurationAccessAccessories<br />18 = ConfigurationAccessServiceParts<br />19 = ConfigurationAccessSpUnits<br />20 = ConfigurationAccessJciResUnits<br />21 = ConfigurationAccessJciComUnits<br />22 = ConfigurationAccessTraneUnits<br />23 = EditSystemGroups<br />24 = ViewAllHiddenFieldsExtraData<br />25 = ViewExtraCalculationData<br />26 = EditCertainReadonlyFields<br />27 = ViewRenewAireOnlyData<br />28 = ViewAhriCertificationItemsAndData<br />29 = ReassignProjects<br />30 = CreateNewProjects<br />31 = CreateNewLineItems<br />32 = ViewClosedLines<br />33 = AccessSiteInMaintenanceMode<br />34 = ViewSoldToSelectionAndInformation<br />35 = Rep<br />36 = RequestAccountUpgrade<br />37 = EditUserAccountEmailAddress<br />38 = ManageAllUserGroups<br />39 = ManageRsdRegions<br />40 = ViewRsdRegions<br />41 = ManageRepTerritories<br />42 = ViewRepTerritories<br />43 = ViewRelatedRepTerritories<br />44 = ManageRepContacts<br />45 = ViewRepContacts<br />46 = ManageStateProvinces<br />47 = ViewStateProvinces<br />48 = ManageGroups<br />49 = ViewAllGroups<br />50 = ViewRelatedGroups<br />51 = ViewAllUsers<br />52 = ViewRelatedUsers<br />53 = ViewRenewAireLeadTimesData<br />54 = ViewSpLeadTimesData<br />55 = ViewRepReports<br />56 = ViewFinancialReports<br />57 = AccessPartnerPortal<br />58 = AccessExchangerPerformanceApp<br />59 = ViewDefrost<br />60 = ViewAshraeOptions<br />61 = ViewRolesTable<br />100 = SubmitOrder<br />101 = ImportOrdersToErp<br />104 = ViewDiscountWorkflows<br />105 = AddUnrestrictedDiscountsToProjects<br />106 = AddLimitedDiscountsToProjects<br />107 = ApproveUnrestrictedDiscountsInProjects<br />108 = ApproveLimitedDiscountsInProjects<br />109 = SubmitQsApplication<br />110 = QsBonus<br />111 = QsDiscount<br />113 = ApproveQsApplications<br />114 = MakeObsoleteLineItemsValid<br />115 = GenerateQuotes<br />116 = ViewAllProjectDownloadHistory<br />117 = ViewEnergyAnalysis<br />118 = ViewExtraQuoteOptions<br />119 = ViewShipToSelectionAndInformation<br />120 = ViewProjectRevisions<br />121 = AddProjectRevisions<br />122 = ViewLinkedProjects<br />123 = AddLinkedProjects<br />124 = TakeOverEditingFromOtherUsers<br />125 =
|
|
8237
|
+
* Group/user permission.<br />Permission<br />0 = SystemAdmin<br />1 = ManageUsers<br />2 = ViewAllProjectsInTheSystem<br />3 = EditAllProjectsInTheSystem<br />4 = ViewOtherGroupMembersProjects<br />5 = EditEachOthersGroupMembersProjects<br />6 = AnswerIncomingChats<br />7 = QsEligible<br />8 = ViewQsApplications<br />9 = ViewPricing<br />10 = ConfigurationAccessDoas<br />11 = ConfigurationAccessCommercial<br />12 = ConfigurationAccessResidential<br />13 = ConfigurationAccessApplied<br />14 = ConfigurationAccessElectricHeaters<br />15 = ConfigurationAccessGasFurnaces<br />16 = ConfigurationAccessCoilModules<br />17 = ConfigurationAccessAccessories<br />18 = ConfigurationAccessServiceParts<br />19 = ConfigurationAccessSpUnits<br />20 = ConfigurationAccessJciResUnits<br />21 = ConfigurationAccessJciComUnits<br />22 = ConfigurationAccessTraneUnits<br />23 = EditSystemGroups<br />24 = ViewAllHiddenFieldsExtraData<br />25 = ViewExtraCalculationData<br />26 = EditCertainReadonlyFields<br />27 = ViewRenewAireOnlyData<br />28 = ViewAhriCertificationItemsAndData<br />29 = ReassignProjects<br />30 = CreateNewProjects<br />31 = CreateNewLineItems<br />32 = ViewClosedLines<br />33 = AccessSiteInMaintenanceMode<br />34 = ViewSoldToSelectionAndInformation<br />35 = Rep<br />36 = RequestAccountUpgrade<br />37 = EditUserAccountEmailAddress<br />38 = ManageAllUserGroups<br />39 = ManageRsdRegions<br />40 = ViewRsdRegions<br />41 = ManageRepTerritories<br />42 = ViewRepTerritories<br />43 = ViewRelatedRepTerritories<br />44 = ManageRepContacts<br />45 = ViewRepContacts<br />46 = ManageStateProvinces<br />47 = ViewStateProvinces<br />48 = ManageGroups<br />49 = ViewAllGroups<br />50 = ViewRelatedGroups<br />51 = ViewAllUsers<br />52 = ViewRelatedUsers<br />53 = ViewRenewAireLeadTimesData<br />54 = ViewSpLeadTimesData<br />55 = ViewRepReports<br />56 = ViewFinancialReports<br />57 = AccessPartnerPortal<br />58 = AccessExchangerPerformanceApp<br />59 = ViewDefrost<br />60 = ViewAshraeOptions<br />61 = ViewRolesTable<br />62 = ViewPermissionBundles<br />63 = EditUsers<br />100 = SubmitOrder<br />101 = ImportOrdersToErp<br />104 = ViewDiscountWorkflows<br />105 = AddUnrestrictedDiscountsToProjects<br />106 = AddLimitedDiscountsToProjects<br />107 = ApproveUnrestrictedDiscountsInProjects<br />108 = ApproveLimitedDiscountsInProjects<br />109 = SubmitQsApplication<br />110 = QsBonus<br />111 = QsDiscount<br />113 = ApproveQsApplications<br />114 = MakeObsoleteLineItemsValid<br />115 = GenerateQuotes<br />116 = ViewAllProjectDownloadHistory<br />117 = ViewEnergyAnalysis<br />118 = ViewExtraQuoteOptions<br />119 = ViewShipToSelectionAndInformation<br />120 = ViewProjectRevisions<br />121 = AddProjectRevisions<br />122 = ViewLinkedProjects<br />123 = AddLinkedProjects<br />124 = TakeOverEditingFromOtherUsers<br />125 = AccessProjectSalesChannelNotes
|
|
8064
8238
|
*/
|
|
8065
8239
|
var Permission;
|
|
8066
8240
|
(function (Permission) {
|
|
@@ -8126,6 +8300,8 @@ var Permission;
|
|
|
8126
8300
|
Permission["ViewDefrost"] = "ViewDefrost";
|
|
8127
8301
|
Permission["ViewAshraeOptions"] = "ViewAshraeOptions";
|
|
8128
8302
|
Permission["ViewRolesTable"] = "ViewRolesTable";
|
|
8303
|
+
Permission["ViewPermissionBundles"] = "ViewPermissionBundles";
|
|
8304
|
+
Permission["EditUsers"] = "EditUsers";
|
|
8129
8305
|
Permission["SubmitOrder"] = "SubmitOrder";
|
|
8130
8306
|
Permission["ImportOrdersToErp"] = "ImportOrdersToErp";
|
|
8131
8307
|
Permission["ViewDiscountWorkflows"] = "ViewDiscountWorkflows";
|
|
@@ -8148,8 +8324,7 @@ var Permission;
|
|
|
8148
8324
|
Permission["ViewLinkedProjects"] = "ViewLinkedProjects";
|
|
8149
8325
|
Permission["AddLinkedProjects"] = "AddLinkedProjects";
|
|
8150
8326
|
Permission["TakeOverEditingFromOtherUsers"] = "TakeOverEditingFromOtherUsers";
|
|
8151
|
-
Permission["
|
|
8152
|
-
Permission["EditUsers"] = "EditUsers";
|
|
8327
|
+
Permission["AccessProjectSalesChannelNotes"] = "AccessProjectSalesChannelNotes";
|
|
8153
8328
|
})(Permission || (Permission = {}));
|
|
8154
8329
|
|
|
8155
8330
|
/**
|
|
@@ -8172,6 +8347,36 @@ var Permission;
|
|
|
8172
8347
|
* Do not edit the class manually.
|
|
8173
8348
|
*/
|
|
8174
8349
|
|
|
8350
|
+
/**
|
|
8351
|
+
* RenewAire CORES API
|
|
8352
|
+
*
|
|
8353
|
+
* Contact: renewaire@saritasa.com
|
|
8354
|
+
*
|
|
8355
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8356
|
+
* https://openapi-generator.tech
|
|
8357
|
+
* Do not edit the class manually.
|
|
8358
|
+
*/
|
|
8359
|
+
|
|
8360
|
+
/**
|
|
8361
|
+
* RenewAire CORES API
|
|
8362
|
+
*
|
|
8363
|
+
* Contact: renewaire@saritasa.com
|
|
8364
|
+
*
|
|
8365
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8366
|
+
* https://openapi-generator.tech
|
|
8367
|
+
* Do not edit the class manually.
|
|
8368
|
+
*/
|
|
8369
|
+
/**
|
|
8370
|
+
* Note type.<br />ProjectNoteType<br />0 = Public<br />1 = QualifiedSpecification<br />2 = Internal<br />3 = SalesChannel
|
|
8371
|
+
*/
|
|
8372
|
+
var ProjectNoteType;
|
|
8373
|
+
(function (ProjectNoteType) {
|
|
8374
|
+
ProjectNoteType["Public"] = "Public";
|
|
8375
|
+
ProjectNoteType["QualifiedSpecification"] = "QualifiedSpecification";
|
|
8376
|
+
ProjectNoteType["Internal"] = "Internal";
|
|
8377
|
+
ProjectNoteType["SalesChannel"] = "SalesChannel";
|
|
8378
|
+
})(ProjectNoteType || (ProjectNoteType = {}));
|
|
8379
|
+
|
|
8175
8380
|
/**
|
|
8176
8381
|
* RenewAire CORES API
|
|
8177
8382
|
*
|
|
@@ -8626,5 +8831,5 @@ function provideApi(configOrBasePath) {
|
|
|
8626
8831
|
* Generated bundle index. Do not edit.
|
|
8627
8832
|
*/
|
|
8628
8833
|
|
|
8629
|
-
export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, BuildingCategory, BuildingType, COLLECTION_FORMATS, Configuration, ConstructionOrderType, ControllerProgramReleaseType, ControllerProgramType, ControllerProgramsApiService, CoolingDesignBasis, DesignWeatherMode, FeedbackType, FeedbacksApiService, FileType, GroupCustomerType, GroupType, GroupsApiService, KnownContactsApiService, Language, LeadTimeType, LeadTimesApiService, MaintenanceApiService, OperationType, Permission, PermissionBundlesApiService, PermissionsApiService, ProjectStatus, ProjectStatusesApiService, ProjectsApiService, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepSalesReportsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, S3ApiService, StaticFilesApiService, UnitSystem, UserStatus, UserTablesApiService, UsersApiService, UsersManagementApiService, provideApi };
|
|
8834
|
+
export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, BuildingCategory, BuildingType, COLLECTION_FORMATS, Configuration, ConstructionOrderType, ControllerProgramReleaseType, ControllerProgramType, ControllerProgramsApiService, CoolingDesignBasis, DesignWeatherMode, FeedbackType, FeedbacksApiService, FileType, GroupCustomerType, GroupType, GroupsApiService, KnownContactsApiService, Language, LeadTimeType, LeadTimesApiService, MaintenanceApiService, OperationType, Permission, PermissionBundlesApiService, PermissionsApiService, ProjectNoteType, ProjectNotesApiService, ProjectStatus, ProjectStatusesApiService, ProjectsApiService, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepSalesReportsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, S3ApiService, StaticFilesApiService, UnitSystem, UserStatus, UserTablesApiService, UsersApiService, UsersManagementApiService, provideApi };
|
|
8630
8835
|
//# sourceMappingURL=saritasa-renewaire-frontend-sdk.mjs.map
|