ontimize-web-ngx 15.6.0-next.8 → 15.6.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.
@@ -3,7 +3,7 @@ import { MenuRootItem } from './menu-root-item.type';
3
3
  import { OntimizeEEPermissionsConfig } from './ontimize-ee-permissions-config.type';
4
4
  import { OntimizePermissionsConfig } from './ontimize-permissions-config.type';
5
5
  import { ORemoteConfiguration } from './remote-configuration.type';
6
- import { JSONAPIServiceConfigType, OntimizeServiceConfigType } from './service-configuration.type';
6
+ import { JSONAPIServiceConfig, OntimizeServiceConfig } from './service-configuration.type';
7
7
  export type Config = {
8
8
  apiEndpoint?: string;
9
9
  bundle?: {
@@ -28,7 +28,7 @@ export type Config = {
28
28
  defaultLocale?: string;
29
29
  serviceType?: any;
30
30
  exportServiceType?: any;
31
- servicesConfiguration?: OntimizeServiceConfigType | JSONAPIServiceConfigType;
31
+ servicesConfiguration?: OntimizeServiceConfig | JSONAPIServiceConfig;
32
32
  appMenuConfiguration?: MenuRootItem[];
33
33
  permissionsConfiguration?: OntimizePermissionsConfig | OntimizeEEPermissionsConfig;
34
34
  permissionsServiceType?: any;
@@ -27,7 +27,6 @@ export * from './o-permissions.type';
27
27
  export * from './o-route-permissions.type';
28
28
  export * from './ontimize-ee-permissions-config.type';
29
29
  export * from './ontimize-permissions-config.type';
30
- export * from './ontimize-service-config.type';
31
30
  export * from './operation-function.type';
32
31
  export * from './query-data-args.type';
33
32
  export * from './quick-filter-function.type';
@@ -1,12 +1,17 @@
1
- export type ServiceConfigType = {
1
+ import { SessionInfo } from "./session-info.type";
2
+ export type ServiceConfig = {
2
3
  [key: string]: {
3
4
  path: string;
4
5
  serviceType?: string;
6
+ urlBase?: string;
7
+ session?: SessionInfo;
8
+ exportPath?: string;
9
+ downloadPath?: string;
5
10
  };
6
11
  };
7
- export type OntimizeServiceConfigType = ServiceConfigType & {
12
+ export type OntimizeServiceConfig = ServiceConfig & {
8
13
  fileManagerPath?: string;
9
14
  };
10
- export type JSONAPIServiceConfigType = ServiceConfigType & {
15
+ export type JSONAPIServiceConfig = ServiceConfig & {
11
16
  delimiter?: string;
12
17
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ontimize-web-ngx",
3
3
  "homepage": "https://github.com/OntimizeWeb/ontimize-web-ngx#readme",
4
- "version": "15.6.0-next.8",
4
+ "version": "15.6.0",
5
5
  "description": "Ontimize Web framework using Angular 15",
6
6
  "bugs": "https://github.com/OntimizeWeb/ontimize-web-ngx/issues",
7
7
  "author": "Imatia S.L.",
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib250aW1pemUtc2VydmljZS1jb25maWcudHlwZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL29udGltaXplLXdlYi1uZ3gvc3JjL2xpYi90eXBlcy9vbnRpbWl6ZS1zZXJ2aWNlLWNvbmZpZy50eXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBTZXNzaW9uSW5mbyB9IGZyb20gJy4vc2Vzc2lvbi1pbmZvLnR5cGUnO1xuXG4vKiogT250aW1pemUgU2VydmljZSBDb25maWd1cmF0aW9uICovXG5leHBvcnQgdHlwZSBPbnRpbWl6ZVNlcnZpY2VDb25maWcgPSB7XG4gIC8qKiBVUkwgdXNlZCBnbG9iYWxseSBmb3Igc2VuZGluZyBIVFRQIHJlcXVlc3RzICovXG4gIHVybEJhc2U/OiBzdHJpbmc7XG4gIC8qKiBTZXNzaW9uIGluZm9ybWF0aW9uICovXG4gIHNlc3Npb24/OiBTZXNzaW9uSW5mbztcbn07XG4iXX0=
@@ -1,5 +0,0 @@
1
- import { SessionInfo } from './session-info.type';
2
- export type OntimizeServiceConfig = {
3
- urlBase?: string;
4
- session?: SessionInfo;
5
- };