@connectedxm/admin 2.10.8 → 2.11.0
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 +1 -8
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +1 -8
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -38994,14 +38994,7 @@ var UpdateTier = async ({
|
|
|
38994
38994
|
const connectedXM = await GetAdminAPI(adminApiParams);
|
|
38995
38995
|
const { data } = await connectedXM.put(
|
|
38996
38996
|
`/tiers/${tierId}`,
|
|
38997
|
-
|
|
38998
|
-
...tier,
|
|
38999
|
-
id: void 0,
|
|
39000
|
-
image: void 0,
|
|
39001
|
-
createdAt: void 0,
|
|
39002
|
-
updatedAt: void 0,
|
|
39003
|
-
_count: void 0
|
|
39004
|
-
}
|
|
38997
|
+
tier
|
|
39005
38998
|
);
|
|
39006
38999
|
if (queryClient && data.status === "ok") {
|
|
39007
39000
|
SET_TIER_QUERY_DATA(queryClient, [tierId || data.data?.id], data);
|
package/dist/index.d.cts
CHANGED
|
@@ -323,6 +323,7 @@ interface BaseTier {
|
|
|
323
323
|
}
|
|
324
324
|
interface Tier extends BaseTier {
|
|
325
325
|
description: string | null;
|
|
326
|
+
exclusionGroup: string | null;
|
|
326
327
|
createdAt: string;
|
|
327
328
|
updatedAt: string;
|
|
328
329
|
_count: {
|
|
@@ -934,6 +935,7 @@ interface Event extends BaseEvent {
|
|
|
934
935
|
backgroundImageId: string | null;
|
|
935
936
|
backgroundImage: BaseImage | null;
|
|
936
937
|
activityFeedEnabled: boolean;
|
|
938
|
+
options: object | null;
|
|
937
939
|
}
|
|
938
940
|
interface EventTranslation {
|
|
939
941
|
id: number;
|
|
@@ -1450,6 +1452,7 @@ interface Organization extends BaseOrganization {
|
|
|
1450
1452
|
maxVideoMins: number | null;
|
|
1451
1453
|
locales: string[];
|
|
1452
1454
|
inviteOnly: boolean;
|
|
1455
|
+
googleTagManagerId: string | null;
|
|
1453
1456
|
}
|
|
1454
1457
|
interface OrganizationTrigger {
|
|
1455
1458
|
id: number;
|
|
@@ -4077,6 +4080,7 @@ interface EventCreateInputs {
|
|
|
4077
4080
|
roundName?: string | null;
|
|
4078
4081
|
matchName?: string | null;
|
|
4079
4082
|
activityFeedEnabled?: boolean;
|
|
4083
|
+
options?: object | null;
|
|
4080
4084
|
}
|
|
4081
4085
|
interface EventEmailUpdateInputs {
|
|
4082
4086
|
body?: string | null;
|
|
@@ -4449,6 +4453,7 @@ interface EventUpdateInputs {
|
|
|
4449
4453
|
roundName?: string | null;
|
|
4450
4454
|
matchName?: string | null;
|
|
4451
4455
|
activityFeedEnabled?: boolean;
|
|
4456
|
+
options?: object | null;
|
|
4452
4457
|
}
|
|
4453
4458
|
interface FileUpdateInputs {
|
|
4454
4459
|
name?: string;
|
|
@@ -4641,6 +4646,7 @@ interface OrganizationUpdateInputs {
|
|
|
4641
4646
|
locale?: string | null;
|
|
4642
4647
|
locales?: string[] | null;
|
|
4643
4648
|
inviteOnly?: boolean;
|
|
4649
|
+
googleTagManagerId?: string | null;
|
|
4644
4650
|
}
|
|
4645
4651
|
interface PaymentIntentPurchaseMetadataInputs {
|
|
4646
4652
|
}
|
|
@@ -5028,6 +5034,7 @@ interface TierCreateInputs {
|
|
|
5028
5034
|
imageId?: string | null;
|
|
5029
5035
|
color?: string | null;
|
|
5030
5036
|
internal?: boolean;
|
|
5037
|
+
exclusionGroup?: string | null;
|
|
5031
5038
|
}
|
|
5032
5039
|
interface TierUpdateInputs {
|
|
5033
5040
|
name?: string | null;
|
|
@@ -5038,6 +5045,7 @@ interface TierUpdateInputs {
|
|
|
5038
5045
|
imageId?: string | null;
|
|
5039
5046
|
color?: string | null;
|
|
5040
5047
|
internal?: boolean;
|
|
5048
|
+
exclusionGroup?: string | null;
|
|
5041
5049
|
}
|
|
5042
5050
|
interface EventTrackCreateInputs {
|
|
5043
5051
|
name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -323,6 +323,7 @@ interface BaseTier {
|
|
|
323
323
|
}
|
|
324
324
|
interface Tier extends BaseTier {
|
|
325
325
|
description: string | null;
|
|
326
|
+
exclusionGroup: string | null;
|
|
326
327
|
createdAt: string;
|
|
327
328
|
updatedAt: string;
|
|
328
329
|
_count: {
|
|
@@ -934,6 +935,7 @@ interface Event extends BaseEvent {
|
|
|
934
935
|
backgroundImageId: string | null;
|
|
935
936
|
backgroundImage: BaseImage | null;
|
|
936
937
|
activityFeedEnabled: boolean;
|
|
938
|
+
options: object | null;
|
|
937
939
|
}
|
|
938
940
|
interface EventTranslation {
|
|
939
941
|
id: number;
|
|
@@ -1450,6 +1452,7 @@ interface Organization extends BaseOrganization {
|
|
|
1450
1452
|
maxVideoMins: number | null;
|
|
1451
1453
|
locales: string[];
|
|
1452
1454
|
inviteOnly: boolean;
|
|
1455
|
+
googleTagManagerId: string | null;
|
|
1453
1456
|
}
|
|
1454
1457
|
interface OrganizationTrigger {
|
|
1455
1458
|
id: number;
|
|
@@ -4077,6 +4080,7 @@ interface EventCreateInputs {
|
|
|
4077
4080
|
roundName?: string | null;
|
|
4078
4081
|
matchName?: string | null;
|
|
4079
4082
|
activityFeedEnabled?: boolean;
|
|
4083
|
+
options?: object | null;
|
|
4080
4084
|
}
|
|
4081
4085
|
interface EventEmailUpdateInputs {
|
|
4082
4086
|
body?: string | null;
|
|
@@ -4449,6 +4453,7 @@ interface EventUpdateInputs {
|
|
|
4449
4453
|
roundName?: string | null;
|
|
4450
4454
|
matchName?: string | null;
|
|
4451
4455
|
activityFeedEnabled?: boolean;
|
|
4456
|
+
options?: object | null;
|
|
4452
4457
|
}
|
|
4453
4458
|
interface FileUpdateInputs {
|
|
4454
4459
|
name?: string;
|
|
@@ -4641,6 +4646,7 @@ interface OrganizationUpdateInputs {
|
|
|
4641
4646
|
locale?: string | null;
|
|
4642
4647
|
locales?: string[] | null;
|
|
4643
4648
|
inviteOnly?: boolean;
|
|
4649
|
+
googleTagManagerId?: string | null;
|
|
4644
4650
|
}
|
|
4645
4651
|
interface PaymentIntentPurchaseMetadataInputs {
|
|
4646
4652
|
}
|
|
@@ -5028,6 +5034,7 @@ interface TierCreateInputs {
|
|
|
5028
5034
|
imageId?: string | null;
|
|
5029
5035
|
color?: string | null;
|
|
5030
5036
|
internal?: boolean;
|
|
5037
|
+
exclusionGroup?: string | null;
|
|
5031
5038
|
}
|
|
5032
5039
|
interface TierUpdateInputs {
|
|
5033
5040
|
name?: string | null;
|
|
@@ -5038,6 +5045,7 @@ interface TierUpdateInputs {
|
|
|
5038
5045
|
imageId?: string | null;
|
|
5039
5046
|
color?: string | null;
|
|
5040
5047
|
internal?: boolean;
|
|
5048
|
+
exclusionGroup?: string | null;
|
|
5041
5049
|
}
|
|
5042
5050
|
interface EventTrackCreateInputs {
|
|
5043
5051
|
name: string;
|
package/dist/index.js
CHANGED
|
@@ -35952,14 +35952,7 @@ var UpdateTier = async ({
|
|
|
35952
35952
|
const connectedXM = await GetAdminAPI(adminApiParams);
|
|
35953
35953
|
const { data } = await connectedXM.put(
|
|
35954
35954
|
`/tiers/${tierId}`,
|
|
35955
|
-
|
|
35956
|
-
...tier,
|
|
35957
|
-
id: void 0,
|
|
35958
|
-
image: void 0,
|
|
35959
|
-
createdAt: void 0,
|
|
35960
|
-
updatedAt: void 0,
|
|
35961
|
-
_count: void 0
|
|
35962
|
-
}
|
|
35955
|
+
tier
|
|
35963
35956
|
);
|
|
35964
35957
|
if (queryClient && data.status === "ok") {
|
|
35965
35958
|
SET_TIER_QUERY_DATA(queryClient, [tierId || data.data?.id], data);
|