cmd-control-client-lib 3.0.336 → 3.0.342

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.
@@ -202,5 +202,13 @@ export declare enum ACTION {
202
202
  CMDC_TOYLIST = "CMDC_TOYLIST",
203
203
  CMDC_CLIP = "CMDC_CLIP",
204
204
  CMDP_CGETCLIPS = "CMDP_CGETCLIPS",
205
- CMDP_CBUYCLIP = "CMDP_CBUYCLIP"
205
+ CMDP_CBUYCLIP = "CMDP_CBUYCLIP",
206
+ CMDC_MSGTEMPLATE = "CMDC_MSGTEMPLATE",
207
+ CMDP_SGETMSGTEMPLATES = "CMDP_SGETMSGTEMPLATES",
208
+ CMDP_SUPSERTMSGTEMPLATE = "CMDP_SUPSERTMSGTEMPLATE",
209
+ CMDP_SDELETEMSGTEMPLATE = "CMDP_SDELETEMSGTEMPLATE",
210
+ CMDC_TPLCATEGORY = "CMDC_TPLCATEGORY",
211
+ CMDP_SGETTPLCATEGORIES = "CMDP_SGETTPLCATEGORIES",
212
+ CMDP_SUPSERTTPLCATEGORY = "CMDP_SUPSERTTPLCATEGORY",
213
+ CMDP_SDELETETPLCATEGORY = "CMDP_SDELETETPLCATEGORY"
206
214
  }
@@ -43,6 +43,11 @@ export declare class CMDP_SGETTICKETSHOWS implements ICOMMAND {
43
43
  showEnd?: string;
44
44
  };
45
45
  }
46
+ export declare class CMDP_SGETTICKETSHOWS_RESPONSE extends CMDP_SGETTICKETSHOWS implements IRESPONSE {
47
+ result: RESULT;
48
+ commands: CMDC_CTICKETSHOW[];
49
+ values: IKeyMaybeValue;
50
+ }
46
51
  export declare class CMDP_SUPSERTTICKETSHOW implements ICOMMAND {
47
52
  action: ACTION;
48
53
  params: baseParamsType & ticketShow;
@@ -0,0 +1,93 @@
1
+ import { ICOMMAND, IKeyMaybeValue, IRESPONSE, RESULT } from "./command/icommand";
2
+ import { ACTION } from "./command/action";
3
+ import { MediaFile, MediaOffer, MessageParams } from "./message";
4
+ import { ComaSeparatedValues } from "./sessionstate";
5
+ import { baseParamsType } from "./command/baseparams";
6
+ import { EnumBooleanStringified } from "../@types";
7
+ export declare type templateCategoryType = {
8
+ categoryId: string;
9
+ categoryName: string;
10
+ categoryDeleted: EnumBooleanStringified;
11
+ };
12
+ export declare class CMDC_TPLCATEGORY implements ICOMMAND {
13
+ action: ACTION;
14
+ params: templateCategoryType;
15
+ }
16
+ export declare class CMDP_SGETTPLCATEGORIES implements ICOMMAND {
17
+ action: ACTION;
18
+ params: baseParamsType;
19
+ }
20
+ export declare class CMDP_SGETTPLCATEGORIES_RESPONSE extends CMDP_SGETTPLCATEGORIES implements IRESPONSE {
21
+ result: RESULT;
22
+ commands: CMDC_TPLCATEGORY[];
23
+ values: IKeyMaybeValue;
24
+ }
25
+ export declare class CMDP_SUPSERTTPLCATEGORY implements ICOMMAND {
26
+ action: ACTION;
27
+ params: baseParamsType & templateCategoryType;
28
+ }
29
+ export declare class CMDP_SUPSERTTPLCATEGORY_RESPONSE extends CMDP_SUPSERTTPLCATEGORY implements IRESPONSE {
30
+ result: RESULT;
31
+ commands: CMDC_TPLCATEGORY[];
32
+ values: IKeyMaybeValue;
33
+ }
34
+ export declare class CMDP_SDELETETPLCATEGORY implements ICOMMAND {
35
+ action: ACTION;
36
+ params: baseParamsType & {
37
+ msgTplId: string;
38
+ };
39
+ }
40
+ export declare class CMDP_SDELETETPLCATEGORY_RESPONSE extends CMDP_SDELETETPLCATEGORY implements IRESPONSE {
41
+ result: RESULT;
42
+ commands: CMDC_TPLCATEGORY[];
43
+ values: IKeyMaybeValue;
44
+ }
45
+ export declare type messageTemplateType = MessageParams & MediaFile & MediaOffer & {
46
+ templateId: string;
47
+ templateName?: string;
48
+ categoryId?: string;
49
+ templateTags?: ComaSeparatedValues<string>;
50
+ templateText?: string;
51
+ templateCreated: string;
52
+ templateChanged?: string;
53
+ templateDeleted?: EnumBooleanStringified;
54
+ templateSent?: string;
55
+ templateBought?: string;
56
+ } & {
57
+ umaId?: string;
58
+ };
59
+ export declare class CMDC_MSGTEMPLATE implements ICOMMAND {
60
+ action: ACTION;
61
+ params: messageTemplateType;
62
+ }
63
+ export declare class CMDP_SGETMSGTEMPLATES implements ICOMMAND {
64
+ action: ACTION;
65
+ params: baseParamsType & {
66
+ categoryId?: string;
67
+ };
68
+ }
69
+ export declare class CMDP_SGETMSGTEMPLATES_RESPONSE extends CMDP_SGETMSGTEMPLATES implements IRESPONSE {
70
+ result: RESULT;
71
+ commands: CMDC_MSGTEMPLATE[];
72
+ values: IKeyMaybeValue;
73
+ }
74
+ export declare class CMDP_SUPSERTMSGTEMPLATE implements ICOMMAND {
75
+ action: ACTION;
76
+ params: baseParamsType & messageTemplateType;
77
+ }
78
+ export declare class CMDP_SUPSERTMSGTEMPLATE_RESPONSE extends CMDP_SUPSERTMSGTEMPLATE implements IRESPONSE {
79
+ result: RESULT;
80
+ commands: CMDC_MSGTEMPLATE[];
81
+ values: IKeyMaybeValue;
82
+ }
83
+ export declare class CMDP_SDELETEMSGTEMPLATE implements ICOMMAND {
84
+ action: ACTION;
85
+ params: baseParamsType & {
86
+ msgTplId: string;
87
+ };
88
+ }
89
+ export declare class CMDP_SDELETEMSGTEMPLATE_RESPONSE extends CMDP_SDELETEMSGTEMPLATE implements IRESPONSE {
90
+ result: RESULT;
91
+ commands: CMDC_MSGTEMPLATE[];
92
+ values: IKeyMaybeValue;
93
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cmd-control-client-lib",
3
3
  "description": "Cmd-Client-Library",
4
- "version": "3.0.336",
4
+ "version": "3.0.342",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },