@supernova-studio/client 1.0.0-alpha.15 → 1.0.0-alpha.16

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.
package/dist/index.mjs CHANGED
@@ -7689,7 +7689,6 @@ var DesignSystemComponentEndpoint = class {
7689
7689
  };
7690
7690
 
7691
7691
  // src/api/endpoints/design-system/versions/elements-action.ts
7692
- import { randomUUID } from "node:crypto";
7693
7692
  var ElementsActionEndpoint = class {
7694
7693
  constructor(requestExecutor) {
7695
7694
  this.requestExecutor = requestExecutor;
@@ -7719,8 +7718,6 @@ var ElementsActionEndpoint = class {
7719
7718
  return this.action(dsId, vId, { type: "FigmaNodeRenderAsync", nodes });
7720
7719
  }
7721
7720
  async action(dsId, vId, input) {
7722
- if (!input.tId)
7723
- input.tId = randomUUID();
7724
7721
  return this.requestExecutor.json(
7725
7722
  `/design-systems/${dsId}/versions/${vId}/elements-action`,
7726
7723
  DTOElementActionOutput,