We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
presentation
CustomApiField
1 parent 20737e4 commit d10b14aCopy full SHA for d10b14a
src/types/custom-apis.ts
@@ -6,7 +6,9 @@
6
7
import { Identifiable, Resource, ResourcePage } from './core';
8
9
-
+export interface Presentation {
10
+ sort_order: number
11
+}
12
export interface CustomApiBase {
13
name: string
14
description: string
@@ -66,7 +68,8 @@ export interface CustomApiFieldBase {
66
68
type: string
67
69
slug: string
70
validation?: CustomFieldValidation,
- use_as_url_slug: boolean
71
+ use_as_url_slug: boolean,
72
+ presentation?: Presentation
73
}
74
75
export interface CustomApiField extends Identifiable, CustomApiFieldBase {
0 commit comments