prostgles-server 2.0.136 → 2.0.140

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 (92) hide show
  1. package/dist/AuthHandler.d.ts.map +1 -1
  2. package/dist/AuthHandler.js +5 -1
  3. package/dist/AuthHandler.js.map +1 -1
  4. package/dist/Filtering.d.ts.map +1 -1
  5. package/dist/Filtering.js +12 -4
  6. package/dist/Filtering.js.map +1 -1
  7. package/examples/client/react-typescript/README.md +44 -0
  8. package/examples/client/react-typescript/package-lock.json +13909 -0
  9. package/examples/client/react-typescript/package.json +39 -0
  10. package/examples/client/react-typescript/public/favicon.ico +0 -0
  11. package/examples/client/react-typescript/public/index.html +43 -0
  12. package/examples/client/react-typescript/public/logo192.png +0 -0
  13. package/examples/client/react-typescript/public/logo512.png +0 -0
  14. package/examples/client/react-typescript/public/manifest.json +25 -0
  15. package/examples/client/react-typescript/public/robots.txt +3 -0
  16. package/examples/client/react-typescript/src/App.css +38 -0
  17. package/examples/client/react-typescript/src/App.test.tsx +9 -0
  18. package/examples/client/react-typescript/src/App.tsx +26 -0
  19. package/examples/client/react-typescript/src/index.css +13 -0
  20. package/examples/client/react-typescript/src/index.tsx +17 -0
  21. package/examples/client/react-typescript/src/logo.svg +7 -0
  22. package/examples/client/react-typescript/src/react-app-env.d.ts +1 -0
  23. package/examples/client/react-typescript/src/serviceWorker.ts +149 -0
  24. package/examples/client/react-typescript/src/setupTests.ts +5 -0
  25. package/examples/client/react-typescript/tsconfig.json +25 -0
  26. package/examples/client/vanilla-js/index.html +21 -0
  27. package/examples/full-example-react/client/README.md +68 -0
  28. package/examples/full-example-react/client/package-lock.json +14134 -0
  29. package/examples/full-example-react/client/package.json +36 -0
  30. package/examples/full-example-react/client/public/favicon.ico +0 -0
  31. package/examples/full-example-react/client/public/index.html +43 -0
  32. package/examples/full-example-react/client/public/logo192.png +0 -0
  33. package/examples/full-example-react/client/public/logo512.png +0 -0
  34. package/examples/full-example-react/client/public/manifest.json +25 -0
  35. package/examples/full-example-react/client/public/robots.txt +3 -0
  36. package/examples/full-example-react/client/src/App.css +14 -0
  37. package/examples/full-example-react/client/src/App.js +58 -0
  38. package/examples/full-example-react/client/src/App.test.js +9 -0
  39. package/examples/full-example-react/client/src/index.css +13 -0
  40. package/examples/full-example-react/client/src/index.js +17 -0
  41. package/examples/full-example-react/client/src/logo.svg +7 -0
  42. package/examples/full-example-react/client/src/serviceWorker.js +141 -0
  43. package/examples/full-example-react/client/src/setupTests.js +5 -0
  44. package/examples/full-example-react/client/src/sssetupProxy.js +6 -0
  45. package/examples/full-example-react/server/index.js +42 -0
  46. package/examples/full-example-react/server/init.sql +7 -0
  47. package/examples/full-example-react/server/package.json +18 -0
  48. package/examples/full-example-typescript/DBoGenerated.d.ts +74 -0
  49. package/examples/full-example-typescript/DBoGenerated.d.ts.map +1 -0
  50. package/examples/full-example-typescript/DBoGenerated.js +6 -0
  51. package/examples/full-example-typescript/DBoGenerated.js.map +1 -0
  52. package/examples/full-example-typescript/DBoGenerated.ts +67 -0
  53. package/examples/full-example-typescript/home.html +30 -0
  54. package/examples/full-example-typescript/index.d.ts +2 -0
  55. package/examples/full-example-typescript/index.d.ts.map +1 -0
  56. package/examples/full-example-typescript/index.js +66 -0
  57. package/examples/full-example-typescript/index.js.map +1 -0
  58. package/examples/full-example-typescript/index.ts +74 -0
  59. package/examples/full-example-typescript/init.sql +17 -0
  60. package/examples/full-example-typescript/package copy.json +16 -0
  61. package/examples/full-example-typescript/package.json +19 -0
  62. package/examples/full-example-typescript/tsconfig.json +24 -0
  63. package/examples/full-example-vanilla/home.html +131 -0
  64. package/examples/full-example-vanilla/index.js +108 -0
  65. package/examples/full-example-vanilla/init.sql +69 -0
  66. package/examples/full-example-vanilla/package.json +18 -0
  67. package/examples/server/javascript/index.js +27 -0
  68. package/examples/server/javascript/init.sql +5 -0
  69. package/examples/server/javascript/package.json +16 -0
  70. package/examples/server/typescript/DBoGenerated.d.ts +168 -0
  71. package/examples/server/typescript/DBoGenerated.d.ts.map +1 -0
  72. package/examples/server/typescript/DBoGenerated.js +5 -0
  73. package/examples/server/typescript/DBoGenerated.js.map +1 -0
  74. package/examples/server/typescript/DBoGenerated.ts +125 -0
  75. package/examples/server/typescript/index.d.ts +2 -0
  76. package/examples/server/typescript/index.d.ts.map +1 -0
  77. package/examples/server/typescript/index.js +54 -0
  78. package/examples/server/typescript/index.js.map +1 -0
  79. package/examples/server/typescript/index.ts +52 -0
  80. package/examples/server/typescript/init.sql +20 -0
  81. package/examples/server/typescript/package.json +17 -0
  82. package/examples/server/typescript/tsconfig.json +17 -0
  83. package/lib/AuthHandler.ts +5 -2
  84. package/lib/Filtering.ts +12 -2
  85. package/package.json +4 -5
  86. package/tests/client/PID.txt +1 -1
  87. package/tests/server/DBoGenerated.d.ts +0 -190
  88. package/tests/server/package-lock.json +7 -9
  89. package/tests/server/media/7b46d3c8-67f7-457c-b194-50bc815a1fa9.txt +0 -1
  90. package/tests/server/media/807b5037-8b8a-4871-bf68-4c0bf6cfcf19.txt +0 -1
  91. package/tests/server/media/e474c32f-8cf2-4678-9049-1bce3a17c2e5.txt +0 -1
  92. package/tests/server/media/fa20ecbf-935a-4ca2-b48d-a4aebc00fff8.txt +0 -1
@@ -19,26 +19,6 @@ export type D_42 = {
19
19
  "*"?: string;
20
20
  "id"?: number;
21
21
  }
22
- export type CodePointOpen_London_201709 = {
23
- "borough"?: string;
24
- "boroughcd"?: string;
25
- "eastings"?: string;
26
- "lsoa11_cd"?: string;
27
- "lsoa11_nm"?: string;
28
- "msoa11_cd"?: string;
29
- "msoa11_nm"?: string;
30
- "northings"?: string;
31
- "OBJECTID"?: string;
32
- "postcode"?: string;
33
- "rgn11_cd"?: string;
34
- "rgn11_nm"?: string;
35
- "Shape"?: any;
36
- "ward14_cd"?: string;
37
- "ward14_nm"?: string;
38
- }
39
- export type Aaaa = {
40
- "c"?: Object;
41
- }
42
22
  export type Ex_j_ins = {
43
23
  "added"?: Date;
44
24
  "id"?: number;
@@ -68,12 +48,6 @@ export type Insert_rules = {
68
48
  "id"?: number;
69
49
  "name"?: string;
70
50
  }
71
- export type Item_children = {
72
- "id"?: number;
73
- "item_id"?: number;
74
- "name"?: string;
75
- "tst"?: Date;
76
- }
77
51
  export type Items = {
78
52
  "h"?: Array<string>;
79
53
  "id"?: number;
@@ -102,10 +76,6 @@ export type Items4_pub = {
102
76
  "name"?: string;
103
77
  "public"?: string;
104
78
  }
105
- export type Items_m1 = {
106
- "id"?: number;
107
- "name"?: string;
108
- }
109
79
  export type Items_with_media = {
110
80
  "id"?: number;
111
81
  "name"?: string;
@@ -117,17 +87,6 @@ export type Items_with_one_media = {
117
87
  export type Lookup_col1 = {
118
88
  "id"?: string;
119
89
  }
120
- export type Lookup_items_m1_name_type = {
121
- "en"?: string;
122
- "id"?: string;
123
- "ro"?: string;
124
- }
125
- export type Lookup_uuid_text_col1 = {
126
- "id"?: string;
127
- }
128
- export type Lookup_uuid_text_col2 = {
129
- "id"?: string;
130
- }
131
90
  export type Media = {
132
91
  "content_type"?: string;
133
92
  "description"?: string;
@@ -141,32 +100,6 @@ export type Media = {
141
100
  "signed_url_expires"?: number;
142
101
  "url"?: string;
143
102
  }
144
- export type Mmedia = {
145
- "content_type"?: string;
146
- "description"?: string;
147
- "etag"?: string;
148
- "extension"?: string;
149
- "id"?: string;
150
- "name"?: string;
151
- "original_name"?: string;
152
- "s3_url"?: string;
153
- "signed_url"?: string;
154
- "signed_url_expires"?: number;
155
- "url"?: string;
156
- }
157
- export type Mmmedia = {
158
- "content_type"?: string;
159
- "description"?: string;
160
- "etag"?: string;
161
- "extension"?: string;
162
- "id"?: string;
163
- "name"?: string;
164
- "original_name"?: string;
165
- "s3_url"?: string;
166
- "signed_url"?: string;
167
- "signed_url_expires"?: number;
168
- "url"?: string;
169
- }
170
103
  export type Planes = {
171
104
  "flight_number"?: string;
172
105
  "id"?: number;
@@ -174,10 +107,6 @@ export type Planes = {
174
107
  "x"?: number;
175
108
  "y"?: number;
176
109
  }
177
- export type Prgll = {
178
- "foreign_id"?: number;
179
- "media_id"?: string;
180
- }
181
110
  export type Prostgles_lookup_media_items_with_media = {
182
111
  "foreign_id"?: number;
183
112
  "media_id"?: string;
@@ -186,21 +115,11 @@ export type Prostgles_lookup_media_items_with_one_media = {
186
115
  "foreign_id"?: number;
187
116
  "media_id"?: string;
188
117
  }
189
- export type Prostgles_lookup_media_various = {
190
- "foreign_id"?: number;
191
- "media_id"?: string;
192
- }
193
118
  export type Shapes = {
194
119
  "geog"?: any;
195
120
  "geom"?: any;
196
121
  "id"?: string;
197
122
  }
198
- export type Skills = {
199
- "id"?: string;
200
- "registration_id"?: string;
201
- "type"?: string;
202
- "years"?: number;
203
- }
204
123
  export type Spatial_ref_sys = {
205
124
  "auth_name"?: string;
206
125
  "auth_srid"?: number;
@@ -208,13 +127,6 @@ export type Spatial_ref_sys = {
208
127
  "srid"?: number;
209
128
  "srtext"?: string;
210
129
  }
211
- export type T = {
212
- "t"?: string;
213
- }
214
- export type Test = {
215
- "id"?: number;
216
- "parent"?: number;
217
- }
218
130
  export type Tr1 = {
219
131
  "id"?: number;
220
132
  "t1"?: string;
@@ -225,27 +137,6 @@ export type Tr2 = {
225
137
  "t2"?: string;
226
138
  "tr1_id"?: number;
227
139
  }
228
- export type Tt = {
229
- "id"?: number;
230
- "t1"?: string;
231
- "t2"?: string;
232
- }
233
- export type Tt1 = {
234
- "id"?: number;
235
- "t1"?: string;
236
- "t2"?: string;
237
- }
238
- export type Tttt = {
239
- "t"?: string;
240
- }
241
- export type Usr = {
242
- "added"?: Date;
243
- "age"?: number;
244
- "id"?: number;
245
- "is_active"?: boolean;
246
- "msg"?: string;
247
- "status"?: string;
248
- }
249
140
  export type Uuid_text = {
250
141
  "col1"?: string;
251
142
  "col2"?: string;
@@ -264,9 +155,6 @@ export type Various = {
264
155
  "name"?: string;
265
156
  "tsv"?: any;
266
157
  }
267
- export type Various_nested = {
268
- "various_id"?: number;
269
- }
270
158
 
271
159
  export type JoinMakerTables = {
272
160
  "items": JoinMaker<Items>;
@@ -280,8 +168,6 @@ export type JoinMakerTables = {
280
168
  "prostgles_lookup_media_items_with_one_media": JoinMaker<Prostgles_lookup_media_items_with_one_media>;
281
169
  "tr1": JoinMaker<Tr1>;
282
170
  "tr2": JoinMaker<Tr2>;
283
- "tt": JoinMaker<Tt>;
284
- "tt1": JoinMaker<Tt1>;
285
171
  "uuid_text": JoinMaker<Uuid_text>;
286
172
  };
287
173
 
@@ -289,48 +175,29 @@ export type JoinMakerTables = {
289
175
  export type DBObj = {
290
176
  "\"*\"": TableHandler<D_34_42_34>
291
177
  "*": TableHandler<D_42>
292
- "CodePointOpen_London_201709": TableHandler<CodePointOpen_London_201709>
293
- "aaaa": TableHandler<Aaaa>
294
178
  "ex_j_ins": TableHandler<Ex_j_ins>
295
179
  "geography_columns": ViewHandler<Geography_columns>
296
180
  "geometry_columns": ViewHandler<Geometry_columns>
297
181
  "insert_rules": TableHandler<Insert_rules>
298
- "item_children": TableHandler<Item_children>
299
182
  "items": TableHandler<Items>
300
183
  "items2": TableHandler<Items2>
301
184
  "items3": TableHandler<Items3>
302
185
  "items4": TableHandler<Items4>
303
186
  "items4_pub": TableHandler<Items4_pub>
304
- "items_m1": TableHandler<Items_m1>
305
187
  "items_with_media": TableHandler<Items_with_media>
306
188
  "items_with_one_media": TableHandler<Items_with_one_media>
307
189
  "lookup_col1": TableHandler<Lookup_col1>
308
- "lookup_items_m1_name_type": TableHandler<Lookup_items_m1_name_type>
309
- "lookup_uuid_text_col1": TableHandler<Lookup_uuid_text_col1>
310
- "lookup_uuid_text_col2": TableHandler<Lookup_uuid_text_col2>
311
190
  "media": TableHandler<Media>
312
- "mmedia": TableHandler<Mmedia>
313
- "mmmedia": TableHandler<Mmmedia>
314
191
  "planes": TableHandler<Planes>
315
- "prgll": TableHandler<Prgll>
316
192
  "prostgles_lookup_media_items_with_media": TableHandler<Prostgles_lookup_media_items_with_media>
317
193
  "prostgles_lookup_media_items_with_one_media": TableHandler<Prostgles_lookup_media_items_with_one_media>
318
- "prostgles_lookup_media_various": TableHandler<Prostgles_lookup_media_various>
319
194
  "shapes": TableHandler<Shapes>
320
- "skills": TableHandler<Skills>
321
195
  "spatial_ref_sys": TableHandler<Spatial_ref_sys>
322
- "t": TableHandler<T>
323
- "test": TableHandler<Test>
324
196
  "tr1": TableHandler<Tr1>
325
197
  "tr2": TableHandler<Tr2>
326
- "tt": TableHandler<Tt>
327
- "tt1": TableHandler<Tt1>
328
- "tttt": TableHandler<Tttt>
329
- "usr": TableHandler<Usr>
330
198
  "uuid_text": TableHandler<Uuid_text>
331
199
  "v_items": ViewHandler<V_items>
332
200
  "various": TableHandler<Various>
333
- "various_nested": TableHandler<Various_nested>
334
201
  leftJoin: JoinMakerTables;
335
202
  innerJoin: JoinMakerTables;
336
203
  leftJoinOne: JoinMakerTables;
@@ -348,12 +215,6 @@ export type I18N_DBO_CONFIG<LANG_IDS = { en: 1, fr: 1 }> = {
348
215
  "*": {
349
216
  [key in "*" | "id"]: { [lang_id in keyof LANG_IDS]: string };
350
217
  };
351
- "CodePointOpen_London_201709": {
352
- [key in "borough" | "boroughcd" | "eastings" | "lsoa11_cd" | "lsoa11_nm" | "msoa11_cd" | "msoa11_nm" | "northings" | "OBJECTID" | "postcode" | "rgn11_cd" | "rgn11_nm" | "Shape" | "ward14_cd" | "ward14_nm"]: { [lang_id in keyof LANG_IDS]: string };
353
- };
354
- "aaaa": {
355
- [key in "c"]: { [lang_id in keyof LANG_IDS]: string };
356
- };
357
218
  "ex_j_ins": {
358
219
  [key in "added" | "id" | "name" | "public"]: { [lang_id in keyof LANG_IDS]: string };
359
220
  };
@@ -366,9 +227,6 @@ export type I18N_DBO_CONFIG<LANG_IDS = { en: 1, fr: 1 }> = {
366
227
  "insert_rules": {
367
228
  [key in "added" | "id" | "name"]: { [lang_id in keyof LANG_IDS]: string };
368
229
  };
369
- "item_children": {
370
- [key in "id" | "item_id" | "name" | "tst"]: { [lang_id in keyof LANG_IDS]: string };
371
- };
372
230
  "items": {
373
231
  [key in "h" | "id" | "name"]: { [lang_id in keyof LANG_IDS]: string };
374
232
  };
@@ -384,9 +242,6 @@ export type I18N_DBO_CONFIG<LANG_IDS = { en: 1, fr: 1 }> = {
384
242
  "items4_pub": {
385
243
  [key in "added" | "id" | "name" | "public"]: { [lang_id in keyof LANG_IDS]: string };
386
244
  };
387
- "items_m1": {
388
- [key in "id" | "name"]: { [lang_id in keyof LANG_IDS]: string };
389
- };
390
245
  "items_with_media": {
391
246
  [key in "id" | "name"]: { [lang_id in keyof LANG_IDS]: string };
392
247
  };
@@ -396,72 +251,30 @@ export type I18N_DBO_CONFIG<LANG_IDS = { en: 1, fr: 1 }> = {
396
251
  "lookup_col1": {
397
252
  [key in "id"]: { [lang_id in keyof LANG_IDS]: string };
398
253
  };
399
- "lookup_items_m1_name_type": {
400
- [key in "en" | "id" | "ro"]: { [lang_id in keyof LANG_IDS]: string };
401
- };
402
- "lookup_uuid_text_col1": {
403
- [key in "id"]: { [lang_id in keyof LANG_IDS]: string };
404
- };
405
- "lookup_uuid_text_col2": {
406
- [key in "id"]: { [lang_id in keyof LANG_IDS]: string };
407
- };
408
254
  "media": {
409
255
  [key in "content_type" | "description" | "etag" | "extension" | "id" | "name" | "original_name" | "s3_url" | "signed_url" | "signed_url_expires" | "url"]: { [lang_id in keyof LANG_IDS]: string };
410
256
  };
411
- "mmedia": {
412
- [key in "content_type" | "description" | "etag" | "extension" | "id" | "name" | "original_name" | "s3_url" | "signed_url" | "signed_url_expires" | "url"]: { [lang_id in keyof LANG_IDS]: string };
413
- };
414
- "mmmedia": {
415
- [key in "content_type" | "description" | "etag" | "extension" | "id" | "name" | "original_name" | "s3_url" | "signed_url" | "signed_url_expires" | "url"]: { [lang_id in keyof LANG_IDS]: string };
416
- };
417
257
  "planes": {
418
258
  [key in "flight_number" | "id" | "last_updated" | "x" | "y"]: { [lang_id in keyof LANG_IDS]: string };
419
259
  };
420
- "prgll": {
421
- [key in "foreign_id" | "media_id"]: { [lang_id in keyof LANG_IDS]: string };
422
- };
423
260
  "prostgles_lookup_media_items_with_media": {
424
261
  [key in "foreign_id" | "media_id"]: { [lang_id in keyof LANG_IDS]: string };
425
262
  };
426
263
  "prostgles_lookup_media_items_with_one_media": {
427
264
  [key in "foreign_id" | "media_id"]: { [lang_id in keyof LANG_IDS]: string };
428
265
  };
429
- "prostgles_lookup_media_various": {
430
- [key in "foreign_id" | "media_id"]: { [lang_id in keyof LANG_IDS]: string };
431
- };
432
266
  "shapes": {
433
267
  [key in "geog" | "geom" | "id"]: { [lang_id in keyof LANG_IDS]: string };
434
268
  };
435
- "skills": {
436
- [key in "id" | "registration_id" | "type" | "years"]: { [lang_id in keyof LANG_IDS]: string };
437
- };
438
269
  "spatial_ref_sys": {
439
270
  [key in "auth_name" | "auth_srid" | "proj4text" | "srid" | "srtext"]: { [lang_id in keyof LANG_IDS]: string };
440
271
  };
441
- "t": {
442
- [key in "t"]: { [lang_id in keyof LANG_IDS]: string };
443
- };
444
- "test": {
445
- [key in "id" | "parent"]: { [lang_id in keyof LANG_IDS]: string };
446
- };
447
272
  "tr1": {
448
273
  [key in "id" | "t1"]: { [lang_id in keyof LANG_IDS]: string };
449
274
  };
450
275
  "tr2": {
451
276
  [key in "id" | "t1" | "t2" | "tr1_id"]: { [lang_id in keyof LANG_IDS]: string };
452
277
  };
453
- "tt": {
454
- [key in "id" | "t1" | "t2"]: { [lang_id in keyof LANG_IDS]: string };
455
- };
456
- "tt1": {
457
- [key in "id" | "t1" | "t2"]: { [lang_id in keyof LANG_IDS]: string };
458
- };
459
- "tttt": {
460
- [key in "t"]: { [lang_id in keyof LANG_IDS]: string };
461
- };
462
- "usr": {
463
- [key in "added" | "age" | "id" | "is_active" | "msg" | "status"]: { [lang_id in keyof LANG_IDS]: string };
464
- };
465
278
  "uuid_text": {
466
279
  [key in "col1" | "col2" | "id" | "name"]: { [lang_id in keyof LANG_IDS]: string };
467
280
  };
@@ -471,8 +284,5 @@ export type I18N_DBO_CONFIG<LANG_IDS = { en: 1, fr: 1 }> = {
471
284
  "various": {
472
285
  [key in "added" | "h" | "id" | "jsn" | "name" | "tsv"]: { [lang_id in keyof LANG_IDS]: string };
473
286
  };
474
- "various_nested": {
475
- [key in "various_id"]: { [lang_id in keyof LANG_IDS]: string };
476
- };
477
287
  }>
478
288
  }
@@ -23,23 +23,22 @@
23
23
  },
24
24
  "../..": {
25
25
  "name": "prostgles-server",
26
- "version": "2.0.135",
26
+ "version": "2.0.139",
27
27
  "license": "MIT",
28
28
  "dependencies": {
29
- "@aws-sdk/client-s3": "^3.32.0",
30
- "aws-sdk": "^2.1002.0",
29
+ "@aws-sdk/client-s3": "^3.86.0",
30
+ "aws-sdk": "^2.1134.0",
31
31
  "bluebird": "^3.7.2",
32
32
  "file-type": "^16.5.3",
33
33
  "i": "^0.3.7",
34
34
  "npm": "^8.1.4",
35
35
  "pg-promise": "^10.9.5",
36
36
  "prostgles-types": "^1.5.123",
37
- "sharp": "^0.29.3"
37
+ "sharp": "^0.30.4"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@aws-sdk/types": "^3.34.0",
41
41
  "@types/bluebird": "^3.5.36",
42
- "@types/file-type": "^10.9.1",
43
42
  "@types/node": "^14.14.35",
44
43
  "typescript": "^3.9.7"
45
44
  }
@@ -1445,19 +1444,18 @@
1445
1444
  "prostgles-server": {
1446
1445
  "version": "file:../..",
1447
1446
  "requires": {
1448
- "@aws-sdk/client-s3": "^3.32.0",
1447
+ "@aws-sdk/client-s3": "^3.86.0",
1449
1448
  "@aws-sdk/types": "^3.34.0",
1450
1449
  "@types/bluebird": "^3.5.36",
1451
- "@types/file-type": "^10.9.1",
1452
1450
  "@types/node": "^14.14.35",
1453
- "aws-sdk": "^2.1002.0",
1451
+ "aws-sdk": "^2.1134.0",
1454
1452
  "bluebird": "^3.7.2",
1455
1453
  "file-type": "^16.5.3",
1456
1454
  "i": "^0.3.7",
1457
1455
  "npm": "^8.1.4",
1458
1456
  "pg-promise": "^10.9.5",
1459
1457
  "prostgles-types": "^1.5.123",
1460
- "sharp": "^0.29.3",
1458
+ "sharp": "^0.30.4",
1461
1459
  "typescript": "^3.9.7"
1462
1460
  }
1463
1461
  },
@@ -1 +0,0 @@
1
- This is a string
@@ -1 +0,0 @@
1
- This is a string
@@ -1 +0,0 @@
1
- This is a string
@@ -1 +0,0 @@
1
- This is a string