@connectedxm/admin 2.0.0 → 2.0.1
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.cts +0 -6
- package/dist/index.d.ts +0 -6
- package/package.json +2 -1
package/dist/index.d.cts
CHANGED
|
@@ -1658,9 +1658,6 @@ interface RegistrationQuestion extends BaseRegistrationQuestion {
|
|
|
1658
1658
|
subQuestionOf: RegistrationQuestionChoiceSubQuestion[];
|
|
1659
1659
|
createdAt: string;
|
|
1660
1660
|
updatedAt: string;
|
|
1661
|
-
_count: {
|
|
1662
|
-
responses: number;
|
|
1663
|
-
};
|
|
1664
1661
|
}
|
|
1665
1662
|
interface RegistrationQuestionTranslation {
|
|
1666
1663
|
id: string;
|
|
@@ -2538,9 +2535,6 @@ interface EventRoomType extends BaseEventRoomType {
|
|
|
2538
2535
|
disallowedTiers: BaseTier[];
|
|
2539
2536
|
createdAt: string;
|
|
2540
2537
|
updatedAt: string;
|
|
2541
|
-
_count: {
|
|
2542
|
-
reservations: number;
|
|
2543
|
-
};
|
|
2544
2538
|
}
|
|
2545
2539
|
interface EventRoomTypeTranslation {
|
|
2546
2540
|
id: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -1658,9 +1658,6 @@ interface RegistrationQuestion extends BaseRegistrationQuestion {
|
|
|
1658
1658
|
subQuestionOf: RegistrationQuestionChoiceSubQuestion[];
|
|
1659
1659
|
createdAt: string;
|
|
1660
1660
|
updatedAt: string;
|
|
1661
|
-
_count: {
|
|
1662
|
-
responses: number;
|
|
1663
|
-
};
|
|
1664
1661
|
}
|
|
1665
1662
|
interface RegistrationQuestionTranslation {
|
|
1666
1663
|
id: string;
|
|
@@ -2538,9 +2535,6 @@ interface EventRoomType extends BaseEventRoomType {
|
|
|
2538
2535
|
disallowedTiers: BaseTier[];
|
|
2539
2536
|
createdAt: string;
|
|
2540
2537
|
updatedAt: string;
|
|
2541
|
-
_count: {
|
|
2542
|
-
reservations: number;
|
|
2543
|
-
};
|
|
2544
2538
|
}
|
|
2545
2539
|
interface EventRoomTypeTranslation {
|
|
2546
2540
|
id: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@connectedxm/admin",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Admin API javascript SDK",
|
|
5
5
|
"author": "ConnectedXM Inc.",
|
|
6
6
|
"type": "module",
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"scripts": {
|
|
16
16
|
"lint": "eslint src/**/*.ts",
|
|
17
17
|
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
18
|
+
"release": "npm run lint && npm run build",
|
|
18
19
|
"local": "npm run release && npm pack",
|
|
19
20
|
"exports": "tsx scripts/addExports.ts"
|
|
20
21
|
},
|