biz-slide-core 1.2.84 → 1.2.85

Sign up to get free protection for your applications and to get access to all the features.
Files changed (150) hide show
  1. package/dist/entity/analytic.entity.d.ts +50 -0
  2. package/dist/entity/analytic.entity.d.ts.map +1 -0
  3. package/dist/entity/common.d.ts +19 -0
  4. package/dist/entity/common.d.ts.map +1 -0
  5. package/dist/entity/config.enity.d.ts +33 -0
  6. package/dist/entity/config.enity.d.ts.map +1 -0
  7. package/dist/entity/cron.entity.d.ts +33 -0
  8. package/dist/entity/cron.entity.d.ts.map +1 -0
  9. package/dist/entity/customer.entity.d.ts +38 -0
  10. package/dist/entity/customer.entity.d.ts.map +1 -0
  11. package/dist/entity/image.entity.d.ts +44 -0
  12. package/dist/entity/image.entity.d.ts.map +1 -0
  13. package/dist/entity/index.d.ts +19 -0
  14. package/dist/entity/index.d.ts.map +1 -0
  15. package/dist/entity/logs.entity.d.ts +34 -0
  16. package/dist/entity/logs.entity.d.ts.map +1 -0
  17. package/dist/entity/png-svg.entity.d.ts +47 -0
  18. package/dist/entity/png-svg.entity.d.ts.map +1 -0
  19. package/dist/entity/ppt-email-queue.entity.d.ts +34 -0
  20. package/dist/entity/ppt-email-queue.entity.d.ts.map +1 -0
  21. package/dist/entity/ppt-event.entity.d.ts +37 -0
  22. package/dist/entity/ppt-event.entity.d.ts.map +1 -0
  23. package/dist/entity/ppt-slide.entity.d.ts +44 -0
  24. package/dist/entity/ppt-slide.entity.d.ts.map +1 -0
  25. package/dist/entity/ppt.entity.d.ts +62 -0
  26. package/dist/entity/ppt.entity.d.ts.map +1 -0
  27. package/{entity → dist/entity}/ppt.entity.js +2 -1
  28. package/dist/entity/slide-layout.entity.d.ts +45 -0
  29. package/dist/entity/slide-layout.entity.d.ts.map +1 -0
  30. package/dist/entity/slide.entity.d.ts +51 -0
  31. package/dist/entity/slide.entity.d.ts.map +1 -0
  32. package/dist/entity/socket.entity.d.ts +35 -0
  33. package/dist/entity/socket.entity.d.ts.map +1 -0
  34. package/dist/entity/template-type.entity.d.ts +49 -0
  35. package/dist/entity/template-type.entity.d.ts.map +1 -0
  36. package/dist/entity/template.entity.d.ts +40 -0
  37. package/dist/entity/template.entity.d.ts.map +1 -0
  38. package/dist/entity/training-queue.entity.d.ts +39 -0
  39. package/dist/entity/training-queue.entity.d.ts.map +1 -0
  40. package/dist/entity/user.entity.d.ts +38 -0
  41. package/dist/entity/user.entity.d.ts.map +1 -0
  42. package/dist/index.d.ts +6 -0
  43. package/dist/index.d.ts.map +1 -0
  44. package/dist/middleware/authentication.d.ts +8 -0
  45. package/dist/middleware/authentication.d.ts.map +1 -0
  46. package/{middleware → dist/middleware}/authentication.js +1 -0
  47. package/dist/middleware/index.d.ts +4 -0
  48. package/dist/middleware/index.d.ts.map +1 -0
  49. package/dist/middleware/role.d.ts +6 -0
  50. package/dist/middleware/role.d.ts.map +1 -0
  51. package/dist/middleware/schemaValidate.d.ts +5 -0
  52. package/dist/middleware/schemaValidate.d.ts.map +1 -0
  53. package/dist/resHandler/errorHandler.d.ts +17 -0
  54. package/dist/resHandler/errorHandler.d.ts.map +1 -0
  55. package/dist/resHandler/index.d.ts +3 -0
  56. package/dist/resHandler/index.d.ts.map +1 -0
  57. package/dist/resHandler/successHandler.d.ts +3 -0
  58. package/dist/resHandler/successHandler.d.ts.map +1 -0
  59. package/dist/types/IController.d.ts +6 -0
  60. package/dist/types/IController.d.ts.map +1 -0
  61. package/dist/types/IRequest.d.ts +8 -0
  62. package/dist/types/IRequest.d.ts.map +1 -0
  63. package/dist/types/index.d.ts +11 -0
  64. package/dist/types/index.d.ts.map +1 -0
  65. package/dist/utilities/callWithRetries.d.ts +2 -0
  66. package/dist/utilities/callWithRetries.d.ts.map +1 -0
  67. package/dist/utilities/createFolder.d.ts +2 -0
  68. package/dist/utilities/createFolder.d.ts.map +1 -0
  69. package/dist/utilities/encryptionUtils.d.ts +4 -0
  70. package/dist/utilities/encryptionUtils.d.ts.map +1 -0
  71. package/dist/utilities/hasAbusiveWords.d.ts +4 -0
  72. package/dist/utilities/hasAbusiveWords.d.ts.map +1 -0
  73. package/dist/utilities/index.d.ts +6 -0
  74. package/dist/utilities/index.d.ts.map +1 -0
  75. package/dist/utilities/pngSvgCategories.d.ts +168 -0
  76. package/dist/utilities/pngSvgCategories.d.ts.map +1 -0
  77. package/package.json +2 -1
  78. package/src/entity/analytic.entity.ts +62 -0
  79. package/src/entity/common.ts +19 -0
  80. package/src/entity/config.enity.ts +18 -0
  81. package/src/entity/cron.entity.ts +22 -0
  82. package/src/entity/customer.entity.ts +40 -0
  83. package/src/entity/image.entity.ts +32 -0
  84. package/src/entity/index.ts +20 -0
  85. package/src/entity/logs.entity.ts +20 -0
  86. package/src/entity/png-svg.entity.ts +44 -0
  87. package/src/entity/ppt-email-queue.entity.ts +22 -0
  88. package/src/entity/ppt-event.entity.ts +25 -0
  89. package/src/entity/ppt-slide.entity.ts +40 -0
  90. package/src/entity/ppt.entity.ts +79 -0
  91. package/src/entity/slide-layout.entity.ts +56 -0
  92. package/src/entity/slide.entity.ts +61 -0
  93. package/src/entity/socket.entity.ts +20 -0
  94. package/src/entity/template-type.entity.ts +87 -0
  95. package/src/entity/template.entity.ts +38 -0
  96. package/src/entity/training-queue.entity.ts +26 -0
  97. package/src/entity/user.entity.ts +24 -0
  98. package/src/index.ts +6 -0
  99. package/src/middleware/authentication.ts +150 -0
  100. package/src/middleware/index.ts +3 -0
  101. package/src/middleware/role.ts +5 -0
  102. package/src/middleware/schemaValidate.ts +20 -0
  103. package/src/resHandler/errorHandler.ts +66 -0
  104. package/src/resHandler/index.ts +2 -0
  105. package/src/resHandler/successHandler.ts +11 -0
  106. package/src/types/IController.ts +6 -0
  107. package/src/types/IRequest.ts +8 -0
  108. package/src/types/index.ts +11 -0
  109. package/src/utilities/callWithRetries.ts +9 -0
  110. package/src/utilities/createFolder.ts +11 -0
  111. package/src/utilities/encryptionUtils.ts +26 -0
  112. package/src/utilities/hasAbusiveWords.ts +33 -0
  113. package/src/utilities/index.ts +5 -0
  114. package/src/utilities/pngSvgCategories.ts +167 -0
  115. package/tsconfig.json +11 -0
  116. /package/{entity → dist/entity}/analytic.entity.js +0 -0
  117. /package/{entity → dist/entity}/common.js +0 -0
  118. /package/{entity → dist/entity}/config.enity.js +0 -0
  119. /package/{entity → dist/entity}/cron.entity.js +0 -0
  120. /package/{entity → dist/entity}/customer.entity.js +0 -0
  121. /package/{entity → dist/entity}/image.entity.js +0 -0
  122. /package/{entity → dist/entity}/index.js +0 -0
  123. /package/{entity → dist/entity}/logs.entity.js +0 -0
  124. /package/{entity → dist/entity}/png-svg.entity.js +0 -0
  125. /package/{entity → dist/entity}/ppt-email-queue.entity.js +0 -0
  126. /package/{entity → dist/entity}/ppt-event.entity.js +0 -0
  127. /package/{entity → dist/entity}/ppt-slide.entity.js +0 -0
  128. /package/{entity → dist/entity}/slide-layout.entity.js +0 -0
  129. /package/{entity → dist/entity}/slide.entity.js +0 -0
  130. /package/{entity → dist/entity}/socket.entity.js +0 -0
  131. /package/{entity → dist/entity}/template-type.entity.js +0 -0
  132. /package/{entity → dist/entity}/template.entity.js +0 -0
  133. /package/{entity → dist/entity}/training-queue.entity.js +0 -0
  134. /package/{entity → dist/entity}/user.entity.js +0 -0
  135. /package/{index.js → dist/index.js} +0 -0
  136. /package/{middleware → dist/middleware}/index.js +0 -0
  137. /package/{middleware → dist/middleware}/role.js +0 -0
  138. /package/{middleware → dist/middleware}/schemaValidate.js +0 -0
  139. /package/{resHandler → dist/resHandler}/errorHandler.js +0 -0
  140. /package/{resHandler → dist/resHandler}/index.js +0 -0
  141. /package/{resHandler → dist/resHandler}/successHandler.js +0 -0
  142. /package/{types → dist/types}/IController.js +0 -0
  143. /package/{types → dist/types}/IRequest.js +0 -0
  144. /package/{types → dist/types}/index.js +0 -0
  145. /package/{utilities → dist/utilities}/callWithRetries.js +0 -0
  146. /package/{utilities → dist/utilities}/createFolder.js +0 -0
  147. /package/{utilities → dist/utilities}/encryptionUtils.js +0 -0
  148. /package/{utilities → dist/utilities}/hasAbusiveWords.js +0 -0
  149. /package/{utilities → dist/utilities}/index.js +0 -0
  150. /package/{utilities → dist/utilities}/pngSvgCategories.js +0 -0
@@ -0,0 +1,167 @@
1
+ export const pngSvgCategories = {
2
+ "Logo": {
3
+ "Outline": {
4
+ "alias": ""
5
+ },
6
+ "Monogram": {
7
+ "alias": ""
8
+ },
9
+ "Wordmark": {
10
+ "alias": ""
11
+ },
12
+ "Emblem": {
13
+ "alias": ""
14
+ },
15
+ "Abstract Logo": {
16
+ "alias": ""
17
+ },
18
+ "Mascot": {
19
+ "alias": ""
20
+ }
21
+ },
22
+ "Icons": {
23
+ "Outline": {
24
+ "alias": ""
25
+ },
26
+ "Pictogram": {
27
+ "alias": ""
28
+ },
29
+ "Broken Line": {
30
+ "alias": ""
31
+ },
32
+ "Gradient Line": {
33
+ "alias": ""
34
+ },
35
+ "Gradient Shape": {
36
+ "alias": "The icon should have strong and dramatic lighting and have a clean look on white background and should have only the suggested colour scheme."
37
+ },
38
+ "Doodle": {
39
+ "alias": ""
40
+ },
41
+ "Flat": {
42
+ "alias": ""
43
+ },
44
+ "Minimalistic": {
45
+ "alias": ""
46
+ },
47
+ "Isometric": {
48
+ "alias": "The icon should have strong and dramatic lighting and have a clean look on white background and should have only the suggested colour scheme. "
49
+ },
50
+ "3D Icons": {
51
+ "alias": "The icon should have strong and dramatic lighting and have a clean look on white background and should have only the suggested colour scheme."
52
+ }
53
+ },
54
+ "Illustrations": {
55
+ "Hand Drawn": {
56
+ "alias": ""
57
+ },
58
+ "Glow": {
59
+ "alias": "The icon should have strong and dramatic lighting and have a clean look on white background and should have only the suggested colour scheme. "
60
+ },
61
+ "Pixel Art": {
62
+ "alias": ""
63
+ },
64
+ "Watercolour": {
65
+ "alias": ""
66
+ },
67
+ "Psychedelic": {
68
+ "alias": "The icon should have strong and dramatic lighting and have a clean look on white background and should have only the suggested colour scheme. "
69
+ },
70
+ "80's": {
71
+ "alias": "The icon should have strong and dramatic lighting and have a clean look on white background and should have only the suggested colour scheme. "
72
+ },
73
+ "Digital Art": {
74
+ "alias": "The icon should have strong and dramatic lighting and have a clean look on white background and should have only the suggested colour scheme. "
75
+ },
76
+ "Abstract": {
77
+ "alias": "The icon should have strong and dramatic lighting and have a clean look on white background and should have only the suggested colour scheme. "
78
+ },
79
+ "Realistic": {
80
+ "alias": "The icon should have strong and dramatic lighting and have a clean look on white background and should have only the suggested colour scheme. "
81
+ },
82
+ "Comic Style": {
83
+ "alias": "The icon should have strong and dramatic lighting and have a clean look on white background and should have only the suggested colour scheme. "
84
+ },
85
+ "Fantasy": {
86
+ "alias": "The icon should have strong and dramatic lighting and have a clean look on white background and should have only the suggested colour scheme. "
87
+ },
88
+ "Anime": {
89
+ "alias": ""
90
+ },
91
+ "Minimalist": {
92
+ "alias": ""
93
+ },
94
+ "Pencil Sketch": {
95
+ "alias": ""
96
+ },
97
+ },
98
+ "3D illustration": {
99
+ "Wireframe": {
100
+ "alias": ""
101
+ },
102
+ "Low Poly": {
103
+ "alias": ""
104
+ },
105
+ "Cartoon 3D": {
106
+ "alias": ""
107
+ },
108
+ "Plastic 3D": {
109
+ "alias": ""
110
+ },
111
+ "3D render": {
112
+ "alias": ""
113
+ },
114
+ },
115
+ "Photorealism": {
116
+ "Photorealistic Painting": {
117
+ "alias": ""
118
+ },
119
+ "Photorealistic Drawing": {
120
+ "alias": ""
121
+ },
122
+ "Hyperealism": {
123
+ "alias": ""
124
+ },
125
+ "Photorealism": {
126
+ "alias": ""
127
+ },
128
+ },
129
+ "Vector Art": {
130
+ "Line Art": {
131
+ "alias": ""
132
+ },
133
+ "Cartoon": {
134
+ "alias": ""
135
+ },
136
+ "Vector Kawai": {
137
+ "alias": ""
138
+ },
139
+ "Linocut": {
140
+ "alias": ""
141
+ },
142
+ "Engraving": {
143
+ "alias": ""
144
+ },
145
+ "Doodle Line Art": {
146
+ "alias": ""
147
+ },
148
+ "Geometric": {
149
+ "alias": ""
150
+ },
151
+ "Abstract": {
152
+ "alias": ""
153
+ },
154
+ "Vintage": {
155
+ "alias": ""
156
+ },
157
+ "Minimalist": {
158
+ "alias": ""
159
+ },
160
+ "Stylized": {
161
+ "alias": ""
162
+ },
163
+ "Flat Design": {
164
+ "alias": ""
165
+ },
166
+ }
167
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "es5",
4
+ "module": "commonjs",
5
+ "outDir": "./dist", // Specify your desired output directory
6
+ "strict": true,
7
+ "esModuleInterop": true
8
+ },
9
+ "include": ["src/**/*.ts"],
10
+ "exclude": ["node_modules"]
11
+ }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes