@connectedxm/client 1.3.3 → 1.3.5
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/.vscode/settings.json +9 -3
- package/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/package.json +1 -1
package/.vscode/settings.json
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
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;
|
|
@@ -1759,8 +1760,8 @@ interface OrganizationConfig {
|
|
|
1759
1760
|
discord: string | null;
|
|
1760
1761
|
};
|
|
1761
1762
|
PAYMENT: {
|
|
1762
|
-
TYPE: PaymentIntegrationType;
|
|
1763
|
-
CONNECTION_ID: string;
|
|
1763
|
+
TYPE: PaymentIntegrationType | "none";
|
|
1764
|
+
CONNECTION_ID: string | null;
|
|
1764
1765
|
};
|
|
1765
1766
|
INTEGRATIONS: Integration[];
|
|
1766
1767
|
}
|
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;
|
|
@@ -1759,8 +1760,8 @@ interface OrganizationConfig {
|
|
|
1759
1760
|
discord: string | null;
|
|
1760
1761
|
};
|
|
1761
1762
|
PAYMENT: {
|
|
1762
|
-
TYPE: PaymentIntegrationType;
|
|
1763
|
-
CONNECTION_ID: string;
|
|
1763
|
+
TYPE: PaymentIntegrationType | "none";
|
|
1764
|
+
CONNECTION_ID: string | null;
|
|
1764
1765
|
};
|
|
1765
1766
|
INTEGRATIONS: Integration[];
|
|
1766
1767
|
}
|