@connectedxm/client 1.3.2 → 1.3.4

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.
@@ -1,4 +1,10 @@
1
1
  {
2
- "editor.formatOnSave": true,
3
- "editor.defaultFormatter": "esbenp.prettier-vscode"
4
- }
2
+ "editor.formatOnSave": true,
3
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
4
+ "workbench.colorCustomizations": {
5
+ "titleBar.activeBackground": "#FD4F40",
6
+ "titleBar.inactiveBackground": "#FD4F40",
7
+ "titleBar.activeForeground": "#FFF",
8
+ "titleBar.inactiveForeground": "#FFF"
9
+ }
10
+ }
package/dist/index.d.mts CHANGED
@@ -147,6 +147,7 @@ interface BaseAccount {
147
147
  }[];
148
148
  }
149
149
  interface Account extends BaseAccount {
150
+ banner: BaseImage | null;
150
151
  bio: string | null;
151
152
  website: string | null;
152
153
  facebook: string | null;
@@ -933,8 +934,8 @@ interface Channel extends BaseChannel {
933
934
  googleUrl: string | null;
934
935
  youtubeUrl: string | null;
935
936
  visilble: boolean;
936
- hosts: BaseAccount[];
937
937
  group: BaseGroup | null;
938
+ creator: BaseAccount | null;
938
939
  }
939
940
  declare const isTypeChannel: (channel: BaseChannel | Channel) => channel is Channel;
940
941
  interface BaseChannelSubscriber {
package/dist/index.d.ts CHANGED
@@ -147,6 +147,7 @@ interface BaseAccount {
147
147
  }[];
148
148
  }
149
149
  interface Account extends BaseAccount {
150
+ banner: BaseImage | null;
150
151
  bio: string | null;
151
152
  website: string | null;
152
153
  facebook: string | null;
@@ -933,8 +934,8 @@ interface Channel extends BaseChannel {
933
934
  googleUrl: string | null;
934
935
  youtubeUrl: string | null;
935
936
  visilble: boolean;
936
- hosts: BaseAccount[];
937
937
  group: BaseGroup | null;
938
+ creator: BaseAccount | null;
938
939
  }
939
940
  declare const isTypeChannel: (channel: BaseChannel | Channel) => channel is Channel;
940
941
  interface BaseChannelSubscriber {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "1.3.2",
3
+ "version": "1.3.4",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {