@wix/legends-platform-sdk 1.21.0 → 1.22.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.
@@ -1,14 +1,14 @@
1
1
  import React from 'react';
2
2
  export declare const Video: React.ForwardRefExoticComponent<{
3
- mirror?: boolean | undefined;
4
- automirror?: boolean | undefined;
3
+ mirror?: boolean;
4
+ automirror?: boolean;
5
5
  type: "user" | "agent" | "screen";
6
- fit?: "contain" | "cover" | undefined;
7
- fallback?: React.ComponentType<import("./types").FallbackProps> | undefined;
8
- pip?: boolean | undefined;
9
- onPiPEnter?: (() => void) | undefined;
10
- onPiPExit?: (() => void) | undefined;
11
- onPiPError?: ((error: Error) => void) | undefined;
6
+ fit?: "contain" | "cover";
7
+ fallback?: React.ComponentType<import("./types").FallbackProps>;
8
+ pip?: boolean;
9
+ onPiPEnter?: () => void;
10
+ onPiPExit?: () => void;
11
+ onPiPError?: (error: Error) => void;
12
12
  pipFallback?: React.ReactNode;
13
13
  } & Omit<React.VideoHTMLAttributes<HTMLVideoElement>, "onResize"> & React.RefAttributes<HTMLVideoElement>>;
14
14
  //# sourceMappingURL=Video.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Video.d.ts","sourceRoot":"","sources":["../../../../src/components/Video/Video.tsx"],"names":[],"mappings":"AAAA,OAAO,KAKN,MAAM,OAAO,CAAC;AAYf,eAAO,MAAM,KAAK;;;;;;;;;;;0GAwEhB,CAAC"}
1
+ {"version":3,"file":"Video.d.ts","sourceRoot":"","sources":["../../../../src/components/Video/Video.tsx"],"names":[],"mappings":"AAAA,OAAO,KAKN,MAAM,OAAO,CAAC;AAYf,eAAO,MAAM,KAAK;;;;;eARa,MAAO,aACtC;;;;;kBASM,MACF,SAAQ;0GAqEV,CAAC"}
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type UseAttachVideoProps = {
3
2
  type: 'user' | 'agent' | 'screen';
4
3
  };
@@ -1 +1 @@
1
- {"version":3,"file":"useAttachVideo.d.ts","sourceRoot":"","sources":["../../../../src/components/Video/useAttachVideo.ts"],"names":[],"mappings":";AAGA,KAAK,mBAAmB,GAAG;IACzB,IAAI,EAAE,MAAM,GAAG,OAAO,GAAG,QAAQ,CAAC;CACnC,CAAC;AAEF,wBAAgB,cAAc,CAAC,EAAE,IAAI,EAAE,EAAE,mBAAmB;;;EA0B3D"}
1
+ {"version":3,"file":"useAttachVideo.d.ts","sourceRoot":"","sources":["../../../../src/components/Video/useAttachVideo.ts"],"names":[],"mappings":"AAGA,KAAK,mBAAmB,GAAG;IACzB,IAAI,EAAE,MAAM,GAAG,OAAO,GAAG,QAAQ,CAAC;CACnC,CAAC;AAEF,wBAAgB,cAAc,CAAC,EAAE,IAAI,EAAE,EAAE,mBAAmB;;;EA0B3D"}
@@ -1 +1 @@
1
- {"version":3,"file":"useEmitConversationEvent.d.ts","sourceRoot":"","sources":["../../../../src/hooks/useConversationEvents/useEmitConversationEvent.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAE/D,wBAAgB,wBAAwB,gBAIzB,iBAAiB,WACnB,aAAa,iBAAiB,CAAC,UAM3C"}
1
+ {"version":3,"file":"useEmitConversationEvent.d.ts","sourceRoot":"","sources":["../../../../src/hooks/useConversationEvents/useEmitConversationEvent.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAE/D,wBAAgB,wBAAwB,gBAIzB,iBAAiB,WACnB,YAAY,CAAC,iBAAiB,CAAC,UAM3C"}
@@ -1,3 +1,3 @@
1
1
  export declare const SPEECH_ACTIVITY_PROCESSOR_NAME = "speech-activity-processor";
2
- export declare const SPEECH_ACTIVITY_PROCESSOR_SOURCE: string;
2
+ export declare const SPEECH_ACTIVITY_PROCESSOR_SOURCE = "\nclass SpeechActivityProcessor extends AudioWorkletProcessor {\n constructor(options) {\n super();\n const opts = (options && options.processorOptions) || {};\n this.threshold = typeof opts.thresholdRms === 'number' ? opts.thresholdRms : 0.015;\n this.hangoverBlocks = typeof opts.hangoverBlocks === 'number' ? opts.hangoverBlocks : 8;\n this.speaking = false;\n this.silentBlockCount = 0;\n }\n\n process(inputs) {\n const input = inputs[0];\n const channel = input && input[0];\n if (!channel || channel.length === 0) {\n return true;\n }\n\n let sumSquares = 0;\n for (let i = 0; i < channel.length; i++) {\n sumSquares += channel[i] * channel[i];\n }\n const rms = Math.sqrt(sumSquares / channel.length);\n const isLoud = rms > this.threshold;\n\n if (isLoud) {\n this.silentBlockCount = 0;\n if (!this.speaking) {\n this.speaking = true;\n this.port.postMessage({ type: 'onset', rms: rms });\n }\n } else if (this.speaking) {\n this.silentBlockCount += 1;\n if (this.silentBlockCount >= this.hangoverBlocks) {\n this.speaking = false;\n this.port.postMessage({ type: 'offset', rms: rms });\n }\n }\n return true;\n }\n}\n\nregisterProcessor('speech-activity-processor', SpeechActivityProcessor);\n";
3
3
  //# sourceMappingURL=speechActivityProcessorSource.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"speechActivityProcessorSource.d.ts","sourceRoot":"","sources":["../../../../src/hooks/useSpeechActivityDetector/speechActivityProcessorSource.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,8BAA8B,8BAA8B,CAAC;AAE1E,eAAO,MAAM,gCAAgC,QA2C5C,CAAC"}
1
+ {"version":3,"file":"speechActivityProcessorSource.d.ts","sourceRoot":"","sources":["../../../../src/hooks/useSpeechActivityDetector/speechActivityProcessorSource.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,8BAA8B,8BAA8B,CAAC;AAE1E,eAAO,MAAM,gCAAgC,yzCA2C5C,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../src/hooks/useTextChat/helpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAC1D,OAAO,KAAK,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAEpE,KAAK,aAAa,GAAG,YAAY,CAAC,mBAAmB,CAAC,CAAC;AAEvD,wBAAgB,MAAM,CAAC,OAAO,EAAE,WAAW,UAC3B,aAAa,GAAG,SAAS,mBAaxC;AAED,wBAAgB,UAAU,CAAC,QAAQ,EAAE,WAAW,EAAE,UAClC,aAAa,GAAG,SAAS,mBASxC"}
1
+ {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../src/hooks/useTextChat/helpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAC1D,OAAO,KAAK,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAEpE,KAAK,aAAa,GAAG,YAAY,CAAC,mBAAmB,CAAC,CAAC;AAEvD,wBAAgB,MAAM,CAAC,OAAO,EAAE,WAAW,UAC3B,aAAa,GAAG,SAAS,KAAG,aAAa,CAaxD;AAED,wBAAgB,UAAU,CAAC,QAAQ,EAAE,WAAW,EAAE,UAClC,aAAa,GAAG,SAAS,KAAG,aAAa,CASxD"}
@@ -7,17 +7,17 @@ export declare function useTextChat(options?: UseTextChatOptions): {
7
7
  pending: {
8
8
  submittedAt: number;
9
9
  payload: import("../../types").SendMessageParams;
10
- status: import("@tanstack/query-core/build/legacy/hydration-BlEVG2Lp").aS;
10
+ status: import("@tanstack/react-query").MutationStatus;
11
11
  execute: (payload: import("../../types").SendMessageParams) => Promise<unknown>;
12
12
  }[];
13
13
  messages: ChatMessage[];
14
14
  fetchNext: () => void;
15
- refetch: (options?: import("@tanstack/query-core/build/legacy/hydration-BlEVG2Lp").aq | undefined) => Promise<import("@tanstack/query-core/build/legacy/hydration-BlEVG2Lp").aH<ChatMessage[], Error>>;
15
+ refetch: (options?: import("@tanstack/react-query").RefetchOptions) => Promise<import("@tanstack/react-query").QueryObserverResult<ChatMessage[], Error>>;
16
16
  send: (message: {
17
- message?: string | undefined;
18
- chatConfig?: object | undefined;
19
- attachments?: ChatMessageAttachment[] | undefined;
20
- metadata?: SendMessageMetadata | undefined;
17
+ message?: string;
18
+ chatConfig?: object;
19
+ attachments?: ChatMessageAttachment[];
20
+ metadata?: SendMessageMetadata;
21
21
  }) => Promise<import("./useToolAwareSend").SendChatMessageResponse>;
22
22
  };
23
23
  export {};
@@ -1 +1 @@
1
- {"version":3,"file":"useTextChat.d.ts","sourceRoot":"","sources":["../../../../src/hooks/useTextChat/useTextChat.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,WAAW,EACX,qBAAqB,EACrB,mBAAmB,EACpB,MAAM,aAAa,CAAC;AAKrB,UAAU,kBAAkB;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,wBAAgB,WAAW,CAAC,OAAO,GAAE,kBAAuB;;;;;;;;;;;;;;;;;EAqD3D"}
1
+ {"version":3,"file":"useTextChat.d.ts","sourceRoot":"","sources":["../../../../src/hooks/useTextChat/useTextChat.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,WAAW,EACX,qBAAqB,EACrB,mBAAmB,EACpB,MAAM,aAAa,CAAC;AAKrB,UAAU,kBAAkB;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,wBAAgB,WAAW,CAAC,OAAO,GAAE,kBAAuB;;;;;;;;;;;oBAyC5B;QAC5B,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,WAAW,CAAC,EAAE,qBAAqB,EAAE,CAAC;QACtC,QAAQ,CAAC,EAAE,mBAAmB,CAAC;KAChC;EAOF"}
@@ -47,7 +47,7 @@ export declare function useTextChatStream(options?: UseTextChatStreamOptions): {
47
47
  pending: never[];
48
48
  messages: StreamingChatMessage[];
49
49
  fetchNext: () => void;
50
- refetch: (options?: import("@tanstack/query-core/build/legacy/hydration-BlEVG2Lp").aq | undefined) => Promise<import("@tanstack/query-core/build/legacy/hydration-BlEVG2Lp").aH<ChatMessage[], Error>>;
50
+ refetch: (options?: import("@tanstack/react-query").RefetchOptions) => Promise<import("@tanstack/react-query").QueryObserverResult<ChatMessage[], Error>>;
51
51
  send: ({ message, chatConfig, attachments, metadata, }: SendStreamMessageParams) => Promise<StreamSendResult>;
52
52
  };
53
53
  //# sourceMappingURL=useTextChatStream.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useTextChatStream.d.ts","sourceRoot":"","sources":["../../../../src/hooks/useTextChat/useTextChatStream.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAC;AAItE,YAAY,EACV,eAAe,EACf,uBAAuB,GACxB,MAAM,qBAAqB,CAAC;AAE7B;;;;GAIG;AACH,MAAM,MAAM,oBAAoB,GAAG,WAAW,GAAG;IAC/C,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,YAAY,CAAC,EAAE,WAAW,GAAG,SAAS,CAAC;CACxC,CAAC;AAEF,MAAM,WAAW,wBAAwB;IACvC,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAEjC,OAAO,CAAC,EAAE,CAAC,GAAG,EAAE,KAAK,KAAK,IAAI,CAAC;IAG/B,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,uBAAuB;IACtC,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,qBAAqB,EAAE,CAAC;IACtC,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;;;GAIG;AACH,MAAM,MAAM,gBAAgB,GAAG;IAC7B,EAAE,EAAE,OAAO,CAAC;IACZ,eAAe,EAAE,OAAO,CAAC;IACzB,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC;AAKF;;;;;;;;;;GAUG;AACH,wBAAgB,iBAAiB,CAAC,OAAO,GAAE,wBAA6B;;;;;;4DAqFjE,uBAAuB,KAAG,QAAQ,gBAAgB,CAAC;EA2IzD"}
1
+ {"version":3,"file":"useTextChatStream.d.ts","sourceRoot":"","sources":["../../../../src/hooks/useTextChat/useTextChatStream.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAC;AAItE,YAAY,EACV,eAAe,EACf,uBAAuB,GACxB,MAAM,qBAAqB,CAAC;AAE7B;;;;GAIG;AACH,MAAM,MAAM,oBAAoB,GAAG,WAAW,GAAG;IAC/C,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,YAAY,CAAC,EAAE,WAAW,GAAG,SAAS,CAAC;CACxC,CAAC;AAEF,MAAM,WAAW,wBAAwB;IACvC,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAEjC,OAAO,CAAC,EAAE,CAAC,GAAG,EAAE,KAAK,KAAK,IAAI,CAAC;IAG/B,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,uBAAuB;IACtC,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,qBAAqB,EAAE,CAAC;IACtC,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;;;GAIG;AACH,MAAM,MAAM,gBAAgB,GAAG;IAC7B,EAAE,EAAE,OAAO,CAAC;IACZ,eAAe,EAAE,OAAO,CAAC;IACzB,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC;AAKF;;;;;;;;;;GAUG;AACH,wBAAgB,iBAAiB,CAAC,OAAO,GAAE,wBAA6B;;aAsNrD,KAAK,EAAE;;;;4DAjInB,uBAAuB,KAAG,OAAO,CAAC,gBAAgB,CAAC;EA2IzD"}
@@ -3,9 +3,9 @@ export interface SendChatMessageResponse {
3
3
  functionCalls?: FunctionCall[];
4
4
  }
5
5
  export declare function useToolAwareSend(chatId: string, namespace: string): (message: {
6
- message?: string | undefined;
7
- chatConfig?: object | undefined;
8
- attachments?: ChatMessageAttachment[] | undefined;
9
- metadata?: SendMessageMetadata | undefined;
6
+ message?: string;
7
+ chatConfig?: object;
8
+ attachments?: ChatMessageAttachment[];
9
+ metadata?: SendMessageMetadata;
10
10
  }) => Promise<SendChatMessageResponse>;
11
11
  //# sourceMappingURL=useToolAwareSend.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useToolAwareSend.d.ts","sourceRoot":"","sources":["../../../../src/hooks/useTextChat/useToolAwareSend.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,YAAY,EACZ,qBAAqB,EAErB,mBAAmB,EACpB,MAAM,aAAa,CAAC;AAMrB,MAAM,WAAW,uBAAuB;IACtC,aAAa,CAAC,EAAE,YAAY,EAAE,CAAC;CAChC;AAED,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM;;;;;uCAgEjE"}
1
+ {"version":3,"file":"useToolAwareSend.d.ts","sourceRoot":"","sources":["../../../../src/hooks/useTextChat/useToolAwareSend.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,YAAY,EACZ,qBAAqB,EAErB,mBAAmB,EACpB,MAAM,aAAa,CAAC;AAMrB,MAAM,WAAW,uBAAuB;IACtC,aAAa,CAAC,EAAE,YAAY,EAAE,CAAC;CAChC;AAED,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,aAkC5B;IAClC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,qBAAqB,EAAE,CAAC;IACtC,QAAQ,CAAC,EAAE,mBAAmB,CAAC;CAChC,sCAyBF"}
@@ -1 +1 @@
1
- {"version":3,"file":"useToolCallingRuntime.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/useTools/runtime/useToolCallingRuntime.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAIzD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AAQ7D,OAAO,KAAK,EACV,gBAAgB,EAChB,kBAAkB,EAGnB,MAAM,SAAS,CAAC;AAEjB,wBAAgB,qBAAqB,CACnC,SAAS,SAAS,sBAAsB;;gDA6BrB,SAAS,iCACK,kBAAkB,EAAE,KAAK,QAAQ,SAAS,CAAC;yCAWhE,gBAAgB,WACjB,kBAAkB;EAe9B"}
1
+ {"version":3,"file":"useToolCallingRuntime.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/useTools/runtime/useToolCallingRuntime.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAIzD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AAQ7D,OAAO,KAAK,EACV,gBAAgB,EAChB,kBAAkB,EAGnB,MAAM,SAAS,CAAC;AAEjB,wBAAgB,qBAAqB,CACnC,SAAS,SAAS,sBAAsB;;gDA6BrB,SAAS,uBACL,CAAC,OAAO,EAAE,kBAAkB,EAAE,KAAK,OAAO,CAAC,SAAS,CAAC;yCAWhE,gBAAgB,WACjB,kBAAkB;EAe9B"}
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { ToolsRegistry } from '../hooks';
3
2
  import type { IPersonaChatService } from '../types';
4
3
  export interface ISdkConsumerContext {
@@ -1 +1 @@
1
- {"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../../src/sdk-consumer/context.ts"],"names":[],"mappings":";AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEpD,MAAM,WAAW,mBAAmB;IAClC,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,aAAa,CAAC;IACtB,kBAAkB,CAAC,EAAE,mBAAmB,CAAC;CAC1C;AAED,eAAO,MAAM,kBAAkB,8CAI7B,CAAC;AAEH,wBAAgB,cAAc,wBAE7B"}
1
+ {"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../../src/sdk-consumer/context.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEpD,MAAM,WAAW,mBAAmB;IAClC,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,aAAa,CAAC;IACtB,kBAAkB,CAAC,EAAE,mBAAmB,CAAC;CAC1C;AAED,eAAO,MAAM,kBAAkB,8CAI7B,CAAC;AAEH,wBAAgB,cAAc,wBAE7B"}
@@ -1 +1 @@
1
- {"version":3,"file":"http.d.ts","sourceRoot":"","sources":["../../../src/types/http.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,iBAAiB;IAChC,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,QAAQ,GAAG,OAAO,CAAC;IACpD,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAClC;AAED,MAAM,WAAW,WAAW;IAC1B,OAAO,CAAC,CAAC,EAAE,MAAM,EAAE,iBAAiB,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;CACnD;AAED,qBAAa,SAAU,SAAQ,KAAK;aAEhB,MAAM,EAAE,MAAM;aAEd,IAAI,CAAC;gBAFL,MAAM,EAAE,MAAM,EAC9B,OAAO,EAAE,MAAM,EACC,IAAI,CAAC,SAAS;CAKjC"}
1
+ {"version":3,"file":"http.d.ts","sourceRoot":"","sources":["../../../src/types/http.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,iBAAiB;IAChC,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,QAAQ,GAAG,OAAO,CAAC;IACpD,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAClC;AAED,MAAM,WAAW,WAAW;IAC1B,OAAO,CAAC,CAAC,EAAE,MAAM,EAAE,iBAAiB,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;CACnD;AAED,qBAAa,SAAU,SAAQ,KAAK;aAEhB,MAAM,EAAE,MAAM;aAEd,IAAI,CAAC,EAAE,OAAO;gBAFd,MAAM,EAAE,MAAM,EAC9B,OAAO,EAAE,MAAM,EACC,IAAI,CAAC,EAAE,OAAO;CAKjC"}
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.21.0",
2
+ "version": "1.22.0",
3
3
  "name": "@wix/legends-platform-sdk",
4
4
  "license": "MIT",
5
5
  "author": {
@@ -61,10 +61,10 @@
61
61
  "@types/jest": "^27.4.0",
62
62
  "@types/react": "^18.2.15",
63
63
  "@types/react-dom": "^18.2.7",
64
- "@wix/eslint-config-yoshi": "^6.190.0",
65
- "@wix/jest-yoshi-preset": "^6.190.0",
66
- "@wix/yoshi-flow-library": "^6.190.0",
67
- "@wix/yoshi-style-dependencies": "^6.190.0",
64
+ "@wix/eslint-config-yoshi": "^6.192.0",
65
+ "@wix/jest-yoshi-preset": "^6.192.0",
66
+ "@wix/yoshi-flow-library": "^6.192.0",
67
+ "@wix/yoshi-style-dependencies": "^6.192.0",
68
68
  "express": "^4.17.2",
69
69
  "lodash": "^4.18.1",
70
70
  "react": "^19.0.0",
@@ -103,5 +103,5 @@
103
103
  "wallaby": {
104
104
  "autoDetect": true
105
105
  },
106
- "falconPackageHash": "c403b16a291bbce2547100d018cc92b0323493c61aaf67ddca4096fc"
106
+ "falconPackageHash": "27dd428141535c8e48698d0ce3873972b01f69b8606ebaa900da09aa"
107
107
  }