@rendley/sdk 1.12.4 → 1.12.5

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/README.md CHANGED
@@ -24,8 +24,8 @@ The package includes type definitions, so you don't need to worry about setting
24
24
 
25
25
  ## Getting Started
26
26
 
27
- Check out the [documentation](https://docs.rendley.com) to learn more about how to get started creating compositions and building your own video editing software.
27
+ Check out the [documentation](https://docs.rendleysdk.com) to learn more about how to get started creating compositions and building your own video editing software.
28
28
 
29
29
  ## Templates
30
30
 
31
- To further simplify the process, we have [pre-built interfaces](https://docs.rendley.com/video-editor) that allow you to embed our video editing capabilities onto your website with just a few lines of code.
31
+ To further simplify the process, we have [pre-built interfaces](https://docs.rendleysdk.com/video-editor-ui/overview.html) that allow you to embed our video editing capabilities onto your website with just a few lines of code.
package/dist/Engine.d.ts CHANGED
@@ -123,7 +123,7 @@ export declare class Engine {
123
123
  callStaticCustomClipMethod(typeEnum: string, methodName: string, ...args: any[]): any;
124
124
  createCustomClipInstance<T extends CustomClip = CustomClip>(typeEnum: string, ...args: any[]): T;
125
125
  hasCustomClipType(typeEnum: string): boolean;
126
- reset(): void;
126
+ reset(): Promise<void>;
127
127
  isReady(): boolean;
128
128
  isSafeToSerialize(): boolean;
129
129
  serialize(): {
@@ -243,9 +243,9 @@ export declare class Engine {
243
243
  strokeColor: string;
244
244
  strokeThickness: number;
245
245
  wordWrapWidth: number;
246
+ wordWrap: boolean;
246
247
  backgroundPadding: number;
247
248
  backgroundCornerRadius: number;
248
- wordWrap: boolean;
249
249
  leading: number;
250
250
  };
251
251
  highlightTextStyle: {
@@ -3,6 +3,6 @@ export declare const BACKGROUND_SPRITE_NAME = "CANVAS_BACKGROUND_SPRITE";
3
3
  export declare const STAGE_CONTAINER_NAME = "STAGE_CONTAINER";
4
4
  export declare const RENDLEY_CDN: any;
5
5
  export declare const FFMPEG_CDN: string;
6
- export declare const RENDLEY_API_BASE_URL = "https://api.rendley.com/sdk/v1";
6
+ export declare const RENDLEY_API_BASE_URL = "https://api.rendleysdk.com/sdk/v1";
7
7
  export declare const LICENSE_LOCAL_STORAGE_KEY = "license";
8
8
  export declare const getLicenseEndpoint: (licenseName: string, isSublicense?: boolean) => string;