@connectedxm/admin 3.4.3 → 3.4.4
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 +4 -4
- package/dist/index.d.ts +4 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2087,8 +2087,8 @@ interface BaseSeries {
|
|
|
2087
2087
|
name: string;
|
|
2088
2088
|
description: string | null;
|
|
2089
2089
|
longDescription: string | null;
|
|
2090
|
-
startDate: string;
|
|
2091
|
-
endDate: string;
|
|
2090
|
+
startDate: string | null;
|
|
2091
|
+
endDate: string | null;
|
|
2092
2092
|
imageId: string | null;
|
|
2093
2093
|
image: BaseImage | null;
|
|
2094
2094
|
}
|
|
@@ -4999,8 +4999,8 @@ interface SeriesCreateInputs {
|
|
|
4999
4999
|
longDescription?: string | null;
|
|
5000
5000
|
imageId?: string | null;
|
|
5001
5001
|
templateId: string;
|
|
5002
|
-
startDate
|
|
5003
|
-
endDate
|
|
5002
|
+
startDate?: string | null;
|
|
5003
|
+
endDate?: string | null;
|
|
5004
5004
|
}
|
|
5005
5005
|
interface SeriesUpdateInputs {
|
|
5006
5006
|
name?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -2087,8 +2087,8 @@ interface BaseSeries {
|
|
|
2087
2087
|
name: string;
|
|
2088
2088
|
description: string | null;
|
|
2089
2089
|
longDescription: string | null;
|
|
2090
|
-
startDate: string;
|
|
2091
|
-
endDate: string;
|
|
2090
|
+
startDate: string | null;
|
|
2091
|
+
endDate: string | null;
|
|
2092
2092
|
imageId: string | null;
|
|
2093
2093
|
image: BaseImage | null;
|
|
2094
2094
|
}
|
|
@@ -4999,8 +4999,8 @@ interface SeriesCreateInputs {
|
|
|
4999
4999
|
longDescription?: string | null;
|
|
5000
5000
|
imageId?: string | null;
|
|
5001
5001
|
templateId: string;
|
|
5002
|
-
startDate
|
|
5003
|
-
endDate
|
|
5002
|
+
startDate?: string | null;
|
|
5003
|
+
endDate?: string | null;
|
|
5004
5004
|
}
|
|
5005
5005
|
interface SeriesUpdateInputs {
|
|
5006
5006
|
name?: string | null;
|