zakeke-configurator-react 0.0.79 → 0.0.82

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.
@@ -170,4 +170,7 @@ export declare class ZakekeEnvironment {
170
170
  setMeshDesignVisibility: (meshId: string, visible: boolean) => void;
171
171
  addFocusAttributesListener: (listenerFunction: FocusAttributesEventListener) => void;
172
172
  clearListeners: () => void;
173
+ setCameraLocked: (isBlocked?: boolean | undefined) => void;
174
+ isSceneTryOnEnabled: () => boolean;
175
+ getTryOnUrl: () => Promise<string>;
173
176
  }
@@ -80,5 +80,8 @@ export interface ProviderValue {
80
80
  IS_ANDROID: boolean;
81
81
  IS_IOS: boolean;
82
82
  setBackgroundColor: (color: string, alpha: number) => void;
83
+ getTryOnUrl: () => Promise<string>;
84
+ isSceneTryOnEnabled: () => boolean;
85
+ setCameraLocked: (isBlocked: boolean) => void;
83
86
  }
84
87
  export declare const createProviderValue: (state: AppState, dispatch: React.Dispatch<any>) => ProviderValue;