@connectedxm/admin 6.11.0 → 6.11.2
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 +1 -4
- package/dist/index.d.ts +1 -4
- package/openapi.json +6 -14
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2326,9 +2326,9 @@ interface BaseSeriesRegistrationQuestionResponse {
|
|
|
2326
2326
|
value: string;
|
|
2327
2327
|
questionId: string;
|
|
2328
2328
|
question: BaseSeriesQuestion;
|
|
2329
|
-
fileId: number | null;
|
|
2330
2329
|
}
|
|
2331
2330
|
interface SeriesRegistrationQuestionResponse extends BaseSeriesRegistrationQuestionResponse {
|
|
2331
|
+
fileId: number | null;
|
|
2332
2332
|
file: BaseFile | null;
|
|
2333
2333
|
createdAt: string;
|
|
2334
2334
|
updatedAt: string;
|
|
@@ -2343,9 +2343,6 @@ interface BaseSeries {
|
|
|
2343
2343
|
endDate: string | null;
|
|
2344
2344
|
imageId: string | null;
|
|
2345
2345
|
image: BaseImage | null;
|
|
2346
|
-
_count?: {
|
|
2347
|
-
questions?: number;
|
|
2348
|
-
};
|
|
2349
2346
|
}
|
|
2350
2347
|
interface Series extends BaseSeries {
|
|
2351
2348
|
templateId: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2326,9 +2326,9 @@ interface BaseSeriesRegistrationQuestionResponse {
|
|
|
2326
2326
|
value: string;
|
|
2327
2327
|
questionId: string;
|
|
2328
2328
|
question: BaseSeriesQuestion;
|
|
2329
|
-
fileId: number | null;
|
|
2330
2329
|
}
|
|
2331
2330
|
interface SeriesRegistrationQuestionResponse extends BaseSeriesRegistrationQuestionResponse {
|
|
2331
|
+
fileId: number | null;
|
|
2332
2332
|
file: BaseFile | null;
|
|
2333
2333
|
createdAt: string;
|
|
2334
2334
|
updatedAt: string;
|
|
@@ -2343,9 +2343,6 @@ interface BaseSeries {
|
|
|
2343
2343
|
endDate: string | null;
|
|
2344
2344
|
imageId: string | null;
|
|
2345
2345
|
image: BaseImage | null;
|
|
2346
|
-
_count?: {
|
|
2347
|
-
questions?: number;
|
|
2348
|
-
};
|
|
2349
2346
|
}
|
|
2350
2347
|
interface Series extends BaseSeries {
|
|
2351
2348
|
templateId: string;
|
package/openapi.json
CHANGED
|
@@ -82919,18 +82919,13 @@
|
|
|
82919
82919
|
},
|
|
82920
82920
|
"question": {
|
|
82921
82921
|
"$ref": "#/components/schemas/BaseSeriesQuestion"
|
|
82922
|
-
},
|
|
82923
|
-
"fileId": {
|
|
82924
|
-
"type": "number",
|
|
82925
|
-
"nullable": true
|
|
82926
82922
|
}
|
|
82927
82923
|
},
|
|
82928
82924
|
"required": [
|
|
82929
82925
|
"id",
|
|
82930
82926
|
"value",
|
|
82931
82927
|
"questionId",
|
|
82932
|
-
"question"
|
|
82933
|
-
"fileId"
|
|
82928
|
+
"question"
|
|
82934
82929
|
]
|
|
82935
82930
|
},
|
|
82936
82931
|
"SeriesRegistrationQuestionResponse": {
|
|
@@ -82941,6 +82936,10 @@
|
|
|
82941
82936
|
{
|
|
82942
82937
|
"type": "object",
|
|
82943
82938
|
"properties": {
|
|
82939
|
+
"fileId": {
|
|
82940
|
+
"type": "number",
|
|
82941
|
+
"nullable": true
|
|
82942
|
+
},
|
|
82944
82943
|
"file": {
|
|
82945
82944
|
"allOf": [
|
|
82946
82945
|
{
|
|
@@ -82957,6 +82956,7 @@
|
|
|
82957
82956
|
}
|
|
82958
82957
|
},
|
|
82959
82958
|
"required": [
|
|
82959
|
+
"fileId",
|
|
82960
82960
|
"file",
|
|
82961
82961
|
"createdAt",
|
|
82962
82962
|
"updatedAt"
|
|
@@ -83003,14 +83003,6 @@
|
|
|
83003
83003
|
}
|
|
83004
83004
|
],
|
|
83005
83005
|
"nullable": true
|
|
83006
|
-
},
|
|
83007
|
-
"_count": {
|
|
83008
|
-
"type": "object",
|
|
83009
|
-
"properties": {
|
|
83010
|
-
"questions": {
|
|
83011
|
-
"type": "number"
|
|
83012
|
-
}
|
|
83013
|
-
}
|
|
83014
83006
|
}
|
|
83015
83007
|
},
|
|
83016
83008
|
"required": [
|