jamespot-user-api 1.0.193 → 1.0.195
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/documentation/assets/search.js +1 -1
- package/documentation/classes/AdminLicenseApi.html +14 -14
- package/documentation/classes/AdminStoreApi.html +1 -1
- package/documentation/classes/AdminUtilsApi.html +1 -1
- package/documentation/classes/JApplicationApi.html +8 -8
- package/documentation/classes/JArticleApi.html +1 -1
- package/documentation/classes/JAssetReservation.html +1 -1
- package/documentation/classes/JAudienceApi.html +1 -1
- package/documentation/classes/JBaseApi.html +1 -1
- package/documentation/classes/JBbbApi.html +1 -1
- package/documentation/classes/JBookmarkApi.html +1 -1
- package/documentation/classes/JBusinessNetworkingApi.html +1 -1
- package/documentation/classes/JCommunityApi.html +1 -1
- package/documentation/classes/JDatasourceApi.html +1 -1
- package/documentation/classes/JDiapazoneApi.html +1 -1
- package/documentation/classes/JFaqApi.html +1 -1
- package/documentation/classes/JFileApi.html +5 -5
- package/documentation/classes/JFilebankApi.html +1 -1
- package/documentation/classes/JGlobalApi.html +1 -1
- package/documentation/classes/JGroupApi.html +12 -12
- package/documentation/classes/JIAApi.html +1 -1
- package/documentation/classes/JLandApi.html +1 -1
- package/documentation/classes/JMessengerApi.html +1 -1
- package/documentation/classes/JObjectApi.html +1 -1
- package/documentation/classes/JSearchApi.html +6 -6
- package/documentation/classes/JShareApi.html +1 -1
- package/documentation/classes/JSocialActionApi.html +1 -1
- package/documentation/classes/JTaxonomyApi.html +2 -2
- package/documentation/classes/JUserApi.html +7 -7
- package/documentation/classes/JWedocApi.html +1 -1
- package/documentation/classes/JWidgetApi.html +1 -1
- package/documentation/classes/JamespotUserApi.html +1 -1
- package/documentation/classes/Network.html +1 -1
- package/documentation/classes/TVDisplayApi.html +1 -1
- package/documentation/classes/WindowBrowser.html +1 -1
- package/documentation/enums/BookmarkType.html +1 -1
- package/documentation/enums/Format.html +1 -1
- package/documentation/enums/GroupModerateStatus.html +1 -1
- package/documentation/enums/StudioApplicationStatus.html +1 -1
- package/documentation/enums/WidgetsName.html +1 -1
- package/documentation/index.html +1 -1
- package/documentation/interfaces/AccessRightObject.html +1 -1
- package/documentation/interfaces/ApiDefaultWrapper.html +1 -1
- package/documentation/interfaces/ApiWrapper.html +1 -1
- package/documentation/interfaces/BaseMessage.html +1 -1
- package/documentation/interfaces/FileBankProps.html +1 -1
- package/documentation/interfaces/FolderProps.html +1 -1
- package/documentation/interfaces/ListFilterSpec.html +1 -1
- package/documentation/interfaces/OF.html +1 -1
- package/documentation/interfaces/PagingResults.html +1 -1
- package/documentation/interfaces/RootFolderProps.html +1 -1
- package/documentation/interfaces/SpotProps.html +1 -1
- package/documentation/interfaces/TaxonomyCreate.html +1 -1
- package/documentation/interfaces/WidgetType.html +1 -1
- package/documentation/interfaces/WindowInterface.html +1 -1
- package/documentation/modules.html +11 -11
- package/lib/jamespot-user-api.js +1 -1
- package/lib/jamespot-user-api.js.map +1 -1
- package/lib/src/apis/animations/animations.d.ts +6 -2
- package/lib/src/types/animations.d.ts +4 -4
- package/lib/src/types/model.d.ts +14 -0
- package/package.json +1 -1
|
@@ -3,10 +3,14 @@ import { AnimationConfigurationType, AnimationStats, ApiWrapper, PagingResults }
|
|
|
3
3
|
export declare class JAnimationsApi extends JBaseApi {
|
|
4
4
|
SaveAnimationConfiguration(animation: Object): Promise<ApiWrapper<AnimationConfigurationType>>;
|
|
5
5
|
DeleteAnimation(): Promise<ApiWrapper<boolean>>;
|
|
6
|
-
GetCurrentAnimation(
|
|
6
|
+
GetCurrentAnimation(options?: {
|
|
7
|
+
signal?: AbortSignal;
|
|
8
|
+
}): Promise<ApiWrapper<AnimationConfigurationType | null>>;
|
|
7
9
|
GetCurrentAnimationApp(): Promise<ApiWrapper<AnimationConfigurationType | null>>;
|
|
8
10
|
ToggleAnimationActive(): Promise<ApiWrapper<boolean>>;
|
|
9
|
-
GetAnimationActive(
|
|
11
|
+
GetAnimationActive(options?: {
|
|
12
|
+
signal?: AbortSignal;
|
|
13
|
+
}): Promise<ApiWrapper<boolean>>;
|
|
10
14
|
GetAnimationStats(name: string): Promise<ApiWrapper<PagingResults<AnimationStats>>>;
|
|
11
15
|
GetAnimationStatsCurrent(uri: string): Promise<ApiWrapper<AnimationStats>>;
|
|
12
16
|
}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const animationVariantSchema: z.ZodUnion<[z.ZodLiteral<"Celebration">, z.ZodLiteral<"Olympics">, z.ZodLiteral<"Maythefourth">, z.ZodLiteral<"Spring">, z.ZodLiteral<"MusicFestival">, z.ZodLiteral<"EasterEggs">, z.ZodLiteral<"CustomAnimation">]>;
|
|
2
|
+
export declare const animationVariantSchema: z.ZodUnion<[z.ZodLiteral<"Halloween">, z.ZodLiteral<"Celebration">, z.ZodLiteral<"Olympics">, z.ZodLiteral<"Maythefourth">, z.ZodLiteral<"Spring">, z.ZodLiteral<"MusicFestival">, z.ZodLiteral<"EasterEggs">, z.ZodLiteral<"CustomAnimation">]>;
|
|
3
3
|
export type AnimationVariant = z.infer<typeof animationVariantSchema>;
|
|
4
4
|
export declare const animationConfigurationTypeSchema: z.ZodObject<{
|
|
5
|
-
name: z.ZodUnion<[z.ZodLiteral<"Celebration">, z.ZodLiteral<"Olympics">, z.ZodLiteral<"Maythefourth">, z.ZodLiteral<"Spring">, z.ZodLiteral<"MusicFestival">, z.ZodLiteral<"EasterEggs">, z.ZodLiteral<"CustomAnimation">]>;
|
|
5
|
+
name: z.ZodUnion<[z.ZodLiteral<"Halloween">, z.ZodLiteral<"Celebration">, z.ZodLiteral<"Olympics">, z.ZodLiteral<"Maythefourth">, z.ZodLiteral<"Spring">, z.ZodLiteral<"MusicFestival">, z.ZodLiteral<"EasterEggs">, z.ZodLiteral<"CustomAnimation">]>;
|
|
6
6
|
activeClickEffect: z.ZodNumber;
|
|
7
7
|
activeDecor: z.ZodNumber;
|
|
8
8
|
auto: z.ZodBoolean;
|
|
9
9
|
audience: z.ZodArray<z.ZodString, "many">;
|
|
10
10
|
}, "strip", z.ZodTypeAny, {
|
|
11
|
-
name: "Celebration" | "Olympics" | "Maythefourth" | "Spring" | "MusicFestival" | "EasterEggs" | "CustomAnimation";
|
|
11
|
+
name: "Halloween" | "Celebration" | "Olympics" | "Maythefourth" | "Spring" | "MusicFestival" | "EasterEggs" | "CustomAnimation";
|
|
12
12
|
audience: string[];
|
|
13
13
|
activeClickEffect: number;
|
|
14
14
|
activeDecor: number;
|
|
15
15
|
auto: boolean;
|
|
16
16
|
}, {
|
|
17
|
-
name: "Celebration" | "Olympics" | "Maythefourth" | "Spring" | "MusicFestival" | "EasterEggs" | "CustomAnimation";
|
|
17
|
+
name: "Halloween" | "Celebration" | "Olympics" | "Maythefourth" | "Spring" | "MusicFestival" | "EasterEggs" | "CustomAnimation";
|
|
18
18
|
audience: string[];
|
|
19
19
|
activeClickEffect: number;
|
|
20
20
|
activeDecor: number;
|
package/lib/src/types/model.d.ts
CHANGED
|
@@ -307,6 +307,14 @@ export declare const widgetTelSchema: z.ZodObject<{
|
|
|
307
307
|
type: "tel";
|
|
308
308
|
}>;
|
|
309
309
|
export type WidgetTel = z.infer<typeof widgetTelSchema>;
|
|
310
|
+
export declare const widgetToggleSchema: z.ZodObject<{
|
|
311
|
+
type: z.ZodLiteral<"toggle">;
|
|
312
|
+
}, "strip", z.ZodTypeAny, {
|
|
313
|
+
type: "toggle";
|
|
314
|
+
}, {
|
|
315
|
+
type: "toggle";
|
|
316
|
+
}>;
|
|
317
|
+
export type WidgetToggle = z.infer<typeof widgetToggleSchema>;
|
|
310
318
|
export declare const widgetOrientedlinksSchema: z.ZodObject<{
|
|
311
319
|
type: z.ZodLiteral<"orientedlinks">;
|
|
312
320
|
params: z.ZodObject<{
|
|
@@ -618,6 +626,12 @@ export declare const widgetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
618
626
|
type: "tel";
|
|
619
627
|
}, {
|
|
620
628
|
type: "tel";
|
|
629
|
+
}>, z.ZodObject<{
|
|
630
|
+
type: z.ZodLiteral<"toggle">;
|
|
631
|
+
}, "strip", z.ZodTypeAny, {
|
|
632
|
+
type: "toggle";
|
|
633
|
+
}, {
|
|
634
|
+
type: "toggle";
|
|
621
635
|
}>, z.ZodObject<{
|
|
622
636
|
type: z.ZodLiteral<"place">;
|
|
623
637
|
options: z.ZodRecord<z.ZodString, z.ZodString>;
|