@hysc/meeting 3.0.27 → 3.0.28

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.
Files changed (143) hide show
  1. package/esm/boom-core/src/BoomCore/BCClient/clientEventType.d.ts +418 -0
  2. package/esm/boom-meeting/src/BMChat/BMMessageInfo.d.ts +4 -0
  3. package/esm/boom-meeting/src/BMRoom/RoomEvent.d.ts +1 -0
  4. package/esm/boom-meeting/src/BMStream/BMSpeaker.d.ts +2 -2
  5. package/esm/boom-meeting/src/BMStream/BMStreamModel.d.ts +27 -6
  6. package/esm/boom-meeting/src/bjy-common/function/debounce.d.ts +9 -0
  7. package/esm/boom-meeting/src/bjy-common/function/isDef.d.ts +1 -0
  8. package/esm/boom-meeting/src/bjy-common/function/isUndef.d.ts +1 -0
  9. package/esm/boom-meeting/src/bjy-common/function/throttling.d.ts +9 -0
  10. package/esm/boom-meeting/src/bjy-common/function/toNumber.d.ts +1 -0
  11. package/esm/boom-meeting/src/bjy-common/type/api.d.ts +66 -0
  12. package/esm/boom-meeting/src/bjy-common/type/options.d.ts +7 -0
  13. package/esm/boom-meeting/src/bjy-common/type/type.d.ts +90 -0
  14. package/esm/boom-meeting/src/bjy-common/util/NextTask.d.ts +28 -0
  15. package/esm/boom-meeting/src/bjy-common/util/Sleep.d.ts +14 -0
  16. package/esm/boom-meeting/src/bjy-common/util/Timer.d.ts +13 -0
  17. package/esm/boom-meeting/src/bjy-common/util/browser.d.ts +6 -0
  18. package/esm/boom-meeting/src/bjy-common/util/holder.d.ts +6 -0
  19. package/esm/boom-meeting/src/bjy-common/util/network.d.ts +4 -0
  20. package/esm/boom-meeting/src/bjy-common/util/os.d.ts +14 -0
  21. package/esm/boom-meeting/src/error/errorMap.d.ts +70 -0
  22. package/esm/boom-meeting/src/type/customStats.d.ts +119 -0
  23. package/esm/boom-meeting/src/type/index.d.ts +9 -0
  24. package/esm/boom-meeting/src/type/stream.d.ts +15 -0
  25. package/esm/boom-meeting/src/type/user.d.ts +9 -0
  26. package/esm/boom-meeting/src/util/PackLoss.d.ts +7 -0
  27. package/esm/boom-meeting/src/util/Privileges.d.ts +20 -0
  28. package/esm/boom-meeting/src/util/ReportCollector.d.ts +22 -0
  29. package/esm/boom-meeting/src/util/Stutter.d.ts +19 -0
  30. package/esm/boom-meeting/src/util/base64.d.ts +4 -0
  31. package/esm/boom-meeting/src/util/checkPermissions.d.ts +1 -0
  32. package/esm/boom-meeting/src/util/checkSystemRequirements.d.ts +1 -0
  33. package/esm/boom-meeting/src/util/devices.d.ts +2 -0
  34. package/esm/boom-meeting/src/util/formatUserId.d.ts +2 -0
  35. package/esm/boom-meeting/src/util/is.d.ts +70 -0
  36. package/esm/boom-meeting/src/util/peerToPeerProbe.d.ts +9 -0
  37. package/esm/boom-meeting/src/util/request.d.ts +45 -0
  38. package/esm/boom-meeting/src/util/sortUtils.d.ts +10 -0
  39. package/esm/boom-meeting/src/util/util.d.ts +1 -0
  40. package/esm/index.js +2 -2
  41. package/esm/index.js.map +3 -3
  42. package/esm/src/BMChat/BMMessageInfo.d.ts +31 -31
  43. package/esm/src/BMRoom/BMRoom.d.ts +3 -3
  44. package/esm/src/BMRoom/RoomEvent.d.ts +1 -1
  45. package/esm/src/BMRoom/attachEvents.d.ts +7 -2
  46. package/esm/src/BMStream/BMSpeaker.d.ts +44 -44
  47. package/esm/src/BMStream/BMStreamModel.d.ts +269 -269
  48. package/esm/src/BMStream/BMStreamModelVM.d.ts +2 -2
  49. package/esm/src/BMStream/getHTMLMediaStreamOptions.d.ts +35 -35
  50. package/esm/src/EventHandler.d.ts +20 -0
  51. package/esm/src/bjy-common/function/debounce.d.ts +9 -9
  52. package/esm/src/bjy-common/function/execute.d.ts +9 -9
  53. package/esm/src/bjy-common/function/isDef.d.ts +1 -1
  54. package/esm/src/bjy-common/function/isNative.d.ts +1 -1
  55. package/esm/src/bjy-common/function/isUndef.d.ts +1 -1
  56. package/esm/src/bjy-common/function/nextTick.d.ts +2 -2
  57. package/esm/src/bjy-common/function/throttling.d.ts +9 -9
  58. package/esm/src/bjy-common/function/toNumber.d.ts +1 -1
  59. package/esm/src/bjy-common/function/toString.d.ts +1 -1
  60. package/esm/src/bjy-common/type/api.d.ts +66 -66
  61. package/esm/src/bjy-common/type/options.d.ts +7 -7
  62. package/esm/src/bjy-common/type/type.d.ts +90 -90
  63. package/esm/src/bjy-common/util/CustomEvent.d.ts +30 -30
  64. package/esm/src/bjy-common/util/Emitter.d.ts +57 -57
  65. package/esm/src/bjy-common/util/NextTask.d.ts +28 -28
  66. package/esm/src/bjy-common/util/Sleep.d.ts +14 -14
  67. package/esm/src/bjy-common/util/Timer.d.ts +13 -13
  68. package/esm/src/bjy-common/util/array.d.ts +96 -96
  69. package/esm/src/bjy-common/util/browser.d.ts +6 -6
  70. package/esm/src/bjy-common/util/constant.d.ts +50 -50
  71. package/esm/src/bjy-common/util/holder.d.ts +6 -6
  72. package/esm/src/bjy-common/util/is.d.ts +49 -49
  73. package/esm/src/bjy-common/util/keypath.d.ts +41 -41
  74. package/esm/src/bjy-common/util/logger.d.ts +42 -42
  75. package/esm/src/bjy-common/util/network.d.ts +4 -4
  76. package/esm/src/bjy-common/util/object.d.ts +83 -83
  77. package/esm/src/bjy-common/util/os.d.ts +14 -14
  78. package/esm/src/bjy-common/util/string.d.ts +102 -102
  79. package/esm/src/error/errorMap.d.ts +70 -70
  80. package/esm/src/type/customStats.d.ts +119 -119
  81. package/esm/src/type/index.d.ts +9 -9
  82. package/esm/src/type/stream.d.ts +15 -15
  83. package/esm/src/type/user.d.ts +9 -9
  84. package/esm/src/util/PackLoss.d.ts +7 -7
  85. package/esm/src/util/Privileges.d.ts +20 -20
  86. package/esm/src/util/ReportCollector.d.ts +22 -22
  87. package/esm/src/util/Stutter.d.ts +19 -19
  88. package/esm/src/util/base64.d.ts +4 -4
  89. package/esm/src/util/checkPermissions.d.ts +1 -1
  90. package/esm/src/util/checkSystemRequirements.d.ts +1 -1
  91. package/esm/src/util/devices.d.ts +2 -2
  92. package/esm/src/util/formatUserId.d.ts +2 -2
  93. package/esm/src/util/is.d.ts +70 -70
  94. package/esm/src/util/peerToPeerProbe.d.ts +9 -9
  95. package/esm/src/util/request.d.ts +45 -45
  96. package/esm/src/util/roomUtils.d.ts +9 -9
  97. package/esm/src/util/sortUtils.d.ts +10 -10
  98. package/esm/src/util/util.d.ts +77 -77
  99. package/package.json +3 -3
  100. package/umd/boom-core/src/BoomCore/BCClient/clientEventType.d.ts +418 -0
  101. package/umd/boom-meeting/src/BMChat/BMMessageInfo.d.ts +4 -0
  102. package/umd/boom-meeting/src/BMRoom/RoomEvent.d.ts +1 -0
  103. package/umd/boom-meeting/src/BMStream/BMSpeaker.d.ts +2 -2
  104. package/umd/boom-meeting/src/BMStream/BMStreamModel.d.ts +27 -6
  105. package/umd/boom-meeting/src/bjy-common/function/debounce.d.ts +9 -0
  106. package/umd/boom-meeting/src/bjy-common/function/isDef.d.ts +1 -0
  107. package/umd/boom-meeting/src/bjy-common/function/isUndef.d.ts +1 -0
  108. package/umd/boom-meeting/src/bjy-common/function/throttling.d.ts +9 -0
  109. package/umd/boom-meeting/src/bjy-common/function/toNumber.d.ts +1 -0
  110. package/umd/boom-meeting/src/bjy-common/type/api.d.ts +66 -0
  111. package/umd/boom-meeting/src/bjy-common/type/options.d.ts +7 -0
  112. package/umd/boom-meeting/src/bjy-common/type/type.d.ts +90 -0
  113. package/umd/boom-meeting/src/bjy-common/util/NextTask.d.ts +28 -0
  114. package/umd/boom-meeting/src/bjy-common/util/Sleep.d.ts +14 -0
  115. package/umd/boom-meeting/src/bjy-common/util/Timer.d.ts +13 -0
  116. package/umd/boom-meeting/src/bjy-common/util/browser.d.ts +6 -0
  117. package/umd/boom-meeting/src/bjy-common/util/holder.d.ts +6 -0
  118. package/umd/boom-meeting/src/bjy-common/util/network.d.ts +4 -0
  119. package/umd/boom-meeting/src/bjy-common/util/os.d.ts +14 -0
  120. package/umd/boom-meeting/src/error/errorMap.d.ts +70 -0
  121. package/umd/boom-meeting/src/type/customStats.d.ts +119 -0
  122. package/umd/boom-meeting/src/type/index.d.ts +9 -0
  123. package/umd/boom-meeting/src/type/stream.d.ts +15 -0
  124. package/umd/boom-meeting/src/type/user.d.ts +9 -0
  125. package/umd/boom-meeting/src/util/PackLoss.d.ts +7 -0
  126. package/umd/boom-meeting/src/util/Privileges.d.ts +20 -0
  127. package/umd/boom-meeting/src/util/ReportCollector.d.ts +22 -0
  128. package/umd/boom-meeting/src/util/Stutter.d.ts +19 -0
  129. package/umd/boom-meeting/src/util/base64.d.ts +4 -0
  130. package/umd/boom-meeting/src/util/checkPermissions.d.ts +1 -0
  131. package/umd/boom-meeting/src/util/checkSystemRequirements.d.ts +1 -0
  132. package/umd/boom-meeting/src/util/devices.d.ts +2 -0
  133. package/umd/boom-meeting/src/util/formatUserId.d.ts +2 -0
  134. package/umd/boom-meeting/src/util/is.d.ts +70 -0
  135. package/umd/boom-meeting/src/util/peerToPeerProbe.d.ts +9 -0
  136. package/umd/boom-meeting/src/util/request.d.ts +45 -0
  137. package/umd/boom-meeting/src/util/sortUtils.d.ts +10 -0
  138. package/umd/boom-meeting/src/util/util.d.ts +1 -0
  139. package/umd/index.js +2 -2
  140. package/umd/src/BMRoom/BMRoom.d.ts +3 -3
  141. package/umd/src/BMRoom/attachEvents.d.ts +7 -2
  142. package/umd/src/BMStream/BMStreamModelVM.d.ts +2 -2
  143. package/umd/src/EventHandler.d.ts +20 -0
@@ -1,83 +1,83 @@
1
- import { Data } from '../type/type';
2
- /**
3
- * 获取对象的 key 的数组
4
- *
5
- * @param object
6
- * @return
7
- */
8
- export declare function keys(object: Data): string[];
9
- /**
10
- * 排序对象的 key
11
- *
12
- * @param object
13
- * @param desc 是否逆序,默认从小到大排序
14
- * @return
15
- */
16
- export declare function sort(object: Data, desc?: boolean): string[];
17
- /**
18
- * 遍历对象
19
- *
20
- * @param object
21
- * @param callback 返回 false 可停止遍历
22
- */
23
- export declare function each<T>(object: Data, callback: (value: T, key: string) => boolean | void): void;
24
- /**
25
- * 清空对象所有的键值对
26
- *
27
- * @param object
28
- */
29
- export declare function clear(object: Data): void;
30
- /**
31
- * 扩展对象
32
- *
33
- * @return
34
- */
35
- export declare function extend(original: Data, object: Data): Data;
36
- /**
37
- * 合并对象
38
- *
39
- * @return
40
- */
41
- export declare function merge(object1: Data | void, object2: Data | void): Data | void;
42
- /**
43
- * 拷贝对象
44
- *
45
- * @param object
46
- * @param deep 是否需要深拷贝
47
- * @return
48
- */
49
- export declare function copy(object: any, deep?: boolean): any;
50
- /**
51
- * 从对象中查找一个 keypath
52
- *
53
- * 返回值是空时,表示没找到值
54
- *
55
- * @param object
56
- * @param keypath
57
- * @return
58
- */
59
- export declare function get(object: any, keypath: string, defaultValue?: any): any;
60
- /**
61
- * 为对象设置一个键值对
62
- *
63
- * @param object
64
- * @param keypath
65
- * @param value
66
- * @param autofill 是否自动填充不存在的对象,默认自动填充
67
- */
68
- export declare function set(object: Data, keypath: string, value: any, autofill?: boolean): void;
69
- /**
70
- * 对象是否包含某个 key
71
- *
72
- * @param object
73
- * @param key
74
- * @return
75
- */
76
- export declare function has(object: Data, key: string | number): boolean;
77
- /**
78
- * 是否是空对象
79
- *
80
- * @param object
81
- * @return
82
- */
83
- export declare function falsy(object: any): boolean;
1
+ import { Data } from '../type/type';
2
+ /**
3
+ * 获取对象的 key 的数组
4
+ *
5
+ * @param object
6
+ * @return
7
+ */
8
+ export declare function keys(object: Data): string[];
9
+ /**
10
+ * 排序对象的 key
11
+ *
12
+ * @param object
13
+ * @param desc 是否逆序,默认从小到大排序
14
+ * @return
15
+ */
16
+ export declare function sort(object: Data, desc?: boolean): string[];
17
+ /**
18
+ * 遍历对象
19
+ *
20
+ * @param object
21
+ * @param callback 返回 false 可停止遍历
22
+ */
23
+ export declare function each<T>(object: Data, callback: (value: T, key: string) => boolean | void): void;
24
+ /**
25
+ * 清空对象所有的键值对
26
+ *
27
+ * @param object
28
+ */
29
+ export declare function clear(object: Data): void;
30
+ /**
31
+ * 扩展对象
32
+ *
33
+ * @return
34
+ */
35
+ export declare function extend(original: Data, object: Data): Data;
36
+ /**
37
+ * 合并对象
38
+ *
39
+ * @return
40
+ */
41
+ export declare function merge(object1: Data | void, object2: Data | void): Data | void;
42
+ /**
43
+ * 拷贝对象
44
+ *
45
+ * @param object
46
+ * @param deep 是否需要深拷贝
47
+ * @return
48
+ */
49
+ export declare function copy(object: any, deep?: boolean): any;
50
+ /**
51
+ * 从对象中查找一个 keypath
52
+ *
53
+ * 返回值是空时,表示没找到值
54
+ *
55
+ * @param object
56
+ * @param keypath
57
+ * @return
58
+ */
59
+ export declare function get(object: any, keypath: string, defaultValue?: any): any;
60
+ /**
61
+ * 为对象设置一个键值对
62
+ *
63
+ * @param object
64
+ * @param keypath
65
+ * @param value
66
+ * @param autofill 是否自动填充不存在的对象,默认自动填充
67
+ */
68
+ export declare function set(object: Data, keypath: string, value: any, autofill?: boolean): void;
69
+ /**
70
+ * 对象是否包含某个 key
71
+ *
72
+ * @param object
73
+ * @param key
74
+ * @return
75
+ */
76
+ export declare function has(object: Data, key: string | number): boolean;
77
+ /**
78
+ * 是否是空对象
79
+ *
80
+ * @param object
81
+ * @return
82
+ */
83
+ export declare function falsy(object: any): boolean;
@@ -1,14 +1,14 @@
1
- /**
2
- * UA 检测操作系统
3
- *
4
- * 返回结果如下:
5
- *
6
- * {
7
- * name: 'mac', // 判断多个浏览器时,便于用 name 去 switch
8
- * mac: true, // 判断某一个浏览器时,便于 if (mac) { ... }
9
- * version: '8.0' // 版本号,string 类型
10
- * }
11
- *
12
- */
13
- declare const os: any;
14
- export default os;
1
+ /**
2
+ * UA 检测操作系统
3
+ *
4
+ * 返回结果如下:
5
+ *
6
+ * {
7
+ * name: 'mac', // 判断多个浏览器时,便于用 name 去 switch
8
+ * mac: true, // 判断某一个浏览器时,便于 if (mac) { ... }
9
+ * version: '8.0' // 版本号,string 类型
10
+ * }
11
+ *
12
+ */
13
+ declare const os: any;
14
+ export default os;
@@ -1,102 +1,102 @@
1
- /**
2
- * 连字符转成驼峰
3
- *
4
- * @param str
5
- * @return 驼峰格式的字符串
6
- */
7
- export declare function camelize(str: string): string;
8
- /**
9
- * 驼峰转成连字符
10
- *
11
- * @param str
12
- * @return 连字符格式的字符串
13
- */
14
- export declare function hyphenate(str: string): string;
15
- /**
16
- * 首字母大写
17
- *
18
- * @param str
19
- * @return
20
- */
21
- export declare function capitalize(str: string): string;
22
- /**
23
- * 清除两侧空白符
24
- *
25
- * @param str
26
- * @return 清除两侧空白符的字符串
27
- */
28
- export declare function trim(str: any): string;
29
- /**
30
- * 截取字符串
31
- *
32
- * @param str
33
- * @param start
34
- * @param end
35
- * @return
36
- */
37
- export declare function slice(str: string, start: number, end?: number): string;
38
- /**
39
- * 获取子串的起始位置
40
- *
41
- * @param str
42
- * @param part
43
- * @param start
44
- * @return
45
- */
46
- export declare function indexOf(str: string, part: string, start?: number): number;
47
- /**
48
- * 获取子串的起始位置
49
- *
50
- * @param str
51
- * @param part
52
- * @param end
53
- * @return
54
- */
55
- export declare function lastIndexOf(str: string, part: string, end?: number): number;
56
- /**
57
- * str 是否以 part 开头
58
- *
59
- * @param str
60
- * @param part
61
- * @return
62
- */
63
- export declare function startsWith(str: string, part: string): boolean;
64
- /**
65
- * str 是否以 part 结束
66
- *
67
- * @param str
68
- * @param part
69
- * @return
70
- */
71
- export declare function endsWith(str: string, part: string): boolean;
72
- /**
73
- * 获取某个位置的字符
74
- */
75
- export declare function charAt(str: string, index?: number): string;
76
- /**
77
- * 获取某个位置的字符编码
78
- */
79
- export declare function codeAt(str: string, index?: number): number;
80
- /**
81
- * 大写格式
82
- */
83
- export declare function upper(str: string): string;
84
- /**
85
- * 小写格式
86
- */
87
- export declare function lower(str: string): string;
88
- /**
89
- * str 是否包含 part
90
- *
91
- * @param str
92
- * @param part
93
- * @return 是否包含
94
- */
95
- export declare function has(str: string, part: string): boolean;
96
- /**
97
- * 判断长度大于 0 的字符串
98
- *
99
- * @param str
100
- * @return
101
- */
102
- export declare function falsy(str: any): boolean;
1
+ /**
2
+ * 连字符转成驼峰
3
+ *
4
+ * @param str
5
+ * @return 驼峰格式的字符串
6
+ */
7
+ export declare function camelize(str: string): string;
8
+ /**
9
+ * 驼峰转成连字符
10
+ *
11
+ * @param str
12
+ * @return 连字符格式的字符串
13
+ */
14
+ export declare function hyphenate(str: string): string;
15
+ /**
16
+ * 首字母大写
17
+ *
18
+ * @param str
19
+ * @return
20
+ */
21
+ export declare function capitalize(str: string): string;
22
+ /**
23
+ * 清除两侧空白符
24
+ *
25
+ * @param str
26
+ * @return 清除两侧空白符的字符串
27
+ */
28
+ export declare function trim(str: any): string;
29
+ /**
30
+ * 截取字符串
31
+ *
32
+ * @param str
33
+ * @param start
34
+ * @param end
35
+ * @return
36
+ */
37
+ export declare function slice(str: string, start: number, end?: number): string;
38
+ /**
39
+ * 获取子串的起始位置
40
+ *
41
+ * @param str
42
+ * @param part
43
+ * @param start
44
+ * @return
45
+ */
46
+ export declare function indexOf(str: string, part: string, start?: number): number;
47
+ /**
48
+ * 获取子串的起始位置
49
+ *
50
+ * @param str
51
+ * @param part
52
+ * @param end
53
+ * @return
54
+ */
55
+ export declare function lastIndexOf(str: string, part: string, end?: number): number;
56
+ /**
57
+ * str 是否以 part 开头
58
+ *
59
+ * @param str
60
+ * @param part
61
+ * @return
62
+ */
63
+ export declare function startsWith(str: string, part: string): boolean;
64
+ /**
65
+ * str 是否以 part 结束
66
+ *
67
+ * @param str
68
+ * @param part
69
+ * @return
70
+ */
71
+ export declare function endsWith(str: string, part: string): boolean;
72
+ /**
73
+ * 获取某个位置的字符
74
+ */
75
+ export declare function charAt(str: string, index?: number): string;
76
+ /**
77
+ * 获取某个位置的字符编码
78
+ */
79
+ export declare function codeAt(str: string, index?: number): number;
80
+ /**
81
+ * 大写格式
82
+ */
83
+ export declare function upper(str: string): string;
84
+ /**
85
+ * 小写格式
86
+ */
87
+ export declare function lower(str: string): string;
88
+ /**
89
+ * str 是否包含 part
90
+ *
91
+ * @param str
92
+ * @param part
93
+ * @return 是否包含
94
+ */
95
+ export declare function has(str: string, part: string): boolean;
96
+ /**
97
+ * 判断长度大于 0 的字符串
98
+ *
99
+ * @param str
100
+ * @return
101
+ */
102
+ export declare function falsy(str: any): boolean;
@@ -1,70 +1,70 @@
1
- export declare const BoomErrorMessage: {
2
- 1000: {
3
- name: string;
4
- message: string;
5
- };
6
- 1001: {
7
- name: string;
8
- message: string;
9
- };
10
- 1002: {
11
- name: string;
12
- message: string;
13
- };
14
- 1003: {
15
- name: string;
16
- message: string;
17
- };
18
- 4000: {
19
- name: string;
20
- message: string;
21
- };
22
- 4001: {
23
- name: string;
24
- message: string;
25
- };
26
- 4002: {
27
- name: string;
28
- message: string;
29
- };
30
- 4003: {
31
- name: string;
32
- message: string;
33
- };
34
- 4004: {
35
- name: string;
36
- message: string;
37
- };
38
- 4005: {
39
- name: string;
40
- message: string;
41
- };
42
- 4006: {
43
- name: string;
44
- message: string;
45
- };
46
- 4007: {
47
- name: string;
48
- message: string;
49
- };
50
- 4008: {
51
- name: string;
52
- message: string;
53
- };
54
- 5000: {
55
- name: string;
56
- message: string;
57
- };
58
- 5001: {
59
- name: string;
60
- message: string;
61
- };
62
- 9000: {
63
- name: string;
64
- message: string;
65
- };
66
- 1010: {
67
- name: string;
68
- message: string;
69
- };
70
- };
1
+ export declare const BoomErrorMessage: {
2
+ 1000: {
3
+ name: string;
4
+ message: string;
5
+ };
6
+ 1001: {
7
+ name: string;
8
+ message: string;
9
+ };
10
+ 1002: {
11
+ name: string;
12
+ message: string;
13
+ };
14
+ 1003: {
15
+ name: string;
16
+ message: string;
17
+ };
18
+ 4000: {
19
+ name: string;
20
+ message: string;
21
+ };
22
+ 4001: {
23
+ name: string;
24
+ message: string;
25
+ };
26
+ 4002: {
27
+ name: string;
28
+ message: string;
29
+ };
30
+ 4003: {
31
+ name: string;
32
+ message: string;
33
+ };
34
+ 4004: {
35
+ name: string;
36
+ message: string;
37
+ };
38
+ 4005: {
39
+ name: string;
40
+ message: string;
41
+ };
42
+ 4006: {
43
+ name: string;
44
+ message: string;
45
+ };
46
+ 4007: {
47
+ name: string;
48
+ message: string;
49
+ };
50
+ 4008: {
51
+ name: string;
52
+ message: string;
53
+ };
54
+ 5000: {
55
+ name: string;
56
+ message: string;
57
+ };
58
+ 5001: {
59
+ name: string;
60
+ message: string;
61
+ };
62
+ 9000: {
63
+ name: string;
64
+ message: string;
65
+ };
66
+ 1010: {
67
+ name: string;
68
+ message: string;
69
+ };
70
+ };