@connectedxm/client 0.5.36 → 0.5.38
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/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1563,6 +1563,7 @@ interface OrganizationConfig {
|
|
|
1563
1563
|
COGNITO_HOSTED_URL: string;
|
|
1564
1564
|
BUNDLE_IDENTIFIER: string | null;
|
|
1565
1565
|
EXPO_PROJECT_ID: string | null;
|
|
1566
|
+
EXPO_SLUG: string | null;
|
|
1566
1567
|
API_URL: "https://client-api.connectedxm.com" | "https://staging-client-api.connectedxm.com";
|
|
1567
1568
|
OPENGRAPH_URL: "https://opengraph-api.connectedxm.com" | "https://staging-opengraph-api.connectedxm.com";
|
|
1568
1569
|
CHAT_URL: "wss://chat.connectedxm.com" | "wss://staging-chat.connectedxm.com";
|
|
@@ -1587,6 +1588,7 @@ interface OrganizationConfig {
|
|
|
1587
1588
|
DEFAULT_LOCALE: SupportedLocale;
|
|
1588
1589
|
LANGUAGES: Record<SupportedLocale, Record<string, string>>;
|
|
1589
1590
|
AUTH: {
|
|
1591
|
+
LAYOUT: "default" | "social";
|
|
1590
1592
|
DEFAULT_ACTION: DefaultAuthAction;
|
|
1591
1593
|
FACEBOOK: boolean;
|
|
1592
1594
|
GOOGLE: boolean;
|
|
@@ -1621,7 +1623,7 @@ interface OrganizationAction {
|
|
|
1621
1623
|
}
|
|
1622
1624
|
interface OrganizationOAuth {
|
|
1623
1625
|
name: string;
|
|
1624
|
-
|
|
1626
|
+
btnText?: string;
|
|
1625
1627
|
icon?: string;
|
|
1626
1628
|
color: string;
|
|
1627
1629
|
textColor: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1563,6 +1563,7 @@ interface OrganizationConfig {
|
|
|
1563
1563
|
COGNITO_HOSTED_URL: string;
|
|
1564
1564
|
BUNDLE_IDENTIFIER: string | null;
|
|
1565
1565
|
EXPO_PROJECT_ID: string | null;
|
|
1566
|
+
EXPO_SLUG: string | null;
|
|
1566
1567
|
API_URL: "https://client-api.connectedxm.com" | "https://staging-client-api.connectedxm.com";
|
|
1567
1568
|
OPENGRAPH_URL: "https://opengraph-api.connectedxm.com" | "https://staging-opengraph-api.connectedxm.com";
|
|
1568
1569
|
CHAT_URL: "wss://chat.connectedxm.com" | "wss://staging-chat.connectedxm.com";
|
|
@@ -1587,6 +1588,7 @@ interface OrganizationConfig {
|
|
|
1587
1588
|
DEFAULT_LOCALE: SupportedLocale;
|
|
1588
1589
|
LANGUAGES: Record<SupportedLocale, Record<string, string>>;
|
|
1589
1590
|
AUTH: {
|
|
1591
|
+
LAYOUT: "default" | "social";
|
|
1590
1592
|
DEFAULT_ACTION: DefaultAuthAction;
|
|
1591
1593
|
FACEBOOK: boolean;
|
|
1592
1594
|
GOOGLE: boolean;
|
|
@@ -1621,7 +1623,7 @@ interface OrganizationAction {
|
|
|
1621
1623
|
}
|
|
1622
1624
|
interface OrganizationOAuth {
|
|
1623
1625
|
name: string;
|
|
1624
|
-
|
|
1626
|
+
btnText?: string;
|
|
1625
1627
|
icon?: string;
|
|
1626
1628
|
color: string;
|
|
1627
1629
|
textColor: string;
|