@powersync/service-core 0.2.2 → 0.4.0

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 (262) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/dist/api/diagnostics.js +2 -2
  3. package/dist/api/diagnostics.js.map +1 -1
  4. package/dist/api/schema.js.map +1 -1
  5. package/dist/auth/CachedKeyCollector.js.map +1 -1
  6. package/dist/auth/JwtPayload.d.ts +6 -2
  7. package/dist/auth/KeySpec.js.map +1 -1
  8. package/dist/auth/KeyStore.js +3 -9
  9. package/dist/auth/KeyStore.js.map +1 -1
  10. package/dist/auth/LeakyBucket.js.map +1 -1
  11. package/dist/auth/RemoteJWKSCollector.js.map +1 -1
  12. package/dist/auth/SupabaseKeyCollector.js.map +1 -1
  13. package/dist/db/mongo.js.map +1 -1
  14. package/dist/entry/cli-entry.js +2 -2
  15. package/dist/entry/cli-entry.js.map +1 -1
  16. package/dist/entry/commands/config-command.js.map +1 -1
  17. package/dist/entry/commands/migrate-action.js +12 -4
  18. package/dist/entry/commands/migrate-action.js.map +1 -1
  19. package/dist/entry/commands/start-action.js.map +1 -1
  20. package/dist/entry/commands/teardown-action.js.map +1 -1
  21. package/dist/index.d.ts +3 -2
  22. package/dist/index.js +4 -2
  23. package/dist/index.js.map +1 -1
  24. package/dist/locks/LockManager.d.ts +10 -0
  25. package/dist/locks/LockManager.js +7 -0
  26. package/dist/locks/LockManager.js.map +1 -0
  27. package/dist/locks/MongoLocks.d.ts +36 -0
  28. package/dist/locks/MongoLocks.js +81 -0
  29. package/dist/locks/MongoLocks.js.map +1 -0
  30. package/dist/locks/locks-index.d.ts +2 -0
  31. package/dist/locks/locks-index.js +3 -0
  32. package/dist/locks/locks-index.js.map +1 -0
  33. package/dist/metrics/Metrics.js +6 -6
  34. package/dist/metrics/Metrics.js.map +1 -1
  35. package/dist/migrations/db/migrations/1684951997326-init.js.map +1 -1
  36. package/dist/migrations/db/migrations/1702295701188-sync-rule-state.js.map +1 -1
  37. package/dist/migrations/db/migrations/1711543888062-write-checkpoint-index.js.map +1 -1
  38. package/dist/migrations/definitions.d.ts +18 -0
  39. package/dist/migrations/definitions.js +6 -0
  40. package/dist/migrations/definitions.js.map +1 -0
  41. package/dist/migrations/executor.d.ts +16 -0
  42. package/dist/migrations/executor.js +64 -0
  43. package/dist/migrations/executor.js.map +1 -0
  44. package/dist/migrations/migrations-index.d.ts +3 -0
  45. package/dist/migrations/migrations-index.js +4 -0
  46. package/dist/migrations/migrations-index.js.map +1 -0
  47. package/dist/migrations/migrations.d.ts +1 -1
  48. package/dist/migrations/migrations.js +12 -8
  49. package/dist/migrations/migrations.js.map +1 -1
  50. package/dist/migrations/store/migration-store.d.ts +11 -0
  51. package/dist/migrations/store/migration-store.js +46 -0
  52. package/dist/migrations/store/migration-store.js.map +1 -0
  53. package/dist/replication/ErrorRateLimiter.js.map +1 -1
  54. package/dist/replication/PgRelation.js.map +1 -1
  55. package/dist/replication/WalConnection.js.map +1 -1
  56. package/dist/replication/WalStream.d.ts +0 -1
  57. package/dist/replication/WalStream.js +21 -25
  58. package/dist/replication/WalStream.js.map +1 -1
  59. package/dist/replication/WalStreamManager.js +12 -13
  60. package/dist/replication/WalStreamManager.js.map +1 -1
  61. package/dist/replication/WalStreamRunner.js +8 -8
  62. package/dist/replication/WalStreamRunner.js.map +1 -1
  63. package/dist/replication/util.js.map +1 -1
  64. package/dist/routes/auth.d.ts +8 -10
  65. package/dist/routes/auth.js.map +1 -1
  66. package/dist/routes/endpoints/admin.d.ts +1011 -0
  67. package/dist/routes/{admin.js → endpoints/admin.js} +33 -18
  68. package/dist/routes/endpoints/admin.js.map +1 -0
  69. package/dist/routes/endpoints/checkpointing.d.ts +76 -0
  70. package/dist/routes/endpoints/checkpointing.js +36 -0
  71. package/dist/routes/endpoints/checkpointing.js.map +1 -0
  72. package/dist/routes/endpoints/dev.d.ts +312 -0
  73. package/dist/routes/{dev.js → endpoints/dev.js} +25 -16
  74. package/dist/routes/endpoints/dev.js.map +1 -0
  75. package/dist/routes/endpoints/route-endpoints-index.d.ts +6 -0
  76. package/dist/routes/endpoints/route-endpoints-index.js +7 -0
  77. package/dist/routes/endpoints/route-endpoints-index.js.map +1 -0
  78. package/dist/routes/endpoints/socket-route.d.ts +2 -0
  79. package/dist/routes/{socket-route.js → endpoints/socket-route.js} +12 -12
  80. package/dist/routes/endpoints/socket-route.js.map +1 -0
  81. package/dist/routes/endpoints/sync-rules.d.ts +174 -0
  82. package/dist/routes/{sync-rules.js → endpoints/sync-rules.js} +44 -24
  83. package/dist/routes/endpoints/sync-rules.js.map +1 -0
  84. package/dist/routes/endpoints/sync-stream.d.ts +132 -0
  85. package/dist/routes/{sync-stream.js → endpoints/sync-stream.js} +28 -19
  86. package/dist/routes/endpoints/sync-stream.js.map +1 -0
  87. package/dist/routes/hooks.d.ts +10 -0
  88. package/dist/routes/hooks.js +31 -0
  89. package/dist/routes/hooks.js.map +1 -0
  90. package/dist/routes/route-register.d.ts +10 -0
  91. package/dist/routes/route-register.js +87 -0
  92. package/dist/routes/route-register.js.map +1 -0
  93. package/dist/routes/router.d.ts +16 -4
  94. package/dist/routes/router.js +6 -1
  95. package/dist/routes/router.js.map +1 -1
  96. package/dist/routes/routes-index.d.ts +5 -3
  97. package/dist/routes/routes-index.js +5 -3
  98. package/dist/routes/routes-index.js.map +1 -1
  99. package/dist/runner/teardown.js +9 -9
  100. package/dist/runner/teardown.js.map +1 -1
  101. package/dist/storage/BucketStorage.d.ts +3 -0
  102. package/dist/storage/BucketStorage.js.map +1 -1
  103. package/dist/storage/ChecksumCache.js.map +1 -1
  104. package/dist/storage/MongoBucketStorage.js +5 -5
  105. package/dist/storage/MongoBucketStorage.js.map +1 -1
  106. package/dist/storage/SourceTable.js.map +1 -1
  107. package/dist/storage/mongo/MongoBucketBatch.js +23 -18
  108. package/dist/storage/mongo/MongoBucketBatch.js.map +1 -1
  109. package/dist/storage/mongo/MongoIdSequence.js.map +1 -1
  110. package/dist/storage/mongo/MongoSyncBucketStorage.js.map +1 -1
  111. package/dist/storage/mongo/MongoSyncRulesLock.js +3 -3
  112. package/dist/storage/mongo/MongoSyncRulesLock.js.map +1 -1
  113. package/dist/storage/mongo/OperationBatch.js.map +1 -1
  114. package/dist/storage/mongo/PersistedBatch.js +2 -2
  115. package/dist/storage/mongo/PersistedBatch.js.map +1 -1
  116. package/dist/storage/mongo/db.d.ts +2 -2
  117. package/dist/storage/mongo/db.js.map +1 -1
  118. package/dist/storage/mongo/util.js.map +1 -1
  119. package/dist/sync/BroadcastIterable.js.map +1 -1
  120. package/dist/sync/LastValueSink.js.map +1 -1
  121. package/dist/sync/merge.js.map +1 -1
  122. package/dist/sync/safeRace.js.map +1 -1
  123. package/dist/sync/sync.d.ts +2 -2
  124. package/dist/sync/sync.js +5 -5
  125. package/dist/sync/sync.js.map +1 -1
  126. package/dist/sync/util.js.map +1 -1
  127. package/dist/system/CorePowerSyncSystem.d.ts +12 -7
  128. package/dist/system/CorePowerSyncSystem.js +26 -2
  129. package/dist/system/CorePowerSyncSystem.js.map +1 -1
  130. package/dist/system/system-index.d.ts +1 -0
  131. package/dist/system/system-index.js +2 -0
  132. package/dist/system/system-index.js.map +1 -0
  133. package/dist/util/Mutex.js.map +1 -1
  134. package/dist/util/PgManager.js.map +1 -1
  135. package/dist/util/alerting.d.ts +0 -2
  136. package/dist/util/alerting.js +0 -6
  137. package/dist/util/alerting.js.map +1 -1
  138. package/dist/util/config/collectors/config-collector.js +3 -3
  139. package/dist/util/config/collectors/config-collector.js.map +1 -1
  140. package/dist/util/config/collectors/impl/base64-config-collector.js.map +1 -1
  141. package/dist/util/config/collectors/impl/filesystem-config-collector.js +7 -5
  142. package/dist/util/config/collectors/impl/filesystem-config-collector.js.map +1 -1
  143. package/dist/util/config/compound-config-collector.js +4 -4
  144. package/dist/util/config/compound-config-collector.js.map +1 -1
  145. package/dist/util/config/sync-rules/impl/base64-sync-rules-collector.js.map +1 -1
  146. package/dist/util/config/sync-rules/impl/filesystem-sync-rules-collector.js.map +1 -1
  147. package/dist/util/config/sync-rules/impl/inline-sync-rules-collector.js.map +1 -1
  148. package/dist/util/config.js.map +1 -1
  149. package/dist/util/env.d.ts +1 -2
  150. package/dist/util/env.js +3 -2
  151. package/dist/util/env.js.map +1 -1
  152. package/dist/util/memory-tracking.js +2 -2
  153. package/dist/util/memory-tracking.js.map +1 -1
  154. package/dist/util/migration_lib.js.map +1 -1
  155. package/dist/util/pgwire_utils.js +2 -2
  156. package/dist/util/pgwire_utils.js.map +1 -1
  157. package/dist/util/populate_test_data.js.map +1 -1
  158. package/dist/util/secs.js.map +1 -1
  159. package/dist/util/utils.js +4 -4
  160. package/dist/util/utils.js.map +1 -1
  161. package/package.json +13 -10
  162. package/src/api/diagnostics.ts +5 -5
  163. package/src/api/schema.ts +1 -1
  164. package/src/auth/JwtPayload.ts +6 -2
  165. package/src/auth/KeyStore.ts +3 -9
  166. package/src/entry/cli-entry.ts +3 -4
  167. package/src/entry/commands/config-command.ts +1 -1
  168. package/src/entry/commands/migrate-action.ts +14 -6
  169. package/src/entry/commands/start-action.ts +1 -1
  170. package/src/entry/commands/teardown-action.ts +1 -1
  171. package/src/index.ts +5 -2
  172. package/src/locks/LockManager.ts +16 -0
  173. package/src/locks/MongoLocks.ts +142 -0
  174. package/src/locks/locks-index.ts +2 -0
  175. package/src/metrics/Metrics.ts +8 -8
  176. package/src/migrations/db/migrations/1684951997326-init.ts +3 -3
  177. package/src/migrations/db/migrations/1702295701188-sync-rule-state.ts +3 -3
  178. package/src/migrations/db/migrations/1711543888062-write-checkpoint-index.ts +2 -2
  179. package/src/migrations/definitions.ts +21 -0
  180. package/src/migrations/executor.ts +87 -0
  181. package/src/migrations/migrations-index.ts +3 -0
  182. package/src/migrations/migrations.ts +15 -11
  183. package/src/migrations/store/migration-store.ts +63 -0
  184. package/src/replication/WalConnection.ts +2 -2
  185. package/src/replication/WalStream.ts +24 -29
  186. package/src/replication/WalStreamManager.ts +14 -15
  187. package/src/replication/WalStreamRunner.ts +10 -10
  188. package/src/replication/util.ts +1 -1
  189. package/src/routes/auth.ts +22 -16
  190. package/src/routes/endpoints/admin.ts +237 -0
  191. package/src/routes/endpoints/checkpointing.ts +41 -0
  192. package/src/routes/endpoints/dev.ts +199 -0
  193. package/src/routes/endpoints/route-endpoints-index.ts +6 -0
  194. package/src/routes/{socket-route.ts → endpoints/socket-route.ts} +13 -16
  195. package/src/routes/endpoints/sync-rules.ts +227 -0
  196. package/src/routes/endpoints/sync-stream.ts +98 -0
  197. package/src/routes/hooks.ts +45 -0
  198. package/src/routes/route-register.ts +104 -0
  199. package/src/routes/router.ts +34 -6
  200. package/src/routes/routes-index.ts +5 -4
  201. package/src/runner/teardown.ts +9 -9
  202. package/src/storage/BucketStorage.ts +7 -2
  203. package/src/storage/ChecksumCache.ts +2 -2
  204. package/src/storage/MongoBucketStorage.ts +8 -8
  205. package/src/storage/SourceTable.ts +2 -2
  206. package/src/storage/mongo/MongoBucketBatch.ts +29 -22
  207. package/src/storage/mongo/MongoSyncBucketStorage.ts +3 -3
  208. package/src/storage/mongo/MongoSyncRulesLock.ts +3 -3
  209. package/src/storage/mongo/OperationBatch.ts +1 -1
  210. package/src/storage/mongo/PersistedBatch.ts +3 -3
  211. package/src/storage/mongo/db.ts +3 -4
  212. package/src/sync/sync.ts +11 -11
  213. package/src/sync/util.ts +2 -2
  214. package/src/system/CorePowerSyncSystem.ts +31 -10
  215. package/src/system/system-index.ts +1 -0
  216. package/src/util/alerting.ts +0 -8
  217. package/src/util/config/collectors/config-collector.ts +5 -3
  218. package/src/util/config/collectors/impl/filesystem-config-collector.ts +8 -6
  219. package/src/util/config/compound-config-collector.ts +4 -4
  220. package/src/util/env.ts +4 -2
  221. package/src/util/memory-tracking.ts +2 -2
  222. package/src/util/pgwire_utils.ts +3 -3
  223. package/src/util/utils.ts +5 -5
  224. package/test/src/auth.test.ts +4 -2
  225. package/test/src/data_storage.test.ts +181 -19
  226. package/test/src/env.ts +6 -6
  227. package/test/src/setup.ts +7 -0
  228. package/test/src/slow_tests.test.ts +45 -6
  229. package/test/src/sync.test.ts +6 -5
  230. package/test/tsconfig.json +1 -1
  231. package/tsconfig.json +5 -6
  232. package/tsconfig.tsbuildinfo +1 -1
  233. package/vitest.config.ts +1 -3
  234. package/dist/migrations/db/store.d.ts +0 -3
  235. package/dist/migrations/db/store.js +0 -10
  236. package/dist/migrations/db/store.js.map +0 -1
  237. package/dist/routes/admin.d.ts +0 -7
  238. package/dist/routes/admin.js.map +0 -1
  239. package/dist/routes/checkpointing.d.ts +0 -3
  240. package/dist/routes/checkpointing.js +0 -30
  241. package/dist/routes/checkpointing.js.map +0 -1
  242. package/dist/routes/dev.d.ts +0 -6
  243. package/dist/routes/dev.js.map +0 -1
  244. package/dist/routes/route-generators.d.ts +0 -15
  245. package/dist/routes/route-generators.js +0 -32
  246. package/dist/routes/route-generators.js.map +0 -1
  247. package/dist/routes/socket-route.d.ts +0 -2
  248. package/dist/routes/socket-route.js.map +0 -1
  249. package/dist/routes/sync-rules.d.ts +0 -6
  250. package/dist/routes/sync-rules.js.map +0 -1
  251. package/dist/routes/sync-stream.d.ts +0 -5
  252. package/dist/routes/sync-stream.js.map +0 -1
  253. package/src/migrations/db/store.ts +0 -11
  254. package/src/routes/admin.ts +0 -229
  255. package/src/routes/checkpointing.ts +0 -38
  256. package/src/routes/dev.ts +0 -194
  257. package/src/routes/route-generators.ts +0 -39
  258. package/src/routes/sync-rules.ts +0 -210
  259. package/src/routes/sync-stream.ts +0 -95
  260. package/test/src/sql_functions.test.ts +0 -254
  261. package/test/src/sql_operators.test.ts +0 -132
  262. package/test/src/sync_rules.test.ts +0 -1053
@@ -1,12 +1,17 @@
1
- import * as micro from '@journeyapps-platform/micro';
1
+ import { errors, router, schema } from '@powersync/lib-services-framework';
2
2
  import { SqlSyncRules, StaticSchema, isJsonValue, toSyncRulesValue } from '@powersync/service-sync-rules';
3
3
  import { internal_routes } from '@powersync/service-types';
4
- import * as api from '../api/api-index.js';
5
- import * as util from '../util/util-index.js';
6
- import { authApi } from './auth.js';
7
- const demoCredentials = (router) => router.post('/api/admin/v1/demo-credentials', {
4
+ import * as api from '../../api/api-index.js';
5
+ import * as util from '../../util/util-index.js';
6
+ import { routeDefinition } from '../router.js';
7
+ import { authApi } from '../auth.js';
8
+ const demoCredentials = routeDefinition({
9
+ path: '/api/admin/v1/demo-credentials',
10
+ method: router.HTTPMethod.POST,
8
11
  authorize: authApi,
9
- validator: micro.schema.createTsCodecValidator(internal_routes.DemoCredentialsRequest, { allowAdditional: true }),
12
+ validator: schema.createTsCodecValidator(internal_routes.DemoCredentialsRequest, {
13
+ allowAdditional: true
14
+ }),
10
15
  handler: async (payload) => {
11
16
  const connection = payload.context.system.config.connection;
12
17
  if (connection == null || !connection.demo_database) {
@@ -20,9 +25,11 @@ const demoCredentials = (router) => router.post('/api/admin/v1/demo-credentials'
20
25
  });
21
26
  }
22
27
  });
23
- export const executeSql = (router) => router.post('/api/admin/v1/execute-sql', {
28
+ export const executeSql = routeDefinition({
29
+ path: '/api/admin/v1/execute-sql',
30
+ method: router.HTTPMethod.POST,
24
31
  authorize: authApi,
25
- validator: micro.schema.createTsCodecValidator(internal_routes.ExecuteSqlRequest, { allowAdditional: true }),
32
+ validator: schema.createTsCodecValidator(internal_routes.ExecuteSqlRequest, { allowAdditional: true }),
26
33
  handler: async (payload) => {
27
34
  const connection = payload.context.system.config.connection;
28
35
  if (connection == null || !connection.debug_api) {
@@ -64,9 +71,11 @@ export const executeSql = (router) => router.post('/api/admin/v1/execute-sql', {
64
71
  }
65
72
  }
66
73
  });
67
- export const diagnostics = (router) => router.post('/api/admin/v1/diagnostics', {
74
+ export const diagnostics = routeDefinition({
75
+ path: '/api/admin/v1/diagnostics',
76
+ method: router.HTTPMethod.POST,
68
77
  authorize: authApi,
69
- validator: micro.schema.createTsCodecValidator(internal_routes.DiagnosticsRequest, { allowAdditional: true }),
78
+ validator: schema.createTsCodecValidator(internal_routes.DiagnosticsRequest, { allowAdditional: true }),
70
79
  handler: async (payload) => {
71
80
  const include_content = payload.params.sync_rules_content ?? false;
72
81
  const system = payload.context.system;
@@ -96,17 +105,21 @@ export const diagnostics = (router) => router.post('/api/admin/v1/diagnostics',
96
105
  });
97
106
  }
98
107
  });
99
- export const getSchema = (router) => router.post('/api/admin/v1/schema', {
108
+ export const getSchema = routeDefinition({
109
+ path: '/api/admin/v1/schema',
110
+ method: router.HTTPMethod.POST,
100
111
  authorize: authApi,
101
- validator: micro.schema.createTsCodecValidator(internal_routes.GetSchemaRequest, { allowAdditional: true }),
112
+ validator: schema.createTsCodecValidator(internal_routes.GetSchemaRequest, { allowAdditional: true }),
102
113
  handler: async (payload) => {
103
114
  const system = payload.context.system;
104
115
  return internal_routes.GetSchemaResponse.encode(await api.getConnectionsSchema(system));
105
116
  }
106
117
  });
107
- export const reprocess = (router) => router.post('/api/admin/v1/reprocess', {
118
+ export const reprocess = routeDefinition({
119
+ path: '/api/admin/v1/reprocess',
120
+ method: router.HTTPMethod.POST,
108
121
  authorize: authApi,
109
- validator: micro.schema.createTsCodecValidator(internal_routes.ReprocessRequest, { allowAdditional: true }),
122
+ validator: schema.createTsCodecValidator(internal_routes.ReprocessRequest, { allowAdditional: true }),
110
123
  handler: async (payload) => {
111
124
  const system = payload.context.system;
112
125
  const storage = system.storage;
@@ -116,7 +129,7 @@ export const reprocess = (router) => router.post('/api/admin/v1/reprocess', {
116
129
  }
117
130
  const active = await storage.getActiveSyncRules();
118
131
  if (active == null) {
119
- throw new micro.errors.JourneyError({
132
+ throw new errors.JourneyError({
120
133
  status: 422,
121
134
  code: 'NO_SYNC_RULES',
122
135
  description: 'No active sync rules'
@@ -136,9 +149,11 @@ export const reprocess = (router) => router.post('/api/admin/v1/reprocess', {
136
149
  });
137
150
  }
138
151
  });
139
- export const validate = (router) => router.post('/api/admin/v1/validate', {
152
+ export const validate = routeDefinition({
153
+ path: '/api/admin/v1/validate',
154
+ method: router.HTTPMethod.POST,
140
155
  authorize: authApi,
141
- validator: micro.schema.createTsCodecValidator(internal_routes.ValidateRequest, { allowAdditional: true }),
156
+ validator: schema.createTsCodecValidator(internal_routes.ValidateRequest, { allowAdditional: true }),
142
157
  handler: async (payload) => {
143
158
  const system = payload.context.system;
144
159
  const content = payload.params.sync_rules;
@@ -188,5 +203,5 @@ function mapColumnValue(value) {
188
203
  return null;
189
204
  }
190
205
  }
191
- export const admin_routes = [demoCredentials, executeSql, diagnostics, getSchema, reprocess, validate];
206
+ export const ADMIN_ROUTES = [demoCredentials, executeSql, diagnostics, getSchema, reprocess, validate];
192
207
  //# sourceMappingURL=admin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"admin.js","sourceRoot":"","sources":["../../../src/routes/endpoints/admin.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,76 @@
1
+ import { router, schema } from '@powersync/lib-services-framework';
2
+ export declare const writeCheckpoint: router.Endpoint<{}, {
3
+ checkpoint: string;
4
+ }, import("../router.js").Context, import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>, router.EndpointHandler<import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>, {
5
+ checkpoint: string;
6
+ }>> & {
7
+ path: string;
8
+ method: router.HTTPMethod.GET;
9
+ authorize: (payload: import("../router.js").RequestEndpointHandlerPayload) => Promise<{
10
+ authorized: boolean;
11
+ errors: any[];
12
+ } | {
13
+ authorized: boolean;
14
+ errors?: undefined;
15
+ }>;
16
+ validator: schema.MicroValidator<{}, string[]>;
17
+ handler: (payload: import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>) => Promise<{
18
+ checkpoint: string;
19
+ }>;
20
+ };
21
+ export declare const writeCheckpoint2: router.Endpoint<{}, {
22
+ write_checkpoint: string;
23
+ }, import("../router.js").Context, import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>, router.EndpointHandler<import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>, {
24
+ write_checkpoint: string;
25
+ }>> & {
26
+ path: string;
27
+ method: router.HTTPMethod.GET;
28
+ authorize: (payload: import("../router.js").RequestEndpointHandlerPayload) => Promise<{
29
+ authorized: boolean;
30
+ errors: any[];
31
+ } | {
32
+ authorized: boolean;
33
+ errors?: undefined;
34
+ }>;
35
+ validator: schema.MicroValidator<{}, string[]>;
36
+ handler: (payload: import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>) => Promise<{
37
+ write_checkpoint: string;
38
+ }>;
39
+ };
40
+ export declare const CHECKPOINT_ROUTES: ((router.Endpoint<{}, {
41
+ checkpoint: string;
42
+ }, import("../router.js").Context, import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>, router.EndpointHandler<import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>, {
43
+ checkpoint: string;
44
+ }>> & {
45
+ path: string;
46
+ method: router.HTTPMethod.GET;
47
+ authorize: (payload: import("../router.js").RequestEndpointHandlerPayload) => Promise<{
48
+ authorized: boolean;
49
+ errors: any[];
50
+ } | {
51
+ authorized: boolean;
52
+ errors?: undefined;
53
+ }>;
54
+ validator: schema.MicroValidator<{}, string[]>;
55
+ handler: (payload: import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>) => Promise<{
56
+ checkpoint: string;
57
+ }>;
58
+ }) | (router.Endpoint<{}, {
59
+ write_checkpoint: string;
60
+ }, import("../router.js").Context, import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>, router.EndpointHandler<import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>, {
61
+ write_checkpoint: string;
62
+ }>> & {
63
+ path: string;
64
+ method: router.HTTPMethod.GET;
65
+ authorize: (payload: import("../router.js").RequestEndpointHandlerPayload) => Promise<{
66
+ authorized: boolean;
67
+ errors: any[];
68
+ } | {
69
+ authorized: boolean;
70
+ errors?: undefined;
71
+ }>;
72
+ validator: schema.MicroValidator<{}, string[]>;
73
+ handler: (payload: import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>) => Promise<{
74
+ write_checkpoint: string;
75
+ }>;
76
+ }))[];
@@ -0,0 +1,36 @@
1
+ import * as t from 'ts-codec';
2
+ import { router, schema } from '@powersync/lib-services-framework';
3
+ import * as util from '../../util/util-index.js';
4
+ import { authUser } from '../auth.js';
5
+ import { routeDefinition } from '../router.js';
6
+ const WriteCheckpointRequest = t.object({});
7
+ export const writeCheckpoint = routeDefinition({
8
+ path: '/write-checkpoint.json',
9
+ method: router.HTTPMethod.GET,
10
+ authorize: authUser,
11
+ validator: schema.createTsCodecValidator(WriteCheckpointRequest, { allowAdditional: true }),
12
+ handler: async (payload) => {
13
+ const system = payload.context.system;
14
+ const storage = system.storage;
15
+ const checkpoint = await util.getClientCheckpoint(system.requirePgPool(), storage);
16
+ return {
17
+ checkpoint
18
+ };
19
+ }
20
+ });
21
+ export const writeCheckpoint2 = routeDefinition({
22
+ path: '/write-checkpoint2.json',
23
+ method: router.HTTPMethod.GET,
24
+ authorize: authUser,
25
+ validator: schema.createTsCodecValidator(WriteCheckpointRequest, { allowAdditional: true }),
26
+ handler: async (payload) => {
27
+ const { user_id, system } = payload.context;
28
+ const storage = system.storage;
29
+ const write_checkpoint = await util.createWriteCheckpoint(system.requirePgPool(), storage, user_id);
30
+ return {
31
+ write_checkpoint: String(write_checkpoint)
32
+ };
33
+ }
34
+ });
35
+ export const CHECKPOINT_ROUTES = [writeCheckpoint, writeCheckpoint2];
36
+ //# sourceMappingURL=checkpointing.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"checkpointing.js","sourceRoot":"","sources":["../../../src/routes/endpoints/checkpointing.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAC;AAC9B,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,mCAAmC,CAAC;AAEnE,OAAO,KAAK,IAAI,MAAM,0BAA0B,CAAC;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;AAE5C,MAAM,CAAC,MAAM,eAAe,GAAG,eAAe,CAAC;IAC7C,IAAI,EAAE,wBAAwB;IAC9B,MAAM,EAAE,MAAM,CAAC,UAAU,CAAC,GAAG;IAC7B,SAAS,EAAE,QAAQ;IACnB,SAAS,EAAE,MAAM,CAAC,sBAAsB,CAAC,sBAAsB,EAAE,EAAE,eAAe,EAAE,IAAI,EAAE,CAAC;IAC3F,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE;QACzB,MAAM,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC;QACtC,MAAM,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC;QAE/B,MAAM,UAAU,GAAG,MAAM,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,aAAa,EAAE,EAAE,OAAO,CAAC,CAAC;QACnF,OAAO;YACL,UAAU;SACX,CAAC;IACJ,CAAC;CACF,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,gBAAgB,GAAG,eAAe,CAAC;IAC9C,IAAI,EAAE,yBAAyB;IAC/B,MAAM,EAAE,MAAM,CAAC,UAAU,CAAC,GAAG;IAC7B,SAAS,EAAE,QAAQ;IACnB,SAAS,EAAE,MAAM,CAAC,sBAAsB,CAAC,sBAAsB,EAAE,EAAE,eAAe,EAAE,IAAI,EAAE,CAAC;IAC3F,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE;QACzB,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,OAAO,CAAC;QAC5C,MAAM,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC;QAC/B,MAAM,gBAAgB,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,MAAM,CAAC,aAAa,EAAE,EAAE,OAAO,EAAE,OAAQ,CAAC,CAAC;QACrG,OAAO;YACL,gBAAgB,EAAE,MAAM,CAAC,gBAAgB,CAAC;SAC3C,CAAC;IACJ,CAAC;CACF,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,eAAe,EAAE,gBAAgB,CAAC,CAAC"}
@@ -0,0 +1,312 @@
1
+ import { router, schema } from '@powersync/lib-services-framework';
2
+ export declare const auth: router.Endpoint<{
3
+ password: string;
4
+ user: string;
5
+ }, {
6
+ token: string;
7
+ user_id: string;
8
+ endpoint: string;
9
+ }, import("../router.js").Context, import("../router.js").RequestEndpointHandlerPayload<{
10
+ password: string;
11
+ user: string;
12
+ }, import("../router.js").Context, import("../router.js").BasicRouterRequest>, router.EndpointHandler<import("../router.js").RequestEndpointHandlerPayload<{
13
+ password: string;
14
+ user: string;
15
+ }, import("../router.js").Context, import("../router.js").BasicRouterRequest>, {
16
+ token: string;
17
+ user_id: string;
18
+ endpoint: string;
19
+ }>> & {
20
+ path: string;
21
+ method: router.HTTPMethod.POST;
22
+ validator: schema.MicroValidator<{
23
+ password: string;
24
+ user: string;
25
+ }, string[]>;
26
+ handler: (payload: import("../router.js").RequestEndpointHandlerPayload<{
27
+ password: string;
28
+ user: string;
29
+ }, import("../router.js").Context, import("../router.js").BasicRouterRequest>) => Promise<{
30
+ token: string;
31
+ user_id: string;
32
+ endpoint: string;
33
+ }>;
34
+ };
35
+ export declare const auth2: router.Endpoint<{
36
+ password: string;
37
+ user: string;
38
+ }, {
39
+ token: string;
40
+ user_id: string;
41
+ }, import("../router.js").Context, import("../router.js").RequestEndpointHandlerPayload<{
42
+ password: string;
43
+ user: string;
44
+ }, import("../router.js").Context, import("../router.js").BasicRouterRequest>, router.EndpointHandler<import("../router.js").RequestEndpointHandlerPayload<{
45
+ password: string;
46
+ user: string;
47
+ }, import("../router.js").Context, import("../router.js").BasicRouterRequest>, {
48
+ token: string;
49
+ user_id: string;
50
+ }>> & {
51
+ path: string;
52
+ method: router.HTTPMethod.POST;
53
+ validator: schema.MicroValidator<{
54
+ password: string;
55
+ user: string;
56
+ }, string[]>;
57
+ handler: (payload: import("../router.js").RequestEndpointHandlerPayload<{
58
+ password: string;
59
+ user: string;
60
+ }, import("../router.js").Context, import("../router.js").BasicRouterRequest>) => Promise<{
61
+ token: string;
62
+ user_id: string;
63
+ }>;
64
+ };
65
+ export declare const token: router.Endpoint<{}, {
66
+ token: string;
67
+ user_id: string | undefined;
68
+ endpoint: string;
69
+ }, import("../router.js").Context, import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>, router.EndpointHandler<import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>, {
70
+ token: string;
71
+ user_id: string | undefined;
72
+ endpoint: string;
73
+ }>> & {
74
+ path: string;
75
+ method: router.HTTPMethod.POST;
76
+ validator: schema.MicroValidator<{}, string[]>;
77
+ authorize: (payload: import("../router.js").RequestEndpointHandlerPayload) => Promise<{
78
+ authorized: boolean;
79
+ errors: any[];
80
+ } | {
81
+ authorized: boolean;
82
+ errors?: undefined;
83
+ }>;
84
+ handler: (payload: import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>) => Promise<{
85
+ token: string;
86
+ user_id: string | undefined;
87
+ endpoint: string;
88
+ }>;
89
+ };
90
+ export declare const crud: router.Endpoint<{
91
+ data: {
92
+ type: string;
93
+ id: string;
94
+ op: string;
95
+ data?: any;
96
+ op_id?: number | undefined;
97
+ }[];
98
+ write_checkpoint?: boolean | undefined;
99
+ }, {
100
+ write_checkpoint: string;
101
+ checkpoint?: undefined;
102
+ } | {
103
+ write_checkpoint?: undefined;
104
+ checkpoint?: undefined;
105
+ } | {
106
+ checkpoint: string;
107
+ write_checkpoint?: undefined;
108
+ }, import("../router.js").Context, import("../router.js").RequestEndpointHandlerPayload<{
109
+ data: {
110
+ type: string;
111
+ id: string;
112
+ op: string;
113
+ data?: any;
114
+ op_id?: number | undefined;
115
+ }[];
116
+ write_checkpoint?: boolean | undefined;
117
+ }, import("../router.js").Context, import("../router.js").BasicRouterRequest>, router.EndpointHandler<import("../router.js").RequestEndpointHandlerPayload<{
118
+ data: {
119
+ type: string;
120
+ id: string;
121
+ op: string;
122
+ data?: any;
123
+ op_id?: number | undefined;
124
+ }[];
125
+ write_checkpoint?: boolean | undefined;
126
+ }, import("../router.js").Context, import("../router.js").BasicRouterRequest>, {
127
+ write_checkpoint: string;
128
+ checkpoint?: undefined;
129
+ } | {
130
+ write_checkpoint?: undefined;
131
+ checkpoint?: undefined;
132
+ } | {
133
+ checkpoint: string;
134
+ write_checkpoint?: undefined;
135
+ }>> & {
136
+ path: string;
137
+ method: router.HTTPMethod.POST;
138
+ validator: schema.MicroValidator<{
139
+ data: {
140
+ type: string;
141
+ id: string;
142
+ op: string;
143
+ data?: any;
144
+ op_id?: number | undefined;
145
+ }[];
146
+ write_checkpoint?: boolean | undefined;
147
+ }, string[]>;
148
+ authorize: (payload: import("../router.js").RequestEndpointHandlerPayload) => Promise<{
149
+ authorized: boolean;
150
+ errors: any[];
151
+ } | {
152
+ authorized: boolean;
153
+ errors?: undefined;
154
+ }>;
155
+ handler: (payload: import("../router.js").RequestEndpointHandlerPayload<{
156
+ data: {
157
+ type: string;
158
+ id: string;
159
+ op: string;
160
+ data?: any;
161
+ op_id?: number | undefined;
162
+ }[];
163
+ write_checkpoint?: boolean | undefined;
164
+ }, import("../router.js").Context, import("../router.js").BasicRouterRequest>) => Promise<{
165
+ write_checkpoint: string;
166
+ checkpoint?: undefined;
167
+ } | {
168
+ write_checkpoint?: undefined;
169
+ checkpoint?: undefined;
170
+ } | {
171
+ checkpoint: string;
172
+ write_checkpoint?: undefined;
173
+ }>;
174
+ };
175
+ export declare const DEV_ROUTES: ((router.Endpoint<{
176
+ password: string;
177
+ user: string;
178
+ }, {
179
+ token: string;
180
+ user_id: string;
181
+ }, import("../router.js").Context, import("../router.js").RequestEndpointHandlerPayload<{
182
+ password: string;
183
+ user: string;
184
+ }, import("../router.js").Context, import("../router.js").BasicRouterRequest>, router.EndpointHandler<import("../router.js").RequestEndpointHandlerPayload<{
185
+ password: string;
186
+ user: string;
187
+ }, import("../router.js").Context, import("../router.js").BasicRouterRequest>, {
188
+ token: string;
189
+ user_id: string;
190
+ }>> & {
191
+ path: string;
192
+ method: router.HTTPMethod.POST;
193
+ validator: schema.MicroValidator<{
194
+ password: string;
195
+ user: string;
196
+ }, string[]>;
197
+ handler: (payload: import("../router.js").RequestEndpointHandlerPayload<{
198
+ password: string;
199
+ user: string;
200
+ }, import("../router.js").Context, import("../router.js").BasicRouterRequest>) => Promise<{
201
+ token: string;
202
+ user_id: string;
203
+ }>;
204
+ }) | (router.Endpoint<{}, {
205
+ token: string;
206
+ user_id: string | undefined;
207
+ endpoint: string;
208
+ }, import("../router.js").Context, import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>, router.EndpointHandler<import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>, {
209
+ token: string;
210
+ user_id: string | undefined;
211
+ endpoint: string;
212
+ }>> & {
213
+ path: string;
214
+ method: router.HTTPMethod.POST;
215
+ validator: schema.MicroValidator<{}, string[]>;
216
+ authorize: (payload: import("../router.js").RequestEndpointHandlerPayload) => Promise<{
217
+ authorized: boolean;
218
+ errors: any[];
219
+ } | {
220
+ authorized: boolean;
221
+ errors?: undefined;
222
+ }>;
223
+ handler: (payload: import("../router.js").RequestEndpointHandlerPayload<{}, import("../router.js").Context, import("../router.js").BasicRouterRequest>) => Promise<{
224
+ token: string;
225
+ user_id: string | undefined;
226
+ endpoint: string;
227
+ }>;
228
+ }) | (router.Endpoint<{
229
+ data: {
230
+ type: string;
231
+ id: string;
232
+ op: string;
233
+ data?: any;
234
+ op_id?: number | undefined;
235
+ }[];
236
+ write_checkpoint?: boolean | undefined;
237
+ }, {
238
+ write_checkpoint: string;
239
+ checkpoint?: undefined;
240
+ } | {
241
+ write_checkpoint?: undefined;
242
+ checkpoint?: undefined;
243
+ } | {
244
+ checkpoint: string;
245
+ write_checkpoint?: undefined;
246
+ }, import("../router.js").Context, import("../router.js").RequestEndpointHandlerPayload<{
247
+ data: {
248
+ type: string;
249
+ id: string;
250
+ op: string;
251
+ data?: any;
252
+ op_id?: number | undefined;
253
+ }[];
254
+ write_checkpoint?: boolean | undefined;
255
+ }, import("../router.js").Context, import("../router.js").BasicRouterRequest>, router.EndpointHandler<import("../router.js").RequestEndpointHandlerPayload<{
256
+ data: {
257
+ type: string;
258
+ id: string;
259
+ op: string;
260
+ data?: any;
261
+ op_id?: number | undefined;
262
+ }[];
263
+ write_checkpoint?: boolean | undefined;
264
+ }, import("../router.js").Context, import("../router.js").BasicRouterRequest>, {
265
+ write_checkpoint: string;
266
+ checkpoint?: undefined;
267
+ } | {
268
+ write_checkpoint?: undefined;
269
+ checkpoint?: undefined;
270
+ } | {
271
+ checkpoint: string;
272
+ write_checkpoint?: undefined;
273
+ }>> & {
274
+ path: string;
275
+ method: router.HTTPMethod.POST;
276
+ validator: schema.MicroValidator<{
277
+ data: {
278
+ type: string;
279
+ id: string;
280
+ op: string;
281
+ data?: any;
282
+ op_id?: number | undefined;
283
+ }[];
284
+ write_checkpoint?: boolean | undefined;
285
+ }, string[]>;
286
+ authorize: (payload: import("../router.js").RequestEndpointHandlerPayload) => Promise<{
287
+ authorized: boolean;
288
+ errors: any[];
289
+ } | {
290
+ authorized: boolean;
291
+ errors?: undefined;
292
+ }>;
293
+ handler: (payload: import("../router.js").RequestEndpointHandlerPayload<{
294
+ data: {
295
+ type: string;
296
+ id: string;
297
+ op: string;
298
+ data?: any;
299
+ op_id?: number | undefined;
300
+ }[];
301
+ write_checkpoint?: boolean | undefined;
302
+ }, import("../router.js").Context, import("../router.js").BasicRouterRequest>) => Promise<{
303
+ write_checkpoint: string;
304
+ checkpoint?: undefined;
305
+ } | {
306
+ write_checkpoint?: undefined;
307
+ checkpoint?: undefined;
308
+ } | {
309
+ checkpoint: string;
310
+ write_checkpoint?: undefined;
311
+ }>;
312
+ }))[];
@@ -1,49 +1,56 @@
1
1
  import * as t from 'ts-codec';
2
- import * as micro from '@journeyapps-platform/micro';
3
- import * as util from '../util/util-index.js';
4
- import { authDevUser, authUser, endpoint, issueDevToken, issueLegacyDevToken, issuePowerSyncToken } from './auth.js';
2
+ import { errors, router, schema } from '@powersync/lib-services-framework';
3
+ import * as util from '../../util/util-index.js';
4
+ import { authDevUser, authUser, endpoint, issueDevToken, issueLegacyDevToken, issuePowerSyncToken } from '../auth.js';
5
+ import { routeDefinition } from '../router.js';
5
6
  const AuthParams = t.object({
6
7
  user: t.string,
7
8
  password: t.string
8
9
  });
9
10
  // For legacy web client only. Remove soon.
10
- export const auth = (router) => router.post('/auth.json', {
11
- validator: micro.schema.createTsCodecValidator(AuthParams, { allowAdditional: true }),
11
+ export const auth = routeDefinition({
12
+ path: '/auth.json',
13
+ method: router.HTTPMethod.POST,
14
+ validator: schema.createTsCodecValidator(AuthParams, { allowAdditional: true }),
12
15
  handler: async (payload) => {
13
16
  const { user, password } = payload.params;
14
17
  const config = payload.context.system.config;
15
18
  if (config.dev.demo_auth == false || config.dev.demo_password == null) {
16
- throw new micro.errors.AuthorizationError(['Demo auth disabled']);
19
+ throw new errors.AuthorizationError(['Demo auth disabled']);
17
20
  }
18
21
  if (password == config.dev.demo_password) {
19
22
  const token = await issueLegacyDevToken(payload.request, user, payload.context.system.config);
20
23
  return { token, user_id: user, endpoint: endpoint(payload.request) };
21
24
  }
22
25
  else {
23
- throw new micro.errors.AuthorizationError(['Authentication failed']);
26
+ throw new errors.AuthorizationError(['Authentication failed']);
24
27
  }
25
28
  }
26
29
  });
27
- export const auth2 = (router) => router.post('/dev/auth.json', {
28
- validator: micro.schema.createTsCodecValidator(AuthParams, { allowAdditional: true }),
30
+ export const auth2 = routeDefinition({
31
+ path: '/dev/auth.json',
32
+ method: router.HTTPMethod.POST,
33
+ validator: schema.createTsCodecValidator(AuthParams, { allowAdditional: true }),
29
34
  handler: async (payload) => {
30
35
  const { user, password } = payload.params;
31
36
  const config = payload.context.system.config;
32
37
  if (config.dev.demo_auth == false || config.dev.demo_password == null) {
33
- throw new micro.errors.AuthorizationError(['Demo auth disabled']);
38
+ throw new errors.AuthorizationError(['Demo auth disabled']);
34
39
  }
35
40
  if (password == config.dev.demo_password) {
36
41
  const token = await issueDevToken(payload.request, user, payload.context.system.config);
37
42
  return { token, user_id: user };
38
43
  }
39
44
  else {
40
- throw new micro.errors.AuthorizationError(['Authentication failed']);
45
+ throw new errors.AuthorizationError(['Authentication failed']);
41
46
  }
42
47
  }
43
48
  });
44
49
  const TokenParams = t.object({});
45
- export const token = (router) => router.post('/dev/token.json', {
46
- validator: micro.schema.createTsCodecValidator(TokenParams, { allowAdditional: true }),
50
+ export const token = routeDefinition({
51
+ path: '/dev/token.json',
52
+ method: router.HTTPMethod.POST,
53
+ validator: schema.createTsCodecValidator(TokenParams, { allowAdditional: true }),
47
54
  authorize: authDevUser,
48
55
  handler: async (payload) => {
49
56
  const { user_id } = payload.context;
@@ -67,8 +74,10 @@ const CrudRequest = t.object({
67
74
  data: t.array(CrudEntry),
68
75
  write_checkpoint: t.boolean.optional()
69
76
  });
70
- export const crud = (router) => router.post('/crud.json', {
71
- validator: micro.schema.createTsCodecValidator(CrudRequest, { allowAdditional: true }),
77
+ export const crud = routeDefinition({
78
+ path: '/crud.json',
79
+ method: router.HTTPMethod.POST,
80
+ validator: schema.createTsCodecValidator(CrudRequest, { allowAdditional: true }),
72
81
  authorize: authUser,
73
82
  handler: async (payload) => {
74
83
  const { user_id, system } = payload.context;
@@ -159,5 +168,5 @@ export const crud = (router) => router.post('/crud.json', {
159
168
  }
160
169
  }
161
170
  });
162
- export const dev_routes = [auth, auth2, token, crud];
171
+ export const DEV_ROUTES = [auth, auth2, token, crud];
163
172
  //# sourceMappingURL=dev.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dev.js","sourceRoot":"","sources":["../../../src/routes/endpoints/dev.ts"],"names":[],"mappings":"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"}