@provoly/dashboard 0.15.4 → 0.15.6

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.
@@ -258,6 +258,10 @@ export declare const DashboardActions: {
258
258
  image?: string | undefined;
259
259
  visibility?: PryVisibility | undefined;
260
260
  cover?: boolean | undefined;
261
+ metadata?: {
262
+ id: string;
263
+ value: string;
264
+ }[] | undefined;
261
265
  }) => {
262
266
  name: string;
263
267
  manifest?: GlobalManifest | undefined;
@@ -266,6 +270,10 @@ export declare const DashboardActions: {
266
270
  image?: string | undefined;
267
271
  visibility?: PryVisibility | undefined;
268
272
  cover?: boolean | undefined;
273
+ metadata?: {
274
+ id: string;
275
+ value: string;
276
+ }[] | undefined;
269
277
  } & import("@ngrx/store/src/models").TypedAction<"[Dashboard] save manifest">>;
270
278
  solveCollisions: import("@ngrx/store").ActionCreator<"[Dashboard] solving collisions", () => import("@ngrx/store/src/models").TypedAction<"[Dashboard] solving collisions">>;
271
279
  defaultManifest: import("@ngrx/store").ActionCreator<"[Dashboard] set default manifest", (props: {
@@ -14,7 +14,10 @@ export declare class ManifestService {
14
14
  constructor(httpClient: HttpClient, store: Store<any>, snackBar: PrySnackbarService, translateService: PryI18nService);
15
15
  list(): Observable<ManifestDescription[]>;
16
16
  get(id: string): Observable<GlobalManifest>;
17
- save(name: string, manifest: GlobalManifest, visibility: PryVisibility, id: string, description?: string, image?: string, cover?: boolean): Observable<{
17
+ save(name: string, manifest: GlobalManifest, visibility: PryVisibility, id: string, description?: string, image?: string, cover?: boolean, metadata?: {
18
+ id: string;
19
+ value: string;
20
+ }[]): Observable<{
18
21
  id: string;
19
22
  name: string;
20
23
  manifest: GlobalManifest;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/dashboard",
3
- "version": "0.15.4",
3
+ "version": "0.15.6",
4
4
  "type": "commonjs",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "14.x || 15.x || 16.x",
@@ -7,7 +7,7 @@ import { BehaviorSubject, Observable } from 'rxjs';
7
7
  import { MetaEventType } from '@provoly/dashboard/components/metadata-editor';
8
8
  import * as i0 from "@angular/core";
9
9
  export declare class PryAddEditPresentationComponent extends SubscriptionnerDirective implements OnInit, AfterViewInit {
10
- private store;
10
+ protected store: Store;
11
11
  protected router: Router;
12
12
  staticManifest$: Observable<GlobalManifest>;
13
13
  selectedPresentation$: BehaviorSubject<ManifestDescription | null>;