@3e/sqa-common 7.2.0-4 → 7.3.0-2
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 +9 -2
- package/package.json +1 -1
- package/sqa_common.js +1552 -1548
- package/types.ts +7 -0
package/index.d.ts
CHANGED
|
@@ -448,8 +448,15 @@ declare module '@3e/sqa-common' {
|
|
|
448
448
|
end: ISODateString
|
|
449
449
|
periodTimeMode: PeriodTimeMode
|
|
450
450
|
}
|
|
451
|
-
|
|
452
|
-
|
|
451
|
+
|
|
452
|
+
/**
|
|
453
|
+
* Gets the datasets (e.g. for a legend).
|
|
454
|
+
* - resolve-parameters (set to true to expand the templates to all objects)
|
|
455
|
+
* - on-error (set to inline to get errors, inline, or throw to throw)
|
|
456
|
+
* @param view
|
|
457
|
+
* @param opts
|
|
458
|
+
*/
|
|
459
|
+
getDatasets(view: SQView, opts: getDatasetsOptions): Promise<Dataset[]>
|
|
453
460
|
|
|
454
461
|
/**
|
|
455
462
|
* Adds a dataset to the view using a fixed set of objects.
|