@omnia/fx-models 7.8.4-preview → 7.8.6-preview

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/Exposes.d.ts CHANGED
@@ -129,6 +129,7 @@ export * from "./authentication";
129
129
  export * from "./bulkimportusers";
130
130
  export * from "./linkstatus";
131
131
  export * from "./statuscodelayout";
132
+ export * from "./analytics";
132
133
  export * from "./FilePicker";
133
134
  export * from "./FileIdentifier";
134
135
  export * from "./UserAgent";
package/Exposes.js CHANGED
@@ -141,6 +141,7 @@ tslib_1.__exportStar(require("./authentication"), exports);
141
141
  tslib_1.__exportStar(require("./bulkimportusers"), exports);
142
142
  tslib_1.__exportStar(require("./linkstatus"), exports);
143
143
  tslib_1.__exportStar(require("./statuscodelayout"), exports);
144
+ tslib_1.__exportStar(require("./analytics"), exports);
144
145
  //************************************************************************************ */
145
146
  // End of folder exports
146
147
  //************************************************************************************ */
package/ManifestIds.d.ts CHANGED
@@ -58,6 +58,7 @@ export declare class OmniaResourceManifests {
58
58
  static get FxSpfx(): Guid;
59
59
  static get SpfxCustomizer(): Guid;
60
60
  static get SpfxWebpart(): Guid;
61
+ static get SpfxStandaloneWebpart(): Guid;
61
62
  static get FxUxVuetifySwitch(): Guid;
62
63
  static get FxUx(): Guid;
63
64
  static get FxUxVuetifyAvatar(): Guid;
@@ -212,6 +213,8 @@ export declare class OmniaWebComponentManifests {
212
213
  static get FxSpTermGlossaryMapping(): Guid;
213
214
  static get FxSpfxWpSetting(): Guid;
214
215
  static get FxSpfxWp(): Guid;
216
+ static get FxSpfxWpStandalone(): Guid;
217
+ static get FxSpfxWpStandaloneInstanceHandler(): Guid;
215
218
  static get FxUxSettingspane(): Guid;
216
219
  static get FxUxRollupEmpty(): Guid;
217
220
  static get FxUxRollupFilter(): Guid;
@@ -439,4 +442,5 @@ export declare class OmniaWebComponentManifests {
439
442
  static get DateTimePropertyEditor(): Guid;
440
443
  static get DateTimePropertyConfiguration(): Guid;
441
444
  static get BirthdayPropertyConfiguration(): Guid;
445
+ static get AnalyticsSettings(): Guid;
442
446
  }
package/ManifestIds.js CHANGED
@@ -202,6 +202,9 @@ class OmniaResourceManifests {
202
202
  static get SpfxWebpart() {
203
203
  return new models_1.Guid("65918982-f116-4cf8-9d13-a0d4cd5a01ce");
204
204
  }
205
+ static get SpfxStandaloneWebpart() {
206
+ return new models_1.Guid("a84eb0fb-0db9-4d16-a678-25b59aeb1248");
207
+ }
205
208
  static get FxUxVuetifySwitch() {
206
209
  return new models_1.Guid("81d8f551-1b9f-4f75-90c3-2fe5f25e4015");
207
210
  }
@@ -652,6 +655,12 @@ class OmniaWebComponentManifests {
652
655
  static get FxSpfxWp() {
653
656
  return new models_1.Guid("a7105d99-6040-472b-8d55-819f99a434db");
654
657
  }
658
+ static get FxSpfxWpStandalone() {
659
+ return new models_1.Guid("4d6cad2f-0eb9-48e1-aaef-ae35edab238c");
660
+ }
661
+ static get FxSpfxWpStandaloneInstanceHandler() {
662
+ return new models_1.Guid("d51665b2-c5e2-4861-ae33-dbba4418dcde");
663
+ }
655
664
  static get FxUxSettingspane() {
656
665
  return new models_1.Guid("c0de4753-b9fe-4004-b0f4-e6b6b91730ab");
657
666
  }
@@ -1324,5 +1333,6 @@ class OmniaWebComponentManifests {
1324
1333
  static get DateTimePropertyEditor() { return new models_1.Guid("0f52758b-4d0c-4e02-abfe-ea1c5c935571"); }
1325
1334
  static get DateTimePropertyConfiguration() { return new models_1.Guid("0AA4B891-6FCF-4B1F-959C-8FD04EF8BFE9"); }
1326
1335
  static get BirthdayPropertyConfiguration() { return new models_1.Guid("5b7f85ec-36cf-4e88-911e-7951ccec4e2b"); }
1336
+ static get AnalyticsSettings() { return new models_1.Guid("4d83f393-bd89-4ea0-b1c3-eb4ebce3ad19"); }
1327
1337
  }
1328
1338
  exports.OmniaWebComponentManifests = OmniaWebComponentManifests;
@@ -0,0 +1,7 @@
1
+ import { EventAction } from "./EventAction";
2
+ export interface AnalyticsSettings {
3
+ enableEventTracking: boolean;
4
+ eventCategory: string;
5
+ eventName: string;
6
+ eventActions: Array<EventAction>;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ import { GuidValue } from "../Exposes";
2
+ export interface EventAction {
3
+ id: GuidValue;
4
+ name: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ export * from "./AnalyticsSettings";
2
+ export * from "./EventAction";
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./AnalyticsSettings"), exports);
5
+ tslib_1.__exportStar(require("./EventAction"), exports);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "7.8.4-preview",
4
+ "version": "7.8.6-preview",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"