spacetimedb 2.3.0 → 2.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 (59) hide show
  1. package/LICENSE.txt +2 -2
  2. package/dist/index.browser.mjs +50 -4
  3. package/dist/index.browser.mjs.map +1 -1
  4. package/dist/index.cjs +50 -4
  5. package/dist/index.cjs.map +1 -1
  6. package/dist/index.mjs +50 -4
  7. package/dist/index.mjs.map +1 -1
  8. package/dist/lib/autogen/types.d.ts +674 -18
  9. package/dist/lib/autogen/types.d.ts.map +1 -1
  10. package/dist/lib/schema.d.ts.map +1 -1
  11. package/dist/min/index.browser.mjs +1 -1
  12. package/dist/min/index.browser.mjs.map +1 -1
  13. package/dist/min/sdk/index.browser.mjs +1 -1
  14. package/dist/min/sdk/index.browser.mjs.map +1 -1
  15. package/dist/sdk/decompress.d.ts.map +1 -1
  16. package/dist/sdk/index.browser.mjs +50 -4
  17. package/dist/sdk/index.browser.mjs.map +1 -1
  18. package/dist/sdk/index.cjs +50 -4
  19. package/dist/sdk/index.cjs.map +1 -1
  20. package/dist/sdk/index.mjs +50 -4
  21. package/dist/sdk/index.mjs.map +1 -1
  22. package/dist/server/http.d.ts +1 -2
  23. package/dist/server/http.d.ts.map +1 -1
  24. package/dist/server/http.test-d.d.ts +2 -0
  25. package/dist/server/http.test-d.d.ts.map +1 -0
  26. package/dist/server/http_handlers.d.ts +82 -0
  27. package/dist/server/http_handlers.d.ts.map +1 -0
  28. package/dist/server/http_internal.d.ts +1 -32
  29. package/dist/server/http_internal.d.ts.map +1 -1
  30. package/dist/server/http_shared.d.ts +44 -0
  31. package/dist/server/http_shared.d.ts.map +1 -0
  32. package/dist/server/index.d.ts +2 -0
  33. package/dist/server/index.d.ts.map +1 -1
  34. package/dist/server/index.mjs +582 -134
  35. package/dist/server/index.mjs.map +1 -1
  36. package/dist/server/runtime.d.ts +1 -0
  37. package/dist/server/runtime.d.ts.map +1 -1
  38. package/dist/server/schema.d.ts +16 -1
  39. package/dist/server/schema.d.ts.map +1 -1
  40. package/dist/server/views.d.ts.map +1 -1
  41. package/package.json +1 -1
  42. package/src/lib/autogen/types.ts +29 -0
  43. package/src/lib/schema.ts +14 -0
  44. package/src/sdk/decompress.ts +19 -4
  45. package/src/sdk/logger.ts +1 -1
  46. package/src/server/http.test-d.ts +80 -0
  47. package/src/server/http.ts +14 -2
  48. package/src/server/http_handlers.ts +413 -0
  49. package/src/server/http_internal.ts +15 -142
  50. package/src/server/http_shared.ts +186 -0
  51. package/src/server/index.ts +11 -0
  52. package/src/server/procedures.ts +8 -30
  53. package/src/server/runtime.ts +137 -1
  54. package/src/server/schema.ts +71 -2
  55. package/src/server/sys.d.ts +7 -0
  56. package/src/server/views.ts +1 -0
  57. package/dist/lib/http_types.d.ts +0 -2
  58. package/dist/lib/http_types.d.ts.map +0 -1
  59. package/src/lib/http_types.ts +0 -8
package/dist/index.cjs CHANGED
@@ -5006,11 +5006,21 @@ async function decompress(buffer, type, chunkSize = 128 * 1024) {
5006
5006
  });
5007
5007
  const decompressionStream = new DecompressionStream(type);
5008
5008
  const decompressedStream = readableStream.pipeThrough(decompressionStream);
5009
+ const reader = decompressedStream.getReader();
5009
5010
  const chunks = [];
5010
- for await (const chunk of decompressedStream) {
5011
- chunks.push(chunk);
5012
- }
5013
- return new Blob(chunks).bytes();
5011
+ let totalLength = 0;
5012
+ let result;
5013
+ while (!(result = await reader.read()).done) {
5014
+ chunks.push(result.value);
5015
+ totalLength += result.value.length;
5016
+ }
5017
+ const decompressedArray = new Uint8Array(totalLength);
5018
+ let chunkOffset = 0;
5019
+ for (const chunk of chunks) {
5020
+ decompressedArray.set(chunk, chunkOffset);
5021
+ chunkOffset += chunk.length;
5022
+ }
5023
+ return decompressedArray;
5014
5024
  }
5015
5025
 
5016
5026
  // src/sdk/ws.ts
@@ -6686,6 +6696,8 @@ var ModuleContext = class {
6686
6696
  procedures: [],
6687
6697
  views: [],
6688
6698
  lifeCycleReducers: [],
6699
+ httpHandlers: [],
6700
+ httpRoutes: [],
6689
6701
  caseConversionPolicy: { tag: "SnakeCase" },
6690
6702
  explicitNames: {
6691
6703
  entries: []
@@ -6713,6 +6725,18 @@ var ModuleContext = class {
6713
6725
  value: module.lifeCycleReducers
6714
6726
  }
6715
6727
  );
6728
+ push(
6729
+ module.httpHandlers && {
6730
+ tag: "HttpHandlers",
6731
+ value: module.httpHandlers
6732
+ }
6733
+ );
6734
+ push(
6735
+ module.httpRoutes && {
6736
+ tag: "HttpRoutes",
6737
+ value: module.httpRoutes
6738
+ }
6739
+ );
6716
6740
  push(
6717
6741
  module.rowLevelSecurity && {
6718
6742
  tag: "RowLevelSecurity",
@@ -6971,6 +6995,12 @@ var Lifecycle = t.enum("Lifecycle", {
6971
6995
  OnConnect: t.unit(),
6972
6996
  OnDisconnect: t.unit()
6973
6997
  });
6998
+ var MethodOrAny = t.enum("MethodOrAny", {
6999
+ Any: t.unit(),
7000
+ get Method() {
7001
+ return HttpMethod;
7002
+ }
7003
+ });
6974
7004
  var MiscModuleExport = t.enum("MiscModuleExport", {
6975
7005
  get TypeAlias() {
6976
7006
  return TypeAlias;
@@ -7028,6 +7058,16 @@ var RawConstraintDefV9 = t.object("RawConstraintDefV9", {
7028
7058
  return RawConstraintDataV9;
7029
7059
  }
7030
7060
  });
7061
+ var RawHttpHandlerDefV10 = t.object("RawHttpHandlerDefV10", {
7062
+ sourceName: t.string()
7063
+ });
7064
+ var RawHttpRouteDefV10 = t.object("RawHttpRouteDefV10", {
7065
+ handlerFunction: t.string(),
7066
+ get method() {
7067
+ return MethodOrAny;
7068
+ },
7069
+ path: t.string()
7070
+ });
7031
7071
  var RawIndexAlgorithm = t.enum("RawIndexAlgorithm", {
7032
7072
  BTree: t.array(t.u16()),
7033
7073
  Hash: t.array(t.u16()),
@@ -7124,6 +7164,12 @@ var RawModuleDefV10Section = t.enum("RawModuleDefV10Section", {
7124
7164
  },
7125
7165
  get ExplicitNames() {
7126
7166
  return ExplicitNames;
7167
+ },
7168
+ get HttpHandlers() {
7169
+ return t.array(RawHttpHandlerDefV10);
7170
+ },
7171
+ get HttpRoutes() {
7172
+ return t.array(RawHttpRouteDefV10);
7127
7173
  }
7128
7174
  });
7129
7175
  var RawModuleDefV8 = t.object("RawModuleDefV8", {