@connectedxm/admin 6.11.0 → 6.11.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 +1 -1
- package/dist/index.d.ts +1 -1
- package/openapi.json +6 -6
- 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;
|
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;
|
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"
|