@connectedxm/admin 2.8.17 → 2.8.18
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1898,6 +1898,7 @@ interface BaseEventSession {
|
|
|
1898
1898
|
image: BaseImage | null;
|
|
1899
1899
|
startTime: string;
|
|
1900
1900
|
endTime: string;
|
|
1901
|
+
registrationEnd?: string;
|
|
1901
1902
|
tracks: BaseEventTrack[];
|
|
1902
1903
|
nonSession: boolean;
|
|
1903
1904
|
visible: boolean;
|
|
@@ -4119,6 +4120,7 @@ interface EventSessionCreateInputs {
|
|
|
4119
4120
|
name: string;
|
|
4120
4121
|
startTime: string;
|
|
4121
4122
|
endTime: string;
|
|
4123
|
+
registrationEnd?: string | null;
|
|
4122
4124
|
slug?: string | null;
|
|
4123
4125
|
description?: string | null;
|
|
4124
4126
|
longDescription?: string | null;
|
|
@@ -4146,6 +4148,7 @@ interface EventSessionUpdateInputs {
|
|
|
4146
4148
|
name?: string | null;
|
|
4147
4149
|
startTime?: string | null;
|
|
4148
4150
|
endTime?: string | null;
|
|
4151
|
+
registrationEnd?: string | null;
|
|
4149
4152
|
slug?: string | null;
|
|
4150
4153
|
description?: string | null;
|
|
4151
4154
|
longDescription?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -1898,6 +1898,7 @@ interface BaseEventSession {
|
|
|
1898
1898
|
image: BaseImage | null;
|
|
1899
1899
|
startTime: string;
|
|
1900
1900
|
endTime: string;
|
|
1901
|
+
registrationEnd?: string;
|
|
1901
1902
|
tracks: BaseEventTrack[];
|
|
1902
1903
|
nonSession: boolean;
|
|
1903
1904
|
visible: boolean;
|
|
@@ -4119,6 +4120,7 @@ interface EventSessionCreateInputs {
|
|
|
4119
4120
|
name: string;
|
|
4120
4121
|
startTime: string;
|
|
4121
4122
|
endTime: string;
|
|
4123
|
+
registrationEnd?: string | null;
|
|
4122
4124
|
slug?: string | null;
|
|
4123
4125
|
description?: string | null;
|
|
4124
4126
|
longDescription?: string | null;
|
|
@@ -4146,6 +4148,7 @@ interface EventSessionUpdateInputs {
|
|
|
4146
4148
|
name?: string | null;
|
|
4147
4149
|
startTime?: string | null;
|
|
4148
4150
|
endTime?: string | null;
|
|
4151
|
+
registrationEnd?: string | null;
|
|
4149
4152
|
slug?: string | null;
|
|
4150
4153
|
description?: string | null;
|
|
4151
4154
|
longDescription?: string | null;
|