jamespot-user-api 1.0.156 → 1.0.157
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 +11 -11
- 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/JBookmarkApi.html +1 -1
- package/documentation/classes/JBusinessNetworkingApi.html +1 -1
- package/documentation/classes/JCommunityApi.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 +9 -9
- 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/StudioApplicationStatus.html +1 -1
- package/documentation/index.html +1 -1
- package/documentation/interfaces/AccessRightObject.html +1 -1
- package/documentation/interfaces/AdminLicenseUser.html +1 -1
- package/documentation/interfaces/ApiDefaultWrapper.html +1 -1
- package/documentation/interfaces/ApiWrapper.html +1 -1
- package/documentation/interfaces/BaseAutocomplete.html +1 -1
- package/documentation/interfaces/BaseMessage.html +1 -1
- package/documentation/interfaces/Category.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/ObjectListProps.html +1 -1
- package/documentation/interfaces/PagingResults.html +1 -1
- package/documentation/interfaces/RootFolderProps.html +1 -1
- package/documentation/interfaces/SearchCategoryModel.html +1 -1
- package/documentation/interfaces/SearchCategoryValue.html +1 -1
- package/documentation/interfaces/SearchConfig.html +1 -1
- package/documentation/interfaces/SearchFacetModel.html +1 -1
- package/documentation/interfaces/SearchFacetValueModel.html +1 -1
- package/documentation/interfaces/SearchQuery.html +1 -1
- package/documentation/interfaces/SearchQueryFilterModel.html +1 -1
- package/documentation/interfaces/SearchQueryOption.html +1 -1
- package/documentation/interfaces/SearchQueryResult.html +1 -1
- package/documentation/interfaces/SearchQuerySortModel.html +1 -1
- package/documentation/interfaces/SearchResultCatProps.html +1 -1
- package/documentation/interfaces/SearchResultPropsApp.html +1 -1
- package/documentation/interfaces/SearchResultPropsObject.html +1 -1
- package/documentation/interfaces/SpotProps.html +1 -1
- package/documentation/interfaces/TaxonomyCreate.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/types/hook.d.ts +21 -0
- package/package.json +1 -1
package/lib/src/types/hook.d.ts
CHANGED
|
@@ -57,6 +57,14 @@ declare const fileBankHookSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
57
57
|
order: "ASC" | "DESC";
|
|
58
58
|
}>>;
|
|
59
59
|
export type FileBankHook = z.infer<typeof fileBankHookSchema>;
|
|
60
|
+
declare const spotRssFeedSchema: z.ZodIntersection<z.ZodObject<{
|
|
61
|
+
isActive: z.ZodBoolean;
|
|
62
|
+
}, "strip", z.ZodTypeAny, {
|
|
63
|
+
isActive: boolean;
|
|
64
|
+
}, {
|
|
65
|
+
isActive: boolean;
|
|
66
|
+
}>, z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
67
|
+
export type SpotRssFeed = z.infer<typeof spotRssFeedSchema>;
|
|
60
68
|
/**
|
|
61
69
|
* HookListType
|
|
62
70
|
*/
|
|
@@ -103,6 +111,13 @@ declare const hookListTypeSchema: z.ZodObject<{
|
|
|
103
111
|
orderBy: string;
|
|
104
112
|
order: "ASC" | "DESC";
|
|
105
113
|
}>>>;
|
|
114
|
+
spotRssFeed: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
115
|
+
isActive: z.ZodBoolean;
|
|
116
|
+
}, "strip", z.ZodTypeAny, {
|
|
117
|
+
isActive: boolean;
|
|
118
|
+
}, {
|
|
119
|
+
isActive: boolean;
|
|
120
|
+
}>, z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>>;
|
|
106
121
|
}, "strip", z.ZodTypeAny, {
|
|
107
122
|
DriveHook?: ({
|
|
108
123
|
isActive: boolean;
|
|
@@ -120,6 +135,9 @@ declare const hookListTypeSchema: z.ZodObject<{
|
|
|
120
135
|
orderBy: string;
|
|
121
136
|
order: "ASC" | "DESC";
|
|
122
137
|
}) | undefined;
|
|
138
|
+
spotRssFeed?: ({
|
|
139
|
+
isActive: boolean;
|
|
140
|
+
} & {}) | undefined;
|
|
123
141
|
}, {
|
|
124
142
|
DriveHook?: ({
|
|
125
143
|
isActive: boolean;
|
|
@@ -137,6 +155,9 @@ declare const hookListTypeSchema: z.ZodObject<{
|
|
|
137
155
|
orderBy: string;
|
|
138
156
|
order: "ASC" | "DESC";
|
|
139
157
|
}) | undefined;
|
|
158
|
+
spotRssFeed?: ({
|
|
159
|
+
isActive: boolean;
|
|
160
|
+
} & {}) | undefined;
|
|
140
161
|
}>;
|
|
141
162
|
export type HookListType = z.infer<typeof hookListTypeSchema>;
|
|
142
163
|
export declare const validateIsFormatHookListType: (object: object) => HookListType;
|