@osdk/client.unstable 2.8.0-beta.10 → 2.8.0-beta.11

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.
@@ -0,0 +1,3207 @@
1
+ type _api_eddie_transformations_api_InputParameterType = _api_eddie_transformations_api_InputParameterType_primitive | _api_eddie_transformations_api_InputParameterType_composite;
2
+ interface _api_eddie_transformations_api_InputParameterType_primitive {
3
+ type: "primitive";
4
+ primitive: _api_eddie_transformations_api_PrimitiveInputParameterType;
5
+ }
6
+ interface _api_eddie_transformations_api_InputParameterType_composite {
7
+ type: "composite";
8
+ composite: unknown;
9
+ }
10
+ type _api_eddie_transformations_api_PrimitiveInputParameterType = unknown;
11
+ interface _api_eddie_transformations_api_LiteralConstraint_columnName {
12
+ type: "columnName";
13
+ columnName: _api_eddie_transformations_api_ColumnNameLiteralConstraint;
14
+ }
15
+ type _api_eddie_transformations_api_LiteralConstraint = _api_eddie_transformations_api_LiteralConstraint_columnName;
16
+ interface _api_eddie_transformations_api_ColumnNameLiteralConstraint {}
17
+ interface _api_eddie_transformations_api_RegexParameterType {}
18
+ interface _api_eddie_transformations_api_ExplicitType {
19
+ types: Array<_api_eddie_transformations_api_LogicalType>;
20
+ }
21
+ interface _api_eddie_transformations_api_LogicalType {
22
+ physicalType: unknown;
23
+ }
24
+ interface _api_functions_CustomType {
25
+ about?: LocalizedTitleAndDescription | null | undefined;
26
+ fields: Record<_api_functions_CustomTypeFieldName, _api_functions_DataType>;
27
+ id: _api_functions_CustomTypeId;
28
+ }
29
+ type _api_functions_CustomTypeFieldName = string;
30
+ type _api_functions_CustomTypeId = string;
31
+ type _api_functions_DataType = {
32
+ type: string
33
+ [key: string]: unknown
34
+ };
35
+ export type ActionLogRuleEditedObjectRelations = Record<ObjectTypeReference, LinkTypeReference>;
36
+ export type ActionLogRulePropertyValues = Record<ObjectTypePropertyReference, ActionLogValue>;
37
+ export interface ActionLogRuleShape {
38
+ actionLogObjectTypeId: ObjectTypeReference;
39
+ editedObjectRelations: ActionLogRuleEditedObjectRelations;
40
+ propertyValues: ActionLogRulePropertyValues;
41
+ }
42
+ export interface ActionLogValue_parameterValue {
43
+ type: "parameterValue";
44
+ parameterValue: ActionTypeParameterReference;
45
+ }
46
+ export interface ActionLogValue_objectParameterPropertyValue {
47
+ type: "objectParameterPropertyValue";
48
+ objectParameterPropertyValue: ObjectParameterPropertyValue;
49
+ }
50
+ export interface ActionLogValue_interfaceParameterPropertyValue {
51
+ type: "interfaceParameterPropertyValue";
52
+ interfaceParameterPropertyValue: InterfaceParameterPropertyValue;
53
+ }
54
+ export interface ActionLogValue_editedObjects {
55
+ type: "editedObjects";
56
+ editedObjects: ObjectTypeReference;
57
+ }
58
+ export interface ActionLogValue_actionTypeRid {
59
+ type: "actionTypeRid";
60
+ actionTypeRid: Empty;
61
+ }
62
+ export interface ActionLogValue_actionRid {
63
+ type: "actionRid";
64
+ actionRid: Empty;
65
+ }
66
+ export interface ActionLogValue_actionTypeVersion {
67
+ type: "actionTypeVersion";
68
+ actionTypeVersion: Empty;
69
+ }
70
+ export interface ActionLogValue_actionTimestamp {
71
+ type: "actionTimestamp";
72
+ actionTimestamp: Empty;
73
+ }
74
+ export interface ActionLogValue_actionUser {
75
+ type: "actionUser";
76
+ actionUser: Empty;
77
+ }
78
+ export interface ActionLogValue_isReverted {
79
+ type: "isReverted";
80
+ isReverted: Empty;
81
+ }
82
+ export interface ActionLogValue_revertUser {
83
+ type: "revertUser";
84
+ revertUser: Empty;
85
+ }
86
+ export interface ActionLogValue_revertTimestamp {
87
+ type: "revertTimestamp";
88
+ revertTimestamp: Empty;
89
+ }
90
+ export interface ActionLogValue_synchronousWebhookInstanceId {
91
+ type: "synchronousWebhookInstanceId";
92
+ synchronousWebhookInstanceId: Empty;
93
+ }
94
+ export interface ActionLogValue_asynchronousWebhookInstanceIds {
95
+ type: "asynchronousWebhookInstanceIds";
96
+ asynchronousWebhookInstanceIds: Empty;
97
+ }
98
+ export interface ActionLogValue_notifiedUsers {
99
+ type: "notifiedUsers";
100
+ notifiedUsers: Empty;
101
+ }
102
+ export interface ActionLogValue_notificationIds {
103
+ type: "notificationIds";
104
+ notificationIds: Empty;
105
+ }
106
+ export interface ActionLogValue_scenarioRid {
107
+ type: "scenarioRid";
108
+ scenarioRid: Empty;
109
+ }
110
+ export interface ActionLogValue_summary {
111
+ type: "summary";
112
+ summary: Array<ActionTypeRichTextComponent>;
113
+ }
114
+ export type ActionLogValue = ActionLogValue_parameterValue | ActionLogValue_objectParameterPropertyValue | ActionLogValue_interfaceParameterPropertyValue | ActionLogValue_editedObjects | ActionLogValue_actionTypeRid | ActionLogValue_actionRid | ActionLogValue_actionTypeVersion | ActionLogValue_actionTimestamp | ActionLogValue_actionUser | ActionLogValue_isReverted | ActionLogValue_revertUser | ActionLogValue_revertTimestamp | ActionLogValue_synchronousWebhookInstanceId | ActionLogValue_asynchronousWebhookInstanceIds | ActionLogValue_notifiedUsers | ActionLogValue_notificationIds | ActionLogValue_scenarioRid | ActionLogValue_summary;
115
+ export type ActionParameterShapeId = string;
116
+ /**
117
+ * DEPRECATED. Use `ActionTypeParameterShape` instead.
118
+ */
119
+ export interface ActionParameterTypeShape {
120
+ about: LocalizedTitleAndDescription;
121
+ type: BaseParameterType;
122
+ }
123
+ export type ActionTypeParameterReference = BlockInternalId;
124
+ export interface ActionTypeParameterShape {
125
+ about: LocalizedTitleAndDescription;
126
+ actionType: ActionTypeReference;
127
+ type: BaseParameterType;
128
+ }
129
+ export type ActionTypeReference = BlockInternalId;
130
+ export interface ActionTypeRichTextComponent_message {
131
+ type: "message";
132
+ message: Empty;
133
+ }
134
+ export interface ActionTypeRichTextComponent_parameter {
135
+ type: "parameter";
136
+ parameter: ActionTypeParameterReference;
137
+ }
138
+ export interface ActionTypeRichTextComponent_parameterProperty {
139
+ type: "parameterProperty";
140
+ parameterProperty: ObjectParameterPropertyValue;
141
+ }
142
+ /**
143
+ * Generic type that can used to define a string that should have Action execution details injected into it when
144
+ * it is rendered.
145
+ */
146
+ export type ActionTypeRichTextComponent = ActionTypeRichTextComponent_message | ActionTypeRichTextComponent_parameter | ActionTypeRichTextComponent_parameterProperty;
147
+ export type ActionTypeRid = string;
148
+ export interface ActionTypeShape {
149
+ about: LocalizedTitleAndDescription;
150
+ actionLogRule?: ActionLogRuleShape | null | undefined;
151
+ parameters: Record<ActionParameterShapeId, ActionParameterTypeShape>;
152
+ parametersV2: Array<ActionTypeParameterReference>;
153
+ }
154
+ export interface AipAgentShape {
155
+ about: LocalizedTitleAndDescription;
156
+ }
157
+ export interface AllowedObjectPropertyType_objectPropertyType {
158
+ type: "objectPropertyType";
159
+ objectPropertyType: ObjectPropertyType;
160
+ }
161
+ /**
162
+ * Wrapper which refers to an property type and could support set of allowed types or more flexible constraints
163
+ */
164
+ export type AllowedObjectPropertyType = AllowedObjectPropertyType_objectPropertyType;
165
+ /**
166
+ * Profile name must be one of the specified names
167
+ */
168
+ export interface AllowedProfileNamesConstraint {
169
+ names: Array<SparkProfileName>;
170
+ }
171
+ /**
172
+ * This shape represents a user-provided acknowledgement of letting OMS infer and apply any schema migrations
173
+ * needed to perform a Marketplace installation. Specifically, if the installation requires dropping properties,
174
+ * changing the type of a property, or any other breaking schema modification that requires schema migrations,
175
+ * user acknowledgement of the risk of potential failing cast schema migrations or automatically applied drop
176
+ * migrations is required to proceed with the installation. For more information on schema migrations, refer to
177
+ * the docs on Managing Schema Changes in the Ontology.
178
+ */
179
+ export interface AllowOntologySchemaMigrationsShape {
180
+ about: LocalizedTitleAndDescription;
181
+ }
182
+ export interface AnySchema {}
183
+ export interface AppConfigOutputShape {
184
+ about: LocalizedTitleAndDescription;
185
+ }
186
+ export interface ArrayBaseType {
187
+ elementType: PrimitiveBaseType;
188
+ }
189
+ /**
190
+ * Represents an Array property type.
191
+ */
192
+ export interface ArrayObjectPropertyType {
193
+ elementType: PrimitiveObjectPropertyType;
194
+ }
195
+ export interface ArtifactsRepositoryShape {
196
+ about: LocalizedTitleAndDescription;
197
+ }
198
+ /**
199
+ * AttachmentListType specifies that this parameter must be a list of Attachment rids.
200
+ */
201
+ export interface AttachmentListType {}
202
+ /**
203
+ * AttachmentType specifies that this parameter must be the rid of an Attachment.
204
+ */
205
+ export interface AttachmentType {}
206
+ export interface AudioDecodeFormat_flac {
207
+ type: "flac";
208
+ flac: FlacFormat;
209
+ }
210
+ export interface AudioDecodeFormat_mp2 {
211
+ type: "mp2";
212
+ mp2: Mp2Format;
213
+ }
214
+ export interface AudioDecodeFormat_mp3 {
215
+ type: "mp3";
216
+ mp3: Mp3Format;
217
+ }
218
+ export interface AudioDecodeFormat_mp4 {
219
+ type: "mp4";
220
+ mp4: Mp4AudioContainerFormat;
221
+ }
222
+ export interface AudioDecodeFormat_nistSphere {
223
+ type: "nistSphere";
224
+ nistSphere: NistSphereFormat;
225
+ }
226
+ export interface AudioDecodeFormat_ogg {
227
+ type: "ogg";
228
+ ogg: OggAudioContainerFormat;
229
+ }
230
+ export interface AudioDecodeFormat_wav {
231
+ type: "wav";
232
+ wav: WavFormat;
233
+ }
234
+ export interface AudioDecodeFormat_webm {
235
+ type: "webm";
236
+ webm: WebmAudioContainerFormat;
237
+ }
238
+ export type AudioDecodeFormat = AudioDecodeFormat_flac | AudioDecodeFormat_mp2 | AudioDecodeFormat_mp3 | AudioDecodeFormat_mp4 | AudioDecodeFormat_nistSphere | AudioDecodeFormat_ogg | AudioDecodeFormat_wav | AudioDecodeFormat_webm;
239
+ export interface AudioSchema {
240
+ format: AudioDecodeFormat;
241
+ }
242
+ /**
243
+ * This shape is used to refer to libraries that are produced by repositories created in Authoring.
244
+ */
245
+ export interface AuthoringLibraryShape {
246
+ about: LocalizedTitleAndDescription;
247
+ }
248
+ export interface AuthoringRepositoryShape {
249
+ about: LocalizedTitleAndDescription;
250
+ }
251
+ export interface AutomationShape {
252
+ about: LocalizedTitleAndDescription;
253
+ }
254
+ export interface BaseParameterType_boolean {
255
+ type: "boolean";
256
+ boolean: BooleanType;
257
+ }
258
+ export interface BaseParameterType_booleanList {
259
+ type: "booleanList";
260
+ booleanList: BooleanListType;
261
+ }
262
+ export interface BaseParameterType_integer {
263
+ type: "integer";
264
+ integer: IntegerType;
265
+ }
266
+ export interface BaseParameterType_integerList {
267
+ type: "integerList";
268
+ integerList: IntegerListType;
269
+ }
270
+ export interface BaseParameterType_long {
271
+ type: "long";
272
+ long: LongType;
273
+ }
274
+ export interface BaseParameterType_longList {
275
+ type: "longList";
276
+ longList: LongListType;
277
+ }
278
+ export interface BaseParameterType_double {
279
+ type: "double";
280
+ double: DoubleType;
281
+ }
282
+ export interface BaseParameterType_doubleList {
283
+ type: "doubleList";
284
+ doubleList: DoubleListType;
285
+ }
286
+ export interface BaseParameterType_string {
287
+ type: "string";
288
+ string: StringType;
289
+ }
290
+ export interface BaseParameterType_stringList {
291
+ type: "stringList";
292
+ stringList: StringListType;
293
+ }
294
+ export interface BaseParameterType_decimal {
295
+ type: "decimal";
296
+ decimal: DecimalType;
297
+ }
298
+ export interface BaseParameterType_decimalList {
299
+ type: "decimalList";
300
+ decimalList: DecimalListType;
301
+ }
302
+ export interface BaseParameterType_geohash {
303
+ type: "geohash";
304
+ geohash: GeohashType;
305
+ }
306
+ export interface BaseParameterType_geohashList {
307
+ type: "geohashList";
308
+ geohashList: GeohashListType;
309
+ }
310
+ export interface BaseParameterType_geoshape {
311
+ type: "geoshape";
312
+ geoshape: GeoshapeType;
313
+ }
314
+ export interface BaseParameterType_geoshapeList {
315
+ type: "geoshapeList";
316
+ geoshapeList: GeoshapeListType;
317
+ }
318
+ export interface BaseParameterType_timeSeriesReference {
319
+ type: "timeSeriesReference";
320
+ timeSeriesReference: TimeSeriesReferenceType;
321
+ }
322
+ export interface BaseParameterType_timestamp {
323
+ type: "timestamp";
324
+ timestamp: TimestampType;
325
+ }
326
+ export interface BaseParameterType_timestampList {
327
+ type: "timestampList";
328
+ timestampList: TimestampListType;
329
+ }
330
+ export interface BaseParameterType_date {
331
+ type: "date";
332
+ date: DateType;
333
+ }
334
+ export interface BaseParameterType_dateList {
335
+ type: "dateList";
336
+ dateList: DateListType;
337
+ }
338
+ export interface BaseParameterType_objectReference {
339
+ type: "objectReference";
340
+ objectReference: ObjectReferenceType;
341
+ }
342
+ export interface BaseParameterType_objectReferenceList {
343
+ type: "objectReferenceList";
344
+ objectReferenceList: ObjectReferenceListType;
345
+ }
346
+ export interface BaseParameterType_objectSetRid {
347
+ type: "objectSetRid";
348
+ objectSetRid: ObjectSetRidType;
349
+ }
350
+ export interface BaseParameterType_interfaceReference {
351
+ type: "interfaceReference";
352
+ interfaceReference: InterfaceReferenceType;
353
+ }
354
+ export interface BaseParameterType_interfaceReferenceList {
355
+ type: "interfaceReferenceList";
356
+ interfaceReferenceList: InterfaceReferenceListType;
357
+ }
358
+ export interface BaseParameterType_interfaceObjectSetRid {
359
+ type: "interfaceObjectSetRid";
360
+ interfaceObjectSetRid: InterfaceObjectSetRidType;
361
+ }
362
+ export interface BaseParameterType_objectTypeReference {
363
+ type: "objectTypeReference";
364
+ objectTypeReference: ObjectTypeReferenceType;
365
+ }
366
+ export interface BaseParameterType_attachment {
367
+ type: "attachment";
368
+ attachment: AttachmentType;
369
+ }
370
+ export interface BaseParameterType_attachmentList {
371
+ type: "attachmentList";
372
+ attachmentList: AttachmentListType;
373
+ }
374
+ export interface BaseParameterType_marking {
375
+ type: "marking";
376
+ marking: MarkingType;
377
+ }
378
+ export interface BaseParameterType_markingList {
379
+ type: "markingList";
380
+ markingList: MarkingListType;
381
+ }
382
+ export interface BaseParameterType_mediaReference {
383
+ type: "mediaReference";
384
+ mediaReference: MediaReferenceType;
385
+ }
386
+ export interface BaseParameterType_geotimeSeriesReference {
387
+ type: "geotimeSeriesReference";
388
+ geotimeSeriesReference: GeotimeSeriesReferenceType;
389
+ }
390
+ export interface BaseParameterType_geotimeSeriesReferenceList {
391
+ type: "geotimeSeriesReferenceList";
392
+ geotimeSeriesReferenceList: GeotimeSeriesReferenceListType;
393
+ }
394
+ export interface BaseParameterType_struct {
395
+ type: "struct";
396
+ struct: StructType;
397
+ }
398
+ export interface BaseParameterType_structList {
399
+ type: "structList";
400
+ structList: StructListType;
401
+ }
402
+ /**
403
+ * All of the possible types for Parameters.
404
+ */
405
+ export type BaseParameterType = BaseParameterType_boolean | BaseParameterType_booleanList | BaseParameterType_integer | BaseParameterType_integerList | BaseParameterType_long | BaseParameterType_longList | BaseParameterType_double | BaseParameterType_doubleList | BaseParameterType_string | BaseParameterType_stringList | BaseParameterType_decimal | BaseParameterType_decimalList | BaseParameterType_geohash | BaseParameterType_geohashList | BaseParameterType_geoshape | BaseParameterType_geoshapeList | BaseParameterType_timeSeriesReference | BaseParameterType_timestamp | BaseParameterType_timestampList | BaseParameterType_date | BaseParameterType_dateList | BaseParameterType_objectReference | BaseParameterType_objectReferenceList | BaseParameterType_objectSetRid | BaseParameterType_interfaceReference | BaseParameterType_interfaceReferenceList | BaseParameterType_interfaceObjectSetRid | BaseParameterType_objectTypeReference | BaseParameterType_attachment | BaseParameterType_attachmentList | BaseParameterType_marking | BaseParameterType_markingList | BaseParameterType_mediaReference | BaseParameterType_geotimeSeriesReference | BaseParameterType_geotimeSeriesReferenceList | BaseParameterType_struct | BaseParameterType_structList;
406
+ export interface BaseType_primitive {
407
+ type: "primitive";
408
+ primitive: PrimitiveBaseType;
409
+ }
410
+ export interface BaseType_array {
411
+ type: "array";
412
+ array: ArrayBaseType;
413
+ }
414
+ export interface BaseType_structV2 {
415
+ type: "structV2";
416
+ structV2: StructV2BaseType;
417
+ }
418
+ export type BaseType = BaseType_primitive | BaseType_array | BaseType_structV2;
419
+ export interface BlobsterResourceInputShape {
420
+ about: LocalizedTitleAndDescription;
421
+ allowedTypes: Array<BlobsterResourceType>;
422
+ }
423
+ export interface BlobsterResourceOutputShape {
424
+ about: LocalizedTitleAndDescription;
425
+ type?: BlobsterResourceType | null | undefined;
426
+ }
427
+ /**
428
+ * Represents the type of a Blobster resource. Should be the type from the RID in UPPERCASE. E.g. for an image
429
+ * resource with RID `ri.blobster.main.image.<uuid>`, the resource type would be `IMAGE`.
430
+ */
431
+ export type BlobsterResourceType = "IMAGE" | "DOCUMENT" | "CODE" | "BLOB";
432
+ /**
433
+ * Internal identifiers with no meaning outside of the block they're found in.
434
+ */
435
+ export type BlockInternalId = string;
436
+ export type BlockSetVersion = string;
437
+ /**
438
+ * Matches ranges of versions. Use an `x` instead of a version number to represent wildcards. Once one level
439
+ * has a wildcard, all subsequent ones must be as well (i.e. `1.x.4` is not supported, while `1.x.x` is). Any
440
+ * missing levels are assumed to be wildcards (i.e. `1.x` is equivalent to `1.x.x`).
441
+ */
442
+ export type BlockSetVersionMatcher = string;
443
+ /**
444
+ * Range of versions. Contains all version from `from` (inclusive), to `until` (inclusive). For example, a
445
+ * version range from version `1.3.4` to all versions with a major version of 2 would be:
446
+ *
447
+ * `{ from: "1.3.4", until: "2.x.x" }`
448
+ *
449
+ * This example will match versions such as `1.3.4`, `1.3.7`, `1.4.0`, `2.0.0`, `2.9.3`, but not `3.0.0`.
450
+ */
451
+ export interface BlockSetVersionRange {
452
+ from: BlockSetVersion;
453
+ until: BlockSetVersionMatcher;
454
+ }
455
+ /**
456
+ * Mirror enum for the `BlockSpecificConfiguration` union.
457
+ */
458
+ export type BlockType = "AIP_AGENT" | "APP_CONFIG_APP_BAR" | "APP_CONFIG_AUTHORIZATION_CHOOSER_PRESETS" | "APP_CONFIG_AUTHORIZATION_CHOOSER_RULES" | "APP_CONFIG_COSMOS" | "APP_CONFIG_GAIA" | "APP_CONFIG_TITANIUM" | "AUTHORING_REPOSITORY" | "AUTOMATION" | "BLOBSTER" | "CARBON" | "CHECKPOINT_CONFIG" | "CIPHER_CHANNEL" | "CIPHER_LICENSE" | "CODE_WORKSPACE" | "COMPASS" | "CONTOUR" | "DATA_HEALTH" | "DEPLOYED_APP" | "DIRECT_DATASOURCE" | "EDDIE_EDGE_PIPELINE" | "EDDIE_GROUP" | "EDITS_VIEW" | "EVALUATION_SUITE" | "FUNCTION_CONFIGURATIONS" | "FUNCTIONS" | "LOGIC" | "MACHINERY" | "MAGRITTE_CONNECTOR" | "MAGRITTE_EXPORT" | "MAGRITTE_SOURCE" | "MEDIA_SET" | "MODEL" | "MONITORING_VIEW" | "NAMED_CREDENTIAL" | "NETWORK_EGRESS_POLICY" | "NOTEPAD" | "OBJECT_SET" | "OBJECT_VIEW" | "MAP_RENDERING_SERVICE" | "ONTOLOGY" | "POD_MODEL" | "QUIVER" | "RESOURCE_UPDATES" | "RESTRICTED_VIEW" | "ROSETTA" | "SATELLITE_IMAGERY_MODEL" | "SCHEDULE" | "ONTOLOGY_SDK" | "SLATE" | "SOLUTION_DESIGN" | "STATIC_DATASET" | "STREAM_DATASET" | "TAURUS_WORKFLOW" | "TEMPLATES" | "TIME_SERIES_SYNC" | "THIRD_PARTY_APPLICATION" | "TRANSFORMS" | "VALUE_TYPE" | "VERTEX" | "VIRTUAL_TABLE" | "VORTEX" | "WALKTHROUGH" | "WEBHOOKS" | "WIDGET_SET" | "WORKFLOW_GRAPH" | "WORKSHOP" | "WRITEBACK";
459
+ export interface BmpFormat {}
460
+ /**
461
+ * BooleanListType specifies that this parameter must be a list of Booleans.
462
+ */
463
+ export interface BooleanListType {}
464
+ /**
465
+ * BooleanType specifies that this parameter must be a Boolean.
466
+ */
467
+ export interface BooleanType {}
468
+ export interface CarbonWorkspaceInputShape {
469
+ about: LocalizedTitleAndDescription;
470
+ }
471
+ export interface CarbonWorkspaceOutputShape {
472
+ about: LocalizedTitleAndDescription;
473
+ }
474
+ export interface Changelog_markdown {
475
+ type: "markdown";
476
+ markdown: MarkdownText;
477
+ }
478
+ export type Changelog = Changelog_markdown;
479
+ export interface CheckpointConfigOutputShape {
480
+ about: LocalizedTitleAndDescription;
481
+ }
482
+ export interface CipherAlgorithm_aesGcmSiv {
483
+ type: "aesGcmSiv";
484
+ aesGcmSiv: Void;
485
+ }
486
+ export interface CipherAlgorithm_aesSiv {
487
+ type: "aesSiv";
488
+ aesSiv: Void;
489
+ }
490
+ export interface CipherAlgorithm_sha512 {
491
+ type: "sha512";
492
+ sha512: Void;
493
+ }
494
+ export interface CipherAlgorithm_sha256 {
495
+ type: "sha256";
496
+ sha256: Void;
497
+ }
498
+ export interface CipherAlgorithm_imageScrambling {
499
+ type: "imageScrambling";
500
+ imageScrambling: Void;
501
+ }
502
+ export type CipherAlgorithm = CipherAlgorithm_aesGcmSiv | CipherAlgorithm_aesSiv | CipherAlgorithm_sha512 | CipherAlgorithm_sha256 | CipherAlgorithm_imageScrambling;
503
+ export interface CipherChannelInputShape {
504
+ about: LocalizedTitleAndDescription;
505
+ allowedAlgorithms: Array<CipherAlgorithm>;
506
+ }
507
+ export interface CipherChannelOutputShape {
508
+ about: LocalizedTitleAndDescription;
509
+ algorithm: CipherAlgorithm;
510
+ }
511
+ export interface CipherLicenseInputShape {
512
+ about: LocalizedTitleAndDescription;
513
+ requiredPermits: Array<CipherLicensePermit>;
514
+ }
515
+ export interface CipherLicenseInputShapeV2 {
516
+ about: LocalizedTitleAndDescription;
517
+ allowedAlgorithms: Array<CipherAlgorithm>;
518
+ allowedLicenseTypes: Array<CipherLicenseType>;
519
+ requiredOperations: Array<CipherOperationType>;
520
+ }
521
+ export interface CipherLicenseOutputShape {
522
+ about: LocalizedTitleAndDescription;
523
+ algorithm: CipherAlgorithm;
524
+ licenseType: CipherLicenseType;
525
+ operations: Array<CipherOperationType>;
526
+ }
527
+ export interface CipherLicensePermit_rateLimitedRequestPermit {
528
+ type: "rateLimitedRequestPermit";
529
+ rateLimitedRequestPermit: RateLimitedRequestPermit;
530
+ }
531
+ export interface CipherLicensePermit_transformsRequestPermit {
532
+ type: "transformsRequestPermit";
533
+ transformsRequestPermit: TransformsRequestPermit;
534
+ }
535
+ export interface CipherLicensePermit_highTrustRequestPermit {
536
+ type: "highTrustRequestPermit";
537
+ highTrustRequestPermit: HighTrustRequestPermit;
538
+ }
539
+ export type CipherLicensePermit = CipherLicensePermit_rateLimitedRequestPermit | CipherLicensePermit_transformsRequestPermit | CipherLicensePermit_highTrustRequestPermit;
540
+ export interface CipherLicenseType_operationalUserLicense {
541
+ type: "operationalUserLicense";
542
+ operationalUserLicense: Void;
543
+ }
544
+ export interface CipherLicenseType_dataManagerLicense {
545
+ type: "dataManagerLicense";
546
+ dataManagerLicense: Void;
547
+ }
548
+ export interface CipherLicenseType_adminLicense {
549
+ type: "adminLicense";
550
+ adminLicense: Void;
551
+ }
552
+ export type CipherLicenseType = CipherLicenseType_operationalUserLicense | CipherLicenseType_dataManagerLicense | CipherLicenseType_adminLicense;
553
+ export interface CipherOperationType_encrypt {
554
+ type: "encrypt";
555
+ encrypt: Void;
556
+ }
557
+ export interface CipherOperationType_decrypt {
558
+ type: "decrypt";
559
+ decrypt: Void;
560
+ }
561
+ export interface CipherOperationType_hash {
562
+ type: "hash";
563
+ hash: Void;
564
+ }
565
+ export type CipherOperationType = CipherOperationType_encrypt | CipherOperationType_decrypt | CipherOperationType_hash;
566
+ /**
567
+ * Represents an encrypted property, generated by Cipher. It can essentially be treated as a string.
568
+ */
569
+ export interface CipherTextPropertyType {
570
+ plainTextType: PrimitiveObjectPropertyType;
571
+ }
572
+ export interface CodeWorkspaceInputShape {
573
+ about: LocalizedTitleAndDescription;
574
+ imageType: ContainerImageType;
575
+ }
576
+ export interface CodeWorkspaceLicenseInputShape {
577
+ about: LocalizedTitleAndDescription;
578
+ licenseProductType: LicenseProductType;
579
+ }
580
+ export interface CodeWorkspaceOutputShape {
581
+ about: LocalizedTitleAndDescription;
582
+ imageType: ContainerImageType;
583
+ }
584
+ export interface CompassFolderType {}
585
+ /**
586
+ * represents the intended purpose of the input. An INSTALL_LOCATION will require INSTALL_IN permissions.
587
+ * A REFERENCE would require USE_AS_INPUT permissions.
588
+ */
589
+ export type CompassFolderTypeConstraint = "INSTALL_LOCATION" | "REFERENCE";
590
+ export interface CompassFolderTypeConstraints {
591
+ constraints: Array<CompassFolderTypeConstraint>;
592
+ }
593
+ export interface CompassResourceInputShape {
594
+ about: LocalizedTitleAndDescription;
595
+ allowedTypes: Array<CompassResourceType>;
596
+ typeConstraints: Array<CompassResourceTypeConstraints>;
597
+ }
598
+ export interface CompassResourceOutputShape {
599
+ about: LocalizedTitleAndDescription;
600
+ type: CompassResourceType;
601
+ }
602
+ export interface CompassResourceType_compassFolderType {
603
+ type: "compassFolderType";
604
+ compassFolderType: CompassFolderType;
605
+ }
606
+ export type CompassResourceType = CompassResourceType_compassFolderType;
607
+ export interface CompassResourceTypeConstraints_compassFolderTypeConstraints {
608
+ type: "compassFolderTypeConstraints";
609
+ compassFolderTypeConstraints: CompassFolderTypeConstraints;
610
+ }
611
+ export type CompassResourceTypeConstraints = CompassResourceTypeConstraints_compassFolderTypeConstraints;
612
+ /**
613
+ * A user-written application hosted in Compute Modules.
614
+ */
615
+ export interface ComputeModuleType {}
616
+ export interface ConcreteArrayType {
617
+ elementType: ConcreteDataType;
618
+ }
619
+ export interface ConcreteDataType_primitive {
620
+ type: "primitive";
621
+ primitive: ConcretePrimitiveDataType;
622
+ }
623
+ export interface ConcreteDataType_array {
624
+ type: "array";
625
+ array: ConcreteArrayType;
626
+ }
627
+ export interface ConcreteDataType_map {
628
+ type: "map";
629
+ map: ConcreteMapType;
630
+ }
631
+ export interface ConcreteDataType_struct {
632
+ type: "struct";
633
+ struct: ConcreteStructType;
634
+ }
635
+ /**
636
+ * Concrete types (still correspond 1:1 with types of columns of foundry datasets) but including higher
637
+ * order types such as arrays, maps, structs.
638
+ */
639
+ export type ConcreteDataType = ConcreteDataType_primitive | ConcreteDataType_array | ConcreteDataType_map | ConcreteDataType_struct;
640
+ export interface ConcreteDecimalType {
641
+ precision: number;
642
+ scale: number;
643
+ }
644
+ export interface ConcreteMapType {
645
+ keyType: ConcreteDataType;
646
+ valueType: ConcreteDataType;
647
+ }
648
+ export interface ConcretePrimitiveDataType_binary {
649
+ type: "binary";
650
+ binary: Void;
651
+ }
652
+ export interface ConcretePrimitiveDataType_boolean {
653
+ type: "boolean";
654
+ boolean: Void;
655
+ }
656
+ export interface ConcretePrimitiveDataType_byte {
657
+ type: "byte";
658
+ byte: Void;
659
+ }
660
+ export interface ConcretePrimitiveDataType_date {
661
+ type: "date";
662
+ date: Void;
663
+ }
664
+ export interface ConcretePrimitiveDataType_decimal {
665
+ type: "decimal";
666
+ decimal: ConcreteDecimalType;
667
+ }
668
+ export interface ConcretePrimitiveDataType_double {
669
+ type: "double";
670
+ double: Void;
671
+ }
672
+ export interface ConcretePrimitiveDataType_float {
673
+ type: "float";
674
+ float: Void;
675
+ }
676
+ export interface ConcretePrimitiveDataType_integer {
677
+ type: "integer";
678
+ integer: Void;
679
+ }
680
+ export interface ConcretePrimitiveDataType_long {
681
+ type: "long";
682
+ long: Void;
683
+ }
684
+ export interface ConcretePrimitiveDataType_short {
685
+ type: "short";
686
+ short: Void;
687
+ }
688
+ export interface ConcretePrimitiveDataType_string {
689
+ type: "string";
690
+ string: Void;
691
+ }
692
+ export interface ConcretePrimitiveDataType_timestamp {
693
+ type: "timestamp";
694
+ timestamp: Void;
695
+ }
696
+ /**
697
+ * These types are not composite (reference other types), or generic. They represent (nullable) primitive types.
698
+ */
699
+ export type ConcretePrimitiveDataType = ConcretePrimitiveDataType_binary | ConcretePrimitiveDataType_boolean | ConcretePrimitiveDataType_byte | ConcretePrimitiveDataType_date | ConcretePrimitiveDataType_decimal | ConcretePrimitiveDataType_double | ConcretePrimitiveDataType_float | ConcretePrimitiveDataType_integer | ConcretePrimitiveDataType_long | ConcretePrimitiveDataType_short | ConcretePrimitiveDataType_string | ConcretePrimitiveDataType_timestamp;
700
+ export interface ConcreteStructElement {
701
+ name: string;
702
+ type: ConcreteDataType;
703
+ }
704
+ export interface ConcreteStructType {
705
+ fields: Array<ConcreteStructElement>;
706
+ }
707
+ export type CondaExtension = "TAR_BZ2" | "CONDA";
708
+ /**
709
+ * DEPRECATED - use CondaLocatorV2.
710
+ * Reference a file in a conda files layout.
711
+ */
712
+ export interface CondaLocator {
713
+ path: string;
714
+ }
715
+ /**
716
+ * Reference a file in a conda files layout. It's a copy of com.palantir.artifacts.api.conda.CondaLocator.
717
+ */
718
+ export interface CondaLocatorV2 {
719
+ buildString: string;
720
+ extension: CondaExtension;
721
+ name: string;
722
+ platform: string;
723
+ version: string;
724
+ }
725
+ /**
726
+ * Represents the type of image used by the workspace.
727
+ * A RSTUDIO workspace type will require a license to be provided.
728
+ */
729
+ export type ContainerImageType = "JUPYTER" | "RSTUDIO" | "DASH" | "STREAMLIT" | "RSHINY";
730
+ export interface ContourAnalysisShape {
731
+ about: LocalizedTitleAndDescription;
732
+ }
733
+ export type CreationTimestamp = string;
734
+ export interface DataHealthCheckGroupShape {
735
+ about: LocalizedTitleAndDescription;
736
+ }
737
+ export interface DataHealthCheckShape {
738
+ about: LocalizedTitleAndDescription;
739
+ }
740
+ export interface DatasetLocator {
741
+ branch: string;
742
+ rid: string;
743
+ }
744
+ export interface DatasourceBuildRequirements {
745
+ isBuildable: boolean;
746
+ }
747
+ export type DatasourceColumnReference = BlockInternalId;
748
+ export interface DatasourceColumnShape {
749
+ about: LocalizedTitleAndDescription;
750
+ datasource: TabularDatasourceReference;
751
+ type: DatasourceColumnType;
752
+ typeclasses: Array<DatasourceColumnTypeClass>;
753
+ }
754
+ export interface DatasourceColumnType_concrete {
755
+ type: "concrete";
756
+ concrete: ConcreteDataType;
757
+ }
758
+ export interface DatasourceColumnType_generic {
759
+ type: "generic";
760
+ generic: GenericDataType;
761
+ }
762
+ export type DatasourceColumnType = DatasourceColumnType_concrete | DatasourceColumnType_generic;
763
+ export interface DatasourceColumnTypeClass_eddieDefined {
764
+ type: "eddieDefined";
765
+ eddieDefined: EddieDefinedTypeClass;
766
+ }
767
+ export interface DatasourceColumnTypeClass_valueType {
768
+ type: "valueType";
769
+ valueType: ValueTypeReference;
770
+ }
771
+ export type DatasourceColumnTypeClass = DatasourceColumnTypeClass_eddieDefined | DatasourceColumnTypeClass_valueType;
772
+ export interface DatasourceLocator_stream {
773
+ type: "stream";
774
+ stream: StreamLocator;
775
+ }
776
+ export interface DatasourceLocator_dataset {
777
+ type: "dataset";
778
+ dataset: DatasetLocator;
779
+ }
780
+ export interface DatasourceLocator_restrictedView {
781
+ type: "restrictedView";
782
+ restrictedView: RestrictedViewLocator;
783
+ }
784
+ export interface DatasourceLocator_virtualTable {
785
+ type: "virtualTable";
786
+ virtualTable: VirtualTableLocator;
787
+ }
788
+ export type DatasourceLocator = DatasourceLocator_stream | DatasourceLocator_dataset | DatasourceLocator_restrictedView | DatasourceLocator_virtualTable;
789
+ export interface DataType_stringType {
790
+ type: "stringType";
791
+ stringType: Void;
792
+ }
793
+ export interface DataType_booleanType {
794
+ type: "booleanType";
795
+ booleanType: Void;
796
+ }
797
+ export interface DataType_integerType {
798
+ type: "integerType";
799
+ integerType: Void;
800
+ }
801
+ export interface DataType_cronWithTimeZoneType {
802
+ type: "cronWithTimeZoneType";
803
+ cronWithTimeZoneType: Void;
804
+ }
805
+ export type DataType = DataType_stringType | DataType_booleanType | DataType_integerType | DataType_cronWithTimeZoneType;
806
+ /**
807
+ * DateListType specifies that this parameter must be a list of Dates.
808
+ */
809
+ export interface DateListType {}
810
+ /**
811
+ * DateType specifies that this parameter must be a Date.
812
+ */
813
+ export interface DateType {}
814
+ /**
815
+ * DecimalListType specifies that this parameter must be a list of Decimals.
816
+ */
817
+ export interface DecimalListType {
818
+ precision?: number | null | undefined;
819
+ scale?: number | null | undefined;
820
+ }
821
+ /**
822
+ * DecimalType specifies that this parameter must be a Decimal.
823
+ */
824
+ export interface DecimalType {
825
+ precision?: number | null | undefined;
826
+ scale?: number | null | undefined;
827
+ }
828
+ export interface DeployedAppShape {
829
+ about: LocalizedTitleAndDescription;
830
+ }
831
+ export interface DicomSchema {}
832
+ export interface DocumentDecodeFormat_pdf {
833
+ type: "pdf";
834
+ pdf: PdfFormat;
835
+ }
836
+ export interface DocumentDecodeFormat_docx {
837
+ type: "docx";
838
+ docx: DocxFormat;
839
+ }
840
+ export interface DocumentDecodeFormat_txt {
841
+ type: "txt";
842
+ txt: TxtFormat;
843
+ }
844
+ export interface DocumentDecodeFormat_pptx {
845
+ type: "pptx";
846
+ pptx: PptxFormat;
847
+ }
848
+ export type DocumentDecodeFormat = DocumentDecodeFormat_pdf | DocumentDecodeFormat_docx | DocumentDecodeFormat_txt | DocumentDecodeFormat_pptx;
849
+ export interface DocumentSchema {
850
+ format: DocumentDecodeFormat;
851
+ }
852
+ export interface DocxFormat {}
853
+ /**
854
+ * DoubleListType specifies that this parameter must be a list of Doubles.
855
+ */
856
+ export interface DoubleListType {}
857
+ /**
858
+ * DoubleType specifies that this parameter must be a Double.
859
+ */
860
+ export interface DoubleType {}
861
+ /**
862
+ * Describes the built-in eddie logical type from the logical types in the Eddie registry. Must be an exact
863
+ * match with all the defined fields. The metadata field is ignored for now.
864
+ */
865
+ export interface EddieDefinedTypeClass {
866
+ kind: string;
867
+ name: string;
868
+ version?: EddieDefinedTypeClassVersion | null | undefined;
869
+ }
870
+ /**
871
+ * Describes the version of a column typeclass.
872
+ */
873
+ export interface EddieDefinedTypeClassVersion {
874
+ major: number;
875
+ minor?: number | null | undefined;
876
+ patch?: number | null | undefined;
877
+ }
878
+ /**
879
+ * There are a number of valid parameter types in Eddie, from simple parameters like literals to more complex
880
+ * parameters like list<expression>.
881
+ * The shape parameter type describes which parameter must be passed when resolving this shape.
882
+ */
883
+ export interface EddieEdgeParameterInputShape {
884
+ about: LocalizedTitleAndDescription;
885
+ type: EddieInputParameterType;
886
+ }
887
+ /**
888
+ * The RID of a dataset input to a pipeline.
889
+ */
890
+ export type EddieEdgePipelineInputDatasetRid = string;
891
+ /**
892
+ * Never consumed by any downstream blocks but indicates that a block creates an Eddie pipeline.
893
+ */
894
+ export interface EddieEdgePipelineOutputShape {
895
+ about?: LocalizedTitleAndDescription | null | undefined;
896
+ }
897
+ /**
898
+ * This will allow users to configure destination and spec options for a Geotime Target in Pipeline Builder.
899
+ */
900
+ export interface EddieGeotimeConfigurationInputShape {
901
+ about: LocalizedTitleAndDescription;
902
+ }
903
+ export interface EddieInputParameterType_primitive {
904
+ type: "primitive";
905
+ primitive: EddiePrimitiveParameterType;
906
+ }
907
+ /**
908
+ * A list of renderable parameter types that marketplace <-> eddie supports.
909
+ */
910
+ export type EddieInputParameterType = EddieInputParameterType_primitive;
911
+ /**
912
+ * Parameter that represents literal value of a given type.
913
+ * Instance type: LiteralParameter
914
+ */
915
+ export interface EddieLiteralParameterType {
916
+ additionalConstraints: Array<_api_eddie_transformations_api_LiteralConstraint>;
917
+ requiredType: EddieTypeReference;
918
+ }
919
+ /**
920
+ * DEPRECATED - Prefer EddieParameterShapeV2 as it contains only supported in the UI parameter types.
921
+ *
922
+ * Specifies an input parameter to an Eddie group.
923
+ * There are a number of valid parameter types in Eddie, from simple parameters like literals to more complex
924
+ * parameters like list<expression>.
925
+ * The shape parameter type describes which parameter must be passed when resolving this shape.
926
+ */
927
+ export interface EddieParameterShape {
928
+ about: LocalizedTitleAndDescription;
929
+ isOptional: boolean;
930
+ type: _api_eddie_transformations_api_InputParameterType;
931
+ }
932
+ /**
933
+ * There are a number of valid parameter types in Eddie, from simple parameters like literals to more complex
934
+ * parameters like list<expression>.
935
+ * The shape parameter type describes which parameter must be passed when resolving this shape.
936
+ */
937
+ export interface EddieParameterShapeV2 {
938
+ about: LocalizedTitleAndDescription;
939
+ type: EddieInputParameterType;
940
+ }
941
+ /**
942
+ * Never consumed by any downstream blocks but indicates that a block creates an Eddie pipeline.
943
+ */
944
+ export interface EddiePipelineShape {
945
+ about?: LocalizedTitleAndDescription | null | undefined;
946
+ }
947
+ /**
948
+ * An Eddie Pipeline that may contain various UDFs.
949
+ */
950
+ export interface EddiePipelineType {}
951
+ export interface EddiePrimitiveParameterType_literal {
952
+ type: "literal";
953
+ literal: EddieLiteralParameterType;
954
+ }
955
+ export interface EddiePrimitiveParameterType_regex {
956
+ type: "regex";
957
+ regex: _api_eddie_transformations_api_RegexParameterType;
958
+ }
959
+ /**
960
+ * This is a subset union of EddieInputParameterType
961
+ */
962
+ export type EddiePrimitiveParameterType = EddiePrimitiveParameterType_literal | EddiePrimitiveParameterType_regex;
963
+ export interface EddieReplayOptionShape {
964
+ about: LocalizedTitleAndDescription;
965
+ supportedReplayOptions: Array<EddieReplayOptionType>;
966
+ }
967
+ export type EddieReplayOptionType = "RESET_AND_REPLAY_FROM_OFFSET" | "RESET";
968
+ export interface EddieTypeReference_explicit {
969
+ type: "explicit";
970
+ explicit: _api_eddie_transformations_api_ExplicitType;
971
+ }
972
+ export type EddieTypeReference = EddieTypeReference_explicit;
973
+ /**
974
+ * Magritte task type (also used to represent sync types)
975
+ */
976
+ export type EdgeMagritteTaskType = string;
977
+ /**
978
+ * This will allow users to configure magritte source configuration for the edge pipeline
979
+ */
980
+ export interface EdgePipelineMagritteSourceInputShape {
981
+ about: LocalizedTitleAndDescription;
982
+ datasetRid?: EddieEdgePipelineInputDatasetRid | null | undefined;
983
+ magritteSourceType: MagritteSourceType;
984
+ magritteTaskType?: EdgeMagritteTaskType | null | undefined;
985
+ }
986
+ export interface Empty {}
987
+ export interface EvaluationSuiteShape {
988
+ about: LocalizedTitleAndDescription;
989
+ }
990
+ export interface FilesDatasourceInputShape {
991
+ about: LocalizedTitleAndDescription;
992
+ supportedTypes?: Array<FilesDatasourceInputType> | null | undefined;
993
+ }
994
+ export interface FilesDatasourceInputType_dataset {
995
+ type: "dataset";
996
+ dataset: Void;
997
+ }
998
+ export interface FilesDatasourceInputType_mediaSet {
999
+ type: "mediaSet";
1000
+ mediaSet: MediaSetDatasourceType;
1001
+ }
1002
+ export type FilesDatasourceInputType = FilesDatasourceInputType_dataset | FilesDatasourceInputType_mediaSet;
1003
+ export interface FilesDatasourceLocator_dataset {
1004
+ type: "dataset";
1005
+ dataset: DatasetLocator;
1006
+ }
1007
+ export interface FilesDatasourceLocator_mediaSet {
1008
+ type: "mediaSet";
1009
+ mediaSet: MediaSetLocator;
1010
+ }
1011
+ export type FilesDatasourceLocator = FilesDatasourceLocator_dataset | FilesDatasourceLocator_mediaSet;
1012
+ export interface FilesDatasourceOutputShape {
1013
+ about: LocalizedTitleAndDescription;
1014
+ buildRequirements?: DatasourceBuildRequirements | null | undefined;
1015
+ datasourceType?: FilesDatasourceOutputType | null | undefined;
1016
+ }
1017
+ export interface FilesDatasourceOutputType_dataset {
1018
+ type: "dataset";
1019
+ dataset: Void;
1020
+ }
1021
+ export interface FilesDatasourceOutputType_mediaSet {
1022
+ type: "mediaSet";
1023
+ mediaSet: MediaSetDatasourceType;
1024
+ }
1025
+ export type FilesDatasourceOutputType = FilesDatasourceOutputType_dataset | FilesDatasourceOutputType_mediaSet;
1026
+ /**
1027
+ * Reference a file in an artifacts files layout.
1028
+ */
1029
+ export interface FilesLocator {
1030
+ path: string;
1031
+ }
1032
+ export interface FlacFormat {}
1033
+ export interface FlinkProfileShape {
1034
+ about: LocalizedTitleAndDescription;
1035
+ }
1036
+ export interface FunctionConfigurationShape {
1037
+ about: LocalizedTitleAndDescription;
1038
+ function: FunctionReference;
1039
+ }
1040
+ export type FunctionContractApiName = string;
1041
+ export type FunctionContractReference = BlockInternalId;
1042
+ export interface FunctionContractShape {
1043
+ about: LocalizedTitleAndDescription;
1044
+ apiName: FunctionContractApiName;
1045
+ version: FunctionContractVersion;
1046
+ }
1047
+ /**
1048
+ * This version is enforced to be a semver string.
1049
+ */
1050
+ export type FunctionContractVersion = string;
1051
+ export type FunctionInputName = string;
1052
+ export interface FunctionInputType {
1053
+ about: LocalizedTitleAndDescription;
1054
+ dataType: _api_functions_DataType;
1055
+ inputName?: FunctionInputName | null | undefined;
1056
+ required: boolean;
1057
+ }
1058
+ export interface FunctionOutputType_singleOutputType {
1059
+ type: "singleOutputType";
1060
+ singleOutputType: SingleOutputType;
1061
+ }
1062
+ export type FunctionOutputType = FunctionOutputType_singleOutputType;
1063
+ export type FunctionReference = BlockInternalId;
1064
+ export interface FunctionShape {
1065
+ about: LocalizedTitleAndDescription;
1066
+ contracts: Array<FunctionContractReference>;
1067
+ customTypes: Record<_api_functions_CustomTypeId, _api_functions_CustomType>;
1068
+ inputs: Array<FunctionInputType>;
1069
+ output: FunctionOutputType;
1070
+ }
1071
+ export interface FusionDocumentShape {
1072
+ about: LocalizedTitleAndDescription;
1073
+ }
1074
+ export interface GenericDataType_any {
1075
+ type: "any";
1076
+ any: Void;
1077
+ }
1078
+ export interface GenericDataType_anyDecimal {
1079
+ type: "anyDecimal";
1080
+ anyDecimal: Void;
1081
+ }
1082
+ export interface GenericDataType_oneOf {
1083
+ type: "oneOf";
1084
+ oneOf: Array<ConcreteDataType>;
1085
+ }
1086
+ /**
1087
+ * Describes generic types - i.e. multiple possibilities.
1088
+ * We can answer the question of whether a particular concrete type satisfies one of these generic types.
1089
+ */
1090
+ export type GenericDataType = GenericDataType_any | GenericDataType_anyDecimal | GenericDataType_oneOf;
1091
+ /**
1092
+ * GeohashListType specifies that this parameter must be a list of Geohashes.
1093
+ */
1094
+ export interface GeohashListType {}
1095
+ /**
1096
+ * GeohashType specifies that this parameter must be a Geohash.
1097
+ */
1098
+ export interface GeohashType {}
1099
+ /**
1100
+ * GeoshapeListType specifies that this parameter must be a list of Geoshapes.
1101
+ */
1102
+ export interface GeoshapeListType {}
1103
+ /**
1104
+ * GeoshapeType specifies that this parameter must be a Geoshape.
1105
+ */
1106
+ export interface GeoshapeType {}
1107
+ export type GeotimeSeriesIntegrationRid = string;
1108
+ export interface GeotimeSeriesIntegrationShape {
1109
+ about: LocalizedTitleAndDescription;
1110
+ }
1111
+ /**
1112
+ * GeotimeSeriesReferenceListType specifies that this parameter must be a list of GeotimeSeriesReferences.
1113
+ * valid allowedParameterValues: ParameterGeotimeSeriesReferenceOrEmpty
1114
+ * valid prefill DataValues: None
1115
+ */
1116
+ export interface GeotimeSeriesReferenceListType {}
1117
+ /**
1118
+ * GeotimeSeriesReferenceType specifies that this parameter must be a GeotimeSeriesReference.
1119
+ * valid allowedParameterValues: ParameterGeotimeSeriesReferenceOrEmpty
1120
+ * valid prefill DataValues: None
1121
+ */
1122
+ export interface GeotimeSeriesReferenceType {}
1123
+ export type GroupId = string;
1124
+ /**
1125
+ * If included in a Cipher License, the user has the ability to perform Cipher operations without any limit and
1126
+ * without needing justification in high trust environments. This is the permit to use for using Cipher in Apps
1127
+ * like Pipelines Builder.
1128
+ */
1129
+ export interface HighTrustRequestPermit {
1130
+ requestType: RequestType;
1131
+ }
1132
+ export interface ImageryDecodeFormat_tiff {
1133
+ type: "tiff";
1134
+ tiff: TiffFormat;
1135
+ }
1136
+ export interface ImageryDecodeFormat_nitf {
1137
+ type: "nitf";
1138
+ nitf: NitfFormat;
1139
+ }
1140
+ export interface ImageryDecodeFormat_jp2k {
1141
+ type: "jp2k";
1142
+ jp2k: Jpeg2000Format;
1143
+ }
1144
+ export interface ImageryDecodeFormat_jpg {
1145
+ type: "jpg";
1146
+ jpg: JpgFormat;
1147
+ }
1148
+ export interface ImageryDecodeFormat_png {
1149
+ type: "png";
1150
+ png: PngFormat;
1151
+ }
1152
+ export interface ImageryDecodeFormat_bmp {
1153
+ type: "bmp";
1154
+ bmp: BmpFormat;
1155
+ }
1156
+ export interface ImageryDecodeFormat_webp {
1157
+ type: "webp";
1158
+ webp: WebpFormat;
1159
+ }
1160
+ export type ImageryDecodeFormat = ImageryDecodeFormat_tiff | ImageryDecodeFormat_nitf | ImageryDecodeFormat_jp2k | ImageryDecodeFormat_jpg | ImageryDecodeFormat_png | ImageryDecodeFormat_bmp | ImageryDecodeFormat_webp;
1161
+ export interface ImagerySchema {
1162
+ format: ImageryDecodeFormat;
1163
+ }
1164
+ export type InputEditsSupport = "ANY" | "REQUIRED";
1165
+ export type InputObjectBackendVersion = "V1_OR_V2" | "V2";
1166
+ export interface InputShape_action {
1167
+ type: "action";
1168
+ action: ActionTypeShape;
1169
+ }
1170
+ export interface InputShape_actionParameter {
1171
+ type: "actionParameter";
1172
+ actionParameter: ActionTypeParameterShape;
1173
+ }
1174
+ export interface InputShape_allowOntologySchemaMigrations {
1175
+ type: "allowOntologySchemaMigrations";
1176
+ allowOntologySchemaMigrations: AllowOntologySchemaMigrationsShape;
1177
+ }
1178
+ export interface InputShape_aipAgent {
1179
+ type: "aipAgent";
1180
+ aipAgent: AipAgentShape;
1181
+ }
1182
+ export interface InputShape_artifactsRepository {
1183
+ type: "artifactsRepository";
1184
+ artifactsRepository: ArtifactsRepositoryShape;
1185
+ }
1186
+ export interface InputShape_authoringLibrary {
1187
+ type: "authoringLibrary";
1188
+ authoringLibrary: AuthoringLibraryShape;
1189
+ }
1190
+ export interface InputShape_authoringRepository {
1191
+ type: "authoringRepository";
1192
+ authoringRepository: AuthoringRepositoryShape;
1193
+ }
1194
+ export interface InputShape_automation {
1195
+ type: "automation";
1196
+ automation: AutomationShape;
1197
+ }
1198
+ export interface InputShape_carbonWorkspace {
1199
+ type: "carbonWorkspace";
1200
+ carbonWorkspace: CarbonWorkspaceInputShape;
1201
+ }
1202
+ export interface InputShape_cipherLicense {
1203
+ type: "cipherLicense";
1204
+ cipherLicense: CipherLicenseInputShape;
1205
+ }
1206
+ export interface InputShape_cipherLicenseV2 {
1207
+ type: "cipherLicenseV2";
1208
+ cipherLicenseV2: CipherLicenseInputShapeV2;
1209
+ }
1210
+ export interface InputShape_blobsterResource {
1211
+ type: "blobsterResource";
1212
+ blobsterResource: BlobsterResourceInputShape;
1213
+ }
1214
+ export interface InputShape_cipherChannel {
1215
+ type: "cipherChannel";
1216
+ cipherChannel: CipherChannelInputShape;
1217
+ }
1218
+ export interface InputShape_codeWorkspace {
1219
+ type: "codeWorkspace";
1220
+ codeWorkspace: CodeWorkspaceInputShape;
1221
+ }
1222
+ export interface InputShape_codeWorkspaceLicense {
1223
+ type: "codeWorkspaceLicense";
1224
+ codeWorkspaceLicense: CodeWorkspaceLicenseInputShape;
1225
+ }
1226
+ export interface InputShape_compassResource {
1227
+ type: "compassResource";
1228
+ compassResource: CompassResourceInputShape;
1229
+ }
1230
+ export interface InputShape_contourAnalysis {
1231
+ type: "contourAnalysis";
1232
+ contourAnalysis: ContourAnalysisShape;
1233
+ }
1234
+ export interface InputShape_dataHealthCheck {
1235
+ type: "dataHealthCheck";
1236
+ dataHealthCheck: DataHealthCheckShape;
1237
+ }
1238
+ export interface InputShape_dataHealthCheckGroup {
1239
+ type: "dataHealthCheckGroup";
1240
+ dataHealthCheckGroup: DataHealthCheckGroupShape;
1241
+ }
1242
+ export interface InputShape_datasourceColumn {
1243
+ type: "datasourceColumn";
1244
+ datasourceColumn: DatasourceColumnShape;
1245
+ }
1246
+ export interface InputShape_deployedApp {
1247
+ type: "deployedApp";
1248
+ deployedApp: DeployedAppShape;
1249
+ }
1250
+ export interface InputShape_eddieParameter {
1251
+ type: "eddieParameter";
1252
+ eddieParameter: EddieParameterShape;
1253
+ }
1254
+ export interface InputShape_eddieParameterV2 {
1255
+ type: "eddieParameterV2";
1256
+ eddieParameterV2: EddieParameterShapeV2;
1257
+ }
1258
+ export interface InputShape_eddiePipeline {
1259
+ type: "eddiePipeline";
1260
+ eddiePipeline: EddiePipelineShape;
1261
+ }
1262
+ export interface InputShape_eddieReplayOption {
1263
+ type: "eddieReplayOption";
1264
+ eddieReplayOption: EddieReplayOptionShape;
1265
+ }
1266
+ export interface InputShape_eddieGeotimeConfiguration {
1267
+ type: "eddieGeotimeConfiguration";
1268
+ eddieGeotimeConfiguration: EddieGeotimeConfigurationInputShape;
1269
+ }
1270
+ export interface InputShape_eddieEdgeParameter {
1271
+ type: "eddieEdgeParameter";
1272
+ eddieEdgeParameter: EddieEdgeParameterInputShape;
1273
+ }
1274
+ export interface InputShape_edgePipelineMagritteSource {
1275
+ type: "edgePipelineMagritteSource";
1276
+ edgePipelineMagritteSource: EdgePipelineMagritteSourceInputShape;
1277
+ }
1278
+ export interface InputShape_evaluationSuite {
1279
+ type: "evaluationSuite";
1280
+ evaluationSuite: EvaluationSuiteShape;
1281
+ }
1282
+ export interface InputShape_filesDatasource {
1283
+ type: "filesDatasource";
1284
+ filesDatasource: FilesDatasourceInputShape;
1285
+ }
1286
+ export interface InputShape_flinkProfile {
1287
+ type: "flinkProfile";
1288
+ flinkProfile: FlinkProfileShape;
1289
+ }
1290
+ export interface InputShape_function {
1291
+ type: "function";
1292
+ function: FunctionShape;
1293
+ }
1294
+ export interface InputShape_functionContract {
1295
+ type: "functionContract";
1296
+ functionContract: FunctionContractShape;
1297
+ }
1298
+ export interface InputShape_fusionDocument {
1299
+ type: "fusionDocument";
1300
+ fusionDocument: FusionDocumentShape;
1301
+ }
1302
+ export interface InputShape_geotimeSeriesIntegration {
1303
+ type: "geotimeSeriesIntegration";
1304
+ geotimeSeriesIntegration: GeotimeSeriesIntegrationShape;
1305
+ }
1306
+ export interface InputShape_interfaceType {
1307
+ type: "interfaceType";
1308
+ interfaceType: InterfaceTypeInputShape;
1309
+ }
1310
+ export interface InputShape_interfaceLinkType {
1311
+ type: "interfaceLinkType";
1312
+ interfaceLinkType: InterfaceLinkTypeInputShape;
1313
+ }
1314
+ export interface InputShape_interfacePropertyType {
1315
+ type: "interfacePropertyType";
1316
+ interfacePropertyType: InterfacePropertyTypeInputShape;
1317
+ }
1318
+ export interface InputShape_installPrefix {
1319
+ type: "installPrefix";
1320
+ installPrefix: InstallPrefixShape;
1321
+ }
1322
+ export interface InputShape_linkType {
1323
+ type: "linkType";
1324
+ linkType: LinkTypeInputShape;
1325
+ }
1326
+ export interface InputShape_languageModel {
1327
+ type: "languageModel";
1328
+ languageModel: LanguageModelShape;
1329
+ }
1330
+ export interface InputShape_logic {
1331
+ type: "logic";
1332
+ logic: LogicShape;
1333
+ }
1334
+ export interface InputShape_logicFunction {
1335
+ type: "logicFunction";
1336
+ logicFunction: LogicFunctionShape;
1337
+ }
1338
+ export interface InputShape_machinery {
1339
+ type: "machinery";
1340
+ machinery: MachineryProcessShape;
1341
+ }
1342
+ export interface InputShape_magritteConnection {
1343
+ type: "magritteConnection";
1344
+ magritteConnection: MagritteConnectionInputShape;
1345
+ }
1346
+ export interface InputShape_magritteExport {
1347
+ type: "magritteExport";
1348
+ magritteExport: MagritteExportShape;
1349
+ }
1350
+ export interface InputShape_magritteSource {
1351
+ type: "magritteSource";
1352
+ magritteSource: MagritteSourceInputShape;
1353
+ }
1354
+ export interface InputShape_magritteSourceConfigOverrides {
1355
+ type: "magritteSourceConfigOverrides";
1356
+ magritteSourceConfigOverrides: MagritteSourceConfigOverridesInputShape;
1357
+ }
1358
+ export interface InputShape_magritteStreamingExtractConfigOverrides {
1359
+ type: "magritteStreamingExtractConfigOverrides";
1360
+ magritteStreamingExtractConfigOverrides: MagritteStreamingExtractConfigOverridesInputShape;
1361
+ }
1362
+ export interface InputShape_markings {
1363
+ type: "markings";
1364
+ markings: MarkingsShape;
1365
+ }
1366
+ export interface InputShape_model {
1367
+ type: "model";
1368
+ model: ModelInputShape;
1369
+ }
1370
+ export interface InputShape_monitorView {
1371
+ type: "monitorView";
1372
+ monitorView: MonitorViewShape;
1373
+ }
1374
+ export interface InputShape_monocleGraph {
1375
+ type: "monocleGraph";
1376
+ monocleGraph: MonocleGraphShape;
1377
+ }
1378
+ export interface InputShape_multipassUserAttribute {
1379
+ type: "multipassUserAttribute";
1380
+ multipassUserAttribute: MultipassUserAttributeShape;
1381
+ }
1382
+ export interface InputShape_multipassGroup {
1383
+ type: "multipassGroup";
1384
+ multipassGroup: MultipassGroupShape;
1385
+ }
1386
+ export interface InputShape_namedCredential {
1387
+ type: "namedCredential";
1388
+ namedCredential: NamedCredentialShape;
1389
+ }
1390
+ export interface InputShape_networkEgressPolicy {
1391
+ type: "networkEgressPolicy";
1392
+ networkEgressPolicy: NetworkEgressPolicyShape;
1393
+ }
1394
+ export interface InputShape_notepadDocument {
1395
+ type: "notepadDocument";
1396
+ notepadDocument: NotepadDocumentShape;
1397
+ }
1398
+ export interface InputShape_notepadTemplate {
1399
+ type: "notepadTemplate";
1400
+ notepadTemplate: NotepadTemplateShape;
1401
+ }
1402
+ export interface InputShape_notepadTemplateParameter {
1403
+ type: "notepadTemplateParameter";
1404
+ notepadTemplateParameter: NotepadTemplateParameterShape;
1405
+ }
1406
+ export interface InputShape_objectInstance {
1407
+ type: "objectInstance";
1408
+ objectInstance: ObjectInstanceInputShape;
1409
+ }
1410
+ export interface InputShape_objectSet {
1411
+ type: "objectSet";
1412
+ objectSet: ObjectSetShape;
1413
+ }
1414
+ export interface InputShape_objectType {
1415
+ type: "objectType";
1416
+ objectType: ObjectTypeInputShape;
1417
+ }
1418
+ export interface InputShape_objectView {
1419
+ type: "objectView";
1420
+ objectView: ObjectViewShape;
1421
+ }
1422
+ export interface InputShape_objectViewTab {
1423
+ type: "objectViewTab";
1424
+ objectViewTab: ObjectViewTabShape;
1425
+ }
1426
+ export interface InputShape_ontologyDatasource {
1427
+ type: "ontologyDatasource";
1428
+ ontologyDatasource: OntologyDatasourceShape;
1429
+ }
1430
+ export interface InputShape_ontologyDatasourceRetention {
1431
+ type: "ontologyDatasourceRetention";
1432
+ ontologyDatasourceRetention: OntologyDatasourceRetentionShape;
1433
+ }
1434
+ export interface InputShape_ontologySdk {
1435
+ type: "ontologySdk";
1436
+ ontologySdk: OntologySdkShape;
1437
+ }
1438
+ export interface InputShape_overrideOntologyEntityApiNames {
1439
+ type: "overrideOntologyEntityApiNames";
1440
+ overrideOntologyEntityApiNames: OverrideOntologyEntityApiNamesShape;
1441
+ }
1442
+ export interface InputShape_parameter {
1443
+ type: "parameter";
1444
+ parameter: ParameterInputShape;
1445
+ }
1446
+ export interface InputShape_property {
1447
+ type: "property";
1448
+ property: PropertyInputShape;
1449
+ }
1450
+ export interface InputShape_quiverDashboard {
1451
+ type: "quiverDashboard";
1452
+ quiverDashboard: QuiverDashboardShape;
1453
+ }
1454
+ export interface InputShape_schedule {
1455
+ type: "schedule";
1456
+ schedule: ScheduleShape;
1457
+ }
1458
+ export interface InputShape_sharedPropertyType {
1459
+ type: "sharedPropertyType";
1460
+ sharedPropertyType: SharedPropertyTypeInputShape;
1461
+ }
1462
+ export interface InputShape_slateApplication {
1463
+ type: "slateApplication";
1464
+ slateApplication: SlateApplicationInputShape;
1465
+ }
1466
+ export interface InputShape_solutionDesign {
1467
+ type: "solutionDesign";
1468
+ solutionDesign: SolutionDesignShape;
1469
+ }
1470
+ export interface InputShape_sparkProfile {
1471
+ type: "sparkProfile";
1472
+ sparkProfile: SparkProfileShape;
1473
+ }
1474
+ export interface InputShape_tabularDatasource {
1475
+ type: "tabularDatasource";
1476
+ tabularDatasource: TabularDatasourceInputShape;
1477
+ }
1478
+ export interface InputShape_taurusWorkflow {
1479
+ type: "taurusWorkflow";
1480
+ taurusWorkflow: TaurusWorkflowShape;
1481
+ }
1482
+ export interface InputShape_thirdPartyApplication {
1483
+ type: "thirdPartyApplication";
1484
+ thirdPartyApplication: ThirdPartyApplicationShape;
1485
+ }
1486
+ export interface InputShape_timeSeriesSync {
1487
+ type: "timeSeriesSync";
1488
+ timeSeriesSync: TimeSeriesSyncShape;
1489
+ }
1490
+ export interface InputShape_valueType {
1491
+ type: "valueType";
1492
+ valueType: ValueTypeShape;
1493
+ }
1494
+ export interface InputShape_vectorWorkbook {
1495
+ type: "vectorWorkbook";
1496
+ vectorWorkbook: VectorWorkbookShape;
1497
+ }
1498
+ export interface InputShape_vertexTemplate {
1499
+ type: "vertexTemplate";
1500
+ vertexTemplate: VertexTemplateShape;
1501
+ }
1502
+ export interface InputShape_vortexTemplate {
1503
+ type: "vortexTemplate";
1504
+ vortexTemplate: VortexTemplateShape;
1505
+ }
1506
+ export interface InputShape_walkthrough {
1507
+ type: "walkthrough";
1508
+ walkthrough: WalkthroughShape;
1509
+ }
1510
+ export interface InputShape_webhook {
1511
+ type: "webhook";
1512
+ webhook: WebhookShape;
1513
+ }
1514
+ export interface InputShape_widget {
1515
+ type: "widget";
1516
+ widget: WidgetShape;
1517
+ }
1518
+ export interface InputShape_widgetSet {
1519
+ type: "widgetSet";
1520
+ widgetSet: WidgetSetShape;
1521
+ }
1522
+ export interface InputShape_workshopApplication {
1523
+ type: "workshopApplication";
1524
+ workshopApplication: WorkshopApplicationInputShape;
1525
+ }
1526
+ export interface InputShape_workshopApplicationSaveLocation {
1527
+ type: "workshopApplicationSaveLocation";
1528
+ workshopApplicationSaveLocation: WorkshopApplicationSaveLocationInputShape;
1529
+ }
1530
+ /**
1531
+ * An input must have an about field of type `LocalizedTitleAndDescription`. This is what the FE uses to render
1532
+ * the input. Users may override this default about about using `updatePendingInputShapeAbout`.
1533
+ */
1534
+ export type InputShape = InputShape_action | InputShape_actionParameter | InputShape_allowOntologySchemaMigrations | InputShape_aipAgent | InputShape_artifactsRepository | InputShape_authoringLibrary | InputShape_authoringRepository | InputShape_automation | InputShape_carbonWorkspace | InputShape_cipherLicense | InputShape_cipherLicenseV2 | InputShape_blobsterResource | InputShape_cipherChannel | InputShape_codeWorkspace | InputShape_codeWorkspaceLicense | InputShape_compassResource | InputShape_contourAnalysis | InputShape_dataHealthCheck | InputShape_dataHealthCheckGroup | InputShape_datasourceColumn | InputShape_deployedApp | InputShape_eddieParameter | InputShape_eddieParameterV2 | InputShape_eddiePipeline | InputShape_eddieReplayOption | InputShape_eddieGeotimeConfiguration | InputShape_eddieEdgeParameter | InputShape_edgePipelineMagritteSource | InputShape_evaluationSuite | InputShape_filesDatasource | InputShape_flinkProfile | InputShape_function | InputShape_functionContract | InputShape_fusionDocument | InputShape_geotimeSeriesIntegration | InputShape_interfaceType | InputShape_interfaceLinkType | InputShape_interfacePropertyType | InputShape_installPrefix | InputShape_linkType | InputShape_languageModel | InputShape_logic | InputShape_logicFunction | InputShape_machinery | InputShape_magritteConnection | InputShape_magritteExport | InputShape_magritteSource | InputShape_magritteSourceConfigOverrides | InputShape_magritteStreamingExtractConfigOverrides | InputShape_markings | InputShape_model | InputShape_monitorView | InputShape_monocleGraph | InputShape_multipassUserAttribute | InputShape_multipassGroup | InputShape_namedCredential | InputShape_networkEgressPolicy | InputShape_notepadDocument | InputShape_notepadTemplate | InputShape_notepadTemplateParameter | InputShape_objectInstance | InputShape_objectSet | InputShape_objectType | InputShape_objectView | InputShape_objectViewTab | InputShape_ontologyDatasource | InputShape_ontologyDatasourceRetention | InputShape_ontologySdk | InputShape_overrideOntologyEntityApiNames | InputShape_parameter | InputShape_property | InputShape_quiverDashboard | InputShape_schedule | InputShape_sharedPropertyType | InputShape_slateApplication | InputShape_solutionDesign | InputShape_sparkProfile | InputShape_tabularDatasource | InputShape_taurusWorkflow | InputShape_thirdPartyApplication | InputShape_timeSeriesSync | InputShape_valueType | InputShape_vectorWorkbook | InputShape_vertexTemplate | InputShape_vortexTemplate | InputShape_walkthrough | InputShape_webhook | InputShape_widget | InputShape_widgetSet | InputShape_workshopApplication | InputShape_workshopApplicationSaveLocation;
1535
+ export interface InputShapeMetadata {
1536
+ isAccessedInReconcile: boolean;
1537
+ isOptional: boolean;
1538
+ preallocateAccessRequirements?: PreallocateAccessRequirementType | null | undefined;
1539
+ reconcileAccessRequirements?: ReconcileAccessRequirementType | null | undefined;
1540
+ }
1541
+ export interface InstallationMode_bootstrap {
1542
+ type: "bootstrap";
1543
+ bootstrap: Void;
1544
+ }
1545
+ export interface InstallationMode_production {
1546
+ type: "production";
1547
+ production: Void;
1548
+ }
1549
+ export interface InstallationMode_singleton {
1550
+ type: "singleton";
1551
+ singleton: Void;
1552
+ }
1553
+ /**
1554
+ * The installation mode associated with the product. The expectation is that integrators do not do anything with
1555
+ * bootstrap or production. For singleton the expectation is that integrations validate and enforce api name
1556
+ * uniqueness in the namespace/ontology.
1557
+ */
1558
+ export type InstallationMode = InstallationMode_bootstrap | InstallationMode_production | InstallationMode_singleton;
1559
+ /**
1560
+ * This shape is intended to represent a user-provided string input that will be applied
1561
+ * as a prefix to display names of output resources. The mechanism for applying this prefix
1562
+ * will depend on the service responsible for creating the resource and the resource type.
1563
+ *
1564
+ * For example a prefix "demo" applied to an Object Type with display name "Passenger" will
1565
+ * result in the display name being "[Demo] Passenger".
1566
+ *
1567
+ * A few constraints that Marketplace will enforce:
1568
+ * - Within a block-set all blocks must use the same prefix. At packaging time the `ResolvedInstallPrefixShape`
1569
+ * should have "" (empty string) prefix so prefix inputs from across blocks will all get
1570
+ * coalesced by Installation Hints.
1571
+ * - For every block there can only be at most one InstallPrefix input, else the mapping of prefix -> output
1572
+ * resource becomes ambiguous.
1573
+ */
1574
+ export interface InstallPrefixShape {
1575
+ about: LocalizedTitleAndDescription;
1576
+ }
1577
+ /**
1578
+ * IntegerListType specifies that this parameter must be a list of Integers.
1579
+ */
1580
+ export interface IntegerListType {}
1581
+ /**
1582
+ * IntegerType specifies that this parameter must be an Integer.
1583
+ */
1584
+ export interface IntegerType {}
1585
+ export type InterfaceLinkTypeCardinality = "SINGLE" | "MANY";
1586
+ export interface InterfaceLinkTypeInputShape {
1587
+ about: LocalizedTitleAndDescription;
1588
+ cardinality: InterfaceLinkTypeCardinality;
1589
+ interfaceType: InterfaceTypeReference;
1590
+ linkedEntityType: LinkedEntityTypeReference;
1591
+ required: boolean;
1592
+ }
1593
+ export interface InterfaceLinkTypeOutputShape {
1594
+ about: LocalizedTitleAndDescription;
1595
+ cardinality: InterfaceLinkTypeCardinality;
1596
+ interfaceType: InterfaceTypeReference;
1597
+ linkedEntityType: LinkedEntityTypeReference;
1598
+ required: boolean;
1599
+ }
1600
+ export type InterfaceLinkTypeReference = BlockInternalId;
1601
+ export type InterfaceLinkTypeRid = string;
1602
+ /**
1603
+ * InterfaceObjectSetRidType specifies that this parameter must be an ObjectSetRid of ObjectTypes implementing
1604
+ * the specified interface type.
1605
+ */
1606
+ export interface InterfaceObjectSetRidType {
1607
+ interfaceTypeRid: InterfaceTypeReference;
1608
+ }
1609
+ export interface InterfaceParameterPropertyValue {
1610
+ parameterId: ActionTypeParameterReference;
1611
+ sharedPropertyTypeRid: SharedPropertyTypeReference;
1612
+ }
1613
+ export interface InterfacePropertyTypeInputShape {
1614
+ about: LocalizedTitleAndDescription;
1615
+ interfaceType: InterfaceTypeReference;
1616
+ requireImplementation: boolean;
1617
+ sharedPropertyType?: SharedPropertyTypeReference | null | undefined;
1618
+ type: AllowedObjectPropertyType;
1619
+ }
1620
+ export interface InterfacePropertyTypeOutputShape {
1621
+ about: LocalizedTitleAndDescription;
1622
+ interfaceType: InterfaceTypeReference;
1623
+ requireImplementation: boolean;
1624
+ sharedPropertyType?: SharedPropertyTypeReference | null | undefined;
1625
+ type: ObjectPropertyType;
1626
+ }
1627
+ export type InterfacePropertyTypeReference = BlockInternalId;
1628
+ export type InterfacePropertyTypeRid = string;
1629
+ export interface InterfaceReferenceListType {
1630
+ interfaceTypeRid: InterfaceTypeReference;
1631
+ }
1632
+ export interface InterfaceReferenceType {
1633
+ interfaceTypeRid: InterfaceTypeReference;
1634
+ }
1635
+ export interface InterfaceTypeInputShape {
1636
+ about: LocalizedTitleAndDescription;
1637
+ links: Array<InterfaceLinkTypeReference>;
1638
+ properties: Array<SharedPropertyTypeReference>;
1639
+ propertiesV2: Array<InterfacePropertyTypeReference>;
1640
+ }
1641
+ export interface InterfaceTypeOutputShape {
1642
+ about: LocalizedTitleAndDescription;
1643
+ extendsInterfaces: Array<InterfaceTypeReference>;
1644
+ links: Array<InterfaceLinkTypeReference>;
1645
+ properties: Array<SharedPropertyTypeReference>;
1646
+ propertiesV2: Array<InterfacePropertyTypeReference>;
1647
+ }
1648
+ export type InterfaceTypeReference = BlockInternalId;
1649
+ export type InterfaceTypeRid = string;
1650
+ export interface Jpeg2000Format {}
1651
+ export interface JpgFormat {}
1652
+ export interface LanguageModelShape {
1653
+ about: LocalizedTitleAndDescription;
1654
+ }
1655
+ /**
1656
+ * Represents the type of product the license supports.
1657
+ */
1658
+ export type LicenseProductType = "RSTUDIO";
1659
+ export interface LinkedEntityTypeReference_objectType {
1660
+ type: "objectType";
1661
+ objectType: ObjectTypeReference;
1662
+ }
1663
+ export interface LinkedEntityTypeReference_interfaceType {
1664
+ type: "interfaceType";
1665
+ interfaceType: InterfaceTypeReference;
1666
+ }
1667
+ export type LinkedEntityTypeReference = LinkedEntityTypeReference_objectType | LinkedEntityTypeReference_interfaceType;
1668
+ export interface LinkTypeInputShape_oneToMany {
1669
+ type: "oneToMany";
1670
+ oneToMany: LinkTypeOneToManyShape;
1671
+ }
1672
+ export interface LinkTypeInputShape_manyToMany {
1673
+ type: "manyToMany";
1674
+ manyToMany: LinkTypeManyToManyInputShape;
1675
+ }
1676
+ export interface LinkTypeInputShape_intermediary {
1677
+ type: "intermediary";
1678
+ intermediary: LinkTypeIntermediaryShape;
1679
+ }
1680
+ export type LinkTypeInputShape = LinkTypeInputShape_oneToMany | LinkTypeInputShape_manyToMany | LinkTypeInputShape_intermediary;
1681
+ export interface LinkTypeIntermediaryShape {
1682
+ about: LocalizedTitleAndDescription;
1683
+ aToIntermediaryLinkTypeShapeId: LinkTypeReference;
1684
+ intermediaryObjectTypeShapeId: ObjectTypeReference;
1685
+ intermediaryToBLinkTypeShapeId: LinkTypeReference;
1686
+ objectTypeAShapeId: ObjectTypeReference;
1687
+ objectTypeAToBLinkMetadata: LocalizedTitleAndDescription;
1688
+ objectTypeBShapeId: ObjectTypeReference;
1689
+ objectTypeBToALinkMetadata: LocalizedTitleAndDescription;
1690
+ }
1691
+ export interface LinkTypeManyToManyInputShape {
1692
+ about: LocalizedTitleAndDescription;
1693
+ editsSupport: InputEditsSupport;
1694
+ objectsBackendVersion: InputObjectBackendVersion;
1695
+ objectTypeAToBLinkMetadata: LocalizedTitleAndDescription;
1696
+ objectTypeBToALinkMetadata: LocalizedTitleAndDescription;
1697
+ objectTypeShapeIdA: ObjectTypeReference;
1698
+ objectTypeShapeIdB: ObjectTypeReference;
1699
+ }
1700
+ export interface LinkTypeManyToManyOutputShape {
1701
+ about: LocalizedTitleAndDescription;
1702
+ editsSupport: OutputEditsSupport;
1703
+ objectsBackendVersion: OutputObjectBackendVersion;
1704
+ objectTypeAToBLinkMetadata: LocalizedTitleAndDescription;
1705
+ objectTypeBToALinkMetadata: LocalizedTitleAndDescription;
1706
+ objectTypeShapeIdA: ObjectTypeReference;
1707
+ objectTypeShapeIdB: ObjectTypeReference;
1708
+ }
1709
+ export interface LinkTypeOneToManyShape {
1710
+ about: LocalizedTitleAndDescription;
1711
+ cardinalityHint?: OneToManyLinkCardinalityHint | null | undefined;
1712
+ manyToOneLinkMetadata: LocalizedTitleAndDescription;
1713
+ objectTypeShapeIdManySide: ObjectTypeReference;
1714
+ objectTypeShapeIdOneSide: ObjectTypeReference;
1715
+ oneToManyLinkMetadata: LocalizedTitleAndDescription;
1716
+ }
1717
+ export interface LinkTypeOutputShape_oneToMany {
1718
+ type: "oneToMany";
1719
+ oneToMany: LinkTypeOneToManyShape;
1720
+ }
1721
+ export interface LinkTypeOutputShape_manyToMany {
1722
+ type: "manyToMany";
1723
+ manyToMany: LinkTypeManyToManyOutputShape;
1724
+ }
1725
+ export interface LinkTypeOutputShape_intermediary {
1726
+ type: "intermediary";
1727
+ intermediary: LinkTypeIntermediaryShape;
1728
+ }
1729
+ export type LinkTypeOutputShape = LinkTypeOutputShape_oneToMany | LinkTypeOutputShape_manyToMany | LinkTypeOutputShape_intermediary;
1730
+ export type LinkTypeReference = BlockInternalId;
1731
+ export type LinkTypeRid = string;
1732
+ /**
1733
+ * A language/locale identifier as per [RFC-5646](https://datatracker.ietf.org/doc/html/rfc5646).
1734
+ *
1735
+ * When matching, will preferentially match the most specific applicable identifier (e.g. `en-GB`
1736
+ * will match to `en` only if `en-GB` isn't available).
1737
+ */
1738
+ export type Locale = string;
1739
+ /**
1740
+ * A localized description for the given resource.
1741
+ */
1742
+ export type LocalizedDescription = string;
1743
+ /**
1744
+ * A localized title for the given resource.
1745
+ */
1746
+ export type LocalizedTitle = string;
1747
+ /**
1748
+ * A localization-aware title and description.
1749
+ */
1750
+ export interface LocalizedTitleAndDescription {
1751
+ fallbackDescription: string;
1752
+ fallbackTitle: string;
1753
+ localizedDescription: Record<Locale, LocalizedDescription>;
1754
+ localizedTitle: Record<Locale, LocalizedTitle>;
1755
+ }
1756
+ /**
1757
+ * / This is the shape of a single LogicFunction pinned at a VersionId within a LogicFile. A LogicFile might have many LogicFunctions, and many versions of each function. The LogicFunctionShape typically has a 1x1 mapping with a function registry function
1758
+ */
1759
+ export interface LogicFunctionShape {
1760
+ about: LocalizedTitleAndDescription;
1761
+ inputs: Array<LogicInputArgument>;
1762
+ logic: LogicReference;
1763
+ output: LogicOutputArgument;
1764
+ }
1765
+ export interface LogicInputArgument {
1766
+ about: LocalizedTitleAndDescription;
1767
+ input: LogicInputParameterType;
1768
+ }
1769
+ export interface LogicInputParameterType_unspecified {
1770
+ type: "unspecified";
1771
+ unspecified: UnspecifiedParameterType;
1772
+ }
1773
+ /**
1774
+ * A list of renderable parameter types that marketplace <-> eddie supports.
1775
+ * For now we only use
1776
+ */
1777
+ export type LogicInputParameterType = LogicInputParameterType_unspecified;
1778
+ export interface LogicOutputArgument {
1779
+ about: LocalizedTitleAndDescription;
1780
+ input: LogicOutputParameterType;
1781
+ }
1782
+ export interface LogicOutputParameterType_unspecified {
1783
+ type: "unspecified";
1784
+ unspecified: UnspecifiedParameterType;
1785
+ }
1786
+ /**
1787
+ * A list of renderable output types that marketplace <-> Eddie supports.
1788
+ */
1789
+ export type LogicOutputParameterType = LogicOutputParameterType_unspecified;
1790
+ export type LogicReference = BlockInternalId;
1791
+ /**
1792
+ * / This is the shape of the Logic compass resource
1793
+ */
1794
+ export interface LogicShape {
1795
+ about: LocalizedTitleAndDescription;
1796
+ }
1797
+ /**
1798
+ * LongListType specifies that this parameter must be a list of Longs.
1799
+ */
1800
+ export interface LongListType {}
1801
+ /**
1802
+ * LongType specifies that this parameter must be a Long.
1803
+ */
1804
+ export interface LongType {}
1805
+ export interface MachineryProcessShape {
1806
+ about: LocalizedTitleAndDescription;
1807
+ }
1808
+ export type MagritteApiName = string;
1809
+ export interface MagritteConnectionInputShape {
1810
+ about: LocalizedTitleAndDescription;
1811
+ connectionType: MagritteConnectionType;
1812
+ sourceReference: MagritteSourceReference;
1813
+ }
1814
+ /**
1815
+ * The type of connection. e.g. "http".
1816
+ */
1817
+ export type MagritteConnectionType = string;
1818
+ export interface MagritteExportShape {
1819
+ about: LocalizedTitleAndDescription;
1820
+ }
1821
+ /**
1822
+ * Output shape representing Magritte batch extracts.
1823
+ */
1824
+ export interface MagritteExtractOutputShape {
1825
+ about: LocalizedTitleAndDescription;
1826
+ }
1827
+ export type MagritteSecretName = string;
1828
+ export interface MagritteSourceConfigOverridesInputShape {
1829
+ about: LocalizedTitleAndDescription;
1830
+ stableId: StableShapeIdentifier;
1831
+ }
1832
+ export interface MagritteSourceInputShape {
1833
+ about: LocalizedTitleAndDescription;
1834
+ requiredApiName?: MagritteApiName | null | undefined;
1835
+ requiredSecrets: Array<MagritteSecretName>;
1836
+ sourceType: MagritteSourceType;
1837
+ sourceUsageRestrictions: Array<MagritteSourceUsageRestriction>;
1838
+ }
1839
+ export interface MagritteSourceOutputShape {
1840
+ about: LocalizedTitleAndDescription;
1841
+ sourceType: MagritteSourceType;
1842
+ }
1843
+ export type MagritteSourceReference = BlockInternalId;
1844
+ export type MagritteSourceType = string;
1845
+ export interface MagritteSourceUsageRestriction_stemmaRepository {
1846
+ type: "stemmaRepository";
1847
+ stemmaRepository: StemmaRepositoryType;
1848
+ }
1849
+ export interface MagritteSourceUsageRestriction_computeModule {
1850
+ type: "computeModule";
1851
+ computeModule: ComputeModuleType;
1852
+ }
1853
+ export interface MagritteSourceUsageRestriction_eddiePipeline {
1854
+ type: "eddiePipeline";
1855
+ eddiePipeline: EddiePipelineType;
1856
+ }
1857
+ export type MagritteSourceUsageRestriction = MagritteSourceUsageRestriction_stemmaRepository | MagritteSourceUsageRestriction_computeModule | MagritteSourceUsageRestriction_eddiePipeline;
1858
+ export interface MagritteStreamingExtractConfigOverridesInputShape {
1859
+ about: LocalizedTitleAndDescription;
1860
+ stableId: StableShapeIdentifier;
1861
+ }
1862
+ /**
1863
+ * Output shape representing Magritte streaming Extracts.
1864
+ */
1865
+ export interface MagritteStreamingExtractOutputShape {
1866
+ about: LocalizedTitleAndDescription;
1867
+ }
1868
+ export interface MapRendererSetOutputShape {
1869
+ about: LocalizedTitleAndDescription;
1870
+ }
1871
+ export interface MapRendererSetOutputShapeV2 {
1872
+ about: LocalizedTitleAndDescription;
1873
+ }
1874
+ export type MarkdownText = string;
1875
+ /**
1876
+ * MarkingListType specifies that this parameter must be a list of Markings.
1877
+ */
1878
+ export interface MarkingListType {}
1879
+ /**
1880
+ * MarkingOperation defines the level of user permissions required to install a package with this Marking. For
1881
+ * DECLASSIFY, the user must have declassify permissions on the marking. For USE, the user must have use
1882
+ * permissions on the marking. For NONE, no permissions are required to use this marking. NONE should only be set
1883
+ * by integrations that set Marking constraints on resources (e.g. the Ontology integration with Marking property
1884
+ * types).
1885
+ */
1886
+ export type MarkingOperation = "DECLASSIFY" | "USE" | "NONE";
1887
+ export interface MarkingsShape {
1888
+ about: LocalizedTitleAndDescription;
1889
+ affectedShapes: Array<BlockInternalId>;
1890
+ operation: MarkingOperation;
1891
+ sizeConstraints?: MarkingsSizeConstraints | null | undefined;
1892
+ stableId?: StableShapeIdentifier | null | undefined;
1893
+ supportedMarkingsType?: SupportedMarkingsType | null | undefined;
1894
+ }
1895
+ export interface MarkingsSizeConstraints {
1896
+ maxNumberInclusive: number;
1897
+ minNumberInclusive: number;
1898
+ }
1899
+ /**
1900
+ * MarkingType specifies that this parameter must be a CBAC or Madatory Marking type.
1901
+ */
1902
+ export interface MarkingType {}
1903
+ export interface MavenLocator {
1904
+ path: string;
1905
+ }
1906
+ /**
1907
+ * MediaReferenceType specifies that this parameter must be a MediaReference.
1908
+ */
1909
+ export interface MediaReferenceType {}
1910
+ export interface MediaSchema_document {
1911
+ type: "document";
1912
+ document: DocumentSchema;
1913
+ }
1914
+ export interface MediaSchema_any {
1915
+ type: "any";
1916
+ any: Void;
1917
+ }
1918
+ export interface MediaSchema_unspecified {
1919
+ type: "unspecified";
1920
+ unspecified: Void;
1921
+ }
1922
+ /**
1923
+ * deprecated
1924
+ */
1925
+ export type MediaSchema = MediaSchema_document | MediaSchema_any | MediaSchema_unspecified;
1926
+ /**
1927
+ * deprecated
1928
+ */
1929
+ export type MediaSchemaType = "ANY" | "IMAGERY" | "AUDIO" | "VIDEO" | "DOCUMENT" | "DICOM" | "SPREADSHEET" | "MULTIMODAL";
1930
+ export interface MediaSchemaTypeV2_any {
1931
+ type: "any";
1932
+ any: AnySchema;
1933
+ }
1934
+ export interface MediaSchemaTypeV2_imagery {
1935
+ type: "imagery";
1936
+ imagery: ImagerySchema;
1937
+ }
1938
+ export interface MediaSchemaTypeV2_audio {
1939
+ type: "audio";
1940
+ audio: AudioSchema;
1941
+ }
1942
+ export interface MediaSchemaTypeV2_document {
1943
+ type: "document";
1944
+ document: DocumentSchema;
1945
+ }
1946
+ export interface MediaSchemaTypeV2_dicom {
1947
+ type: "dicom";
1948
+ dicom: DicomSchema;
1949
+ }
1950
+ export interface MediaSchemaTypeV2_spreadsheet {
1951
+ type: "spreadsheet";
1952
+ spreadsheet: SpreadsheetSchema;
1953
+ }
1954
+ export interface MediaSchemaTypeV2_video {
1955
+ type: "video";
1956
+ video: VideoSchema;
1957
+ }
1958
+ export interface MediaSchemaTypeV2_multiModal {
1959
+ type: "multiModal";
1960
+ multiModal: MultiModalSchema;
1961
+ }
1962
+ /**
1963
+ * updated media schema copied from mio-api without additional constraints
1964
+ */
1965
+ export type MediaSchemaTypeV2 = MediaSchemaTypeV2_any | MediaSchemaTypeV2_imagery | MediaSchemaTypeV2_audio | MediaSchemaTypeV2_document | MediaSchemaTypeV2_dicom | MediaSchemaTypeV2_spreadsheet | MediaSchemaTypeV2_video | MediaSchemaTypeV2_multiModal;
1966
+ export interface MediaSetDatasourceType {
1967
+ mediaSchema: MediaSchema;
1968
+ mediaSchemaType?: MediaSchemaType | null | undefined;
1969
+ mediaSchemaTypeV2?: MediaSchemaTypeV2 | null | undefined;
1970
+ pathPolicy: PathPolicy;
1971
+ transactionPolicy?: MediaSetTransactionPolicy | null | undefined;
1972
+ }
1973
+ export interface MediaSetLocator {
1974
+ branch: string;
1975
+ rid: string;
1976
+ }
1977
+ export interface MediaSetTransactionPolicy_any {
1978
+ type: "any";
1979
+ any: Void;
1980
+ }
1981
+ export interface MediaSetTransactionPolicy_batchTransactions {
1982
+ type: "batchTransactions";
1983
+ batchTransactions: Void;
1984
+ }
1985
+ export interface MediaSetTransactionPolicy_noTransactions {
1986
+ type: "noTransactions";
1987
+ noTransactions: Void;
1988
+ }
1989
+ export type MediaSetTransactionPolicy = MediaSetTransactionPolicy_any | MediaSetTransactionPolicy_batchTransactions | MediaSetTransactionPolicy_noTransactions;
1990
+ export interface MkvVideoContainerFormat {}
1991
+ export interface ModelInputShape {
1992
+ about: LocalizedTitleAndDescription;
1993
+ allowedTypes: Array<ModelType>;
1994
+ type: ModelType;
1995
+ }
1996
+ export interface ModelOutputShape {
1997
+ about: LocalizedTitleAndDescription;
1998
+ buildRequirements?: DatasourceBuildRequirements | null | undefined;
1999
+ type: ModelType;
2000
+ }
2001
+ export interface ModelType_container {
2002
+ type: "container";
2003
+ container: Void;
2004
+ }
2005
+ export interface ModelType_binary {
2006
+ type: "binary";
2007
+ binary: Void;
2008
+ }
2009
+ export interface ModelType_modelSourceNotMarketplaceCompatible {
2010
+ type: "modelSourceNotMarketplaceCompatible";
2011
+ modelSourceNotMarketplaceCompatible: Void;
2012
+ }
2013
+ export type ModelType = ModelType_container | ModelType_binary | ModelType_modelSourceNotMarketplaceCompatible;
2014
+ export interface MonitorShape {
2015
+ about: LocalizedTitleAndDescription;
2016
+ }
2017
+ export interface MonitorViewShape {
2018
+ about: LocalizedTitleAndDescription;
2019
+ }
2020
+ export interface MonocleGraphShape {
2021
+ about: LocalizedTitleAndDescription;
2022
+ }
2023
+ export interface MovVideoContainerFormat {}
2024
+ export interface Mp2Format {}
2025
+ export interface Mp3Format {}
2026
+ export interface Mp4AudioContainerFormat_singleStream {
2027
+ type: "singleStream";
2028
+ singleStream: SingleStreamMp4AudioContainerFormat;
2029
+ }
2030
+ /**
2031
+ * An audio only mp4 container. Does not contain any non-audio streams.
2032
+ */
2033
+ export type Mp4AudioContainerFormat = Mp4AudioContainerFormat_singleStream;
2034
+ export interface Mp4VideoContainerFormat {}
2035
+ export interface MultiModalSchema {}
2036
+ export interface MultipassGroupShape {
2037
+ about: LocalizedTitleAndDescription;
2038
+ }
2039
+ export interface MultipassUserAttributeShape {
2040
+ about: LocalizedTitleAndDescription;
2041
+ }
2042
+ export interface NamedCredentialShape {
2043
+ about: LocalizedTitleAndDescription;
2044
+ secretNames: Array<SecretName>;
2045
+ }
2046
+ export interface NetworkEgressPolicyShape {
2047
+ about: LocalizedTitleAndDescription;
2048
+ }
2049
+ /**
2050
+ * Although this often has the file extension .wav, it's a distinct format.
2051
+ * See https://www1.icsi.berkeley.edu/Speech/faq/wavfile-fmts.html
2052
+ */
2053
+ export interface NistSphereFormat {}
2054
+ export interface NitfFormat {}
2055
+ /**
2056
+ * Notepad document that can be opened on its own or referenced in Workshop or Carbon.
2057
+ */
2058
+ export interface NotepadDocumentShape {
2059
+ about: LocalizedTitleAndDescription;
2060
+ }
2061
+ export type NotepadTemplateParameterReference = BlockInternalId;
2062
+ export interface NotepadTemplateParameterShape {
2063
+ about: LocalizedTitleAndDescription;
2064
+ template: NotepadTemplateReference;
2065
+ type: NotepadTemplateParameterType;
2066
+ }
2067
+ export type NotepadTemplateParameterType = "DATE" | "NUMBER" | "OBJECT" | "OBJECT_SET" | "STRING" | "TIMESTAMP";
2068
+ export type NotepadTemplateReference = BlockInternalId;
2069
+ /**
2070
+ * Notepad template that serves as a blueprint for generating new documents based on inputs.
2071
+ */
2072
+ export interface NotepadTemplateShape {
2073
+ about: LocalizedTitleAndDescription;
2074
+ parameters: Array<NotepadTemplateParameterReference>;
2075
+ }
2076
+ export interface NpmLocator {
2077
+ name: string;
2078
+ version: string;
2079
+ }
2080
+ export interface ObjectInstanceInputShape {
2081
+ about: LocalizedTitleAndDescription;
2082
+ objectTypeIdentifier: ObjectTypeReference;
2083
+ }
2084
+ export interface ObjectParameterPropertyValue {
2085
+ parameterId: ActionTypeParameterReference;
2086
+ propertyTypeId: ObjectTypePropertyReference;
2087
+ }
2088
+ export interface ObjectPropertyType_primitive {
2089
+ type: "primitive";
2090
+ primitive: PrimitiveObjectPropertyType;
2091
+ }
2092
+ export interface ObjectPropertyType_array {
2093
+ type: "array";
2094
+ array: ArrayObjectPropertyType;
2095
+ }
2096
+ /**
2097
+ * Wrapper which refers to an Ontology property type and supports describing complex property types (array).
2098
+ */
2099
+ export type ObjectPropertyType = ObjectPropertyType_primitive | ObjectPropertyType_array;
2100
+ /**
2101
+ * ObjectReferenceListType specifies that this parameter must be a list of ObjectLocators.
2102
+ */
2103
+ export interface ObjectReferenceListType {
2104
+ objectTypeId: ObjectTypeReference;
2105
+ }
2106
+ /**
2107
+ * ObjectReferenceType specifies that this parameter must be an ObjectLocator.
2108
+ */
2109
+ export interface ObjectReferenceType {
2110
+ objectTypeId: ObjectTypeReference;
2111
+ }
2112
+ /**
2113
+ * ObjectSetRidType specifies that this parameter must be an ObjectSetRid.
2114
+ */
2115
+ export interface ObjectSetRidType {
2116
+ objectTypeId: ObjectTypeReference;
2117
+ }
2118
+ export interface ObjectSetShape {
2119
+ about: LocalizedTitleAndDescription;
2120
+ }
2121
+ export interface ObjectTypeInputShape {
2122
+ about: LocalizedTitleAndDescription;
2123
+ editsSupport: InputEditsSupport;
2124
+ objectsBackendVersion: InputObjectBackendVersion;
2125
+ propertyTypes: Array<ObjectTypePropertyReference>;
2126
+ }
2127
+ export interface ObjectTypeOutputShape {
2128
+ about: LocalizedTitleAndDescription;
2129
+ editsSupport: OutputEditsSupport;
2130
+ objectsBackendVersion: OutputObjectBackendVersion;
2131
+ propertyTypes: Array<ObjectTypePropertyReference>;
2132
+ }
2133
+ export type ObjectTypePropertyReference = BlockInternalId;
2134
+ export type ObjectTypeReference = BlockInternalId;
2135
+ /**
2136
+ * An ObjectTypeReferenceType can be used to supply an object type to a function. This is useful for
2137
+ * addInterfaceRule where you need to specify what type of object you're creating.
2138
+ * NOTE: this is NOT an object instance.
2139
+ */
2140
+ export interface ObjectTypeReferenceType {}
2141
+ export type ObjectTypeRid = string;
2142
+ export type ObjectViewReference = BlockInternalId;
2143
+ export interface ObjectViewShape {
2144
+ about: LocalizedTitleAndDescription;
2145
+ objectType: ObjectTypeReference;
2146
+ tabs: Array<ObjectViewTabReference>;
2147
+ }
2148
+ export type ObjectViewTabReference = BlockInternalId;
2149
+ export interface ObjectViewTabShape {
2150
+ about: LocalizedTitleAndDescription;
2151
+ objectView: ObjectViewReference;
2152
+ }
2153
+ export interface OciLocator {
2154
+ name: string;
2155
+ tagOrDigest: TagOrDigest;
2156
+ }
2157
+ export interface OggAudioContainerFormat_singleStream {
2158
+ type: "singleStream";
2159
+ singleStream: SingleStreamOggAudioContainerFormat;
2160
+ }
2161
+ /**
2162
+ * An audio-only ogg container.
2163
+ * See https://xiph.org/ogg/doc/oggstream.html
2164
+ */
2165
+ export type OggAudioContainerFormat = OggAudioContainerFormat_singleStream;
2166
+ export interface OggAudioFormat_opus {
2167
+ type: "opus";
2168
+ opus: OpusFormat;
2169
+ }
2170
+ export interface OggAudioFormat_vorbis {
2171
+ type: "vorbis";
2172
+ vorbis: VorbisFormat;
2173
+ }
2174
+ export type OggAudioFormat = OggAudioFormat_opus | OggAudioFormat_vorbis;
2175
+ /**
2176
+ * This hint can be used to inform consumers whether the number of links on the many side of a
2177
+ * OneToManyLinkDefinition is intended to be one or more.
2178
+ */
2179
+ export type OneToManyLinkCardinalityHint = "ONE_TO_ONE" | "ONE_TO_MANY";
2180
+ export interface OntologyDatasourceRetentionShape {
2181
+ about: LocalizedTitleAndDescription;
2182
+ id: StableShapeIdentifier;
2183
+ }
2184
+ export interface OntologyDatasourceShape {
2185
+ about: LocalizedTitleAndDescription;
2186
+ ontologyEntity: OntologyEntityReference;
2187
+ }
2188
+ export interface OntologyEntityReference_objectType {
2189
+ type: "objectType";
2190
+ objectType: ObjectTypeReference;
2191
+ }
2192
+ export interface OntologyEntityReference_manyToManyLinkType {
2193
+ type: "manyToManyLinkType";
2194
+ manyToManyLinkType: LinkTypeReference;
2195
+ }
2196
+ export type OntologyEntityReference = OntologyEntityReference_objectType | OntologyEntityReference_manyToManyLinkType;
2197
+ export interface OntologySdkShape {
2198
+ about: LocalizedTitleAndDescription;
2199
+ }
2200
+ export interface OntologySdkShapeV2 {
2201
+ about: LocalizedTitleAndDescription;
2202
+ }
2203
+ export interface OpusFormat {}
2204
+ export type OutputEditsSupport = "EDITS_ENABLED" | "EDITS_DISABLED";
2205
+ export type OutputObjectBackendVersion = "V1" | "V2";
2206
+ export interface OutputShape_action {
2207
+ type: "action";
2208
+ action: ActionTypeShape;
2209
+ }
2210
+ export interface OutputShape_actionParameter {
2211
+ type: "actionParameter";
2212
+ actionParameter: ActionTypeParameterShape;
2213
+ }
2214
+ export interface OutputShape_aipAgent {
2215
+ type: "aipAgent";
2216
+ aipAgent: AipAgentShape;
2217
+ }
2218
+ export interface OutputShape_appConfigTitanium {
2219
+ type: "appConfigTitanium";
2220
+ appConfigTitanium: AppConfigOutputShape;
2221
+ }
2222
+ export interface OutputShape_appConfig {
2223
+ type: "appConfig";
2224
+ appConfig: AppConfigOutputShape;
2225
+ }
2226
+ export interface OutputShape_artifactsRepository {
2227
+ type: "artifactsRepository";
2228
+ artifactsRepository: ArtifactsRepositoryShape;
2229
+ }
2230
+ export interface OutputShape_authoringLibrary {
2231
+ type: "authoringLibrary";
2232
+ authoringLibrary: AuthoringLibraryShape;
2233
+ }
2234
+ export interface OutputShape_authoringRepository {
2235
+ type: "authoringRepository";
2236
+ authoringRepository: AuthoringRepositoryShape;
2237
+ }
2238
+ export interface OutputShape_automation {
2239
+ type: "automation";
2240
+ automation: AutomationShape;
2241
+ }
2242
+ export interface OutputShape_blobsterResource {
2243
+ type: "blobsterResource";
2244
+ blobsterResource: BlobsterResourceOutputShape;
2245
+ }
2246
+ export interface OutputShape_carbonWorkspace {
2247
+ type: "carbonWorkspace";
2248
+ carbonWorkspace: CarbonWorkspaceOutputShape;
2249
+ }
2250
+ export interface OutputShape_checkpointConfig {
2251
+ type: "checkpointConfig";
2252
+ checkpointConfig: CheckpointConfigOutputShape;
2253
+ }
2254
+ export interface OutputShape_cipherChannel {
2255
+ type: "cipherChannel";
2256
+ cipherChannel: CipherChannelOutputShape;
2257
+ }
2258
+ export interface OutputShape_cipherLicense {
2259
+ type: "cipherLicense";
2260
+ cipherLicense: CipherLicenseOutputShape;
2261
+ }
2262
+ export interface OutputShape_codeWorkspace {
2263
+ type: "codeWorkspace";
2264
+ codeWorkspace: CodeWorkspaceOutputShape;
2265
+ }
2266
+ export interface OutputShape_compassResource {
2267
+ type: "compassResource";
2268
+ compassResource: CompassResourceOutputShape;
2269
+ }
2270
+ export interface OutputShape_contourAnalysis {
2271
+ type: "contourAnalysis";
2272
+ contourAnalysis: ContourAnalysisShape;
2273
+ }
2274
+ export interface OutputShape_dataHealthCheck {
2275
+ type: "dataHealthCheck";
2276
+ dataHealthCheck: DataHealthCheckShape;
2277
+ }
2278
+ export interface OutputShape_dataHealthCheckGroup {
2279
+ type: "dataHealthCheckGroup";
2280
+ dataHealthCheckGroup: DataHealthCheckGroupShape;
2281
+ }
2282
+ export interface OutputShape_deployedApp {
2283
+ type: "deployedApp";
2284
+ deployedApp: DeployedAppShape;
2285
+ }
2286
+ export interface OutputShape_datasourceColumn {
2287
+ type: "datasourceColumn";
2288
+ datasourceColumn: DatasourceColumnShape;
2289
+ }
2290
+ export interface OutputShape_eddieEdgePipeline {
2291
+ type: "eddieEdgePipeline";
2292
+ eddieEdgePipeline: EddieEdgePipelineOutputShape;
2293
+ }
2294
+ export interface OutputShape_eddiePipeline {
2295
+ type: "eddiePipeline";
2296
+ eddiePipeline: EddiePipelineShape;
2297
+ }
2298
+ export interface OutputShape_evaluationSuite {
2299
+ type: "evaluationSuite";
2300
+ evaluationSuite: EvaluationSuiteShape;
2301
+ }
2302
+ export interface OutputShape_filesDatasource {
2303
+ type: "filesDatasource";
2304
+ filesDatasource: FilesDatasourceOutputShape;
2305
+ }
2306
+ export interface OutputShape_function {
2307
+ type: "function";
2308
+ function: FunctionShape;
2309
+ }
2310
+ export interface OutputShape_functionConfiguration {
2311
+ type: "functionConfiguration";
2312
+ functionConfiguration: FunctionConfigurationShape;
2313
+ }
2314
+ export interface OutputShape_geotimeSeriesIntegration {
2315
+ type: "geotimeSeriesIntegration";
2316
+ geotimeSeriesIntegration: GeotimeSeriesIntegrationShape;
2317
+ }
2318
+ export interface OutputShape_interfaceType {
2319
+ type: "interfaceType";
2320
+ interfaceType: InterfaceTypeOutputShape;
2321
+ }
2322
+ export interface OutputShape_interfaceLinkType {
2323
+ type: "interfaceLinkType";
2324
+ interfaceLinkType: InterfaceLinkTypeOutputShape;
2325
+ }
2326
+ export interface OutputShape_interfacePropertyType {
2327
+ type: "interfacePropertyType";
2328
+ interfacePropertyType: InterfacePropertyTypeOutputShape;
2329
+ }
2330
+ export interface OutputShape_linkType {
2331
+ type: "linkType";
2332
+ linkType: LinkTypeOutputShape;
2333
+ }
2334
+ export interface OutputShape_logic {
2335
+ type: "logic";
2336
+ logic: LogicShape;
2337
+ }
2338
+ export interface OutputShape_logicFunction {
2339
+ type: "logicFunction";
2340
+ logicFunction: LogicFunctionShape;
2341
+ }
2342
+ export interface OutputShape_machinery {
2343
+ type: "machinery";
2344
+ machinery: MachineryProcessShape;
2345
+ }
2346
+ export interface OutputShape_magritteExport {
2347
+ type: "magritteExport";
2348
+ magritteExport: MagritteExportShape;
2349
+ }
2350
+ export interface OutputShape_magritteExtract {
2351
+ type: "magritteExtract";
2352
+ magritteExtract: MagritteExtractOutputShape;
2353
+ }
2354
+ export interface OutputShape_magritteSource {
2355
+ type: "magritteSource";
2356
+ magritteSource: MagritteSourceOutputShape;
2357
+ }
2358
+ export interface OutputShape_magritteStreamingExtract {
2359
+ type: "magritteStreamingExtract";
2360
+ magritteStreamingExtract: MagritteStreamingExtractOutputShape;
2361
+ }
2362
+ export interface OutputShape_model {
2363
+ type: "model";
2364
+ model: ModelOutputShape;
2365
+ }
2366
+ export interface OutputShape_monitor {
2367
+ type: "monitor";
2368
+ monitor: MonitorShape;
2369
+ }
2370
+ export interface OutputShape_monitorView {
2371
+ type: "monitorView";
2372
+ monitorView: MonitorViewShape;
2373
+ }
2374
+ export interface OutputShape_mapRendererSet {
2375
+ type: "mapRendererSet";
2376
+ mapRendererSet: MapRendererSetOutputShape;
2377
+ }
2378
+ export interface OutputShape_mapRendererSetV2 {
2379
+ type: "mapRendererSetV2";
2380
+ mapRendererSetV2: MapRendererSetOutputShapeV2;
2381
+ }
2382
+ export interface OutputShape_namedCredential {
2383
+ type: "namedCredential";
2384
+ namedCredential: NamedCredentialShape;
2385
+ }
2386
+ export interface OutputShape_networkEgressPolicy {
2387
+ type: "networkEgressPolicy";
2388
+ networkEgressPolicy: NetworkEgressPolicyShape;
2389
+ }
2390
+ export interface OutputShape_notepadDocument {
2391
+ type: "notepadDocument";
2392
+ notepadDocument: NotepadDocumentShape;
2393
+ }
2394
+ export interface OutputShape_notepadTemplate {
2395
+ type: "notepadTemplate";
2396
+ notepadTemplate: NotepadTemplateShape;
2397
+ }
2398
+ export interface OutputShape_notepadTemplateParameter {
2399
+ type: "notepadTemplateParameter";
2400
+ notepadTemplateParameter: NotepadTemplateParameterShape;
2401
+ }
2402
+ export interface OutputShape_objectSet {
2403
+ type: "objectSet";
2404
+ objectSet: ObjectSetShape;
2405
+ }
2406
+ export interface OutputShape_objectType {
2407
+ type: "objectType";
2408
+ objectType: ObjectTypeOutputShape;
2409
+ }
2410
+ export interface OutputShape_objectView {
2411
+ type: "objectView";
2412
+ objectView: ObjectViewShape;
2413
+ }
2414
+ export interface OutputShape_objectViewTab {
2415
+ type: "objectViewTab";
2416
+ objectViewTab: ObjectViewTabShape;
2417
+ }
2418
+ export interface OutputShape_ontologyDatasource {
2419
+ type: "ontologyDatasource";
2420
+ ontologyDatasource: OntologyDatasourceShape;
2421
+ }
2422
+ export interface OutputShape_property {
2423
+ type: "property";
2424
+ property: PropertyOutputShape;
2425
+ }
2426
+ export interface OutputShape_quiverDashboard {
2427
+ type: "quiverDashboard";
2428
+ quiverDashboard: QuiverDashboardShape;
2429
+ }
2430
+ export interface OutputShape_resourceUpdatesContent {
2431
+ type: "resourceUpdatesContent";
2432
+ resourceUpdatesContent: ResourceUpdatesContentOutputShape;
2433
+ }
2434
+ export interface OutputShape_rosettaDocsBundle {
2435
+ type: "rosettaDocsBundle";
2436
+ rosettaDocsBundle: RosettaDocsBundleShape;
2437
+ }
2438
+ export interface OutputShape_ontologySdk {
2439
+ type: "ontologySdk";
2440
+ ontologySdk: OntologySdkShape;
2441
+ }
2442
+ export interface OutputShape_ontologySdkV2 {
2443
+ type: "ontologySdkV2";
2444
+ ontologySdkV2: OntologySdkShapeV2;
2445
+ }
2446
+ export interface OutputShape_schedule {
2447
+ type: "schedule";
2448
+ schedule: ScheduleShape;
2449
+ }
2450
+ export interface OutputShape_sharedPropertyType {
2451
+ type: "sharedPropertyType";
2452
+ sharedPropertyType: SharedPropertyTypeOutputShape;
2453
+ }
2454
+ export interface OutputShape_slateApplication {
2455
+ type: "slateApplication";
2456
+ slateApplication: SlateApplicationOutputShape;
2457
+ }
2458
+ export interface OutputShape_solutionDesign {
2459
+ type: "solutionDesign";
2460
+ solutionDesign: SolutionDesignShape;
2461
+ }
2462
+ export interface OutputShape_tabularDatasource {
2463
+ type: "tabularDatasource";
2464
+ tabularDatasource: TabularDatasourceOutputShape;
2465
+ }
2466
+ export interface OutputShape_taurusWorkflow {
2467
+ type: "taurusWorkflow";
2468
+ taurusWorkflow: TaurusWorkflowShape;
2469
+ }
2470
+ export interface OutputShape_thirdPartyApplication {
2471
+ type: "thirdPartyApplication";
2472
+ thirdPartyApplication: ThirdPartyApplicationShape;
2473
+ }
2474
+ export interface OutputShape_timeSeriesSync {
2475
+ type: "timeSeriesSync";
2476
+ timeSeriesSync: TimeSeriesSyncShape;
2477
+ }
2478
+ export interface OutputShape_transformsJobSpec {
2479
+ type: "transformsJobSpec";
2480
+ transformsJobSpec: TransformsJobSpecShape;
2481
+ }
2482
+ export interface OutputShape_valueType {
2483
+ type: "valueType";
2484
+ valueType: ValueTypeShape;
2485
+ }
2486
+ export interface OutputShape_vertexTemplate {
2487
+ type: "vertexTemplate";
2488
+ vertexTemplate: VertexTemplateShape;
2489
+ }
2490
+ export interface OutputShape_vortexTemplate {
2491
+ type: "vortexTemplate";
2492
+ vortexTemplate: VortexTemplateShape;
2493
+ }
2494
+ export interface OutputShape_walkthrough {
2495
+ type: "walkthrough";
2496
+ walkthrough: WalkthroughShape;
2497
+ }
2498
+ export interface OutputShape_webhook {
2499
+ type: "webhook";
2500
+ webhook: WebhookShape;
2501
+ }
2502
+ export interface OutputShape_widget {
2503
+ type: "widget";
2504
+ widget: WidgetShape;
2505
+ }
2506
+ export interface OutputShape_widgetSet {
2507
+ type: "widgetSet";
2508
+ widgetSet: WidgetSetShape;
2509
+ }
2510
+ export interface OutputShape_workflowGraph {
2511
+ type: "workflowGraph";
2512
+ workflowGraph: WorkflowGraphShape;
2513
+ }
2514
+ export interface OutputShape_workshopApplication {
2515
+ type: "workshopApplication";
2516
+ workshopApplication: WorkshopApplicationOutputShape;
2517
+ }
2518
+ /**
2519
+ * An output must have an about field of type `LocalizedTitleAndDescription`. This is what the FE uses to render
2520
+ * the output.
2521
+ */
2522
+ export type OutputShape = OutputShape_action | OutputShape_actionParameter | OutputShape_aipAgent | OutputShape_appConfigTitanium | OutputShape_appConfig | OutputShape_artifactsRepository | OutputShape_authoringLibrary | OutputShape_authoringRepository | OutputShape_automation | OutputShape_blobsterResource | OutputShape_carbonWorkspace | OutputShape_checkpointConfig | OutputShape_cipherChannel | OutputShape_cipherLicense | OutputShape_codeWorkspace | OutputShape_compassResource | OutputShape_contourAnalysis | OutputShape_dataHealthCheck | OutputShape_dataHealthCheckGroup | OutputShape_deployedApp | OutputShape_datasourceColumn | OutputShape_eddieEdgePipeline | OutputShape_eddiePipeline | OutputShape_evaluationSuite | OutputShape_filesDatasource | OutputShape_function | OutputShape_functionConfiguration | OutputShape_geotimeSeriesIntegration | OutputShape_interfaceType | OutputShape_interfaceLinkType | OutputShape_interfacePropertyType | OutputShape_linkType | OutputShape_logic | OutputShape_logicFunction | OutputShape_machinery | OutputShape_magritteExport | OutputShape_magritteExtract | OutputShape_magritteSource | OutputShape_magritteStreamingExtract | OutputShape_model | OutputShape_monitor | OutputShape_monitorView | OutputShape_mapRendererSet | OutputShape_mapRendererSetV2 | OutputShape_namedCredential | OutputShape_networkEgressPolicy | OutputShape_notepadDocument | OutputShape_notepadTemplate | OutputShape_notepadTemplateParameter | OutputShape_objectSet | OutputShape_objectType | OutputShape_objectView | OutputShape_objectViewTab | OutputShape_ontologyDatasource | OutputShape_property | OutputShape_quiverDashboard | OutputShape_resourceUpdatesContent | OutputShape_rosettaDocsBundle | OutputShape_ontologySdk | OutputShape_ontologySdkV2 | OutputShape_schedule | OutputShape_sharedPropertyType | OutputShape_slateApplication | OutputShape_solutionDesign | OutputShape_tabularDatasource | OutputShape_taurusWorkflow | OutputShape_thirdPartyApplication | OutputShape_timeSeriesSync | OutputShape_transformsJobSpec | OutputShape_valueType | OutputShape_vertexTemplate | OutputShape_vortexTemplate | OutputShape_walkthrough | OutputShape_webhook | OutputShape_widget | OutputShape_widgetSet | OutputShape_workflowGraph | OutputShape_workshopApplication;
2523
+ /**
2524
+ * This shape is intended to represent a boolean config that a user can check if they want to allow their
2525
+ * Marketplace installation upgrade to override existing installed ontology entity API names. This would be
2526
+ * needed if any of the user's packaged entity API names have been modified, and the user wants the corresponding
2527
+ * installed entity API names to be updated to the modified packaged entity API name.
2528
+ *
2529
+ * This configuration should be enabled with caution, as it can break downstream applications that reference
2530
+ * ontology entities by their API names, such as functions and OSDK.
2531
+ *
2532
+ * A few constraints that Marketplace will enforce:
2533
+ * - This config cannot be used together with installation prefixes (enabling and configuring InstallPrefix), and
2534
+ * OMS will return a blocking validation error if both are set. This is because API name prefixing will break
2535
+ * downstream applications (e.g. OSDK, Functions) referencing entities by their API names that are packaged
2536
+ * together
2537
+ * - OMS will return blocking validation errors on API name upgrades if this config is not enabled, and
2538
+ * nonblocking validation errors if this config is enabled.
2539
+ * - Regardless of this configuration, installation will be blocked if the API name of an entity to be installed
2540
+ * is already used in the target ontology, until either is deduplicated to ensure uniqueness.
2541
+ */
2542
+ export interface OverrideOntologyEntityApiNamesShape {
2543
+ about: LocalizedTitleAndDescription;
2544
+ }
2545
+ export interface ParameterInputShape {
2546
+ about: LocalizedTitleAndDescription;
2547
+ id?: StableShapeIdentifier | null | undefined;
2548
+ parameterType: DataType;
2549
+ }
2550
+ export interface PathPolicy_any {
2551
+ type: "any";
2552
+ any: Void;
2553
+ }
2554
+ export interface PathPolicy_pathRequired {
2555
+ type: "pathRequired";
2556
+ pathRequired: Void;
2557
+ }
2558
+ export interface PathPolicy_pathNotSupported {
2559
+ type: "pathNotSupported";
2560
+ pathNotSupported: Void;
2561
+ }
2562
+ export type PathPolicy = PathPolicy_any | PathPolicy_pathRequired | PathPolicy_pathNotSupported;
2563
+ export interface PdfFormat {}
2564
+ export interface PngFormat {}
2565
+ export interface PptxFormat {}
2566
+ /**
2567
+ * RESOURCE_PREALLOCATION_REQUIRED requires the resource has been preallocated already
2568
+ * by the block that owns it, resulting in the resource being available during preallocation
2569
+ * as a resolved input shape.
2570
+ */
2571
+ export type PreallocateAccessRequirementType = "RESOURCE_PREALLOCATION_REQUIRED";
2572
+ export interface PrimitiveBaseType_boolean {
2573
+ type: "boolean";
2574
+ boolean: Void;
2575
+ }
2576
+ export interface PrimitiveBaseType_binary {
2577
+ type: "binary";
2578
+ binary: Void;
2579
+ }
2580
+ export interface PrimitiveBaseType_byte {
2581
+ type: "byte";
2582
+ byte: Void;
2583
+ }
2584
+ export interface PrimitiveBaseType_date {
2585
+ type: "date";
2586
+ date: Void;
2587
+ }
2588
+ export interface PrimitiveBaseType_decimal {
2589
+ type: "decimal";
2590
+ decimal: Void;
2591
+ }
2592
+ export interface PrimitiveBaseType_double {
2593
+ type: "double";
2594
+ double: Void;
2595
+ }
2596
+ export interface PrimitiveBaseType_float {
2597
+ type: "float";
2598
+ float: Void;
2599
+ }
2600
+ export interface PrimitiveBaseType_integer {
2601
+ type: "integer";
2602
+ integer: Void;
2603
+ }
2604
+ export interface PrimitiveBaseType_long {
2605
+ type: "long";
2606
+ long: Void;
2607
+ }
2608
+ export interface PrimitiveBaseType_map {
2609
+ type: "map";
2610
+ map: Void;
2611
+ }
2612
+ export interface PrimitiveBaseType_optional {
2613
+ type: "optional";
2614
+ optional: Void;
2615
+ }
2616
+ export interface PrimitiveBaseType_short {
2617
+ type: "short";
2618
+ short: Void;
2619
+ }
2620
+ export interface PrimitiveBaseType_string {
2621
+ type: "string";
2622
+ string: Void;
2623
+ }
2624
+ export interface PrimitiveBaseType_struct {
2625
+ type: "struct";
2626
+ struct: Void;
2627
+ }
2628
+ export interface PrimitiveBaseType_structV2 {
2629
+ type: "structV2";
2630
+ structV2: Void;
2631
+ }
2632
+ export interface PrimitiveBaseType_timestamp {
2633
+ type: "timestamp";
2634
+ timestamp: Void;
2635
+ }
2636
+ export type PrimitiveBaseType = PrimitiveBaseType_boolean | PrimitiveBaseType_binary | PrimitiveBaseType_byte | PrimitiveBaseType_date | PrimitiveBaseType_decimal | PrimitiveBaseType_double | PrimitiveBaseType_float | PrimitiveBaseType_integer | PrimitiveBaseType_long | PrimitiveBaseType_map | PrimitiveBaseType_optional | PrimitiveBaseType_short | PrimitiveBaseType_string | PrimitiveBaseType_struct | PrimitiveBaseType_structV2 | PrimitiveBaseType_timestamp;
2637
+ export interface PrimitiveObjectPropertyType_stringType {
2638
+ type: "stringType";
2639
+ stringType: Void;
2640
+ }
2641
+ export interface PrimitiveObjectPropertyType_booleanType {
2642
+ type: "booleanType";
2643
+ booleanType: Void;
2644
+ }
2645
+ export interface PrimitiveObjectPropertyType_byteType {
2646
+ type: "byteType";
2647
+ byteType: Void;
2648
+ }
2649
+ export interface PrimitiveObjectPropertyType_dateType {
2650
+ type: "dateType";
2651
+ dateType: Void;
2652
+ }
2653
+ export interface PrimitiveObjectPropertyType_decimalType {
2654
+ type: "decimalType";
2655
+ decimalType: Void;
2656
+ }
2657
+ export interface PrimitiveObjectPropertyType_doubleType {
2658
+ type: "doubleType";
2659
+ doubleType: Void;
2660
+ }
2661
+ export interface PrimitiveObjectPropertyType_floatType {
2662
+ type: "floatType";
2663
+ floatType: Void;
2664
+ }
2665
+ export interface PrimitiveObjectPropertyType_geohashType {
2666
+ type: "geohashType";
2667
+ geohashType: Void;
2668
+ }
2669
+ export interface PrimitiveObjectPropertyType_geoshapeType {
2670
+ type: "geoshapeType";
2671
+ geoshapeType: Void;
2672
+ }
2673
+ export interface PrimitiveObjectPropertyType_geotimeSeriesReferenceType {
2674
+ type: "geotimeSeriesReferenceType";
2675
+ geotimeSeriesReferenceType: Void;
2676
+ }
2677
+ export interface PrimitiveObjectPropertyType_integerType {
2678
+ type: "integerType";
2679
+ integerType: Void;
2680
+ }
2681
+ export interface PrimitiveObjectPropertyType_longType {
2682
+ type: "longType";
2683
+ longType: Void;
2684
+ }
2685
+ export interface PrimitiveObjectPropertyType_shortType {
2686
+ type: "shortType";
2687
+ shortType: Void;
2688
+ }
2689
+ export interface PrimitiveObjectPropertyType_timeDependentType {
2690
+ type: "timeDependentType";
2691
+ timeDependentType: Void;
2692
+ }
2693
+ export interface PrimitiveObjectPropertyType_timestampType {
2694
+ type: "timestampType";
2695
+ timestampType: Void;
2696
+ }
2697
+ export interface PrimitiveObjectPropertyType_attachmentType {
2698
+ type: "attachmentType";
2699
+ attachmentType: Void;
2700
+ }
2701
+ export interface PrimitiveObjectPropertyType_markingType {
2702
+ type: "markingType";
2703
+ markingType: Void;
2704
+ }
2705
+ export interface PrimitiveObjectPropertyType_mediaReferenceType {
2706
+ type: "mediaReferenceType";
2707
+ mediaReferenceType: Void;
2708
+ }
2709
+ export interface PrimitiveObjectPropertyType_vectorType {
2710
+ type: "vectorType";
2711
+ vectorType: VectorPropertyType;
2712
+ }
2713
+ export interface PrimitiveObjectPropertyType_cipherTextType {
2714
+ type: "cipherTextType";
2715
+ cipherTextType: CipherTextPropertyType;
2716
+ }
2717
+ export interface PrimitiveObjectPropertyType_structType {
2718
+ type: "structType";
2719
+ structType: StructPropertyType;
2720
+ }
2721
+ /**
2722
+ * Represents the primitive types for Ontology properties.
2723
+ */
2724
+ export type PrimitiveObjectPropertyType = PrimitiveObjectPropertyType_stringType | PrimitiveObjectPropertyType_booleanType | PrimitiveObjectPropertyType_byteType | PrimitiveObjectPropertyType_dateType | PrimitiveObjectPropertyType_decimalType | PrimitiveObjectPropertyType_doubleType | PrimitiveObjectPropertyType_floatType | PrimitiveObjectPropertyType_geohashType | PrimitiveObjectPropertyType_geoshapeType | PrimitiveObjectPropertyType_geotimeSeriesReferenceType | PrimitiveObjectPropertyType_integerType | PrimitiveObjectPropertyType_longType | PrimitiveObjectPropertyType_shortType | PrimitiveObjectPropertyType_timeDependentType | PrimitiveObjectPropertyType_timestampType | PrimitiveObjectPropertyType_attachmentType | PrimitiveObjectPropertyType_markingType | PrimitiveObjectPropertyType_mediaReferenceType | PrimitiveObjectPropertyType_vectorType | PrimitiveObjectPropertyType_cipherTextType | PrimitiveObjectPropertyType_structType;
2725
+ export interface PropertyInputShape {
2726
+ about: LocalizedTitleAndDescription;
2727
+ inlineActionType?: ActionTypeReference | null | undefined;
2728
+ objectType: ObjectTypeReference;
2729
+ sharedPropertyType?: SharedPropertyTypeReference | null | undefined;
2730
+ type: AllowedObjectPropertyType;
2731
+ }
2732
+ export interface PropertyOutputShape {
2733
+ about: LocalizedTitleAndDescription;
2734
+ inlineActionType?: ActionTypeReference | null | undefined;
2735
+ objectType: ObjectTypeReference;
2736
+ sharedPropertyType?: SharedPropertyTypeReference | null | undefined;
2737
+ type: ObjectPropertyType;
2738
+ }
2739
+ export type PropertyTypeRid = string;
2740
+ export interface PypiLocator {
2741
+ fileName: string;
2742
+ md5Digest?: string | null | undefined;
2743
+ project: string;
2744
+ requiresPython?: string | null | undefined;
2745
+ sha256Digest?: string | null | undefined;
2746
+ url: string;
2747
+ }
2748
+ /**
2749
+ * Quiver dashboard shape
2750
+ */
2751
+ export interface QuiverDashboardShape {
2752
+ about: LocalizedTitleAndDescription;
2753
+ }
2754
+ /**
2755
+ * If included in a Cipher License, the user has the ability to encrypt or decrypt (depending on the RequestType)
2756
+ * up to the limit specified.
2757
+ */
2758
+ export interface RateLimitedRequestPermit {
2759
+ requestType: RequestType;
2760
+ }
2761
+ /**
2762
+ * Two layers of granularity are provided to specify the access requirements for an input shape: either
2763
+ * RESOURCE_EXISTENCE_REQUIRED, which requires the resource has been created or SCHEMA_UPDATE_REQUIRED, which
2764
+ * will guarantee that the input must be built with the latest schema before reconciliation. Schema existence is
2765
+ * only relevant for dataset types.
2766
+ *
2767
+ * If the output is permissioned based on a given input, RESOURCE_EXISTENCE_REQUIRED should always be specified
2768
+ * so that the upstream input is guaranteed to exist in Gatekeeper.
2769
+ *
2770
+ * Specifying SCHEMA_UPDATE_REQUIRED will also guarantee RESOURCE_EXISTENCE_REQUIRED is fulfilled.
2771
+ * If SCHEMA_UPDATE_REQUIRED is specified, the shape type and block type must be allowlisted in
2772
+ * `SchemaUpdateReconcileAccessValidator`, else we will throw on block creation.
2773
+ */
2774
+ export type ReconcileAccessRequirementType = "RESOURCE_EXISTENCE_REQUIRED" | "SCHEMA_UPDATE_REQUIRED";
2775
+ /**
2776
+ * Reference a patched repodata in a conda layout. It allows to ship patched environments that may not be solvable in destination stacks
2777
+ */
2778
+ export interface RepoDataLocator {
2779
+ platform: string;
2780
+ }
2781
+ export type RequestType = "ENCRYPT" | "DECRYPT";
2782
+ export interface ResolvedDatasourceColumnShape {
2783
+ datasource: DatasourceLocator;
2784
+ name: string;
2785
+ }
2786
+ /**
2787
+ * Resource Updates refer to the generic concept that represents Product Walkthroughs.
2788
+ * This shape represents the Content of each slide in a Product Walkthrough.
2789
+ * We use this output shape to be able to preallocate ContentRids of a ResourceUpdate and keep it consistent
2790
+ * across installations.
2791
+ */
2792
+ export interface ResourceUpdatesContentOutputShape {
2793
+ about: LocalizedTitleAndDescription;
2794
+ }
2795
+ export interface RestrictedViewLocator {
2796
+ rid: string;
2797
+ }
2798
+ /**
2799
+ * Rosetta documentation bundle, which can only be opened in the Rosetta app (never an input to other blocks).
2800
+ */
2801
+ export interface RosettaDocsBundleShape {
2802
+ about: LocalizedTitleAndDescription;
2803
+ }
2804
+ export interface ScheduleShape {
2805
+ about: LocalizedTitleAndDescription;
2806
+ }
2807
+ export type SecretName = string;
2808
+ export interface SerializedDataLocator_conda {
2809
+ type: "conda";
2810
+ conda: CondaLocator;
2811
+ }
2812
+ export interface SerializedDataLocator_condaV2 {
2813
+ type: "condaV2";
2814
+ condaV2: CondaLocatorV2;
2815
+ }
2816
+ export interface SerializedDataLocator_files {
2817
+ type: "files";
2818
+ files: FilesLocator;
2819
+ }
2820
+ export interface SerializedDataLocator_maven {
2821
+ type: "maven";
2822
+ maven: MavenLocator;
2823
+ }
2824
+ export interface SerializedDataLocator_npm {
2825
+ type: "npm";
2826
+ npm: NpmLocator;
2827
+ }
2828
+ export interface SerializedDataLocator_oci {
2829
+ type: "oci";
2830
+ oci: OciLocator;
2831
+ }
2832
+ export interface SerializedDataLocator_pypi {
2833
+ type: "pypi";
2834
+ pypi: PypiLocator;
2835
+ }
2836
+ export interface SerializedDataLocator_repoData {
2837
+ type: "repoData";
2838
+ repoData: RepoDataLocator;
2839
+ }
2840
+ /**
2841
+ * A locator to a piece of serialized data.
2842
+ * These correspond to (a subset of) foundry artifacts layouts.
2843
+ */
2844
+ export type SerializedDataLocator = SerializedDataLocator_conda | SerializedDataLocator_condaV2 | SerializedDataLocator_files | SerializedDataLocator_maven | SerializedDataLocator_npm | SerializedDataLocator_oci | SerializedDataLocator_pypi | SerializedDataLocator_repoData;
2845
+ /**
2846
+ * A versioned cross stack identifier for a service managed value type.
2847
+ */
2848
+ export interface ServiceManagedValueTypeIdentifier {
2849
+ apiName: ValueTypeApiName;
2850
+ version: ValueTypeVersion;
2851
+ }
2852
+ export interface SharedPropertyTypeInputShape {
2853
+ about: LocalizedTitleAndDescription;
2854
+ type: AllowedObjectPropertyType;
2855
+ }
2856
+ export interface SharedPropertyTypeOutputShape {
2857
+ about: LocalizedTitleAndDescription;
2858
+ type: ObjectPropertyType;
2859
+ }
2860
+ export type SharedPropertyTypeReference = BlockInternalId;
2861
+ export type SharedPropertyTypeRid = string;
2862
+ export interface SingleOutputType {
2863
+ about: LocalizedTitleAndDescription;
2864
+ dataType: _api_functions_DataType;
2865
+ }
2866
+ /**
2867
+ * An mp4 container which contains a single audio stream.
2868
+ */
2869
+ export interface SingleStreamMp4AudioContainerFormat {}
2870
+ /**
2871
+ * An ogg container which contains a single audio stream.
2872
+ */
2873
+ export interface SingleStreamOggAudioContainerFormat {
2874
+ oggAudioFormat: OggAudioFormat;
2875
+ }
2876
+ /**
2877
+ * A webm container which contains a single audio stream.
2878
+ */
2879
+ export interface SingleStreamWebmAudioContainerFormat {}
2880
+ export interface SlateApplicationInputShape {
2881
+ about: LocalizedTitleAndDescription;
2882
+ }
2883
+ export interface SlateApplicationOutputShape {
2884
+ about: LocalizedTitleAndDescription;
2885
+ }
2886
+ /**
2887
+ * Solution Design Diagram created by a user and saved in Compass.
2888
+ */
2889
+ export interface SolutionDesignShape {
2890
+ about: LocalizedTitleAndDescription;
2891
+ }
2892
+ export interface SparkProfileConstraint_allowedProfileNames {
2893
+ type: "allowedProfileNames";
2894
+ allowedProfileNames: AllowedProfileNamesConstraint;
2895
+ }
2896
+ export type SparkProfileConstraint = SparkProfileConstraint_allowedProfileNames;
2897
+ export type SparkProfileName = string;
2898
+ export interface SparkProfileShape {
2899
+ about: LocalizedTitleAndDescription;
2900
+ constraints?: SparkProfileConstraint | null | undefined;
2901
+ }
2902
+ export interface SpreadsheetDecodeFormat_xlsx {
2903
+ type: "xlsx";
2904
+ xlsx: XlsxFormat;
2905
+ }
2906
+ export type SpreadsheetDecodeFormat = SpreadsheetDecodeFormat_xlsx;
2907
+ export interface SpreadsheetSchema {
2908
+ format: SpreadsheetDecodeFormat;
2909
+ }
2910
+ /**
2911
+ * A stable identifier for a shape, provided by integrations during packaging.
2912
+ * Typically used for shapes that represent parametrization values, or when integrations want to otherwise
2913
+ * deduplicate shapes explicitly.
2914
+ * Examples include:
2915
+ * - Parameter shapes: Example for workshop would be the variable ID that a parameter
2916
+ * is associated with. In workshop as long as the variable is not deleted its ID remains the same every
2917
+ * time you package a workshop.
2918
+ * - Markings ids: Example include a semantic identifier such as `oms.used-marking.<dataset-locator>` for the
2919
+ * marking. Rather than creating a shape based on the used markings in the source, a shape is created for
2920
+ * each separate marking id.
2921
+ */
2922
+ export type StableShapeIdentifier = string;
2923
+ /**
2924
+ * A stemma code repository. Currently this type should only be used to identify external transforms.
2925
+ */
2926
+ export interface StemmaRepositoryType {}
2927
+ export interface StreamLocator {
2928
+ branch: string;
2929
+ rid: string;
2930
+ }
2931
+ /**
2932
+ * StringListType specifies that this parameter must be a list of Strings.
2933
+ */
2934
+ export interface StringListType {}
2935
+ /**
2936
+ * StringType specifies that this parameter must be a String.
2937
+ */
2938
+ export interface StringType {}
2939
+ export interface StructFieldBaseParameterType_boolean {
2940
+ type: "boolean";
2941
+ boolean: BooleanType;
2942
+ }
2943
+ export interface StructFieldBaseParameterType_integer {
2944
+ type: "integer";
2945
+ integer: IntegerType;
2946
+ }
2947
+ export interface StructFieldBaseParameterType_long {
2948
+ type: "long";
2949
+ long: LongType;
2950
+ }
2951
+ export interface StructFieldBaseParameterType_double {
2952
+ type: "double";
2953
+ double: DoubleType;
2954
+ }
2955
+ export interface StructFieldBaseParameterType_string {
2956
+ type: "string";
2957
+ string: StringType;
2958
+ }
2959
+ export interface StructFieldBaseParameterType_geohash {
2960
+ type: "geohash";
2961
+ geohash: GeohashType;
2962
+ }
2963
+ export interface StructFieldBaseParameterType_geoshape {
2964
+ type: "geoshape";
2965
+ geoshape: GeoshapeType;
2966
+ }
2967
+ export interface StructFieldBaseParameterType_timestamp {
2968
+ type: "timestamp";
2969
+ timestamp: TimestampType;
2970
+ }
2971
+ export interface StructFieldBaseParameterType_date {
2972
+ type: "date";
2973
+ date: DateType;
2974
+ }
2975
+ export interface StructFieldBaseParameterType_objectReference {
2976
+ type: "objectReference";
2977
+ objectReference: ObjectReferenceType;
2978
+ }
2979
+ /**
2980
+ * All of the possible types for fields of a Struct Parameter. This should be the intersection of allowed struct
2981
+ * property field types (https://www.palantir.com/docs/foundry/object-link-types/structs-overview/), and the
2982
+ * inhabitants of the BaseParameterType union.
2983
+ */
2984
+ export type StructFieldBaseParameterType = StructFieldBaseParameterType_boolean | StructFieldBaseParameterType_integer | StructFieldBaseParameterType_long | StructFieldBaseParameterType_double | StructFieldBaseParameterType_string | StructFieldBaseParameterType_geohash | StructFieldBaseParameterType_geoshape | StructFieldBaseParameterType_timestamp | StructFieldBaseParameterType_date | StructFieldBaseParameterType_objectReference;
2985
+ export type StructFieldRid = string;
2986
+ /**
2987
+ * StructListType specifies that this parameter must be a list of Structs.
2988
+ */
2989
+ export interface StructListType {
2990
+ structFieldTypes: Record<StructParameterFieldApiName, StructFieldBaseParameterType>;
2991
+ }
2992
+ /**
2993
+ * An API name that identifies a struct field in a struct parameter. Note that this api name is specific to the
2994
+ * action type and does not need to match the api name on the struct property type.
2995
+ */
2996
+ export type StructParameterFieldApiName = string;
2997
+ /**
2998
+ * Represents a struct property, which is an ordered list of keys and values used to model data
2999
+ * with related components as part of a single entity (closely mimics the composite property type from
3000
+ * the Gotham ontology). Unlike OMS struct property type, we only did not include the struct field API
3001
+ * names as part of the type (similar to how other property types do not include their API names).
3002
+ * This is because we only require the types and the ordering of the struct fields to match.
3003
+ * Additionally, note that certain types are not supported as struct fields, but they are validated
3004
+ * in code even though their corresponding ObjectPropertyTypes might be allowed by the API shape here.
3005
+ * (See the list of supported struct field types here:
3006
+ * https://www.palantir.com/docs/foundry/object-link-types/structs-overview/)
3007
+ */
3008
+ export interface StructPropertyType {
3009
+ structFieldTypes: Array<ObjectPropertyType>;
3010
+ }
3011
+ /**
3012
+ * StructType specifies that this parameter must be a Struct.
3013
+ */
3014
+ export interface StructType {
3015
+ structFieldTypes: Record<StructParameterFieldApiName, StructFieldBaseParameterType>;
3016
+ }
3017
+ /**
3018
+ * Represents the base type of a struct value type, which is an ordered list of keys and base types used to model
3019
+ * data with related components as part of a single entity. Field names are not included as part of this type. As
3020
+ * a result, only the types and the ordering of fields are required to match.
3021
+ */
3022
+ export interface StructV2BaseType {
3023
+ structFieldTypes: Array<BaseType>;
3024
+ }
3025
+ /**
3026
+ * Similar to the `MarkingType` enum in Multipass, but we include a third `ONLY_ORGANIZATION` type that only
3027
+ * supports organization markings. The `MANDATORY` type supports both "normal" mandatory markings and
3028
+ * organization markings, beacuse in the Multipass API, organization markings are treated as a special type of
3029
+ * mandatory markings.
3030
+ */
3031
+ export type SupportedMarkingsType = "MANDATORY" | "CBAC" | "ONLY_ORGANIZATION";
3032
+ export interface TabularDatasourceInputShape {
3033
+ about: LocalizedTitleAndDescription;
3034
+ schema: Array<DatasourceColumnReference>;
3035
+ supportedTypes: Array<TabularDatasourceType>;
3036
+ }
3037
+ export interface TabularDatasourceOutputShape {
3038
+ about: LocalizedTitleAndDescription;
3039
+ buildRequirements?: DatasourceBuildRequirements | null | undefined;
3040
+ schema: Array<DatasourceColumnReference>;
3041
+ type: TabularDatasourceType;
3042
+ }
3043
+ export type TabularDatasourceReference = BlockInternalId;
3044
+ export type TabularDatasourceType = "DATASET" | "RESTRICTED_VIEW" | "STREAM" | "VIRTUAL_TABLE";
3045
+ export interface TagOrDigest_tag {
3046
+ type: "tag";
3047
+ tag: string;
3048
+ }
3049
+ export interface TagOrDigest_digest {
3050
+ type: "digest";
3051
+ digest: string;
3052
+ }
3053
+ export type TagOrDigest = TagOrDigest_tag | TagOrDigest_digest;
3054
+ /**
3055
+ * Taurus workflow that is referenced by taurus workshop widget.
3056
+ */
3057
+ export interface TaurusWorkflowShape {
3058
+ about: LocalizedTitleAndDescription;
3059
+ }
3060
+ export interface ThirdPartyApplicationShape {
3061
+ about: LocalizedTitleAndDescription;
3062
+ }
3063
+ export interface TiffFormat {}
3064
+ /**
3065
+ * TimeSeriesReferenceType specifies that this parameter must be a TimeSeriesReference.
3066
+ */
3067
+ export interface TimeSeriesReferenceType {}
3068
+ export type TimeSeriesSyncRid = string;
3069
+ export interface TimeSeriesSyncShape {
3070
+ about: LocalizedTitleAndDescription;
3071
+ type?: TimeSeriesSyncType | null | undefined;
3072
+ }
3073
+ export type TimeSeriesSyncType = "NUMERIC" | "CATEGORICAL";
3074
+ /**
3075
+ * TimestampListType specifies that this parameter must be a list of Timestamps.
3076
+ */
3077
+ export interface TimestampListType {}
3078
+ /**
3079
+ * TimestampType specifies that this parameter must be a Timestamp.
3080
+ */
3081
+ export interface TimestampType {}
3082
+ export interface TransformsJobSpecShape {
3083
+ about: LocalizedTitleAndDescription;
3084
+ }
3085
+ /**
3086
+ * If included in a Cipher License, the user has the ability to encrypt or decrypt (depending on the RequestType)
3087
+ * in Transforms as an input parameter. This effectively grants access to the keys.
3088
+ */
3089
+ export interface TransformsRequestPermit {
3090
+ requestType: RequestType;
3091
+ }
3092
+ export interface TsVideoContainerFormat {}
3093
+ export interface TxtFormat {}
3094
+ /**
3095
+ * This is a placeholder type for when we don't care about the specific type of a parameter, simply representing
3096
+ * the presence of an argument. We use this as a minimal way to express compatibility between input and
3097
+ * output function shapes, mostly to allow for more complex types to be used in the future without breaking
3098
+ * existing stored shapes.
3099
+ */
3100
+ export interface UnspecifiedParameterType {}
3101
+ /**
3102
+ * A string representing a value type's api name. Used as a stable, cross-stack identifier for service managed value types.
3103
+ */
3104
+ export type ValueTypeApiName = string;
3105
+ export type ValueTypeReference = BlockInternalId;
3106
+ export interface ValueTypeShape {
3107
+ about: LocalizedTitleAndDescription;
3108
+ baseType: BaseType;
3109
+ serviceTypeIdentifier?: ServiceManagedValueTypeIdentifier | null | undefined;
3110
+ }
3111
+ /**
3112
+ * A string representing a value type's version. Enforced to be a semantic version.
3113
+ */
3114
+ export type ValueTypeVersion = string;
3115
+ /**
3116
+ * Marketplace dependencies for a vector property
3117
+ */
3118
+ export interface VectorPropertyType {
3119
+ dimension?: number | null | undefined;
3120
+ supportsSearchWith: Array<VectorSimilarityFunction>;
3121
+ }
3122
+ export type VectorSimilarityFunction = "COSINE_SIMILARITY" | "DOT_PRODUCT" | "EUCLIDEAN_DISTANCE";
3123
+ export interface VectorWorkbookShape {
3124
+ about: LocalizedTitleAndDescription;
3125
+ }
3126
+ /**
3127
+ * Vertex Template that can be used to generate Graphs.
3128
+ */
3129
+ export interface VertexTemplateShape {
3130
+ about: LocalizedTitleAndDescription;
3131
+ }
3132
+ export interface VideoDecodeFormat_mp4 {
3133
+ type: "mp4";
3134
+ mp4: Mp4VideoContainerFormat;
3135
+ }
3136
+ export interface VideoDecodeFormat_ts {
3137
+ type: "ts";
3138
+ ts: TsVideoContainerFormat;
3139
+ }
3140
+ export interface VideoDecodeFormat_mov {
3141
+ type: "mov";
3142
+ mov: MovVideoContainerFormat;
3143
+ }
3144
+ export interface VideoDecodeFormat_mkv {
3145
+ type: "mkv";
3146
+ mkv: MkvVideoContainerFormat;
3147
+ }
3148
+ export type VideoDecodeFormat = VideoDecodeFormat_mp4 | VideoDecodeFormat_ts | VideoDecodeFormat_mov | VideoDecodeFormat_mkv;
3149
+ export interface VideoSchema {
3150
+ format: VideoDecodeFormat;
3151
+ }
3152
+ export interface VirtualTableLocator {
3153
+ branch: string;
3154
+ rid: string;
3155
+ }
3156
+ export interface Void {}
3157
+ export interface VorbisFormat {}
3158
+ /**
3159
+ * Vortex Map Template that can be used to generate Maps.
3160
+ */
3161
+ export interface VortexTemplateShape {
3162
+ about: LocalizedTitleAndDescription;
3163
+ }
3164
+ export interface WalkthroughShape {
3165
+ about: LocalizedTitleAndDescription;
3166
+ }
3167
+ export interface WavFormat {}
3168
+ export interface WebhookShape {
3169
+ about: LocalizedTitleAndDescription;
3170
+ }
3171
+ export interface WebmAudioContainerFormat_singleStream {
3172
+ type: "singleStream";
3173
+ singleStream: SingleStreamWebmAudioContainerFormat;
3174
+ }
3175
+ export type WebmAudioContainerFormat = WebmAudioContainerFormat_singleStream;
3176
+ export interface WebpFormat {}
3177
+ export type WidgetReference = BlockInternalId;
3178
+ export type WidgetSetReference = BlockInternalId;
3179
+ export interface WidgetSetShape {
3180
+ about: LocalizedTitleAndDescription;
3181
+ widgets: Array<WidgetReference>;
3182
+ }
3183
+ export interface WidgetShape {
3184
+ about: LocalizedTitleAndDescription;
3185
+ widgetSet: WidgetSetReference;
3186
+ }
3187
+ /**
3188
+ * Workflow Graph shape that can be used to generate Workflow Graphs. Never consumed by any downstream blocks.
3189
+ */
3190
+ export interface WorkflowGraphShape {
3191
+ about: LocalizedTitleAndDescription;
3192
+ }
3193
+ export interface WorkshopApplicationInputShape {
3194
+ about: LocalizedTitleAndDescription;
3195
+ }
3196
+ export interface WorkshopApplicationOutputShape {
3197
+ about: LocalizedTitleAndDescription;
3198
+ }
3199
+ /**
3200
+ * An Input Shape use to provide a Workshop's Saved States SaveLocation
3201
+ */
3202
+ export interface WorkshopApplicationSaveLocationInputShape {
3203
+ about: LocalizedTitleAndDescription;
3204
+ id: StableShapeIdentifier;
3205
+ }
3206
+ export interface XlsxFormat {}
3207
+ export {};