@osdk/foundry 2.63.0 → 2.65.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +70 -0
- package/dist/foundry-public.d.ts +866 -64
- package/dist/foundry.esm.js +1 -1
- package/package.json +28 -28
package/dist/foundry-public.d.ts
CHANGED
|
@@ -278,6 +278,13 @@ declare interface ActionParameterObjectTypeNotFound {
|
|
|
278
278
|
};
|
|
279
279
|
}
|
|
280
280
|
|
|
281
|
+
/**
|
|
282
|
+
* The unique resource identifier of an action parameter, useful for interacting with other Foundry APIs.
|
|
283
|
+
*
|
|
284
|
+
* Log Safety: SAFE
|
|
285
|
+
*/
|
|
286
|
+
declare type ActionParameterRid = LooselyBrandedString_5<"ActionParameterRid">;
|
|
287
|
+
|
|
281
288
|
/**
|
|
282
289
|
* A union of all the types supported by Ontology Action parameters.
|
|
283
290
|
*
|
|
@@ -361,6 +368,13 @@ export declare namespace Actions {
|
|
|
361
368
|
}
|
|
362
369
|
}
|
|
363
370
|
|
|
371
|
+
/**
|
|
372
|
+
* The unique resource identifier of an action section, useful for interacting with other Foundry APIs.
|
|
373
|
+
*
|
|
374
|
+
* Log Safety: SAFE
|
|
375
|
+
*/
|
|
376
|
+
declare type ActionSectionRid = LooselyBrandedString_5<"ActionSectionRid">;
|
|
377
|
+
|
|
364
378
|
/**
|
|
365
379
|
* Represents an action type in the Ontology.
|
|
366
380
|
*
|
|
@@ -384,6 +398,33 @@ declare interface ActionType {
|
|
|
384
398
|
*/
|
|
385
399
|
declare type ActionTypeApiName = LooselyBrandedString_5<"ActionTypeApiName">;
|
|
386
400
|
|
|
401
|
+
/**
|
|
402
|
+
* Returns action types with an api name matching the given string predicate.
|
|
403
|
+
*
|
|
404
|
+
* Log Safety: UNSAFE
|
|
405
|
+
*/
|
|
406
|
+
declare interface ActionTypeApiNameActionTypesQueryV2 {
|
|
407
|
+
value: FullTextStringPredicateV2;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
/**
|
|
411
|
+
* Returns action types with a description matching the given string predicate.
|
|
412
|
+
*
|
|
413
|
+
* Log Safety: UNSAFE
|
|
414
|
+
*/
|
|
415
|
+
declare interface ActionTypeDescriptionActionTypesQueryV2 {
|
|
416
|
+
value: FullTextStringPredicateV2;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
/**
|
|
420
|
+
* Returns action types with a display name matching the given string predicate.
|
|
421
|
+
*
|
|
422
|
+
* Log Safety: UNSAFE
|
|
423
|
+
*/
|
|
424
|
+
declare interface ActionTypeDisplayNameActionTypesQueryV2 {
|
|
425
|
+
value: FullTextStringPredicateV2;
|
|
426
|
+
}
|
|
427
|
+
|
|
387
428
|
/**
|
|
388
429
|
* Returns the full metadata for an Action type in the Ontology.
|
|
389
430
|
*
|
|
@@ -394,6 +435,25 @@ declare interface ActionTypeFullMetadata {
|
|
|
394
435
|
fullLogicRules: Array<ActionLogicRule>;
|
|
395
436
|
}
|
|
396
437
|
|
|
438
|
+
/**
|
|
439
|
+
* Fuzziness setting applied to contains full-text string predicates in the search query. If not provided,
|
|
440
|
+
auto is used.
|
|
441
|
+
*
|
|
442
|
+
* Log Safety: UNSAFE
|
|
443
|
+
*/
|
|
444
|
+
declare type ActionTypeFuzziness = ({
|
|
445
|
+
type: "auto";
|
|
446
|
+
} & FuzzinessAuto) | ({
|
|
447
|
+
type: "off";
|
|
448
|
+
} & FuzzinessOff);
|
|
449
|
+
|
|
450
|
+
/**
|
|
451
|
+
* Filter action types by the type of logic rule they contain.
|
|
452
|
+
*
|
|
453
|
+
* Log Safety: SAFE
|
|
454
|
+
*/
|
|
455
|
+
declare type ActionTypeLogicRuleTypeFilter = "ADD_OBJECT" | "MODIFY_OBJECT" | "DELETE_OBJECT" | "ADD_LINK" | "DELETE_LINK" | "FUNCTION" | "BATCHED_FUNCTION" | "ADD_OR_MODIFY_OBJECT" | "ADD_OR_MODIFY_OBJECT_V2";
|
|
456
|
+
|
|
397
457
|
/**
|
|
398
458
|
* The action type is not found, or the user does not have access to it.
|
|
399
459
|
*
|
|
@@ -410,6 +470,13 @@ declare interface ActionTypeNotFound {
|
|
|
410
470
|
};
|
|
411
471
|
}
|
|
412
472
|
|
|
473
|
+
/**
|
|
474
|
+
* Filter action types by permission model.
|
|
475
|
+
*
|
|
476
|
+
* Log Safety: SAFE
|
|
477
|
+
*/
|
|
478
|
+
declare type ActionTypePermissionModelFilter = "DATASOURCE_DERIVED_PERMISSIONS" | "ONTOLOGY_ROLES" | "COMPASS_PROJECT";
|
|
479
|
+
|
|
413
480
|
/**
|
|
414
481
|
* The unique resource identifier of an action type, useful for interacting with other Foundry APIs.
|
|
415
482
|
*
|
|
@@ -417,12 +484,88 @@ declare interface ActionTypeNotFound {
|
|
|
417
484
|
*/
|
|
418
485
|
declare type ActionTypeRid = LooselyBrandedString_5<"ActionTypeRid">;
|
|
419
486
|
|
|
487
|
+
/**
|
|
488
|
+
* Returns action types with the given rid.
|
|
489
|
+
*
|
|
490
|
+
* Log Safety: SAFE
|
|
491
|
+
*/
|
|
492
|
+
declare interface ActionTypeRidActionTypesQueryV2 {
|
|
493
|
+
value: ActionTypeRid;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
/**
|
|
497
|
+
* Represents the search query for an action type search. Supports filters for various action type features.
|
|
498
|
+
*
|
|
499
|
+
* Log Safety: UNSAFE
|
|
500
|
+
*/
|
|
501
|
+
declare type ActionTypeSearchJsonQueryV2 = ({
|
|
502
|
+
type: "webhookRid";
|
|
503
|
+
} & WebhookRidActionTypesQueryV2) | ({
|
|
504
|
+
type: "hasActionLog";
|
|
505
|
+
} & HasActionLogActionTypesQueryV2) | ({
|
|
506
|
+
type: "actionTypeApiName";
|
|
507
|
+
} & ActionTypeApiNameActionTypesQueryV2) | ({
|
|
508
|
+
type: "or";
|
|
509
|
+
} & OrActionTypesQueryV2) | ({
|
|
510
|
+
type: "permissionModel";
|
|
511
|
+
} & PermissionModelActionTypesQueryV2) | ({
|
|
512
|
+
type: "hasWebhook";
|
|
513
|
+
} & HasWebhookActionTypesQueryV2) | ({
|
|
514
|
+
type: "actionTypeDisplayName";
|
|
515
|
+
} & ActionTypeDisplayNameActionTypesQueryV2) | ({
|
|
516
|
+
type: "affectedLinkTypeRid";
|
|
517
|
+
} & AffectedLinkTypeRidActionTypesQueryV2) | ({
|
|
518
|
+
type: "actionTypeDescription";
|
|
519
|
+
} & ActionTypeDescriptionActionTypesQueryV2) | ({
|
|
520
|
+
type: "sectionRid";
|
|
521
|
+
} & SectionRidActionTypesQueryV2) | ({
|
|
522
|
+
type: "parameterRid";
|
|
523
|
+
} & ParameterRidActionTypesQueryV2) | ({
|
|
524
|
+
type: "parameterName";
|
|
525
|
+
} & ParameterNameActionTypesQueryV2) | ({
|
|
526
|
+
type: "hasNotification";
|
|
527
|
+
} & HasNotificationActionTypesQueryV2) | ({
|
|
528
|
+
type: "functionRid";
|
|
529
|
+
} & FunctionRidActionTypesQueryV2) | ({
|
|
530
|
+
type: "inputObjectTypeRid";
|
|
531
|
+
} & InputObjectTypeRidActionTypesQueryV2) | ({
|
|
532
|
+
type: "revertActionEnabled";
|
|
533
|
+
} & RevertActionEnabledActionTypesQueryV2) | ({
|
|
534
|
+
type: "logicRule";
|
|
535
|
+
} & LogicRuleActionTypesQueryV2) | ({
|
|
536
|
+
type: "typeClasses";
|
|
537
|
+
} & TypeClassesActionTypesQueryV2) | ({
|
|
538
|
+
type: "affectedInterfaceTypeRid";
|
|
539
|
+
} & AffectedInterfaceTypeRidActionTypesQueryV2) | ({
|
|
540
|
+
type: "and";
|
|
541
|
+
} & AndActionTypesQueryV2) | ({
|
|
542
|
+
type: "actionTypeRid";
|
|
543
|
+
} & ActionTypeRidActionTypesQueryV2) | ({
|
|
544
|
+
type: "affectedObjectTypeRid";
|
|
545
|
+
} & AffectedObjectTypeRidActionTypesQueryV2) | ({
|
|
546
|
+
type: "status";
|
|
547
|
+
} & StatusActionTypesQueryV2);
|
|
548
|
+
|
|
420
549
|
export declare namespace ActionTypesFullMetadata {
|
|
421
550
|
export {
|
|
422
551
|
|
|
423
552
|
}
|
|
424
553
|
}
|
|
425
554
|
|
|
555
|
+
/**
|
|
556
|
+
* Specifies the field to sort action types by.
|
|
557
|
+
*
|
|
558
|
+
* Log Safety: SAFE
|
|
559
|
+
*/
|
|
560
|
+
declare type ActionTypeSortByV2 = "actionTypeDisplayName";
|
|
561
|
+
|
|
562
|
+
/**
|
|
563
|
+
* Filter action types by status.
|
|
564
|
+
*
|
|
565
|
+
* Log Safety: SAFE
|
|
566
|
+
*/
|
|
567
|
+
declare type ActionTypeStatusFilter = "EXPERIMENTAL" | "ACTIVE" | "DEPRECATED" | "EXAMPLE";
|
|
568
|
+
|
|
426
569
|
export declare namespace ActionTypesV2 {
|
|
427
570
|
export {
|
|
428
571
|
list_15 as list,
|
|
@@ -481,7 +624,9 @@ declare type ActivityCollaborativeUpdate = ({
|
|
|
481
624
|
type: "activityDeleted";
|
|
482
625
|
} & ActivityDeleted) | ({
|
|
483
626
|
type: "activityCreated";
|
|
484
|
-
} & ActivityCreated)
|
|
627
|
+
} & ActivityCreated) | ({
|
|
628
|
+
type: "error";
|
|
629
|
+
} & ErrorMessage);
|
|
485
630
|
|
|
486
631
|
/**
|
|
487
632
|
* The event that gets published to PACK channels to update a users activity feed as new events
|
|
@@ -1102,6 +1247,8 @@ export declare namespace Admin {
|
|
|
1102
1247
|
OrganizationGuestMember,
|
|
1103
1248
|
OrganizationName,
|
|
1104
1249
|
OrganizationRoleAssignment,
|
|
1250
|
+
ParseClassificationsRequest,
|
|
1251
|
+
ParseClassificationsResponse,
|
|
1105
1252
|
PreregisterGroupRequest,
|
|
1106
1253
|
PreregisterUserRequest,
|
|
1107
1254
|
PrincipalFilterType,
|
|
@@ -1190,6 +1337,7 @@ export declare namespace Admin {
|
|
|
1190
1337
|
OrganizationMarkingAdministerRoleNotSupported,
|
|
1191
1338
|
OrganizationNameAlreadyExists,
|
|
1192
1339
|
OrganizationNotFound,
|
|
1340
|
+
ParseClassificationsPermissionDenied,
|
|
1193
1341
|
PreregisterGroupPermissionDenied,
|
|
1194
1342
|
PreregisterUserPermissionDenied,
|
|
1195
1343
|
PrincipalNotFound,
|
|
@@ -1330,6 +1478,8 @@ declare namespace _Admin {
|
|
|
1330
1478
|
OrganizationGuestMember,
|
|
1331
1479
|
OrganizationName,
|
|
1332
1480
|
OrganizationRoleAssignment,
|
|
1481
|
+
ParseClassificationsRequest,
|
|
1482
|
+
ParseClassificationsResponse,
|
|
1333
1483
|
PreregisterGroupRequest,
|
|
1334
1484
|
PreregisterUserRequest,
|
|
1335
1485
|
PrincipalFilterType,
|
|
@@ -1363,6 +1513,33 @@ declare namespace _Admin {
|
|
|
1363
1513
|
}
|
|
1364
1514
|
}
|
|
1365
1515
|
|
|
1516
|
+
/**
|
|
1517
|
+
* Returns action types which edit the interface type with the given rid.
|
|
1518
|
+
*
|
|
1519
|
+
* Log Safety: SAFE
|
|
1520
|
+
*/
|
|
1521
|
+
declare interface AffectedInterfaceTypeRidActionTypesQueryV2 {
|
|
1522
|
+
value: InterfaceTypeRid;
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
/**
|
|
1526
|
+
* Returns action types which edit the link type with the given rid.
|
|
1527
|
+
*
|
|
1528
|
+
* Log Safety: SAFE
|
|
1529
|
+
*/
|
|
1530
|
+
declare interface AffectedLinkTypeRidActionTypesQueryV2 {
|
|
1531
|
+
value: LinkTypeRid;
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
/**
|
|
1535
|
+
* Returns action types which edit the object type with the given rid.
|
|
1536
|
+
*
|
|
1537
|
+
* Log Safety: SAFE
|
|
1538
|
+
*/
|
|
1539
|
+
declare interface AffectedObjectTypeRidActionTypesQueryV2 {
|
|
1540
|
+
value: ObjectTypeRid_2;
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1366
1543
|
/**
|
|
1367
1544
|
* Log Safety: SAFE
|
|
1368
1545
|
*/
|
|
@@ -1562,6 +1739,7 @@ $queryParams?: {
|
|
|
1562
1739
|
branch?: _Core.FoundryBranch | undefined;
|
|
1563
1740
|
transactionId?: _Ontologies_2.OntologyTransactionId | undefined;
|
|
1564
1741
|
scenarioRid?: _Ontologies_2.OntologyScenarioRid | undefined;
|
|
1742
|
+
executeInMemoryOnly?: boolean | undefined;
|
|
1565
1743
|
},
|
|
1566
1744
|
$headerParams?: {
|
|
1567
1745
|
traceParent?: _Core.TraceParent | undefined;
|
|
@@ -1597,7 +1775,6 @@ declare interface AggregateObjectSetRequestV2 {
|
|
|
1597
1775
|
groupBy: Array<AggregationGroupByV2>;
|
|
1598
1776
|
accuracy?: AggregationAccuracyRequest;
|
|
1599
1777
|
includeComputeUsage?: _Core.IncludeComputeUsage;
|
|
1600
|
-
executeInMemoryOnly?: boolean;
|
|
1601
1778
|
}
|
|
1602
1779
|
|
|
1603
1780
|
/**
|
|
@@ -2230,6 +2407,15 @@ declare interface AllTermsQuery {
|
|
|
2230
2407
|
fuzzy?: Fuzzy;
|
|
2231
2408
|
}
|
|
2232
2409
|
|
|
2410
|
+
/**
|
|
2411
|
+
* Returns action types where every query is satisfied. An empty list matches all action types.
|
|
2412
|
+
*
|
|
2413
|
+
* Log Safety: UNSAFE
|
|
2414
|
+
*/
|
|
2415
|
+
declare interface AndActionTypesQueryV2 {
|
|
2416
|
+
value: Array<ActionTypeSearchJsonQueryV2>;
|
|
2417
|
+
}
|
|
2418
|
+
|
|
2233
2419
|
/**
|
|
2234
2420
|
* Returns objects where every query is satisfied.
|
|
2235
2421
|
*
|
|
@@ -8959,7 +9145,7 @@ declare interface CreateModelFunctionPermissionDenied {
|
|
|
8959
9145
|
errorDescription: "Could not create the ModelFunction.";
|
|
8960
9146
|
errorInstanceId: string;
|
|
8961
9147
|
parameters: {
|
|
8962
|
-
|
|
9148
|
+
modelRid: unknown;
|
|
8963
9149
|
};
|
|
8964
9150
|
}
|
|
8965
9151
|
|
|
@@ -9955,6 +10141,7 @@ declare interface CustomPresenceEvent {
|
|
|
9955
10141
|
clientId: ClientId;
|
|
9956
10142
|
eventData: any;
|
|
9957
10143
|
eventType: string;
|
|
10144
|
+
schemaVersion?: SchemaVersion;
|
|
9958
10145
|
isEphemeral?: boolean;
|
|
9959
10146
|
}
|
|
9960
10147
|
|
|
@@ -10371,7 +10558,7 @@ declare interface DatasetFieldSchema {
|
|
|
10371
10558
|
* Log Safety: UNSAFE
|
|
10372
10559
|
*/
|
|
10373
10560
|
declare interface DatasetInput {
|
|
10374
|
-
rid:
|
|
10561
|
+
rid: _Core.DatasetRid;
|
|
10375
10562
|
columnMapping: Record<ColumnTypeSpecId, Array<_Core.ColumnName>>;
|
|
10376
10563
|
ignoreColumns: Array<_Core.ColumnName>;
|
|
10377
10564
|
selectColumns: Array<_Core.ColumnName>;
|
|
@@ -10441,6 +10628,13 @@ declare type DatasetRid_2 = LooselyBrandedString_11<"DatasetRid">;
|
|
|
10441
10628
|
*/
|
|
10442
10629
|
declare type DatasetRid_3 = LooselyBrandedString_12<"DatasetRid">;
|
|
10443
10630
|
|
|
10631
|
+
/**
|
|
10632
|
+
* The Resource Identifier (RID) of a Dataset.
|
|
10633
|
+
*
|
|
10634
|
+
* Log Safety: SAFE
|
|
10635
|
+
*/
|
|
10636
|
+
declare type DatasetRid_4 = LooselyBrandedString_15<"DatasetRid">;
|
|
10637
|
+
|
|
10444
10638
|
export declare namespace Datasets {
|
|
10445
10639
|
export {
|
|
10446
10640
|
AddBackingDatasetsRequest,
|
|
@@ -10781,7 +10975,7 @@ declare interface DatasetSchema {
|
|
|
10781
10975
|
* Log Safety: SAFE
|
|
10782
10976
|
*/
|
|
10783
10977
|
declare interface DatasetSchemaNotFoundError {
|
|
10784
|
-
datasetRid:
|
|
10978
|
+
datasetRid: _Core.DatasetRid;
|
|
10785
10979
|
}
|
|
10786
10980
|
|
|
10787
10981
|
/**
|
|
@@ -11971,6 +12165,7 @@ declare interface Document_3 {
|
|
|
11971
12165
|
updatedBy: _Core.UpdatedBy;
|
|
11972
12166
|
updatedTime: _Core.UpdatedTime;
|
|
11973
12167
|
operations: Array<DocumentOperation>;
|
|
12168
|
+
operationalVersion?: SchemaVersion;
|
|
11974
12169
|
}
|
|
11975
12170
|
|
|
11976
12171
|
/**
|
|
@@ -11981,8 +12176,7 @@ declare interface Document_3 {
|
|
|
11981
12176
|
*/
|
|
11982
12177
|
declare interface DocumentActivitySubscriptionRequest {
|
|
11983
12178
|
clientId: ClientId;
|
|
11984
|
-
|
|
11985
|
-
clientSupportedVersionRange?: ClientSupportedVersionRange;
|
|
12179
|
+
clientSupportedVersionRange: ClientSupportedVersionRange;
|
|
11986
12180
|
}
|
|
11987
12181
|
|
|
11988
12182
|
/**
|
|
@@ -12004,6 +12198,7 @@ declare interface DocumentCustomEventData {
|
|
|
12004
12198
|
eventType: string;
|
|
12005
12199
|
data: any;
|
|
12006
12200
|
version: number;
|
|
12201
|
+
schemaVersion?: number;
|
|
12007
12202
|
}
|
|
12008
12203
|
|
|
12009
12204
|
/**
|
|
@@ -12193,8 +12388,7 @@ declare interface DocumentPresenceChangeEvent {
|
|
|
12193
12388
|
*/
|
|
12194
12389
|
declare interface DocumentPresenceSubscriptionRequest {
|
|
12195
12390
|
clientId: ClientId;
|
|
12196
|
-
|
|
12197
|
-
clientSupportedVersionRange?: ClientSupportedVersionRange;
|
|
12391
|
+
clientSupportedVersionRange: ClientSupportedVersionRange;
|
|
12198
12392
|
}
|
|
12199
12393
|
|
|
12200
12394
|
/**
|
|
@@ -12206,8 +12400,7 @@ declare interface DocumentPublishMessage {
|
|
|
12206
12400
|
yjsUpdate: YjsUpdate;
|
|
12207
12401
|
editId: EditId;
|
|
12208
12402
|
clientId: ClientId;
|
|
12209
|
-
|
|
12210
|
-
clientSupportedVersionRange?: ClientSupportedVersionRange;
|
|
12403
|
+
clientSupportedVersionRange: ClientSupportedVersionRange;
|
|
12211
12404
|
documentUpdateSchemaVersion?: SchemaVersion;
|
|
12212
12405
|
description?: DocumentEditDescription;
|
|
12213
12406
|
}
|
|
@@ -12296,6 +12489,15 @@ declare interface DocumentSort {
|
|
|
12296
12489
|
*/
|
|
12297
12490
|
declare type DocumentSortField = "NAME" | "CREATED_TIME" | "LAST_MODIFIED_TIME" | "LAST_VIEW_TIME";
|
|
12298
12491
|
|
|
12492
|
+
/**
|
|
12493
|
+
* The storage backend for a document type's schema.
|
|
12494
|
+
*
|
|
12495
|
+
* Log Safety: UNSAFE
|
|
12496
|
+
*/
|
|
12497
|
+
declare type DocumentStorageType = {
|
|
12498
|
+
type: "yjs";
|
|
12499
|
+
} & YjsSchema;
|
|
12500
|
+
|
|
12299
12501
|
/**
|
|
12300
12502
|
* The operation to perform for document to document conversion.
|
|
12301
12503
|
*
|
|
@@ -12403,6 +12605,19 @@ declare interface DocumentTypeAlreadyExists {
|
|
|
12403
12605
|
};
|
|
12404
12606
|
}
|
|
12405
12607
|
|
|
12608
|
+
/**
|
|
12609
|
+
* First-party document type definition loaded from a published asset. Used by products that ship
|
|
12610
|
+
document-type schemas as part of their deployment.
|
|
12611
|
+
*
|
|
12612
|
+
* Log Safety: UNSAFE
|
|
12613
|
+
*/
|
|
12614
|
+
declare interface DocumentTypeAsset {
|
|
12615
|
+
documentTypeName: DocumentTypeName;
|
|
12616
|
+
documentStorageType: DocumentStorageType;
|
|
12617
|
+
fileSystemType: FileSystemType;
|
|
12618
|
+
schemaVersion: SchemaVersion;
|
|
12619
|
+
}
|
|
12620
|
+
|
|
12406
12621
|
/**
|
|
12407
12622
|
* The configured name for a DocumentType. This is unique within an ontology but not
|
|
12408
12623
|
globally unique.
|
|
@@ -12472,8 +12687,8 @@ declare interface DocumentTypeSchema {
|
|
|
12472
12687
|
declare interface DocumentUpdate {
|
|
12473
12688
|
update?: YjsUpdate;
|
|
12474
12689
|
clientId: ClientId;
|
|
12475
|
-
|
|
12476
|
-
|
|
12690
|
+
clientSupportedVersionRange: ClientSupportedVersionRange;
|
|
12691
|
+
updateSchemaVersion?: SchemaVersion;
|
|
12477
12692
|
revisionId: RevisionId;
|
|
12478
12693
|
baseRevisionId: RevisionId;
|
|
12479
12694
|
editIds: Array<EditId>;
|
|
@@ -12500,8 +12715,7 @@ declare type DocumentUpdateMessage = ({
|
|
|
12500
12715
|
*/
|
|
12501
12716
|
declare interface DocumentUpdateSubscriptionRequest {
|
|
12502
12717
|
clientId: ClientId;
|
|
12503
|
-
|
|
12504
|
-
clientSupportedVersionRange?: ClientSupportedVersionRange;
|
|
12718
|
+
clientSupportedVersionRange: ClientSupportedVersionRange;
|
|
12505
12719
|
lastRevisionId?: RevisionId;
|
|
12506
12720
|
}
|
|
12507
12721
|
|
|
@@ -13174,7 +13388,7 @@ declare interface Error_2 {
|
|
|
13174
13388
|
/**
|
|
13175
13389
|
* Log Safety: SAFE
|
|
13176
13390
|
*/
|
|
13177
|
-
declare type ErrorCode = "INTERNAL_ERROR" | "REVISION_TOO_OLD" | "CLIENT_VERSION_TOO_LOW";
|
|
13391
|
+
declare type ErrorCode = "INTERNAL_ERROR" | "REVISION_TOO_OLD" | "CLIENT_VERSION_TOO_LOW" | "DOCUMENT_TYPE_OPERATIONAL_VERSION_BUMPED";
|
|
13178
13392
|
|
|
13179
13393
|
/**
|
|
13180
13394
|
* Indicates the server was not able to load the securities of the property.
|
|
@@ -13271,6 +13485,7 @@ declare interface ExamplePropertyTypeStatus {
|
|
|
13271
13485
|
|
|
13272
13486
|
/**
|
|
13273
13487
|
* Executes a Query using the given parameters. By default, the latest version of the Query is executed.
|
|
13488
|
+
* The latest version is the one that was most recently published, which may be a pre-release version.
|
|
13274
13489
|
*
|
|
13275
13490
|
* Optional parameters do not need to be supplied.
|
|
13276
13491
|
*
|
|
@@ -13567,7 +13782,7 @@ declare interface Experiment {
|
|
|
13567
13782
|
source: ExperimentSource;
|
|
13568
13783
|
status: ExperimentStatus;
|
|
13569
13784
|
statusMessage?: string;
|
|
13570
|
-
branch:
|
|
13785
|
+
branch: _Core.BranchName;
|
|
13571
13786
|
parameters: Array<Parameter_4>;
|
|
13572
13787
|
series: Array<SeriesAggregations>;
|
|
13573
13788
|
summaryMetrics: Array<SummaryMetric>;
|
|
@@ -13646,11 +13861,6 @@ declare interface ExperimentAuthoringSource {
|
|
|
13646
13861
|
stemmaRid: string;
|
|
13647
13862
|
}
|
|
13648
13863
|
|
|
13649
|
-
/**
|
|
13650
|
-
* Log Safety: UNSAFE
|
|
13651
|
-
*/
|
|
13652
|
-
declare type ExperimentBranch = LooselyBrandedString_15<"ExperimentBranch">;
|
|
13653
|
-
|
|
13654
13864
|
/**
|
|
13655
13865
|
* Experiment created from a code workspace.
|
|
13656
13866
|
*
|
|
@@ -14307,7 +14517,7 @@ declare type FieldTypeUnion = ({
|
|
|
14307
14517
|
* Log Safety: UNSAFE
|
|
14308
14518
|
*/
|
|
14309
14519
|
declare interface FieldValidationError {
|
|
14310
|
-
datasetRid:
|
|
14520
|
+
datasetRid: _Core.DatasetRid;
|
|
14311
14521
|
fieldName?: string;
|
|
14312
14522
|
fieldType: string;
|
|
14313
14523
|
}
|
|
@@ -15795,17 +16005,47 @@ declare interface FullRowChangeDataCaptureConfiguration {
|
|
|
15795
16005
|
}
|
|
15796
16006
|
|
|
15797
16007
|
/**
|
|
15798
|
-
*
|
|
16008
|
+
* Matches strings which contain the given string or parts of the given string. The exact behaviour can vary
|
|
16009
|
+
depending on the attribute searched for due to optimized text analysis.
|
|
16010
|
+
*
|
|
16011
|
+
* Log Safety: UNSAFE
|
|
16012
|
+
*/
|
|
16013
|
+
declare interface FullTextStringContainsPredicate {
|
|
16014
|
+
value: string;
|
|
16015
|
+
}
|
|
16016
|
+
|
|
16017
|
+
/**
|
|
16018
|
+
* Matches strings representing the same sequence of characters as the given string.
|
|
16019
|
+
*
|
|
16020
|
+
* Log Safety: UNSAFE
|
|
16021
|
+
*/
|
|
16022
|
+
declare interface FullTextStringExactPredicate {
|
|
16023
|
+
value: string;
|
|
16024
|
+
}
|
|
16025
|
+
|
|
16026
|
+
/**
|
|
16027
|
+
* A predicate for matching strings.
|
|
16028
|
+
*
|
|
16029
|
+
* Log Safety: UNSAFE
|
|
16030
|
+
*/
|
|
16031
|
+
declare type FullTextStringPredicateV2 = ({
|
|
16032
|
+
type: "contains";
|
|
16033
|
+
} & FullTextStringContainsPredicate) | ({
|
|
16034
|
+
type: "exact";
|
|
16035
|
+
} & FullTextStringExactPredicate);
|
|
16036
|
+
|
|
16037
|
+
/**
|
|
16038
|
+
* A function already exists for this model.
|
|
15799
16039
|
*
|
|
15800
16040
|
* Log Safety: SAFE
|
|
15801
16041
|
*/
|
|
15802
16042
|
declare interface FunctionAlreadyExists {
|
|
15803
16043
|
errorCode: "CONFLICT";
|
|
15804
16044
|
errorName: "FunctionAlreadyExists";
|
|
15805
|
-
errorDescription: "A function already exists for this
|
|
16045
|
+
errorDescription: "A function already exists for this model.";
|
|
15806
16046
|
errorInstanceId: string;
|
|
15807
16047
|
parameters: {
|
|
15808
|
-
|
|
16048
|
+
modelRid: unknown;
|
|
15809
16049
|
};
|
|
15810
16050
|
}
|
|
15811
16051
|
|
|
@@ -15995,6 +16235,15 @@ declare type FunctionRid = LooselyBrandedString_5<"FunctionRid">;
|
|
|
15995
16235
|
*/
|
|
15996
16236
|
declare type FunctionRid_2 = LooselyBrandedString_6<"FunctionRid">;
|
|
15997
16237
|
|
|
16238
|
+
/**
|
|
16239
|
+
* Returns action types which use the function with the given rid.
|
|
16240
|
+
*
|
|
16241
|
+
* Log Safety: SAFE
|
|
16242
|
+
*/
|
|
16243
|
+
declare interface FunctionRidActionTypesQueryV2 {
|
|
16244
|
+
value: FunctionRid;
|
|
16245
|
+
}
|
|
16246
|
+
|
|
15998
16247
|
export declare namespace Functions {
|
|
15999
16248
|
export {
|
|
16000
16249
|
ArrayConstraint_2 as ArrayConstraint,
|
|
@@ -16039,6 +16288,7 @@ export declare namespace Functions {
|
|
|
16039
16288
|
RegexConstraint_2 as RegexConstraint,
|
|
16040
16289
|
RidConstraint_2 as RidConstraint,
|
|
16041
16290
|
RunningExecution,
|
|
16291
|
+
StreamingExecuteEventsQueryRequest,
|
|
16042
16292
|
StreamingExecuteQueryRequest,
|
|
16043
16293
|
StreamingExecuteQueryResponse,
|
|
16044
16294
|
StreamingQueryData,
|
|
@@ -16110,6 +16360,7 @@ export declare namespace Functions {
|
|
|
16110
16360
|
QueryRuntimeError_2 as QueryRuntimeError,
|
|
16111
16361
|
QueryTimeExceededLimit_2 as QueryTimeExceededLimit,
|
|
16112
16362
|
QueryVersionNotFound_2 as QueryVersionNotFound,
|
|
16363
|
+
StreamingExecuteEventsQueryPermissionDenied,
|
|
16113
16364
|
StreamingExecuteQueryPermissionDenied,
|
|
16114
16365
|
UnknownParameter_2 as UnknownParameter,
|
|
16115
16366
|
ValueTypeNotFound_2 as ValueTypeNotFound,
|
|
@@ -16165,6 +16416,7 @@ declare namespace _Functions {
|
|
|
16165
16416
|
RegexConstraint_2 as RegexConstraint,
|
|
16166
16417
|
RidConstraint_2 as RidConstraint,
|
|
16167
16418
|
RunningExecution,
|
|
16419
|
+
StreamingExecuteEventsQueryRequest,
|
|
16168
16420
|
StreamingExecuteQueryRequest,
|
|
16169
16421
|
StreamingExecuteQueryResponse,
|
|
16170
16422
|
StreamingQueryData,
|
|
@@ -16236,6 +16488,7 @@ declare namespace _Functions {
|
|
|
16236
16488
|
QueryRuntimeError_2 as QueryRuntimeError,
|
|
16237
16489
|
QueryTimeExceededLimit_2 as QueryTimeExceededLimit,
|
|
16238
16490
|
QueryVersionNotFound_2 as QueryVersionNotFound,
|
|
16491
|
+
StreamingExecuteEventsQueryPermissionDenied,
|
|
16239
16492
|
StreamingExecuteQueryPermissionDenied,
|
|
16240
16493
|
UnknownParameter_2 as UnknownParameter,
|
|
16241
16494
|
ValueTypeNotFound_2 as ValueTypeNotFound,
|
|
@@ -16292,6 +16545,7 @@ declare namespace _Functions_2 {
|
|
|
16292
16545
|
RegexConstraint_2 as RegexConstraint,
|
|
16293
16546
|
RidConstraint_2 as RidConstraint,
|
|
16294
16547
|
RunningExecution,
|
|
16548
|
+
StreamingExecuteEventsQueryRequest,
|
|
16295
16549
|
StreamingExecuteQueryRequest,
|
|
16296
16550
|
StreamingExecuteQueryResponse,
|
|
16297
16551
|
StreamingQueryData,
|
|
@@ -16355,6 +16609,24 @@ declare type FunctionVersion = LooselyBrandedString_5<"FunctionVersion">;
|
|
|
16355
16609
|
*/
|
|
16356
16610
|
declare type FunctionVersion_2 = LooselyBrandedString_6<"FunctionVersion">;
|
|
16357
16611
|
|
|
16612
|
+
/**
|
|
16613
|
+
* Fuzzy search is activated, which can help discover additional results based on small differences in
|
|
16614
|
+
spelling, although some additional results may be less relevant.
|
|
16615
|
+
*
|
|
16616
|
+
* Log Safety: SAFE
|
|
16617
|
+
*/
|
|
16618
|
+
declare interface FuzzinessAuto {
|
|
16619
|
+
}
|
|
16620
|
+
|
|
16621
|
+
/**
|
|
16622
|
+
* Fuzzy search is turned off. Matches generated by modifying one or more characters of the search query are
|
|
16623
|
+
not returned.
|
|
16624
|
+
*
|
|
16625
|
+
* Log Safety: SAFE
|
|
16626
|
+
*/
|
|
16627
|
+
declare interface FuzzinessOff {
|
|
16628
|
+
}
|
|
16629
|
+
|
|
16358
16630
|
/**
|
|
16359
16631
|
* Setting fuzzy to true allows approximate matching in search queries that support it.
|
|
16360
16632
|
*
|
|
@@ -17344,6 +17616,7 @@ property: _Ontologies_2.PropertyApiName,
|
|
|
17344
17616
|
$queryParams?: {
|
|
17345
17617
|
sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
|
|
17346
17618
|
sdkVersion?: _Ontologies_2.SdkVersion | undefined;
|
|
17619
|
+
branch?: _Core.FoundryBranch | undefined;
|
|
17347
17620
|
}
|
|
17348
17621
|
]): Promise<_Ontologies_2.AttachmentMetadataResponse>;
|
|
17349
17622
|
|
|
@@ -17364,6 +17637,7 @@ attachmentRid: _Ontologies_2.AttachmentRid,
|
|
|
17364
17637
|
$queryParams?: {
|
|
17365
17638
|
sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
|
|
17366
17639
|
sdkVersion?: _Ontologies_2.SdkVersion | undefined;
|
|
17640
|
+
branch?: _Core.FoundryBranch | undefined;
|
|
17367
17641
|
}
|
|
17368
17642
|
]): Promise<_Ontologies_2.AttachmentV2>;
|
|
17369
17643
|
|
|
@@ -17559,6 +17833,8 @@ $queryParams?: {
|
|
|
17559
17833
|
|
|
17560
17834
|
/* Excluded from this release type: getByRidBatch_3 */
|
|
17561
17835
|
|
|
17836
|
+
/* Excluded from this release type: getByRidBatch_4 */
|
|
17837
|
+
|
|
17562
17838
|
/**
|
|
17563
17839
|
* Could not getByRid the Query.
|
|
17564
17840
|
*
|
|
@@ -18383,6 +18659,28 @@ declare interface GetProfilePictureOfUserPermissionDenied {
|
|
|
18383
18659
|
};
|
|
18384
18660
|
}
|
|
18385
18661
|
|
|
18662
|
+
/**
|
|
18663
|
+
* Log Safety: UNSAFE
|
|
18664
|
+
*/
|
|
18665
|
+
declare interface GetQueryTypeByRidBatchRequest {
|
|
18666
|
+
requests: Array<GetQueryTypeByRidBatchRequestElement>;
|
|
18667
|
+
}
|
|
18668
|
+
|
|
18669
|
+
/**
|
|
18670
|
+
* Log Safety: UNSAFE
|
|
18671
|
+
*/
|
|
18672
|
+
declare interface GetQueryTypeByRidBatchRequestElement {
|
|
18673
|
+
queryTypeRid: FunctionRid;
|
|
18674
|
+
functionVersion?: FunctionVersion;
|
|
18675
|
+
}
|
|
18676
|
+
|
|
18677
|
+
/**
|
|
18678
|
+
* Log Safety: UNSAFE
|
|
18679
|
+
*/
|
|
18680
|
+
declare interface GetQueryTypeByRidBatchResponse {
|
|
18681
|
+
data: Array<QueryTypeV2>;
|
|
18682
|
+
}
|
|
18683
|
+
|
|
18386
18684
|
/**
|
|
18387
18685
|
* Could not ragContext the Session.
|
|
18388
18686
|
*
|
|
@@ -19112,6 +19410,33 @@ declare interface GtQueryV2_2 {
|
|
|
19112
19410
|
value: PropertyValue_2;
|
|
19113
19411
|
}
|
|
19114
19412
|
|
|
19413
|
+
/**
|
|
19414
|
+
* Returns action types based on whether they have an action log.
|
|
19415
|
+
*
|
|
19416
|
+
* Log Safety: SAFE
|
|
19417
|
+
*/
|
|
19418
|
+
declare interface HasActionLogActionTypesQueryV2 {
|
|
19419
|
+
value: boolean;
|
|
19420
|
+
}
|
|
19421
|
+
|
|
19422
|
+
/**
|
|
19423
|
+
* Returns action types based on whether they have a notification.
|
|
19424
|
+
*
|
|
19425
|
+
* Log Safety: SAFE
|
|
19426
|
+
*/
|
|
19427
|
+
declare interface HasNotificationActionTypesQueryV2 {
|
|
19428
|
+
value: boolean;
|
|
19429
|
+
}
|
|
19430
|
+
|
|
19431
|
+
/**
|
|
19432
|
+
* Returns action types based on whether they reference a webhook.
|
|
19433
|
+
*
|
|
19434
|
+
* Log Safety: SAFE
|
|
19435
|
+
*/
|
|
19436
|
+
declare interface HasWebhookActionTypesQueryV2 {
|
|
19437
|
+
value: boolean;
|
|
19438
|
+
}
|
|
19439
|
+
|
|
19115
19440
|
/**
|
|
19116
19441
|
* Log Safety: UNSAFE
|
|
19117
19442
|
*/
|
|
@@ -19538,6 +19863,15 @@ declare type InputContext = ({
|
|
|
19538
19863
|
type: "objectContext";
|
|
19539
19864
|
} & ObjectContext);
|
|
19540
19865
|
|
|
19866
|
+
/**
|
|
19867
|
+
* Returns action types which reference the object type with the given rid as an input or product.
|
|
19868
|
+
*
|
|
19869
|
+
* Log Safety: SAFE
|
|
19870
|
+
*/
|
|
19871
|
+
declare interface InputObjectTypeRidActionTypesQueryV2 {
|
|
19872
|
+
value: ObjectTypeRid_2;
|
|
19873
|
+
}
|
|
19874
|
+
|
|
19541
19875
|
/**
|
|
19542
19876
|
* @deprecated Use `InQuery` in the `foundry.ontologies` package
|
|
19543
19877
|
*
|
|
@@ -23328,6 +23662,8 @@ $queryParams?: {
|
|
|
23328
23662
|
|
|
23329
23663
|
/* Excluded from this release type: list_35 */
|
|
23330
23664
|
|
|
23665
|
+
/* Excluded from this release type: list_36 */
|
|
23666
|
+
|
|
23331
23667
|
/**
|
|
23332
23668
|
* Lists all Versions.
|
|
23333
23669
|
*
|
|
@@ -23338,7 +23674,7 @@ $queryParams?: {
|
|
|
23338
23674
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
23339
23675
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions
|
|
23340
23676
|
*/
|
|
23341
|
-
declare function
|
|
23677
|
+
declare function list_37($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
|
|
23342
23678
|
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid,
|
|
23343
23679
|
$queryParams?: {
|
|
23344
23680
|
pageSize?: _Core.PageSize | undefined;
|
|
@@ -23346,7 +23682,7 @@ $queryParams?: {
|
|
|
23346
23682
|
}
|
|
23347
23683
|
]): Promise<_ThirdPartyApplications.ListVersionsResponse>;
|
|
23348
23684
|
|
|
23349
|
-
/* Excluded from this release type:
|
|
23685
|
+
/* Excluded from this release type: list_38 */
|
|
23350
23686
|
|
|
23351
23687
|
/**
|
|
23352
23688
|
* Lists all members (which can be a User or a Group) of a given Group.
|
|
@@ -23490,7 +23826,6 @@ declare interface ListAttachmentsResponseV2 {
|
|
|
23490
23826
|
*/
|
|
23491
23827
|
declare interface ListAuthenticationProvidersResponse {
|
|
23492
23828
|
data: Array<AuthenticationProvider>;
|
|
23493
|
-
nextPageToken?: _Core.PageToken;
|
|
23494
23829
|
}
|
|
23495
23830
|
|
|
23496
23831
|
/**
|
|
@@ -23594,11 +23929,10 @@ declare interface ListEnrollmentRoleAssignmentsPermissionDenied {
|
|
|
23594
23929
|
}
|
|
23595
23930
|
|
|
23596
23931
|
/**
|
|
23597
|
-
* Log Safety:
|
|
23932
|
+
* Log Safety: SAFE
|
|
23598
23933
|
*/
|
|
23599
23934
|
declare interface ListEnrollmentRoleAssignmentsResponse {
|
|
23600
23935
|
data: Array<EnrollmentRoleAssignment>;
|
|
23601
|
-
nextPageToken?: _Core.PageToken;
|
|
23602
23936
|
}
|
|
23603
23937
|
|
|
23604
23938
|
/**
|
|
@@ -23751,6 +24085,13 @@ declare interface ListLinkedObjectsResponseV2 {
|
|
|
23751
24085
|
nextPageToken?: _Core.PageToken;
|
|
23752
24086
|
}
|
|
23753
24087
|
|
|
24088
|
+
/**
|
|
24089
|
+
* Log Safety: UNSAFE
|
|
24090
|
+
*/
|
|
24091
|
+
declare interface ListLiveDeploymentsResponse {
|
|
24092
|
+
data: Array<LiveDeployment>;
|
|
24093
|
+
}
|
|
24094
|
+
|
|
23754
24095
|
/**
|
|
23755
24096
|
* The provided token does not have permission to list audit log files.
|
|
23756
24097
|
*
|
|
@@ -23863,7 +24204,6 @@ declare interface ListModelStudioRunsResponse {
|
|
|
23863
24204
|
*/
|
|
23864
24205
|
declare interface ListModelStudioTrainersResponse {
|
|
23865
24206
|
data: Array<ModelStudioTrainer>;
|
|
23866
|
-
nextPageToken?: _Core.PageToken;
|
|
23867
24207
|
}
|
|
23868
24208
|
|
|
23869
24209
|
/**
|
|
@@ -23956,11 +24296,10 @@ declare interface ListOrganizationGuestMembersPermissionDenied {
|
|
|
23956
24296
|
}
|
|
23957
24297
|
|
|
23958
24298
|
/**
|
|
23959
|
-
* Log Safety:
|
|
24299
|
+
* Log Safety: SAFE
|
|
23960
24300
|
*/
|
|
23961
24301
|
declare interface ListOrganizationGuestMembersResponse {
|
|
23962
24302
|
data: Array<OrganizationGuestMember>;
|
|
23963
|
-
nextPageToken?: _Core.PageToken;
|
|
23964
24303
|
}
|
|
23965
24304
|
|
|
23966
24305
|
/**
|
|
@@ -23979,11 +24318,10 @@ declare interface ListOrganizationRoleAssignmentsPermissionDenied {
|
|
|
23979
24318
|
}
|
|
23980
24319
|
|
|
23981
24320
|
/**
|
|
23982
|
-
* Log Safety:
|
|
24321
|
+
* Log Safety: SAFE
|
|
23983
24322
|
*/
|
|
23984
24323
|
declare interface ListOrganizationRoleAssignmentsResponse {
|
|
23985
24324
|
data: Array<OrganizationRoleAssignment>;
|
|
23986
|
-
nextPageToken?: _Core.PageToken;
|
|
23987
24325
|
}
|
|
23988
24326
|
|
|
23989
24327
|
/**
|
|
@@ -24224,11 +24562,12 @@ declare interface ListVersionsResponse {
|
|
|
24224
24562
|
}
|
|
24225
24563
|
|
|
24226
24564
|
/**
|
|
24227
|
-
* Log Safety:
|
|
24565
|
+
* Log Safety: UNSAFE
|
|
24228
24566
|
*/
|
|
24229
24567
|
declare interface LiveDeployment {
|
|
24230
24568
|
rid: LiveDeploymentRid;
|
|
24231
24569
|
modelVersion: LiveDeploymentModelVersion;
|
|
24570
|
+
branch?: _Core.BranchName;
|
|
24232
24571
|
runtimeConfiguration: LiveDeploymentRuntimeConfiguration;
|
|
24233
24572
|
status: LiveDeploymentStatus;
|
|
24234
24573
|
}
|
|
@@ -24378,6 +24717,7 @@ $queryParams?: {
|
|
|
24378
24717
|
branch?: _Core.FoundryBranch | undefined;
|
|
24379
24718
|
transactionId?: _Ontologies_2.OntologyTransactionId | undefined;
|
|
24380
24719
|
scenarioRid?: _Ontologies_2.OntologyScenarioRid | undefined;
|
|
24720
|
+
executeInMemoryOnly?: boolean | undefined;
|
|
24381
24721
|
},
|
|
24382
24722
|
$headerParams?: {
|
|
24383
24723
|
traceParent?: _Core.TraceParent | undefined;
|
|
@@ -24468,7 +24808,6 @@ declare interface LoadObjectSetLinksRequestV2 {
|
|
|
24468
24808
|
links: Array<LinkTypeApiName_2>;
|
|
24469
24809
|
pageToken?: _Core.PageToken;
|
|
24470
24810
|
includeComputeUsage?: _Core.IncludeComputeUsage;
|
|
24471
|
-
executeInMemoryOnly?: boolean;
|
|
24472
24811
|
}
|
|
24473
24812
|
|
|
24474
24813
|
/**
|
|
@@ -24496,6 +24835,7 @@ declare interface LoadObjectSetRequestV2 {
|
|
|
24496
24835
|
loadPropertySecurities?: boolean;
|
|
24497
24836
|
snapshot?: boolean;
|
|
24498
24837
|
includeComputeUsage?: _Core.IncludeComputeUsage;
|
|
24838
|
+
referenceSigningOptions?: ReferenceSigningOptions;
|
|
24499
24839
|
}
|
|
24500
24840
|
|
|
24501
24841
|
/**
|
|
@@ -24527,6 +24867,7 @@ declare interface LoadObjectSetV2MultipleObjectTypesRequest {
|
|
|
24527
24867
|
loadPropertySecurities?: boolean;
|
|
24528
24868
|
snapshot?: boolean;
|
|
24529
24869
|
includeComputeUsage?: _Core.IncludeComputeUsage;
|
|
24870
|
+
referenceSigningOptions?: ReferenceSigningOptions;
|
|
24530
24871
|
}
|
|
24531
24872
|
|
|
24532
24873
|
/**
|
|
@@ -24567,7 +24908,7 @@ declare interface LoadObjectSetV2ObjectsOrInterfacesRequest {
|
|
|
24567
24908
|
pageSize?: _Core.PageSize;
|
|
24568
24909
|
excludeRid?: boolean;
|
|
24569
24910
|
snapshot?: boolean;
|
|
24570
|
-
|
|
24911
|
+
referenceSigningOptions?: ReferenceSigningOptions;
|
|
24571
24912
|
}
|
|
24572
24913
|
|
|
24573
24914
|
/**
|
|
@@ -24658,6 +24999,15 @@ declare type LogicRule = ({
|
|
|
24658
24999
|
type: "applyScenario";
|
|
24659
25000
|
} & ApplyScenarioRule);
|
|
24660
25001
|
|
|
25002
|
+
/**
|
|
25003
|
+
* Returns action types which contain a logic rule of the given type.
|
|
25004
|
+
*
|
|
25005
|
+
* Log Safety: SAFE
|
|
25006
|
+
*/
|
|
25007
|
+
declare interface LogicRuleActionTypesQueryV2 {
|
|
25008
|
+
value: ActionTypeLogicRuleTypeFilter;
|
|
25009
|
+
}
|
|
25010
|
+
|
|
24661
25011
|
/**
|
|
24662
25012
|
* Represents an argument for a logic rule operation. An argument can be passed in via the action parameters, as a static value, or as some other value.
|
|
24663
25013
|
*
|
|
@@ -26547,7 +26897,7 @@ declare interface MissingPostBody {
|
|
|
26547
26897
|
* Log Safety: UNSAFE
|
|
26548
26898
|
*/
|
|
26549
26899
|
declare interface MissingRequiredDatasetColumnError {
|
|
26550
|
-
datasetRid:
|
|
26900
|
+
datasetRid: _Core.DatasetRid;
|
|
26551
26901
|
columnTypeSpecId: ColumnTypeSpecId;
|
|
26552
26902
|
columnNames: Array<_Core.ColumnName>;
|
|
26553
26903
|
}
|
|
@@ -26615,7 +26965,7 @@ declare interface MissingVariableValue {
|
|
|
26615
26965
|
* Log Safety: UNSAFE
|
|
26616
26966
|
*/
|
|
26617
26967
|
declare interface MissingWorkerConfigInputDatasetColumnMappingError {
|
|
26618
|
-
datasetRid:
|
|
26968
|
+
datasetRid: _Core.DatasetRid;
|
|
26619
26969
|
columnTypeSpecId: ColumnTypeSpecId;
|
|
26620
26970
|
}
|
|
26621
26971
|
|
|
@@ -26911,7 +27261,7 @@ declare interface ModelFunctionNotFound {
|
|
|
26911
27261
|
errorDescription: "The given ModelFunction could not be found.";
|
|
26912
27262
|
errorInstanceId: string;
|
|
26913
27263
|
parameters: {
|
|
26914
|
-
|
|
27264
|
+
modelRid: unknown;
|
|
26915
27265
|
};
|
|
26916
27266
|
}
|
|
26917
27267
|
|
|
@@ -26947,7 +27297,7 @@ declare interface ModelNotFound {
|
|
|
26947
27297
|
* Log Safety: SAFE
|
|
26948
27298
|
*/
|
|
26949
27299
|
declare interface ModelOutput {
|
|
26950
|
-
modelRid:
|
|
27300
|
+
modelRid: ModelRid;
|
|
26951
27301
|
}
|
|
26952
27302
|
|
|
26953
27303
|
/**
|
|
@@ -26973,6 +27323,7 @@ export declare namespace Models {
|
|
|
26973
27323
|
CreateModelStudioRequest,
|
|
26974
27324
|
CreateModelVersionRequest,
|
|
26975
27325
|
DatasetInput,
|
|
27326
|
+
DatasetRid_4 as DatasetRid,
|
|
26976
27327
|
DatasetSchemaNotFoundError,
|
|
26977
27328
|
DatetimeParameter,
|
|
26978
27329
|
DateType_2 as DateType,
|
|
@@ -26991,7 +27342,6 @@ export declare namespace Models {
|
|
|
26991
27342
|
ExperimentArtifactName,
|
|
26992
27343
|
ExperimentArtifactTable,
|
|
26993
27344
|
ExperimentAuthoringSource,
|
|
26994
|
-
ExperimentBranch,
|
|
26995
27345
|
ExperimentCodeWorkspaceSource,
|
|
26996
27346
|
ExperimentRid,
|
|
26997
27347
|
ExperimentSdkSource,
|
|
@@ -27012,6 +27362,7 @@ export declare namespace Models {
|
|
|
27012
27362
|
InvalidResourceConfigurationError,
|
|
27013
27363
|
InvalidTabularFormatError,
|
|
27014
27364
|
JsonSchemaValidationError,
|
|
27365
|
+
ListLiveDeploymentsResponse,
|
|
27015
27366
|
ListModelStudioConfigVersionsResponse,
|
|
27016
27367
|
ListModelStudioRunsResponse,
|
|
27017
27368
|
ListModelStudioTrainersResponse,
|
|
@@ -27219,6 +27570,7 @@ declare namespace _Models {
|
|
|
27219
27570
|
CreateModelStudioRequest,
|
|
27220
27571
|
CreateModelVersionRequest,
|
|
27221
27572
|
DatasetInput,
|
|
27573
|
+
DatasetRid_4 as DatasetRid,
|
|
27222
27574
|
DatasetSchemaNotFoundError,
|
|
27223
27575
|
DatetimeParameter,
|
|
27224
27576
|
DateType_2 as DateType,
|
|
@@ -27237,7 +27589,6 @@ declare namespace _Models {
|
|
|
27237
27589
|
ExperimentArtifactName,
|
|
27238
27590
|
ExperimentArtifactTable,
|
|
27239
27591
|
ExperimentAuthoringSource,
|
|
27240
|
-
ExperimentBranch,
|
|
27241
27592
|
ExperimentCodeWorkspaceSource,
|
|
27242
27593
|
ExperimentRid,
|
|
27243
27594
|
ExperimentSdkSource,
|
|
@@ -27258,6 +27609,7 @@ declare namespace _Models {
|
|
|
27258
27609
|
InvalidResourceConfigurationError,
|
|
27259
27610
|
InvalidTabularFormatError,
|
|
27260
27611
|
JsonSchemaValidationError,
|
|
27612
|
+
ListLiveDeploymentsResponse,
|
|
27261
27613
|
ListModelStudioConfigVersionsResponse,
|
|
27262
27614
|
ListModelStudioRunsResponse,
|
|
27263
27615
|
ListModelStudioTrainersResponse,
|
|
@@ -27537,9 +27889,9 @@ declare type ModelStudioRunJobRid = LooselyBrandedString_15<"ModelStudioRunJobRi
|
|
|
27537
27889
|
* Log Safety: SAFE
|
|
27538
27890
|
*/
|
|
27539
27891
|
declare interface ModelStudioRunModelOutput {
|
|
27540
|
-
modelRid:
|
|
27541
|
-
modelVersionRid:
|
|
27542
|
-
experimentRid?:
|
|
27892
|
+
modelRid: ModelRid;
|
|
27893
|
+
modelVersionRid: ModelVersionRid;
|
|
27894
|
+
experimentRid?: ExperimentRid;
|
|
27543
27895
|
}
|
|
27544
27896
|
|
|
27545
27897
|
/**
|
|
@@ -27862,7 +28214,7 @@ declare interface MultiLineString {
|
|
|
27862
28214
|
* Log Safety: UNSAFE
|
|
27863
28215
|
*/
|
|
27864
28216
|
declare interface MultipleColumnsNotAllowedForTrainerError {
|
|
27865
|
-
datasetRid:
|
|
28217
|
+
datasetRid: _Core.DatasetRid;
|
|
27866
28218
|
columnTypeSpecId: ColumnTypeSpecId;
|
|
27867
28219
|
}
|
|
27868
28220
|
|
|
@@ -28680,6 +29032,23 @@ declare interface ObjectEditHistoryEntry {
|
|
|
28680
29032
|
edit: EditHistoryEdit;
|
|
28681
29033
|
}
|
|
28682
29034
|
|
|
29035
|
+
/**
|
|
29036
|
+
* An add object edit in the transaction did not include the object's primary key property. The primary key
|
|
29037
|
+
property must be provided when creating an object.
|
|
29038
|
+
*
|
|
29039
|
+
* Log Safety: UNSAFE
|
|
29040
|
+
*/
|
|
29041
|
+
declare interface ObjectEditMissingPrimaryKey {
|
|
29042
|
+
errorCode: "INVALID_ARGUMENT";
|
|
29043
|
+
errorName: "ObjectEditMissingPrimaryKey";
|
|
29044
|
+
errorDescription: "An add object edit in the transaction did not include the object's primary key property. The primary key property must be provided when creating an object.";
|
|
29045
|
+
errorInstanceId: string;
|
|
29046
|
+
parameters: {
|
|
29047
|
+
objectType: unknown;
|
|
29048
|
+
primaryKey: unknown;
|
|
29049
|
+
};
|
|
29050
|
+
}
|
|
29051
|
+
|
|
28683
29052
|
/**
|
|
28684
29053
|
* Log Safety: UNSAFE
|
|
28685
29054
|
*/
|
|
@@ -29717,14 +30086,26 @@ export declare namespace Ontologies {
|
|
|
29717
30086
|
ActionLogicRule,
|
|
29718
30087
|
ActionMode,
|
|
29719
30088
|
ActionParameterArrayType,
|
|
30089
|
+
ActionParameterRid,
|
|
29720
30090
|
ActionParameterType,
|
|
29721
30091
|
ActionParameterV2,
|
|
29722
30092
|
ActionResults,
|
|
29723
30093
|
ActionRid,
|
|
30094
|
+
ActionSectionRid,
|
|
29724
30095
|
ActionType,
|
|
29725
30096
|
ActionTypeApiName,
|
|
30097
|
+
ActionTypeApiNameActionTypesQueryV2,
|
|
30098
|
+
ActionTypeDescriptionActionTypesQueryV2,
|
|
30099
|
+
ActionTypeDisplayNameActionTypesQueryV2,
|
|
29726
30100
|
ActionTypeFullMetadata,
|
|
30101
|
+
ActionTypeFuzziness,
|
|
30102
|
+
ActionTypeLogicRuleTypeFilter,
|
|
30103
|
+
ActionTypePermissionModelFilter,
|
|
29727
30104
|
ActionTypeRid,
|
|
30105
|
+
ActionTypeRidActionTypesQueryV2,
|
|
30106
|
+
ActionTypeSearchJsonQueryV2,
|
|
30107
|
+
ActionTypeSortByV2,
|
|
30108
|
+
ActionTypeStatusFilter,
|
|
29728
30109
|
ActionTypeV2,
|
|
29729
30110
|
ActivePropertyTypeStatus,
|
|
29730
30111
|
AddLink,
|
|
@@ -29732,6 +30113,9 @@ export declare namespace Ontologies {
|
|
|
29732
30113
|
AddObject,
|
|
29733
30114
|
AddObjectEdit,
|
|
29734
30115
|
AddPropertyExpression,
|
|
30116
|
+
AffectedInterfaceTypeRidActionTypesQueryV2,
|
|
30117
|
+
AffectedLinkTypeRidActionTypesQueryV2,
|
|
30118
|
+
AffectedObjectTypeRidActionTypesQueryV2,
|
|
29735
30119
|
Affix,
|
|
29736
30120
|
AggregateObjectSetRequestV2,
|
|
29737
30121
|
AggregateObjectsRequest,
|
|
@@ -29768,6 +30152,7 @@ export declare namespace Ontologies {
|
|
|
29768
30152
|
AggregationV2,
|
|
29769
30153
|
AllOfRule,
|
|
29770
30154
|
AllTermsQuery,
|
|
30155
|
+
AndActionTypesQueryV2,
|
|
29771
30156
|
AndQuery,
|
|
29772
30157
|
AndQueryV2_2 as AndQueryV2,
|
|
29773
30158
|
AnyOfRule,
|
|
@@ -29915,10 +30300,16 @@ export declare namespace Ontologies {
|
|
|
29915
30300
|
FieldNameV1,
|
|
29916
30301
|
FilterValue,
|
|
29917
30302
|
FixedValuesMapKey,
|
|
30303
|
+
FullTextStringContainsPredicate,
|
|
30304
|
+
FullTextStringExactPredicate,
|
|
30305
|
+
FullTextStringPredicateV2,
|
|
29918
30306
|
FunctionLogicRule,
|
|
29919
30307
|
FunctionParameterName,
|
|
29920
30308
|
FunctionRid,
|
|
30309
|
+
FunctionRidActionTypesQueryV2,
|
|
29921
30310
|
FunctionVersion,
|
|
30311
|
+
FuzzinessAuto,
|
|
30312
|
+
FuzzinessOff,
|
|
29922
30313
|
Fuzzy,
|
|
29923
30314
|
FuzzyRule,
|
|
29924
30315
|
FuzzyV2_2 as FuzzyV2,
|
|
@@ -29940,6 +30331,9 @@ export declare namespace Ontologies {
|
|
|
29940
30331
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequest,
|
|
29941
30332
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequestElement,
|
|
29942
30333
|
GetOutgoingLinkTypesByObjectTypeRidBatchResponse,
|
|
30334
|
+
GetQueryTypeByRidBatchRequest,
|
|
30335
|
+
GetQueryTypeByRidBatchRequestElement,
|
|
30336
|
+
GetQueryTypeByRidBatchResponse,
|
|
29943
30337
|
GetSelectedPropertyOperation,
|
|
29944
30338
|
GreatestPropertyExpression,
|
|
29945
30339
|
GroupMemberConstraint,
|
|
@@ -29947,8 +30341,12 @@ export declare namespace Ontologies {
|
|
|
29947
30341
|
GteQueryV2_2 as GteQueryV2,
|
|
29948
30342
|
GtQuery,
|
|
29949
30343
|
GtQueryV2_2 as GtQueryV2,
|
|
30344
|
+
HasActionLogActionTypesQueryV2,
|
|
30345
|
+
HasNotificationActionTypesQueryV2,
|
|
30346
|
+
HasWebhookActionTypesQueryV2,
|
|
29950
30347
|
HumanReadableFormat,
|
|
29951
30348
|
Icon,
|
|
30349
|
+
InputObjectTypeRidActionTypesQueryV2,
|
|
29952
30350
|
InQuery_2 as InQuery,
|
|
29953
30351
|
IntegerValue,
|
|
29954
30352
|
InterfaceDefinedPropertyType,
|
|
@@ -30036,6 +30434,7 @@ export declare namespace Ontologies {
|
|
|
30036
30434
|
LoadObjectSetV2ObjectsOrInterfacesResponse,
|
|
30037
30435
|
LoadOntologyMetadataRequest,
|
|
30038
30436
|
LogicRule,
|
|
30437
|
+
LogicRuleActionTypesQueryV2,
|
|
30039
30438
|
LogicRuleArgument,
|
|
30040
30439
|
LongValue,
|
|
30041
30440
|
LteQuery,
|
|
@@ -30164,6 +30563,7 @@ export declare namespace Ontologies {
|
|
|
30164
30563
|
OntologyV2,
|
|
30165
30564
|
OntologyValueType,
|
|
30166
30565
|
OntologyVersion,
|
|
30566
|
+
OrActionTypesQueryV2,
|
|
30167
30567
|
OrderBy,
|
|
30168
30568
|
OrderByDirection_2 as OrderByDirection,
|
|
30169
30569
|
OrQuery,
|
|
@@ -30173,7 +30573,10 @@ export declare namespace Ontologies {
|
|
|
30173
30573
|
ParameterEvaluationResult,
|
|
30174
30574
|
ParameterId_2 as ParameterId,
|
|
30175
30575
|
ParameterIdArgument,
|
|
30576
|
+
ParameterNameActionTypesQueryV2,
|
|
30176
30577
|
ParameterOption,
|
|
30578
|
+
ParameterRidActionTypesQueryV2,
|
|
30579
|
+
PermissionModelActionTypesQueryV2,
|
|
30177
30580
|
PhraseQuery,
|
|
30178
30581
|
Plaintext,
|
|
30179
30582
|
PolygonValue_2 as PolygonValue,
|
|
@@ -30243,6 +30646,7 @@ export declare namespace Ontologies {
|
|
|
30243
30646
|
RangesConstraint,
|
|
30244
30647
|
Reason,
|
|
30245
30648
|
ReasonType,
|
|
30649
|
+
ReferenceSigningOptions,
|
|
30246
30650
|
ReferenceUpdate,
|
|
30247
30651
|
ReferenceValue,
|
|
30248
30652
|
RefreshObjectSet,
|
|
@@ -30259,11 +30663,15 @@ export declare namespace Ontologies {
|
|
|
30259
30663
|
RequestId,
|
|
30260
30664
|
ResolvedInterfacePropertyType,
|
|
30261
30665
|
ReturnEditsMode,
|
|
30666
|
+
RevertActionEnabledActionTypesQueryV2,
|
|
30262
30667
|
RidConstraint,
|
|
30263
30668
|
RollingAggregateWindowPoints,
|
|
30264
30669
|
SdkPackageName,
|
|
30265
30670
|
SdkPackageRid,
|
|
30266
30671
|
SdkVersion,
|
|
30672
|
+
SearchActionTypesOrderByV2,
|
|
30673
|
+
SearchActionTypesRequestV2,
|
|
30674
|
+
SearchActionTypesResponseV2,
|
|
30267
30675
|
SearchJsonQuery,
|
|
30268
30676
|
SearchJsonQueryV2_2 as SearchJsonQueryV2,
|
|
30269
30677
|
SearchObjectsForInterfaceRequest,
|
|
@@ -30276,6 +30684,7 @@ export declare namespace Ontologies {
|
|
|
30276
30684
|
SearchOrderByV2,
|
|
30277
30685
|
SearchOrdering,
|
|
30278
30686
|
SearchOrderingV2,
|
|
30687
|
+
SectionRidActionTypesQueryV2,
|
|
30279
30688
|
SecuredPropertyValue,
|
|
30280
30689
|
SelectedPropertyApiName,
|
|
30281
30690
|
SelectedPropertyApproximateDistinctAggregation,
|
|
@@ -30297,6 +30706,7 @@ export declare namespace Ontologies {
|
|
|
30297
30706
|
SpatialFilterMode,
|
|
30298
30707
|
StartsWithQuery_2 as StartsWithQuery,
|
|
30299
30708
|
StaticArgument,
|
|
30709
|
+
StatusActionTypesQueryV2,
|
|
30300
30710
|
StreamingOutputFormat,
|
|
30301
30711
|
StreamMessage,
|
|
30302
30712
|
StreamTimeSeriesPointsRequest,
|
|
@@ -30356,6 +30766,8 @@ export declare namespace Ontologies {
|
|
|
30356
30766
|
TransactionEdit,
|
|
30357
30767
|
TwoDimensionalAggregation,
|
|
30358
30768
|
TypeClass,
|
|
30769
|
+
TypeClassesActionTypesQueryV2,
|
|
30770
|
+
TypeClassPredicateV2,
|
|
30359
30771
|
TypeReferenceIdentifier,
|
|
30360
30772
|
UnevaluableConstraint,
|
|
30361
30773
|
UniqueIdentifierArgument,
|
|
@@ -30382,6 +30794,8 @@ export declare namespace Ontologies {
|
|
|
30382
30794
|
ValueTypeStructType,
|
|
30383
30795
|
ValueTypeUnionType,
|
|
30384
30796
|
VersionedQueryTypeApiName,
|
|
30797
|
+
WebhookRid,
|
|
30798
|
+
WebhookRidActionTypesQueryV2,
|
|
30385
30799
|
WildcardQuery,
|
|
30386
30800
|
WithinBoundingBoxPoint_2 as WithinBoundingBoxPoint,
|
|
30387
30801
|
WithinBoundingBoxQuery_2 as WithinBoundingBoxQuery,
|
|
@@ -30483,6 +30897,7 @@ export declare namespace Ontologies {
|
|
|
30483
30897
|
NotCipherFormatted,
|
|
30484
30898
|
ObjectAlreadyExists,
|
|
30485
30899
|
ObjectChanged,
|
|
30900
|
+
ObjectEditMissingPrimaryKey,
|
|
30486
30901
|
ObjectNotFound,
|
|
30487
30902
|
ObjectSetNotFound,
|
|
30488
30903
|
ObjectsExceededLimit,
|
|
@@ -30568,14 +30983,26 @@ declare namespace _Ontologies {
|
|
|
30568
30983
|
ActionLogicRule,
|
|
30569
30984
|
ActionMode,
|
|
30570
30985
|
ActionParameterArrayType,
|
|
30986
|
+
ActionParameterRid,
|
|
30571
30987
|
ActionParameterType,
|
|
30572
30988
|
ActionParameterV2,
|
|
30573
30989
|
ActionResults,
|
|
30574
30990
|
ActionRid,
|
|
30991
|
+
ActionSectionRid,
|
|
30575
30992
|
ActionType,
|
|
30576
30993
|
ActionTypeApiName,
|
|
30994
|
+
ActionTypeApiNameActionTypesQueryV2,
|
|
30995
|
+
ActionTypeDescriptionActionTypesQueryV2,
|
|
30996
|
+
ActionTypeDisplayNameActionTypesQueryV2,
|
|
30577
30997
|
ActionTypeFullMetadata,
|
|
30998
|
+
ActionTypeFuzziness,
|
|
30999
|
+
ActionTypeLogicRuleTypeFilter,
|
|
31000
|
+
ActionTypePermissionModelFilter,
|
|
30578
31001
|
ActionTypeRid,
|
|
31002
|
+
ActionTypeRidActionTypesQueryV2,
|
|
31003
|
+
ActionTypeSearchJsonQueryV2,
|
|
31004
|
+
ActionTypeSortByV2,
|
|
31005
|
+
ActionTypeStatusFilter,
|
|
30579
31006
|
ActionTypeV2,
|
|
30580
31007
|
ActivePropertyTypeStatus,
|
|
30581
31008
|
AddLink,
|
|
@@ -30583,6 +31010,9 @@ declare namespace _Ontologies {
|
|
|
30583
31010
|
AddObject,
|
|
30584
31011
|
AddObjectEdit,
|
|
30585
31012
|
AddPropertyExpression,
|
|
31013
|
+
AffectedInterfaceTypeRidActionTypesQueryV2,
|
|
31014
|
+
AffectedLinkTypeRidActionTypesQueryV2,
|
|
31015
|
+
AffectedObjectTypeRidActionTypesQueryV2,
|
|
30586
31016
|
Affix,
|
|
30587
31017
|
AggregateObjectSetRequestV2,
|
|
30588
31018
|
AggregateObjectsRequest,
|
|
@@ -30619,6 +31049,7 @@ declare namespace _Ontologies {
|
|
|
30619
31049
|
AggregationV2,
|
|
30620
31050
|
AllOfRule,
|
|
30621
31051
|
AllTermsQuery,
|
|
31052
|
+
AndActionTypesQueryV2,
|
|
30622
31053
|
AndQuery,
|
|
30623
31054
|
AndQueryV2_2 as AndQueryV2,
|
|
30624
31055
|
AnyOfRule,
|
|
@@ -30766,10 +31197,16 @@ declare namespace _Ontologies {
|
|
|
30766
31197
|
FieldNameV1,
|
|
30767
31198
|
FilterValue,
|
|
30768
31199
|
FixedValuesMapKey,
|
|
31200
|
+
FullTextStringContainsPredicate,
|
|
31201
|
+
FullTextStringExactPredicate,
|
|
31202
|
+
FullTextStringPredicateV2,
|
|
30769
31203
|
FunctionLogicRule,
|
|
30770
31204
|
FunctionParameterName,
|
|
30771
31205
|
FunctionRid,
|
|
31206
|
+
FunctionRidActionTypesQueryV2,
|
|
30772
31207
|
FunctionVersion,
|
|
31208
|
+
FuzzinessAuto,
|
|
31209
|
+
FuzzinessOff,
|
|
30773
31210
|
Fuzzy,
|
|
30774
31211
|
FuzzyRule,
|
|
30775
31212
|
FuzzyV2_2 as FuzzyV2,
|
|
@@ -30791,6 +31228,9 @@ declare namespace _Ontologies {
|
|
|
30791
31228
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequest,
|
|
30792
31229
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequestElement,
|
|
30793
31230
|
GetOutgoingLinkTypesByObjectTypeRidBatchResponse,
|
|
31231
|
+
GetQueryTypeByRidBatchRequest,
|
|
31232
|
+
GetQueryTypeByRidBatchRequestElement,
|
|
31233
|
+
GetQueryTypeByRidBatchResponse,
|
|
30794
31234
|
GetSelectedPropertyOperation,
|
|
30795
31235
|
GreatestPropertyExpression,
|
|
30796
31236
|
GroupMemberConstraint,
|
|
@@ -30798,8 +31238,12 @@ declare namespace _Ontologies {
|
|
|
30798
31238
|
GteQueryV2_2 as GteQueryV2,
|
|
30799
31239
|
GtQuery,
|
|
30800
31240
|
GtQueryV2_2 as GtQueryV2,
|
|
31241
|
+
HasActionLogActionTypesQueryV2,
|
|
31242
|
+
HasNotificationActionTypesQueryV2,
|
|
31243
|
+
HasWebhookActionTypesQueryV2,
|
|
30801
31244
|
HumanReadableFormat,
|
|
30802
31245
|
Icon,
|
|
31246
|
+
InputObjectTypeRidActionTypesQueryV2,
|
|
30803
31247
|
InQuery_2 as InQuery,
|
|
30804
31248
|
IntegerValue,
|
|
30805
31249
|
InterfaceDefinedPropertyType,
|
|
@@ -30887,6 +31331,7 @@ declare namespace _Ontologies {
|
|
|
30887
31331
|
LoadObjectSetV2ObjectsOrInterfacesResponse,
|
|
30888
31332
|
LoadOntologyMetadataRequest,
|
|
30889
31333
|
LogicRule,
|
|
31334
|
+
LogicRuleActionTypesQueryV2,
|
|
30890
31335
|
LogicRuleArgument,
|
|
30891
31336
|
LongValue,
|
|
30892
31337
|
LteQuery,
|
|
@@ -31015,6 +31460,7 @@ declare namespace _Ontologies {
|
|
|
31015
31460
|
OntologyV2,
|
|
31016
31461
|
OntologyValueType,
|
|
31017
31462
|
OntologyVersion,
|
|
31463
|
+
OrActionTypesQueryV2,
|
|
31018
31464
|
OrderBy,
|
|
31019
31465
|
OrderByDirection_2 as OrderByDirection,
|
|
31020
31466
|
OrQuery,
|
|
@@ -31024,7 +31470,10 @@ declare namespace _Ontologies {
|
|
|
31024
31470
|
ParameterEvaluationResult,
|
|
31025
31471
|
ParameterId_2 as ParameterId,
|
|
31026
31472
|
ParameterIdArgument,
|
|
31473
|
+
ParameterNameActionTypesQueryV2,
|
|
31027
31474
|
ParameterOption,
|
|
31475
|
+
ParameterRidActionTypesQueryV2,
|
|
31476
|
+
PermissionModelActionTypesQueryV2,
|
|
31028
31477
|
PhraseQuery,
|
|
31029
31478
|
Plaintext,
|
|
31030
31479
|
PolygonValue_2 as PolygonValue,
|
|
@@ -31094,6 +31543,7 @@ declare namespace _Ontologies {
|
|
|
31094
31543
|
RangesConstraint,
|
|
31095
31544
|
Reason,
|
|
31096
31545
|
ReasonType,
|
|
31546
|
+
ReferenceSigningOptions,
|
|
31097
31547
|
ReferenceUpdate,
|
|
31098
31548
|
ReferenceValue,
|
|
31099
31549
|
RefreshObjectSet,
|
|
@@ -31110,11 +31560,15 @@ declare namespace _Ontologies {
|
|
|
31110
31560
|
RequestId,
|
|
31111
31561
|
ResolvedInterfacePropertyType,
|
|
31112
31562
|
ReturnEditsMode,
|
|
31563
|
+
RevertActionEnabledActionTypesQueryV2,
|
|
31113
31564
|
RidConstraint,
|
|
31114
31565
|
RollingAggregateWindowPoints,
|
|
31115
31566
|
SdkPackageName,
|
|
31116
31567
|
SdkPackageRid,
|
|
31117
31568
|
SdkVersion,
|
|
31569
|
+
SearchActionTypesOrderByV2,
|
|
31570
|
+
SearchActionTypesRequestV2,
|
|
31571
|
+
SearchActionTypesResponseV2,
|
|
31118
31572
|
SearchJsonQuery,
|
|
31119
31573
|
SearchJsonQueryV2_2 as SearchJsonQueryV2,
|
|
31120
31574
|
SearchObjectsForInterfaceRequest,
|
|
@@ -31127,6 +31581,7 @@ declare namespace _Ontologies {
|
|
|
31127
31581
|
SearchOrderByV2,
|
|
31128
31582
|
SearchOrdering,
|
|
31129
31583
|
SearchOrderingV2,
|
|
31584
|
+
SectionRidActionTypesQueryV2,
|
|
31130
31585
|
SecuredPropertyValue,
|
|
31131
31586
|
SelectedPropertyApiName,
|
|
31132
31587
|
SelectedPropertyApproximateDistinctAggregation,
|
|
@@ -31148,6 +31603,7 @@ declare namespace _Ontologies {
|
|
|
31148
31603
|
SpatialFilterMode,
|
|
31149
31604
|
StartsWithQuery_2 as StartsWithQuery,
|
|
31150
31605
|
StaticArgument,
|
|
31606
|
+
StatusActionTypesQueryV2,
|
|
31151
31607
|
StreamingOutputFormat,
|
|
31152
31608
|
StreamMessage,
|
|
31153
31609
|
StreamTimeSeriesPointsRequest,
|
|
@@ -31207,6 +31663,8 @@ declare namespace _Ontologies {
|
|
|
31207
31663
|
TransactionEdit,
|
|
31208
31664
|
TwoDimensionalAggregation,
|
|
31209
31665
|
TypeClass,
|
|
31666
|
+
TypeClassesActionTypesQueryV2,
|
|
31667
|
+
TypeClassPredicateV2,
|
|
31210
31668
|
TypeReferenceIdentifier,
|
|
31211
31669
|
UnevaluableConstraint,
|
|
31212
31670
|
UniqueIdentifierArgument,
|
|
@@ -31233,6 +31691,8 @@ declare namespace _Ontologies {
|
|
|
31233
31691
|
ValueTypeStructType,
|
|
31234
31692
|
ValueTypeUnionType,
|
|
31235
31693
|
VersionedQueryTypeApiName,
|
|
31694
|
+
WebhookRid,
|
|
31695
|
+
WebhookRidActionTypesQueryV2,
|
|
31236
31696
|
WildcardQuery,
|
|
31237
31697
|
WithinBoundingBoxPoint_2 as WithinBoundingBoxPoint,
|
|
31238
31698
|
WithinBoundingBoxQuery_2 as WithinBoundingBoxQuery,
|
|
@@ -31334,6 +31794,7 @@ declare namespace _Ontologies {
|
|
|
31334
31794
|
NotCipherFormatted,
|
|
31335
31795
|
ObjectAlreadyExists,
|
|
31336
31796
|
ObjectChanged,
|
|
31797
|
+
ObjectEditMissingPrimaryKey,
|
|
31337
31798
|
ObjectNotFound,
|
|
31338
31799
|
ObjectSetNotFound,
|
|
31339
31800
|
ObjectsExceededLimit,
|
|
@@ -31420,14 +31881,26 @@ declare namespace _Ontologies_2 {
|
|
|
31420
31881
|
ActionLogicRule,
|
|
31421
31882
|
ActionMode,
|
|
31422
31883
|
ActionParameterArrayType,
|
|
31884
|
+
ActionParameterRid,
|
|
31423
31885
|
ActionParameterType,
|
|
31424
31886
|
ActionParameterV2,
|
|
31425
31887
|
ActionResults,
|
|
31426
31888
|
ActionRid,
|
|
31889
|
+
ActionSectionRid,
|
|
31427
31890
|
ActionType,
|
|
31428
31891
|
ActionTypeApiName,
|
|
31892
|
+
ActionTypeApiNameActionTypesQueryV2,
|
|
31893
|
+
ActionTypeDescriptionActionTypesQueryV2,
|
|
31894
|
+
ActionTypeDisplayNameActionTypesQueryV2,
|
|
31429
31895
|
ActionTypeFullMetadata,
|
|
31896
|
+
ActionTypeFuzziness,
|
|
31897
|
+
ActionTypeLogicRuleTypeFilter,
|
|
31898
|
+
ActionTypePermissionModelFilter,
|
|
31430
31899
|
ActionTypeRid,
|
|
31900
|
+
ActionTypeRidActionTypesQueryV2,
|
|
31901
|
+
ActionTypeSearchJsonQueryV2,
|
|
31902
|
+
ActionTypeSortByV2,
|
|
31903
|
+
ActionTypeStatusFilter,
|
|
31431
31904
|
ActionTypeV2,
|
|
31432
31905
|
ActivePropertyTypeStatus,
|
|
31433
31906
|
AddLink,
|
|
@@ -31435,6 +31908,9 @@ declare namespace _Ontologies_2 {
|
|
|
31435
31908
|
AddObject,
|
|
31436
31909
|
AddObjectEdit,
|
|
31437
31910
|
AddPropertyExpression,
|
|
31911
|
+
AffectedInterfaceTypeRidActionTypesQueryV2,
|
|
31912
|
+
AffectedLinkTypeRidActionTypesQueryV2,
|
|
31913
|
+
AffectedObjectTypeRidActionTypesQueryV2,
|
|
31438
31914
|
Affix,
|
|
31439
31915
|
AggregateObjectSetRequestV2,
|
|
31440
31916
|
AggregateObjectsRequest,
|
|
@@ -31471,6 +31947,7 @@ declare namespace _Ontologies_2 {
|
|
|
31471
31947
|
AggregationV2,
|
|
31472
31948
|
AllOfRule,
|
|
31473
31949
|
AllTermsQuery,
|
|
31950
|
+
AndActionTypesQueryV2,
|
|
31474
31951
|
AndQuery,
|
|
31475
31952
|
AndQueryV2_2 as AndQueryV2,
|
|
31476
31953
|
AnyOfRule,
|
|
@@ -31618,10 +32095,16 @@ declare namespace _Ontologies_2 {
|
|
|
31618
32095
|
FieldNameV1,
|
|
31619
32096
|
FilterValue,
|
|
31620
32097
|
FixedValuesMapKey,
|
|
32098
|
+
FullTextStringContainsPredicate,
|
|
32099
|
+
FullTextStringExactPredicate,
|
|
32100
|
+
FullTextStringPredicateV2,
|
|
31621
32101
|
FunctionLogicRule,
|
|
31622
32102
|
FunctionParameterName,
|
|
31623
32103
|
FunctionRid,
|
|
32104
|
+
FunctionRidActionTypesQueryV2,
|
|
31624
32105
|
FunctionVersion,
|
|
32106
|
+
FuzzinessAuto,
|
|
32107
|
+
FuzzinessOff,
|
|
31625
32108
|
Fuzzy,
|
|
31626
32109
|
FuzzyRule,
|
|
31627
32110
|
FuzzyV2_2 as FuzzyV2,
|
|
@@ -31643,6 +32126,9 @@ declare namespace _Ontologies_2 {
|
|
|
31643
32126
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequest,
|
|
31644
32127
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequestElement,
|
|
31645
32128
|
GetOutgoingLinkTypesByObjectTypeRidBatchResponse,
|
|
32129
|
+
GetQueryTypeByRidBatchRequest,
|
|
32130
|
+
GetQueryTypeByRidBatchRequestElement,
|
|
32131
|
+
GetQueryTypeByRidBatchResponse,
|
|
31646
32132
|
GetSelectedPropertyOperation,
|
|
31647
32133
|
GreatestPropertyExpression,
|
|
31648
32134
|
GroupMemberConstraint,
|
|
@@ -31650,8 +32136,12 @@ declare namespace _Ontologies_2 {
|
|
|
31650
32136
|
GteQueryV2_2 as GteQueryV2,
|
|
31651
32137
|
GtQuery,
|
|
31652
32138
|
GtQueryV2_2 as GtQueryV2,
|
|
32139
|
+
HasActionLogActionTypesQueryV2,
|
|
32140
|
+
HasNotificationActionTypesQueryV2,
|
|
32141
|
+
HasWebhookActionTypesQueryV2,
|
|
31653
32142
|
HumanReadableFormat,
|
|
31654
32143
|
Icon,
|
|
32144
|
+
InputObjectTypeRidActionTypesQueryV2,
|
|
31655
32145
|
InQuery_2 as InQuery,
|
|
31656
32146
|
IntegerValue,
|
|
31657
32147
|
InterfaceDefinedPropertyType,
|
|
@@ -31739,6 +32229,7 @@ declare namespace _Ontologies_2 {
|
|
|
31739
32229
|
LoadObjectSetV2ObjectsOrInterfacesResponse,
|
|
31740
32230
|
LoadOntologyMetadataRequest,
|
|
31741
32231
|
LogicRule,
|
|
32232
|
+
LogicRuleActionTypesQueryV2,
|
|
31742
32233
|
LogicRuleArgument,
|
|
31743
32234
|
LongValue,
|
|
31744
32235
|
LteQuery,
|
|
@@ -31867,6 +32358,7 @@ declare namespace _Ontologies_2 {
|
|
|
31867
32358
|
OntologyV2,
|
|
31868
32359
|
OntologyValueType,
|
|
31869
32360
|
OntologyVersion,
|
|
32361
|
+
OrActionTypesQueryV2,
|
|
31870
32362
|
OrderBy,
|
|
31871
32363
|
OrderByDirection_2 as OrderByDirection,
|
|
31872
32364
|
OrQuery,
|
|
@@ -31876,7 +32368,10 @@ declare namespace _Ontologies_2 {
|
|
|
31876
32368
|
ParameterEvaluationResult,
|
|
31877
32369
|
ParameterId_2 as ParameterId,
|
|
31878
32370
|
ParameterIdArgument,
|
|
32371
|
+
ParameterNameActionTypesQueryV2,
|
|
31879
32372
|
ParameterOption,
|
|
32373
|
+
ParameterRidActionTypesQueryV2,
|
|
32374
|
+
PermissionModelActionTypesQueryV2,
|
|
31880
32375
|
PhraseQuery,
|
|
31881
32376
|
Plaintext,
|
|
31882
32377
|
PolygonValue_2 as PolygonValue,
|
|
@@ -31946,6 +32441,7 @@ declare namespace _Ontologies_2 {
|
|
|
31946
32441
|
RangesConstraint,
|
|
31947
32442
|
Reason,
|
|
31948
32443
|
ReasonType,
|
|
32444
|
+
ReferenceSigningOptions,
|
|
31949
32445
|
ReferenceUpdate,
|
|
31950
32446
|
ReferenceValue,
|
|
31951
32447
|
RefreshObjectSet,
|
|
@@ -31962,11 +32458,15 @@ declare namespace _Ontologies_2 {
|
|
|
31962
32458
|
RequestId,
|
|
31963
32459
|
ResolvedInterfacePropertyType,
|
|
31964
32460
|
ReturnEditsMode,
|
|
32461
|
+
RevertActionEnabledActionTypesQueryV2,
|
|
31965
32462
|
RidConstraint,
|
|
31966
32463
|
RollingAggregateWindowPoints,
|
|
31967
32464
|
SdkPackageName,
|
|
31968
32465
|
SdkPackageRid,
|
|
31969
32466
|
SdkVersion,
|
|
32467
|
+
SearchActionTypesOrderByV2,
|
|
32468
|
+
SearchActionTypesRequestV2,
|
|
32469
|
+
SearchActionTypesResponseV2,
|
|
31970
32470
|
SearchJsonQuery,
|
|
31971
32471
|
SearchJsonQueryV2_2 as SearchJsonQueryV2,
|
|
31972
32472
|
SearchObjectsForInterfaceRequest,
|
|
@@ -31979,6 +32479,7 @@ declare namespace _Ontologies_2 {
|
|
|
31979
32479
|
SearchOrderByV2,
|
|
31980
32480
|
SearchOrdering,
|
|
31981
32481
|
SearchOrderingV2,
|
|
32482
|
+
SectionRidActionTypesQueryV2,
|
|
31982
32483
|
SecuredPropertyValue,
|
|
31983
32484
|
SelectedPropertyApiName,
|
|
31984
32485
|
SelectedPropertyApproximateDistinctAggregation,
|
|
@@ -32000,6 +32501,7 @@ declare namespace _Ontologies_2 {
|
|
|
32000
32501
|
SpatialFilterMode,
|
|
32001
32502
|
StartsWithQuery_2 as StartsWithQuery,
|
|
32002
32503
|
StaticArgument,
|
|
32504
|
+
StatusActionTypesQueryV2,
|
|
32003
32505
|
StreamingOutputFormat,
|
|
32004
32506
|
StreamMessage,
|
|
32005
32507
|
StreamTimeSeriesPointsRequest,
|
|
@@ -32059,6 +32561,8 @@ declare namespace _Ontologies_2 {
|
|
|
32059
32561
|
TransactionEdit,
|
|
32060
32562
|
TwoDimensionalAggregation,
|
|
32061
32563
|
TypeClass,
|
|
32564
|
+
TypeClassesActionTypesQueryV2,
|
|
32565
|
+
TypeClassPredicateV2,
|
|
32062
32566
|
TypeReferenceIdentifier,
|
|
32063
32567
|
UnevaluableConstraint,
|
|
32064
32568
|
UniqueIdentifierArgument,
|
|
@@ -32085,6 +32589,8 @@ declare namespace _Ontologies_2 {
|
|
|
32085
32589
|
ValueTypeStructType,
|
|
32086
32590
|
ValueTypeUnionType,
|
|
32087
32591
|
VersionedQueryTypeApiName,
|
|
32592
|
+
WebhookRid,
|
|
32593
|
+
WebhookRidActionTypesQueryV2,
|
|
32088
32594
|
WildcardQuery,
|
|
32089
32595
|
WithinBoundingBoxPoint_2 as WithinBoundingBoxPoint,
|
|
32090
32596
|
WithinBoundingBoxQuery_2 as WithinBoundingBoxQuery,
|
|
@@ -32428,7 +32934,7 @@ export declare namespace OntologyObjectsV2 {
|
|
|
32428
32934
|
export {
|
|
32429
32935
|
list_18 as list,
|
|
32430
32936
|
get_20 as get,
|
|
32431
|
-
|
|
32937
|
+
search_5 as search,
|
|
32432
32938
|
aggregate_3 as aggregate
|
|
32433
32939
|
}
|
|
32434
32940
|
}
|
|
@@ -32441,6 +32947,23 @@ declare interface OntologyObjectType {
|
|
|
32441
32947
|
objectTypeApiName: ObjectTypeApiName;
|
|
32442
32948
|
}
|
|
32443
32949
|
|
|
32950
|
+
/**
|
|
32951
|
+
* The ontology query referenced an object type RID that does not exist or
|
|
32952
|
+
is not visible to the requesting user. Verify the RID (e.g. via
|
|
32953
|
+
list-object-types or get-object-type-details) and retry.
|
|
32954
|
+
*
|
|
32955
|
+
* Log Safety: SAFE
|
|
32956
|
+
*/
|
|
32957
|
+
declare interface OntologyObjectTypeNotFound {
|
|
32958
|
+
errorCode: "NOT_FOUND";
|
|
32959
|
+
errorName: "OntologyObjectTypeNotFound";
|
|
32960
|
+
errorDescription: "The ontology query referenced an object type RID that does not exist or is not visible to the requesting user. Verify the RID (e.g. via list-object-types or get-object-type-details) and retry.";
|
|
32961
|
+
errorInstanceId: string;
|
|
32962
|
+
parameters: {
|
|
32963
|
+
objectTypeRid: unknown;
|
|
32964
|
+
};
|
|
32965
|
+
}
|
|
32966
|
+
|
|
32444
32967
|
/**
|
|
32445
32968
|
* Log Safety: SAFE
|
|
32446
32969
|
*/
|
|
@@ -32469,6 +32992,60 @@ declare interface OntologyQueryFailed {
|
|
|
32469
32992
|
};
|
|
32470
32993
|
}
|
|
32471
32994
|
|
|
32995
|
+
/**
|
|
32996
|
+
* The ontology query references object types or link types indexed in Object
|
|
32997
|
+
Storage V1, which is incompatible with Ontology SQL. Migrate the entities
|
|
32998
|
+
to Object Storage V2 or remove them from the query.
|
|
32999
|
+
*
|
|
33000
|
+
* Log Safety: SAFE
|
|
33001
|
+
*/
|
|
33002
|
+
declare interface OntologyQueryInvalidObjectBackend {
|
|
33003
|
+
errorCode: "INVALID_ARGUMENT";
|
|
33004
|
+
errorName: "OntologyQueryInvalidObjectBackend";
|
|
33005
|
+
errorDescription: "The ontology query references object types or link types indexed in Object Storage V1, which is incompatible with Ontology SQL. Migrate the entities to Object Storage V2 or remove them from the query.";
|
|
33006
|
+
errorInstanceId: string;
|
|
33007
|
+
parameters: {
|
|
33008
|
+
objectTypeRids: unknown;
|
|
33009
|
+
linkTypeRids: unknown;
|
|
33010
|
+
};
|
|
33011
|
+
}
|
|
33012
|
+
|
|
33013
|
+
/**
|
|
33014
|
+
* The query references too many objects across joins, link lookups, or
|
|
33015
|
+
sub-queries. Narrow the scope (add filters, reduce joins, restrict
|
|
33016
|
+
object types) and retry. The actual and maximum object counts are
|
|
33017
|
+
returned as parameters.
|
|
33018
|
+
*
|
|
33019
|
+
* Log Safety: SAFE
|
|
33020
|
+
*/
|
|
33021
|
+
declare interface OntologyQueryNestedObjectSetTooLarge {
|
|
33022
|
+
errorCode: "INVALID_ARGUMENT";
|
|
33023
|
+
errorName: "OntologyQueryNestedObjectSetTooLarge";
|
|
33024
|
+
errorDescription: "The query references too many objects across joins, link lookups, or sub-queries. Narrow the scope (add filters, reduce joins, restrict object types) and retry. The actual and maximum object counts are returned as parameters.";
|
|
33025
|
+
errorInstanceId: string;
|
|
33026
|
+
parameters: {
|
|
33027
|
+
nestedObjectSetSize: unknown;
|
|
33028
|
+
maxAllowedNestedObjectSetSize: unknown;
|
|
33029
|
+
};
|
|
33030
|
+
}
|
|
33031
|
+
|
|
33032
|
+
/**
|
|
33033
|
+
* A string column in the query result contains a value larger than
|
|
33034
|
+
the platform's per-cell size limit. Exclude or filter the column,
|
|
33035
|
+
or scope the query to skip the oversized rows.
|
|
33036
|
+
*
|
|
33037
|
+
* Log Safety: UNSAFE
|
|
33038
|
+
*/
|
|
33039
|
+
declare interface OntologyQueryStringColumnTooLong {
|
|
33040
|
+
errorCode: "INVALID_ARGUMENT";
|
|
33041
|
+
errorName: "OntologyQueryStringColumnTooLong";
|
|
33042
|
+
errorDescription: "A string column in the query result contains a value larger than the platform's per-cell size limit. Exclude or filter the column, or scope the query to skip the oversized rows.";
|
|
33043
|
+
errorInstanceId: string;
|
|
33044
|
+
parameters: {
|
|
33045
|
+
columnName: unknown;
|
|
33046
|
+
};
|
|
33047
|
+
}
|
|
33048
|
+
|
|
32472
33049
|
/**
|
|
32473
33050
|
* The unique Resource Identifier (RID) of the Ontology. To look up your Ontology RID, please use the
|
|
32474
33051
|
List ontologies endpoint or check the Ontology Manager.
|
|
@@ -32824,6 +33401,15 @@ declare interface OracleTableImportConfig {
|
|
|
32824
33401
|
initialIncrementalState?: TableImportInitialIncrementalState;
|
|
32825
33402
|
}
|
|
32826
33403
|
|
|
33404
|
+
/**
|
|
33405
|
+
* Returns action types where at least one query is satisfied. An empty list matches no action types.
|
|
33406
|
+
*
|
|
33407
|
+
* Log Safety: UNSAFE
|
|
33408
|
+
*/
|
|
33409
|
+
declare interface OrActionTypesQueryV2 {
|
|
33410
|
+
value: Array<ActionTypeSearchJsonQueryV2>;
|
|
33411
|
+
}
|
|
33412
|
+
|
|
32827
33413
|
export declare namespace Orchestration {
|
|
32828
33414
|
export {
|
|
32829
33415
|
AbortOnFailure,
|
|
@@ -33630,7 +34216,9 @@ export declare namespace Pack {
|
|
|
33630
34216
|
DocumentSecurity,
|
|
33631
34217
|
DocumentSort,
|
|
33632
34218
|
DocumentSortField,
|
|
34219
|
+
DocumentStorageType,
|
|
33633
34220
|
DocumentType_2 as DocumentType,
|
|
34221
|
+
DocumentTypeAsset,
|
|
33634
34222
|
DocumentTypeName,
|
|
33635
34223
|
DocumentTypeRid,
|
|
33636
34224
|
DocumentTypeSchema,
|
|
@@ -33699,6 +34287,7 @@ export declare namespace Pack {
|
|
|
33699
34287
|
UpdateSchemaSuccess,
|
|
33700
34288
|
UserId_2 as UserId,
|
|
33701
34289
|
UserPresence,
|
|
34290
|
+
YjsSchema,
|
|
33702
34291
|
YjsUpdate,
|
|
33703
34292
|
CannotDeleteAutosavedDocument,
|
|
33704
34293
|
CannotDeleteHiddenDocument,
|
|
@@ -33772,7 +34361,9 @@ declare namespace _Pack {
|
|
|
33772
34361
|
DocumentSecurity,
|
|
33773
34362
|
DocumentSort,
|
|
33774
34363
|
DocumentSortField,
|
|
34364
|
+
DocumentStorageType,
|
|
33775
34365
|
DocumentType_2 as DocumentType,
|
|
34366
|
+
DocumentTypeAsset,
|
|
33776
34367
|
DocumentTypeName,
|
|
33777
34368
|
DocumentTypeRid,
|
|
33778
34369
|
DocumentTypeSchema,
|
|
@@ -33841,6 +34432,7 @@ declare namespace _Pack {
|
|
|
33841
34432
|
UpdateSchemaSuccess,
|
|
33842
34433
|
UserId_2 as UserId,
|
|
33843
34434
|
UserPresence,
|
|
34435
|
+
YjsSchema,
|
|
33844
34436
|
YjsUpdate
|
|
33845
34437
|
}
|
|
33846
34438
|
}
|
|
@@ -34140,6 +34732,15 @@ declare type ParameterName = LooselyBrandedString_15<"ParameterName">;
|
|
|
34140
34732
|
*/
|
|
34141
34733
|
declare type ParameterName_2 = LooselyBrandedString_21<"ParameterName">;
|
|
34142
34734
|
|
|
34735
|
+
/**
|
|
34736
|
+
* Returns action types with a parameter whose name matches the given string predicate.
|
|
34737
|
+
*
|
|
34738
|
+
* Log Safety: UNSAFE
|
|
34739
|
+
*/
|
|
34740
|
+
declare interface ParameterNameActionTypesQueryV2 {
|
|
34741
|
+
value: FullTextStringPredicateV2;
|
|
34742
|
+
}
|
|
34743
|
+
|
|
34143
34744
|
/**
|
|
34144
34745
|
* A null parameter value.
|
|
34145
34746
|
*
|
|
@@ -34189,6 +34790,15 @@ declare interface ParameterOption {
|
|
|
34189
34790
|
value?: any;
|
|
34190
34791
|
}
|
|
34191
34792
|
|
|
34793
|
+
/**
|
|
34794
|
+
* Returns action types with a parameter matching the given parameter rid.
|
|
34795
|
+
*
|
|
34796
|
+
* Log Safety: SAFE
|
|
34797
|
+
*/
|
|
34798
|
+
declare interface ParameterRidActionTypesQueryV2 {
|
|
34799
|
+
value: ActionParameterRid;
|
|
34800
|
+
}
|
|
34801
|
+
|
|
34192
34802
|
/**
|
|
34193
34803
|
* Parameters for SQL query execution. Can be either unnamed positional parameters
|
|
34194
34804
|
or named parameter mappings.
|
|
@@ -34425,6 +35035,38 @@ declare interface ParquetExperimentSeriesPermissionDenied {
|
|
|
34425
35035
|
};
|
|
34426
35036
|
}
|
|
34427
35037
|
|
|
35038
|
+
/* Excluded from this release type: parseClassifications */
|
|
35039
|
+
|
|
35040
|
+
/**
|
|
35041
|
+
* The provided token does not have permission to parse the given classification strings.
|
|
35042
|
+
*
|
|
35043
|
+
* Log Safety: UNSAFE
|
|
35044
|
+
*/
|
|
35045
|
+
declare interface ParseClassificationsPermissionDenied {
|
|
35046
|
+
errorCode: "PERMISSION_DENIED";
|
|
35047
|
+
errorName: "ParseClassificationsPermissionDenied";
|
|
35048
|
+
errorDescription: "The provided token does not have permission to parse the given classification strings.";
|
|
35049
|
+
errorInstanceId: string;
|
|
35050
|
+
parameters: {
|
|
35051
|
+
classificationStrings: unknown;
|
|
35052
|
+
};
|
|
35053
|
+
}
|
|
35054
|
+
|
|
35055
|
+
/**
|
|
35056
|
+
* Log Safety: UNSAFE
|
|
35057
|
+
*/
|
|
35058
|
+
declare interface ParseClassificationsRequest {
|
|
35059
|
+
classificationStrings: Array<string>;
|
|
35060
|
+
}
|
|
35061
|
+
|
|
35062
|
+
/**
|
|
35063
|
+
* Log Safety: UNSAFE
|
|
35064
|
+
*/
|
|
35065
|
+
declare interface ParseClassificationsResponse {
|
|
35066
|
+
parsed: Record<string, Array<_Core.MarkingId>>;
|
|
35067
|
+
errors: Record<string, string>;
|
|
35068
|
+
}
|
|
35069
|
+
|
|
34428
35070
|
/**
|
|
34429
35071
|
* The identifier for a partition of a Foundry stream.
|
|
34430
35072
|
*
|
|
@@ -34606,6 +35248,15 @@ declare interface PermanentlyDeleteResourcePermissionDenied {
|
|
|
34606
35248
|
};
|
|
34607
35249
|
}
|
|
34608
35250
|
|
|
35251
|
+
/**
|
|
35252
|
+
* Returns action types with the given permission model.
|
|
35253
|
+
*
|
|
35254
|
+
* Log Safety: SAFE
|
|
35255
|
+
*/
|
|
35256
|
+
declare interface PermissionModelActionTypesQueryV2 {
|
|
35257
|
+
value: ActionTypePermissionModelFilter;
|
|
35258
|
+
}
|
|
35259
|
+
|
|
34609
35260
|
/**
|
|
34610
35261
|
* Authenticate as a user or service principal using a personal access token.
|
|
34611
35262
|
Read the official Databricks documentation for information on generating a personal access token.
|
|
@@ -34837,15 +35488,17 @@ declare type PresenceCollaborativeUpdate = ({
|
|
|
34837
35488
|
type: "presenceChangeEvent";
|
|
34838
35489
|
} & DocumentPresenceChangeEvent) | ({
|
|
34839
35490
|
type: "customPresenceEvent";
|
|
34840
|
-
} & CustomPresenceEvent)
|
|
35491
|
+
} & CustomPresenceEvent) | ({
|
|
35492
|
+
type: "error";
|
|
35493
|
+
} & ErrorMessage);
|
|
34841
35494
|
|
|
34842
35495
|
/**
|
|
34843
35496
|
* Log Safety: UNSAFE
|
|
34844
35497
|
*/
|
|
34845
35498
|
declare interface PresencePublishMessage {
|
|
35499
|
+
schemaVersion?: SchemaVersion;
|
|
34846
35500
|
messageType: PresencePublishMessageType;
|
|
34847
|
-
|
|
34848
|
-
clientSupportedVersionRange?: ClientSupportedVersionRange;
|
|
35501
|
+
clientSupportedVersionRange: ClientSupportedVersionRange;
|
|
34849
35502
|
}
|
|
34850
35503
|
|
|
34851
35504
|
/**
|
|
@@ -37050,6 +37703,7 @@ property: _Ontologies_2.PropertyApiName,
|
|
|
37050
37703
|
$queryParams?: {
|
|
37051
37704
|
sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
|
|
37052
37705
|
sdkVersion?: _Ontologies_2.SdkVersion | undefined;
|
|
37706
|
+
branch?: _Core.FoundryBranch | undefined;
|
|
37053
37707
|
}
|
|
37054
37708
|
]): Promise<Response>;
|
|
37055
37709
|
|
|
@@ -37072,6 +37726,7 @@ attachmentRid: _Ontologies_2.AttachmentRid,
|
|
|
37072
37726
|
$queryParams?: {
|
|
37073
37727
|
sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
|
|
37074
37728
|
sdkVersion?: _Ontologies_2.SdkVersion | undefined;
|
|
37729
|
+
branch?: _Core.FoundryBranch | undefined;
|
|
37075
37730
|
}
|
|
37076
37731
|
]): Promise<Response>;
|
|
37077
37732
|
|
|
@@ -37410,6 +38065,15 @@ declare type Reference = {
|
|
|
37410
38065
|
|
|
37411
38066
|
/* Excluded from this release type: reference */
|
|
37412
38067
|
|
|
38068
|
+
/**
|
|
38069
|
+
* Options for signing references in the response.
|
|
38070
|
+
*
|
|
38071
|
+
* Log Safety: SAFE
|
|
38072
|
+
*/
|
|
38073
|
+
declare interface ReferenceSigningOptions {
|
|
38074
|
+
signMediaReferences?: boolean;
|
|
38075
|
+
}
|
|
38076
|
+
|
|
37413
38077
|
/**
|
|
37414
38078
|
* The updated data value associated with an object instance's external reference. The object instance
|
|
37415
38079
|
is uniquely identified by an object type and a primary key. Note that the value of the property
|
|
@@ -38522,7 +39186,7 @@ declare interface ReplaceModelFunctionPermissionDenied {
|
|
|
38522
39186
|
errorDescription: "Could not replace the ModelFunction.";
|
|
38523
39187
|
errorInstanceId: string;
|
|
38524
39188
|
parameters: {
|
|
38525
|
-
|
|
39189
|
+
modelRid: unknown;
|
|
38526
39190
|
};
|
|
38527
39191
|
}
|
|
38528
39192
|
|
|
@@ -39617,6 +40281,15 @@ declare interface RetryDeadlineExceeded {
|
|
|
39617
40281
|
*/
|
|
39618
40282
|
declare type ReturnEditsMode = "ALL" | "ALL_V2_WITH_DELETIONS" | "NONE";
|
|
39619
40283
|
|
|
40284
|
+
/**
|
|
40285
|
+
* Returns action types based on whether they are revertible.
|
|
40286
|
+
*
|
|
40287
|
+
* Log Safety: SAFE
|
|
40288
|
+
*/
|
|
40289
|
+
declare interface RevertActionEnabledActionTypesQueryV2 {
|
|
40290
|
+
value: boolean;
|
|
40291
|
+
}
|
|
40292
|
+
|
|
39620
40293
|
/**
|
|
39621
40294
|
* A unique incrementing identifier that represents the order of edits applied by the server.
|
|
39622
40295
|
*
|
|
@@ -40461,6 +41134,8 @@ declare function search_2($ctx: SharedClient | SharedClientContext | SharedClien
|
|
|
40461
41134
|
|
|
40462
41135
|
/* Excluded from this release type: search_3 */
|
|
40463
41136
|
|
|
41137
|
+
/* Excluded from this release type: search_4 */
|
|
41138
|
+
|
|
40464
41139
|
/**
|
|
40465
41140
|
* Search for objects in the specified ontology and object type. The request body is used
|
|
40466
41141
|
* to filter objects based on the specified query. The supported queries are:
|
|
@@ -40491,7 +41166,7 @@ declare function search_2($ctx: SharedClient | SharedClientContext | SharedClien
|
|
|
40491
41166
|
* Required Scopes: [api:ontologies-read]
|
|
40492
41167
|
* URL: /v2/ontologies/{ontology}/objects/{objectType}/search
|
|
40493
41168
|
*/
|
|
40494
|
-
declare function
|
|
41169
|
+
declare function search_5($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
|
|
40495
41170
|
ontology: _Ontologies_2.OntologyIdentifier,
|
|
40496
41171
|
objectType: _Ontologies_2.ObjectTypeApiName,
|
|
40497
41172
|
$body: _Ontologies_2.SearchObjectsRequestV2,
|
|
@@ -40499,17 +41174,49 @@ $queryParams?: {
|
|
|
40499
41174
|
sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
|
|
40500
41175
|
sdkVersion?: _Ontologies_2.SdkVersion | undefined;
|
|
40501
41176
|
branch?: _Core.FoundryBranch | undefined;
|
|
41177
|
+
executeInMemoryOnly?: boolean | undefined;
|
|
40502
41178
|
}
|
|
40503
41179
|
]): Promise<_Ontologies_2.SearchObjectsResponseV2>;
|
|
40504
41180
|
|
|
40505
|
-
/* Excluded from this release type: search_5 */
|
|
40506
|
-
|
|
40507
41181
|
/* Excluded from this release type: search_6 */
|
|
40508
41182
|
|
|
40509
41183
|
/* Excluded from this release type: search_7 */
|
|
40510
41184
|
|
|
40511
41185
|
/* Excluded from this release type: search_8 */
|
|
40512
41186
|
|
|
41187
|
+
/* Excluded from this release type: search_9 */
|
|
41188
|
+
|
|
41189
|
+
/**
|
|
41190
|
+
* Specifies the ordering of action type search results by a field and an ordering direction. If not provided,
|
|
41191
|
+
results are ordered by relevance of the match.
|
|
41192
|
+
*
|
|
41193
|
+
* Log Safety: SAFE
|
|
41194
|
+
*/
|
|
41195
|
+
declare interface SearchActionTypesOrderByV2 {
|
|
41196
|
+
field: ActionTypeSortByV2;
|
|
41197
|
+
direction?: string;
|
|
41198
|
+
}
|
|
41199
|
+
|
|
41200
|
+
/**
|
|
41201
|
+
* Log Safety: UNSAFE
|
|
41202
|
+
*/
|
|
41203
|
+
declare interface SearchActionTypesRequestV2 {
|
|
41204
|
+
where?: ActionTypeSearchJsonQueryV2;
|
|
41205
|
+
orderBy?: SearchActionTypesOrderByV2;
|
|
41206
|
+
fuzziness?: ActionTypeFuzziness;
|
|
41207
|
+
pageSize?: _Core.PageSize;
|
|
41208
|
+
pageToken?: _Core.PageToken;
|
|
41209
|
+
}
|
|
41210
|
+
|
|
41211
|
+
/**
|
|
41212
|
+
* Log Safety: UNSAFE
|
|
41213
|
+
*/
|
|
41214
|
+
declare interface SearchActionTypesResponseV2 {
|
|
41215
|
+
data: Array<ActionTypeV2>;
|
|
41216
|
+
nextPageToken?: _Core.PageToken;
|
|
41217
|
+
totalCount: _Core.TotalCount;
|
|
41218
|
+
}
|
|
41219
|
+
|
|
40513
41220
|
/**
|
|
40514
41221
|
* Returns the Builds where every filter is satisfied.
|
|
40515
41222
|
*
|
|
@@ -41259,7 +41966,7 @@ declare interface SearchObjectsRequestV2 {
|
|
|
41259
41966
|
selectV2: Array<PropertyIdentifier_2>;
|
|
41260
41967
|
excludeRid?: boolean;
|
|
41261
41968
|
snapshot?: boolean;
|
|
41262
|
-
|
|
41969
|
+
referenceSigningOptions?: ReferenceSigningOptions;
|
|
41263
41970
|
}
|
|
41264
41971
|
|
|
41265
41972
|
/**
|
|
@@ -41414,6 +42121,15 @@ declare interface SecretsWithPlaintextValues {
|
|
|
41414
42121
|
secrets: Record<SecretName, PlaintextValue>;
|
|
41415
42122
|
}
|
|
41416
42123
|
|
|
42124
|
+
/**
|
|
42125
|
+
* Returns action types with a section matching the given section rid.
|
|
42126
|
+
*
|
|
42127
|
+
* Log Safety: SAFE
|
|
42128
|
+
*/
|
|
42129
|
+
declare interface SectionRidActionTypesQueryV2 {
|
|
42130
|
+
value: ActionSectionRid;
|
|
42131
|
+
}
|
|
42132
|
+
|
|
41417
42133
|
/**
|
|
41418
42134
|
* Log Safety: UNSAFE
|
|
41419
42135
|
*/
|
|
@@ -42351,7 +43067,11 @@ export declare namespace SqlQueries {
|
|
|
42351
43067
|
ExecuteSqlQueryPermissionDenied,
|
|
42352
43068
|
GetResultsSqlQueryPermissionDenied,
|
|
42353
43069
|
GetStatusSqlQueryPermissionDenied,
|
|
43070
|
+
OntologyObjectTypeNotFound,
|
|
42354
43071
|
OntologyQueryFailed,
|
|
43072
|
+
OntologyQueryInvalidObjectBackend,
|
|
43073
|
+
OntologyQueryNestedObjectSetTooLarge,
|
|
43074
|
+
OntologyQueryStringColumnTooLong,
|
|
42355
43075
|
QueryCanceled,
|
|
42356
43076
|
QueryFailed,
|
|
42357
43077
|
QueryParseError,
|
|
@@ -42469,6 +43189,15 @@ declare interface StaticArgument {
|
|
|
42469
43189
|
value: DataValue;
|
|
42470
43190
|
}
|
|
42471
43191
|
|
|
43192
|
+
/**
|
|
43193
|
+
* Returns action types with the given status.
|
|
43194
|
+
*
|
|
43195
|
+
* Log Safety: SAFE
|
|
43196
|
+
*/
|
|
43197
|
+
declare interface StatusActionTypesQueryV2 {
|
|
43198
|
+
value: ActionTypeStatusFilter;
|
|
43199
|
+
}
|
|
43200
|
+
|
|
42472
43201
|
/**
|
|
42473
43202
|
* Log Safety: UNSAFE
|
|
42474
43203
|
*/
|
|
@@ -42520,6 +43249,31 @@ declare interface StreamingContinueSessionRequest {
|
|
|
42520
43249
|
|
|
42521
43250
|
/* Excluded from this release type: streamingExecute */
|
|
42522
43251
|
|
|
43252
|
+
/**
|
|
43253
|
+
* Could not streamingExecuteEvents the Query.
|
|
43254
|
+
*
|
|
43255
|
+
* Log Safety: UNSAFE
|
|
43256
|
+
*/
|
|
43257
|
+
declare interface StreamingExecuteEventsQueryPermissionDenied {
|
|
43258
|
+
errorCode: "PERMISSION_DENIED";
|
|
43259
|
+
errorName: "StreamingExecuteEventsQueryPermissionDenied";
|
|
43260
|
+
errorDescription: "Could not streamingExecuteEvents the Query.";
|
|
43261
|
+
errorInstanceId: string;
|
|
43262
|
+
parameters: {
|
|
43263
|
+
queryApiName: unknown;
|
|
43264
|
+
};
|
|
43265
|
+
}
|
|
43266
|
+
|
|
43267
|
+
/**
|
|
43268
|
+
* Log Safety: UNSAFE
|
|
43269
|
+
*/
|
|
43270
|
+
declare interface StreamingExecuteEventsQueryRequest {
|
|
43271
|
+
ontology?: _Ontologies.OntologyIdentifier;
|
|
43272
|
+
parameters: Record<ParameterId_3, DataValue_2 | undefined>;
|
|
43273
|
+
version?: FunctionVersion_2;
|
|
43274
|
+
branch?: _Core.FoundryBranch;
|
|
43275
|
+
}
|
|
43276
|
+
|
|
42523
43277
|
/**
|
|
42524
43278
|
* Could not streamingExecute the Query.
|
|
42525
43279
|
*
|
|
@@ -44443,7 +45197,7 @@ declare interface TrackedTransformationSuccessfulResponse {
|
|
|
44443
45197
|
declare type TrainerDescription = LooselyBrandedString_15<"TrainerDescription">;
|
|
44444
45198
|
|
|
44445
45199
|
/**
|
|
44446
|
-
* The
|
|
45200
|
+
* The Resource Identifier (RID) of a trainer.
|
|
44447
45201
|
*
|
|
44448
45202
|
* Log Safety: SAFE
|
|
44449
45203
|
*/
|
|
@@ -44493,11 +45247,11 @@ declare type TrainerOutputsSpecification = any;
|
|
|
44493
45247
|
declare type TrainerSchemaDefinition = any;
|
|
44494
45248
|
|
|
44495
45249
|
/**
|
|
44496
|
-
* The
|
|
45250
|
+
* The category of machine learning task a trainer is designed to solve. This determines the kind of modeling problem the trainer addresses and the shape of the inputs and outputs it expects.
|
|
44497
45251
|
*
|
|
44498
|
-
* Log Safety:
|
|
45252
|
+
* Log Safety: SAFE
|
|
44499
45253
|
*/
|
|
44500
|
-
declare type TrainerType =
|
|
45254
|
+
declare type TrainerType = "GENERIC" | "TIME_SERIES" | "TABULAR_REGRESSION" | "TABULAR_CLASSIFICATION" | "LLM_FINETUNING" | "VLM_FINETUNING";
|
|
44501
45255
|
|
|
44502
45256
|
/**
|
|
44503
45257
|
* A specific version identifier for a trainer.
|
|
@@ -45027,6 +45781,27 @@ declare interface TypeClass {
|
|
|
45027
45781
|
name: string;
|
|
45028
45782
|
}
|
|
45029
45783
|
|
|
45784
|
+
/**
|
|
45785
|
+
* Returns action types whose type class satisfies the given type class predicate.
|
|
45786
|
+
*
|
|
45787
|
+
* Log Safety: UNSAFE
|
|
45788
|
+
*/
|
|
45789
|
+
declare interface TypeClassesActionTypesQueryV2 {
|
|
45790
|
+
value: TypeClassPredicateV2;
|
|
45791
|
+
}
|
|
45792
|
+
|
|
45793
|
+
/**
|
|
45794
|
+
* A predicate for matching type classes. Matches a type class when kind, and name if provided, match the
|
|
45795
|
+
corresponding attribute of the type class. If name is empty, only kind is required to match. You can
|
|
45796
|
+
search for both parameter type classes and action type type classes.
|
|
45797
|
+
*
|
|
45798
|
+
* Log Safety: UNSAFE
|
|
45799
|
+
*/
|
|
45800
|
+
declare interface TypeClassPredicateV2 {
|
|
45801
|
+
kind: string;
|
|
45802
|
+
name?: string;
|
|
45803
|
+
}
|
|
45804
|
+
|
|
45030
45805
|
/**
|
|
45031
45806
|
* Input type does not match expected type in model API.
|
|
45032
45807
|
*
|
|
@@ -45237,7 +46012,7 @@ declare interface UnknownClassificationBannerDisplayType {
|
|
|
45237
46012
|
* Log Safety: UNSAFE
|
|
45238
46013
|
*/
|
|
45239
46014
|
declare interface UnknownColumnSpecIdInConfigColumnMappingError {
|
|
45240
|
-
datasetRid:
|
|
46015
|
+
datasetRid: _Core.DatasetRid;
|
|
45241
46016
|
columnTypeSpecId: ColumnTypeSpecId;
|
|
45242
46017
|
}
|
|
45243
46018
|
|
|
@@ -46754,7 +47529,7 @@ declare interface VersionNotFound {
|
|
|
46754
47529
|
export declare namespace Versions {
|
|
46755
47530
|
export {
|
|
46756
47531
|
deleteVersion,
|
|
46757
|
-
|
|
47532
|
+
list_37 as list,
|
|
46758
47533
|
get_69 as get,
|
|
46759
47534
|
upload_5 as upload
|
|
46760
47535
|
}
|
|
@@ -47201,6 +47976,22 @@ declare interface WavEncodeFormat {
|
|
|
47201
47976
|
audioChannelLayout?: AudioChannelLayout;
|
|
47202
47977
|
}
|
|
47203
47978
|
|
|
47979
|
+
/**
|
|
47980
|
+
* The unique resource identifier of a webhook, useful for interacting with other Foundry APIs.
|
|
47981
|
+
*
|
|
47982
|
+
* Log Safety: SAFE
|
|
47983
|
+
*/
|
|
47984
|
+
declare type WebhookRid = LooselyBrandedString_5<"WebhookRid">;
|
|
47985
|
+
|
|
47986
|
+
/**
|
|
47987
|
+
* Returns action types which reference the webhook with the given rid.
|
|
47988
|
+
*
|
|
47989
|
+
* Log Safety: SAFE
|
|
47990
|
+
*/
|
|
47991
|
+
declare interface WebhookRidActionTypesQueryV2 {
|
|
47992
|
+
value: WebhookRid;
|
|
47993
|
+
}
|
|
47994
|
+
|
|
47204
47995
|
/**
|
|
47205
47996
|
* WebP image format.
|
|
47206
47997
|
*
|
|
@@ -47648,6 +48439,17 @@ declare interface WorkflowIdentityFederation {
|
|
|
47648
48439
|
subject: ConnectionRid;
|
|
47649
48440
|
}
|
|
47650
48441
|
|
|
48442
|
+
/**
|
|
48443
|
+
* Yjs-backed schema storage. If schema is empty, the schema for this document type could not be
|
|
48444
|
+
found — this can happen for older document types that never persisted their schema; use the
|
|
48445
|
+
updateSchema endpoint to populate it.
|
|
48446
|
+
*
|
|
48447
|
+
* Log Safety: UNSAFE
|
|
48448
|
+
*/
|
|
48449
|
+
declare interface YjsSchema {
|
|
48450
|
+
schema?: DocumentTypeSchema;
|
|
48451
|
+
}
|
|
48452
|
+
|
|
47651
48453
|
/**
|
|
47652
48454
|
* Log Safety: UNSAFE
|
|
47653
48455
|
*/
|