@c8y/ngx-components 1024.16.16 → 1024.16.19
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/fesm2022/c8y-ngx-components-datapoints-export-selector.mjs +216 -51
- package/fesm2022/c8y-ngx-components-datapoints-export-selector.mjs.map +1 -1
- package/locales/de.po +9 -0
- package/locales/es.po +9 -0
- package/locales/fr.po +9 -0
- package/locales/ja_JP.po +9 -0
- package/locales/ko.po +9 -0
- package/locales/nl.po +9 -0
- package/locales/pl.po +9 -0
- package/locales/pt_BR.po +9 -0
- package/locales/zh_CN.po +9 -0
- package/locales/zh_TW.po +9 -0
- package/package.json +1 -1
- package/types/c8y-ngx-components-datapoints-export-selector.d.ts +99 -1
- package/types/c8y-ngx-components-datapoints-export-selector.d.ts.map +1 -1
|
@@ -162,6 +162,14 @@ interface DataToExport extends DatapointDetails {
|
|
|
162
162
|
[timestamp: string]: Measurement;
|
|
163
163
|
} | undefined;
|
|
164
164
|
}
|
|
165
|
+
/**
|
|
166
|
+
* Series data prepared for export together with the data points
|
|
167
|
+
* the user turned out to be permitted to read.
|
|
168
|
+
*/
|
|
169
|
+
interface SeriesDataWithPermissions {
|
|
170
|
+
dataToExport: DataToExport[];
|
|
171
|
+
readableDatapoints: DatapointDetails[];
|
|
172
|
+
}
|
|
165
173
|
/**
|
|
166
174
|
* Represents the data to be exported along with the backend-created file.
|
|
167
175
|
* Only measurements API generates a file on the backend.
|
|
@@ -422,7 +430,50 @@ declare class DataFetchingService {
|
|
|
422
430
|
*/
|
|
423
431
|
processSeriesData(datapointDetails: DatapointDetails[], fetchedDataMap: SourceItem[]): DataToExport[];
|
|
424
432
|
hasPermissionToUseMeasurementsApi(exportConfig: ExportConfig): Promise<boolean>;
|
|
433
|
+
/**
|
|
434
|
+
* Returns sources of the given data points that the user is permitted to read,
|
|
435
|
+
* one entry per permitted data point.
|
|
436
|
+
*
|
|
437
|
+
* @deprecated Use `getDatapointsWithPermissionsToRead` instead — permissions can differ
|
|
438
|
+
* between data points of the same source (inventory role permissions are scoped per fragment type).
|
|
439
|
+
* @param datapointDetails - The data points selected for export.
|
|
440
|
+
* @returns A promise that resolves to the sources of the permitted data points.
|
|
441
|
+
*/
|
|
425
442
|
getSourcesWithPermissionsToRead(datapointDetails: DatapointDetails[]): Promise<string[]>;
|
|
443
|
+
/**
|
|
444
|
+
* Returns the subset of the given data points that the user is permitted to read.
|
|
445
|
+
*
|
|
446
|
+
* Each probe request lists the exact series to export, as required for measurement READ
|
|
447
|
+
* permissions scoped to specific fragment types. When a probe grouping all series of a source
|
|
448
|
+
* is rejected, each series is probed individually, so readable data points are not blocked
|
|
449
|
+
* by unreadable ones.
|
|
450
|
+
*
|
|
451
|
+
* Example flow for data points `Cloud.speed` and `c8y_Battery.level` on source `123` plus
|
|
452
|
+
* `Cloud.level` on source `456`, with an inventory role permitting only the `Cloud` fragment:
|
|
453
|
+
* ```
|
|
454
|
+
* GET /series?source=123&series=Cloud.speed&series=c8y_Battery.level → 403, probe each series:
|
|
455
|
+
* GET /series?source=123&series=Cloud.speed → 200 (readable)
|
|
456
|
+
* GET /series?source=123&series=c8y_Battery.level → 403 (dropped)
|
|
457
|
+
* GET /series?source=456&series=Cloud.level → 200 (readable)
|
|
458
|
+
*
|
|
459
|
+
* Returns the data points of Cloud.speed and Cloud.level.
|
|
460
|
+
* ```
|
|
461
|
+
*
|
|
462
|
+
* @param datapointDetails - The data points selected for export.
|
|
463
|
+
* @returns A promise that resolves to the data points the user is permitted to read.
|
|
464
|
+
*/
|
|
465
|
+
getDatapointsWithPermissionsToRead(datapointDetails: DatapointDetails[]): Promise<DatapointDetails[]>;
|
|
466
|
+
/**
|
|
467
|
+
* Fetches series data for export while deriving read permissions from the responses,
|
|
468
|
+
* so no separate permission probes are needed for readable sources.
|
|
469
|
+
*
|
|
470
|
+
* The data request itself acts as the permission check: when a source group is rejected
|
|
471
|
+
* with 403, each series is probed individually and only the readable ones are refetched.
|
|
472
|
+
*
|
|
473
|
+
* @param exportConfig - The export configuration providing the data points, date range and aggregation.
|
|
474
|
+
* @returns A promise that resolves to the prepared export data and the readable data points.
|
|
475
|
+
*/
|
|
476
|
+
fetchAndPrepareSeriesDataWithPermissions(exportConfig: ExportConfig): Promise<SeriesDataWithPermissions>;
|
|
426
477
|
/**
|
|
427
478
|
* Adjusts the given date by adding the specified number of minutes and setting seconds to 0.
|
|
428
479
|
*
|
|
@@ -466,6 +517,53 @@ declare class DataFetchingService {
|
|
|
466
517
|
private fetchAndPrepareMeasurementDataToExportForPreview;
|
|
467
518
|
private fetchMeasurementDataForPreview;
|
|
468
519
|
private fetchAndPrepareSeriesDataToExport;
|
|
520
|
+
/**
|
|
521
|
+
* Groups the given data points by their source.
|
|
522
|
+
*
|
|
523
|
+
* @param datapointDetails - The data points to group.
|
|
524
|
+
* @returns A map where the key is the source ID and the value is the data points of that source.
|
|
525
|
+
*/
|
|
526
|
+
private groupDatapointsBySource;
|
|
527
|
+
/**
|
|
528
|
+
* Returns the data points of a single source that the user is permitted to read.
|
|
529
|
+
* Starts with one probe covering all series of the source; when that probe is rejected,
|
|
530
|
+
* each series is probed individually, so readable data points are not blocked by unreadable ones.
|
|
531
|
+
*
|
|
532
|
+
* @param datapoints - The data points of one source.
|
|
533
|
+
* @returns A promise that resolves to the readable data points.
|
|
534
|
+
*/
|
|
535
|
+
private getReadableDatapointsOfSource;
|
|
536
|
+
/**
|
|
537
|
+
* Fetches the series data of a single source, deriving which of its data points are readable.
|
|
538
|
+
* A 403 for the grouped request triggers per-series probes and a refetch of the readable series;
|
|
539
|
+
* any other failure yields no readable data points, matching a rejected permission probe.
|
|
540
|
+
*
|
|
541
|
+
* @param datapoints - The data points of one source.
|
|
542
|
+
* @param exportConfig - The export configuration providing the date range and aggregation.
|
|
543
|
+
* @returns A promise that resolves to the readable data points and their fetched series data.
|
|
544
|
+
*/
|
|
545
|
+
private fetchReadableSeriesOfSource;
|
|
546
|
+
/**
|
|
547
|
+
* Probes each data point individually and returns those the user is permitted to read.
|
|
548
|
+
*
|
|
549
|
+
* @param datapoints - The data points to probe.
|
|
550
|
+
* @returns A promise that resolves to the readable data points.
|
|
551
|
+
*/
|
|
552
|
+
private filterReadableDatapoints;
|
|
553
|
+
/**
|
|
554
|
+
* Returns the series name (`valueFragmentType.valueFragmentSeries`) of a data point.
|
|
555
|
+
*/
|
|
556
|
+
private getSeriesName;
|
|
557
|
+
/**
|
|
558
|
+
* Probes whether the user is permitted to read the given series of a source.
|
|
559
|
+
* Only the response status matters, so the date range is intentionally empty (now..now)
|
|
560
|
+
* to keep the probe free of measurement values — it is not a data fetch.
|
|
561
|
+
*
|
|
562
|
+
* @param source - The ID of the managed object the series belong to.
|
|
563
|
+
* @param series - The series names (`valueFragmentType.valueFragmentSeries`) to probe.
|
|
564
|
+
* @returns A promise that resolves to true when the probe request succeeds.
|
|
565
|
+
*/
|
|
566
|
+
private isSeriesReadable;
|
|
469
567
|
private prepareSeriesFilter;
|
|
470
568
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DataFetchingService, never>;
|
|
471
569
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DataFetchingService>;
|
|
@@ -997,5 +1095,5 @@ declare class DatapointsExportSelectorComponent {
|
|
|
997
1095
|
}
|
|
998
1096
|
|
|
999
1097
|
export { CSVGeneratorAdapter, DataFetchingService, DataPointsExportSelectorDataScopeComponent, DataPointsExportSelectorFileTypesComponent, DataPointsExportSelectorPreviewComponent, DataPointsExportSelectorTimeRangeComponent, DataProcessingService, DatapointsExportSelectorComponent, DatapointsExportSelectorFileExporterComponent, DatapointsExportSelectorFileExporterService, DatapointsExportSelectorModalComponent, EXPORT_MODE_LABELS, EXPORT_MODE_VALUES, ExcelDataTransformer, ExcelGeneratorAdapter, FILE_COMPRESSION_TYPES_VALUES, FILE_GENERATORS, HAS_ERROR, MEASUREMENTS_PREVIEW_ITEMS_LIMIT, PRODUCT_EXPERIENCE_DATAPOINTS_EXPORT_SELECTOR, SERIES_DATA_MERGED_FILE_NAME, UtilsService, dateRangeValidator };
|
|
1000
|
-
export type { ColumnValueMap, DataToExport, DataToExportWithBackendCreatedFile, DatapointCounts, DatapointDetails, DatapointsExceedingLimit, DatapointsValuesDataMap, DateFetchConfig, ExportColumnConfig, ExportConfig, ExportData, ExportType, ExportedFile, FileCompressionTypes, FileExportConfig, FileGenerator, FileTypeConfig, FileTypeMetadata, IDataTransformer, ListExportDatapoint, Measurement, MeasurementFileConfig, MergedExportDetails, MinMaxValues, ReadingValue, SeriesExportParams, SeriesInfo, SourceData, SourceId, SourceItem, TimeSeriesColumnData, TimeSeriesData, TimeStamp, TransformedData, TransformedSeries, TransformedSource };
|
|
1098
|
+
export type { ColumnValueMap, DataToExport, DataToExportWithBackendCreatedFile, DatapointCounts, DatapointDetails, DatapointsExceedingLimit, DatapointsValuesDataMap, DateFetchConfig, ExportColumnConfig, ExportConfig, ExportData, ExportType, ExportedFile, FileCompressionTypes, FileExportConfig, FileGenerator, FileTypeConfig, FileTypeMetadata, IDataTransformer, ListExportDatapoint, Measurement, MeasurementFileConfig, MergedExportDetails, MinMaxValues, ReadingValue, SeriesDataWithPermissions, SeriesExportParams, SeriesInfo, SourceData, SourceId, SourceItem, TimeSeriesColumnData, TimeSeriesData, TimeStamp, TransformedData, TransformedSeries, TransformedSource };
|
|
1001
1099
|
//# sourceMappingURL=c8y-ngx-components-datapoints-export-selector.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"c8y-ngx-components-datapoints-export-selector.d.ts","sources":["../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/utils.service.ts","../../datapoints-export-selector/datapoints-export-selector.model.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/data-fetching.service.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/data-processing.service.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/datapoints-export-selector-file-exporter.service.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/datapoints-export-selector-file-exporter.component.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/datapoints-export-selector-preview/datapoints-export-selector-preview.component.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/datapoints-exports-selector-data-scope/datapoints-exports-selector-data-scope.component.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/datapoints-exports-selector-file-types/datapoints-exports-selector-file-types.component.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/datapoints-exports-selector-time-range/datapoints-exports-selector-time-range.component.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/generators/csv-generator.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/generators/excel-generator.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-modal.component.ts","../../datapoints-export-selector/datapoints-export-selector.component.ts"],"mappings":";;;;;;;;;;;;AAEM,KAAM,WAAW;;;;UAEN,UAAU;AACzB;;AAEA;AACD;UAEgB,UAAU;YACjB,UAAU;AAClB;AACE,8BAAsB,WAAW;;;AAGpC;UAEgB,UAAU;AACzB;UACM,UAAU;AACjB;UAEgB,iBAAiB;AAChC;AAAU,6BAAqB,WAAW;AAAE;mBAC7B,UAAU;AAC1B;UAEgB,iBAAiB;AAChC,0BAAsB,iBAAiB;AACxC;UAEgB,eAAe;AAC9B,wBAAoB,iBAAiB;AACtC;AAED,cACa,YAAY;AACvB,iCAA6B,UAAU,KAAK,eAAe;AA0C3D;;;;;;;;;;;;;;;AAeG;;oDA1DQ,YAAY;wDAAZ,YAAY;AA2ExB;;AC5GD,cAAa,SAAS;AACtB,cAAa,gCAAgC;AAC7C,cAAa,4BAA4B;AAEzC;;AAEG;UACc,eAAe;AAC9B;;;AAGG;;AAEH;;AAEG;;AAEH;;;AAGG;;AAEJ;AAED;;AAEG;UACc,wBAAwB;qBACtB,gBAAgB;;AAElC;UAEgB,eAAe;;;AAG/B;UAEgB,gBAAgB;AAC/B,kCAA8B,UAAU,KAAK,oBAAoB;AAClE;UAEgB,aAAa;AAC5B,kCAA8B,UAAU,yBAAyB,mBAAmB,KAAK,QAAQ;AACjG,8BAA0B,mBAAmB,aAAa,kBAAkB,OAAO,OAAO,CAAC,IAAI;;;;;;;;;AAShG;UAEgB,gBAAgB;;UAEzB,yBAAyB;;;;;AAKhC;AAED;;AAEG;UACc,UAAU;AACzB;AACA;;;AAGA;;AAEG;AACH;AACA;;AAEG;AACH;AACA;;;AAGG;AACH;AACA;AACD;UAEgB,gBAAgB;;AAE/B;;;;;AAKD;AAED;;;AAGG;AACG,UAAW,YAAa,SAAQ,gBAAgB;AACpD;AACA;AAAgB,6BAAqB,WAAW;AAAE;AACnD;AACD;;;AAGG;UACc,kCAAkC;AACjD;;;iCAG6B,IAAI;AAClC;AACD;;;AAGG;AACG,UAAW,mBAAoB,SAAQ,gBAAgB;;AAE3D;AACA;AACA;AACA;;AAED;AACD;;;;AAIG;KACS,UAAU;AAEtB;;AAEG;UACc,kBAAkB;;;;;AAKlC;AAED;;AAEG;UACc,YAAY;AAC3B;;;;;AAKG;iBACU,UAAU;AACvB;;;;AAIG;AACH,cAAU,kBAAkB;kBACd,iBAAiB;sBACb,gBAAgB;;;AAGnC;AACD;;AAEG;UACc,gBAAgB;;;AAGhC;AACD;;AAEG;UACc,qBAAqB;kBACtB,YAAY;;AAE3B;AACD;;;AAGG;UACc,kBAAkB;kCACH,UAAU;;yBAEnB,mBAAmB;AACzC;UAEgB,oBAAoB;AACnC,gBAAY,GAAG,CAAC,SAAS,EAAE,cAAc;;AAE1C;AACD;;;AAGG;AACG,KAAM,uBAAuB,GAAG,GAAG,CAAC,QAAQ;KAEtC,QAAQ;KAER,oBAAoB;AAE1B,KAAM,cAAc;AACxB,yBAAqB,WAAW;;UAGjB,cAAc;;;;AAI9B;AAED;;AAEG;AACG,KAAM,mBAAmB;iBAChB,iBAAiB;;;;AAK1B,KAAM,YAAY;;cAEZ,IAAI;;AAGV,KAAM,SAAS;AAEf,KAAM,YAAY;AACxB;;;AAGG;AACG,KAAM,YAAY;;;;AAUxB;;;AAGG;AACG,KAAM,cAAc;AACxB,yBAAqB,YAAY;;AAGnC,cAAa,kBAAkB;;;;AAK/B;;;;;;;;;;;;;;;;;AAiBG;AACH,cAAa,kBAAkB;;;;AAK/B,cAAa,6BAA6B;;;;AAK1C,cAAa,6CAA6C;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"c8y-ngx-components-datapoints-export-selector.d.ts","sources":["../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/utils.service.ts","../../datapoints-export-selector/datapoints-export-selector.model.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/data-fetching.service.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/data-processing.service.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/datapoints-export-selector-file-exporter.service.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/datapoints-export-selector-file-exporter.component.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/datapoints-export-selector-preview/datapoints-export-selector-preview.component.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/datapoints-exports-selector-data-scope/datapoints-exports-selector-data-scope.component.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/datapoints-exports-selector-file-types/datapoints-exports-selector-file-types.component.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/datapoints-exports-selector-time-range/datapoints-exports-selector-time-range.component.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/generators/csv-generator.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-file-exporter/generators/excel-generator.ts","../../datapoints-export-selector/datapoints-export-selector-modal/datapoints-export-selector-modal.component.ts","../../datapoints-export-selector/datapoints-export-selector.component.ts"],"mappings":"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","names":["AggregationOptionStatus","AggregationOption"]}
|