@solibo/home-api 1.1.36 → 1.1.38
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/package.json +1 -1
- package/solibo-sdk-sdk-home-api.d.mts +6 -0
- package/solibo-sdk-sdk-home-api.mjs +8305 -7504
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
package/package.json
CHANGED
|
@@ -12982,6 +12982,12 @@ export declare class HomepageApi extends ApiClient.$metadata$.constructor {
|
|
|
12982
12982
|
deletePost(companyId: bigint, postId: bigint, purchaseBundleId?: Nullable<bigint>, publishChanges?: Nullable<boolean>): Promise<HttpResponse<void>>;
|
|
12983
12983
|
deletePostContent(companyId: bigint, contentTypeIdentifier: string, contentId: string, fileName: string): Promise<HttpResponse<void>>;
|
|
12984
12984
|
deletePracticalInfo(companyId: bigint, practicalInformationId: bigint, purchaseBundleId?: Nullable<bigint>, publishChanges?: Nullable<boolean>): Promise<HttpResponse<void>>;
|
|
12985
|
+
homepageRssByDomain(domainName: string): Promise<HttpResponse<string>>;
|
|
12986
|
+
homepageRssBySlug(companySlug: string, slug: string): Promise<HttpResponse<string>>;
|
|
12987
|
+
homepageRssOppslagByDomain(domainName: string): Promise<HttpResponse<string>>;
|
|
12988
|
+
homepageRssOppslagBySlug(companySlug: string): Promise<HttpResponse<string>>;
|
|
12989
|
+
homepageRssPraktiskInfoByDomain(domainName: string): Promise<HttpResponse<string>>;
|
|
12990
|
+
homepageRssPraktiskInfoBySlug(companySlug: string): Promise<HttpResponse<string>>;
|
|
12985
12991
|
listHomepageNotificationGroups(companyId: bigint): Promise<HttpResponse<KtList<NotificationGroup>>>;
|
|
12986
12992
|
showContent(contentTypeIdentifier: string, companyId: bigint, contentId: string, fileName: string, size?: Nullable<string>): Promise<HttpResponse<void>>;
|
|
12987
12993
|
showHomepage(companyId: bigint): Promise<HttpResponse<Homepage>>;
|