@soma-vertical-web/multi-lib 0.0.31 → 0.0.32

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.
@@ -0,0 +1,8 @@
1
+ const e = {}, t = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2
+ __proto__: null,
3
+ default: e
4
+ }, Symbol.toStringTag, { value: "Module" }));
5
+ export {
6
+ t as _,
7
+ e as f
8
+ };
@@ -0,0 +1 @@
1
+ "use strict";const e={},t=Object.freeze(Object.defineProperty({__proto__:null,default:e},Symbol.toStringTag,{value:"Module"}));exports.__viteBrowserExternal=t;exports.fs=e;
@@ -0,0 +1,11 @@
1
+ import { GetContentTypeProps } from '../../../../types/data/api/cms';
2
+
3
+ export declare function cmsBackup(props: GetContentTypeProps): Promise<{
4
+ success: boolean;
5
+ fileName: string;
6
+ error?: undefined;
7
+ } | {
8
+ success: boolean;
9
+ error: {};
10
+ fileName?: undefined;
11
+ }>;
@@ -0,0 +1,3 @@
1
+ import { GetCMSContentTypeProps } from '../../../../types/data/api/cms';
2
+
3
+ export declare function getCMSContentType({ contentType, documentId, versionId, storeId, CMS_PROJECT_NAME, }: GetCMSContentTypeProps): Promise<Response>;
@@ -9,3 +9,5 @@ export declare function getContentType<T>({ contentType, NextCookies, CMS_PROJEC
9
9
  data: never[];
10
10
  error: unknown;
11
11
  }>;
12
+ export * from './backup';
13
+ export * from './content-type';
@@ -0,0 +1,11 @@
1
+ import { GetContentTypeProps } from '../../../types/data/api/cms';
2
+
3
+ export declare function backupContentType({ contentType, storeId, CMS_PROJECT_NAME, NextCookies }: GetContentTypeProps): Promise<{
4
+ success: boolean;
5
+ fileName: string;
6
+ error?: undefined;
7
+ } | {
8
+ success: boolean;
9
+ error: {};
10
+ fileName?: undefined;
11
+ }>;