ncblock 0.0.1
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/README.md +286 -0
- package/dist/bridge/context.d.ts +44 -0
- package/dist/bridge/context.d.ts.map +1 -0
- package/dist/bridge/context.js +42 -0
- package/dist/bridge/dataSources/dataSource.d.ts +732 -0
- package/dist/bridge/dataSources/dataSource.d.ts.map +1 -0
- package/dist/bridge/dataSources/dataSource.js +37 -0
- package/dist/bridge/dataSources/dataSourcePage.d.ts +117 -0
- package/dist/bridge/dataSources/dataSourcePage.d.ts.map +1 -0
- package/dist/bridge/dataSources/dataSourcePage.js +13 -0
- package/dist/bridge/dataSources/dataSourceValue.d.ts +67 -0
- package/dist/bridge/dataSources/dataSourceValue.d.ts.map +1 -0
- package/dist/bridge/dataSources/dataSourceValue.js +14 -0
- package/dist/bridge/dataSources/dateValue.d.ts +158 -0
- package/dist/bridge/dataSources/dateValue.d.ts.map +1 -0
- package/dist/bridge/dataSources/dateValue.js +59 -0
- package/dist/bridge/dataSources/propertySchema.d.ts +191 -0
- package/dist/bridge/dataSources/propertySchema.d.ts.map +1 -0
- package/dist/bridge/dataSources/propertySchema.js +148 -0
- package/dist/bridge/dataSources/recordPointer.d.ts +10 -0
- package/dist/bridge/dataSources/recordPointer.d.ts.map +1 -0
- package/dist/bridge/dataSources/recordPointer.js +8 -0
- package/dist/bridge/ids.d.ts +21 -0
- package/dist/bridge/ids.d.ts.map +1 -0
- package/dist/bridge/ids.js +3 -0
- package/dist/bridge/incomingType.d.ts +10 -0
- package/dist/bridge/incomingType.d.ts.map +1 -0
- package/dist/bridge/incomingType.js +17 -0
- package/dist/bridge/manifest.d.ts +66 -0
- package/dist/bridge/manifest.d.ts.map +1 -0
- package/dist/bridge/manifest.js +40 -0
- package/dist/bridge/messages/contextChanged.d.ts +20 -0
- package/dist/bridge/messages/contextChanged.d.ts.map +1 -0
- package/dist/bridge/messages/contextChanged.js +10 -0
- package/dist/bridge/messages/createPage.d.ts +233 -0
- package/dist/bridge/messages/createPage.d.ts.map +1 -0
- package/dist/bridge/messages/createPage.js +45 -0
- package/dist/bridge/messages/createPageResult.d.ts +198 -0
- package/dist/bridge/messages/createPageResult.d.ts.map +1 -0
- package/dist/bridge/messages/createPageResult.js +20 -0
- package/dist/bridge/messages/dataSourcesChanged.d.ts +158 -0
- package/dist/bridge/messages/dataSourcesChanged.d.ts.map +1 -0
- package/dist/bridge/messages/dataSourcesChanged.js +13 -0
- package/dist/bridge/messages/getPage.d.ts +203 -0
- package/dist/bridge/messages/getPage.d.ts.map +1 -0
- package/dist/bridge/messages/getPage.js +24 -0
- package/dist/bridge/messages/hostToSandbox.d.ts +974 -0
- package/dist/bridge/messages/hostToSandbox.d.ts.map +1 -0
- package/dist/bridge/messages/hostToSandbox.js +24 -0
- package/dist/bridge/messages/init.d.ts +169 -0
- package/dist/bridge/messages/init.d.ts.map +1 -0
- package/dist/bridge/messages/init.js +17 -0
- package/dist/bridge/messages/invalidHostMessage.d.ts +15 -0
- package/dist/bridge/messages/invalidHostMessage.d.ts.map +1 -0
- package/dist/bridge/messages/invalidHostMessage.js +13 -0
- package/dist/bridge/messages/invalidSandboxMessage.d.ts +15 -0
- package/dist/bridge/messages/invalidSandboxMessage.d.ts.map +1 -0
- package/dist/bridge/messages/invalidSandboxMessage.js +13 -0
- package/dist/bridge/messages/queryDataSource.d.ts +13 -0
- package/dist/bridge/messages/queryDataSource.d.ts.map +1 -0
- package/dist/bridge/messages/queryDataSource.js +11 -0
- package/dist/bridge/messages/queryDataSourceResult.d.ts +77 -0
- package/dist/bridge/messages/queryDataSourceResult.d.ts.map +1 -0
- package/dist/bridge/messages/queryDataSourceResult.js +13 -0
- package/dist/bridge/messages/ready.d.ts +41 -0
- package/dist/bridge/messages/ready.d.ts.map +1 -0
- package/dist/bridge/messages/ready.js +22 -0
- package/dist/bridge/messages/resize.d.ts +12 -0
- package/dist/bridge/messages/resize.d.ts.map +1 -0
- package/dist/bridge/messages/resize.js +10 -0
- package/dist/bridge/messages/sandboxToHost.d.ts +389 -0
- package/dist/bridge/messages/sandboxToHost.d.ts.map +1 -0
- package/dist/bridge/messages/sandboxToHost.js +21 -0
- package/dist/bridge/messages/themeChanged.d.ts +11 -0
- package/dist/bridge/messages/themeChanged.d.ts.map +1 -0
- package/dist/bridge/messages/themeChanged.js +10 -0
- package/dist/bridge/messages/updatePage.d.ts +171 -0
- package/dist/bridge/messages/updatePage.d.ts.map +1 -0
- package/dist/bridge/messages/updatePage.js +14 -0
- package/dist/bridge/messages/updatePageResult.d.ts +197 -0
- package/dist/bridge/messages/updatePageResult.d.ts.map +1 -0
- package/dist/bridge/messages/updatePageResult.js +19 -0
- package/dist/bridge/pages/page.d.ts +651 -0
- package/dist/bridge/pages/page.d.ts.map +1 -0
- package/dist/bridge/pages/page.js +229 -0
- package/dist/bridge/pendingRequests.d.ts +14 -0
- package/dist/bridge/pendingRequests.d.ts.map +1 -0
- package/dist/bridge/pendingRequests.js +27 -0
- package/dist/bridge/theme.d.ts +4 -0
- package/dist/bridge/theme.d.ts.map +1 -0
- package/dist/bridge/theme.js +2 -0
- package/dist/host.d.ts +52 -0
- package/dist/host.d.ts.map +1 -0
- package/dist/host.js +32 -0
- package/dist/index.d.ts +27 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +14 -0
- package/dist/notion.d.ts +113 -0
- package/dist/notion.d.ts.map +1 -0
- package/dist/notion.js +773 -0
- package/dist/pages.d.ts +23 -0
- package/dist/pages.d.ts.map +1 -0
- package/dist/pages.js +30 -0
- package/dist/react.d.ts +171 -0
- package/dist/react.d.ts.map +1 -0
- package/dist/react.js +284 -0
- package/dist/types.d.ts +124 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +1 -0
- package/dist/utils.d.ts +9 -0
- package/dist/utils.d.ts.map +1 -0
- package/dist/utils.js +10 -0
- package/package.json +48 -0
|
@@ -0,0 +1,732 @@
|
|
|
1
|
+
import * as v from "valibot";
|
|
2
|
+
declare const collectionPointerValidator: v.ObjectSchema<{
|
|
3
|
+
readonly id: v.CustomSchema<import("../ids").NotionDataSourceId, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
4
|
+
readonly table: v.StringSchema<undefined>;
|
|
5
|
+
readonly spaceId: v.OptionalSchema<v.CustomSchema<import("../ids").NotionSpaceId, v.ErrorMessage<v.CustomIssue> | undefined>, undefined>;
|
|
6
|
+
}, undefined>;
|
|
7
|
+
export type NotionCollectionPointer = v.InferOutput<typeof collectionPointerValidator>;
|
|
8
|
+
export declare const notionCollectionSchemaValidator: v.ObjectSchema<{
|
|
9
|
+
readonly id: v.OptionalSchema<v.CustomSchema<import("../ids").NotionDataSourceId, v.ErrorMessage<v.CustomIssue> | undefined>, undefined>;
|
|
10
|
+
readonly propertiesById: v.RecordSchema<v.StringSchema<undefined>, v.VariantSchema<"type", [v.ObjectSchema<{
|
|
11
|
+
readonly type: v.LiteralSchema<"title", undefined>;
|
|
12
|
+
readonly name: v.StringSchema<undefined>;
|
|
13
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
14
|
+
}, undefined>, v.ObjectSchema<{
|
|
15
|
+
readonly type: v.LiteralSchema<"rich_text", undefined>;
|
|
16
|
+
readonly name: v.StringSchema<undefined>;
|
|
17
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
18
|
+
}, undefined>, v.ObjectSchema<{
|
|
19
|
+
readonly type: v.LiteralSchema<"number", undefined>;
|
|
20
|
+
readonly name: v.StringSchema<undefined>;
|
|
21
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
22
|
+
}, undefined>, v.ObjectSchema<{
|
|
23
|
+
readonly type: v.LiteralSchema<"checkbox", undefined>;
|
|
24
|
+
readonly name: v.StringSchema<undefined>;
|
|
25
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
26
|
+
}, undefined>, v.ObjectSchema<{
|
|
27
|
+
readonly type: v.LiteralSchema<"url", undefined>;
|
|
28
|
+
readonly name: v.StringSchema<undefined>;
|
|
29
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
30
|
+
}, undefined>, v.ObjectSchema<{
|
|
31
|
+
readonly type: v.LiteralSchema<"email", undefined>;
|
|
32
|
+
readonly name: v.StringSchema<undefined>;
|
|
33
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
34
|
+
}, undefined>, v.ObjectSchema<{
|
|
35
|
+
readonly type: v.LiteralSchema<"phone_number", undefined>;
|
|
36
|
+
readonly name: v.StringSchema<undefined>;
|
|
37
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
38
|
+
}, undefined>, v.ObjectSchema<{
|
|
39
|
+
readonly type: v.LiteralSchema<"select", undefined>;
|
|
40
|
+
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
41
|
+
readonly id: v.StringSchema<undefined>;
|
|
42
|
+
readonly name: v.StringSchema<undefined>;
|
|
43
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
44
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
45
|
+
}, undefined>, undefined>;
|
|
46
|
+
readonly name: v.StringSchema<undefined>;
|
|
47
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
48
|
+
}, undefined>, v.ObjectSchema<{
|
|
49
|
+
readonly type: v.LiteralSchema<"multi_select", undefined>;
|
|
50
|
+
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
51
|
+
readonly id: v.StringSchema<undefined>;
|
|
52
|
+
readonly name: v.StringSchema<undefined>;
|
|
53
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
54
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
55
|
+
}, undefined>, undefined>;
|
|
56
|
+
readonly name: v.StringSchema<undefined>;
|
|
57
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
58
|
+
}, undefined>, v.ObjectSchema<{
|
|
59
|
+
readonly type: v.LiteralSchema<"status", undefined>;
|
|
60
|
+
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
61
|
+
readonly id: v.StringSchema<undefined>;
|
|
62
|
+
readonly name: v.StringSchema<undefined>;
|
|
63
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
64
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
65
|
+
}, undefined>, undefined>;
|
|
66
|
+
readonly groups: v.ArraySchema<v.ObjectSchema<{
|
|
67
|
+
readonly id: v.StringSchema<undefined>;
|
|
68
|
+
readonly name: v.StringSchema<undefined>;
|
|
69
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
70
|
+
readonly option_ids: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
71
|
+
}, undefined>, undefined>;
|
|
72
|
+
readonly name: v.StringSchema<undefined>;
|
|
73
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
74
|
+
}, undefined>, v.ObjectSchema<{
|
|
75
|
+
readonly type: v.LiteralSchema<"date", undefined>;
|
|
76
|
+
readonly name: v.StringSchema<undefined>;
|
|
77
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
78
|
+
}, undefined>, v.ObjectSchema<{
|
|
79
|
+
readonly type: v.LiteralSchema<"people", undefined>;
|
|
80
|
+
readonly name: v.StringSchema<undefined>;
|
|
81
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
82
|
+
}, undefined>, v.ObjectSchema<{
|
|
83
|
+
readonly type: v.LiteralSchema<"files", undefined>;
|
|
84
|
+
readonly name: v.StringSchema<undefined>;
|
|
85
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
86
|
+
}, undefined>, v.ObjectSchema<{
|
|
87
|
+
readonly type: v.LiteralSchema<"unique_id", undefined>;
|
|
88
|
+
readonly name: v.StringSchema<undefined>;
|
|
89
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
90
|
+
}, undefined>, v.ObjectSchema<{
|
|
91
|
+
readonly type: v.LiteralSchema<"relation", undefined>;
|
|
92
|
+
readonly data_source_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
93
|
+
readonly dual_property: v.OptionalSchema<v.ObjectSchema<{
|
|
94
|
+
readonly synced_property_id: v.StringSchema<undefined>;
|
|
95
|
+
readonly synced_property_name: v.StringSchema<undefined>;
|
|
96
|
+
}, undefined>, undefined>;
|
|
97
|
+
readonly name: v.StringSchema<undefined>;
|
|
98
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
99
|
+
}, undefined>, v.ObjectSchema<{
|
|
100
|
+
readonly type: v.LiteralSchema<"place", undefined>;
|
|
101
|
+
readonly name: v.StringSchema<undefined>;
|
|
102
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
103
|
+
}, undefined>, v.ObjectSchema<{
|
|
104
|
+
readonly type: v.LiteralSchema<"formula", undefined>;
|
|
105
|
+
readonly name: v.StringSchema<undefined>;
|
|
106
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
107
|
+
}, undefined>, v.ObjectSchema<{
|
|
108
|
+
readonly type: v.LiteralSchema<"rollup", undefined>;
|
|
109
|
+
readonly name: v.StringSchema<undefined>;
|
|
110
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
111
|
+
}, undefined>, v.ObjectSchema<{
|
|
112
|
+
readonly type: v.LiteralSchema<"button", undefined>;
|
|
113
|
+
readonly name: v.StringSchema<undefined>;
|
|
114
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
115
|
+
}, undefined>, v.ObjectSchema<{
|
|
116
|
+
readonly type: v.LiteralSchema<"verification", undefined>;
|
|
117
|
+
readonly name: v.StringSchema<undefined>;
|
|
118
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
119
|
+
}, undefined>, v.ObjectSchema<{
|
|
120
|
+
readonly type: v.LiteralSchema<"last_visited_time", undefined>;
|
|
121
|
+
readonly name: v.StringSchema<undefined>;
|
|
122
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
123
|
+
}, undefined>, v.ObjectSchema<{
|
|
124
|
+
readonly type: v.LiteralSchema<"location", undefined>;
|
|
125
|
+
readonly name: v.StringSchema<undefined>;
|
|
126
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
127
|
+
}, undefined>, v.ObjectSchema<{
|
|
128
|
+
readonly type: v.LiteralSchema<"created_time", undefined>;
|
|
129
|
+
readonly name: v.StringSchema<undefined>;
|
|
130
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
131
|
+
}, undefined>, v.ObjectSchema<{
|
|
132
|
+
readonly type: v.LiteralSchema<"last_edited_time", undefined>;
|
|
133
|
+
readonly name: v.StringSchema<undefined>;
|
|
134
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
135
|
+
}, undefined>, v.ObjectSchema<{
|
|
136
|
+
readonly type: v.LiteralSchema<"created_by", undefined>;
|
|
137
|
+
readonly name: v.StringSchema<undefined>;
|
|
138
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
139
|
+
}, undefined>, v.ObjectSchema<{
|
|
140
|
+
readonly type: v.LiteralSchema<"last_edited_by", undefined>;
|
|
141
|
+
readonly name: v.StringSchema<undefined>;
|
|
142
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
143
|
+
}, undefined>], undefined>, undefined>;
|
|
144
|
+
}, undefined>;
|
|
145
|
+
export type NotionCollectionSchema = v.InferOutput<typeof notionCollectionSchemaValidator>;
|
|
146
|
+
/**
|
|
147
|
+
* Bridge shape for a single data source: a semantic key bound (optionally) to a collection,
|
|
148
|
+
* its property name → ID mapping, and its column schemas.
|
|
149
|
+
*/
|
|
150
|
+
export declare const notionDataSourceSchema: v.ObjectSchema<{
|
|
151
|
+
readonly key: v.StringSchema<undefined>;
|
|
152
|
+
readonly collectionPointer: v.OptionalSchema<v.ObjectSchema<{
|
|
153
|
+
readonly id: v.CustomSchema<import("../ids").NotionDataSourceId, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
154
|
+
readonly table: v.StringSchema<undefined>;
|
|
155
|
+
readonly spaceId: v.OptionalSchema<v.CustomSchema<import("../ids").NotionSpaceId, v.ErrorMessage<v.CustomIssue> | undefined>, undefined>;
|
|
156
|
+
}, undefined>, undefined>;
|
|
157
|
+
readonly collectionSchema: v.OptionalSchema<v.ObjectSchema<{
|
|
158
|
+
readonly id: v.OptionalSchema<v.CustomSchema<import("../ids").NotionDataSourceId, v.ErrorMessage<v.CustomIssue> | undefined>, undefined>;
|
|
159
|
+
readonly propertiesById: v.RecordSchema<v.StringSchema<undefined>, v.VariantSchema<"type", [v.ObjectSchema<{
|
|
160
|
+
readonly type: v.LiteralSchema<"title", undefined>;
|
|
161
|
+
readonly name: v.StringSchema<undefined>;
|
|
162
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
163
|
+
}, undefined>, v.ObjectSchema<{
|
|
164
|
+
readonly type: v.LiteralSchema<"rich_text", undefined>;
|
|
165
|
+
readonly name: v.StringSchema<undefined>;
|
|
166
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
167
|
+
}, undefined>, v.ObjectSchema<{
|
|
168
|
+
readonly type: v.LiteralSchema<"number", undefined>;
|
|
169
|
+
readonly name: v.StringSchema<undefined>;
|
|
170
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
171
|
+
}, undefined>, v.ObjectSchema<{
|
|
172
|
+
readonly type: v.LiteralSchema<"checkbox", undefined>;
|
|
173
|
+
readonly name: v.StringSchema<undefined>;
|
|
174
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
175
|
+
}, undefined>, v.ObjectSchema<{
|
|
176
|
+
readonly type: v.LiteralSchema<"url", undefined>;
|
|
177
|
+
readonly name: v.StringSchema<undefined>;
|
|
178
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
179
|
+
}, undefined>, v.ObjectSchema<{
|
|
180
|
+
readonly type: v.LiteralSchema<"email", undefined>;
|
|
181
|
+
readonly name: v.StringSchema<undefined>;
|
|
182
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
183
|
+
}, undefined>, v.ObjectSchema<{
|
|
184
|
+
readonly type: v.LiteralSchema<"phone_number", undefined>;
|
|
185
|
+
readonly name: v.StringSchema<undefined>;
|
|
186
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
187
|
+
}, undefined>, v.ObjectSchema<{
|
|
188
|
+
readonly type: v.LiteralSchema<"select", undefined>;
|
|
189
|
+
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
190
|
+
readonly id: v.StringSchema<undefined>;
|
|
191
|
+
readonly name: v.StringSchema<undefined>;
|
|
192
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
193
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
194
|
+
}, undefined>, undefined>;
|
|
195
|
+
readonly name: v.StringSchema<undefined>;
|
|
196
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
197
|
+
}, undefined>, v.ObjectSchema<{
|
|
198
|
+
readonly type: v.LiteralSchema<"multi_select", undefined>;
|
|
199
|
+
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
200
|
+
readonly id: v.StringSchema<undefined>;
|
|
201
|
+
readonly name: v.StringSchema<undefined>;
|
|
202
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
203
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
204
|
+
}, undefined>, undefined>;
|
|
205
|
+
readonly name: v.StringSchema<undefined>;
|
|
206
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
207
|
+
}, undefined>, v.ObjectSchema<{
|
|
208
|
+
readonly type: v.LiteralSchema<"status", undefined>;
|
|
209
|
+
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
210
|
+
readonly id: v.StringSchema<undefined>;
|
|
211
|
+
readonly name: v.StringSchema<undefined>;
|
|
212
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
213
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
214
|
+
}, undefined>, undefined>;
|
|
215
|
+
readonly groups: v.ArraySchema<v.ObjectSchema<{
|
|
216
|
+
readonly id: v.StringSchema<undefined>;
|
|
217
|
+
readonly name: v.StringSchema<undefined>;
|
|
218
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
219
|
+
readonly option_ids: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
220
|
+
}, undefined>, undefined>;
|
|
221
|
+
readonly name: v.StringSchema<undefined>;
|
|
222
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
223
|
+
}, undefined>, v.ObjectSchema<{
|
|
224
|
+
readonly type: v.LiteralSchema<"date", undefined>;
|
|
225
|
+
readonly name: v.StringSchema<undefined>;
|
|
226
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
227
|
+
}, undefined>, v.ObjectSchema<{
|
|
228
|
+
readonly type: v.LiteralSchema<"people", undefined>;
|
|
229
|
+
readonly name: v.StringSchema<undefined>;
|
|
230
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
231
|
+
}, undefined>, v.ObjectSchema<{
|
|
232
|
+
readonly type: v.LiteralSchema<"files", undefined>;
|
|
233
|
+
readonly name: v.StringSchema<undefined>;
|
|
234
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
235
|
+
}, undefined>, v.ObjectSchema<{
|
|
236
|
+
readonly type: v.LiteralSchema<"unique_id", undefined>;
|
|
237
|
+
readonly name: v.StringSchema<undefined>;
|
|
238
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
239
|
+
}, undefined>, v.ObjectSchema<{
|
|
240
|
+
readonly type: v.LiteralSchema<"relation", undefined>;
|
|
241
|
+
readonly data_source_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
242
|
+
readonly dual_property: v.OptionalSchema<v.ObjectSchema<{
|
|
243
|
+
readonly synced_property_id: v.StringSchema<undefined>;
|
|
244
|
+
readonly synced_property_name: v.StringSchema<undefined>;
|
|
245
|
+
}, undefined>, undefined>;
|
|
246
|
+
readonly name: v.StringSchema<undefined>;
|
|
247
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
248
|
+
}, undefined>, v.ObjectSchema<{
|
|
249
|
+
readonly type: v.LiteralSchema<"place", undefined>;
|
|
250
|
+
readonly name: v.StringSchema<undefined>;
|
|
251
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
252
|
+
}, undefined>, v.ObjectSchema<{
|
|
253
|
+
readonly type: v.LiteralSchema<"formula", undefined>;
|
|
254
|
+
readonly name: v.StringSchema<undefined>;
|
|
255
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
256
|
+
}, undefined>, v.ObjectSchema<{
|
|
257
|
+
readonly type: v.LiteralSchema<"rollup", undefined>;
|
|
258
|
+
readonly name: v.StringSchema<undefined>;
|
|
259
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
260
|
+
}, undefined>, v.ObjectSchema<{
|
|
261
|
+
readonly type: v.LiteralSchema<"button", undefined>;
|
|
262
|
+
readonly name: v.StringSchema<undefined>;
|
|
263
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
264
|
+
}, undefined>, v.ObjectSchema<{
|
|
265
|
+
readonly type: v.LiteralSchema<"verification", undefined>;
|
|
266
|
+
readonly name: v.StringSchema<undefined>;
|
|
267
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
268
|
+
}, undefined>, v.ObjectSchema<{
|
|
269
|
+
readonly type: v.LiteralSchema<"last_visited_time", undefined>;
|
|
270
|
+
readonly name: v.StringSchema<undefined>;
|
|
271
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
272
|
+
}, undefined>, v.ObjectSchema<{
|
|
273
|
+
readonly type: v.LiteralSchema<"location", undefined>;
|
|
274
|
+
readonly name: v.StringSchema<undefined>;
|
|
275
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
276
|
+
}, undefined>, v.ObjectSchema<{
|
|
277
|
+
readonly type: v.LiteralSchema<"created_time", undefined>;
|
|
278
|
+
readonly name: v.StringSchema<undefined>;
|
|
279
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
280
|
+
}, undefined>, v.ObjectSchema<{
|
|
281
|
+
readonly type: v.LiteralSchema<"last_edited_time", undefined>;
|
|
282
|
+
readonly name: v.StringSchema<undefined>;
|
|
283
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
284
|
+
}, undefined>, v.ObjectSchema<{
|
|
285
|
+
readonly type: v.LiteralSchema<"created_by", undefined>;
|
|
286
|
+
readonly name: v.StringSchema<undefined>;
|
|
287
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
288
|
+
}, undefined>, v.ObjectSchema<{
|
|
289
|
+
readonly type: v.LiteralSchema<"last_edited_by", undefined>;
|
|
290
|
+
readonly name: v.StringSchema<undefined>;
|
|
291
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
292
|
+
}, undefined>], undefined>, undefined>;
|
|
293
|
+
}, undefined>, undefined>;
|
|
294
|
+
/**
|
|
295
|
+
* Keyed mapping of user-defined keys to a raw property ID. A key mapped to `undefined`
|
|
296
|
+
* is a declared-but-unbound slot.
|
|
297
|
+
*/
|
|
298
|
+
readonly propertyIdsByKey: v.RecordSchema<v.StringSchema<undefined>, v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
299
|
+
/**
|
|
300
|
+
* Keyed mapping of raw property IDs to their schema. Always includes the four built-ins
|
|
301
|
+
* (`created_time`, `last_edited_time`, `created_by`, `last_edited_by`).
|
|
302
|
+
*/
|
|
303
|
+
readonly propertySchemasById: v.RecordSchema<v.StringSchema<undefined>, v.VariantSchema<"type", [v.ObjectSchema<{
|
|
304
|
+
readonly type: v.LiteralSchema<"title", undefined>;
|
|
305
|
+
readonly name: v.StringSchema<undefined>;
|
|
306
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
307
|
+
}, undefined>, v.ObjectSchema<{
|
|
308
|
+
readonly type: v.LiteralSchema<"rich_text", undefined>;
|
|
309
|
+
readonly name: v.StringSchema<undefined>;
|
|
310
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
311
|
+
}, undefined>, v.ObjectSchema<{
|
|
312
|
+
readonly type: v.LiteralSchema<"number", undefined>;
|
|
313
|
+
readonly name: v.StringSchema<undefined>;
|
|
314
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
315
|
+
}, undefined>, v.ObjectSchema<{
|
|
316
|
+
readonly type: v.LiteralSchema<"checkbox", undefined>;
|
|
317
|
+
readonly name: v.StringSchema<undefined>;
|
|
318
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
319
|
+
}, undefined>, v.ObjectSchema<{
|
|
320
|
+
readonly type: v.LiteralSchema<"url", undefined>;
|
|
321
|
+
readonly name: v.StringSchema<undefined>;
|
|
322
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
323
|
+
}, undefined>, v.ObjectSchema<{
|
|
324
|
+
readonly type: v.LiteralSchema<"email", undefined>;
|
|
325
|
+
readonly name: v.StringSchema<undefined>;
|
|
326
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
327
|
+
}, undefined>, v.ObjectSchema<{
|
|
328
|
+
readonly type: v.LiteralSchema<"phone_number", undefined>;
|
|
329
|
+
readonly name: v.StringSchema<undefined>;
|
|
330
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
331
|
+
}, undefined>, v.ObjectSchema<{
|
|
332
|
+
readonly type: v.LiteralSchema<"select", undefined>;
|
|
333
|
+
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
334
|
+
readonly id: v.StringSchema<undefined>;
|
|
335
|
+
readonly name: v.StringSchema<undefined>;
|
|
336
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
337
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
338
|
+
}, undefined>, undefined>;
|
|
339
|
+
readonly name: v.StringSchema<undefined>;
|
|
340
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
341
|
+
}, undefined>, v.ObjectSchema<{
|
|
342
|
+
readonly type: v.LiteralSchema<"multi_select", undefined>;
|
|
343
|
+
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
344
|
+
readonly id: v.StringSchema<undefined>;
|
|
345
|
+
readonly name: v.StringSchema<undefined>;
|
|
346
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
347
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
348
|
+
}, undefined>, undefined>;
|
|
349
|
+
readonly name: v.StringSchema<undefined>;
|
|
350
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
351
|
+
}, undefined>, v.ObjectSchema<{
|
|
352
|
+
readonly type: v.LiteralSchema<"status", undefined>;
|
|
353
|
+
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
354
|
+
readonly id: v.StringSchema<undefined>;
|
|
355
|
+
readonly name: v.StringSchema<undefined>;
|
|
356
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
357
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
358
|
+
}, undefined>, undefined>;
|
|
359
|
+
readonly groups: v.ArraySchema<v.ObjectSchema<{
|
|
360
|
+
readonly id: v.StringSchema<undefined>;
|
|
361
|
+
readonly name: v.StringSchema<undefined>;
|
|
362
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
363
|
+
readonly option_ids: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
364
|
+
}, undefined>, undefined>;
|
|
365
|
+
readonly name: v.StringSchema<undefined>;
|
|
366
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
367
|
+
}, undefined>, v.ObjectSchema<{
|
|
368
|
+
readonly type: v.LiteralSchema<"date", undefined>;
|
|
369
|
+
readonly name: v.StringSchema<undefined>;
|
|
370
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
371
|
+
}, undefined>, v.ObjectSchema<{
|
|
372
|
+
readonly type: v.LiteralSchema<"people", undefined>;
|
|
373
|
+
readonly name: v.StringSchema<undefined>;
|
|
374
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
375
|
+
}, undefined>, v.ObjectSchema<{
|
|
376
|
+
readonly type: v.LiteralSchema<"files", undefined>;
|
|
377
|
+
readonly name: v.StringSchema<undefined>;
|
|
378
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
379
|
+
}, undefined>, v.ObjectSchema<{
|
|
380
|
+
readonly type: v.LiteralSchema<"unique_id", undefined>;
|
|
381
|
+
readonly name: v.StringSchema<undefined>;
|
|
382
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
383
|
+
}, undefined>, v.ObjectSchema<{
|
|
384
|
+
readonly type: v.LiteralSchema<"relation", undefined>;
|
|
385
|
+
readonly data_source_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
386
|
+
readonly dual_property: v.OptionalSchema<v.ObjectSchema<{
|
|
387
|
+
readonly synced_property_id: v.StringSchema<undefined>;
|
|
388
|
+
readonly synced_property_name: v.StringSchema<undefined>;
|
|
389
|
+
}, undefined>, undefined>;
|
|
390
|
+
readonly name: v.StringSchema<undefined>;
|
|
391
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
392
|
+
}, undefined>, v.ObjectSchema<{
|
|
393
|
+
readonly type: v.LiteralSchema<"place", undefined>;
|
|
394
|
+
readonly name: v.StringSchema<undefined>;
|
|
395
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
396
|
+
}, undefined>, v.ObjectSchema<{
|
|
397
|
+
readonly type: v.LiteralSchema<"formula", undefined>;
|
|
398
|
+
readonly name: v.StringSchema<undefined>;
|
|
399
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
400
|
+
}, undefined>, v.ObjectSchema<{
|
|
401
|
+
readonly type: v.LiteralSchema<"rollup", undefined>;
|
|
402
|
+
readonly name: v.StringSchema<undefined>;
|
|
403
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
404
|
+
}, undefined>, v.ObjectSchema<{
|
|
405
|
+
readonly type: v.LiteralSchema<"button", undefined>;
|
|
406
|
+
readonly name: v.StringSchema<undefined>;
|
|
407
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
408
|
+
}, undefined>, v.ObjectSchema<{
|
|
409
|
+
readonly type: v.LiteralSchema<"verification", undefined>;
|
|
410
|
+
readonly name: v.StringSchema<undefined>;
|
|
411
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
412
|
+
}, undefined>, v.ObjectSchema<{
|
|
413
|
+
readonly type: v.LiteralSchema<"last_visited_time", undefined>;
|
|
414
|
+
readonly name: v.StringSchema<undefined>;
|
|
415
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
416
|
+
}, undefined>, v.ObjectSchema<{
|
|
417
|
+
readonly type: v.LiteralSchema<"location", undefined>;
|
|
418
|
+
readonly name: v.StringSchema<undefined>;
|
|
419
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
420
|
+
}, undefined>, v.ObjectSchema<{
|
|
421
|
+
readonly type: v.LiteralSchema<"created_time", undefined>;
|
|
422
|
+
readonly name: v.StringSchema<undefined>;
|
|
423
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
424
|
+
}, undefined>, v.ObjectSchema<{
|
|
425
|
+
readonly type: v.LiteralSchema<"last_edited_time", undefined>;
|
|
426
|
+
readonly name: v.StringSchema<undefined>;
|
|
427
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
428
|
+
}, undefined>, v.ObjectSchema<{
|
|
429
|
+
readonly type: v.LiteralSchema<"created_by", undefined>;
|
|
430
|
+
readonly name: v.StringSchema<undefined>;
|
|
431
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
432
|
+
}, undefined>, v.ObjectSchema<{
|
|
433
|
+
readonly type: v.LiteralSchema<"last_edited_by", undefined>;
|
|
434
|
+
readonly name: v.StringSchema<undefined>;
|
|
435
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
436
|
+
}, undefined>], undefined>, undefined>;
|
|
437
|
+
}, undefined>;
|
|
438
|
+
export type NotionDataSource = v.InferOutput<typeof notionDataSourceSchema>;
|
|
439
|
+
export declare const notionDataSourceBindingSchema: v.ObjectSchema<{
|
|
440
|
+
readonly collectionPointer: v.OptionalSchema<v.ObjectSchema<{
|
|
441
|
+
readonly id: v.CustomSchema<import("../ids").NotionDataSourceId, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
442
|
+
readonly table: v.StringSchema<undefined>;
|
|
443
|
+
readonly spaceId: v.OptionalSchema<v.CustomSchema<import("../ids").NotionSpaceId, v.ErrorMessage<v.CustomIssue> | undefined>, undefined>;
|
|
444
|
+
}, undefined>, undefined>;
|
|
445
|
+
readonly collectionSchema: v.OptionalSchema<v.ObjectSchema<{
|
|
446
|
+
readonly id: v.OptionalSchema<v.CustomSchema<import("../ids").NotionDataSourceId, v.ErrorMessage<v.CustomIssue> | undefined>, undefined>;
|
|
447
|
+
readonly propertiesById: v.RecordSchema<v.StringSchema<undefined>, v.VariantSchema<"type", [v.ObjectSchema<{
|
|
448
|
+
readonly type: v.LiteralSchema<"title", undefined>;
|
|
449
|
+
readonly name: v.StringSchema<undefined>;
|
|
450
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
451
|
+
}, undefined>, v.ObjectSchema<{
|
|
452
|
+
readonly type: v.LiteralSchema<"rich_text", undefined>;
|
|
453
|
+
readonly name: v.StringSchema<undefined>;
|
|
454
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
455
|
+
}, undefined>, v.ObjectSchema<{
|
|
456
|
+
readonly type: v.LiteralSchema<"number", undefined>;
|
|
457
|
+
readonly name: v.StringSchema<undefined>;
|
|
458
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
459
|
+
}, undefined>, v.ObjectSchema<{
|
|
460
|
+
readonly type: v.LiteralSchema<"checkbox", undefined>;
|
|
461
|
+
readonly name: v.StringSchema<undefined>;
|
|
462
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
463
|
+
}, undefined>, v.ObjectSchema<{
|
|
464
|
+
readonly type: v.LiteralSchema<"url", undefined>;
|
|
465
|
+
readonly name: v.StringSchema<undefined>;
|
|
466
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
467
|
+
}, undefined>, v.ObjectSchema<{
|
|
468
|
+
readonly type: v.LiteralSchema<"email", undefined>;
|
|
469
|
+
readonly name: v.StringSchema<undefined>;
|
|
470
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
471
|
+
}, undefined>, v.ObjectSchema<{
|
|
472
|
+
readonly type: v.LiteralSchema<"phone_number", undefined>;
|
|
473
|
+
readonly name: v.StringSchema<undefined>;
|
|
474
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
475
|
+
}, undefined>, v.ObjectSchema<{
|
|
476
|
+
readonly type: v.LiteralSchema<"select", undefined>;
|
|
477
|
+
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
478
|
+
readonly id: v.StringSchema<undefined>;
|
|
479
|
+
readonly name: v.StringSchema<undefined>;
|
|
480
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
481
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
482
|
+
}, undefined>, undefined>;
|
|
483
|
+
readonly name: v.StringSchema<undefined>;
|
|
484
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
485
|
+
}, undefined>, v.ObjectSchema<{
|
|
486
|
+
readonly type: v.LiteralSchema<"multi_select", undefined>;
|
|
487
|
+
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
488
|
+
readonly id: v.StringSchema<undefined>;
|
|
489
|
+
readonly name: v.StringSchema<undefined>;
|
|
490
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
491
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
492
|
+
}, undefined>, undefined>;
|
|
493
|
+
readonly name: v.StringSchema<undefined>;
|
|
494
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
495
|
+
}, undefined>, v.ObjectSchema<{
|
|
496
|
+
readonly type: v.LiteralSchema<"status", undefined>;
|
|
497
|
+
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
498
|
+
readonly id: v.StringSchema<undefined>;
|
|
499
|
+
readonly name: v.StringSchema<undefined>;
|
|
500
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
501
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
502
|
+
}, undefined>, undefined>;
|
|
503
|
+
readonly groups: v.ArraySchema<v.ObjectSchema<{
|
|
504
|
+
readonly id: v.StringSchema<undefined>;
|
|
505
|
+
readonly name: v.StringSchema<undefined>;
|
|
506
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
507
|
+
readonly option_ids: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
508
|
+
}, undefined>, undefined>;
|
|
509
|
+
readonly name: v.StringSchema<undefined>;
|
|
510
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
511
|
+
}, undefined>, v.ObjectSchema<{
|
|
512
|
+
readonly type: v.LiteralSchema<"date", undefined>;
|
|
513
|
+
readonly name: v.StringSchema<undefined>;
|
|
514
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
515
|
+
}, undefined>, v.ObjectSchema<{
|
|
516
|
+
readonly type: v.LiteralSchema<"people", undefined>;
|
|
517
|
+
readonly name: v.StringSchema<undefined>;
|
|
518
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
519
|
+
}, undefined>, v.ObjectSchema<{
|
|
520
|
+
readonly type: v.LiteralSchema<"files", undefined>;
|
|
521
|
+
readonly name: v.StringSchema<undefined>;
|
|
522
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
523
|
+
}, undefined>, v.ObjectSchema<{
|
|
524
|
+
readonly type: v.LiteralSchema<"unique_id", undefined>;
|
|
525
|
+
readonly name: v.StringSchema<undefined>;
|
|
526
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
527
|
+
}, undefined>, v.ObjectSchema<{
|
|
528
|
+
readonly type: v.LiteralSchema<"relation", undefined>;
|
|
529
|
+
readonly data_source_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
530
|
+
readonly dual_property: v.OptionalSchema<v.ObjectSchema<{
|
|
531
|
+
readonly synced_property_id: v.StringSchema<undefined>;
|
|
532
|
+
readonly synced_property_name: v.StringSchema<undefined>;
|
|
533
|
+
}, undefined>, undefined>;
|
|
534
|
+
readonly name: v.StringSchema<undefined>;
|
|
535
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
536
|
+
}, undefined>, v.ObjectSchema<{
|
|
537
|
+
readonly type: v.LiteralSchema<"place", undefined>;
|
|
538
|
+
readonly name: v.StringSchema<undefined>;
|
|
539
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
540
|
+
}, undefined>, v.ObjectSchema<{
|
|
541
|
+
readonly type: v.LiteralSchema<"formula", undefined>;
|
|
542
|
+
readonly name: v.StringSchema<undefined>;
|
|
543
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
544
|
+
}, undefined>, v.ObjectSchema<{
|
|
545
|
+
readonly type: v.LiteralSchema<"rollup", undefined>;
|
|
546
|
+
readonly name: v.StringSchema<undefined>;
|
|
547
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
548
|
+
}, undefined>, v.ObjectSchema<{
|
|
549
|
+
readonly type: v.LiteralSchema<"button", undefined>;
|
|
550
|
+
readonly name: v.StringSchema<undefined>;
|
|
551
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
552
|
+
}, undefined>, v.ObjectSchema<{
|
|
553
|
+
readonly type: v.LiteralSchema<"verification", undefined>;
|
|
554
|
+
readonly name: v.StringSchema<undefined>;
|
|
555
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
556
|
+
}, undefined>, v.ObjectSchema<{
|
|
557
|
+
readonly type: v.LiteralSchema<"last_visited_time", undefined>;
|
|
558
|
+
readonly name: v.StringSchema<undefined>;
|
|
559
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
560
|
+
}, undefined>, v.ObjectSchema<{
|
|
561
|
+
readonly type: v.LiteralSchema<"location", undefined>;
|
|
562
|
+
readonly name: v.StringSchema<undefined>;
|
|
563
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
564
|
+
}, undefined>, v.ObjectSchema<{
|
|
565
|
+
readonly type: v.LiteralSchema<"created_time", undefined>;
|
|
566
|
+
readonly name: v.StringSchema<undefined>;
|
|
567
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
568
|
+
}, undefined>, v.ObjectSchema<{
|
|
569
|
+
readonly type: v.LiteralSchema<"last_edited_time", undefined>;
|
|
570
|
+
readonly name: v.StringSchema<undefined>;
|
|
571
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
572
|
+
}, undefined>, v.ObjectSchema<{
|
|
573
|
+
readonly type: v.LiteralSchema<"created_by", undefined>;
|
|
574
|
+
readonly name: v.StringSchema<undefined>;
|
|
575
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
576
|
+
}, undefined>, v.ObjectSchema<{
|
|
577
|
+
readonly type: v.LiteralSchema<"last_edited_by", undefined>;
|
|
578
|
+
readonly name: v.StringSchema<undefined>;
|
|
579
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
580
|
+
}, undefined>], undefined>, undefined>;
|
|
581
|
+
}, undefined>, undefined>;
|
|
582
|
+
readonly propertyIdsByKey: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
583
|
+
}, undefined>;
|
|
584
|
+
export type NotionDataSourceBinding = v.InferOutput<typeof notionDataSourceBindingSchema>;
|
|
585
|
+
export declare const notionDataSourceBindingsSchema: v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
586
|
+
readonly collectionPointer: v.OptionalSchema<v.ObjectSchema<{
|
|
587
|
+
readonly id: v.CustomSchema<import("../ids").NotionDataSourceId, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
588
|
+
readonly table: v.StringSchema<undefined>;
|
|
589
|
+
readonly spaceId: v.OptionalSchema<v.CustomSchema<import("../ids").NotionSpaceId, v.ErrorMessage<v.CustomIssue> | undefined>, undefined>;
|
|
590
|
+
}, undefined>, undefined>;
|
|
591
|
+
readonly collectionSchema: v.OptionalSchema<v.ObjectSchema<{
|
|
592
|
+
readonly id: v.OptionalSchema<v.CustomSchema<import("../ids").NotionDataSourceId, v.ErrorMessage<v.CustomIssue> | undefined>, undefined>;
|
|
593
|
+
readonly propertiesById: v.RecordSchema<v.StringSchema<undefined>, v.VariantSchema<"type", [v.ObjectSchema<{
|
|
594
|
+
readonly type: v.LiteralSchema<"title", undefined>;
|
|
595
|
+
readonly name: v.StringSchema<undefined>;
|
|
596
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
597
|
+
}, undefined>, v.ObjectSchema<{
|
|
598
|
+
readonly type: v.LiteralSchema<"rich_text", undefined>;
|
|
599
|
+
readonly name: v.StringSchema<undefined>;
|
|
600
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
601
|
+
}, undefined>, v.ObjectSchema<{
|
|
602
|
+
readonly type: v.LiteralSchema<"number", undefined>;
|
|
603
|
+
readonly name: v.StringSchema<undefined>;
|
|
604
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
605
|
+
}, undefined>, v.ObjectSchema<{
|
|
606
|
+
readonly type: v.LiteralSchema<"checkbox", undefined>;
|
|
607
|
+
readonly name: v.StringSchema<undefined>;
|
|
608
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
609
|
+
}, undefined>, v.ObjectSchema<{
|
|
610
|
+
readonly type: v.LiteralSchema<"url", undefined>;
|
|
611
|
+
readonly name: v.StringSchema<undefined>;
|
|
612
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
613
|
+
}, undefined>, v.ObjectSchema<{
|
|
614
|
+
readonly type: v.LiteralSchema<"email", undefined>;
|
|
615
|
+
readonly name: v.StringSchema<undefined>;
|
|
616
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
617
|
+
}, undefined>, v.ObjectSchema<{
|
|
618
|
+
readonly type: v.LiteralSchema<"phone_number", undefined>;
|
|
619
|
+
readonly name: v.StringSchema<undefined>;
|
|
620
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
621
|
+
}, undefined>, v.ObjectSchema<{
|
|
622
|
+
readonly type: v.LiteralSchema<"select", undefined>;
|
|
623
|
+
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
624
|
+
readonly id: v.StringSchema<undefined>;
|
|
625
|
+
readonly name: v.StringSchema<undefined>;
|
|
626
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
627
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
628
|
+
}, undefined>, undefined>;
|
|
629
|
+
readonly name: v.StringSchema<undefined>;
|
|
630
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
631
|
+
}, undefined>, v.ObjectSchema<{
|
|
632
|
+
readonly type: v.LiteralSchema<"multi_select", undefined>;
|
|
633
|
+
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
634
|
+
readonly id: v.StringSchema<undefined>;
|
|
635
|
+
readonly name: v.StringSchema<undefined>;
|
|
636
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
637
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
638
|
+
}, undefined>, undefined>;
|
|
639
|
+
readonly name: v.StringSchema<undefined>;
|
|
640
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
641
|
+
}, undefined>, v.ObjectSchema<{
|
|
642
|
+
readonly type: v.LiteralSchema<"status", undefined>;
|
|
643
|
+
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
644
|
+
readonly id: v.StringSchema<undefined>;
|
|
645
|
+
readonly name: v.StringSchema<undefined>;
|
|
646
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
647
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
648
|
+
}, undefined>, undefined>;
|
|
649
|
+
readonly groups: v.ArraySchema<v.ObjectSchema<{
|
|
650
|
+
readonly id: v.StringSchema<undefined>;
|
|
651
|
+
readonly name: v.StringSchema<undefined>;
|
|
652
|
+
readonly color: v.OptionalSchema<v.PicklistSchema<["default", "gray", "brown", "orange", "yellow", "green", "blue", "purple", "pink", "red", "gray_background", "brown_background", "orange_background", "yellow_background", "green_background", "blue_background", "purple_background", "pink_background", "red_background", "default_background"], undefined>, undefined>;
|
|
653
|
+
readonly option_ids: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
654
|
+
}, undefined>, undefined>;
|
|
655
|
+
readonly name: v.StringSchema<undefined>;
|
|
656
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
657
|
+
}, undefined>, v.ObjectSchema<{
|
|
658
|
+
readonly type: v.LiteralSchema<"date", undefined>;
|
|
659
|
+
readonly name: v.StringSchema<undefined>;
|
|
660
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
661
|
+
}, undefined>, v.ObjectSchema<{
|
|
662
|
+
readonly type: v.LiteralSchema<"people", undefined>;
|
|
663
|
+
readonly name: v.StringSchema<undefined>;
|
|
664
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
665
|
+
}, undefined>, v.ObjectSchema<{
|
|
666
|
+
readonly type: v.LiteralSchema<"files", undefined>;
|
|
667
|
+
readonly name: v.StringSchema<undefined>;
|
|
668
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
669
|
+
}, undefined>, v.ObjectSchema<{
|
|
670
|
+
readonly type: v.LiteralSchema<"unique_id", undefined>;
|
|
671
|
+
readonly name: v.StringSchema<undefined>;
|
|
672
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
673
|
+
}, undefined>, v.ObjectSchema<{
|
|
674
|
+
readonly type: v.LiteralSchema<"relation", undefined>;
|
|
675
|
+
readonly data_source_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
676
|
+
readonly dual_property: v.OptionalSchema<v.ObjectSchema<{
|
|
677
|
+
readonly synced_property_id: v.StringSchema<undefined>;
|
|
678
|
+
readonly synced_property_name: v.StringSchema<undefined>;
|
|
679
|
+
}, undefined>, undefined>;
|
|
680
|
+
readonly name: v.StringSchema<undefined>;
|
|
681
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
682
|
+
}, undefined>, v.ObjectSchema<{
|
|
683
|
+
readonly type: v.LiteralSchema<"place", undefined>;
|
|
684
|
+
readonly name: v.StringSchema<undefined>;
|
|
685
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
686
|
+
}, undefined>, v.ObjectSchema<{
|
|
687
|
+
readonly type: v.LiteralSchema<"formula", undefined>;
|
|
688
|
+
readonly name: v.StringSchema<undefined>;
|
|
689
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
690
|
+
}, undefined>, v.ObjectSchema<{
|
|
691
|
+
readonly type: v.LiteralSchema<"rollup", undefined>;
|
|
692
|
+
readonly name: v.StringSchema<undefined>;
|
|
693
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
694
|
+
}, undefined>, v.ObjectSchema<{
|
|
695
|
+
readonly type: v.LiteralSchema<"button", undefined>;
|
|
696
|
+
readonly name: v.StringSchema<undefined>;
|
|
697
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
698
|
+
}, undefined>, v.ObjectSchema<{
|
|
699
|
+
readonly type: v.LiteralSchema<"verification", undefined>;
|
|
700
|
+
readonly name: v.StringSchema<undefined>;
|
|
701
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
702
|
+
}, undefined>, v.ObjectSchema<{
|
|
703
|
+
readonly type: v.LiteralSchema<"last_visited_time", undefined>;
|
|
704
|
+
readonly name: v.StringSchema<undefined>;
|
|
705
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
706
|
+
}, undefined>, v.ObjectSchema<{
|
|
707
|
+
readonly type: v.LiteralSchema<"location", undefined>;
|
|
708
|
+
readonly name: v.StringSchema<undefined>;
|
|
709
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
710
|
+
}, undefined>, v.ObjectSchema<{
|
|
711
|
+
readonly type: v.LiteralSchema<"created_time", undefined>;
|
|
712
|
+
readonly name: v.StringSchema<undefined>;
|
|
713
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
714
|
+
}, undefined>, v.ObjectSchema<{
|
|
715
|
+
readonly type: v.LiteralSchema<"last_edited_time", undefined>;
|
|
716
|
+
readonly name: v.StringSchema<undefined>;
|
|
717
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
718
|
+
}, undefined>, v.ObjectSchema<{
|
|
719
|
+
readonly type: v.LiteralSchema<"created_by", undefined>;
|
|
720
|
+
readonly name: v.StringSchema<undefined>;
|
|
721
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
722
|
+
}, undefined>, v.ObjectSchema<{
|
|
723
|
+
readonly type: v.LiteralSchema<"last_edited_by", undefined>;
|
|
724
|
+
readonly name: v.StringSchema<undefined>;
|
|
725
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
726
|
+
}, undefined>], undefined>, undefined>;
|
|
727
|
+
}, undefined>, undefined>;
|
|
728
|
+
readonly propertyIdsByKey: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
729
|
+
}, undefined>, undefined>;
|
|
730
|
+
export type NotionDataSourceBindings = v.InferOutput<typeof notionDataSourceBindingsSchema>;
|
|
731
|
+
export {};
|
|
732
|
+
//# sourceMappingURL=dataSource.d.ts.map
|