@wix/data 1.0.129 → 1.0.131
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/package.json +6 -6
- package/type-bundles/context.bundle.d.ts +3685 -4
- package/type-bundles/index.bundle.d.ts +248 -1107
- package/type-bundles/meta.bundle.d.ts +471 -1502
|
@@ -104,7 +104,7 @@ interface ConnectionStatus$1 {
|
|
|
104
104
|
*/
|
|
105
105
|
hasCollections?: CollectionsFound$1;
|
|
106
106
|
}
|
|
107
|
-
declare enum ProtocolVersion {
|
|
107
|
+
declare enum ProtocolVersion$1 {
|
|
108
108
|
UNKNOWN_PROTOCOL_VERSION = "UNKNOWN_PROTOCOL_VERSION",
|
|
109
109
|
V1 = "V1",
|
|
110
110
|
V2 = "V2",
|
|
@@ -192,65 +192,32 @@ interface DeleteExternalDatabaseConnectionRequest$1 {
|
|
|
192
192
|
}
|
|
193
193
|
interface DeleteExternalDatabaseConnectionResponse$1 {
|
|
194
194
|
}
|
|
195
|
+
interface ConnectionStatusNonNullableFields$1 {
|
|
196
|
+
successful: boolean;
|
|
197
|
+
causeOfFailure: CauseOfFailure$1;
|
|
198
|
+
hasCollections: CollectionsFound$1;
|
|
199
|
+
}
|
|
200
|
+
interface CapabilitiesNonNullableFields$1 {
|
|
201
|
+
collectionModificationsSupported: boolean;
|
|
202
|
+
fieldTypes: FieldType$1[];
|
|
203
|
+
}
|
|
204
|
+
interface ExternalDatabaseConnectionNonNullableFields$1 {
|
|
205
|
+
name: string;
|
|
206
|
+
connectionStatus?: ConnectionStatusNonNullableFields$1;
|
|
207
|
+
protocolVersion: ProtocolVersion$1;
|
|
208
|
+
capabilities?: CapabilitiesNonNullableFields$1;
|
|
209
|
+
}
|
|
195
210
|
interface GetExternalDatabaseConnectionResponseNonNullableFields$1 {
|
|
196
|
-
externalDatabaseConnection?:
|
|
197
|
-
name: string;
|
|
198
|
-
connectionStatus?: {
|
|
199
|
-
successful: boolean;
|
|
200
|
-
causeOfFailure: CauseOfFailure$1;
|
|
201
|
-
hasCollections: CollectionsFound$1;
|
|
202
|
-
};
|
|
203
|
-
protocolVersion: ProtocolVersion;
|
|
204
|
-
capabilities?: {
|
|
205
|
-
collectionModificationsSupported: boolean;
|
|
206
|
-
fieldTypes: FieldType$1[];
|
|
207
|
-
};
|
|
208
|
-
};
|
|
211
|
+
externalDatabaseConnection?: ExternalDatabaseConnectionNonNullableFields$1;
|
|
209
212
|
}
|
|
210
213
|
interface ListExternalDatabaseConnectionsResponseNonNullableFields$1 {
|
|
211
|
-
externalDatabaseConnections:
|
|
212
|
-
name: string;
|
|
213
|
-
connectionStatus?: {
|
|
214
|
-
successful: boolean;
|
|
215
|
-
causeOfFailure: CauseOfFailure$1;
|
|
216
|
-
hasCollections: CollectionsFound$1;
|
|
217
|
-
};
|
|
218
|
-
protocolVersion: ProtocolVersion;
|
|
219
|
-
capabilities?: {
|
|
220
|
-
collectionModificationsSupported: boolean;
|
|
221
|
-
fieldTypes: FieldType$1[];
|
|
222
|
-
};
|
|
223
|
-
}[];
|
|
214
|
+
externalDatabaseConnections: ExternalDatabaseConnectionNonNullableFields$1[];
|
|
224
215
|
}
|
|
225
216
|
interface CreateExternalDatabaseConnectionResponseNonNullableFields$1 {
|
|
226
|
-
externalDatabaseConnection?:
|
|
227
|
-
name: string;
|
|
228
|
-
connectionStatus?: {
|
|
229
|
-
successful: boolean;
|
|
230
|
-
causeOfFailure: CauseOfFailure$1;
|
|
231
|
-
hasCollections: CollectionsFound$1;
|
|
232
|
-
};
|
|
233
|
-
protocolVersion: ProtocolVersion;
|
|
234
|
-
capabilities?: {
|
|
235
|
-
collectionModificationsSupported: boolean;
|
|
236
|
-
fieldTypes: FieldType$1[];
|
|
237
|
-
};
|
|
238
|
-
};
|
|
217
|
+
externalDatabaseConnection?: ExternalDatabaseConnectionNonNullableFields$1;
|
|
239
218
|
}
|
|
240
219
|
interface UpdateExternalDatabaseConnectionResponseNonNullableFields$1 {
|
|
241
|
-
externalDatabaseConnection?:
|
|
242
|
-
name: string;
|
|
243
|
-
connectionStatus?: {
|
|
244
|
-
successful: boolean;
|
|
245
|
-
causeOfFailure: CauseOfFailure$1;
|
|
246
|
-
hasCollections: CollectionsFound$1;
|
|
247
|
-
};
|
|
248
|
-
protocolVersion: ProtocolVersion;
|
|
249
|
-
capabilities?: {
|
|
250
|
-
collectionModificationsSupported: boolean;
|
|
251
|
-
fieldTypes: FieldType$1[];
|
|
252
|
-
};
|
|
253
|
-
};
|
|
220
|
+
externalDatabaseConnection?: ExternalDatabaseConnectionNonNullableFields$1;
|
|
254
221
|
}
|
|
255
222
|
|
|
256
223
|
/** An external database connection defines a connection between an external database and a Wix site or project. */
|
|
@@ -359,6 +326,12 @@ interface ConnectionStatus {
|
|
|
359
326
|
*/
|
|
360
327
|
hasCollections?: CollectionsFound;
|
|
361
328
|
}
|
|
329
|
+
declare enum ProtocolVersion {
|
|
330
|
+
UNKNOWN_PROTOCOL_VERSION = "UNKNOWN_PROTOCOL_VERSION",
|
|
331
|
+
V1 = "V1",
|
|
332
|
+
V2 = "V2",
|
|
333
|
+
V3 = "V3"
|
|
334
|
+
}
|
|
362
335
|
interface Capabilities {
|
|
363
336
|
/** Whether the external database supports creating new collections, updating the structure of existing collections, or deleting them. */
|
|
364
337
|
collectionModificationsSupported?: boolean;
|
|
@@ -441,61 +414,32 @@ interface DeleteExternalDatabaseConnectionRequest {
|
|
|
441
414
|
}
|
|
442
415
|
interface DeleteExternalDatabaseConnectionResponse {
|
|
443
416
|
}
|
|
417
|
+
interface ConnectionStatusNonNullableFields {
|
|
418
|
+
successful: boolean;
|
|
419
|
+
causeOfFailure: CauseOfFailure;
|
|
420
|
+
hasCollections: CollectionsFound;
|
|
421
|
+
}
|
|
422
|
+
interface CapabilitiesNonNullableFields {
|
|
423
|
+
collectionModificationsSupported: boolean;
|
|
424
|
+
fieldTypes: FieldType[];
|
|
425
|
+
}
|
|
426
|
+
interface ExternalDatabaseConnectionNonNullableFields {
|
|
427
|
+
name: string;
|
|
428
|
+
connectionStatus?: ConnectionStatusNonNullableFields;
|
|
429
|
+
protocolVersion: ProtocolVersion;
|
|
430
|
+
capabilities?: CapabilitiesNonNullableFields;
|
|
431
|
+
}
|
|
444
432
|
interface GetExternalDatabaseConnectionResponseNonNullableFields {
|
|
445
|
-
externalDatabaseConnection?:
|
|
446
|
-
name: string;
|
|
447
|
-
connectionStatus?: {
|
|
448
|
-
successful: boolean;
|
|
449
|
-
causeOfFailure: CauseOfFailure;
|
|
450
|
-
hasCollections: CollectionsFound;
|
|
451
|
-
};
|
|
452
|
-
capabilities?: {
|
|
453
|
-
collectionModificationsSupported: boolean;
|
|
454
|
-
fieldTypes: FieldType[];
|
|
455
|
-
};
|
|
456
|
-
};
|
|
433
|
+
externalDatabaseConnection?: ExternalDatabaseConnectionNonNullableFields;
|
|
457
434
|
}
|
|
458
435
|
interface ListExternalDatabaseConnectionsResponseNonNullableFields {
|
|
459
|
-
externalDatabaseConnections:
|
|
460
|
-
name: string;
|
|
461
|
-
connectionStatus?: {
|
|
462
|
-
successful: boolean;
|
|
463
|
-
causeOfFailure: CauseOfFailure;
|
|
464
|
-
hasCollections: CollectionsFound;
|
|
465
|
-
};
|
|
466
|
-
capabilities?: {
|
|
467
|
-
collectionModificationsSupported: boolean;
|
|
468
|
-
fieldTypes: FieldType[];
|
|
469
|
-
};
|
|
470
|
-
}[];
|
|
436
|
+
externalDatabaseConnections: ExternalDatabaseConnectionNonNullableFields[];
|
|
471
437
|
}
|
|
472
438
|
interface CreateExternalDatabaseConnectionResponseNonNullableFields {
|
|
473
|
-
externalDatabaseConnection?:
|
|
474
|
-
name: string;
|
|
475
|
-
connectionStatus?: {
|
|
476
|
-
successful: boolean;
|
|
477
|
-
causeOfFailure: CauseOfFailure;
|
|
478
|
-
hasCollections: CollectionsFound;
|
|
479
|
-
};
|
|
480
|
-
capabilities?: {
|
|
481
|
-
collectionModificationsSupported: boolean;
|
|
482
|
-
fieldTypes: FieldType[];
|
|
483
|
-
};
|
|
484
|
-
};
|
|
439
|
+
externalDatabaseConnection?: ExternalDatabaseConnectionNonNullableFields;
|
|
485
440
|
}
|
|
486
441
|
interface UpdateExternalDatabaseConnectionResponseNonNullableFields {
|
|
487
|
-
externalDatabaseConnection?:
|
|
488
|
-
name: string;
|
|
489
|
-
connectionStatus?: {
|
|
490
|
-
successful: boolean;
|
|
491
|
-
causeOfFailure: CauseOfFailure;
|
|
492
|
-
hasCollections: CollectionsFound;
|
|
493
|
-
};
|
|
494
|
-
capabilities?: {
|
|
495
|
-
collectionModificationsSupported: boolean;
|
|
496
|
-
fieldTypes: FieldType[];
|
|
497
|
-
};
|
|
498
|
-
};
|
|
442
|
+
externalDatabaseConnection?: ExternalDatabaseConnectionNonNullableFields;
|
|
499
443
|
}
|
|
500
444
|
|
|
501
445
|
type __PublicMethodMetaInfo$3<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
@@ -1180,518 +1124,141 @@ interface DeleteDataCollectionRequest$1 {
|
|
|
1180
1124
|
}
|
|
1181
1125
|
interface DeleteDataCollectionResponse$1 {
|
|
1182
1126
|
}
|
|
1127
|
+
interface SortNonNullableFields$1 {
|
|
1128
|
+
fieldKey: string;
|
|
1129
|
+
direction: Direction$1;
|
|
1130
|
+
}
|
|
1131
|
+
interface IndexLimitsNonNullableFields$1 {
|
|
1132
|
+
regular: number;
|
|
1133
|
+
unique: number;
|
|
1134
|
+
total: number;
|
|
1135
|
+
}
|
|
1136
|
+
interface CollectionCapabilitiesNonNullableFields$1 {
|
|
1137
|
+
dataOperations: DataOperation$1[];
|
|
1138
|
+
collectionOperations: CollectionOperation$1[];
|
|
1139
|
+
indexLimits?: IndexLimitsNonNullableFields$1;
|
|
1140
|
+
}
|
|
1141
|
+
interface ReferenceNonNullableFields$1 {
|
|
1142
|
+
referencedCollectionId: string;
|
|
1143
|
+
}
|
|
1144
|
+
interface MultiReferenceNonNullableFields$1 {
|
|
1145
|
+
referencedCollectionId: string;
|
|
1146
|
+
referencingFieldKey: string;
|
|
1147
|
+
referencingDisplayName: string;
|
|
1148
|
+
}
|
|
1149
|
+
interface FieldCapabilitiesNonNullableFields$1 {
|
|
1150
|
+
sortable: boolean;
|
|
1151
|
+
queryOperators: QueryOperator$1[];
|
|
1152
|
+
}
|
|
1153
|
+
interface ObjectFieldNonNullableFields$1 {
|
|
1154
|
+
key: string;
|
|
1155
|
+
type: Type$1;
|
|
1156
|
+
typeMetadata?: TypeMetadataNonNullableFields$1;
|
|
1157
|
+
capabilities?: FieldCapabilitiesNonNullableFields$1;
|
|
1158
|
+
}
|
|
1159
|
+
interface _ObjectNonNullableFields$1 {
|
|
1160
|
+
fields: ObjectFieldNonNullableFields$1[];
|
|
1161
|
+
}
|
|
1162
|
+
interface _ArrayNonNullableFields$1 {
|
|
1163
|
+
elementType: Type$1;
|
|
1164
|
+
typeMetadata?: TypeMetadataNonNullableFields$1;
|
|
1165
|
+
}
|
|
1166
|
+
interface FieldsPatternNonNullableFields$1 {
|
|
1167
|
+
pattern: string;
|
|
1168
|
+
lowercase: boolean;
|
|
1169
|
+
}
|
|
1170
|
+
interface UrlizedOnlyPatternNonNullableFields$1 {
|
|
1171
|
+
pattern: string;
|
|
1172
|
+
}
|
|
1173
|
+
interface CalculatorNonNullableFields$1 {
|
|
1174
|
+
fieldsPattern?: FieldsPatternNonNullableFields$1;
|
|
1175
|
+
urlizedOnlyPattern?: UrlizedOnlyPatternNonNullableFields$1;
|
|
1176
|
+
}
|
|
1177
|
+
interface PageLinkNonNullableFields$1 {
|
|
1178
|
+
calculator?: CalculatorNonNullableFields$1;
|
|
1179
|
+
}
|
|
1180
|
+
interface TypeMetadataNonNullableFields$1 {
|
|
1181
|
+
reference?: ReferenceNonNullableFields$1;
|
|
1182
|
+
multiReference?: MultiReferenceNonNullableFields$1;
|
|
1183
|
+
object?: _ObjectNonNullableFields$1;
|
|
1184
|
+
array?: _ArrayNonNullableFields$1;
|
|
1185
|
+
pageLink?: PageLinkNonNullableFields$1;
|
|
1186
|
+
}
|
|
1187
|
+
interface CmsOptionsNonNullableFields$1 {
|
|
1188
|
+
internal: boolean;
|
|
1189
|
+
}
|
|
1190
|
+
interface FieldPluginNonNullableFields$1 {
|
|
1191
|
+
cmsOptions?: CmsOptionsNonNullableFields$1;
|
|
1192
|
+
type: FieldPluginType$1;
|
|
1193
|
+
}
|
|
1194
|
+
interface FieldNonNullableFields$3 {
|
|
1195
|
+
key: string;
|
|
1196
|
+
type: Type$1;
|
|
1197
|
+
typeMetadata?: TypeMetadataNonNullableFields$1;
|
|
1198
|
+
systemField: boolean;
|
|
1199
|
+
capabilities?: FieldCapabilitiesNonNullableFields$1;
|
|
1200
|
+
encrypted: boolean;
|
|
1201
|
+
plugins: FieldPluginNonNullableFields$1[];
|
|
1202
|
+
}
|
|
1203
|
+
interface PermissionsNonNullableFields$1 {
|
|
1204
|
+
insert: Role$1;
|
|
1205
|
+
update: Role$1;
|
|
1206
|
+
remove: Role$1;
|
|
1207
|
+
read: Role$1;
|
|
1208
|
+
}
|
|
1209
|
+
interface PublishPluginOptionsNonNullableFields$1 {
|
|
1210
|
+
defaultStatus: Status$3;
|
|
1211
|
+
}
|
|
1212
|
+
interface SingleItemPluginOptionsNonNullableFields$1 {
|
|
1213
|
+
singleItemId: string;
|
|
1214
|
+
}
|
|
1215
|
+
interface UrlizedPluginOptionsNonNullableFields$1 {
|
|
1216
|
+
format: Format$1;
|
|
1217
|
+
}
|
|
1218
|
+
interface MultilingualOptionsNonNullableFields$1 {
|
|
1219
|
+
translatableFieldKeys: string[];
|
|
1220
|
+
}
|
|
1221
|
+
interface PageLinkPluginOptionsNonNullableFields$1 {
|
|
1222
|
+
isPersisted: boolean;
|
|
1223
|
+
isMutable: boolean;
|
|
1224
|
+
}
|
|
1225
|
+
interface SiteSortNonNullableFields$1 {
|
|
1226
|
+
sort: SortNonNullableFields$1[];
|
|
1227
|
+
}
|
|
1228
|
+
interface PluginCmsOptionsNonNullableFields$1 {
|
|
1229
|
+
siteSort?: SiteSortNonNullableFields$1;
|
|
1230
|
+
}
|
|
1231
|
+
interface PluginNonNullableFields$1 {
|
|
1232
|
+
publishOptions?: PublishPluginOptionsNonNullableFields$1;
|
|
1233
|
+
singleItemOptions?: SingleItemPluginOptionsNonNullableFields$1;
|
|
1234
|
+
urlizedOptions?: UrlizedPluginOptionsNonNullableFields$1;
|
|
1235
|
+
multilingualOptions?: MultilingualOptionsNonNullableFields$1;
|
|
1236
|
+
editablePageLinkOptions?: PageLinkPluginOptionsNonNullableFields$1;
|
|
1237
|
+
cmsOptions?: PluginCmsOptionsNonNullableFields$1;
|
|
1238
|
+
type: PluginType$1;
|
|
1239
|
+
}
|
|
1240
|
+
interface DataCollectionNonNullableFields$1 {
|
|
1241
|
+
id: string;
|
|
1242
|
+
collectionType: CollectionType$1;
|
|
1243
|
+
defaultDisplayOrder?: SortNonNullableFields$1;
|
|
1244
|
+
capabilities?: CollectionCapabilitiesNonNullableFields$1;
|
|
1245
|
+
fields: FieldNonNullableFields$3[];
|
|
1246
|
+
permissions?: PermissionsNonNullableFields$1;
|
|
1247
|
+
plugins: PluginNonNullableFields$1[];
|
|
1248
|
+
pagingModes: PagingMode$1[];
|
|
1249
|
+
}
|
|
1183
1250
|
interface CreateDataCollectionResponseNonNullableFields$1 {
|
|
1184
|
-
collection?:
|
|
1185
|
-
id: string;
|
|
1186
|
-
collectionType: CollectionType$1;
|
|
1187
|
-
defaultDisplayOrder?: {
|
|
1188
|
-
fieldKey: string;
|
|
1189
|
-
direction: Direction$1;
|
|
1190
|
-
};
|
|
1191
|
-
capabilities?: {
|
|
1192
|
-
dataOperations: DataOperation$1[];
|
|
1193
|
-
collectionOperations: CollectionOperation$1[];
|
|
1194
|
-
indexLimits?: {
|
|
1195
|
-
regular: number;
|
|
1196
|
-
unique: number;
|
|
1197
|
-
total: number;
|
|
1198
|
-
};
|
|
1199
|
-
};
|
|
1200
|
-
fields: {
|
|
1201
|
-
key: string;
|
|
1202
|
-
type: Type$1;
|
|
1203
|
-
typeMetadata?: {
|
|
1204
|
-
reference?: {
|
|
1205
|
-
referencedCollectionId: string;
|
|
1206
|
-
};
|
|
1207
|
-
multiReference?: {
|
|
1208
|
-
referencedCollectionId: string;
|
|
1209
|
-
referencingFieldKey: string;
|
|
1210
|
-
referencingDisplayName: string;
|
|
1211
|
-
};
|
|
1212
|
-
object?: {
|
|
1213
|
-
fields: {
|
|
1214
|
-
key: string;
|
|
1215
|
-
type: Type$1;
|
|
1216
|
-
capabilities?: {
|
|
1217
|
-
sortable: boolean;
|
|
1218
|
-
queryOperators: QueryOperator$1[];
|
|
1219
|
-
};
|
|
1220
|
-
}[];
|
|
1221
|
-
};
|
|
1222
|
-
array?: {
|
|
1223
|
-
elementType: Type$1;
|
|
1224
|
-
};
|
|
1225
|
-
pageLink?: {
|
|
1226
|
-
calculator?: {
|
|
1227
|
-
fieldsPattern?: {
|
|
1228
|
-
pattern: string;
|
|
1229
|
-
lowercase: boolean;
|
|
1230
|
-
};
|
|
1231
|
-
urlizedOnlyPattern?: {
|
|
1232
|
-
pattern: string;
|
|
1233
|
-
};
|
|
1234
|
-
};
|
|
1235
|
-
};
|
|
1236
|
-
};
|
|
1237
|
-
systemField: boolean;
|
|
1238
|
-
capabilities?: {
|
|
1239
|
-
sortable: boolean;
|
|
1240
|
-
queryOperators: QueryOperator$1[];
|
|
1241
|
-
};
|
|
1242
|
-
encrypted: boolean;
|
|
1243
|
-
plugins: {
|
|
1244
|
-
cmsOptions?: {
|
|
1245
|
-
internal: boolean;
|
|
1246
|
-
};
|
|
1247
|
-
type: FieldPluginType$1;
|
|
1248
|
-
}[];
|
|
1249
|
-
}[];
|
|
1250
|
-
permissions?: {
|
|
1251
|
-
insert: Role$1;
|
|
1252
|
-
update: Role$1;
|
|
1253
|
-
remove: Role$1;
|
|
1254
|
-
read: Role$1;
|
|
1255
|
-
};
|
|
1256
|
-
plugins: {
|
|
1257
|
-
publishOptions?: {
|
|
1258
|
-
defaultStatus: Status$3;
|
|
1259
|
-
};
|
|
1260
|
-
singleItemOptions?: {
|
|
1261
|
-
singleItemId: string;
|
|
1262
|
-
};
|
|
1263
|
-
urlizedOptions?: {
|
|
1264
|
-
format: Format$1;
|
|
1265
|
-
};
|
|
1266
|
-
multilingualOptions?: {
|
|
1267
|
-
translatableFieldKeys: string[];
|
|
1268
|
-
};
|
|
1269
|
-
editablePageLinkOptions?: {
|
|
1270
|
-
isPersisted: boolean;
|
|
1271
|
-
isMutable: boolean;
|
|
1272
|
-
};
|
|
1273
|
-
cmsOptions?: {
|
|
1274
|
-
siteSort?: {
|
|
1275
|
-
sort: {
|
|
1276
|
-
fieldKey: string;
|
|
1277
|
-
direction: Direction$1;
|
|
1278
|
-
}[];
|
|
1279
|
-
};
|
|
1280
|
-
};
|
|
1281
|
-
type: PluginType$1;
|
|
1282
|
-
}[];
|
|
1283
|
-
pagingModes: PagingMode$1[];
|
|
1284
|
-
};
|
|
1251
|
+
collection?: DataCollectionNonNullableFields$1;
|
|
1285
1252
|
}
|
|
1286
1253
|
interface GetDataCollectionResponseNonNullableFields$1 {
|
|
1287
|
-
collection?:
|
|
1288
|
-
|
|
1289
|
-
collectionType: CollectionType$1;
|
|
1290
|
-
defaultDisplayOrder?: {
|
|
1291
|
-
fieldKey: string;
|
|
1292
|
-
direction: Direction$1;
|
|
1293
|
-
};
|
|
1294
|
-
capabilities?: {
|
|
1295
|
-
dataOperations: DataOperation$1[];
|
|
1296
|
-
collectionOperations: CollectionOperation$1[];
|
|
1297
|
-
indexLimits?: {
|
|
1298
|
-
regular: number;
|
|
1299
|
-
unique: number;
|
|
1300
|
-
total: number;
|
|
1301
|
-
};
|
|
1302
|
-
};
|
|
1303
|
-
fields: {
|
|
1304
|
-
key: string;
|
|
1305
|
-
type: Type$1;
|
|
1306
|
-
typeMetadata?: {
|
|
1307
|
-
reference?: {
|
|
1308
|
-
referencedCollectionId: string;
|
|
1309
|
-
};
|
|
1310
|
-
multiReference?: {
|
|
1311
|
-
referencedCollectionId: string;
|
|
1312
|
-
referencingFieldKey: string;
|
|
1313
|
-
referencingDisplayName: string;
|
|
1314
|
-
};
|
|
1315
|
-
object?: {
|
|
1316
|
-
fields: {
|
|
1317
|
-
key: string;
|
|
1318
|
-
type: Type$1;
|
|
1319
|
-
capabilities?: {
|
|
1320
|
-
sortable: boolean;
|
|
1321
|
-
queryOperators: QueryOperator$1[];
|
|
1322
|
-
};
|
|
1323
|
-
}[];
|
|
1324
|
-
};
|
|
1325
|
-
array?: {
|
|
1326
|
-
elementType: Type$1;
|
|
1327
|
-
};
|
|
1328
|
-
pageLink?: {
|
|
1329
|
-
calculator?: {
|
|
1330
|
-
fieldsPattern?: {
|
|
1331
|
-
pattern: string;
|
|
1332
|
-
lowercase: boolean;
|
|
1333
|
-
};
|
|
1334
|
-
urlizedOnlyPattern?: {
|
|
1335
|
-
pattern: string;
|
|
1336
|
-
};
|
|
1337
|
-
};
|
|
1338
|
-
};
|
|
1339
|
-
};
|
|
1340
|
-
systemField: boolean;
|
|
1341
|
-
capabilities?: {
|
|
1342
|
-
sortable: boolean;
|
|
1343
|
-
queryOperators: QueryOperator$1[];
|
|
1344
|
-
};
|
|
1345
|
-
encrypted: boolean;
|
|
1346
|
-
plugins: {
|
|
1347
|
-
cmsOptions?: {
|
|
1348
|
-
internal: boolean;
|
|
1349
|
-
};
|
|
1350
|
-
type: FieldPluginType$1;
|
|
1351
|
-
}[];
|
|
1352
|
-
}[];
|
|
1353
|
-
permissions?: {
|
|
1354
|
-
insert: Role$1;
|
|
1355
|
-
update: Role$1;
|
|
1356
|
-
remove: Role$1;
|
|
1357
|
-
read: Role$1;
|
|
1358
|
-
};
|
|
1359
|
-
plugins: {
|
|
1360
|
-
publishOptions?: {
|
|
1361
|
-
defaultStatus: Status$3;
|
|
1362
|
-
};
|
|
1363
|
-
singleItemOptions?: {
|
|
1364
|
-
singleItemId: string;
|
|
1365
|
-
};
|
|
1366
|
-
urlizedOptions?: {
|
|
1367
|
-
format: Format$1;
|
|
1368
|
-
};
|
|
1369
|
-
multilingualOptions?: {
|
|
1370
|
-
translatableFieldKeys: string[];
|
|
1371
|
-
};
|
|
1372
|
-
editablePageLinkOptions?: {
|
|
1373
|
-
isPersisted: boolean;
|
|
1374
|
-
isMutable: boolean;
|
|
1375
|
-
};
|
|
1376
|
-
cmsOptions?: {
|
|
1377
|
-
siteSort?: {
|
|
1378
|
-
sort: {
|
|
1379
|
-
fieldKey: string;
|
|
1380
|
-
direction: Direction$1;
|
|
1381
|
-
}[];
|
|
1382
|
-
};
|
|
1383
|
-
};
|
|
1384
|
-
type: PluginType$1;
|
|
1385
|
-
}[];
|
|
1386
|
-
pagingModes: PagingMode$1[];
|
|
1387
|
-
};
|
|
1388
|
-
referencedCollections: {
|
|
1389
|
-
id: string;
|
|
1390
|
-
collectionType: CollectionType$1;
|
|
1391
|
-
defaultDisplayOrder?: {
|
|
1392
|
-
fieldKey: string;
|
|
1393
|
-
direction: Direction$1;
|
|
1394
|
-
};
|
|
1395
|
-
capabilities?: {
|
|
1396
|
-
dataOperations: DataOperation$1[];
|
|
1397
|
-
collectionOperations: CollectionOperation$1[];
|
|
1398
|
-
indexLimits?: {
|
|
1399
|
-
regular: number;
|
|
1400
|
-
unique: number;
|
|
1401
|
-
total: number;
|
|
1402
|
-
};
|
|
1403
|
-
};
|
|
1404
|
-
fields: {
|
|
1405
|
-
key: string;
|
|
1406
|
-
type: Type$1;
|
|
1407
|
-
typeMetadata?: {
|
|
1408
|
-
reference?: {
|
|
1409
|
-
referencedCollectionId: string;
|
|
1410
|
-
};
|
|
1411
|
-
multiReference?: {
|
|
1412
|
-
referencedCollectionId: string;
|
|
1413
|
-
referencingFieldKey: string;
|
|
1414
|
-
referencingDisplayName: string;
|
|
1415
|
-
};
|
|
1416
|
-
object?: {
|
|
1417
|
-
fields: {
|
|
1418
|
-
key: string;
|
|
1419
|
-
type: Type$1;
|
|
1420
|
-
capabilities?: {
|
|
1421
|
-
sortable: boolean;
|
|
1422
|
-
queryOperators: QueryOperator$1[];
|
|
1423
|
-
};
|
|
1424
|
-
}[];
|
|
1425
|
-
};
|
|
1426
|
-
array?: {
|
|
1427
|
-
elementType: Type$1;
|
|
1428
|
-
};
|
|
1429
|
-
pageLink?: {
|
|
1430
|
-
calculator?: {
|
|
1431
|
-
fieldsPattern?: {
|
|
1432
|
-
pattern: string;
|
|
1433
|
-
lowercase: boolean;
|
|
1434
|
-
};
|
|
1435
|
-
urlizedOnlyPattern?: {
|
|
1436
|
-
pattern: string;
|
|
1437
|
-
};
|
|
1438
|
-
};
|
|
1439
|
-
};
|
|
1440
|
-
};
|
|
1441
|
-
systemField: boolean;
|
|
1442
|
-
capabilities?: {
|
|
1443
|
-
sortable: boolean;
|
|
1444
|
-
queryOperators: QueryOperator$1[];
|
|
1445
|
-
};
|
|
1446
|
-
encrypted: boolean;
|
|
1447
|
-
plugins: {
|
|
1448
|
-
cmsOptions?: {
|
|
1449
|
-
internal: boolean;
|
|
1450
|
-
};
|
|
1451
|
-
type: FieldPluginType$1;
|
|
1452
|
-
}[];
|
|
1453
|
-
}[];
|
|
1454
|
-
permissions?: {
|
|
1455
|
-
insert: Role$1;
|
|
1456
|
-
update: Role$1;
|
|
1457
|
-
remove: Role$1;
|
|
1458
|
-
read: Role$1;
|
|
1459
|
-
};
|
|
1460
|
-
plugins: {
|
|
1461
|
-
publishOptions?: {
|
|
1462
|
-
defaultStatus: Status$3;
|
|
1463
|
-
};
|
|
1464
|
-
singleItemOptions?: {
|
|
1465
|
-
singleItemId: string;
|
|
1466
|
-
};
|
|
1467
|
-
urlizedOptions?: {
|
|
1468
|
-
format: Format$1;
|
|
1469
|
-
};
|
|
1470
|
-
multilingualOptions?: {
|
|
1471
|
-
translatableFieldKeys: string[];
|
|
1472
|
-
};
|
|
1473
|
-
editablePageLinkOptions?: {
|
|
1474
|
-
isPersisted: boolean;
|
|
1475
|
-
isMutable: boolean;
|
|
1476
|
-
};
|
|
1477
|
-
cmsOptions?: {
|
|
1478
|
-
siteSort?: {
|
|
1479
|
-
sort: {
|
|
1480
|
-
fieldKey: string;
|
|
1481
|
-
direction: Direction$1;
|
|
1482
|
-
}[];
|
|
1483
|
-
};
|
|
1484
|
-
};
|
|
1485
|
-
type: PluginType$1;
|
|
1486
|
-
}[];
|
|
1487
|
-
pagingModes: PagingMode$1[];
|
|
1488
|
-
}[];
|
|
1254
|
+
collection?: DataCollectionNonNullableFields$1;
|
|
1255
|
+
referencedCollections: DataCollectionNonNullableFields$1[];
|
|
1489
1256
|
}
|
|
1490
1257
|
interface ListDataCollectionsResponseNonNullableFields$1 {
|
|
1491
|
-
collections:
|
|
1492
|
-
id: string;
|
|
1493
|
-
collectionType: CollectionType$1;
|
|
1494
|
-
defaultDisplayOrder?: {
|
|
1495
|
-
fieldKey: string;
|
|
1496
|
-
direction: Direction$1;
|
|
1497
|
-
};
|
|
1498
|
-
capabilities?: {
|
|
1499
|
-
dataOperations: DataOperation$1[];
|
|
1500
|
-
collectionOperations: CollectionOperation$1[];
|
|
1501
|
-
indexLimits?: {
|
|
1502
|
-
regular: number;
|
|
1503
|
-
unique: number;
|
|
1504
|
-
total: number;
|
|
1505
|
-
};
|
|
1506
|
-
};
|
|
1507
|
-
fields: {
|
|
1508
|
-
key: string;
|
|
1509
|
-
type: Type$1;
|
|
1510
|
-
typeMetadata?: {
|
|
1511
|
-
reference?: {
|
|
1512
|
-
referencedCollectionId: string;
|
|
1513
|
-
};
|
|
1514
|
-
multiReference?: {
|
|
1515
|
-
referencedCollectionId: string;
|
|
1516
|
-
referencingFieldKey: string;
|
|
1517
|
-
referencingDisplayName: string;
|
|
1518
|
-
};
|
|
1519
|
-
object?: {
|
|
1520
|
-
fields: {
|
|
1521
|
-
key: string;
|
|
1522
|
-
type: Type$1;
|
|
1523
|
-
capabilities?: {
|
|
1524
|
-
sortable: boolean;
|
|
1525
|
-
queryOperators: QueryOperator$1[];
|
|
1526
|
-
};
|
|
1527
|
-
}[];
|
|
1528
|
-
};
|
|
1529
|
-
array?: {
|
|
1530
|
-
elementType: Type$1;
|
|
1531
|
-
};
|
|
1532
|
-
pageLink?: {
|
|
1533
|
-
calculator?: {
|
|
1534
|
-
fieldsPattern?: {
|
|
1535
|
-
pattern: string;
|
|
1536
|
-
lowercase: boolean;
|
|
1537
|
-
};
|
|
1538
|
-
urlizedOnlyPattern?: {
|
|
1539
|
-
pattern: string;
|
|
1540
|
-
};
|
|
1541
|
-
};
|
|
1542
|
-
};
|
|
1543
|
-
};
|
|
1544
|
-
systemField: boolean;
|
|
1545
|
-
capabilities?: {
|
|
1546
|
-
sortable: boolean;
|
|
1547
|
-
queryOperators: QueryOperator$1[];
|
|
1548
|
-
};
|
|
1549
|
-
encrypted: boolean;
|
|
1550
|
-
plugins: {
|
|
1551
|
-
cmsOptions?: {
|
|
1552
|
-
internal: boolean;
|
|
1553
|
-
};
|
|
1554
|
-
type: FieldPluginType$1;
|
|
1555
|
-
}[];
|
|
1556
|
-
}[];
|
|
1557
|
-
permissions?: {
|
|
1558
|
-
insert: Role$1;
|
|
1559
|
-
update: Role$1;
|
|
1560
|
-
remove: Role$1;
|
|
1561
|
-
read: Role$1;
|
|
1562
|
-
};
|
|
1563
|
-
plugins: {
|
|
1564
|
-
publishOptions?: {
|
|
1565
|
-
defaultStatus: Status$3;
|
|
1566
|
-
};
|
|
1567
|
-
singleItemOptions?: {
|
|
1568
|
-
singleItemId: string;
|
|
1569
|
-
};
|
|
1570
|
-
urlizedOptions?: {
|
|
1571
|
-
format: Format$1;
|
|
1572
|
-
};
|
|
1573
|
-
multilingualOptions?: {
|
|
1574
|
-
translatableFieldKeys: string[];
|
|
1575
|
-
};
|
|
1576
|
-
editablePageLinkOptions?: {
|
|
1577
|
-
isPersisted: boolean;
|
|
1578
|
-
isMutable: boolean;
|
|
1579
|
-
};
|
|
1580
|
-
cmsOptions?: {
|
|
1581
|
-
siteSort?: {
|
|
1582
|
-
sort: {
|
|
1583
|
-
fieldKey: string;
|
|
1584
|
-
direction: Direction$1;
|
|
1585
|
-
}[];
|
|
1586
|
-
};
|
|
1587
|
-
};
|
|
1588
|
-
type: PluginType$1;
|
|
1589
|
-
}[];
|
|
1590
|
-
pagingModes: PagingMode$1[];
|
|
1591
|
-
}[];
|
|
1258
|
+
collections: DataCollectionNonNullableFields$1[];
|
|
1592
1259
|
}
|
|
1593
1260
|
interface UpdateDataCollectionResponseNonNullableFields$1 {
|
|
1594
|
-
collection?:
|
|
1595
|
-
id: string;
|
|
1596
|
-
collectionType: CollectionType$1;
|
|
1597
|
-
defaultDisplayOrder?: {
|
|
1598
|
-
fieldKey: string;
|
|
1599
|
-
direction: Direction$1;
|
|
1600
|
-
};
|
|
1601
|
-
capabilities?: {
|
|
1602
|
-
dataOperations: DataOperation$1[];
|
|
1603
|
-
collectionOperations: CollectionOperation$1[];
|
|
1604
|
-
indexLimits?: {
|
|
1605
|
-
regular: number;
|
|
1606
|
-
unique: number;
|
|
1607
|
-
total: number;
|
|
1608
|
-
};
|
|
1609
|
-
};
|
|
1610
|
-
fields: {
|
|
1611
|
-
key: string;
|
|
1612
|
-
type: Type$1;
|
|
1613
|
-
typeMetadata?: {
|
|
1614
|
-
reference?: {
|
|
1615
|
-
referencedCollectionId: string;
|
|
1616
|
-
};
|
|
1617
|
-
multiReference?: {
|
|
1618
|
-
referencedCollectionId: string;
|
|
1619
|
-
referencingFieldKey: string;
|
|
1620
|
-
referencingDisplayName: string;
|
|
1621
|
-
};
|
|
1622
|
-
object?: {
|
|
1623
|
-
fields: {
|
|
1624
|
-
key: string;
|
|
1625
|
-
type: Type$1;
|
|
1626
|
-
capabilities?: {
|
|
1627
|
-
sortable: boolean;
|
|
1628
|
-
queryOperators: QueryOperator$1[];
|
|
1629
|
-
};
|
|
1630
|
-
}[];
|
|
1631
|
-
};
|
|
1632
|
-
array?: {
|
|
1633
|
-
elementType: Type$1;
|
|
1634
|
-
};
|
|
1635
|
-
pageLink?: {
|
|
1636
|
-
calculator?: {
|
|
1637
|
-
fieldsPattern?: {
|
|
1638
|
-
pattern: string;
|
|
1639
|
-
lowercase: boolean;
|
|
1640
|
-
};
|
|
1641
|
-
urlizedOnlyPattern?: {
|
|
1642
|
-
pattern: string;
|
|
1643
|
-
};
|
|
1644
|
-
};
|
|
1645
|
-
};
|
|
1646
|
-
};
|
|
1647
|
-
systemField: boolean;
|
|
1648
|
-
capabilities?: {
|
|
1649
|
-
sortable: boolean;
|
|
1650
|
-
queryOperators: QueryOperator$1[];
|
|
1651
|
-
};
|
|
1652
|
-
encrypted: boolean;
|
|
1653
|
-
plugins: {
|
|
1654
|
-
cmsOptions?: {
|
|
1655
|
-
internal: boolean;
|
|
1656
|
-
};
|
|
1657
|
-
type: FieldPluginType$1;
|
|
1658
|
-
}[];
|
|
1659
|
-
}[];
|
|
1660
|
-
permissions?: {
|
|
1661
|
-
insert: Role$1;
|
|
1662
|
-
update: Role$1;
|
|
1663
|
-
remove: Role$1;
|
|
1664
|
-
read: Role$1;
|
|
1665
|
-
};
|
|
1666
|
-
plugins: {
|
|
1667
|
-
publishOptions?: {
|
|
1668
|
-
defaultStatus: Status$3;
|
|
1669
|
-
};
|
|
1670
|
-
singleItemOptions?: {
|
|
1671
|
-
singleItemId: string;
|
|
1672
|
-
};
|
|
1673
|
-
urlizedOptions?: {
|
|
1674
|
-
format: Format$1;
|
|
1675
|
-
};
|
|
1676
|
-
multilingualOptions?: {
|
|
1677
|
-
translatableFieldKeys: string[];
|
|
1678
|
-
};
|
|
1679
|
-
editablePageLinkOptions?: {
|
|
1680
|
-
isPersisted: boolean;
|
|
1681
|
-
isMutable: boolean;
|
|
1682
|
-
};
|
|
1683
|
-
cmsOptions?: {
|
|
1684
|
-
siteSort?: {
|
|
1685
|
-
sort: {
|
|
1686
|
-
fieldKey: string;
|
|
1687
|
-
direction: Direction$1;
|
|
1688
|
-
}[];
|
|
1689
|
-
};
|
|
1690
|
-
};
|
|
1691
|
-
type: PluginType$1;
|
|
1692
|
-
}[];
|
|
1693
|
-
pagingModes: PagingMode$1[];
|
|
1694
|
-
};
|
|
1261
|
+
collection?: DataCollectionNonNullableFields$1;
|
|
1695
1262
|
}
|
|
1696
1263
|
|
|
1697
1264
|
/** A data collection determines the structure of data to be stored in a database. */
|
|
@@ -2353,518 +1920,141 @@ interface DeleteDataCollectionRequest {
|
|
|
2353
1920
|
}
|
|
2354
1921
|
interface DeleteDataCollectionResponse {
|
|
2355
1922
|
}
|
|
1923
|
+
interface SortNonNullableFields {
|
|
1924
|
+
fieldKey: string;
|
|
1925
|
+
direction: Direction;
|
|
1926
|
+
}
|
|
1927
|
+
interface IndexLimitsNonNullableFields {
|
|
1928
|
+
regular: number;
|
|
1929
|
+
unique: number;
|
|
1930
|
+
total: number;
|
|
1931
|
+
}
|
|
1932
|
+
interface CollectionCapabilitiesNonNullableFields {
|
|
1933
|
+
dataOperations: DataOperation[];
|
|
1934
|
+
collectionOperations: CollectionOperation[];
|
|
1935
|
+
indexLimits?: IndexLimitsNonNullableFields;
|
|
1936
|
+
}
|
|
1937
|
+
interface ReferenceNonNullableFields {
|
|
1938
|
+
referencedCollectionId: string;
|
|
1939
|
+
}
|
|
1940
|
+
interface MultiReferenceNonNullableFields {
|
|
1941
|
+
referencedCollectionId: string;
|
|
1942
|
+
referencingFieldKey: string;
|
|
1943
|
+
referencingDisplayName: string;
|
|
1944
|
+
}
|
|
1945
|
+
interface FieldCapabilitiesNonNullableFields {
|
|
1946
|
+
sortable: boolean;
|
|
1947
|
+
queryOperators: QueryOperator[];
|
|
1948
|
+
}
|
|
1949
|
+
interface ObjectFieldNonNullableFields {
|
|
1950
|
+
key: string;
|
|
1951
|
+
type: Type;
|
|
1952
|
+
typeMetadata?: TypeMetadataNonNullableFields;
|
|
1953
|
+
capabilities?: FieldCapabilitiesNonNullableFields;
|
|
1954
|
+
}
|
|
1955
|
+
interface _ObjectNonNullableFields {
|
|
1956
|
+
fields: ObjectFieldNonNullableFields[];
|
|
1957
|
+
}
|
|
1958
|
+
interface _ArrayNonNullableFields {
|
|
1959
|
+
elementType: Type;
|
|
1960
|
+
typeMetadata?: TypeMetadataNonNullableFields;
|
|
1961
|
+
}
|
|
1962
|
+
interface FieldsPatternNonNullableFields {
|
|
1963
|
+
pattern: string;
|
|
1964
|
+
lowercase: boolean;
|
|
1965
|
+
}
|
|
1966
|
+
interface UrlizedOnlyPatternNonNullableFields {
|
|
1967
|
+
pattern: string;
|
|
1968
|
+
}
|
|
1969
|
+
interface CalculatorNonNullableFields {
|
|
1970
|
+
fieldsPattern?: FieldsPatternNonNullableFields;
|
|
1971
|
+
urlizedOnlyPattern?: UrlizedOnlyPatternNonNullableFields;
|
|
1972
|
+
}
|
|
1973
|
+
interface PageLinkNonNullableFields {
|
|
1974
|
+
calculator?: CalculatorNonNullableFields;
|
|
1975
|
+
}
|
|
1976
|
+
interface TypeMetadataNonNullableFields {
|
|
1977
|
+
reference?: ReferenceNonNullableFields;
|
|
1978
|
+
multiReference?: MultiReferenceNonNullableFields;
|
|
1979
|
+
object?: _ObjectNonNullableFields;
|
|
1980
|
+
array?: _ArrayNonNullableFields;
|
|
1981
|
+
pageLink?: PageLinkNonNullableFields;
|
|
1982
|
+
}
|
|
1983
|
+
interface CmsOptionsNonNullableFields {
|
|
1984
|
+
internal: boolean;
|
|
1985
|
+
}
|
|
1986
|
+
interface FieldPluginNonNullableFields {
|
|
1987
|
+
cmsOptions?: CmsOptionsNonNullableFields;
|
|
1988
|
+
type: FieldPluginType;
|
|
1989
|
+
}
|
|
1990
|
+
interface FieldNonNullableFields$2 {
|
|
1991
|
+
key: string;
|
|
1992
|
+
type: Type;
|
|
1993
|
+
typeMetadata?: TypeMetadataNonNullableFields;
|
|
1994
|
+
systemField: boolean;
|
|
1995
|
+
capabilities?: FieldCapabilitiesNonNullableFields;
|
|
1996
|
+
encrypted: boolean;
|
|
1997
|
+
plugins: FieldPluginNonNullableFields[];
|
|
1998
|
+
}
|
|
1999
|
+
interface PermissionsNonNullableFields {
|
|
2000
|
+
insert: Role;
|
|
2001
|
+
update: Role;
|
|
2002
|
+
remove: Role;
|
|
2003
|
+
read: Role;
|
|
2004
|
+
}
|
|
2005
|
+
interface PublishPluginOptionsNonNullableFields {
|
|
2006
|
+
defaultStatus: Status$2;
|
|
2007
|
+
}
|
|
2008
|
+
interface SingleItemPluginOptionsNonNullableFields {
|
|
2009
|
+
singleItemId: string;
|
|
2010
|
+
}
|
|
2011
|
+
interface UrlizedPluginOptionsNonNullableFields {
|
|
2012
|
+
format: Format;
|
|
2013
|
+
}
|
|
2014
|
+
interface MultilingualOptionsNonNullableFields {
|
|
2015
|
+
translatableFieldKeys: string[];
|
|
2016
|
+
}
|
|
2017
|
+
interface PageLinkPluginOptionsNonNullableFields {
|
|
2018
|
+
isPersisted: boolean;
|
|
2019
|
+
isMutable: boolean;
|
|
2020
|
+
}
|
|
2021
|
+
interface SiteSortNonNullableFields {
|
|
2022
|
+
sort: SortNonNullableFields[];
|
|
2023
|
+
}
|
|
2024
|
+
interface PluginCmsOptionsNonNullableFields {
|
|
2025
|
+
siteSort?: SiteSortNonNullableFields;
|
|
2026
|
+
}
|
|
2027
|
+
interface PluginNonNullableFields {
|
|
2028
|
+
publishOptions?: PublishPluginOptionsNonNullableFields;
|
|
2029
|
+
singleItemOptions?: SingleItemPluginOptionsNonNullableFields;
|
|
2030
|
+
urlizedOptions?: UrlizedPluginOptionsNonNullableFields;
|
|
2031
|
+
multilingualOptions?: MultilingualOptionsNonNullableFields;
|
|
2032
|
+
editablePageLinkOptions?: PageLinkPluginOptionsNonNullableFields;
|
|
2033
|
+
cmsOptions?: PluginCmsOptionsNonNullableFields;
|
|
2034
|
+
type: PluginType;
|
|
2035
|
+
}
|
|
2036
|
+
interface DataCollectionNonNullableFields {
|
|
2037
|
+
_id: string;
|
|
2038
|
+
collectionType: CollectionType;
|
|
2039
|
+
defaultDisplayOrder?: SortNonNullableFields;
|
|
2040
|
+
capabilities?: CollectionCapabilitiesNonNullableFields;
|
|
2041
|
+
fields: FieldNonNullableFields$2[];
|
|
2042
|
+
permissions?: PermissionsNonNullableFields;
|
|
2043
|
+
plugins: PluginNonNullableFields[];
|
|
2044
|
+
pagingModes: PagingMode[];
|
|
2045
|
+
}
|
|
2356
2046
|
interface CreateDataCollectionResponseNonNullableFields {
|
|
2357
|
-
collection?:
|
|
2358
|
-
_id: string;
|
|
2359
|
-
collectionType: CollectionType;
|
|
2360
|
-
defaultDisplayOrder?: {
|
|
2361
|
-
fieldKey: string;
|
|
2362
|
-
direction: Direction;
|
|
2363
|
-
};
|
|
2364
|
-
capabilities?: {
|
|
2365
|
-
dataOperations: DataOperation[];
|
|
2366
|
-
collectionOperations: CollectionOperation[];
|
|
2367
|
-
indexLimits?: {
|
|
2368
|
-
regular: number;
|
|
2369
|
-
unique: number;
|
|
2370
|
-
total: number;
|
|
2371
|
-
};
|
|
2372
|
-
};
|
|
2373
|
-
fields: {
|
|
2374
|
-
key: string;
|
|
2375
|
-
type: Type;
|
|
2376
|
-
typeMetadata?: {
|
|
2377
|
-
reference?: {
|
|
2378
|
-
referencedCollectionId: string;
|
|
2379
|
-
};
|
|
2380
|
-
multiReference?: {
|
|
2381
|
-
referencedCollectionId: string;
|
|
2382
|
-
referencingFieldKey: string;
|
|
2383
|
-
referencingDisplayName: string;
|
|
2384
|
-
};
|
|
2385
|
-
object?: {
|
|
2386
|
-
fields: {
|
|
2387
|
-
key: string;
|
|
2388
|
-
type: Type;
|
|
2389
|
-
capabilities?: {
|
|
2390
|
-
sortable: boolean;
|
|
2391
|
-
queryOperators: QueryOperator[];
|
|
2392
|
-
};
|
|
2393
|
-
}[];
|
|
2394
|
-
};
|
|
2395
|
-
array?: {
|
|
2396
|
-
elementType: Type;
|
|
2397
|
-
};
|
|
2398
|
-
pageLink?: {
|
|
2399
|
-
calculator?: {
|
|
2400
|
-
fieldsPattern?: {
|
|
2401
|
-
pattern: string;
|
|
2402
|
-
lowercase: boolean;
|
|
2403
|
-
};
|
|
2404
|
-
urlizedOnlyPattern?: {
|
|
2405
|
-
pattern: string;
|
|
2406
|
-
};
|
|
2407
|
-
};
|
|
2408
|
-
};
|
|
2409
|
-
};
|
|
2410
|
-
systemField: boolean;
|
|
2411
|
-
capabilities?: {
|
|
2412
|
-
sortable: boolean;
|
|
2413
|
-
queryOperators: QueryOperator[];
|
|
2414
|
-
};
|
|
2415
|
-
encrypted: boolean;
|
|
2416
|
-
plugins: {
|
|
2417
|
-
cmsOptions?: {
|
|
2418
|
-
internal: boolean;
|
|
2419
|
-
};
|
|
2420
|
-
type: FieldPluginType;
|
|
2421
|
-
}[];
|
|
2422
|
-
}[];
|
|
2423
|
-
permissions?: {
|
|
2424
|
-
insert: Role;
|
|
2425
|
-
update: Role;
|
|
2426
|
-
remove: Role;
|
|
2427
|
-
read: Role;
|
|
2428
|
-
};
|
|
2429
|
-
plugins: {
|
|
2430
|
-
publishOptions?: {
|
|
2431
|
-
defaultStatus: Status$2;
|
|
2432
|
-
};
|
|
2433
|
-
singleItemOptions?: {
|
|
2434
|
-
singleItemId: string;
|
|
2435
|
-
};
|
|
2436
|
-
urlizedOptions?: {
|
|
2437
|
-
format: Format;
|
|
2438
|
-
};
|
|
2439
|
-
multilingualOptions?: {
|
|
2440
|
-
translatableFieldKeys: string[];
|
|
2441
|
-
};
|
|
2442
|
-
editablePageLinkOptions?: {
|
|
2443
|
-
isPersisted: boolean;
|
|
2444
|
-
isMutable: boolean;
|
|
2445
|
-
};
|
|
2446
|
-
cmsOptions?: {
|
|
2447
|
-
siteSort?: {
|
|
2448
|
-
sort: {
|
|
2449
|
-
fieldKey: string;
|
|
2450
|
-
direction: Direction;
|
|
2451
|
-
}[];
|
|
2452
|
-
};
|
|
2453
|
-
};
|
|
2454
|
-
type: PluginType;
|
|
2455
|
-
}[];
|
|
2456
|
-
pagingModes: PagingMode[];
|
|
2457
|
-
};
|
|
2047
|
+
collection?: DataCollectionNonNullableFields;
|
|
2458
2048
|
}
|
|
2459
2049
|
interface GetDataCollectionResponseNonNullableFields {
|
|
2460
|
-
collection?:
|
|
2461
|
-
|
|
2462
|
-
collectionType: CollectionType;
|
|
2463
|
-
defaultDisplayOrder?: {
|
|
2464
|
-
fieldKey: string;
|
|
2465
|
-
direction: Direction;
|
|
2466
|
-
};
|
|
2467
|
-
capabilities?: {
|
|
2468
|
-
dataOperations: DataOperation[];
|
|
2469
|
-
collectionOperations: CollectionOperation[];
|
|
2470
|
-
indexLimits?: {
|
|
2471
|
-
regular: number;
|
|
2472
|
-
unique: number;
|
|
2473
|
-
total: number;
|
|
2474
|
-
};
|
|
2475
|
-
};
|
|
2476
|
-
fields: {
|
|
2477
|
-
key: string;
|
|
2478
|
-
type: Type;
|
|
2479
|
-
typeMetadata?: {
|
|
2480
|
-
reference?: {
|
|
2481
|
-
referencedCollectionId: string;
|
|
2482
|
-
};
|
|
2483
|
-
multiReference?: {
|
|
2484
|
-
referencedCollectionId: string;
|
|
2485
|
-
referencingFieldKey: string;
|
|
2486
|
-
referencingDisplayName: string;
|
|
2487
|
-
};
|
|
2488
|
-
object?: {
|
|
2489
|
-
fields: {
|
|
2490
|
-
key: string;
|
|
2491
|
-
type: Type;
|
|
2492
|
-
capabilities?: {
|
|
2493
|
-
sortable: boolean;
|
|
2494
|
-
queryOperators: QueryOperator[];
|
|
2495
|
-
};
|
|
2496
|
-
}[];
|
|
2497
|
-
};
|
|
2498
|
-
array?: {
|
|
2499
|
-
elementType: Type;
|
|
2500
|
-
};
|
|
2501
|
-
pageLink?: {
|
|
2502
|
-
calculator?: {
|
|
2503
|
-
fieldsPattern?: {
|
|
2504
|
-
pattern: string;
|
|
2505
|
-
lowercase: boolean;
|
|
2506
|
-
};
|
|
2507
|
-
urlizedOnlyPattern?: {
|
|
2508
|
-
pattern: string;
|
|
2509
|
-
};
|
|
2510
|
-
};
|
|
2511
|
-
};
|
|
2512
|
-
};
|
|
2513
|
-
systemField: boolean;
|
|
2514
|
-
capabilities?: {
|
|
2515
|
-
sortable: boolean;
|
|
2516
|
-
queryOperators: QueryOperator[];
|
|
2517
|
-
};
|
|
2518
|
-
encrypted: boolean;
|
|
2519
|
-
plugins: {
|
|
2520
|
-
cmsOptions?: {
|
|
2521
|
-
internal: boolean;
|
|
2522
|
-
};
|
|
2523
|
-
type: FieldPluginType;
|
|
2524
|
-
}[];
|
|
2525
|
-
}[];
|
|
2526
|
-
permissions?: {
|
|
2527
|
-
insert: Role;
|
|
2528
|
-
update: Role;
|
|
2529
|
-
remove: Role;
|
|
2530
|
-
read: Role;
|
|
2531
|
-
};
|
|
2532
|
-
plugins: {
|
|
2533
|
-
publishOptions?: {
|
|
2534
|
-
defaultStatus: Status$2;
|
|
2535
|
-
};
|
|
2536
|
-
singleItemOptions?: {
|
|
2537
|
-
singleItemId: string;
|
|
2538
|
-
};
|
|
2539
|
-
urlizedOptions?: {
|
|
2540
|
-
format: Format;
|
|
2541
|
-
};
|
|
2542
|
-
multilingualOptions?: {
|
|
2543
|
-
translatableFieldKeys: string[];
|
|
2544
|
-
};
|
|
2545
|
-
editablePageLinkOptions?: {
|
|
2546
|
-
isPersisted: boolean;
|
|
2547
|
-
isMutable: boolean;
|
|
2548
|
-
};
|
|
2549
|
-
cmsOptions?: {
|
|
2550
|
-
siteSort?: {
|
|
2551
|
-
sort: {
|
|
2552
|
-
fieldKey: string;
|
|
2553
|
-
direction: Direction;
|
|
2554
|
-
}[];
|
|
2555
|
-
};
|
|
2556
|
-
};
|
|
2557
|
-
type: PluginType;
|
|
2558
|
-
}[];
|
|
2559
|
-
pagingModes: PagingMode[];
|
|
2560
|
-
};
|
|
2561
|
-
referencedCollections: {
|
|
2562
|
-
_id: string;
|
|
2563
|
-
collectionType: CollectionType;
|
|
2564
|
-
defaultDisplayOrder?: {
|
|
2565
|
-
fieldKey: string;
|
|
2566
|
-
direction: Direction;
|
|
2567
|
-
};
|
|
2568
|
-
capabilities?: {
|
|
2569
|
-
dataOperations: DataOperation[];
|
|
2570
|
-
collectionOperations: CollectionOperation[];
|
|
2571
|
-
indexLimits?: {
|
|
2572
|
-
regular: number;
|
|
2573
|
-
unique: number;
|
|
2574
|
-
total: number;
|
|
2575
|
-
};
|
|
2576
|
-
};
|
|
2577
|
-
fields: {
|
|
2578
|
-
key: string;
|
|
2579
|
-
type: Type;
|
|
2580
|
-
typeMetadata?: {
|
|
2581
|
-
reference?: {
|
|
2582
|
-
referencedCollectionId: string;
|
|
2583
|
-
};
|
|
2584
|
-
multiReference?: {
|
|
2585
|
-
referencedCollectionId: string;
|
|
2586
|
-
referencingFieldKey: string;
|
|
2587
|
-
referencingDisplayName: string;
|
|
2588
|
-
};
|
|
2589
|
-
object?: {
|
|
2590
|
-
fields: {
|
|
2591
|
-
key: string;
|
|
2592
|
-
type: Type;
|
|
2593
|
-
capabilities?: {
|
|
2594
|
-
sortable: boolean;
|
|
2595
|
-
queryOperators: QueryOperator[];
|
|
2596
|
-
};
|
|
2597
|
-
}[];
|
|
2598
|
-
};
|
|
2599
|
-
array?: {
|
|
2600
|
-
elementType: Type;
|
|
2601
|
-
};
|
|
2602
|
-
pageLink?: {
|
|
2603
|
-
calculator?: {
|
|
2604
|
-
fieldsPattern?: {
|
|
2605
|
-
pattern: string;
|
|
2606
|
-
lowercase: boolean;
|
|
2607
|
-
};
|
|
2608
|
-
urlizedOnlyPattern?: {
|
|
2609
|
-
pattern: string;
|
|
2610
|
-
};
|
|
2611
|
-
};
|
|
2612
|
-
};
|
|
2613
|
-
};
|
|
2614
|
-
systemField: boolean;
|
|
2615
|
-
capabilities?: {
|
|
2616
|
-
sortable: boolean;
|
|
2617
|
-
queryOperators: QueryOperator[];
|
|
2618
|
-
};
|
|
2619
|
-
encrypted: boolean;
|
|
2620
|
-
plugins: {
|
|
2621
|
-
cmsOptions?: {
|
|
2622
|
-
internal: boolean;
|
|
2623
|
-
};
|
|
2624
|
-
type: FieldPluginType;
|
|
2625
|
-
}[];
|
|
2626
|
-
}[];
|
|
2627
|
-
permissions?: {
|
|
2628
|
-
insert: Role;
|
|
2629
|
-
update: Role;
|
|
2630
|
-
remove: Role;
|
|
2631
|
-
read: Role;
|
|
2632
|
-
};
|
|
2633
|
-
plugins: {
|
|
2634
|
-
publishOptions?: {
|
|
2635
|
-
defaultStatus: Status$2;
|
|
2636
|
-
};
|
|
2637
|
-
singleItemOptions?: {
|
|
2638
|
-
singleItemId: string;
|
|
2639
|
-
};
|
|
2640
|
-
urlizedOptions?: {
|
|
2641
|
-
format: Format;
|
|
2642
|
-
};
|
|
2643
|
-
multilingualOptions?: {
|
|
2644
|
-
translatableFieldKeys: string[];
|
|
2645
|
-
};
|
|
2646
|
-
editablePageLinkOptions?: {
|
|
2647
|
-
isPersisted: boolean;
|
|
2648
|
-
isMutable: boolean;
|
|
2649
|
-
};
|
|
2650
|
-
cmsOptions?: {
|
|
2651
|
-
siteSort?: {
|
|
2652
|
-
sort: {
|
|
2653
|
-
fieldKey: string;
|
|
2654
|
-
direction: Direction;
|
|
2655
|
-
}[];
|
|
2656
|
-
};
|
|
2657
|
-
};
|
|
2658
|
-
type: PluginType;
|
|
2659
|
-
}[];
|
|
2660
|
-
pagingModes: PagingMode[];
|
|
2661
|
-
}[];
|
|
2050
|
+
collection?: DataCollectionNonNullableFields;
|
|
2051
|
+
referencedCollections: DataCollectionNonNullableFields[];
|
|
2662
2052
|
}
|
|
2663
2053
|
interface ListDataCollectionsResponseNonNullableFields {
|
|
2664
|
-
collections:
|
|
2665
|
-
_id: string;
|
|
2666
|
-
collectionType: CollectionType;
|
|
2667
|
-
defaultDisplayOrder?: {
|
|
2668
|
-
fieldKey: string;
|
|
2669
|
-
direction: Direction;
|
|
2670
|
-
};
|
|
2671
|
-
capabilities?: {
|
|
2672
|
-
dataOperations: DataOperation[];
|
|
2673
|
-
collectionOperations: CollectionOperation[];
|
|
2674
|
-
indexLimits?: {
|
|
2675
|
-
regular: number;
|
|
2676
|
-
unique: number;
|
|
2677
|
-
total: number;
|
|
2678
|
-
};
|
|
2679
|
-
};
|
|
2680
|
-
fields: {
|
|
2681
|
-
key: string;
|
|
2682
|
-
type: Type;
|
|
2683
|
-
typeMetadata?: {
|
|
2684
|
-
reference?: {
|
|
2685
|
-
referencedCollectionId: string;
|
|
2686
|
-
};
|
|
2687
|
-
multiReference?: {
|
|
2688
|
-
referencedCollectionId: string;
|
|
2689
|
-
referencingFieldKey: string;
|
|
2690
|
-
referencingDisplayName: string;
|
|
2691
|
-
};
|
|
2692
|
-
object?: {
|
|
2693
|
-
fields: {
|
|
2694
|
-
key: string;
|
|
2695
|
-
type: Type;
|
|
2696
|
-
capabilities?: {
|
|
2697
|
-
sortable: boolean;
|
|
2698
|
-
queryOperators: QueryOperator[];
|
|
2699
|
-
};
|
|
2700
|
-
}[];
|
|
2701
|
-
};
|
|
2702
|
-
array?: {
|
|
2703
|
-
elementType: Type;
|
|
2704
|
-
};
|
|
2705
|
-
pageLink?: {
|
|
2706
|
-
calculator?: {
|
|
2707
|
-
fieldsPattern?: {
|
|
2708
|
-
pattern: string;
|
|
2709
|
-
lowercase: boolean;
|
|
2710
|
-
};
|
|
2711
|
-
urlizedOnlyPattern?: {
|
|
2712
|
-
pattern: string;
|
|
2713
|
-
};
|
|
2714
|
-
};
|
|
2715
|
-
};
|
|
2716
|
-
};
|
|
2717
|
-
systemField: boolean;
|
|
2718
|
-
capabilities?: {
|
|
2719
|
-
sortable: boolean;
|
|
2720
|
-
queryOperators: QueryOperator[];
|
|
2721
|
-
};
|
|
2722
|
-
encrypted: boolean;
|
|
2723
|
-
plugins: {
|
|
2724
|
-
cmsOptions?: {
|
|
2725
|
-
internal: boolean;
|
|
2726
|
-
};
|
|
2727
|
-
type: FieldPluginType;
|
|
2728
|
-
}[];
|
|
2729
|
-
}[];
|
|
2730
|
-
permissions?: {
|
|
2731
|
-
insert: Role;
|
|
2732
|
-
update: Role;
|
|
2733
|
-
remove: Role;
|
|
2734
|
-
read: Role;
|
|
2735
|
-
};
|
|
2736
|
-
plugins: {
|
|
2737
|
-
publishOptions?: {
|
|
2738
|
-
defaultStatus: Status$2;
|
|
2739
|
-
};
|
|
2740
|
-
singleItemOptions?: {
|
|
2741
|
-
singleItemId: string;
|
|
2742
|
-
};
|
|
2743
|
-
urlizedOptions?: {
|
|
2744
|
-
format: Format;
|
|
2745
|
-
};
|
|
2746
|
-
multilingualOptions?: {
|
|
2747
|
-
translatableFieldKeys: string[];
|
|
2748
|
-
};
|
|
2749
|
-
editablePageLinkOptions?: {
|
|
2750
|
-
isPersisted: boolean;
|
|
2751
|
-
isMutable: boolean;
|
|
2752
|
-
};
|
|
2753
|
-
cmsOptions?: {
|
|
2754
|
-
siteSort?: {
|
|
2755
|
-
sort: {
|
|
2756
|
-
fieldKey: string;
|
|
2757
|
-
direction: Direction;
|
|
2758
|
-
}[];
|
|
2759
|
-
};
|
|
2760
|
-
};
|
|
2761
|
-
type: PluginType;
|
|
2762
|
-
}[];
|
|
2763
|
-
pagingModes: PagingMode[];
|
|
2764
|
-
}[];
|
|
2054
|
+
collections: DataCollectionNonNullableFields[];
|
|
2765
2055
|
}
|
|
2766
2056
|
interface UpdateDataCollectionResponseNonNullableFields {
|
|
2767
|
-
collection?:
|
|
2768
|
-
_id: string;
|
|
2769
|
-
collectionType: CollectionType;
|
|
2770
|
-
defaultDisplayOrder?: {
|
|
2771
|
-
fieldKey: string;
|
|
2772
|
-
direction: Direction;
|
|
2773
|
-
};
|
|
2774
|
-
capabilities?: {
|
|
2775
|
-
dataOperations: DataOperation[];
|
|
2776
|
-
collectionOperations: CollectionOperation[];
|
|
2777
|
-
indexLimits?: {
|
|
2778
|
-
regular: number;
|
|
2779
|
-
unique: number;
|
|
2780
|
-
total: number;
|
|
2781
|
-
};
|
|
2782
|
-
};
|
|
2783
|
-
fields: {
|
|
2784
|
-
key: string;
|
|
2785
|
-
type: Type;
|
|
2786
|
-
typeMetadata?: {
|
|
2787
|
-
reference?: {
|
|
2788
|
-
referencedCollectionId: string;
|
|
2789
|
-
};
|
|
2790
|
-
multiReference?: {
|
|
2791
|
-
referencedCollectionId: string;
|
|
2792
|
-
referencingFieldKey: string;
|
|
2793
|
-
referencingDisplayName: string;
|
|
2794
|
-
};
|
|
2795
|
-
object?: {
|
|
2796
|
-
fields: {
|
|
2797
|
-
key: string;
|
|
2798
|
-
type: Type;
|
|
2799
|
-
capabilities?: {
|
|
2800
|
-
sortable: boolean;
|
|
2801
|
-
queryOperators: QueryOperator[];
|
|
2802
|
-
};
|
|
2803
|
-
}[];
|
|
2804
|
-
};
|
|
2805
|
-
array?: {
|
|
2806
|
-
elementType: Type;
|
|
2807
|
-
};
|
|
2808
|
-
pageLink?: {
|
|
2809
|
-
calculator?: {
|
|
2810
|
-
fieldsPattern?: {
|
|
2811
|
-
pattern: string;
|
|
2812
|
-
lowercase: boolean;
|
|
2813
|
-
};
|
|
2814
|
-
urlizedOnlyPattern?: {
|
|
2815
|
-
pattern: string;
|
|
2816
|
-
};
|
|
2817
|
-
};
|
|
2818
|
-
};
|
|
2819
|
-
};
|
|
2820
|
-
systemField: boolean;
|
|
2821
|
-
capabilities?: {
|
|
2822
|
-
sortable: boolean;
|
|
2823
|
-
queryOperators: QueryOperator[];
|
|
2824
|
-
};
|
|
2825
|
-
encrypted: boolean;
|
|
2826
|
-
plugins: {
|
|
2827
|
-
cmsOptions?: {
|
|
2828
|
-
internal: boolean;
|
|
2829
|
-
};
|
|
2830
|
-
type: FieldPluginType;
|
|
2831
|
-
}[];
|
|
2832
|
-
}[];
|
|
2833
|
-
permissions?: {
|
|
2834
|
-
insert: Role;
|
|
2835
|
-
update: Role;
|
|
2836
|
-
remove: Role;
|
|
2837
|
-
read: Role;
|
|
2838
|
-
};
|
|
2839
|
-
plugins: {
|
|
2840
|
-
publishOptions?: {
|
|
2841
|
-
defaultStatus: Status$2;
|
|
2842
|
-
};
|
|
2843
|
-
singleItemOptions?: {
|
|
2844
|
-
singleItemId: string;
|
|
2845
|
-
};
|
|
2846
|
-
urlizedOptions?: {
|
|
2847
|
-
format: Format;
|
|
2848
|
-
};
|
|
2849
|
-
multilingualOptions?: {
|
|
2850
|
-
translatableFieldKeys: string[];
|
|
2851
|
-
};
|
|
2852
|
-
editablePageLinkOptions?: {
|
|
2853
|
-
isPersisted: boolean;
|
|
2854
|
-
isMutable: boolean;
|
|
2855
|
-
};
|
|
2856
|
-
cmsOptions?: {
|
|
2857
|
-
siteSort?: {
|
|
2858
|
-
sort: {
|
|
2859
|
-
fieldKey: string;
|
|
2860
|
-
direction: Direction;
|
|
2861
|
-
}[];
|
|
2862
|
-
};
|
|
2863
|
-
};
|
|
2864
|
-
type: PluginType;
|
|
2865
|
-
}[];
|
|
2866
|
-
pagingModes: PagingMode[];
|
|
2867
|
-
};
|
|
2057
|
+
collection?: DataCollectionNonNullableFields;
|
|
2868
2058
|
}
|
|
2869
2059
|
|
|
2870
2060
|
type __PublicMethodMetaInfo$2<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
@@ -3634,212 +2824,110 @@ interface ReplaceDataItemReferencesResponse$1 {
|
|
|
3634
2824
|
/** Updated references. */
|
|
3635
2825
|
dataItemReferences?: DataItemReference$1[];
|
|
3636
2826
|
}
|
|
2827
|
+
interface DataItemNonNullableFields$1 {
|
|
2828
|
+
id: string;
|
|
2829
|
+
dataCollectionId: string;
|
|
2830
|
+
}
|
|
3637
2831
|
interface InsertDataItemResponseNonNullableFields$1 {
|
|
3638
|
-
dataItem?:
|
|
3639
|
-
id: string;
|
|
3640
|
-
dataCollectionId: string;
|
|
3641
|
-
};
|
|
2832
|
+
dataItem?: DataItemNonNullableFields$1;
|
|
3642
2833
|
}
|
|
3643
2834
|
interface UpdateDataItemResponseNonNullableFields$1 {
|
|
3644
|
-
dataItem?:
|
|
3645
|
-
id: string;
|
|
3646
|
-
dataCollectionId: string;
|
|
3647
|
-
};
|
|
2835
|
+
dataItem?: DataItemNonNullableFields$1;
|
|
3648
2836
|
}
|
|
3649
2837
|
interface SaveDataItemResponseNonNullableFields$1 {
|
|
3650
2838
|
action: Action$1;
|
|
3651
|
-
dataItem?:
|
|
3652
|
-
id: string;
|
|
3653
|
-
dataCollectionId: string;
|
|
3654
|
-
};
|
|
2839
|
+
dataItem?: DataItemNonNullableFields$1;
|
|
3655
2840
|
}
|
|
3656
2841
|
interface GetDataItemResponseNonNullableFields$1 {
|
|
3657
|
-
dataItem?:
|
|
3658
|
-
id: string;
|
|
3659
|
-
dataCollectionId: string;
|
|
3660
|
-
};
|
|
2842
|
+
dataItem?: DataItemNonNullableFields$1;
|
|
3661
2843
|
}
|
|
3662
2844
|
interface RemoveDataItemResponseNonNullableFields$1 {
|
|
3663
|
-
dataItem?:
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
2845
|
+
dataItem?: DataItemNonNullableFields$1;
|
|
2846
|
+
}
|
|
2847
|
+
interface CachingInfoNonNullableFields$1 {
|
|
2848
|
+
tags: string[];
|
|
3667
2849
|
}
|
|
3668
2850
|
interface QueryDataItemsResponseNonNullableFields$1 {
|
|
3669
|
-
dataItems:
|
|
3670
|
-
|
|
3671
|
-
dataCollectionId: string;
|
|
3672
|
-
}[];
|
|
3673
|
-
cachingInfo?: {
|
|
3674
|
-
tags: string[];
|
|
3675
|
-
};
|
|
2851
|
+
dataItems: DataItemNonNullableFields$1[];
|
|
2852
|
+
cachingInfo?: CachingInfoNonNullableFields$1;
|
|
3676
2853
|
}
|
|
3677
2854
|
interface CountDataItemsResponseNonNullableFields$1 {
|
|
3678
2855
|
totalCount: number;
|
|
3679
2856
|
}
|
|
2857
|
+
interface ApplicationErrorNonNullableFields$1 {
|
|
2858
|
+
code: string;
|
|
2859
|
+
description: string;
|
|
2860
|
+
}
|
|
2861
|
+
interface ItemMetadataNonNullableFields$1 {
|
|
2862
|
+
originalIndex: number;
|
|
2863
|
+
success: boolean;
|
|
2864
|
+
error?: ApplicationErrorNonNullableFields$1;
|
|
2865
|
+
}
|
|
2866
|
+
interface BulkDataItemResultNonNullableFields$1 {
|
|
2867
|
+
action: BulkActionType$1;
|
|
2868
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
2869
|
+
dataItem?: DataItemNonNullableFields$1;
|
|
2870
|
+
}
|
|
2871
|
+
interface BulkActionMetadataNonNullableFields$1 {
|
|
2872
|
+
totalSuccesses: number;
|
|
2873
|
+
totalFailures: number;
|
|
2874
|
+
}
|
|
3680
2875
|
interface BulkInsertDataItemsResponseNonNullableFields$1 {
|
|
3681
|
-
results:
|
|
3682
|
-
|
|
3683
|
-
itemMetadata?: {
|
|
3684
|
-
originalIndex: number;
|
|
3685
|
-
success: boolean;
|
|
3686
|
-
error?: {
|
|
3687
|
-
code: string;
|
|
3688
|
-
description: string;
|
|
3689
|
-
};
|
|
3690
|
-
};
|
|
3691
|
-
dataItem?: {
|
|
3692
|
-
id: string;
|
|
3693
|
-
dataCollectionId: string;
|
|
3694
|
-
};
|
|
3695
|
-
}[];
|
|
3696
|
-
bulkActionMetadata?: {
|
|
3697
|
-
totalSuccesses: number;
|
|
3698
|
-
totalFailures: number;
|
|
3699
|
-
};
|
|
2876
|
+
results: BulkDataItemResultNonNullableFields$1[];
|
|
2877
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
3700
2878
|
}
|
|
3701
2879
|
interface BulkUpdateDataItemsResponseNonNullableFields$1 {
|
|
3702
|
-
results:
|
|
3703
|
-
|
|
3704
|
-
itemMetadata?: {
|
|
3705
|
-
originalIndex: number;
|
|
3706
|
-
success: boolean;
|
|
3707
|
-
error?: {
|
|
3708
|
-
code: string;
|
|
3709
|
-
description: string;
|
|
3710
|
-
};
|
|
3711
|
-
};
|
|
3712
|
-
dataItem?: {
|
|
3713
|
-
id: string;
|
|
3714
|
-
dataCollectionId: string;
|
|
3715
|
-
};
|
|
3716
|
-
}[];
|
|
3717
|
-
bulkActionMetadata?: {
|
|
3718
|
-
totalSuccesses: number;
|
|
3719
|
-
totalFailures: number;
|
|
3720
|
-
};
|
|
2880
|
+
results: BulkDataItemResultNonNullableFields$1[];
|
|
2881
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
3721
2882
|
}
|
|
3722
2883
|
interface BulkSaveDataItemsResponseNonNullableFields$1 {
|
|
3723
|
-
results:
|
|
3724
|
-
|
|
3725
|
-
itemMetadata?: {
|
|
3726
|
-
originalIndex: number;
|
|
3727
|
-
success: boolean;
|
|
3728
|
-
error?: {
|
|
3729
|
-
code: string;
|
|
3730
|
-
description: string;
|
|
3731
|
-
};
|
|
3732
|
-
};
|
|
3733
|
-
dataItem?: {
|
|
3734
|
-
id: string;
|
|
3735
|
-
dataCollectionId: string;
|
|
3736
|
-
};
|
|
3737
|
-
}[];
|
|
3738
|
-
bulkActionMetadata?: {
|
|
3739
|
-
totalSuccesses: number;
|
|
3740
|
-
totalFailures: number;
|
|
3741
|
-
};
|
|
2884
|
+
results: BulkDataItemResultNonNullableFields$1[];
|
|
2885
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
3742
2886
|
}
|
|
3743
2887
|
interface BulkRemoveDataItemsResponseNonNullableFields$1 {
|
|
3744
|
-
results:
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
dataItem?: {
|
|
3755
|
-
id: string;
|
|
3756
|
-
dataCollectionId: string;
|
|
3757
|
-
};
|
|
3758
|
-
}[];
|
|
3759
|
-
bulkActionMetadata?: {
|
|
3760
|
-
totalSuccesses: number;
|
|
3761
|
-
totalFailures: number;
|
|
3762
|
-
};
|
|
2888
|
+
results: BulkDataItemResultNonNullableFields$1[];
|
|
2889
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
2890
|
+
}
|
|
2891
|
+
interface UnresolvedReferenceNonNullableFields$1 {
|
|
2892
|
+
referringItemId: string;
|
|
2893
|
+
referringItemFieldName: string;
|
|
2894
|
+
}
|
|
2895
|
+
interface ReferencedResultNonNullableFields$1 {
|
|
2896
|
+
dataItem?: DataItemNonNullableFields$1;
|
|
2897
|
+
unresolvedReference?: UnresolvedReferenceNonNullableFields$1;
|
|
3763
2898
|
}
|
|
3764
2899
|
interface QueryReferencedDataItemsResponseNonNullableFields$1 {
|
|
3765
|
-
results:
|
|
3766
|
-
dataItem?: {
|
|
3767
|
-
id: string;
|
|
3768
|
-
dataCollectionId: string;
|
|
3769
|
-
};
|
|
3770
|
-
unresolvedReference?: {
|
|
3771
|
-
referringItemId: string;
|
|
3772
|
-
referringItemFieldName: string;
|
|
3773
|
-
};
|
|
3774
|
-
}[];
|
|
2900
|
+
results: ReferencedResultNonNullableFields$1[];
|
|
3775
2901
|
}
|
|
3776
2902
|
interface IsReferencedDataItemResponseNonNullableFields$1 {
|
|
3777
2903
|
isReferenced: boolean;
|
|
3778
2904
|
}
|
|
2905
|
+
interface DataItemReferenceNonNullableFields$1 {
|
|
2906
|
+
referringItemFieldName: string;
|
|
2907
|
+
referringItemId: string;
|
|
2908
|
+
referencedItemId: string;
|
|
2909
|
+
}
|
|
3779
2910
|
interface InsertDataItemReferenceResponseNonNullableFields$1 {
|
|
3780
|
-
dataItemReference?:
|
|
3781
|
-
referringItemFieldName: string;
|
|
3782
|
-
referringItemId: string;
|
|
3783
|
-
referencedItemId: string;
|
|
3784
|
-
};
|
|
2911
|
+
dataItemReference?: DataItemReferenceNonNullableFields$1;
|
|
3785
2912
|
}
|
|
3786
2913
|
interface RemoveDataItemReferenceResponseNonNullableFields$1 {
|
|
3787
|
-
dataItemReference?:
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
2914
|
+
dataItemReference?: DataItemReferenceNonNullableFields$1;
|
|
2915
|
+
}
|
|
2916
|
+
interface BulkDataItemReferenceResultNonNullableFields$1 {
|
|
2917
|
+
action: BulkActionType$1;
|
|
2918
|
+
referenceMetadata?: ItemMetadataNonNullableFields$1;
|
|
2919
|
+
dataItemReference?: DataItemReferenceNonNullableFields$1;
|
|
3792
2920
|
}
|
|
3793
2921
|
interface BulkInsertDataItemReferencesResponseNonNullableFields$1 {
|
|
3794
|
-
results:
|
|
3795
|
-
|
|
3796
|
-
referenceMetadata?: {
|
|
3797
|
-
originalIndex: number;
|
|
3798
|
-
success: boolean;
|
|
3799
|
-
error?: {
|
|
3800
|
-
code: string;
|
|
3801
|
-
description: string;
|
|
3802
|
-
};
|
|
3803
|
-
};
|
|
3804
|
-
dataItemReference?: {
|
|
3805
|
-
referringItemFieldName: string;
|
|
3806
|
-
referringItemId: string;
|
|
3807
|
-
referencedItemId: string;
|
|
3808
|
-
};
|
|
3809
|
-
}[];
|
|
3810
|
-
bulkActionMetadata?: {
|
|
3811
|
-
totalSuccesses: number;
|
|
3812
|
-
totalFailures: number;
|
|
3813
|
-
};
|
|
2922
|
+
results: BulkDataItemReferenceResultNonNullableFields$1[];
|
|
2923
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
3814
2924
|
}
|
|
3815
2925
|
interface BulkRemoveDataItemReferencesResponseNonNullableFields$1 {
|
|
3816
|
-
results:
|
|
3817
|
-
|
|
3818
|
-
referenceMetadata?: {
|
|
3819
|
-
originalIndex: number;
|
|
3820
|
-
success: boolean;
|
|
3821
|
-
error?: {
|
|
3822
|
-
code: string;
|
|
3823
|
-
description: string;
|
|
3824
|
-
};
|
|
3825
|
-
};
|
|
3826
|
-
dataItemReference?: {
|
|
3827
|
-
referringItemFieldName: string;
|
|
3828
|
-
referringItemId: string;
|
|
3829
|
-
referencedItemId: string;
|
|
3830
|
-
};
|
|
3831
|
-
}[];
|
|
3832
|
-
bulkActionMetadata?: {
|
|
3833
|
-
totalSuccesses: number;
|
|
3834
|
-
totalFailures: number;
|
|
3835
|
-
};
|
|
2926
|
+
results: BulkDataItemReferenceResultNonNullableFields$1[];
|
|
2927
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
3836
2928
|
}
|
|
3837
2929
|
interface ReplaceDataItemReferencesResponseNonNullableFields$1 {
|
|
3838
|
-
dataItemReferences:
|
|
3839
|
-
referringItemFieldName: string;
|
|
3840
|
-
referringItemId: string;
|
|
3841
|
-
referencedItemId: string;
|
|
3842
|
-
}[];
|
|
2930
|
+
dataItemReferences: DataItemReferenceNonNullableFields$1[];
|
|
3843
2931
|
}
|
|
3844
2932
|
|
|
3845
2933
|
interface DataItem {
|
|
@@ -4589,209 +3677,110 @@ interface ReplaceDataItemReferencesResponse {
|
|
|
4589
3677
|
/** Updated references. */
|
|
4590
3678
|
dataItemReferences?: DataItemReference[];
|
|
4591
3679
|
}
|
|
3680
|
+
interface DataItemNonNullableFields {
|
|
3681
|
+
_id: string;
|
|
3682
|
+
dataCollectionId: string;
|
|
3683
|
+
}
|
|
4592
3684
|
interface InsertDataItemResponseNonNullableFields {
|
|
4593
|
-
dataItem?:
|
|
4594
|
-
_id: string;
|
|
4595
|
-
dataCollectionId: string;
|
|
4596
|
-
};
|
|
3685
|
+
dataItem?: DataItemNonNullableFields;
|
|
4597
3686
|
}
|
|
4598
3687
|
interface UpdateDataItemResponseNonNullableFields {
|
|
4599
|
-
dataItem?:
|
|
4600
|
-
_id: string;
|
|
4601
|
-
dataCollectionId: string;
|
|
4602
|
-
};
|
|
3688
|
+
dataItem?: DataItemNonNullableFields;
|
|
4603
3689
|
}
|
|
4604
3690
|
interface SaveDataItemResponseNonNullableFields {
|
|
4605
3691
|
action: Action;
|
|
4606
|
-
dataItem?:
|
|
4607
|
-
_id: string;
|
|
4608
|
-
dataCollectionId: string;
|
|
4609
|
-
};
|
|
3692
|
+
dataItem?: DataItemNonNullableFields;
|
|
4610
3693
|
}
|
|
4611
3694
|
interface GetDataItemResponseNonNullableFields {
|
|
4612
|
-
dataItem?:
|
|
4613
|
-
_id: string;
|
|
4614
|
-
dataCollectionId: string;
|
|
4615
|
-
};
|
|
3695
|
+
dataItem?: DataItemNonNullableFields;
|
|
4616
3696
|
}
|
|
4617
3697
|
interface RemoveDataItemResponseNonNullableFields {
|
|
4618
|
-
dataItem?:
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
3698
|
+
dataItem?: DataItemNonNullableFields;
|
|
3699
|
+
}
|
|
3700
|
+
interface CachingInfoNonNullableFields {
|
|
3701
|
+
tags: string[];
|
|
4622
3702
|
}
|
|
4623
3703
|
interface QueryDataItemsResponseNonNullableFields {
|
|
4624
|
-
dataItems:
|
|
4625
|
-
|
|
4626
|
-
dataCollectionId: string;
|
|
4627
|
-
}[];
|
|
3704
|
+
dataItems: DataItemNonNullableFields[];
|
|
3705
|
+
cachingInfo?: CachingInfoNonNullableFields;
|
|
4628
3706
|
}
|
|
4629
3707
|
interface CountDataItemsResponseNonNullableFields {
|
|
4630
3708
|
totalCount: number;
|
|
4631
3709
|
}
|
|
3710
|
+
interface ApplicationErrorNonNullableFields {
|
|
3711
|
+
code: string;
|
|
3712
|
+
description: string;
|
|
3713
|
+
}
|
|
3714
|
+
interface ItemMetadataNonNullableFields {
|
|
3715
|
+
originalIndex: number;
|
|
3716
|
+
success: boolean;
|
|
3717
|
+
error?: ApplicationErrorNonNullableFields;
|
|
3718
|
+
}
|
|
3719
|
+
interface BulkDataItemResultNonNullableFields {
|
|
3720
|
+
action: BulkActionType;
|
|
3721
|
+
itemMetadata?: ItemMetadataNonNullableFields;
|
|
3722
|
+
dataItem?: DataItemNonNullableFields;
|
|
3723
|
+
}
|
|
3724
|
+
interface BulkActionMetadataNonNullableFields {
|
|
3725
|
+
totalSuccesses: number;
|
|
3726
|
+
totalFailures: number;
|
|
3727
|
+
}
|
|
4632
3728
|
interface BulkInsertDataItemsResponseNonNullableFields {
|
|
4633
|
-
results:
|
|
4634
|
-
|
|
4635
|
-
itemMetadata?: {
|
|
4636
|
-
originalIndex: number;
|
|
4637
|
-
success: boolean;
|
|
4638
|
-
error?: {
|
|
4639
|
-
code: string;
|
|
4640
|
-
description: string;
|
|
4641
|
-
};
|
|
4642
|
-
};
|
|
4643
|
-
dataItem?: {
|
|
4644
|
-
_id: string;
|
|
4645
|
-
dataCollectionId: string;
|
|
4646
|
-
};
|
|
4647
|
-
}[];
|
|
4648
|
-
bulkActionMetadata?: {
|
|
4649
|
-
totalSuccesses: number;
|
|
4650
|
-
totalFailures: number;
|
|
4651
|
-
};
|
|
3729
|
+
results: BulkDataItemResultNonNullableFields[];
|
|
3730
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
4652
3731
|
}
|
|
4653
3732
|
interface BulkUpdateDataItemsResponseNonNullableFields {
|
|
4654
|
-
results:
|
|
4655
|
-
|
|
4656
|
-
itemMetadata?: {
|
|
4657
|
-
originalIndex: number;
|
|
4658
|
-
success: boolean;
|
|
4659
|
-
error?: {
|
|
4660
|
-
code: string;
|
|
4661
|
-
description: string;
|
|
4662
|
-
};
|
|
4663
|
-
};
|
|
4664
|
-
dataItem?: {
|
|
4665
|
-
_id: string;
|
|
4666
|
-
dataCollectionId: string;
|
|
4667
|
-
};
|
|
4668
|
-
}[];
|
|
4669
|
-
bulkActionMetadata?: {
|
|
4670
|
-
totalSuccesses: number;
|
|
4671
|
-
totalFailures: number;
|
|
4672
|
-
};
|
|
3733
|
+
results: BulkDataItemResultNonNullableFields[];
|
|
3734
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
4673
3735
|
}
|
|
4674
3736
|
interface BulkSaveDataItemsResponseNonNullableFields {
|
|
4675
|
-
results:
|
|
4676
|
-
|
|
4677
|
-
itemMetadata?: {
|
|
4678
|
-
originalIndex: number;
|
|
4679
|
-
success: boolean;
|
|
4680
|
-
error?: {
|
|
4681
|
-
code: string;
|
|
4682
|
-
description: string;
|
|
4683
|
-
};
|
|
4684
|
-
};
|
|
4685
|
-
dataItem?: {
|
|
4686
|
-
_id: string;
|
|
4687
|
-
dataCollectionId: string;
|
|
4688
|
-
};
|
|
4689
|
-
}[];
|
|
4690
|
-
bulkActionMetadata?: {
|
|
4691
|
-
totalSuccesses: number;
|
|
4692
|
-
totalFailures: number;
|
|
4693
|
-
};
|
|
3737
|
+
results: BulkDataItemResultNonNullableFields[];
|
|
3738
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
4694
3739
|
}
|
|
4695
3740
|
interface BulkRemoveDataItemsResponseNonNullableFields {
|
|
4696
|
-
results:
|
|
4697
|
-
|
|
4698
|
-
|
|
4699
|
-
|
|
4700
|
-
|
|
4701
|
-
|
|
4702
|
-
|
|
4703
|
-
|
|
4704
|
-
|
|
4705
|
-
|
|
4706
|
-
dataItem?: {
|
|
4707
|
-
_id: string;
|
|
4708
|
-
dataCollectionId: string;
|
|
4709
|
-
};
|
|
4710
|
-
}[];
|
|
4711
|
-
bulkActionMetadata?: {
|
|
4712
|
-
totalSuccesses: number;
|
|
4713
|
-
totalFailures: number;
|
|
4714
|
-
};
|
|
3741
|
+
results: BulkDataItemResultNonNullableFields[];
|
|
3742
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
3743
|
+
}
|
|
3744
|
+
interface UnresolvedReferenceNonNullableFields {
|
|
3745
|
+
referringItemId: string;
|
|
3746
|
+
referringItemFieldName: string;
|
|
3747
|
+
}
|
|
3748
|
+
interface ReferencedResultNonNullableFields {
|
|
3749
|
+
dataItem?: DataItemNonNullableFields;
|
|
3750
|
+
unresolvedReference?: UnresolvedReferenceNonNullableFields;
|
|
4715
3751
|
}
|
|
4716
3752
|
interface QueryReferencedDataItemsResponseNonNullableFields {
|
|
4717
|
-
results:
|
|
4718
|
-
dataItem?: {
|
|
4719
|
-
_id: string;
|
|
4720
|
-
dataCollectionId: string;
|
|
4721
|
-
};
|
|
4722
|
-
unresolvedReference?: {
|
|
4723
|
-
referringItemId: string;
|
|
4724
|
-
referringItemFieldName: string;
|
|
4725
|
-
};
|
|
4726
|
-
}[];
|
|
3753
|
+
results: ReferencedResultNonNullableFields[];
|
|
4727
3754
|
}
|
|
4728
3755
|
interface IsReferencedDataItemResponseNonNullableFields {
|
|
4729
3756
|
isReferenced: boolean;
|
|
4730
3757
|
}
|
|
3758
|
+
interface DataItemReferenceNonNullableFields {
|
|
3759
|
+
referringItemFieldName: string;
|
|
3760
|
+
referringItemId: string;
|
|
3761
|
+
referencedItemId: string;
|
|
3762
|
+
}
|
|
4731
3763
|
interface InsertDataItemReferenceResponseNonNullableFields {
|
|
4732
|
-
dataItemReference?:
|
|
4733
|
-
referringItemFieldName: string;
|
|
4734
|
-
referringItemId: string;
|
|
4735
|
-
referencedItemId: string;
|
|
4736
|
-
};
|
|
3764
|
+
dataItemReference?: DataItemReferenceNonNullableFields;
|
|
4737
3765
|
}
|
|
4738
3766
|
interface RemoveDataItemReferenceResponseNonNullableFields {
|
|
4739
|
-
dataItemReference?:
|
|
4740
|
-
|
|
4741
|
-
|
|
4742
|
-
|
|
4743
|
-
|
|
3767
|
+
dataItemReference?: DataItemReferenceNonNullableFields;
|
|
3768
|
+
}
|
|
3769
|
+
interface BulkDataItemReferenceResultNonNullableFields {
|
|
3770
|
+
action: BulkActionType;
|
|
3771
|
+
referenceMetadata?: ItemMetadataNonNullableFields;
|
|
3772
|
+
dataItemReference?: DataItemReferenceNonNullableFields;
|
|
4744
3773
|
}
|
|
4745
3774
|
interface BulkInsertDataItemReferencesResponseNonNullableFields {
|
|
4746
|
-
results:
|
|
4747
|
-
|
|
4748
|
-
referenceMetadata?: {
|
|
4749
|
-
originalIndex: number;
|
|
4750
|
-
success: boolean;
|
|
4751
|
-
error?: {
|
|
4752
|
-
code: string;
|
|
4753
|
-
description: string;
|
|
4754
|
-
};
|
|
4755
|
-
};
|
|
4756
|
-
dataItemReference?: {
|
|
4757
|
-
referringItemFieldName: string;
|
|
4758
|
-
referringItemId: string;
|
|
4759
|
-
referencedItemId: string;
|
|
4760
|
-
};
|
|
4761
|
-
}[];
|
|
4762
|
-
bulkActionMetadata?: {
|
|
4763
|
-
totalSuccesses: number;
|
|
4764
|
-
totalFailures: number;
|
|
4765
|
-
};
|
|
3775
|
+
results: BulkDataItemReferenceResultNonNullableFields[];
|
|
3776
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
4766
3777
|
}
|
|
4767
3778
|
interface BulkRemoveDataItemReferencesResponseNonNullableFields {
|
|
4768
|
-
results:
|
|
4769
|
-
|
|
4770
|
-
referenceMetadata?: {
|
|
4771
|
-
originalIndex: number;
|
|
4772
|
-
success: boolean;
|
|
4773
|
-
error?: {
|
|
4774
|
-
code: string;
|
|
4775
|
-
description: string;
|
|
4776
|
-
};
|
|
4777
|
-
};
|
|
4778
|
-
dataItemReference?: {
|
|
4779
|
-
referringItemFieldName: string;
|
|
4780
|
-
referringItemId: string;
|
|
4781
|
-
referencedItemId: string;
|
|
4782
|
-
};
|
|
4783
|
-
}[];
|
|
4784
|
-
bulkActionMetadata?: {
|
|
4785
|
-
totalSuccesses: number;
|
|
4786
|
-
totalFailures: number;
|
|
4787
|
-
};
|
|
3779
|
+
results: BulkDataItemReferenceResultNonNullableFields[];
|
|
3780
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
4788
3781
|
}
|
|
4789
3782
|
interface ReplaceDataItemReferencesResponseNonNullableFields {
|
|
4790
|
-
dataItemReferences:
|
|
4791
|
-
referringItemFieldName: string;
|
|
4792
|
-
referringItemId: string;
|
|
4793
|
-
referencedItemId: string;
|
|
4794
|
-
}[];
|
|
3783
|
+
dataItemReferences: DataItemReferenceNonNullableFields[];
|
|
4795
3784
|
}
|
|
4796
3785
|
|
|
4797
3786
|
type __PublicMethodMetaInfo$1<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
@@ -4993,39 +3982,28 @@ interface PagingMetadata$1 {
|
|
|
4993
3982
|
/** Flag that indicates the server failed to calculate the `total` field. */
|
|
4994
3983
|
tooManyToCount?: boolean | null;
|
|
4995
3984
|
}
|
|
3985
|
+
interface FieldNonNullableFields$1 {
|
|
3986
|
+
path: string;
|
|
3987
|
+
order: Order$1;
|
|
3988
|
+
}
|
|
3989
|
+
interface FailureNonNullableFields$1 {
|
|
3990
|
+
code: string;
|
|
3991
|
+
broadCode: string;
|
|
3992
|
+
description: string;
|
|
3993
|
+
}
|
|
3994
|
+
interface IndexNonNullableFields$1 {
|
|
3995
|
+
name: string;
|
|
3996
|
+
fields: FieldNonNullableFields$1[];
|
|
3997
|
+
status: Status$1;
|
|
3998
|
+
failure?: FailureNonNullableFields$1;
|
|
3999
|
+
unique: boolean;
|
|
4000
|
+
caseInsensitive: boolean;
|
|
4001
|
+
}
|
|
4996
4002
|
interface CreateIndexResponseNonNullableFields$1 {
|
|
4997
|
-
index?:
|
|
4998
|
-
name: string;
|
|
4999
|
-
fields: {
|
|
5000
|
-
path: string;
|
|
5001
|
-
order: Order$1;
|
|
5002
|
-
}[];
|
|
5003
|
-
status: Status$1;
|
|
5004
|
-
failure?: {
|
|
5005
|
-
code: string;
|
|
5006
|
-
broadCode: string;
|
|
5007
|
-
description: string;
|
|
5008
|
-
};
|
|
5009
|
-
unique: boolean;
|
|
5010
|
-
caseInsensitive: boolean;
|
|
5011
|
-
};
|
|
4003
|
+
index?: IndexNonNullableFields$1;
|
|
5012
4004
|
}
|
|
5013
4005
|
interface ListIndexesResponseNonNullableFields$1 {
|
|
5014
|
-
indexes:
|
|
5015
|
-
name: string;
|
|
5016
|
-
fields: {
|
|
5017
|
-
path: string;
|
|
5018
|
-
order: Order$1;
|
|
5019
|
-
}[];
|
|
5020
|
-
status: Status$1;
|
|
5021
|
-
failure?: {
|
|
5022
|
-
code: string;
|
|
5023
|
-
broadCode: string;
|
|
5024
|
-
description: string;
|
|
5025
|
-
};
|
|
5026
|
-
unique: boolean;
|
|
5027
|
-
caseInsensitive: boolean;
|
|
5028
|
-
}[];
|
|
4006
|
+
indexes: IndexNonNullableFields$1[];
|
|
5029
4007
|
}
|
|
5030
4008
|
|
|
5031
4009
|
/** An index is a map of a collection's data, organized according to specific fields to increase query speed. */
|
|
@@ -5167,37 +4145,28 @@ interface PagingMetadata {
|
|
|
5167
4145
|
/** Flag that indicates the server failed to calculate the `total` field. */
|
|
5168
4146
|
tooManyToCount?: boolean | null;
|
|
5169
4147
|
}
|
|
4148
|
+
interface FieldNonNullableFields {
|
|
4149
|
+
path: string;
|
|
4150
|
+
order: Order;
|
|
4151
|
+
}
|
|
4152
|
+
interface FailureNonNullableFields {
|
|
4153
|
+
code: string;
|
|
4154
|
+
broadCode: string;
|
|
4155
|
+
description: string;
|
|
4156
|
+
}
|
|
4157
|
+
interface IndexNonNullableFields {
|
|
4158
|
+
name: string;
|
|
4159
|
+
fields: FieldNonNullableFields[];
|
|
4160
|
+
status: Status;
|
|
4161
|
+
failure?: FailureNonNullableFields;
|
|
4162
|
+
unique: boolean;
|
|
4163
|
+
caseInsensitive: boolean;
|
|
4164
|
+
}
|
|
5170
4165
|
interface CreateIndexResponseNonNullableFields {
|
|
5171
|
-
index?:
|
|
5172
|
-
name: string;
|
|
5173
|
-
fields: {
|
|
5174
|
-
path: string;
|
|
5175
|
-
order: Order;
|
|
5176
|
-
}[];
|
|
5177
|
-
status: Status;
|
|
5178
|
-
failure?: {
|
|
5179
|
-
code: string;
|
|
5180
|
-
description: string;
|
|
5181
|
-
};
|
|
5182
|
-
unique: boolean;
|
|
5183
|
-
caseInsensitive: boolean;
|
|
5184
|
-
};
|
|
4166
|
+
index?: IndexNonNullableFields;
|
|
5185
4167
|
}
|
|
5186
4168
|
interface ListIndexesResponseNonNullableFields {
|
|
5187
|
-
indexes:
|
|
5188
|
-
name: string;
|
|
5189
|
-
fields: {
|
|
5190
|
-
path: string;
|
|
5191
|
-
order: Order;
|
|
5192
|
-
}[];
|
|
5193
|
-
status: Status;
|
|
5194
|
-
failure?: {
|
|
5195
|
-
code: string;
|
|
5196
|
-
description: string;
|
|
5197
|
-
};
|
|
5198
|
-
unique: boolean;
|
|
5199
|
-
caseInsensitive: boolean;
|
|
5200
|
-
}[];
|
|
4169
|
+
indexes: IndexNonNullableFields[];
|
|
5201
4170
|
}
|
|
5202
4171
|
|
|
5203
4172
|
type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|