@rendley/sdk 1.12.17 → 1.12.19

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,9 +1,10 @@
1
1
  import { z } from "zod";
2
2
  export declare enum AnimationSpaceEnum {
3
- ABSOLUTE = 0,
4
- RELATIVE_ADDITIVE = 1,
5
- RELATIVE_MULTIPLICATIVE = 2,
6
- PERCENTAGE = 3
3
+ ABSOLUTE = 0,// keyValue
4
+ RELATIVE_ADDITIVE = 1,// propertyValue + keyValue
5
+ RELATIVE_MULTIPLICATIVE = 2,// propertyValue * keyValue
6
+ PERCENTAGE = 3,// propertyValue * keyValue / 100
7
+ ADDITIVE_MULTIPLICATIVE_TO_RELATIVE = 4
7
8
  }
8
9
  export declare enum OutOfRangeEnum {
9
10
  NONE = "none",
@@ -134,7 +135,7 @@ export declare const PropertyAnimationSchema: z.ZodObject<{
134
135
  outOutOfRange?: OutOfRangeEnum | undefined;
135
136
  }>;
136
137
  export declare const AnimationDataSchema: z.ZodObject<{
137
- name: z.ZodString;
138
+ name: z.ZodDefault<z.ZodString>;
138
139
  speed: z.ZodOptional<z.ZodNumber>;
139
140
  offset: z.ZodOptional<z.ZodNumber>;
140
141
  amplification: z.ZodOptional<z.ZodNumber>;
@@ -206,7 +207,6 @@ export declare const AnimationDataSchema: z.ZodObject<{
206
207
  offset?: number | undefined;
207
208
  amplification?: number | undefined;
208
209
  }, {
209
- name: string;
210
210
  propertyAnimations: {
211
211
  property: string;
212
212
  keyframes: {
@@ -219,6 +219,7 @@ export declare const AnimationDataSchema: z.ZodObject<{
219
219
  inOutOfRange?: OutOfRangeEnum | undefined;
220
220
  outOutOfRange?: OutOfRangeEnum | undefined;
221
221
  }[];
222
+ name?: string | undefined;
222
223
  speed?: number | undefined;
223
224
  offset?: number | undefined;
224
225
  amplification?: number | undefined;
@@ -0,0 +1 @@
1
+ export declare function isLocalNetworkHost(): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rendley/sdk",
3
- "version": "1.12.17",
3
+ "version": "1.12.19",
4
4
  "license": "LICENSE",
5
5
  "author": "Onix Technologies",
6
6
  "homepage": "https://rendleysdk.com",