@woodylab/payload 0.0.12 → 0.0.13

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,3 @@
1
+ import { GlobalConfig } from "payload";
2
+ declare const configFooter: GlobalConfig;
3
+ export default configFooter;
@@ -0,0 +1,3 @@
1
+ import { GlobalConfig } from "payload";
2
+ declare const configHeader: GlobalConfig;
3
+ export default configHeader;
@@ -0,0 +1,9 @@
1
+ import { CollectionSlug, PayloadRequest } from "payload";
2
+ declare const collectionPrefixMap: Partial<Record<CollectionSlug, string>>;
3
+ type Props = {
4
+ collection: keyof typeof collectionPrefixMap;
5
+ slug: string;
6
+ req: PayloadRequest;
7
+ };
8
+ export declare const generatePreviewPath: ({ collection, slug }: Props) => string;
9
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@woodylab/payload",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.esm.js",