@exabugs/dynamodb-client 1.3.55 → 1.4.1

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.
@@ -1,5 +1,5 @@
1
- // @exabugs/dynamodb-client v1.3.55
2
- // Built: 2026-03-05T02:32:49.521Z
1
+ // @exabugs/dynamodb-client v1.4.1
2
+ // Built: 2026-03-07T00:25:54.929Z
3
3
  "use strict";
4
4
  var __create = Object.create;
5
5
  var __defProp = Object.defineProperty;
@@ -31944,8 +31944,7 @@ async function handleUpdateMany(resource, params, requestId) {
31944
31944
  });
31945
31945
  if (ids.length === 0) {
31946
31946
  if (upsert) {
31947
- const { randomUUID } = await import("crypto");
31948
- const newId = randomUUID();
31947
+ const newId = ulid2();
31949
31948
  ids = [newId];
31950
31949
  logger18.info("Creating new record with filter (upsert: true)", {
31951
31950
  requestId,
@@ -34356,7 +34355,7 @@ async function handler(event) {
34356
34355
  return createCorsResponse(HTTP_STATUS.OK);
34357
34356
  }
34358
34357
  if (event.requestContext.http.method === "GET" && event.requestContext.http.path === "/version") {
34359
- const version = "1.3.55";
34358
+ const version = "1.4.1";
34360
34359
  return createSuccessResponse({ version, timestamp: (/* @__PURE__ */ new Date()).toISOString() }, requestId);
34361
34360
  }
34362
34361
  if (event.requestContext.http.method !== "POST") {