@animaapp/anima-sdk 0.2.3 → 0.2.4

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.d.ts CHANGED
@@ -149,6 +149,7 @@ export declare type GeneratingCodePayload = {
149
149
  };
150
150
 
151
151
  export declare type GetCodeHandler = ((message: SSECodgenMessage) => void) | {
152
+ onQueueing?: () => void;
152
153
  onStart?: ({ sessionId }: {
153
154
  sessionId: string;
154
155
  }) => void;
@@ -264,6 +265,8 @@ export declare class ResponseError extends Error {
264
265
  }
265
266
 
266
267
  export declare type SSECodgenMessage = {
268
+ type: "queueing";
269
+ } | {
267
270
  type: "start";
268
271
  sessionId: string;
269
272
  } | {