@jealous-robot-dev/shared-types-responses 1.22.10 → 1.22.11
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.
|
@@ -73,7 +73,6 @@ export interface HENamePhrases {
|
|
|
73
73
|
export interface HEDescriptionPhrases {
|
|
74
74
|
page_title: string;
|
|
75
75
|
question: string;
|
|
76
|
-
review: string;
|
|
77
76
|
input: {
|
|
78
77
|
placeholder: string;
|
|
79
78
|
warnings: {
|
|
@@ -193,8 +192,8 @@ export interface HEDraft {
|
|
|
193
192
|
[FormEventFields.CAPACITY]?: number;
|
|
194
193
|
}
|
|
195
194
|
export interface HEPhrases {
|
|
196
|
-
common: HECommonPhrases;
|
|
197
|
-
intro: HEIntroPhrases;
|
|
195
|
+
common: HECommonPhrases | null;
|
|
196
|
+
intro: HEIntroPhrases | null;
|
|
198
197
|
[FormEventFields.TYPE]: HETypePhrases | null;
|
|
199
198
|
[FormEventFields.NAME]: HENamePhrases | null;
|
|
200
199
|
[FormEventFields.DESCRIPTION]: HEDescriptionPhrases | null;
|
|
@@ -212,7 +211,7 @@ export declare enum HostEventCategories {
|
|
|
212
211
|
NAME = "name",
|
|
213
212
|
DESCRIPTION = "description",
|
|
214
213
|
TIME = "time",
|
|
215
|
-
LANG = "
|
|
214
|
+
LANG = "lang",
|
|
216
215
|
CAPACITY = "capacity",
|
|
217
216
|
TAGS = "tags",
|
|
218
217
|
PICS = "pictures",
|
|
@@ -222,3 +221,4 @@ export declare enum HostEventCategories {
|
|
|
222
221
|
SUCCESS = "success"
|
|
223
222
|
}
|
|
224
223
|
export declare const HECListed: HostEventCategories[];
|
|
224
|
+
export declare type DraftUpdatableValue = HostEventFee | EventTypes | HostEventTime | HostEventPics[] | string | string[] | number;
|
|
@@ -14,7 +14,7 @@ var HostEventCategories;
|
|
|
14
14
|
HostEventCategories["NAME"] = "name";
|
|
15
15
|
HostEventCategories["DESCRIPTION"] = "description";
|
|
16
16
|
HostEventCategories["TIME"] = "time";
|
|
17
|
-
HostEventCategories["LANG"] = "
|
|
17
|
+
HostEventCategories["LANG"] = "lang";
|
|
18
18
|
HostEventCategories["CAPACITY"] = "capacity";
|
|
19
19
|
HostEventCategories["TAGS"] = "tags";
|
|
20
20
|
HostEventCategories["PICS"] = "pictures";
|