@omnia/fx-models 7.8.135-preview → 7.8.138-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
@@ -133,6 +133,7 @@ export * from "./analytics";
133
133
  export * from "./semanticsearch";
134
134
  export * from "./aiengine";
135
135
  export * from "./filterbuilder";
136
+ export * from "./unsplash";
136
137
  export * from "./FilePicker";
137
138
  export * from "./FileIdentifier";
138
139
  export * from "./UserAgent";
package/Exposes.js CHANGED
@@ -145,6 +145,7 @@ tslib_1.__exportStar(require("./analytics"), exports);
145
145
  tslib_1.__exportStar(require("./semanticsearch"), exports);
146
146
  tslib_1.__exportStar(require("./aiengine"), exports);
147
147
  tslib_1.__exportStar(require("./filterbuilder"), exports);
148
+ tslib_1.__exportStar(require("./unsplash"), exports);
148
149
  //************************************************************************************ */
149
150
  // End of folder exports
150
151
  //************************************************************************************ */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "7.8.135-preview",
4
+ "version": "7.8.138-preview",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -0,0 +1,4 @@
1
+ export interface UnsplashAuthenticationInfo {
2
+ applicationId: string;
3
+ clientIdKey: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1 @@
1
+ export * from "./UnsplashAuthenticationInfo";
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./UnsplashAuthenticationInfo"), exports);