1 | import type { DefaultElements, MakeRequest, MetaSysProps } from '../common-types';
|
2 | export type PreviewApiKeyProps = {
|
3 | sys: MetaSysProps;
|
4 | name: string;
|
5 | description: string;
|
6 | accessToken: string;
|
7 | };
|
8 | export interface PreviewApiKey extends PreviewApiKeyProps, DefaultElements<PreviewApiKeyProps> {
|
9 | }
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 | export declare function wrapPreviewApiKey(_makeRequest: MakeRequest, data: PreviewApiKeyProps): PreviewApiKey;
|
17 |
|
18 |
|
19 |
|
20 | export declare const wrapPreviewApiKeyCollection: (makeRequest: MakeRequest, data: import("../common-types").CollectionProp<PreviewApiKeyProps>) => import("../common-types").Collection<PreviewApiKey, PreviewApiKeyProps>;
|