cmd-control-client-lib 3.0.88 → 3.0.89
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.
|
@@ -135,5 +135,8 @@ export declare enum ACTION {
|
|
|
135
135
|
CMDP_SGETGROUPCHANNELS = "CMDP_SGETGROUPCHANNELS",
|
|
136
136
|
CMDP_SADDCHANNELTOGROUP = "CMDP_SADDCHANNELTOGROUP",
|
|
137
137
|
CMDP_SDELLCHANNELFROMGROUP = "CMDP_SDELLCHANNELFROMGROUP",
|
|
138
|
-
CMDC_CTICKETSHOW = "CMDC_CTICKETSHOW"
|
|
138
|
+
CMDC_CTICKETSHOW = "CMDC_CTICKETSHOW",
|
|
139
|
+
CMDP_SGETTICKETSHOWS = "CMDP_SGETTICKETSHOWS",
|
|
140
|
+
CMDP_SUPSERTTICKETSHOW = "CMDP_SUPSERTTICKETSHOW",
|
|
141
|
+
CMDP_SDELETETICKETSHOW = "CMDP_SDELETETICKETSHOW"
|
|
139
142
|
}
|
|
@@ -1,14 +1,51 @@
|
|
|
1
|
-
import { ICOMMAND, ACTION } from "../../cmd-protocol";
|
|
1
|
+
import { ICOMMAND, ACTION, baseParamsType, IRESPONSE, RESULT, IKeyMaybeValue } from "../../cmd-protocol";
|
|
2
2
|
export declare type ticketShow = {
|
|
3
3
|
showId: string;
|
|
4
4
|
showStart: string;
|
|
5
|
+
/** json datetime */
|
|
5
6
|
showEnd: string;
|
|
6
7
|
showName: string;
|
|
7
|
-
|
|
8
|
+
/** readonly const */
|
|
9
|
+
showCurrency: "EUR" | "string";
|
|
10
|
+
/** float F2 */
|
|
8
11
|
showPrice: string;
|
|
12
|
+
/** long */
|
|
9
13
|
showSales: string;
|
|
14
|
+
titleDE: string;
|
|
15
|
+
titleEN: string;
|
|
16
|
+
descriptionDE: string;
|
|
17
|
+
descriptionEN: string;
|
|
10
18
|
};
|
|
11
19
|
export declare class CMDC_CTICKETSHOW implements ICOMMAND {
|
|
12
20
|
action: ACTION;
|
|
13
21
|
params: ticketShow;
|
|
14
22
|
}
|
|
23
|
+
export declare class CMDP_SGETTICKETSHOWS implements ICOMMAND {
|
|
24
|
+
action: ACTION;
|
|
25
|
+
params: baseParamsType & {
|
|
26
|
+
/**showId if know */
|
|
27
|
+
showId?: string;
|
|
28
|
+
showStart?: string;
|
|
29
|
+
showEnd?: string;
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
export declare class CMDP_SUPSERTTICKETSHOW implements ICOMMAND {
|
|
33
|
+
action: ACTION;
|
|
34
|
+
params: baseParamsType & ticketShow;
|
|
35
|
+
}
|
|
36
|
+
export declare class CMDP_SUPSERTTICKETSHOW_REPONSE extends CMDP_SUPSERTTICKETSHOW implements IRESPONSE {
|
|
37
|
+
result: RESULT;
|
|
38
|
+
commands: CMDC_CTICKETSHOW[];
|
|
39
|
+
values: IKeyMaybeValue;
|
|
40
|
+
}
|
|
41
|
+
export declare class CMDP_SDELETETICKETSHOW implements ICOMMAND {
|
|
42
|
+
action: ACTION;
|
|
43
|
+
params: baseParamsType & {
|
|
44
|
+
showId?: string;
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
export declare class CMDP_SDELETETICKETSHOW_REPONSE extends CMDP_SDELETETICKETSHOW implements IRESPONSE {
|
|
48
|
+
result: RESULT;
|
|
49
|
+
commands: ICOMMAND[];
|
|
50
|
+
values: IKeyMaybeValue;
|
|
51
|
+
}
|