@veloceapps/api 10.0.0-3 → 10.0.0-31

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
@@ -29,14 +29,17 @@ export { QuoteApiService } from './lib/services/quote-api.service';
29
29
  export { RampApiService } from './lib/services/ramp-api.service';
30
30
  export { RebateProgramApiService } from './lib/services/rebate-program-api.service';
31
31
  export { RebateTypeApiService } from './lib/services/rebate-type-api.service';
32
+ export { RlmApiService } from './lib/services/rlm-api.service';
33
+ export { RlmQuoteApiService } from './lib/services/rlm-quote-api.service';
32
34
  export { RuleGroupsApiService } from './lib/services/rule-groups-api.service';
33
35
  export { RulesApiService } from './lib/services/rules-api.service';
34
36
  export { SalesforceApiService } from './lib/services/salesforce-api.service';
37
+ export { SandboxManagerApiService } from './lib/services/sandbox-manager-api.service';
35
38
  export { ScriptsApiService } from './lib/services/scripts-api.service';
36
39
  export { ShoppingCartSettingsApiService } from './lib/services/shopping-cart-settings-api.service';
37
40
  export { StatefulConfigurationApiService } from './lib/services/stateful-configuration-api';
38
41
  export { UIDefinitionsApiService } from './lib/services/ui-definitions-api.service';
39
42
  export { UITemplatesApiService } from './lib/services/ui-templates-api.service';
40
43
  export { VeloceObjectsApiService } from './lib/services/veloce-objects-api.service';
41
- export { SandboxManagerApiService } from './lib/services/sandbox-manager-api.service';
42
44
  export * from './lib/types';
45
+ export * from './lib/utils';
@@ -17,6 +17,7 @@ export declare class ProceduresApiService {
17
17
  fetchProcedure$(id: string): Observable<Procedure>;
18
18
  execute$(body: ProcedureExecuteRequest): Observable<string[]>;
19
19
  catalogExecute$(body: ProcedureExecuteRequest): Observable<string[]>;
20
+ rlmExecute$(body: ProcedureExecuteRequest): Observable<string[]>;
20
21
  /**
21
22
  * Run active procedure against QuoteDraft
22
23
  * @param body
@@ -0,0 +1,14 @@
1
+ import { BaseHttpService, ContextDefinition, ContextDefinitionStructure, ContextMapping, RlmProcedure } from '@veloceapps/core';
2
+ import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare class RlmApiService {
5
+ private baseHttpService;
6
+ private readonly serviceUrl;
7
+ constructor(baseHttpService: BaseHttpService);
8
+ fetchContextDefinitions$(): Observable<ContextDefinition[]>;
9
+ fetchContextMappings$(id: string): Observable<ContextMapping[]>;
10
+ fetchContextDefinitionStructure$(id: string): Observable<ContextDefinitionStructure>;
11
+ fetchRlmProcedures(contextDefinitionId?: string): Observable<RlmProcedure[]>;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<RlmApiService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<RlmApiService>;
14
+ }
@@ -0,0 +1,11 @@
1
+ import { BaseHttpService, HttpRequestConfigurableOptions, QuoteDraft } from '@veloceapps/core';
2
+ import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare class RlmQuoteApiService {
5
+ private httpService;
6
+ private readonly SERVICE_URL;
7
+ constructor(httpService: BaseHttpService);
8
+ getQuote(mappingType: 'tag' | 'attribute', objectId: string, contextMappingId?: string, options?: HttpRequestConfigurableOptions): Observable<QuoteDraft>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<RlmQuoteApiService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<RlmQuoteApiService>;
11
+ }
@@ -1,8 +1,8 @@
1
1
  export interface SaveQuoteResponse {
2
2
  quoteId: string;
3
- configurationId?: string;
3
+ versionId?: string;
4
4
  }
5
5
  export interface SubmitQuoteResponse {
6
6
  quoteId: string;
7
- configurationId?: string;
7
+ versionId?: string;
8
8
  }
@@ -0,0 +1,2 @@
1
+ export * from './canvas.utils';
2
+ export * from './ui-template.utils';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veloceapps/api",
3
- "version": "10.0.0-3",
3
+ "version": "10.0.0-31",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "~15.2.0",