@connectedxm/admin 2.8.11 → 2.8.12
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.cjs +9 -0
- package/dist/index.d.cts +10 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +8 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -80,6 +80,7 @@ __export(index_exports, {
|
|
|
80
80
|
AUTH_SESSIONS_QUERY_KEY: () => AUTH_SESSIONS_QUERY_KEY,
|
|
81
81
|
AUTH_SESSION_QUERY_KEY: () => AUTH_SESSION_QUERY_KEY,
|
|
82
82
|
AcceptGroupRequest: () => AcceptGroupRequest,
|
|
83
|
+
AccountAccess: () => AccountAccess,
|
|
83
84
|
AccountType: () => AccountType,
|
|
84
85
|
ActivityEntityType: () => ActivityEntityType,
|
|
85
86
|
AddAccountDelegate: () => AddAccountDelegate,
|
|
@@ -15532,6 +15533,13 @@ var AccountType = /* @__PURE__ */ ((AccountType2) => {
|
|
|
15532
15533
|
AccountType2["team"] = "team";
|
|
15533
15534
|
return AccountType2;
|
|
15534
15535
|
})(AccountType || {});
|
|
15536
|
+
var AccountAccess = /* @__PURE__ */ ((AccountAccess2) => {
|
|
15537
|
+
AccountAccess2["FULL_ACCESS"] = "FULL_ACCESS";
|
|
15538
|
+
AccountAccess2["DELISTED"] = "DELISTED";
|
|
15539
|
+
AccountAccess2["RESTRICTED"] = "RESTRICTED";
|
|
15540
|
+
AccountAccess2["BANNED"] = "BANNED";
|
|
15541
|
+
return AccountAccess2;
|
|
15542
|
+
})(AccountAccess || {});
|
|
15535
15543
|
var PushDeviceAppType = /* @__PURE__ */ ((PushDeviceAppType2) => {
|
|
15536
15544
|
PushDeviceAppType2["EVENTXM"] = "EVENTXM";
|
|
15537
15545
|
PushDeviceAppType2["COMMUNITYXM"] = "COMMUNITYXM";
|
|
@@ -38796,6 +38804,7 @@ var useUpdateVideo = (options = {}) => {
|
|
|
38796
38804
|
AUTH_SESSIONS_QUERY_KEY,
|
|
38797
38805
|
AUTH_SESSION_QUERY_KEY,
|
|
38798
38806
|
AcceptGroupRequest,
|
|
38807
|
+
AccountAccess,
|
|
38799
38808
|
AccountType,
|
|
38800
38809
|
ActivityEntityType,
|
|
38801
38810
|
AddAccountDelegate,
|