-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathindex.ts
128 lines (116 loc) · 2.38 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
export type {
AppExtensionSDK,
BaseExtensionSDK,
DialogExtensionSDK,
EditorExtensionSDK,
FieldExtensionSDK,
HomeExtensionSDK,
KnownSDK,
PageExtensionSDK,
SidebarExtensionSDK,
ConfigAppSDK,
BaseAppSDK,
DialogAppSDK,
EditorAppSDK,
FieldAppSDK,
HomeAppSDK,
KnownAppSDK,
PageAppSDK,
SidebarAppSDK,
AccessAPI,
ArchiveableAction,
ConnectMessage,
ContentTypeAPI,
CrudAction,
EditorLocaleSettings,
IdsAPI,
LocalesAPI,
LocationAPI,
Locations,
NotifierAPI,
ParametersAPI,
PublishableAction,
SharedEditorSDK,
UserAPI,
JSONPatchItem,
HostnamesAPI,
} from './api.types'
export type {
AppConfigAPI,
AppState,
OnConfigureHandler,
OnConfigureHandlerReturn,
} from './app.types'
export type {
DialogsAPI,
EntityDialogOptions,
OpenAlertOptions,
OpenConfirmOptions,
OpenCustomWidgetOptions,
} from './dialogs.types'
export type {
Asset,
CanonicalRequest,
ContentType,
ContentTypeField,
EditorInterface,
Entry,
Metadata,
Role,
ScheduledAction,
SpaceMembership,
Tag,
TagVisibility,
Task,
Team,
User,
WorkflowDefinition,
} from './entities'
export type { EntryAPI, TaskAPI, TaskInputData } from './entry.types'
export type { FieldInfo, EntryFieldInfo, EntryFieldAPI } from './field.types'
export type { FieldAPI } from './field-locale.types'
export type {
NavigatorAPI,
AppPageLocationOptions,
NavigatorAPIOptions,
NavigatorOpenResponse,
NavigatorPageResponse,
NavigatorSlideInfo,
PageExtensionOptions,
} from './navigator.types'
export type { SpaceAPI } from './space.types'
export type {
SearchQuery,
CollectionResponse,
CursorBasedCollectionResponse,
EntrySys,
ContentEntitySys,
ContentEntityType,
FieldType,
FieldLinkType,
Items,
Link,
WithOptionalId,
WithId,
SerializedJSONValue,
} from './utils'
export type {
DateRangeValidationError,
InValidationError,
LinkContentTypeValidationError,
LinkMimetypeGroupValidationError,
NotResolvableValidationError,
ProhibitRegexpValidationError,
RangeValidationError,
RegexpValidationError,
RequiredValidationError,
SizeValidationError,
TypeValidationError,
UniqueValidationError,
UnknownValidationError,
ValidationError,
AllowedResourceValidationError,
AllowedResourcesValidationError,
} from './validation-error'
export type { WindowAPI } from './window.types'
export type { CMAClient } from './cmaClient.types'