@veltdev/sdk 1.0.57 → 1.0.59
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.
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare class CustomerMetadata {
|
|
2
|
+
customBranding?: CustomBranding;
|
|
3
|
+
}
|
|
4
|
+
export declare class CustomBranding {
|
|
5
|
+
logo?: {
|
|
6
|
+
logoMark?: {
|
|
7
|
+
lightUrl?: string;
|
|
8
|
+
darkUrl?: string;
|
|
9
|
+
};
|
|
10
|
+
wordMark?: {
|
|
11
|
+
lightUrl?: string;
|
|
12
|
+
darkUrl?: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export declare class Constants {
|
|
|
33
33
|
static FIREBASE_PARTIAL_PATH_FEEDBACK: string;
|
|
34
34
|
static FIREBASE_PARTIAL_PATH_BUGS: string;
|
|
35
35
|
static FIREBASE_PARTIAL_PATH_CONTACT_US: string;
|
|
36
|
+
static FIREBASE_PARTIAL_PATH_CUSTOMER_METADATA: string;
|
|
36
37
|
static PRESENCE_STATUS_ONLINE: string;
|
|
37
38
|
static PRESENCE_STATUS_OFFLINE: string;
|
|
38
39
|
static PRESENCE_STATUS_AWAY: string;
|
|
@@ -245,6 +246,7 @@ export declare class Constants {
|
|
|
245
246
|
VELT_SINGLE_EDITOR_MODE_CONTAINER: string;
|
|
246
247
|
VELT_IFRAME_CONTAINER: string;
|
|
247
248
|
VELT_IFRAME_CONTAINER_STATIC: string;
|
|
249
|
+
VELT_IS_FIRST_COMPONENT: string;
|
|
248
250
|
};
|
|
249
251
|
static INJECTION_STYLE_PROPS: {
|
|
250
252
|
/**
|
package/models.d.ts
CHANGED
|
@@ -43,3 +43,4 @@ export * from './app/models/data/user-role.data.model';
|
|
|
43
43
|
export * from './app/models/data/user.data.model';
|
|
44
44
|
export * from './app/models/data/workspace-iam.data.model';
|
|
45
45
|
export * from './app/models/data/flock-options.model';
|
|
46
|
+
export * from './app/models/data/customer-metadata.data.model';
|