@omnia/fx-models 7.8.125-preview → 7.8.127-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/Secrets.d.ts +2 -1
- package/Secrets.js +3 -2
- package/package.json +1 -1
package/Secrets.d.ts
CHANGED
|
@@ -37,7 +37,8 @@ export interface SecretField {
|
|
|
37
37
|
export interface SecretForm {
|
|
38
38
|
fields: SecretField[];
|
|
39
39
|
}
|
|
40
|
-
export declare const
|
|
40
|
+
export declare const UnsplashSettingsKey = "omnia-unsplash-configuration-secret";
|
|
41
|
+
export declare const UnsplashSecretForm: {
|
|
41
42
|
readonly applicationId: "applicationid";
|
|
42
43
|
readonly clientIdKey: "clientidkey";
|
|
43
44
|
};
|
package/Secrets.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
3
|
+
exports.UnsplashSecretForm = exports.UnsplashSettingsKey = void 0;
|
|
4
|
+
exports.UnsplashSettingsKey = "omnia-unsplash-configuration-secret";
|
|
5
|
+
exports.UnsplashSecretForm = {
|
|
5
6
|
applicationId: "applicationid",
|
|
6
7
|
clientIdKey: "clientidkey"
|
|
7
8
|
};
|
package/package.json
CHANGED