@carbonorm/carbonnode 6.0.13 → 6.0.17

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 (74) hide show
  1. package/dist/executors/SqlExecutor.d.ts +17 -0
  2. package/dist/index.cjs.js +413 -245
  3. package/dist/index.cjs.js.map +1 -1
  4. package/dist/index.esm.js +413 -245
  5. package/dist/index.esm.js.map +1 -1
  6. package/dist/utils/cacheManager.d.ts +2 -1
  7. package/dist/utils/logLevel.d.ts +3 -3
  8. package/dist/utils/logSql.d.ts +10 -1
  9. package/package.json +1 -1
  10. package/scripts/assets/handlebars/C6.ts.handlebars +1 -1
  11. package/src/__tests__/fixtures/sqlResponses/sqlAllowList.json +1 -1
  12. package/src/__tests__/httpExecutor.multiRowUpsert.test.ts +50 -0
  13. package/src/__tests__/logSql.test.ts +54 -2
  14. package/src/__tests__/sakila-db/C6.js +1 -1
  15. package/src/__tests__/sakila-db/C6.mysqldump.json +1 -1
  16. package/src/__tests__/sakila-db/C6.mysqldump.sql +1 -1
  17. package/src/__tests__/sakila-db/C6.sqlAllowList.json +59 -70
  18. package/src/__tests__/sakila-db/C6.ts +2 -2
  19. package/src/__tests__/sakila-db/sqlResponses/C6.actor.post.json +3 -3
  20. package/src/__tests__/sakila-db/sqlResponses/C6.actor.post.latest.json +3 -3
  21. package/src/__tests__/sakila-db/sqlResponses/C6.actor.put.json +1 -1
  22. package/src/__tests__/sakila-db/sqlResponses/C6.actor.put.lookup.json +3 -3
  23. package/src/__tests__/sakila-db/sqlResponses/C6.address.post.json +5 -5
  24. package/src/__tests__/sakila-db/sqlResponses/C6.address.post.latest.json +5 -5
  25. package/src/__tests__/sakila-db/sqlResponses/C6.address.put.json +1 -1
  26. package/src/__tests__/sakila-db/sqlResponses/C6.address.put.lookup.json +5 -5
  27. package/src/__tests__/sakila-db/sqlResponses/C6.category.post.json +2 -2
  28. package/src/__tests__/sakila-db/sqlResponses/C6.category.post.latest.json +2 -2
  29. package/src/__tests__/sakila-db/sqlResponses/C6.category.put.json +1 -1
  30. package/src/__tests__/sakila-db/sqlResponses/C6.category.put.lookup.json +2 -2
  31. package/src/__tests__/sakila-db/sqlResponses/C6.city.post.json +2 -2
  32. package/src/__tests__/sakila-db/sqlResponses/C6.city.post.latest.json +2 -2
  33. package/src/__tests__/sakila-db/sqlResponses/C6.city.put.json +1 -1
  34. package/src/__tests__/sakila-db/sqlResponses/C6.city.put.lookup.json +2 -2
  35. package/src/__tests__/sakila-db/sqlResponses/C6.country.post.json +2 -2
  36. package/src/__tests__/sakila-db/sqlResponses/C6.country.post.latest.json +2 -2
  37. package/src/__tests__/sakila-db/sqlResponses/C6.country.put.json +1 -1
  38. package/src/__tests__/sakila-db/sqlResponses/C6.country.put.lookup.json +2 -2
  39. package/src/__tests__/sakila-db/sqlResponses/C6.customer.post.json +5 -5
  40. package/src/__tests__/sakila-db/sqlResponses/C6.customer.post.latest.json +5 -5
  41. package/src/__tests__/sakila-db/sqlResponses/C6.customer.put.json +1 -1
  42. package/src/__tests__/sakila-db/sqlResponses/C6.customer.put.lookup.json +5 -5
  43. package/src/__tests__/sakila-db/sqlResponses/C6.film.post.json +2 -2
  44. package/src/__tests__/sakila-db/sqlResponses/C6.film.post.latest.json +2 -2
  45. package/src/__tests__/sakila-db/sqlResponses/C6.film.put.json +1 -1
  46. package/src/__tests__/sakila-db/sqlResponses/C6.film.put.lookup.json +2 -2
  47. package/src/__tests__/sakila-db/sqlResponses/C6.inventory.post.json +1 -1
  48. package/src/__tests__/sakila-db/sqlResponses/C6.inventory.post.latest.json +1 -1
  49. package/src/__tests__/sakila-db/sqlResponses/C6.inventory.put.json +1 -1
  50. package/src/__tests__/sakila-db/sqlResponses/C6.inventory.put.lookup.json +1 -1
  51. package/src/__tests__/sakila-db/sqlResponses/C6.language.post.json +2 -2
  52. package/src/__tests__/sakila-db/sqlResponses/C6.language.post.latest.json +2 -2
  53. package/src/__tests__/sakila-db/sqlResponses/C6.language.put.json +1 -1
  54. package/src/__tests__/sakila-db/sqlResponses/C6.language.put.lookup.json +2 -2
  55. package/src/__tests__/sakila-db/sqlResponses/C6.payment.post.json +2 -2
  56. package/src/__tests__/sakila-db/sqlResponses/C6.payment.post.latest.json +2 -2
  57. package/src/__tests__/sakila-db/sqlResponses/C6.payment.put.lookup.json +2 -2
  58. package/src/__tests__/sakila-db/sqlResponses/C6.rental.join.json +10 -10
  59. package/src/__tests__/sakila-db/sqlResponses/C6.rental.post.json +3 -3
  60. package/src/__tests__/sakila-db/sqlResponses/C6.rental.post.latest.json +3 -3
  61. package/src/__tests__/sakila-db/sqlResponses/C6.rental.put.json +1 -1
  62. package/src/__tests__/sakila-db/sqlResponses/C6.rental.put.lookup.json +3 -3
  63. package/src/__tests__/sqlAllowList.test.ts +100 -0
  64. package/src/__tests__/sqlBuilders.test.ts +3 -4
  65. package/src/executors/HttpExecutor.ts +7 -2
  66. package/src/executors/SqlExecutor.ts +108 -7
  67. package/src/orm/queries/DeleteQueryBuilder.ts +0 -4
  68. package/src/orm/queries/PostQueryBuilder.ts +0 -4
  69. package/src/orm/queries/SelectQueryBuilder.ts +0 -4
  70. package/src/orm/queries/UpdateQueryBuilder.ts +0 -4
  71. package/src/utils/cacheManager.ts +17 -9
  72. package/src/utils/logLevel.ts +3 -4
  73. package/src/utils/logSql.ts +51 -6
  74. package/src/utils/sqlAllowList.ts +111 -9
@@ -717,4 +717,4 @@ CREATE TABLE `store` (
717
717
  /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
718
718
  /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
719
719
 
720
- -- Dump completed on 2026-02-08 19:32:57
720
+ -- Dump completed on 2026-02-12 19:14:05
@@ -10,76 +10,65 @@
10
10
  "DELETE `language` FROM `language` WHERE (language.language_id) = ?",
11
11
  "DELETE `payment` FROM `payment` WHERE (payment.payment_id) = ?",
12
12
  "DELETE `rental` FROM `rental` WHERE (rental.rental_id) = ?",
13
- "INSERT INTO `actor` ( `first_name`, `last_name`, `last_update` ) VALUES (?, ?, ?)",
14
- "INSERT INTO `address` ( `address`, `address2`, `district`, `city_id`, `postal_code`, `phone`, `location`, `last_update` ) VALUES (?, ?, ?, ?, ?, ?, ST_GeomFromText('POINT(0 0)'), ?)",
15
- "INSERT INTO `category` ( `name`, `last_update` ) VALUES (?, ?)",
16
- "INSERT INTO `city` ( `city`, `country_id`, `last_update` ) VALUES (?, ?, ?)",
17
- "INSERT INTO `country` ( `country`, `last_update` ) VALUES (?, ?)",
18
- "INSERT INTO `customer` ( `store_id`, `first_name`, `last_name`, `email`, `address_id`, `active`, `create_date`, `last_update` ) VALUES (?, ?, ?, ?, ?, ?, ?, ?)",
19
- "INSERT INTO `film` ( `title`, `release_year`, `language_id`, `original_language_id`, `rental_duration`, `rental_rate`, `length`, `replacement_cost`, `rating`, `special_features`, `last_update` ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
20
- "INSERT INTO `inventory` ( `film_id`, `store_id`, `last_update` ) VALUES (?, ?, ?)",
21
- "INSERT INTO `language` ( `name`, `last_update` ) VALUES (?, ?)",
22
- "INSERT INTO `payment` ( `customer_id`, `staff_id`, `rental_id`, `amount`, `payment_date`, `last_update` ) VALUES (?, ?, ?, ?, ?, ?)",
23
- "INSERT INTO `rental` ( `rental_date`, `inventory_id`, `customer_id`, `return_date`, `staff_id`, `last_update` ) VALUES (?, ?, ?, ?, ?, ?)",
24
- "SELECT * FROM `actor` INNER JOIN `film_actor` AS `film_actor_ref` ON ((film_actor_ref.actor_id) = actor.actor_id) LIMIT 1",
25
- "SELECT * FROM `actor` LIMIT 1",
26
- "SELECT * FROM `actor` ORDER BY actor.actor_id DESC LIMIT 1",
27
- "SELECT * FROM `actor` WHERE (actor.actor_id) = ? LIMIT 100",
28
- "SELECT * FROM `address` INNER JOIN `city` AS `city_ref` ON ((city_ref.city_id) = address.city_id) LIMIT 1",
29
- "SELECT * FROM `address` LIMIT 1",
30
- "SELECT * FROM `address` LIMIT 25",
31
- "SELECT * FROM `address` ORDER BY address.address_id DESC LIMIT 1",
32
- "SELECT * FROM `address` WHERE (address.address_id) = ? LIMIT 100",
33
- "SELECT * FROM `category` INNER JOIN `film_category` AS `film_category_ref` ON ((film_category_ref.category_id) = category.category_id) LIMIT 1",
34
- "SELECT * FROM `category` LIMIT 1",
35
- "SELECT * FROM `category` ORDER BY category.category_id DESC LIMIT 1",
36
- "SELECT * FROM `category` WHERE (category.category_id) = ? LIMIT 100",
37
- "SELECT * FROM `city` INNER JOIN `country` AS `country_ref` ON ((country_ref.country_id) = city.country_id) LIMIT 1",
38
- "SELECT * FROM `city` LIMIT 1",
39
- "SELECT * FROM `city` LIMIT 25",
40
- "SELECT * FROM `city` ORDER BY city.city_id DESC LIMIT 1",
41
- "SELECT * FROM `city` WHERE (city.city_id) = ? LIMIT 100",
42
- "SELECT * FROM `country` INNER JOIN `city` AS `city_ref` ON ((city_ref.country_id) = country.country_id) LIMIT 1",
43
- "SELECT * FROM `country` LIMIT 1",
44
- "SELECT * FROM `country` LIMIT 25",
45
- "SELECT * FROM `country` ORDER BY country.country_id DESC LIMIT 1",
46
- "SELECT * FROM `country` WHERE (country.country_id) = ? LIMIT 100",
47
- "SELECT * FROM `customer` INNER JOIN `address` AS `address_ref` ON ((address_ref.address_id) = customer.address_id) LIMIT 1",
48
- "SELECT * FROM `customer` LIMIT 1",
49
- "SELECT * FROM `customer` LIMIT 25",
50
- "SELECT * FROM `customer` ORDER BY customer.customer_id DESC LIMIT 1",
51
- "SELECT * FROM `customer` WHERE (customer.customer_id) = ? LIMIT 100",
52
- "SELECT * FROM `film` INNER JOIN `language` AS `language_ref` ON ((language_ref.language_id) = film.language_id) LIMIT 1",
53
- "SELECT * FROM `film` LIMIT 1",
54
- "SELECT * FROM `film` LIMIT 25",
55
- "SELECT * FROM `film` ORDER BY film.film_id DESC LIMIT 1",
56
- "SELECT * FROM `film` WHERE (film.film_id) = ? LIMIT 100",
57
- "SELECT * FROM `inventory` INNER JOIN `film` AS `film_ref` ON ((film_ref.film_id) = inventory.film_id) LIMIT 1",
58
- "SELECT * FROM `inventory` LIMIT 1",
59
- "SELECT * FROM `inventory` LIMIT 25",
60
- "SELECT * FROM `inventory` ORDER BY inventory.inventory_id DESC LIMIT 1",
61
- "SELECT * FROM `inventory` WHERE (inventory.inventory_id) = ? LIMIT 100",
62
- "SELECT * FROM `language` INNER JOIN `film` AS `film_ref` ON ((film_ref.language_id) = language.language_id) LIMIT 1",
63
- "SELECT * FROM `language` LIMIT 1",
64
- "SELECT * FROM `language` LIMIT 25",
65
- "SELECT * FROM `language` ORDER BY language.language_id DESC LIMIT 1",
66
- "SELECT * FROM `language` WHERE (language.language_id) = ? LIMIT 100",
67
- "SELECT * FROM `payment` INNER JOIN `customer` AS `customer_ref` ON ((customer_ref.customer_id) = payment.customer_id) LIMIT 1",
68
- "SELECT * FROM `payment` LIMIT 1",
69
- "SELECT * FROM `payment` LIMIT 25",
70
- "SELECT * FROM `payment` ORDER BY payment.payment_id DESC LIMIT 1",
71
- "SELECT * FROM `payment` WHERE (payment.payment_id) = ? LIMIT 100",
72
- "SELECT * FROM `rental` INNER JOIN `customer` AS `customer_ref` ON ((customer_ref.customer_id) = rental.customer_id) LIMIT 1",
73
- "SELECT * FROM `rental` LIMIT 1",
74
- "SELECT * FROM `rental` LIMIT 25",
75
- "SELECT * FROM `rental` ORDER BY rental.rental_id DESC LIMIT 1",
76
- "SELECT * FROM `rental` WHERE (rental.rental_id) = ? LIMIT 100",
77
- "SELECT * FROM `staff` INNER JOIN `address` AS `address_ref` ON ((address_ref.address_id) = staff.address_id) LIMIT 1",
78
- "SELECT * FROM `staff` LIMIT 1",
79
- "SELECT * FROM `staff` LIMIT 25",
80
- "SELECT * FROM `store` INNER JOIN `address` AS `address_ref` ON ((address_ref.address_id) = store.address_id) LIMIT 1",
81
- "SELECT * FROM `store` LIMIT 1",
82
- "SELECT * FROM `store` LIMIT 25",
13
+ "INSERT INTO `actor` ( `first_name`, `last_name`, `last_update` ) VALUES (? ×3) ×*",
14
+ "INSERT INTO `address` ( `address`, `address2`, `district`, `city_id`, `postal_code`, `phone`, `location`, `last_update` ) VALUES (?, ?, ?, ?, ?, ?, ST_GEOMFROMTEXT('POINT(0 0)'), ?)",
15
+ "INSERT INTO `category` ( `name`, `last_update` ) VALUES (? ×2) ×*",
16
+ "INSERT INTO `city` ( `city`, `country_id`, `last_update` ) VALUES (? ×3) ×*",
17
+ "INSERT INTO `country` ( `country`, `last_update` ) VALUES (? ×2) ×*",
18
+ "INSERT INTO `customer` ( `store_id`, `first_name`, `last_name`, `email`, `address_id`, `active`, `create_date`, `last_update` ) VALUES (? ×8) ×*",
19
+ "INSERT INTO `film` ( `title`, `release_year`, `language_id`, `original_language_id`, `rental_duration`, `rental_rate`, `length`, `replacement_cost`, `rating`, `special_features`, `last_update` ) VALUES (? ×11) ×*",
20
+ "INSERT INTO `inventory` ( `film_id`, `store_id`, `last_update` ) VALUES (? ×3) ×*",
21
+ "INSERT INTO `language` ( `name`, `last_update` ) VALUES (? ×2) ×*",
22
+ "INSERT INTO `payment` ( `customer_id`, `staff_id`, `rental_id`, `amount`, `payment_date`, `last_update` ) VALUES (? ×6) ×*",
23
+ "INSERT INTO `rental` ( `rental_date`, `inventory_id`, `customer_id`, `return_date`, `staff_id`, `last_update` ) VALUES (? ×6) ×*",
24
+ "SELECT * FROM `actor` INNER JOIN `film_actor` AS `film_actor_ref` ON ((film_actor_ref.actor_id) = actor.actor_id) LIMIT ?",
25
+ "SELECT * FROM `actor` LIMIT ?",
26
+ "SELECT * FROM `actor` ORDER BY actor.actor_id DESC LIMIT ?",
27
+ "SELECT * FROM `actor` WHERE (actor.actor_id) = ? LIMIT ?",
28
+ "SELECT * FROM `address` INNER JOIN `city` AS `city_ref` ON ((city_ref.city_id) = address.city_id) LIMIT ?",
29
+ "SELECT * FROM `address` LIMIT ?",
30
+ "SELECT * FROM `address` ORDER BY address.address_id DESC LIMIT ?",
31
+ "SELECT * FROM `address` WHERE (address.address_id) = ? LIMIT ?",
32
+ "SELECT * FROM `category` INNER JOIN `film_category` AS `film_category_ref` ON ((film_category_ref.category_id) = category.category_id) LIMIT ?",
33
+ "SELECT * FROM `category` LIMIT ?",
34
+ "SELECT * FROM `category` ORDER BY category.category_id DESC LIMIT ?",
35
+ "SELECT * FROM `category` WHERE (category.category_id) = ? LIMIT ?",
36
+ "SELECT * FROM `city` INNER JOIN `country` AS `country_ref` ON ((country_ref.country_id) = city.country_id) LIMIT ?",
37
+ "SELECT * FROM `city` LIMIT ?",
38
+ "SELECT * FROM `city` ORDER BY city.city_id DESC LIMIT ?",
39
+ "SELECT * FROM `city` WHERE (city.city_id) = ? LIMIT ?",
40
+ "SELECT * FROM `country` INNER JOIN `city` AS `city_ref` ON ((city_ref.country_id) = country.country_id) LIMIT ?",
41
+ "SELECT * FROM `country` LIMIT ?",
42
+ "SELECT * FROM `country` ORDER BY country.country_id DESC LIMIT ?",
43
+ "SELECT * FROM `country` WHERE (country.country_id) = ? LIMIT ?",
44
+ "SELECT * FROM `customer` INNER JOIN `address` AS `address_ref` ON ((address_ref.address_id) = customer.address_id) LIMIT ?",
45
+ "SELECT * FROM `customer` LIMIT ?",
46
+ "SELECT * FROM `customer` ORDER BY customer.customer_id DESC LIMIT ?",
47
+ "SELECT * FROM `customer` WHERE (customer.customer_id) = ? LIMIT ?",
48
+ "SELECT * FROM `film` INNER JOIN `language` AS `language_ref` ON ((language_ref.language_id) = film.language_id) LIMIT ?",
49
+ "SELECT * FROM `film` LIMIT ?",
50
+ "SELECT * FROM `film` ORDER BY film.film_id DESC LIMIT ?",
51
+ "SELECT * FROM `film` WHERE (film.film_id) = ? LIMIT ?",
52
+ "SELECT * FROM `inventory` INNER JOIN `film` AS `film_ref` ON ((film_ref.film_id) = inventory.film_id) LIMIT ?",
53
+ "SELECT * FROM `inventory` LIMIT ?",
54
+ "SELECT * FROM `inventory` ORDER BY inventory.inventory_id DESC LIMIT ?",
55
+ "SELECT * FROM `inventory` WHERE (inventory.inventory_id) = ? LIMIT ?",
56
+ "SELECT * FROM `language` INNER JOIN `film` AS `film_ref` ON ((film_ref.language_id) = language.language_id) LIMIT ?",
57
+ "SELECT * FROM `language` LIMIT ?",
58
+ "SELECT * FROM `language` ORDER BY language.language_id DESC LIMIT ?",
59
+ "SELECT * FROM `language` WHERE (language.language_id) = ? LIMIT ?",
60
+ "SELECT * FROM `payment` INNER JOIN `customer` AS `customer_ref` ON ((customer_ref.customer_id) = payment.customer_id) LIMIT ?",
61
+ "SELECT * FROM `payment` LIMIT ?",
62
+ "SELECT * FROM `payment` ORDER BY payment.payment_id DESC LIMIT ?",
63
+ "SELECT * FROM `payment` WHERE (payment.payment_id) = ? LIMIT ?",
64
+ "SELECT * FROM `rental` INNER JOIN `customer` AS `customer_ref` ON ((customer_ref.customer_id) = rental.customer_id) LIMIT ?",
65
+ "SELECT * FROM `rental` LIMIT ?",
66
+ "SELECT * FROM `rental` ORDER BY rental.rental_id DESC LIMIT ?",
67
+ "SELECT * FROM `rental` WHERE (rental.rental_id) = ? LIMIT ?",
68
+ "SELECT * FROM `staff` INNER JOIN `address` AS `address_ref` ON ((address_ref.address_id) = staff.address_id) LIMIT ?",
69
+ "SELECT * FROM `staff` LIMIT ?",
70
+ "SELECT * FROM `store` INNER JOIN `address` AS `address_ref` ON ((address_ref.address_id) = store.address_id) LIMIT ?",
71
+ "SELECT * FROM `store` LIMIT ?",
83
72
  "UPDATE `actor` SET `first_name` = ? WHERE (actor.actor_id) = ?",
84
73
  "UPDATE `address` SET `address` = ? WHERE (address.address_id) = ?",
85
74
  "UPDATE `category` SET `name` = ? WHERE (category.category_id) = ?",
@@ -2009,7 +2009,7 @@ export type RestTableInterfaces = iActor
2009
2009
 
2010
2010
  export const C6 : iC6Object<RestTableInterfaces> = {
2011
2011
  ...C6Constants,
2012
- C6VERSION: '6.0.13',
2012
+ C6VERSION: '6.0.17',
2013
2013
  IMPORT: async (tableName: string) : Promise<iDynamicApiImport> => {
2014
2014
 
2015
2015
  tableName = tableName.toLowerCase();
@@ -2044,7 +2044,7 @@ export const C6 : iC6Object<RestTableInterfaces> = {
2044
2044
  ...TABLES
2045
2045
  };
2046
2046
 
2047
- export type tStatefulApiData<T> = T[] | undefined | null;
2047
+ export type tStatefulApiData<T> = T[] | undefined;
2048
2048
 
2049
2049
  // this refers to the value types of the keys above, aka values in the state
2050
2050
  export interface iRestfulObjectArrayTypes {
@@ -5,9 +5,9 @@
5
5
  "sql": {
6
6
  "sql": "INSERT INTO `actor` (\n `first_name`, `last_name`, `last_update`\n ) VALUES\n (?, ?, ?)",
7
7
  "values": [
8
- "first_name_1770579179753",
9
- "last_name_1770579179753",
10
- "2026-02-08 19:32:59"
8
+ "first_name_1770923647798",
9
+ "last_name_1770923647798",
10
+ "2026-02-12 19:14:07"
11
11
  ]
12
12
  }
13
13
  }
@@ -2,9 +2,9 @@
2
2
  "rest": [
3
3
  {
4
4
  "actor_id": 201,
5
- "first_name": "first_name_1770579179753",
6
- "last_name": "last_name_1770579179753",
7
- "last_update": "2026-02-08T19:32:59.000Z"
5
+ "first_name": "first_name_1770923647798",
6
+ "last_name": "last_name_1770923647798",
7
+ "last_update": "2026-02-12T19:14:07.000Z"
8
8
  }
9
9
  ],
10
10
  "sql": {
@@ -5,7 +5,7 @@
5
5
  "sql": {
6
6
  "sql": "UPDATE `actor` SET `first_name` = ? WHERE (actor.actor_id) = ?",
7
7
  "values": [
8
- "first_name_updated_1770579179766",
8
+ "first_name_updated_1770923647808",
9
9
  201
10
10
  ]
11
11
  }
@@ -2,9 +2,9 @@
2
2
  "rest": [
3
3
  {
4
4
  "actor_id": 201,
5
- "first_name": "first_name_updated_1770579179766",
6
- "last_name": "last_name_1770579179753",
7
- "last_update": "2026-02-08T19:32:59.000Z"
5
+ "first_name": "first_name_updated_1770923647808",
6
+ "last_name": "last_name_1770923647798",
7
+ "last_update": "2026-02-12T19:14:07.000Z"
8
8
  }
9
9
  ],
10
10
  "sql": {
@@ -5,13 +5,13 @@
5
5
  "sql": {
6
6
  "sql": "INSERT INTO `address` (\n `address`, `address2`, `district`, `city_id`, `postal_code`, `phone`, `location`, `last_update`\n ) VALUES\n (?, ?, ?, ?, ?, ?, ST_GeomFromText('POINT(0 0)'), ?)",
7
7
  "values": [
8
- "address_1770579179807",
9
- "address2_1770579179808",
10
- "district_17705791798",
8
+ "address_1770923647832",
9
+ "address2_1770923647832",
10
+ "district_17709236478",
11
11
  1,
12
12
  "postal_cod",
13
- "phone_1770579179813",
14
- "2026-02-08 19:32:59"
13
+ "phone_1770923647839",
14
+ "2026-02-12 19:14:07"
15
15
  ]
16
16
  }
17
17
  }
@@ -2,17 +2,17 @@
2
2
  "rest": [
3
3
  {
4
4
  "address_id": 606,
5
- "address": "address_1770579179807",
6
- "address2": "address2_1770579179808",
7
- "district": "district_17705791798",
5
+ "address": "address_1770923647832",
6
+ "address2": "address2_1770923647832",
7
+ "district": "district_17709236478",
8
8
  "city_id": 1,
9
9
  "postal_code": "postal_cod",
10
- "phone": "phone_1770579179813",
10
+ "phone": "phone_1770923647839",
11
11
  "location": {
12
12
  "x": 0,
13
13
  "y": 0
14
14
  },
15
- "last_update": "2026-02-08T19:32:59.000Z"
15
+ "last_update": "2026-02-12T19:14:07.000Z"
16
16
  }
17
17
  ],
18
18
  "sql": {
@@ -5,7 +5,7 @@
5
5
  "sql": {
6
6
  "sql": "UPDATE `address` SET `address` = ? WHERE (address.address_id) = ?",
7
7
  "values": [
8
- "address_updated_1770579179818",
8
+ "address_updated_1770923647846",
9
9
  606
10
10
  ]
11
11
  }
@@ -2,17 +2,17 @@
2
2
  "rest": [
3
3
  {
4
4
  "address_id": 606,
5
- "address": "address_updated_1770579179818",
6
- "address2": "address2_1770579179808",
7
- "district": "district_17705791798",
5
+ "address": "address_updated_1770923647846",
6
+ "address2": "address2_1770923647832",
7
+ "district": "district_17709236478",
8
8
  "city_id": 1,
9
9
  "postal_code": "postal_cod",
10
- "phone": "phone_1770579179813",
10
+ "phone": "phone_1770923647839",
11
11
  "location": {
12
12
  "x": 0,
13
13
  "y": 0
14
14
  },
15
- "last_update": "2026-02-08T19:32:59.000Z"
15
+ "last_update": "2026-02-12T19:14:07.000Z"
16
16
  }
17
17
  ],
18
18
  "sql": {
@@ -5,8 +5,8 @@
5
5
  "sql": {
6
6
  "sql": "INSERT INTO `category` (\n `name`, `last_update`\n ) VALUES\n (?, ?)",
7
7
  "values": [
8
- "name_1770579179830",
9
- "2026-02-08 19:32:59"
8
+ "name_1770923647864",
9
+ "2026-02-12 19:14:07"
10
10
  ]
11
11
  }
12
12
  }
@@ -2,8 +2,8 @@
2
2
  "rest": [
3
3
  {
4
4
  "category_id": 17,
5
- "name": "name_1770579179830",
6
- "last_update": "2026-02-08T19:32:59.000Z"
5
+ "name": "name_1770923647864",
6
+ "last_update": "2026-02-12T19:14:07.000Z"
7
7
  }
8
8
  ],
9
9
  "sql": {
@@ -5,7 +5,7 @@
5
5
  "sql": {
6
6
  "sql": "UPDATE `category` SET `name` = ? WHERE (category.category_id) = ?",
7
7
  "values": [
8
- "name_updated_177057917983",
8
+ "name_updated_177092364787",
9
9
  17
10
10
  ]
11
11
  }
@@ -2,8 +2,8 @@
2
2
  "rest": [
3
3
  {
4
4
  "category_id": 17,
5
- "name": "name_updated_177057917983",
6
- "last_update": "2026-02-08T19:32:59.000Z"
5
+ "name": "name_updated_177092364787",
6
+ "last_update": "2026-02-12T19:14:07.000Z"
7
7
  }
8
8
  ],
9
9
  "sql": {
@@ -5,9 +5,9 @@
5
5
  "sql": {
6
6
  "sql": "INSERT INTO `city` (\n `city`, `country_id`, `last_update`\n ) VALUES\n (?, ?, ?)",
7
7
  "values": [
8
- "city_1770579179850",
8
+ "city_1770923647889",
9
9
  1,
10
- "2026-02-08 19:32:59"
10
+ "2026-02-12 19:14:07"
11
11
  ]
12
12
  }
13
13
  }
@@ -2,9 +2,9 @@
2
2
  "rest": [
3
3
  {
4
4
  "city_id": 601,
5
- "city": "city_1770579179850",
5
+ "city": "city_1770923647889",
6
6
  "country_id": 1,
7
- "last_update": "2026-02-08T19:32:59.000Z"
7
+ "last_update": "2026-02-12T19:14:07.000Z"
8
8
  }
9
9
  ],
10
10
  "sql": {
@@ -5,7 +5,7 @@
5
5
  "sql": {
6
6
  "sql": "UPDATE `city` SET `city` = ? WHERE (city.city_id) = ?",
7
7
  "values": [
8
- "city_updated_1770579179857",
8
+ "city_updated_1770923647898",
9
9
  601
10
10
  ]
11
11
  }
@@ -2,9 +2,9 @@
2
2
  "rest": [
3
3
  {
4
4
  "city_id": 601,
5
- "city": "city_updated_1770579179857",
5
+ "city": "city_updated_1770923647898",
6
6
  "country_id": 1,
7
- "last_update": "2026-02-08T19:32:59.000Z"
7
+ "last_update": "2026-02-12T19:14:07.000Z"
8
8
  }
9
9
  ],
10
10
  "sql": {
@@ -5,8 +5,8 @@
5
5
  "sql": {
6
6
  "sql": "INSERT INTO `country` (\n `country`, `last_update`\n ) VALUES\n (?, ?)",
7
7
  "values": [
8
- "country_1770579179872",
9
- "2026-02-08 19:32:59"
8
+ "country_1770923647925",
9
+ "2026-02-12 19:14:07"
10
10
  ]
11
11
  }
12
12
  }
@@ -2,8 +2,8 @@
2
2
  "rest": [
3
3
  {
4
4
  "country_id": 110,
5
- "country": "country_1770579179872",
6
- "last_update": "2026-02-08T19:32:59.000Z"
5
+ "country": "country_1770923647925",
6
+ "last_update": "2026-02-12T19:14:07.000Z"
7
7
  }
8
8
  ],
9
9
  "sql": {
@@ -5,7 +5,7 @@
5
5
  "sql": {
6
6
  "sql": "UPDATE `country` SET `country` = ? WHERE (country.country_id) = ?",
7
7
  "values": [
8
- "country_updated_1770579179883",
8
+ "country_updated_1770923647928",
9
9
  110
10
10
  ]
11
11
  }
@@ -2,8 +2,8 @@
2
2
  "rest": [
3
3
  {
4
4
  "country_id": 110,
5
- "country": "country_updated_1770579179883",
6
- "last_update": "2026-02-08T19:32:59.000Z"
5
+ "country": "country_updated_1770923647928",
6
+ "last_update": "2026-02-12T19:14:07.000Z"
7
7
  }
8
8
  ],
9
9
  "sql": {
@@ -6,13 +6,13 @@
6
6
  "sql": "INSERT INTO `customer` (\n `store_id`, `first_name`, `last_name`, `email`, `address_id`, `active`, `create_date`, `last_update`\n ) VALUES\n (?, ?, ?, ?, ?, ?, ?, ?)",
7
7
  "values": [
8
8
  1,
9
- "first_name_1770579179923",
10
- "last_name_1770579179923",
11
- "email_1770579179923",
9
+ "first_name_1770923647950",
10
+ "last_name_1770923647950",
11
+ "email_1770923647950",
12
12
  1,
13
13
  2,
14
- "2026-02-08 19:32:59",
15
- "2026-02-08 19:32:59"
14
+ "2026-02-12 19:14:07",
15
+ "2026-02-12 19:14:07"
16
16
  ]
17
17
  }
18
18
  }
@@ -3,13 +3,13 @@
3
3
  {
4
4
  "customer_id": 600,
5
5
  "store_id": 1,
6
- "first_name": "first_name_1770579179923",
7
- "last_name": "last_name_1770579179923",
8
- "email": "email_1770579179923",
6
+ "first_name": "first_name_1770923647950",
7
+ "last_name": "last_name_1770923647950",
8
+ "email": "email_1770923647950",
9
9
  "address_id": 1,
10
10
  "active": 2,
11
- "create_date": "2026-02-08T19:32:59.000Z",
12
- "last_update": "2026-02-08T19:32:59.000Z"
11
+ "create_date": "2026-02-12T19:14:07.000Z",
12
+ "last_update": "2026-02-12T19:14:07.000Z"
13
13
  }
14
14
  ],
15
15
  "sql": {
@@ -5,7 +5,7 @@
5
5
  "sql": {
6
6
  "sql": "UPDATE `customer` SET `first_name` = ? WHERE (customer.customer_id) = ?",
7
7
  "values": [
8
- "first_name_updated_1770579179934",
8
+ "first_name_updated_1770923647955",
9
9
  600
10
10
  ]
11
11
  }
@@ -3,13 +3,13 @@
3
3
  {
4
4
  "customer_id": 600,
5
5
  "store_id": 1,
6
- "first_name": "first_name_updated_1770579179934",
7
- "last_name": "last_name_1770579179923",
8
- "email": "email_1770579179923",
6
+ "first_name": "first_name_updated_1770923647955",
7
+ "last_name": "last_name_1770923647950",
8
+ "email": "email_1770923647950",
9
9
  "address_id": 1,
10
10
  "active": 2,
11
- "create_date": "2026-02-08T19:32:59.000Z",
12
- "last_update": "2026-02-08T19:32:59.000Z"
11
+ "create_date": "2026-02-12T19:14:07.000Z",
12
+ "last_update": "2026-02-12T19:14:07.000Z"
13
13
  }
14
14
  ],
15
15
  "sql": {
@@ -5,7 +5,7 @@
5
5
  "sql": {
6
6
  "sql": "INSERT INTO `film` (\n `title`, `release_year`, `language_id`, `original_language_id`, `rental_duration`, `rental_rate`, `length`, `replacement_cost`, `rating`, `special_features`, `last_update`\n ) VALUES\n (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
7
7
  "values": [
8
- "title_1770579179963",
8
+ "title_1770923647972",
9
9
  2026,
10
10
  2,
11
11
  1,
@@ -15,7 +15,7 @@
15
15
  1,
16
16
  "PG",
17
17
  "Deleted Scenes,Behind the Scenes",
18
- "2026-02-08 19:32:59"
18
+ "2026-02-12 19:14:07"
19
19
  ]
20
20
  }
21
21
  }
@@ -2,7 +2,7 @@
2
2
  "rest": [
3
3
  {
4
4
  "film_id": 1001,
5
- "title": "title_1770579179963",
5
+ "title": "title_1770923647972",
6
6
  "description": null,
7
7
  "release_year": 2026,
8
8
  "language_id": 2,
@@ -13,7 +13,7 @@
13
13
  "replacement_cost": "1.00",
14
14
  "rating": "PG",
15
15
  "special_features": "Deleted Scenes,Behind the Scenes",
16
- "last_update": "2026-02-08T19:32:59.000Z"
16
+ "last_update": "2026-02-12T19:14:07.000Z"
17
17
  }
18
18
  ],
19
19
  "sql": {
@@ -5,7 +5,7 @@
5
5
  "sql": {
6
6
  "sql": "UPDATE `film` SET `title` = ? WHERE (film.film_id) = ?",
7
7
  "values": [
8
- "title_updated_1770579179973",
8
+ "title_updated_1770923647980",
9
9
  1001
10
10
  ]
11
11
  }
@@ -2,7 +2,7 @@
2
2
  "rest": [
3
3
  {
4
4
  "film_id": 1001,
5
- "title": "title_updated_1770579179973",
5
+ "title": "title_updated_1770923647980",
6
6
  "description": null,
7
7
  "release_year": 2026,
8
8
  "language_id": 2,
@@ -13,7 +13,7 @@
13
13
  "replacement_cost": "1.00",
14
14
  "rating": "PG",
15
15
  "special_features": "Deleted Scenes,Behind the Scenes",
16
- "last_update": "2026-02-08T19:32:59.000Z"
16
+ "last_update": "2026-02-12T19:14:07.000Z"
17
17
  }
18
18
  ],
19
19
  "sql": {
@@ -7,7 +7,7 @@
7
7
  "values": [
8
8
  6,
9
9
  1,
10
- "2026-02-08 19:33:00"
10
+ "2026-02-12 19:14:08"
11
11
  ]
12
12
  }
13
13
  }
@@ -4,7 +4,7 @@
4
4
  "inventory_id": 4582,
5
5
  "film_id": 6,
6
6
  "store_id": 1,
7
- "last_update": "2026-02-08T19:33:00.000Z"
7
+ "last_update": "2026-02-12T19:14:08.000Z"
8
8
  }
9
9
  ],
10
10
  "sql": {
@@ -5,7 +5,7 @@
5
5
  "sql": {
6
6
  "sql": "UPDATE `inventory` SET `last_update` = ? WHERE (inventory.inventory_id) = ?",
7
7
  "values": [
8
- "2026-02-08 19:33:00",
8
+ "2026-02-12 19:14:08",
9
9
  4582
10
10
  ]
11
11
  }
@@ -4,7 +4,7 @@
4
4
  "inventory_id": 4582,
5
5
  "film_id": 6,
6
6
  "store_id": 1,
7
- "last_update": "2026-02-08T19:33:00.000Z"
7
+ "last_update": "2026-02-12T19:14:08.000Z"
8
8
  }
9
9
  ],
10
10
  "sql": {