@connectedxm/client 1.6.1 → 1.6.3
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 +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1767,6 +1767,7 @@ interface OrganizationConfig {
|
|
|
1767
1767
|
API_URL: "https://client-api.connected.dev" | "https://staging-client-api.connected.dev";
|
|
1768
1768
|
OPENGRAPH_URL: "https://opengraph-api.connected.dev" | "https://staging-opengraph-api.connected.dev";
|
|
1769
1769
|
CHAT_URL: "wss://websocket.connected.dev" | "wss://staging-websocket.connected.dev";
|
|
1770
|
+
SHOP_URL: string | null;
|
|
1770
1771
|
APPLE_APPSTORE_LINK: string | null;
|
|
1771
1772
|
GOOGLE_PLAYSTORE_LINK: string | null;
|
|
1772
1773
|
NAME: string;
|
|
@@ -4581,6 +4582,7 @@ interface UpdateSelfParams extends MutationParams {
|
|
|
4581
4582
|
discord?: string | null;
|
|
4582
4583
|
video?: string | null;
|
|
4583
4584
|
website?: string | null;
|
|
4585
|
+
locale?: string | null;
|
|
4584
4586
|
}
|
|
4585
4587
|
declare const UpdateSelf: ({ clientApiParams, queryClient, ...params }: UpdateSelfParams) => Promise<ConnectedXMResponse<Self>>;
|
|
4586
4588
|
declare const useUpdateSelf: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelf>>, Omit<UpdateSelfParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<Self>, any>, Omit<UpdateSelfParams, "queryClient" | "clientApiParams">, unknown>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1767,6 +1767,7 @@ interface OrganizationConfig {
|
|
|
1767
1767
|
API_URL: "https://client-api.connected.dev" | "https://staging-client-api.connected.dev";
|
|
1768
1768
|
OPENGRAPH_URL: "https://opengraph-api.connected.dev" | "https://staging-opengraph-api.connected.dev";
|
|
1769
1769
|
CHAT_URL: "wss://websocket.connected.dev" | "wss://staging-websocket.connected.dev";
|
|
1770
|
+
SHOP_URL: string | null;
|
|
1770
1771
|
APPLE_APPSTORE_LINK: string | null;
|
|
1771
1772
|
GOOGLE_PLAYSTORE_LINK: string | null;
|
|
1772
1773
|
NAME: string;
|
|
@@ -4581,6 +4582,7 @@ interface UpdateSelfParams extends MutationParams {
|
|
|
4581
4582
|
discord?: string | null;
|
|
4582
4583
|
video?: string | null;
|
|
4583
4584
|
website?: string | null;
|
|
4585
|
+
locale?: string | null;
|
|
4584
4586
|
}
|
|
4585
4587
|
declare const UpdateSelf: ({ clientApiParams, queryClient, ...params }: UpdateSelfParams) => Promise<ConnectedXMResponse<Self>>;
|
|
4586
4588
|
declare const useUpdateSelf: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelf>>, Omit<UpdateSelfParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<Self>, any>, Omit<UpdateSelfParams, "queryClient" | "clientApiParams">, unknown>;
|