@sassoftware/vi-api 0.0.29 → 1.5.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.
Files changed (79) hide show
  1. package/LICENSE.txt +333 -0
  2. package/README.md +9 -0
  3. package/alert-reps/index.d.ts +5 -1
  4. package/api-init.service.js +86 -0
  5. package/api.module.js +72 -0
  6. package/component/bindings.d.ts +5 -3
  7. package/component/component-api.service.js +161 -0
  8. package/config/config-api.d.ts +2 -1
  9. package/config/config-api.service.js +54 -0
  10. package/control/control-api.d.ts +21 -9
  11. package/control/data-types.d.ts +6 -1
  12. package/control/page.d.ts +14 -0
  13. package/control/toolbar-property-api.d.ts +2 -1
  14. package/current-user/currentUser-api.service.js +49 -0
  15. package/event/event-api.d.ts +1 -0
  16. package/event/event-api.js +1 -0
  17. package/event/event-api.service.js +32 -0
  18. package/file/file-api.service.js +24 -0
  19. package/http/http-api.service.js +64 -0
  20. package/localization/localization-api.service.js +38 -0
  21. package/metadata/admin/admin-metadata-api.service.js +30 -0
  22. package/metadata/metadata-api.d.ts +3 -0
  23. package/metadata/metadata-api.service.js +85 -0
  24. package/object/object-api.d.ts +9 -20
  25. package/object/object-api.service.js +207 -0
  26. package/package.json +24 -2
  27. package/page-admin/page-admin-api.service.js +25 -0
  28. package/page-model/page-model-api.d.ts +21 -13
  29. package/page-model/page-model-api.service.js +25 -0
  30. package/page-state/page-state-api.d.ts +23 -0
  31. package/page-state/page-state-api.service.js +70 -0
  32. package/property/property-api.d.ts +62 -2
  33. package/property/property-api.service.js +34 -0
  34. package/reference-data/refData.service.js +40 -0
  35. package/resource/resource-api.service.js +24 -0
  36. package/score-reps/index.d.ts +1 -1
  37. package/search/client/client-search-api.d.ts +8 -4
  38. package/search/client/client-search-api.js +1 -1
  39. package/search/client/client-search-api.service.js +111 -0
  40. package/search/search-api.d.ts +6 -6
  41. package/search/search-api.service.js +28 -0
  42. package/sheet/network-menu-handler.service.js +39 -0
  43. package/sheet/sheet-api.d.ts +35 -3
  44. package/sheet/sheet-api.js +9 -1
  45. package/sheet/sheet-api.service.js +140 -0
  46. package/svi-datahub/index.d.ts +203 -171
  47. package/svi-sand/index.d.ts +10 -10
  48. package/tab/tab-api.service.js +35 -0
  49. package/theme/theme-api.d.ts +1 -1
  50. package/theme/theme-api.js +1 -1
  51. package/theme/theme-api.service.js +35 -0
  52. package/time-slider/index.d.ts +6 -0
  53. package/traversal/traversal-api.d.ts +7 -1
  54. package/traversal/traversal-api.service.js +77 -0
  55. package/alert-reps/package.json +0 -5
  56. package/component/package.json +0 -9
  57. package/config/package.json +0 -9
  58. package/control/package.json +0 -9
  59. package/current-user/package.json +0 -9
  60. package/event/package.json +0 -9
  61. package/file/package.json +0 -9
  62. package/http/package.json +0 -9
  63. package/localization/package.json +0 -9
  64. package/metadata/package.json +0 -9
  65. package/object/package.json +0 -9
  66. package/page-admin/package.json +0 -9
  67. package/page-model/package.json +0 -9
  68. package/page-state/package.json +0 -9
  69. package/property/package.json +0 -9
  70. package/reference-data/package.json +0 -9
  71. package/resource/package.json +0 -9
  72. package/score-reps/package.json +0 -5
  73. package/search/package.json +0 -9
  74. package/sheet/package.json +0 -9
  75. package/svi-datahub/package.json +0 -5
  76. package/svi-sand/package.json +0 -5
  77. package/tab/package.json +0 -9
  78. package/theme/package.json +0 -9
  79. package/traversal/package.json +0 -9
@@ -1,6 +1,6 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- // Generated using typescript-generator version 2.15.527 on 2022-01-30 09:30:50.
3
+ // Generated using typescript-generator version 2.15.527 on 2022-11-08 04:55:34.
4
4
 
5
5
  export interface ApplicationSetting extends ResponsesErrorResponse {
6
6
  name?: string;
@@ -34,7 +34,6 @@ export interface SandType extends ResponsesErrorResponse {
34
34
  fields?: { [index: string]: SandField };
35
35
  options?: { [index: string]: any };
36
36
  config?: SandConfiguration;
37
- version?: number;
38
37
  links?: Link[];
39
38
  }
40
39
 
@@ -110,12 +109,12 @@ export interface Fields {
110
109
  category?: string;
111
110
  label?: string;
112
111
  description?: string;
113
- longitude?: string;
114
- latitude?: string;
115
- geoJson?: string;
116
112
  pointTimestamp?: string;
117
113
  intervalStartTimestamp?: string;
118
114
  intervalEndTimestamp?: string;
115
+ longitude?: string;
116
+ latitude?: string;
117
+ geoJson?: string;
119
118
  }
120
119
 
121
120
  export interface FieldsConfiguration {
@@ -144,8 +143,8 @@ export interface SummaryConfiguration extends FieldsConfiguration {
144
143
 
145
144
  export interface HighlightingConfiguration {
146
145
  highlighter?: string;
147
- fragments?: number;
148
146
  fragmentSize?: number;
147
+ fragments?: number;
149
148
  }
150
149
 
151
150
  export interface TextAnalyticsConfiguration extends FieldsConfiguration {
@@ -343,8 +342,8 @@ export interface QueryFilter extends AbstractFilter {
343
342
  export interface TermsFilter extends AbstractFilter {
344
343
  type: "terms";
345
344
  field?: string;
346
- terms?: any[];
347
345
  objectType?: string;
346
+ terms?: any[];
348
347
  }
349
348
 
350
349
  export interface TypeFilter extends AbstractFilter {
@@ -532,6 +531,7 @@ export interface NumericalRangeBuilder {
532
531
 
533
532
  export interface Range<V> {
534
533
  description?: string;
534
+ id?: string;
535
535
  gt?: V;
536
536
  gte?: V;
537
537
  lt?: V;
@@ -616,8 +616,8 @@ export interface TraversalRepresentation {
616
616
  edgeFilter?: AbstractFilterUnion;
617
617
  depth?: number;
618
618
  extendedFormat?: boolean;
619
- graphCompoundValues?: string[];
620
619
  graphObjectIds?: ObjectId[];
620
+ graphCompoundValues?: string[];
621
621
  }
622
622
 
623
623
  export interface AnalyticsCategoriesResponse extends ResponsesErrorResponse {
@@ -705,8 +705,8 @@ export interface Selection {
705
705
 
706
706
  export interface ManualSelection {
707
707
  query?: string;
708
- compoundValues?: string[];
709
708
  objectIds?: ObjectId[];
709
+ compoundValues?: string[];
710
710
  }
711
711
 
712
712
  export interface EntityStyle {
@@ -880,9 +880,9 @@ export interface MapVisualizationResponse extends VisualizationResponse {
880
880
 
881
881
  export interface PagedVisualizationRepresentation extends VisualizationRepresentation {
882
882
  type: "PagedVisualizationRepresentation" | "summary" | "table" | "timeline";
883
- order?: OrderUnion;
884
883
  start?: number;
885
884
  limit?: number;
885
+ order?: OrderUnion;
886
886
  }
887
887
 
888
888
  export interface PagedVisualizationResponse extends VisualizationResponse {
@@ -0,0 +1,35 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ import { Injectable } from "@angular/core";
8
+ import { getAngularJsInjectable } from "../../commons/angular-angularjs-utils";
9
+ import { zoneWrap } from "../../commons/api-utils";
10
+ let TabApiService = class TabApiService {
11
+ constructor(ngZone) {
12
+ this.ngZone = ngZone;
13
+ this.tabService = () => getAngularJsInjectable("spbDocumentTabService");
14
+ this.openTab = (objectType, objectId, suppressNavigation = false, mode = "open" /* OPEN */) => {
15
+ return this.tabService().openDocumentTab(objectId, objectType, suppressNavigation, mode);
16
+ };
17
+ this.isOpenTabDirty = (objectType, objectId) => {
18
+ return this.tabService().getDirty(objectType, objectId);
19
+ };
20
+ this.setOpenTabDirty = (objectType, objectId, dirtyState) => {
21
+ return this.tabService().setTabDirtyState(objectType, objectId, dirtyState);
22
+ };
23
+ }
24
+ getApi() {
25
+ return {
26
+ openTab: zoneWrap(this.openTab, this.ngZone),
27
+ isOpenTabDirty: this.isOpenTabDirty,
28
+ setOpenTabDirty: zoneWrap(this.setOpenTabDirty, this.ngZone)
29
+ };
30
+ }
31
+ };
32
+ TabApiService = __decorate([
33
+ Injectable()
34
+ ], TabApiService);
35
+ export { TabApiService };
@@ -1,6 +1,6 @@
1
1
  export declare enum Theme {
2
2
  Illuminate = "sas_corporate",
3
- Inspire = "sas_inspire",
3
+ Ignite = "sas_ignite",
4
4
  HighContrast = "sas_hcb"
5
5
  }
6
6
  /**
@@ -1,7 +1,7 @@
1
1
  export var Theme;
2
2
  (function (Theme) {
3
3
  Theme["Illuminate"] = "sas_corporate";
4
- Theme["Inspire"] = "sas_inspire";
4
+ Theme["Ignite"] = "sas_ignite";
5
5
  Theme["HighContrast"] = "sas_hcb";
6
6
  })(Theme || (Theme = {}));
7
7
  /**
@@ -0,0 +1,35 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ import { Injectable } from "@angular/core";
8
+ import { getAngularJsInjectable } from "../../commons/angular-angularjs-utils";
9
+ let ThemeApiService = class ThemeApiService {
10
+ constructor(eventService) {
11
+ this.eventService = eventService;
12
+ this.themeService = () => getAngularJsInjectable("sngThemeService");
13
+ this.getCurrent = () => {
14
+ return this.themeService().getCurrentTheme();
15
+ };
16
+ this.onChange = (callback) => {
17
+ const subscription = this.eventService.subscribe(this.themeService().themeChangedEventName, (event) => {
18
+ callback(event.args.newValue);
19
+ });
20
+ return () => {
21
+ subscription?.unsubscribe();
22
+ };
23
+ };
24
+ }
25
+ getApi() {
26
+ return {
27
+ getCurrent: this.getCurrent,
28
+ onChange: this.onChange
29
+ };
30
+ }
31
+ };
32
+ ThemeApiService = __decorate([
33
+ Injectable()
34
+ ], ThemeApiService);
35
+ export { ThemeApiService };
@@ -33,3 +33,9 @@ export interface TimeSliderRange {
33
33
  start?: Date;
34
34
  end?: Date;
35
35
  }
36
+ export interface TimeSliderContextMenuHideOptions {
37
+ pointInTime?: boolean;
38
+ timeRange?: boolean;
39
+ showHistogram?: boolean;
40
+ closeTimeSlider?: boolean;
41
+ }
@@ -2,6 +2,9 @@ import { Record, Traversal } from "../svi-datahub";
2
2
  export interface TraversalWithEndpoint extends Traversal {
3
3
  endPoint?: string | null;
4
4
  }
5
+ export interface SviRecord extends Record {
6
+ displayLabel?: string;
7
+ }
5
8
  /**
6
9
  * This API provides functionality related to traversal data.
7
10
  * Accessed from the window at window.sas.vi.traversal.
@@ -15,9 +18,12 @@ export interface TraversalApi {
15
18
  * @param traversalUuids {string[]} Array of traversal UUIDs associated with the root object type.
16
19
  * @param destinationObjectType {string} Destination object's type.
17
20
  * @param fields {string[]} Names of the fields to be retrieved.
21
+ * @param options {object} Optional object containing options: includeDisplayLabels.
18
22
  * @returns Promise containing the array of objects with specified fields and their values.
19
23
  */
20
- getFieldsByTraversals(rootObjectId: string, rootObjectType: string, traversalUuids: string[], destinationObjectType: string, fields: string[]): Promise<Record[]>;
24
+ getFieldsByTraversals(rootObjectId: string, rootObjectType: string, traversalUuids: string[], destinationObjectType: string, fields: string[], options?: {
25
+ includeDisplayLabels?: boolean;
26
+ }): Promise<SviRecord[]>;
21
27
  /**
22
28
  * @method
23
29
  * @description Gets all Traversals.
@@ -0,0 +1,77 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ import { Injectable } from "@angular/core";
8
+ import { map } from "rxjs/operators";
9
+ let TraversalApiService = class TraversalApiService {
10
+ constructor(adminTraversalsClientService, pathService) {
11
+ this.adminTraversalsClientService = adminTraversalsClientService;
12
+ this.pathService = pathService;
13
+ /**
14
+ * Gets an array of Records from a list of given traversals filtered by destinationType.
15
+ * The returned records will contain the values for fields specified in the fields param.
16
+ * @param rootObjectId {string} Traversal's root object ID.
17
+ * @param rootObjectType {string} Traversal's root object Type.
18
+ * @param traversalUuids {string[]} Array of traversal UUIDs associated with the root object type.
19
+ * @param destinationObjectType {string} Destination object's type.
20
+ * @param fields {string[]} Names of the fields to be retrieved.
21
+ * @param options {object} Optional object containing options: includeDisplayLabels.
22
+ * @returns {Promise<SviRecord[]>} An array of SviRecords for the given Traversal.
23
+ */
24
+ this.getFieldsByTraversals = (rootObjectId, rootObjectType, traversalUuids, destinationObjectType, fields, options) => {
25
+ return this.pathService
26
+ .getRecordValuesByTraversals(rootObjectId, rootObjectType, traversalUuids, destinationObjectType, fields, options)
27
+ .toPromise()
28
+ .then((result) => {
29
+ return result || [];
30
+ })
31
+ .catch((err) => Promise.reject(err?.message));
32
+ };
33
+ this.getTraversals = () => {
34
+ return this.adminTraversalsClientService
35
+ .getTraversals()
36
+ .pipe(map(result => (result.body ? this.addTraversalEndPoint(result.body) : [])))
37
+ .toPromise()
38
+ .catch(err => Promise.reject(err?.error?.message));
39
+ };
40
+ /**
41
+ * Adds the traversal end point to the top level of the object.
42
+ * @param traversals {Traversal[]} Traversals that need end points added.
43
+ * @returns {TraversalWithEndpoint[]} Array of traversals with end points.
44
+ * @ignore
45
+ */
46
+ this.addTraversalEndPoint = (traversals) => {
47
+ traversals?.forEach((traversal) => {
48
+ let traversalBranch = traversal.traversalDefinition;
49
+ if (traversalBranch) {
50
+ while (traversalBranch.nextLevel) {
51
+ traversalBranch = traversalBranch.nextLevel;
52
+ }
53
+ traversal.endPoint = traversalBranch.vertexTypes ? traversalBranch.vertexTypes[0] : null;
54
+ }
55
+ });
56
+ return traversals;
57
+ };
58
+ this.getTraversalByUuid = (uuid) => {
59
+ return this.adminTraversalsClientService
60
+ .getTraversalByUuid(uuid)
61
+ .pipe(map(result => result.body))
62
+ .toPromise()
63
+ .catch(err => Promise.reject(err?.error?.message));
64
+ };
65
+ }
66
+ getApi() {
67
+ return {
68
+ getFieldsByTraversals: this.getFieldsByTraversals,
69
+ getTraversals: this.getTraversals,
70
+ getTraversalByUuid: this.getTraversalByUuid
71
+ };
72
+ }
73
+ };
74
+ TraversalApiService = __decorate([
75
+ Injectable()
76
+ ], TraversalApiService);
77
+ export { TraversalApiService };
@@ -1,5 +0,0 @@
1
- {
2
- "name": "@types/alert-reps",
3
- "version": "14.3.63",
4
- "types": "index.d.ts"
5
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/component",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/config",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/control",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/current-user",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/event",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
package/file/package.json DELETED
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/file",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
package/http/package.json DELETED
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/http",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/localization",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/metadata",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/object",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/page-admin",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/page-model",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/page-state",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/property",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/reference-data",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/resource",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,5 +0,0 @@
1
- {
2
- "name": "@types/score-reps",
3
- "version": "2.3.63",
4
- "types": "index.d.ts"
5
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/search",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/sheet",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,5 +0,0 @@
1
- {
2
- "name": "@types/svi-datahub",
3
- "version": "16.5.111",
4
- "types": "index.d.ts"
5
- }
@@ -1,5 +0,0 @@
1
- {
2
- "name": "@types/svi-sand",
3
- "version": "12.4.64",
4
- "types": "index.d.ts"
5
- }
package/tab/package.json DELETED
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/tab",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/theme",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@sassoftware/vi-api/traversal",
3
- "files": [
4
- "**/*.d.ts",
5
- "**/*.js"
6
- ],
7
- "main": "public-api.js",
8
- "types": "public-api.d.ts"
9
- }