tinacms 2.8.1 → 2.8.3
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/dist/admin/api.d.ts +3 -0
- package/dist/auth/AuthModal.d.ts +1 -4
- package/dist/auth/TinaCloudProvider.d.ts +0 -1
- package/dist/index.js +56079 -55839
- package/dist/index.mjs +56081 -55841
- package/dist/internalClient/index.d.ts +19 -0
- package/dist/toolkit/components/ProgressBar.d.ts +11 -0
- package/dist/toolkit/components/media/media-item.d.ts +10 -0
- package/dist/toolkit/fields/plugins/group-list-field-plugin.d.ts +1 -0
- package/dist/toolkit/fields/plugins/list-field-plugin.d.ts +1 -0
- package/dist/toolkit/form-builder/editorial-workflow-constants.d.ts +17 -0
- package/dist/toolkit/react-modals/modal/modal-header.d.ts +1 -1
- package/dist/toolkit/styles/button.d.ts +1 -1
- package/package.json +4 -4
- package/dist/admin/pages/IndexingPage.d.ts +0 -2
package/dist/admin/api.d.ts
CHANGED
|
@@ -3,6 +3,9 @@ import type { Collection, TinaSchema } from '@tinacms/schema-tools';
|
|
|
3
3
|
import type { Client } from '../internalClient';
|
|
4
4
|
import type { CollectionResponse, DocumentForm } from './types';
|
|
5
5
|
import { SearchClient } from '@tinacms/search/dist/index-client';
|
|
6
|
+
export declare const CREATE_DOCUMENT_GQL = "#graphql\nmutation($collection: String!, $relativePath: String!, $params: DocumentMutation!) {\n createDocument(\n collection: $collection,\n relativePath: $relativePath,\n params: $params\n ){__typename}\n}";
|
|
7
|
+
export declare const UPDATE_DOCUMENT_GQL = "#graphql\nmutation($collection: String!, $relativePath: String!, $params: DocumentUpdateMutation!) {\n updateDocument(\n collection: $collection,\n relativePath: $relativePath,\n params: $params\n ){__typename}\n}";
|
|
8
|
+
export declare const DELETE_DOCUMENT_GQL = "#graphql\nmutation DeleteDocument($collection: String!, $relativePath: String!){\n deleteDocument(collection: $collection, relativePath: $relativePath){\n __typename\n }\n}";
|
|
6
9
|
export interface FilterArgs {
|
|
7
10
|
filterField: string;
|
|
8
11
|
collection?: string;
|
package/dist/auth/AuthModal.d.ts
CHANGED
|
@@ -18,7 +18,6 @@ export interface TinaCloudAuthWallProps {
|
|
|
18
18
|
}[];
|
|
19
19
|
mediaStore?: TinaCloudMediaStoreClass | (() => Promise<TinaCloudMediaStoreClass>);
|
|
20
20
|
}
|
|
21
|
-
export declare const AuthWallInner: ({ children, cms, getModalActions, }: TinaCloudAuthWallProps) => React.JSX.Element;
|
|
22
21
|
/**
|
|
23
22
|
* Provides the ability to setup your CMS and media while also providing an authentication wall so Tina is not enabled without a valid user session.
|
|
24
23
|
*
|