@salesforce/storefront-next-runtime 0.4.0-alpha.2 → 0.4.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.
package/dist/config.d.ts CHANGED
@@ -3,7 +3,7 @@ import { n as DefineConfigOptions, r as defineConfig, t as BaseConfig } from "./
3
3
  import * as react0 from "react";
4
4
  import { ReactNode } from "react";
5
5
  import * as react_jsx_runtime2 from "react/jsx-runtime";
6
- import * as react_router13 from "react-router";
6
+ import * as react_router12 from "react-router";
7
7
  import { MiddlewareFunction, RouterContextProvider } from "react-router";
8
8
 
9
9
  //#region src/config/get-config.d.ts
@@ -39,7 +39,7 @@ declare function useConfig<T extends Record<string, unknown> = Record<string, un
39
39
  * Populated by `createAppConfigMiddleware` with the `app` section of config.
40
40
  * Accessible in loaders, actions, and middleware via `context.get(appConfigContext)`.
41
41
  */
42
- declare const appConfigContext: react_router13.RouterContext<Record<string, unknown>>;
42
+ declare const appConfigContext: react_router12.RouterContext<Record<string, unknown>>;
43
43
  /**
44
44
  * React context for application configuration.
45
45
  *
@@ -1,11 +1,11 @@
1
- import * as react_router1 from "react-router";
1
+ import * as react_router0 from "react-router";
2
2
  import { RouterContextProvider } from "react-router";
3
3
 
4
4
  //#region src/data-store/middleware/custom-global-preferences.d.ts
5
5
 
6
6
  type CustomGlobalPreferences = Record<string, unknown>;
7
7
  declare const DEFAULT_CUSTOM_GLOBAL_PREFERENCES_KEY = "custom-global-preferences";
8
- declare const customGlobalPreferencesContext: react_router1.RouterContext<CustomGlobalPreferences | null>;
8
+ declare const customGlobalPreferencesContext: react_router0.RouterContext<CustomGlobalPreferences | null>;
9
9
  /**
10
10
  * Read custom global preferences from router context.
11
11
  *
@@ -14,7 +14,7 @@ declare const customGlobalPreferencesContext: react_router1.RouterContext<Custom
14
14
  * @throws Error when the data-store context is not available
15
15
  */
16
16
  declare function getCustomGlobalPreferences(context: Readonly<RouterContextProvider>): CustomGlobalPreferences;
17
- declare const customGlobalPreferencesMiddleware: react_router1.MiddlewareFunction<Response>;
17
+ declare const customGlobalPreferencesMiddleware: react_router0.MiddlewareFunction<Response>;
18
18
  //#endregion
19
19
  export { getCustomGlobalPreferences as a, customGlobalPreferencesMiddleware as i, DEFAULT_CUSTOM_GLOBAL_PREFERENCES_KEY as n, customGlobalPreferencesContext as r, CustomGlobalPreferences as t };
20
20
  //# sourceMappingURL=custom-global-preferences.d.ts.map
@@ -1,11 +1,11 @@
1
- import * as react_router0 from "react-router";
1
+ import * as react_router3 from "react-router";
2
2
  import { RouterContextProvider } from "react-router";
3
3
 
4
4
  //#region src/data-store/middleware/custom-site-preferences.d.ts
5
5
 
6
6
  type SitePreferences = Record<string, unknown>;
7
7
  declare const DEFAULT_SITE_PREFERENCES_KEY = "site-preferences";
8
- declare const sitePreferencesContext: react_router0.RouterContext<SitePreferences | null>;
8
+ declare const sitePreferencesContext: react_router3.RouterContext<SitePreferences | null>;
9
9
  /**
10
10
  * Read site preferences from router context.
11
11
  *
@@ -14,7 +14,7 @@ declare const sitePreferencesContext: react_router0.RouterContext<SitePreference
14
14
  * @throws Error when the data-store context is not available
15
15
  */
16
16
  declare function getSitePreferences(context: Readonly<RouterContextProvider>): SitePreferences;
17
- declare const customSitePreferencesMiddleware: react_router0.MiddlewareFunction<Response>;
17
+ declare const customSitePreferencesMiddleware: react_router3.MiddlewareFunction<Response>;
18
18
  //#endregion
19
19
  export { sitePreferencesContext as a, getSitePreferences as i, SitePreferences as n, customSitePreferencesMiddleware as r, DEFAULT_SITE_PREFERENCES_KEY as t };
20
20
  //# sourceMappingURL=custom-site-preferences.d.ts.map
@@ -1,7 +1,7 @@
1
1
  import { a as sitePreferencesContext, i as getSitePreferences, n as SitePreferences, t as DEFAULT_SITE_PREFERENCES_KEY } from "./custom-site-preferences.js";
2
2
  import { a as getCustomGlobalPreferences, n as DEFAULT_CUSTOM_GLOBAL_PREFERENCES_KEY, r as customGlobalPreferencesContext, t as CustomGlobalPreferences } from "./custom-global-preferences.js";
3
3
  import { a as getGcpApiKey, n as GcpPreferences, o as getGcpPreferences, r as gcpPreferencesContext, t as DEFAULT_GCP_PREFERENCES_KEY } from "./gcp-preferences.js";
4
- import * as react_router7 from "react-router";
4
+ import * as react_router6 from "react-router";
5
5
  import { MiddlewareFunction, RouterContextProvider, createContext } from "react-router";
6
6
  import { DataStore, DataStoreNotFoundError, DataStoreServiceError, DataStoreUnavailableError } from "@salesforce/mrt-utilities/data-store";
7
7
 
@@ -54,7 +54,7 @@ declare function getDataStoreEntry<TValue = unknown>(key: string): Promise<DataS
54
54
  type LoginPreferences = {
55
55
  emailVerificationEnabled?: boolean;
56
56
  };
57
- declare const loginPreferencesContext: react_router7.RouterContext<LoginPreferences | null>;
57
+ declare const loginPreferencesContext: react_router6.RouterContext<LoginPreferences | null>;
58
58
  /**
59
59
  * Read login preferences from router context.
60
60
  *
@@ -64,7 +64,7 @@ declare const loginPreferencesContext: react_router7.RouterContext<LoginPreferen
64
64
  declare function getLoginPreferences(context: Readonly<RouterContextProvider>): LoginPreferences;
65
65
  //#endregion
66
66
  //#region src/data-store/index.d.ts
67
- declare const dataStoreMiddleware: react_router7.MiddlewareFunction<Response>[];
67
+ declare const dataStoreMiddleware: react_router6.MiddlewareFunction<Response>[];
68
68
  //#endregion
69
69
  export { type CustomGlobalPreferences, DEFAULT_CUSTOM_GLOBAL_PREFERENCES_KEY, DEFAULT_GCP_PREFERENCES_KEY, DEFAULT_SITE_PREFERENCES_KEY, DataStore, type DataStoreContextKey, type DataStoreEntry, type DataStoreEntryKey, type DataStoreMiddlewareOptions, DataStoreNotFoundError, DataStoreServiceError, DataStoreUnavailableError, type GcpPreferences, type LoginPreferences, type SitePreferences, createDataStoreContext, createDataStoreMiddleware, customGlobalPreferencesContext, dataStoreMiddleware, gcpPreferencesContext, getCustomGlobalPreferences, getDataStoreEntry, getGcpApiKey, getGcpPreferences, getLoginPreferences, getSitePreferences, loginPreferencesContext, sitePreferencesContext };
70
70
  //# sourceMappingURL=data-store.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"data-store.d.ts","names":[],"sources":["../src/data-store/utils.ts","../src/data-store/middleware/login-preferences.ts","../src/data-store/index.ts"],"sourcesContent":[],"mappings":";;;;;;;;;AAkCc,KATF,mBASE,CAAA,CAAA,CAAA,GATuB,UASvB,CAAA,OATyC,aASzC,CATuD,CASvD,GAAA,IAAA,CAAA,CAAA;AACmB,KARrB,iBAAA,GAQqB,MAAA,GAAA,CAAA,CAAA,OAAA,EARmB,QAQnB,CAR4B,qBAQ5B,CAAA,EAAA,GAAA,MAAA,CAAA;AAApB,KAND,cAMC,CAAA,SAAA,OAAA,CAAA,GAAA;EACW,KAAA,CAAA,EANZ,MAMY;CAA4B;AAEhC,KALR,0BAKQ,CAAA,CAAA,CAAA,GAAA;EAAwB,QAAA,EAJ9B,iBAI8B;EAAT,OAAA,EAHtB,mBAGsB,CAHF,CAGE,CAAA;EAAoC,SAAA,CAAA,EAAA,CAAA,KAAA,EAF/C,MAE+C,CAAA,MAAA,EAAA,OAAA,CAAA,EAAA,GAFnB,CAEmB;EAAC,aAAA,CAAA,EAAA,OAAA,GAAA,UAAA;EAUxD,aAAA,CAAA,EAVI,CAUJ,GAAA,CAAA,CAAA,OAAsB,EAVH,QAU8B,CAVrB,qBAUC,CAAmB,EAAA,GAVO,CAUP,CAAA;AAgBhE,CAAA;;;;;;AAwDA;;AAAgF,iBAxEhE,sBAwEgE,CAAA,CAAA,CAAA,CAAA,CAAA,EAxEnC,mBAwEmC,CAxEf,CAwEe,CAAA;;;;;;ACrGhF;AAIA;AASA;;;;;iBDgCgB,sCAAsC,2BAA2B,KAAK,mBAAmB;;;AETzG;;;;;;iBFiEsB,kDAAkD,QAAQ,eAAe;;;AAtFjF,KCfF,gBAAA,GDeE;EACmB,wBAAA,CAAA,EAAA,OAAA;CAApB;AACW,cCbX,uBDaW,ECbY,aAAA,CAAA,aDaZ,CCbY,gBDaZ,GAAA,IAAA,CAAA;;;;;;;AAYR,iBChBA,mBAAA,CDgBiD,OAApB,EChBA,QDgBA,CChBS,qBDgBU,CAAA,CAAA,EChBe,gBDgBf;;;AAgBsB,cETzE,mBFSyE,EETtD,aAAA,CAAA,kBFSsD,CETtD,QFSsD,CAAA,EAAA"}
1
+ {"version":3,"file":"data-store.d.ts","names":[],"sources":["../src/data-store/utils.ts","../src/data-store/middleware/login-preferences.ts","../src/data-store/index.ts"],"sourcesContent":[],"mappings":";;;;;;;;;AAkCc,KATF,mBASE,CAAA,CAAA,CAAA,GATuB,UASvB,CAAA,OATyC,aASzC,CATuD,CASvD,GAAA,IAAA,CAAA,CAAA;AACmB,KARrB,iBAAA,GAQqB,MAAA,GAAA,CAAA,CAAA,OAAA,EARmB,QAQnB,CAR4B,qBAQ5B,CAAA,EAAA,GAAA,MAAA,CAAA;AAApB,KAND,cAMC,CAAA,SAAA,OAAA,CAAA,GAAA;EACW,KAAA,CAAA,EANZ,MAMY;CAA4B;AAEhC,KALR,0BAKQ,CAAA,CAAA,CAAA,GAAA;EAAwB,QAAA,EAJ9B,iBAI8B;EAAT,OAAA,EAHtB,mBAGsB,CAHF,CAGE,CAAA;EAAoC,SAAA,CAAA,EAAA,CAAA,KAAA,EAF/C,MAE+C,CAAA,MAAA,EAAA,OAAA,CAAA,EAAA,GAFnB,CAEmB;EAAC,aAAA,CAAA,EAAA,OAAA,GAAA,UAAA;EAUxD,aAAA,CAAA,EAVI,CAUJ,GAAA,CAAA,CAAA,OAAsB,EAVH,QAU8B,CAVrB,qBAUoB,CAAA,EAAA,GAVO,CAUP,CAAA;AAgBhE,CAAA;;;;;;AAwDA;;AAAgF,iBAxEhE,sBAwEgE,CAAA,CAAA,CAAA,CAAA,CAAA,EAxEnC,mBAwEmC,CAxEf,CAwEe,CAAA;;;;;;ACrGhF;AAIA;AASA;;;;;iBDgCgB,sCAAsC,2BAA2B,KAAK,mBAAmB;;;AETzG;;;;;;iBFiEsB,kDAAkD,QAAQ,eAAe;;;AAtFjF,KCfF,gBAAA,GDeE;EACmB,wBAAA,CAAA,EAAA,OAAA;CAApB;AACW,cCbX,uBDaW,ECbY,aAAA,CAAA,aDaZ,CCbY,gBDaZ,GAAA,IAAA,CAAA;;;;;;;AAYR,iBChBA,mBAAA,CDgBiD,OAApB,EChBA,QDgBA,CChBS,qBDgBU,CAAA,CAAA,EChBe,gBDgBf;;;AAgBsB,cETzE,mBFSyE,EETtD,aAAA,CAAA,kBFSsD,CETtD,QFSsD,CAAA,EAAA"}
@@ -54,7 +54,7 @@ declare function PageDesignerPageMetadataProvider({
54
54
  //#region src/design/react/core/RegionContext.d.ts
55
55
  interface RegionContextType {
56
56
  regionId: string;
57
- componentIds: string[];
57
+ contentLinkUuids: string[];
58
58
  }
59
59
  declare const RegionContext: React$1.Context<RegionContextType | null>;
60
60
  declare const useRegionContext: () => RegionContextType | null;
@@ -63,6 +63,7 @@ declare const useRegionContext: () => RegionContextType | null;
63
63
  interface ComponentContextType {
64
64
  componentId: string;
65
65
  name?: string;
66
+ contentLinkUuid?: string;
66
67
  }
67
68
  declare const ComponentContext: React$1.Context<ComponentContextType | null>;
68
69
  declare const useComponentContext: () => ComponentContextType | null;
@@ -1 +1 @@
1
- {"version":3,"file":"design-react-core.d.ts","names":[],"sources":["../src/design/react/core/PageDesignerProvider.tsx","../src/design/react/core/PageDesignerPageMetadataProvider.tsx","../src/design/react/core/RegionContext.tsx","../src/design/react/core/ComponentContext.tsx","../src/design/react/core/ComponentDecorator.tsx","../src/design/react/core/RegionDecorator.tsx","../src/design/react/core/adapter.ts"],"sourcesContent":[],"mappings":";;;;;;;;KAoCK,uBAAA;;;;cAaQ,2BAA0B;KAElC,yBAAA;EAfA,QAAA,EAgBS,KAAA,CAAM,SAhBf;EAaQ,QAAA,EAAA,MAAA;EAER,YAAA,EAAA,MAAA;EAWQ,IAAA,CAAA,EAAA,MAAA;iBANM;;;;;cAMN;;;;;;;;;;KASV,4BAA4B,KAAA,CAAM,GAAA,CAAI;;IAAtC,uBAAA,EAAA,MAAA;IAAkC,wBAAI,EAAA,MAAA;IAAO,IAAA,EAAA,SAAA;;;;;;;;;iBC7ChC,gCAAA;;;GAGb,KAAA,CAAM;QAA0B,iBAAA,CAAkB;KAAkB,kBAAA,CAAA,GAAA,CAAA;;;UCZtD,iBAAA;;;;AFsDd,cEjDU,aFiDV,EEjDuB,OAAA,CAAA,OFiDvB,CEjDuB,iBFiDvB,GAAA,IAAA,CAAA;AAAkC,cE/CxB,gBF+C4B,EAAA,GAAA,GE/CL,iBF+CK,GAAA,IAAA;;;UGtDxB,oBAAA;;;;AHsDd,cGjDU,gBHiDV,EGjD0B,OAAA,CAAA,OHiD1B,CGjD0B,oBHiD1B,GAAA,IAAA,CAAA;AAAkC,cG/CxB,mBH+C4B,EAAA,GAAA,GG/CF,oBH+CE,GAAA,IAAA;;;;;;;;;;AAtD0B;AAgCnE;AAEK,iBIlBW,mCJmBI,CAAA,MAID,CAAA,CAAA,SAAA,EItBJ,KAAA,CAAM,aJsBqB,CItBP,MJsBO,CAAA,CAAA,EAAA,CAAA,KAAA,EIrB/B,uBJqB+B,CIrBP,MJqBO,CAAA,EAAA,GIrBK,KAAA,CAAM,GAAA,CAAI,OJqBf;;;iBKjC1B,iDACJ,KAAA,CAAM,cAAc,kBACrB,qBAAqB,YAAY,KAAA,CAAM,GAAA,CAAI;;;KCH1C,+BAA+B,gBAAgB,QAAQ,yBAAyB;;;;;;KAOhF,mCACN,OAAA,CAAM,cAAc,UACpB,OAAA,CAAM,oBAAoB,OAAA,CAAM,cAAc;;;ALLpD;;AAEI,cKWS,YLXT,CAAA,MAAA,CAAA,YKWyC,gBLXzC,CKW0D,MLX1D,EKWkE,wBLXlE,CKW2F,MLX3F,CAAA,CAAA,CAAA;EAC+B;;;EAAoC,mBAAA,CAAA,QAAA,EAAA,GAAA,GKc/B,OLd+B,CKcvB,oBLduB,CKcF,MLdE,CAAA,CAAA,CAAA,EKcS,wBLdT,CKckC,MLdlC,CAAA;;;;ACZvE;EAKa,iBAAmE,CAAA,SAAA,EIqC/C,wBJrCP,CIqCgC,MJrChC,CAAA,CAAA,EIqC0C,wBJrC1C,CIqCmE,MJrCnE,CAAA;AAE1B;;;;ACPiB,iBGoDD,kBHpDqB,CAAA,MAAA,CAAA,CAAA,CAAA,EGoDS,YHpDT,CGoDsB,MHpDtB,CAAA"}
1
+ {"version":3,"file":"design-react-core.d.ts","names":[],"sources":["../src/design/react/core/PageDesignerProvider.tsx","../src/design/react/core/PageDesignerPageMetadataProvider.tsx","../src/design/react/core/RegionContext.tsx","../src/design/react/core/ComponentContext.tsx","../src/design/react/core/ComponentDecorator.tsx","../src/design/react/core/RegionDecorator.tsx","../src/design/react/core/adapter.ts"],"sourcesContent":[],"mappings":";;;;;;;;KAoCK,uBAAA;;;;cAaQ,2BAA0B;KAElC,yBAAA;EAfA,QAAA,EAgBS,KAAA,CAAM,SAhBf;EAaQ,QAAA,EAAA,MAAA;EAER,YAAA,EAAA,MAAA;EAWQ,IAAA,CAAA,EAAA,MAAA;iBANM;;;;;cAMN;;;;;;;;;;KASV,4BAA4B,KAAA,CAAM,GAAA,CAAI;;IAAtC,uBAAA,EAAA,MAAA;IAAkC,wBAAI,EAAA,MAAA;IAAO,IAAA,EAAA,SAAA;;;;;;;;;iBC7ChC,gCAAA;;;GAGb,KAAA,CAAM;QAA0B,iBAAA,CAAkB;KAAkB,kBAAA,CAAA,GAAA,CAAA;;;UCZtD,iBAAA;;;;AFsDd,cEjDU,aFiDV,EEjDuB,OAAA,CAAA,OFiDvB,CEjDuB,iBFiDvB,GAAA,IAAA,CAAA;AAAkC,cE/CxB,gBF+C4B,EAAA,GAAA,GE/CL,iBF+CK,GAAA,IAAA;;;UGtDxB,oBAAA;;;;;AHsDoB,cGhDxB,gBHgD4B,EGhDZ,OAAA,CAAA,OHgDY,CGhDZ,oBHgDY,GAAA,IAAA,CAAA;AAAO,cG9CnC,mBH8CmC,EAAA,GAAA,GG9CT,oBH8CS,GAAA,IAAA;;;;;;;;;;AAtDmB;AAgCnE;AAEK,iBIlBW,mCJmBI,CAAA,MAID,CAAA,CAAA,SAAA,EItBJ,KAAA,CAAM,aJsBqB,CItBP,MJsBO,CAAA,CAAA,EAAA,CAAA,KAAA,EIrB/B,uBJqB+B,CIrBP,MJqBO,CAAA,EAAA,GIrBK,KAAA,CAAM,GAAA,CAAI,OJqBf;;;iBKjC1B,iDACJ,KAAA,CAAM,cAAc,kBACrB,qBAAqB,YAAY,KAAA,CAAM,GAAA,CAAI;;;KCH1C,+BAA+B,gBAAgB,QAAQ,yBAAyB;;;;;;KAOhF,mCACN,OAAA,CAAM,cAAc,UACpB,OAAA,CAAM,oBAAoB,OAAA,CAAM,cAAc;;;ALLpD;;AAEI,cKWS,YLXT,CAAA,MAAA,CAAA,YKWyC,gBLXzC,CKW0D,MLX1D,EKWkE,wBLXlE,CKW2F,MLX3F,CAAA,CAAA,CAAA;EAC+B;;;EAAoC,mBAAA,CAAA,QAAA,EAAA,GAAA,GKc/B,OLd+B,CKcvB,oBLduB,CKcF,MLdE,CAAA,CAAA,CAAA,EKcS,wBLdT,CKckC,MLdlC,CAAA;;;;ACZvE;EAKa,iBAAmE,CAAA,SAAA,EIqC/C,wBJrCP,CIqCgC,MJrChC,CAAA,CAAA,EIqC0C,wBJrC1C,CIqCmE,MJrCnE,CAAA;AAE1B;;;;ACPiB,iBGoDD,kBHpDqB,CAAA,MAAA,CAAA,CAAA,CAAA,EGoDS,YHpDT,CGoDsB,MHpDtB,CAAA"}
@@ -1,4 +1,4 @@
1
- import * as react_router3 from "react-router";
1
+ import * as react_router1 from "react-router";
2
2
  import { RouterContextProvider } from "react-router";
3
3
 
4
4
  //#region src/data-store/middleware/gcp-preferences.d.ts
@@ -15,7 +15,7 @@ type GcpPreferences = {
15
15
  apiKey: string;
16
16
  };
17
17
  declare const DEFAULT_GCP_PREFERENCES_KEY = "gcp";
18
- declare const gcpPreferencesContext: react_router3.RouterContext<GcpPreferences | null>;
18
+ declare const gcpPreferencesContext: react_router1.RouterContext<GcpPreferences | null>;
19
19
  /**
20
20
  * Read the GCP (Google Cloud Platform) preferences object from router context.
21
21
  *
@@ -46,7 +46,7 @@ declare function getGcpApiKey(context: Readonly<RouterContextProvider>): string;
46
46
  * Must run before any loader/middleware that reads `getGcpPreferences(context)`
47
47
  * or `getGcpApiKey(context)`.
48
48
  */
49
- declare const gcpPreferencesMiddleware: react_router3.MiddlewareFunction<Response>;
49
+ declare const gcpPreferencesMiddleware: react_router1.MiddlewareFunction<Response>;
50
50
  //#endregion
51
51
  export { getGcpApiKey as a, gcpPreferencesMiddleware as i, GcpPreferences as n, getGcpPreferences as o, gcpPreferencesContext as r, DEFAULT_GCP_PREFERENCES_KEY as t };
52
52
  //# sourceMappingURL=gcp-preferences.d.ts.map
package/dist/index.d.ts CHANGED
@@ -15,12 +15,25 @@ interface WithComponentId {
15
15
  */
16
16
  componentId: string;
17
17
  }
18
+ interface WithContentLinkUuid {
19
+ /**
20
+ * The content link UUID of the component.
21
+ */
22
+ contentLinkUuid: string;
23
+ }
18
24
  interface WithComponentType {
19
25
  /**
20
26
  * The component type that the event is related to.
21
27
  */
22
28
  componentType: string;
23
29
  }
30
+ interface WithFragmentId {
31
+ /**
32
+ * The id of the fragment that the event is related to.
33
+ * Fragments are reusable component instances that can be placed in multiple locations.
34
+ */
35
+ fragmentId?: string;
36
+ }
24
37
  /**
25
38
  * @inline
26
39
  * @hidden
@@ -282,7 +295,7 @@ interface ClientWindowDragExitedEvent extends WithBaseEvent, WithComponentType {
282
295
  * @target client
283
296
  * @group Events
284
297
  */
285
- interface ClientWindowDragDroppedEvent extends WithBaseEvent, WithComponentType {
298
+ interface ClientWindowDragDroppedEvent extends WithBaseEvent, WithComponentType, WithFragmentId {
286
299
  eventType: 'ClientWindowDragDropped';
287
300
  }
288
301
  /**
@@ -302,7 +315,7 @@ interface ComponentPropertiesChangedEvent<TProps extends Record<string, unknown>
302
315
  * @target client
303
316
  * @group Events
304
317
  */
305
- interface ComponentFocusedEvent extends WithBaseEvent, WithComponentId {
318
+ interface ComponentFocusedEvent extends WithBaseEvent, WithComponentId, WithContentLinkUuid {
306
319
  eventType: 'ComponentFocused';
307
320
  }
308
321
  /**
@@ -356,14 +369,14 @@ interface WindowScrollChangedEvent extends WithBaseEvent {
356
369
  * @target isomorphic
357
370
  * @group Events
358
371
  */
359
- interface ComponentMovedToRegionEvent extends WithBaseEvent, WithComponentId {
372
+ interface ComponentMovedToRegionEvent extends WithBaseEvent, WithComponentId, WithContentLinkUuid {
360
373
  eventType: 'ComponentMovedToRegion';
361
374
  /**
362
375
  * The id of the component that comes before the insert component.
363
376
  */
364
377
  beforeComponentId?: string;
365
378
  /**
366
- * The id of the component that comes afterthe insert component.
379
+ * The id of the component that comes after the insert component.
367
380
  */
368
381
  afterComponentId?: string;
369
382
  /**
@@ -393,7 +406,7 @@ interface ComponentMovedToRegionEvent extends WithBaseEvent, WithComponentId {
393
406
  * @target isomorphic
394
407
  * @group Events
395
408
  */
396
- interface ComponentHoveredInEvent extends WithBaseEvent, WithComponentId {
409
+ interface ComponentHoveredInEvent extends WithBaseEvent, WithComponentId, WithContentLinkUuid {
397
410
  eventType: 'ComponentHoveredIn';
398
411
  }
399
412
  /**
@@ -401,7 +414,7 @@ interface ComponentHoveredInEvent extends WithBaseEvent, WithComponentId {
401
414
  * @target isomorphic
402
415
  * @group Events
403
416
  */
404
- interface ComponentHoveredOutEvent extends WithBaseEvent, WithComponentId {
417
+ interface ComponentHoveredOutEvent extends WithBaseEvent, WithComponentId, WithContentLinkUuid {
405
418
  eventType: 'ComponentHoveredOut';
406
419
  }
407
420
  /**
@@ -409,7 +422,7 @@ interface ComponentHoveredOutEvent extends WithBaseEvent, WithComponentId {
409
422
  * @target isomorphic
410
423
  * @group Events
411
424
  */
412
- interface ComponentSelectedEvent extends WithBaseEvent, WithComponentId {
425
+ interface ComponentSelectedEvent extends WithBaseEvent, WithComponentId, WithContentLinkUuid {
413
426
  eventType: 'ComponentSelected';
414
427
  }
415
428
  /**
@@ -417,7 +430,7 @@ interface ComponentSelectedEvent extends WithBaseEvent, WithComponentId {
417
430
  * @target isomorphic
418
431
  * @group Events
419
432
  */
420
- interface ComponentDeselectedEvent extends WithBaseEvent, WithComponentId {
433
+ interface ComponentDeselectedEvent extends WithBaseEvent, WithComponentId, WithContentLinkUuid {
421
434
  eventType: 'ComponentDeselected';
422
435
  }
423
436
  /**
@@ -425,7 +438,7 @@ interface ComponentDeselectedEvent extends WithBaseEvent, WithComponentId {
425
438
  * @target isomorphic
426
439
  * @group Events
427
440
  */
428
- interface ComponentDeletedEvent extends WithBaseEvent, WithComponentId {
441
+ interface ComponentDeletedEvent extends WithBaseEvent, WithComponentId, WithContentLinkUuid {
429
442
  eventType: 'ComponentDeleted';
430
443
  /**
431
444
  * The id of the component that the component was deleted from.
@@ -442,7 +455,7 @@ interface ComponentDeletedEvent extends WithBaseEvent, WithComponentId {
442
455
  * @target isomorphic
443
456
  * @group Events
444
457
  */
445
- interface ComponentAddedToRegionEvent<TProps extends Record<string, unknown> = Record<string, unknown>> extends WithBaseEvent {
458
+ interface ComponentAddedToRegionEvent<TProps extends Record<string, unknown> = Record<string, unknown>> extends WithBaseEvent, WithFragmentId {
446
459
  eventType: 'ComponentAddedToRegion';
447
460
  /**
448
461
  * The specifier of the component to add.
@@ -476,7 +489,7 @@ interface ComponentAddedToRegionEvent<TProps extends Record<string, unknown> = R
476
489
  */
477
490
  beforeComponentId?: string;
478
491
  /**
479
- * The id of the component that comes afterthe insert component.
492
+ * The id of the component that comes after the insert component.
480
493
  */
481
494
  afterComponentId?: string;
482
495
  }
@@ -485,7 +498,7 @@ interface ComponentAddedToRegionEvent<TProps extends Record<string, unknown> = R
485
498
  * @target isomorphic
486
499
  * @group Events
487
500
  */
488
- interface ComponentDragStartedEvent extends WithBaseEvent {
501
+ interface ComponentDragStartedEvent extends WithBaseEvent, WithFragmentId {
489
502
  eventType: 'ComponentDragStarted';
490
503
  /**
491
504
  * The type of the component that is being dragged.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","names":[],"sources":["../src/design/messaging-api/domain-types.ts","../src/design/messaging-api/api-types.ts","../src/design/messaging-api/client.ts","../src/design/messaging-api/host.ts"],"sourcesContent":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../src/design/messaging-api/domain-types.ts","../src/design/messaging-api/api-types.ts","../src/design/messaging-api/client.ts","../src/design/messaging-api/host.ts"],"sourcesContent":[],"mappings":"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"}