1 | import type { ContentfulOrganizationAPI } from '../create-organization-api';
|
2 | import type { MetaSysProps, DefaultElements, MakeRequest } from '../common-types';
|
3 | export type Organization = DefaultElements<OrganizationProps> & OrganizationProps & ContentfulOrganizationAPI;
|
4 | export type OrganizationProps = {
|
5 | |
6 |
|
7 |
|
8 | sys: MetaSysProps;
|
9 | |
10 |
|
11 |
|
12 | name: string;
|
13 | };
|
14 |
|
15 |
|
16 |
|
17 | export type OrganizationProp = OrganizationProps;
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 |
|
26 |
|
27 |
|
28 | export declare function wrapOrganization(makeRequest: MakeRequest, data: OrganizationProps): Organization;
|
29 |
|
30 |
|
31 |
|
32 |
|
33 | export declare const wrapOrganizationCollection: (makeRequest: MakeRequest, data: import("../common-types").CollectionProp<OrganizationProps>) => import("../common-types").Collection<Organization, OrganizationProps>;
|