@connectedxm/client 0.5.32 → 0.5.34
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 +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +7 -1
- package/dist/index.mjs +7 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1561,6 +1561,8 @@ interface OrganizationConfig {
|
|
|
1561
1561
|
COGNITO_USERPOOL_ID: string;
|
|
1562
1562
|
COGNITO_CLIENT_ID: string;
|
|
1563
1563
|
COGNITO_HOSTED_URL: string;
|
|
1564
|
+
BUNDLE_IDENTIFIER: string | null;
|
|
1565
|
+
EXPO_EXPO_PROJECT_ID: string | null;
|
|
1564
1566
|
API_URL: "https://client-api.connectedxm.com" | "https://staging-client-api.connectedxm.com";
|
|
1565
1567
|
OPENGRAPH_URL: "https://opengraph-api.connectedxm.com" | "https://staging-opengraph-api.connectedxm.com";
|
|
1566
1568
|
CHAT_URL: "wss://chat.connectedxm.com" | "wss://staging-chat.connectedxm.com";
|
|
@@ -1579,6 +1581,9 @@ interface OrganizationConfig {
|
|
|
1579
1581
|
LIGHT: string;
|
|
1580
1582
|
DARK?: string;
|
|
1581
1583
|
};
|
|
1584
|
+
APP_ICON: string | null;
|
|
1585
|
+
ADAPTIVE_ICON: string | null;
|
|
1586
|
+
SPLASH_SCREEN: string | null;
|
|
1582
1587
|
DEFAULT_LOCALE: SupportedLocale;
|
|
1583
1588
|
LANGUAGES: Record<SupportedLocale, Record<string, string>>;
|
|
1584
1589
|
AUTH: {
|
package/dist/index.d.ts
CHANGED
|
@@ -1561,6 +1561,8 @@ interface OrganizationConfig {
|
|
|
1561
1561
|
COGNITO_USERPOOL_ID: string;
|
|
1562
1562
|
COGNITO_CLIENT_ID: string;
|
|
1563
1563
|
COGNITO_HOSTED_URL: string;
|
|
1564
|
+
BUNDLE_IDENTIFIER: string | null;
|
|
1565
|
+
EXPO_EXPO_PROJECT_ID: string | null;
|
|
1564
1566
|
API_URL: "https://client-api.connectedxm.com" | "https://staging-client-api.connectedxm.com";
|
|
1565
1567
|
OPENGRAPH_URL: "https://opengraph-api.connectedxm.com" | "https://staging-opengraph-api.connectedxm.com";
|
|
1566
1568
|
CHAT_URL: "wss://chat.connectedxm.com" | "wss://staging-chat.connectedxm.com";
|
|
@@ -1579,6 +1581,9 @@ interface OrganizationConfig {
|
|
|
1579
1581
|
LIGHT: string;
|
|
1580
1582
|
DARK?: string;
|
|
1581
1583
|
};
|
|
1584
|
+
APP_ICON: string | null;
|
|
1585
|
+
ADAPTIVE_ICON: string | null;
|
|
1586
|
+
SPLASH_SCREEN: string | null;
|
|
1582
1587
|
DEFAULT_LOCALE: SupportedLocale;
|
|
1583
1588
|
LANGUAGES: Record<SupportedLocale, Record<string, string>>;
|
|
1584
1589
|
AUTH: {
|
package/dist/index.js
CHANGED
|
@@ -3239,7 +3239,13 @@ var GetChannelContents = async ({
|
|
|
3239
3239
|
var useGetChannelContents = (channelId = "", type, featured, past, params = {}, options = {}) => {
|
|
3240
3240
|
return useConnectedInfiniteQuery(
|
|
3241
3241
|
CHANNEL_CONTENTS_QUERY_KEY(channelId, type, featured, past),
|
|
3242
|
-
(params2) => GetChannelContents({
|
|
3242
|
+
(params2) => GetChannelContents({
|
|
3243
|
+
...params2,
|
|
3244
|
+
channelId: channelId || "",
|
|
3245
|
+
type,
|
|
3246
|
+
featured,
|
|
3247
|
+
past
|
|
3248
|
+
}),
|
|
3243
3249
|
params,
|
|
3244
3250
|
{
|
|
3245
3251
|
...options,
|
package/dist/index.mjs
CHANGED
|
@@ -2383,7 +2383,13 @@ var GetChannelContents = async ({
|
|
|
2383
2383
|
var useGetChannelContents = (channelId = "", type, featured, past, params = {}, options = {}) => {
|
|
2384
2384
|
return useConnectedInfiniteQuery(
|
|
2385
2385
|
CHANNEL_CONTENTS_QUERY_KEY(channelId, type, featured, past),
|
|
2386
|
-
(params2) => GetChannelContents({
|
|
2386
|
+
(params2) => GetChannelContents({
|
|
2387
|
+
...params2,
|
|
2388
|
+
channelId: channelId || "",
|
|
2389
|
+
type,
|
|
2390
|
+
featured,
|
|
2391
|
+
past
|
|
2392
|
+
}),
|
|
2387
2393
|
params,
|
|
2388
2394
|
{
|
|
2389
2395
|
...options,
|