@osdk/foundry 2.62.0 → 2.64.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 +836 -34
- 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
|
|
|
@@ -11981,8 +12168,7 @@ declare interface Document_3 {
|
|
|
11981
12168
|
*/
|
|
11982
12169
|
declare interface DocumentActivitySubscriptionRequest {
|
|
11983
12170
|
clientId: ClientId;
|
|
11984
|
-
|
|
11985
|
-
clientSupportedVersionRange?: ClientSupportedVersionRange;
|
|
12171
|
+
clientSupportedVersionRange: ClientSupportedVersionRange;
|
|
11986
12172
|
}
|
|
11987
12173
|
|
|
11988
12174
|
/**
|
|
@@ -12004,6 +12190,7 @@ declare interface DocumentCustomEventData {
|
|
|
12004
12190
|
eventType: string;
|
|
12005
12191
|
data: any;
|
|
12006
12192
|
version: number;
|
|
12193
|
+
schemaVersion?: number;
|
|
12007
12194
|
}
|
|
12008
12195
|
|
|
12009
12196
|
/**
|
|
@@ -12193,8 +12380,7 @@ declare interface DocumentPresenceChangeEvent {
|
|
|
12193
12380
|
*/
|
|
12194
12381
|
declare interface DocumentPresenceSubscriptionRequest {
|
|
12195
12382
|
clientId: ClientId;
|
|
12196
|
-
|
|
12197
|
-
clientSupportedVersionRange?: ClientSupportedVersionRange;
|
|
12383
|
+
clientSupportedVersionRange: ClientSupportedVersionRange;
|
|
12198
12384
|
}
|
|
12199
12385
|
|
|
12200
12386
|
/**
|
|
@@ -12206,8 +12392,7 @@ declare interface DocumentPublishMessage {
|
|
|
12206
12392
|
yjsUpdate: YjsUpdate;
|
|
12207
12393
|
editId: EditId;
|
|
12208
12394
|
clientId: ClientId;
|
|
12209
|
-
|
|
12210
|
-
clientSupportedVersionRange?: ClientSupportedVersionRange;
|
|
12395
|
+
clientSupportedVersionRange: ClientSupportedVersionRange;
|
|
12211
12396
|
documentUpdateSchemaVersion?: SchemaVersion;
|
|
12212
12397
|
description?: DocumentEditDescription;
|
|
12213
12398
|
}
|
|
@@ -12384,9 +12569,8 @@ declare interface DocumentToTextTransformation {
|
|
|
12384
12569
|
declare interface DocumentType_2 {
|
|
12385
12570
|
rid: DocumentTypeRid;
|
|
12386
12571
|
name: DocumentTypeName;
|
|
12387
|
-
|
|
12572
|
+
operationalVersion?: SchemaVersion;
|
|
12388
12573
|
fileSystemType?: FileSystemType;
|
|
12389
|
-
version?: SchemaVersion;
|
|
12390
12574
|
}
|
|
12391
12575
|
|
|
12392
12576
|
/**
|
|
@@ -12473,8 +12657,8 @@ declare interface DocumentTypeSchema {
|
|
|
12473
12657
|
declare interface DocumentUpdate {
|
|
12474
12658
|
update?: YjsUpdate;
|
|
12475
12659
|
clientId: ClientId;
|
|
12476
|
-
|
|
12477
|
-
|
|
12660
|
+
clientSupportedVersionRange: ClientSupportedVersionRange;
|
|
12661
|
+
updateSchemaVersion?: SchemaVersion;
|
|
12478
12662
|
revisionId: RevisionId;
|
|
12479
12663
|
baseRevisionId: RevisionId;
|
|
12480
12664
|
editIds: Array<EditId>;
|
|
@@ -12501,8 +12685,7 @@ declare type DocumentUpdateMessage = ({
|
|
|
12501
12685
|
*/
|
|
12502
12686
|
declare interface DocumentUpdateSubscriptionRequest {
|
|
12503
12687
|
clientId: ClientId;
|
|
12504
|
-
|
|
12505
|
-
clientSupportedVersionRange?: ClientSupportedVersionRange;
|
|
12688
|
+
clientSupportedVersionRange: ClientSupportedVersionRange;
|
|
12506
12689
|
lastRevisionId?: RevisionId;
|
|
12507
12690
|
}
|
|
12508
12691
|
|
|
@@ -13272,6 +13455,7 @@ declare interface ExamplePropertyTypeStatus {
|
|
|
13272
13455
|
|
|
13273
13456
|
/**
|
|
13274
13457
|
* Executes a Query using the given parameters. By default, the latest version of the Query is executed.
|
|
13458
|
+
* The latest version is the one that was most recently published, which may be a pre-release version.
|
|
13275
13459
|
*
|
|
13276
13460
|
* Optional parameters do not need to be supplied.
|
|
13277
13461
|
*
|
|
@@ -15796,17 +15980,47 @@ declare interface FullRowChangeDataCaptureConfiguration {
|
|
|
15796
15980
|
}
|
|
15797
15981
|
|
|
15798
15982
|
/**
|
|
15799
|
-
*
|
|
15983
|
+
* Matches strings which contain the given string or parts of the given string. The exact behaviour can vary
|
|
15984
|
+
depending on the attribute searched for due to optimized text analysis.
|
|
15985
|
+
*
|
|
15986
|
+
* Log Safety: UNSAFE
|
|
15987
|
+
*/
|
|
15988
|
+
declare interface FullTextStringContainsPredicate {
|
|
15989
|
+
value: string;
|
|
15990
|
+
}
|
|
15991
|
+
|
|
15992
|
+
/**
|
|
15993
|
+
* Matches strings representing the same sequence of characters as the given string.
|
|
15994
|
+
*
|
|
15995
|
+
* Log Safety: UNSAFE
|
|
15996
|
+
*/
|
|
15997
|
+
declare interface FullTextStringExactPredicate {
|
|
15998
|
+
value: string;
|
|
15999
|
+
}
|
|
16000
|
+
|
|
16001
|
+
/**
|
|
16002
|
+
* A predicate for matching strings.
|
|
16003
|
+
*
|
|
16004
|
+
* Log Safety: UNSAFE
|
|
16005
|
+
*/
|
|
16006
|
+
declare type FullTextStringPredicateV2 = ({
|
|
16007
|
+
type: "contains";
|
|
16008
|
+
} & FullTextStringContainsPredicate) | ({
|
|
16009
|
+
type: "exact";
|
|
16010
|
+
} & FullTextStringExactPredicate);
|
|
16011
|
+
|
|
16012
|
+
/**
|
|
16013
|
+
* A function already exists for this model.
|
|
15800
16014
|
*
|
|
15801
16015
|
* Log Safety: SAFE
|
|
15802
16016
|
*/
|
|
15803
16017
|
declare interface FunctionAlreadyExists {
|
|
15804
16018
|
errorCode: "CONFLICT";
|
|
15805
16019
|
errorName: "FunctionAlreadyExists";
|
|
15806
|
-
errorDescription: "A function already exists for this
|
|
16020
|
+
errorDescription: "A function already exists for this model.";
|
|
15807
16021
|
errorInstanceId: string;
|
|
15808
16022
|
parameters: {
|
|
15809
|
-
|
|
16023
|
+
modelRid: unknown;
|
|
15810
16024
|
};
|
|
15811
16025
|
}
|
|
15812
16026
|
|
|
@@ -15996,6 +16210,15 @@ declare type FunctionRid = LooselyBrandedString_5<"FunctionRid">;
|
|
|
15996
16210
|
*/
|
|
15997
16211
|
declare type FunctionRid_2 = LooselyBrandedString_6<"FunctionRid">;
|
|
15998
16212
|
|
|
16213
|
+
/**
|
|
16214
|
+
* Returns action types which use the function with the given rid.
|
|
16215
|
+
*
|
|
16216
|
+
* Log Safety: SAFE
|
|
16217
|
+
*/
|
|
16218
|
+
declare interface FunctionRidActionTypesQueryV2 {
|
|
16219
|
+
value: FunctionRid;
|
|
16220
|
+
}
|
|
16221
|
+
|
|
15999
16222
|
export declare namespace Functions {
|
|
16000
16223
|
export {
|
|
16001
16224
|
ArrayConstraint_2 as ArrayConstraint,
|
|
@@ -16040,6 +16263,7 @@ export declare namespace Functions {
|
|
|
16040
16263
|
RegexConstraint_2 as RegexConstraint,
|
|
16041
16264
|
RidConstraint_2 as RidConstraint,
|
|
16042
16265
|
RunningExecution,
|
|
16266
|
+
StreamingExecuteEventsQueryRequest,
|
|
16043
16267
|
StreamingExecuteQueryRequest,
|
|
16044
16268
|
StreamingExecuteQueryResponse,
|
|
16045
16269
|
StreamingQueryData,
|
|
@@ -16111,6 +16335,7 @@ export declare namespace Functions {
|
|
|
16111
16335
|
QueryRuntimeError_2 as QueryRuntimeError,
|
|
16112
16336
|
QueryTimeExceededLimit_2 as QueryTimeExceededLimit,
|
|
16113
16337
|
QueryVersionNotFound_2 as QueryVersionNotFound,
|
|
16338
|
+
StreamingExecuteEventsQueryPermissionDenied,
|
|
16114
16339
|
StreamingExecuteQueryPermissionDenied,
|
|
16115
16340
|
UnknownParameter_2 as UnknownParameter,
|
|
16116
16341
|
ValueTypeNotFound_2 as ValueTypeNotFound,
|
|
@@ -16166,6 +16391,7 @@ declare namespace _Functions {
|
|
|
16166
16391
|
RegexConstraint_2 as RegexConstraint,
|
|
16167
16392
|
RidConstraint_2 as RidConstraint,
|
|
16168
16393
|
RunningExecution,
|
|
16394
|
+
StreamingExecuteEventsQueryRequest,
|
|
16169
16395
|
StreamingExecuteQueryRequest,
|
|
16170
16396
|
StreamingExecuteQueryResponse,
|
|
16171
16397
|
StreamingQueryData,
|
|
@@ -16237,6 +16463,7 @@ declare namespace _Functions {
|
|
|
16237
16463
|
QueryRuntimeError_2 as QueryRuntimeError,
|
|
16238
16464
|
QueryTimeExceededLimit_2 as QueryTimeExceededLimit,
|
|
16239
16465
|
QueryVersionNotFound_2 as QueryVersionNotFound,
|
|
16466
|
+
StreamingExecuteEventsQueryPermissionDenied,
|
|
16240
16467
|
StreamingExecuteQueryPermissionDenied,
|
|
16241
16468
|
UnknownParameter_2 as UnknownParameter,
|
|
16242
16469
|
ValueTypeNotFound_2 as ValueTypeNotFound,
|
|
@@ -16293,6 +16520,7 @@ declare namespace _Functions_2 {
|
|
|
16293
16520
|
RegexConstraint_2 as RegexConstraint,
|
|
16294
16521
|
RidConstraint_2 as RidConstraint,
|
|
16295
16522
|
RunningExecution,
|
|
16523
|
+
StreamingExecuteEventsQueryRequest,
|
|
16296
16524
|
StreamingExecuteQueryRequest,
|
|
16297
16525
|
StreamingExecuteQueryResponse,
|
|
16298
16526
|
StreamingQueryData,
|
|
@@ -16356,6 +16584,24 @@ declare type FunctionVersion = LooselyBrandedString_5<"FunctionVersion">;
|
|
|
16356
16584
|
*/
|
|
16357
16585
|
declare type FunctionVersion_2 = LooselyBrandedString_6<"FunctionVersion">;
|
|
16358
16586
|
|
|
16587
|
+
/**
|
|
16588
|
+
* Fuzzy search is activated, which can help discover additional results based on small differences in
|
|
16589
|
+
spelling, although some additional results may be less relevant.
|
|
16590
|
+
*
|
|
16591
|
+
* Log Safety: SAFE
|
|
16592
|
+
*/
|
|
16593
|
+
declare interface FuzzinessAuto {
|
|
16594
|
+
}
|
|
16595
|
+
|
|
16596
|
+
/**
|
|
16597
|
+
* Fuzzy search is turned off. Matches generated by modifying one or more characters of the search query are
|
|
16598
|
+
not returned.
|
|
16599
|
+
*
|
|
16600
|
+
* Log Safety: SAFE
|
|
16601
|
+
*/
|
|
16602
|
+
declare interface FuzzinessOff {
|
|
16603
|
+
}
|
|
16604
|
+
|
|
16359
16605
|
/**
|
|
16360
16606
|
* Setting fuzzy to true allows approximate matching in search queries that support it.
|
|
16361
16607
|
*
|
|
@@ -17345,6 +17591,7 @@ property: _Ontologies_2.PropertyApiName,
|
|
|
17345
17591
|
$queryParams?: {
|
|
17346
17592
|
sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
|
|
17347
17593
|
sdkVersion?: _Ontologies_2.SdkVersion | undefined;
|
|
17594
|
+
branch?: _Core.FoundryBranch | undefined;
|
|
17348
17595
|
}
|
|
17349
17596
|
]): Promise<_Ontologies_2.AttachmentMetadataResponse>;
|
|
17350
17597
|
|
|
@@ -17365,6 +17612,7 @@ attachmentRid: _Ontologies_2.AttachmentRid,
|
|
|
17365
17612
|
$queryParams?: {
|
|
17366
17613
|
sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
|
|
17367
17614
|
sdkVersion?: _Ontologies_2.SdkVersion | undefined;
|
|
17615
|
+
branch?: _Core.FoundryBranch | undefined;
|
|
17368
17616
|
}
|
|
17369
17617
|
]): Promise<_Ontologies_2.AttachmentV2>;
|
|
17370
17618
|
|
|
@@ -17560,6 +17808,8 @@ $queryParams?: {
|
|
|
17560
17808
|
|
|
17561
17809
|
/* Excluded from this release type: getByRidBatch_3 */
|
|
17562
17810
|
|
|
17811
|
+
/* Excluded from this release type: getByRidBatch_4 */
|
|
17812
|
+
|
|
17563
17813
|
/**
|
|
17564
17814
|
* Could not getByRid the Query.
|
|
17565
17815
|
*
|
|
@@ -18286,6 +18536,38 @@ declare interface GetObjectTypeByRidBatchResponse {
|
|
|
18286
18536
|
data: Array<ObjectTypeV2>;
|
|
18287
18537
|
}
|
|
18288
18538
|
|
|
18539
|
+
/* Excluded from this release type: getOperationalVersion */
|
|
18540
|
+
|
|
18541
|
+
/**
|
|
18542
|
+
* Could not getOperationalVersion the DocumentType.
|
|
18543
|
+
*
|
|
18544
|
+
* Log Safety: SAFE
|
|
18545
|
+
*/
|
|
18546
|
+
declare interface GetOperationalVersionDocumentTypePermissionDenied {
|
|
18547
|
+
errorCode: "PERMISSION_DENIED";
|
|
18548
|
+
errorName: "GetOperationalVersionDocumentTypePermissionDenied";
|
|
18549
|
+
errorDescription: "Could not getOperationalVersion the DocumentType.";
|
|
18550
|
+
errorInstanceId: string;
|
|
18551
|
+
parameters: {};
|
|
18552
|
+
}
|
|
18553
|
+
|
|
18554
|
+
/**
|
|
18555
|
+
* Log Safety: UNSAFE
|
|
18556
|
+
*/
|
|
18557
|
+
declare interface GetOperationalVersionDocumentTypeRequest {
|
|
18558
|
+
documentTypeName: DocumentTypeName;
|
|
18559
|
+
ontologyRid: string;
|
|
18560
|
+
}
|
|
18561
|
+
|
|
18562
|
+
/**
|
|
18563
|
+
* Response containing the operational version for a document type.
|
|
18564
|
+
*
|
|
18565
|
+
* Log Safety: SAFE
|
|
18566
|
+
*/
|
|
18567
|
+
declare interface GetOperationalVersionResponse {
|
|
18568
|
+
operationalVersion?: SchemaVersion;
|
|
18569
|
+
}
|
|
18570
|
+
|
|
18289
18571
|
/* Excluded from this release type: getOutgoingInterfaceLinkType */
|
|
18290
18572
|
|
|
18291
18573
|
/**
|
|
@@ -18352,6 +18634,28 @@ declare interface GetProfilePictureOfUserPermissionDenied {
|
|
|
18352
18634
|
};
|
|
18353
18635
|
}
|
|
18354
18636
|
|
|
18637
|
+
/**
|
|
18638
|
+
* Log Safety: UNSAFE
|
|
18639
|
+
*/
|
|
18640
|
+
declare interface GetQueryTypeByRidBatchRequest {
|
|
18641
|
+
requests: Array<GetQueryTypeByRidBatchRequestElement>;
|
|
18642
|
+
}
|
|
18643
|
+
|
|
18644
|
+
/**
|
|
18645
|
+
* Log Safety: UNSAFE
|
|
18646
|
+
*/
|
|
18647
|
+
declare interface GetQueryTypeByRidBatchRequestElement {
|
|
18648
|
+
queryTypeRid: FunctionRid;
|
|
18649
|
+
functionVersion?: FunctionVersion;
|
|
18650
|
+
}
|
|
18651
|
+
|
|
18652
|
+
/**
|
|
18653
|
+
* Log Safety: UNSAFE
|
|
18654
|
+
*/
|
|
18655
|
+
declare interface GetQueryTypeByRidBatchResponse {
|
|
18656
|
+
data: Array<QueryTypeV2>;
|
|
18657
|
+
}
|
|
18658
|
+
|
|
18355
18659
|
/**
|
|
18356
18660
|
* Could not ragContext the Session.
|
|
18357
18661
|
*
|
|
@@ -19081,6 +19385,33 @@ declare interface GtQueryV2_2 {
|
|
|
19081
19385
|
value: PropertyValue_2;
|
|
19082
19386
|
}
|
|
19083
19387
|
|
|
19388
|
+
/**
|
|
19389
|
+
* Returns action types based on whether they have an action log.
|
|
19390
|
+
*
|
|
19391
|
+
* Log Safety: SAFE
|
|
19392
|
+
*/
|
|
19393
|
+
declare interface HasActionLogActionTypesQueryV2 {
|
|
19394
|
+
value: boolean;
|
|
19395
|
+
}
|
|
19396
|
+
|
|
19397
|
+
/**
|
|
19398
|
+
* Returns action types based on whether they have a notification.
|
|
19399
|
+
*
|
|
19400
|
+
* Log Safety: SAFE
|
|
19401
|
+
*/
|
|
19402
|
+
declare interface HasNotificationActionTypesQueryV2 {
|
|
19403
|
+
value: boolean;
|
|
19404
|
+
}
|
|
19405
|
+
|
|
19406
|
+
/**
|
|
19407
|
+
* Returns action types based on whether they reference a webhook.
|
|
19408
|
+
*
|
|
19409
|
+
* Log Safety: SAFE
|
|
19410
|
+
*/
|
|
19411
|
+
declare interface HasWebhookActionTypesQueryV2 {
|
|
19412
|
+
value: boolean;
|
|
19413
|
+
}
|
|
19414
|
+
|
|
19084
19415
|
/**
|
|
19085
19416
|
* Log Safety: UNSAFE
|
|
19086
19417
|
*/
|
|
@@ -19507,6 +19838,15 @@ declare type InputContext = ({
|
|
|
19507
19838
|
type: "objectContext";
|
|
19508
19839
|
} & ObjectContext);
|
|
19509
19840
|
|
|
19841
|
+
/**
|
|
19842
|
+
* Returns action types which reference the object type with the given rid as an input or product.
|
|
19843
|
+
*
|
|
19844
|
+
* Log Safety: SAFE
|
|
19845
|
+
*/
|
|
19846
|
+
declare interface InputObjectTypeRidActionTypesQueryV2 {
|
|
19847
|
+
value: ObjectTypeRid_2;
|
|
19848
|
+
}
|
|
19849
|
+
|
|
19510
19850
|
/**
|
|
19511
19851
|
* @deprecated Use `InQuery` in the `foundry.ontologies` package
|
|
19512
19852
|
*
|
|
@@ -23297,6 +23637,8 @@ $queryParams?: {
|
|
|
23297
23637
|
|
|
23298
23638
|
/* Excluded from this release type: list_35 */
|
|
23299
23639
|
|
|
23640
|
+
/* Excluded from this release type: list_36 */
|
|
23641
|
+
|
|
23300
23642
|
/**
|
|
23301
23643
|
* Lists all Versions.
|
|
23302
23644
|
*
|
|
@@ -23307,7 +23649,7 @@ $queryParams?: {
|
|
|
23307
23649
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
23308
23650
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions
|
|
23309
23651
|
*/
|
|
23310
|
-
declare function
|
|
23652
|
+
declare function list_37($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
|
|
23311
23653
|
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid,
|
|
23312
23654
|
$queryParams?: {
|
|
23313
23655
|
pageSize?: _Core.PageSize | undefined;
|
|
@@ -23315,7 +23657,7 @@ $queryParams?: {
|
|
|
23315
23657
|
}
|
|
23316
23658
|
]): Promise<_ThirdPartyApplications.ListVersionsResponse>;
|
|
23317
23659
|
|
|
23318
|
-
/* Excluded from this release type:
|
|
23660
|
+
/* Excluded from this release type: list_38 */
|
|
23319
23661
|
|
|
23320
23662
|
/**
|
|
23321
23663
|
* Lists all members (which can be a User or a Group) of a given Group.
|
|
@@ -23720,6 +24062,14 @@ declare interface ListLinkedObjectsResponseV2 {
|
|
|
23720
24062
|
nextPageToken?: _Core.PageToken;
|
|
23721
24063
|
}
|
|
23722
24064
|
|
|
24065
|
+
/**
|
|
24066
|
+
* Log Safety: UNSAFE
|
|
24067
|
+
*/
|
|
24068
|
+
declare interface ListLiveDeploymentsResponse {
|
|
24069
|
+
data: Array<LiveDeployment>;
|
|
24070
|
+
nextPageToken?: _Core.PageToken;
|
|
24071
|
+
}
|
|
24072
|
+
|
|
23723
24073
|
/**
|
|
23724
24074
|
* The provided token does not have permission to list audit log files.
|
|
23725
24075
|
*
|
|
@@ -24193,11 +24543,12 @@ declare interface ListVersionsResponse {
|
|
|
24193
24543
|
}
|
|
24194
24544
|
|
|
24195
24545
|
/**
|
|
24196
|
-
* Log Safety:
|
|
24546
|
+
* Log Safety: UNSAFE
|
|
24197
24547
|
*/
|
|
24198
24548
|
declare interface LiveDeployment {
|
|
24199
24549
|
rid: LiveDeploymentRid;
|
|
24200
24550
|
modelVersion: LiveDeploymentModelVersion;
|
|
24551
|
+
branch?: _Core.BranchName;
|
|
24201
24552
|
runtimeConfiguration: LiveDeploymentRuntimeConfiguration;
|
|
24202
24553
|
status: LiveDeploymentStatus;
|
|
24203
24554
|
}
|
|
@@ -24347,6 +24698,7 @@ $queryParams?: {
|
|
|
24347
24698
|
branch?: _Core.FoundryBranch | undefined;
|
|
24348
24699
|
transactionId?: _Ontologies_2.OntologyTransactionId | undefined;
|
|
24349
24700
|
scenarioRid?: _Ontologies_2.OntologyScenarioRid | undefined;
|
|
24701
|
+
executeInMemoryOnly?: boolean | undefined;
|
|
24350
24702
|
},
|
|
24351
24703
|
$headerParams?: {
|
|
24352
24704
|
traceParent?: _Core.TraceParent | undefined;
|
|
@@ -24437,7 +24789,6 @@ declare interface LoadObjectSetLinksRequestV2 {
|
|
|
24437
24789
|
links: Array<LinkTypeApiName_2>;
|
|
24438
24790
|
pageToken?: _Core.PageToken;
|
|
24439
24791
|
includeComputeUsage?: _Core.IncludeComputeUsage;
|
|
24440
|
-
executeInMemoryOnly?: boolean;
|
|
24441
24792
|
}
|
|
24442
24793
|
|
|
24443
24794
|
/**
|
|
@@ -24465,6 +24816,7 @@ declare interface LoadObjectSetRequestV2 {
|
|
|
24465
24816
|
loadPropertySecurities?: boolean;
|
|
24466
24817
|
snapshot?: boolean;
|
|
24467
24818
|
includeComputeUsage?: _Core.IncludeComputeUsage;
|
|
24819
|
+
referenceSigningOptions?: ReferenceSigningOptions;
|
|
24468
24820
|
}
|
|
24469
24821
|
|
|
24470
24822
|
/**
|
|
@@ -24496,6 +24848,7 @@ declare interface LoadObjectSetV2MultipleObjectTypesRequest {
|
|
|
24496
24848
|
loadPropertySecurities?: boolean;
|
|
24497
24849
|
snapshot?: boolean;
|
|
24498
24850
|
includeComputeUsage?: _Core.IncludeComputeUsage;
|
|
24851
|
+
referenceSigningOptions?: ReferenceSigningOptions;
|
|
24499
24852
|
}
|
|
24500
24853
|
|
|
24501
24854
|
/**
|
|
@@ -24536,7 +24889,7 @@ declare interface LoadObjectSetV2ObjectsOrInterfacesRequest {
|
|
|
24536
24889
|
pageSize?: _Core.PageSize;
|
|
24537
24890
|
excludeRid?: boolean;
|
|
24538
24891
|
snapshot?: boolean;
|
|
24539
|
-
|
|
24892
|
+
referenceSigningOptions?: ReferenceSigningOptions;
|
|
24540
24893
|
}
|
|
24541
24894
|
|
|
24542
24895
|
/**
|
|
@@ -24627,6 +24980,15 @@ declare type LogicRule = ({
|
|
|
24627
24980
|
type: "applyScenario";
|
|
24628
24981
|
} & ApplyScenarioRule);
|
|
24629
24982
|
|
|
24983
|
+
/**
|
|
24984
|
+
* Returns action types which contain a logic rule of the given type.
|
|
24985
|
+
*
|
|
24986
|
+
* Log Safety: SAFE
|
|
24987
|
+
*/
|
|
24988
|
+
declare interface LogicRuleActionTypesQueryV2 {
|
|
24989
|
+
value: ActionTypeLogicRuleTypeFilter;
|
|
24990
|
+
}
|
|
24991
|
+
|
|
24630
24992
|
/**
|
|
24631
24993
|
* 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.
|
|
24632
24994
|
*
|
|
@@ -26880,7 +27242,7 @@ declare interface ModelFunctionNotFound {
|
|
|
26880
27242
|
errorDescription: "The given ModelFunction could not be found.";
|
|
26881
27243
|
errorInstanceId: string;
|
|
26882
27244
|
parameters: {
|
|
26883
|
-
|
|
27245
|
+
modelRid: unknown;
|
|
26884
27246
|
};
|
|
26885
27247
|
}
|
|
26886
27248
|
|
|
@@ -26981,6 +27343,7 @@ export declare namespace Models {
|
|
|
26981
27343
|
InvalidResourceConfigurationError,
|
|
26982
27344
|
InvalidTabularFormatError,
|
|
26983
27345
|
JsonSchemaValidationError,
|
|
27346
|
+
ListLiveDeploymentsResponse,
|
|
26984
27347
|
ListModelStudioConfigVersionsResponse,
|
|
26985
27348
|
ListModelStudioRunsResponse,
|
|
26986
27349
|
ListModelStudioTrainersResponse,
|
|
@@ -27227,6 +27590,7 @@ declare namespace _Models {
|
|
|
27227
27590
|
InvalidResourceConfigurationError,
|
|
27228
27591
|
InvalidTabularFormatError,
|
|
27229
27592
|
JsonSchemaValidationError,
|
|
27593
|
+
ListLiveDeploymentsResponse,
|
|
27230
27594
|
ListModelStudioConfigVersionsResponse,
|
|
27231
27595
|
ListModelStudioRunsResponse,
|
|
27232
27596
|
ListModelStudioTrainersResponse,
|
|
@@ -28649,6 +29013,23 @@ declare interface ObjectEditHistoryEntry {
|
|
|
28649
29013
|
edit: EditHistoryEdit;
|
|
28650
29014
|
}
|
|
28651
29015
|
|
|
29016
|
+
/**
|
|
29017
|
+
* An add object edit in the transaction did not include the object's primary key property. The primary key
|
|
29018
|
+
property must be provided when creating an object.
|
|
29019
|
+
*
|
|
29020
|
+
* Log Safety: UNSAFE
|
|
29021
|
+
*/
|
|
29022
|
+
declare interface ObjectEditMissingPrimaryKey {
|
|
29023
|
+
errorCode: "INVALID_ARGUMENT";
|
|
29024
|
+
errorName: "ObjectEditMissingPrimaryKey";
|
|
29025
|
+
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.";
|
|
29026
|
+
errorInstanceId: string;
|
|
29027
|
+
parameters: {
|
|
29028
|
+
objectType: unknown;
|
|
29029
|
+
primaryKey: unknown;
|
|
29030
|
+
};
|
|
29031
|
+
}
|
|
29032
|
+
|
|
28652
29033
|
/**
|
|
28653
29034
|
* Log Safety: UNSAFE
|
|
28654
29035
|
*/
|
|
@@ -29686,14 +30067,26 @@ export declare namespace Ontologies {
|
|
|
29686
30067
|
ActionLogicRule,
|
|
29687
30068
|
ActionMode,
|
|
29688
30069
|
ActionParameterArrayType,
|
|
30070
|
+
ActionParameterRid,
|
|
29689
30071
|
ActionParameterType,
|
|
29690
30072
|
ActionParameterV2,
|
|
29691
30073
|
ActionResults,
|
|
29692
30074
|
ActionRid,
|
|
30075
|
+
ActionSectionRid,
|
|
29693
30076
|
ActionType,
|
|
29694
30077
|
ActionTypeApiName,
|
|
30078
|
+
ActionTypeApiNameActionTypesQueryV2,
|
|
30079
|
+
ActionTypeDescriptionActionTypesQueryV2,
|
|
30080
|
+
ActionTypeDisplayNameActionTypesQueryV2,
|
|
29695
30081
|
ActionTypeFullMetadata,
|
|
30082
|
+
ActionTypeFuzziness,
|
|
30083
|
+
ActionTypeLogicRuleTypeFilter,
|
|
30084
|
+
ActionTypePermissionModelFilter,
|
|
29696
30085
|
ActionTypeRid,
|
|
30086
|
+
ActionTypeRidActionTypesQueryV2,
|
|
30087
|
+
ActionTypeSearchJsonQueryV2,
|
|
30088
|
+
ActionTypeSortByV2,
|
|
30089
|
+
ActionTypeStatusFilter,
|
|
29697
30090
|
ActionTypeV2,
|
|
29698
30091
|
ActivePropertyTypeStatus,
|
|
29699
30092
|
AddLink,
|
|
@@ -29701,6 +30094,9 @@ export declare namespace Ontologies {
|
|
|
29701
30094
|
AddObject,
|
|
29702
30095
|
AddObjectEdit,
|
|
29703
30096
|
AddPropertyExpression,
|
|
30097
|
+
AffectedInterfaceTypeRidActionTypesQueryV2,
|
|
30098
|
+
AffectedLinkTypeRidActionTypesQueryV2,
|
|
30099
|
+
AffectedObjectTypeRidActionTypesQueryV2,
|
|
29704
30100
|
Affix,
|
|
29705
30101
|
AggregateObjectSetRequestV2,
|
|
29706
30102
|
AggregateObjectsRequest,
|
|
@@ -29737,6 +30133,7 @@ export declare namespace Ontologies {
|
|
|
29737
30133
|
AggregationV2,
|
|
29738
30134
|
AllOfRule,
|
|
29739
30135
|
AllTermsQuery,
|
|
30136
|
+
AndActionTypesQueryV2,
|
|
29740
30137
|
AndQuery,
|
|
29741
30138
|
AndQueryV2_2 as AndQueryV2,
|
|
29742
30139
|
AnyOfRule,
|
|
@@ -29884,10 +30281,16 @@ export declare namespace Ontologies {
|
|
|
29884
30281
|
FieldNameV1,
|
|
29885
30282
|
FilterValue,
|
|
29886
30283
|
FixedValuesMapKey,
|
|
30284
|
+
FullTextStringContainsPredicate,
|
|
30285
|
+
FullTextStringExactPredicate,
|
|
30286
|
+
FullTextStringPredicateV2,
|
|
29887
30287
|
FunctionLogicRule,
|
|
29888
30288
|
FunctionParameterName,
|
|
29889
30289
|
FunctionRid,
|
|
30290
|
+
FunctionRidActionTypesQueryV2,
|
|
29890
30291
|
FunctionVersion,
|
|
30292
|
+
FuzzinessAuto,
|
|
30293
|
+
FuzzinessOff,
|
|
29891
30294
|
Fuzzy,
|
|
29892
30295
|
FuzzyRule,
|
|
29893
30296
|
FuzzyV2_2 as FuzzyV2,
|
|
@@ -29909,6 +30312,9 @@ export declare namespace Ontologies {
|
|
|
29909
30312
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequest,
|
|
29910
30313
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequestElement,
|
|
29911
30314
|
GetOutgoingLinkTypesByObjectTypeRidBatchResponse,
|
|
30315
|
+
GetQueryTypeByRidBatchRequest,
|
|
30316
|
+
GetQueryTypeByRidBatchRequestElement,
|
|
30317
|
+
GetQueryTypeByRidBatchResponse,
|
|
29912
30318
|
GetSelectedPropertyOperation,
|
|
29913
30319
|
GreatestPropertyExpression,
|
|
29914
30320
|
GroupMemberConstraint,
|
|
@@ -29916,8 +30322,12 @@ export declare namespace Ontologies {
|
|
|
29916
30322
|
GteQueryV2_2 as GteQueryV2,
|
|
29917
30323
|
GtQuery,
|
|
29918
30324
|
GtQueryV2_2 as GtQueryV2,
|
|
30325
|
+
HasActionLogActionTypesQueryV2,
|
|
30326
|
+
HasNotificationActionTypesQueryV2,
|
|
30327
|
+
HasWebhookActionTypesQueryV2,
|
|
29919
30328
|
HumanReadableFormat,
|
|
29920
30329
|
Icon,
|
|
30330
|
+
InputObjectTypeRidActionTypesQueryV2,
|
|
29921
30331
|
InQuery_2 as InQuery,
|
|
29922
30332
|
IntegerValue,
|
|
29923
30333
|
InterfaceDefinedPropertyType,
|
|
@@ -30005,6 +30415,7 @@ export declare namespace Ontologies {
|
|
|
30005
30415
|
LoadObjectSetV2ObjectsOrInterfacesResponse,
|
|
30006
30416
|
LoadOntologyMetadataRequest,
|
|
30007
30417
|
LogicRule,
|
|
30418
|
+
LogicRuleActionTypesQueryV2,
|
|
30008
30419
|
LogicRuleArgument,
|
|
30009
30420
|
LongValue,
|
|
30010
30421
|
LteQuery,
|
|
@@ -30133,6 +30544,7 @@ export declare namespace Ontologies {
|
|
|
30133
30544
|
OntologyV2,
|
|
30134
30545
|
OntologyValueType,
|
|
30135
30546
|
OntologyVersion,
|
|
30547
|
+
OrActionTypesQueryV2,
|
|
30136
30548
|
OrderBy,
|
|
30137
30549
|
OrderByDirection_2 as OrderByDirection,
|
|
30138
30550
|
OrQuery,
|
|
@@ -30142,7 +30554,10 @@ export declare namespace Ontologies {
|
|
|
30142
30554
|
ParameterEvaluationResult,
|
|
30143
30555
|
ParameterId_2 as ParameterId,
|
|
30144
30556
|
ParameterIdArgument,
|
|
30557
|
+
ParameterNameActionTypesQueryV2,
|
|
30145
30558
|
ParameterOption,
|
|
30559
|
+
ParameterRidActionTypesQueryV2,
|
|
30560
|
+
PermissionModelActionTypesQueryV2,
|
|
30146
30561
|
PhraseQuery,
|
|
30147
30562
|
Plaintext,
|
|
30148
30563
|
PolygonValue_2 as PolygonValue,
|
|
@@ -30212,6 +30627,7 @@ export declare namespace Ontologies {
|
|
|
30212
30627
|
RangesConstraint,
|
|
30213
30628
|
Reason,
|
|
30214
30629
|
ReasonType,
|
|
30630
|
+
ReferenceSigningOptions,
|
|
30215
30631
|
ReferenceUpdate,
|
|
30216
30632
|
ReferenceValue,
|
|
30217
30633
|
RefreshObjectSet,
|
|
@@ -30228,11 +30644,15 @@ export declare namespace Ontologies {
|
|
|
30228
30644
|
RequestId,
|
|
30229
30645
|
ResolvedInterfacePropertyType,
|
|
30230
30646
|
ReturnEditsMode,
|
|
30647
|
+
RevertActionEnabledActionTypesQueryV2,
|
|
30231
30648
|
RidConstraint,
|
|
30232
30649
|
RollingAggregateWindowPoints,
|
|
30233
30650
|
SdkPackageName,
|
|
30234
30651
|
SdkPackageRid,
|
|
30235
30652
|
SdkVersion,
|
|
30653
|
+
SearchActionTypesOrderByV2,
|
|
30654
|
+
SearchActionTypesRequestV2,
|
|
30655
|
+
SearchActionTypesResponseV2,
|
|
30236
30656
|
SearchJsonQuery,
|
|
30237
30657
|
SearchJsonQueryV2_2 as SearchJsonQueryV2,
|
|
30238
30658
|
SearchObjectsForInterfaceRequest,
|
|
@@ -30245,6 +30665,7 @@ export declare namespace Ontologies {
|
|
|
30245
30665
|
SearchOrderByV2,
|
|
30246
30666
|
SearchOrdering,
|
|
30247
30667
|
SearchOrderingV2,
|
|
30668
|
+
SectionRidActionTypesQueryV2,
|
|
30248
30669
|
SecuredPropertyValue,
|
|
30249
30670
|
SelectedPropertyApiName,
|
|
30250
30671
|
SelectedPropertyApproximateDistinctAggregation,
|
|
@@ -30266,6 +30687,7 @@ export declare namespace Ontologies {
|
|
|
30266
30687
|
SpatialFilterMode,
|
|
30267
30688
|
StartsWithQuery_2 as StartsWithQuery,
|
|
30268
30689
|
StaticArgument,
|
|
30690
|
+
StatusActionTypesQueryV2,
|
|
30269
30691
|
StreamingOutputFormat,
|
|
30270
30692
|
StreamMessage,
|
|
30271
30693
|
StreamTimeSeriesPointsRequest,
|
|
@@ -30325,6 +30747,8 @@ export declare namespace Ontologies {
|
|
|
30325
30747
|
TransactionEdit,
|
|
30326
30748
|
TwoDimensionalAggregation,
|
|
30327
30749
|
TypeClass,
|
|
30750
|
+
TypeClassesActionTypesQueryV2,
|
|
30751
|
+
TypeClassPredicateV2,
|
|
30328
30752
|
TypeReferenceIdentifier,
|
|
30329
30753
|
UnevaluableConstraint,
|
|
30330
30754
|
UniqueIdentifierArgument,
|
|
@@ -30351,6 +30775,8 @@ export declare namespace Ontologies {
|
|
|
30351
30775
|
ValueTypeStructType,
|
|
30352
30776
|
ValueTypeUnionType,
|
|
30353
30777
|
VersionedQueryTypeApiName,
|
|
30778
|
+
WebhookRid,
|
|
30779
|
+
WebhookRidActionTypesQueryV2,
|
|
30354
30780
|
WildcardQuery,
|
|
30355
30781
|
WithinBoundingBoxPoint_2 as WithinBoundingBoxPoint,
|
|
30356
30782
|
WithinBoundingBoxQuery_2 as WithinBoundingBoxQuery,
|
|
@@ -30452,6 +30878,7 @@ export declare namespace Ontologies {
|
|
|
30452
30878
|
NotCipherFormatted,
|
|
30453
30879
|
ObjectAlreadyExists,
|
|
30454
30880
|
ObjectChanged,
|
|
30881
|
+
ObjectEditMissingPrimaryKey,
|
|
30455
30882
|
ObjectNotFound,
|
|
30456
30883
|
ObjectSetNotFound,
|
|
30457
30884
|
ObjectsExceededLimit,
|
|
@@ -30537,14 +30964,26 @@ declare namespace _Ontologies {
|
|
|
30537
30964
|
ActionLogicRule,
|
|
30538
30965
|
ActionMode,
|
|
30539
30966
|
ActionParameterArrayType,
|
|
30967
|
+
ActionParameterRid,
|
|
30540
30968
|
ActionParameterType,
|
|
30541
30969
|
ActionParameterV2,
|
|
30542
30970
|
ActionResults,
|
|
30543
30971
|
ActionRid,
|
|
30972
|
+
ActionSectionRid,
|
|
30544
30973
|
ActionType,
|
|
30545
30974
|
ActionTypeApiName,
|
|
30975
|
+
ActionTypeApiNameActionTypesQueryV2,
|
|
30976
|
+
ActionTypeDescriptionActionTypesQueryV2,
|
|
30977
|
+
ActionTypeDisplayNameActionTypesQueryV2,
|
|
30546
30978
|
ActionTypeFullMetadata,
|
|
30979
|
+
ActionTypeFuzziness,
|
|
30980
|
+
ActionTypeLogicRuleTypeFilter,
|
|
30981
|
+
ActionTypePermissionModelFilter,
|
|
30547
30982
|
ActionTypeRid,
|
|
30983
|
+
ActionTypeRidActionTypesQueryV2,
|
|
30984
|
+
ActionTypeSearchJsonQueryV2,
|
|
30985
|
+
ActionTypeSortByV2,
|
|
30986
|
+
ActionTypeStatusFilter,
|
|
30548
30987
|
ActionTypeV2,
|
|
30549
30988
|
ActivePropertyTypeStatus,
|
|
30550
30989
|
AddLink,
|
|
@@ -30552,6 +30991,9 @@ declare namespace _Ontologies {
|
|
|
30552
30991
|
AddObject,
|
|
30553
30992
|
AddObjectEdit,
|
|
30554
30993
|
AddPropertyExpression,
|
|
30994
|
+
AffectedInterfaceTypeRidActionTypesQueryV2,
|
|
30995
|
+
AffectedLinkTypeRidActionTypesQueryV2,
|
|
30996
|
+
AffectedObjectTypeRidActionTypesQueryV2,
|
|
30555
30997
|
Affix,
|
|
30556
30998
|
AggregateObjectSetRequestV2,
|
|
30557
30999
|
AggregateObjectsRequest,
|
|
@@ -30588,6 +31030,7 @@ declare namespace _Ontologies {
|
|
|
30588
31030
|
AggregationV2,
|
|
30589
31031
|
AllOfRule,
|
|
30590
31032
|
AllTermsQuery,
|
|
31033
|
+
AndActionTypesQueryV2,
|
|
30591
31034
|
AndQuery,
|
|
30592
31035
|
AndQueryV2_2 as AndQueryV2,
|
|
30593
31036
|
AnyOfRule,
|
|
@@ -30735,10 +31178,16 @@ declare namespace _Ontologies {
|
|
|
30735
31178
|
FieldNameV1,
|
|
30736
31179
|
FilterValue,
|
|
30737
31180
|
FixedValuesMapKey,
|
|
31181
|
+
FullTextStringContainsPredicate,
|
|
31182
|
+
FullTextStringExactPredicate,
|
|
31183
|
+
FullTextStringPredicateV2,
|
|
30738
31184
|
FunctionLogicRule,
|
|
30739
31185
|
FunctionParameterName,
|
|
30740
31186
|
FunctionRid,
|
|
31187
|
+
FunctionRidActionTypesQueryV2,
|
|
30741
31188
|
FunctionVersion,
|
|
31189
|
+
FuzzinessAuto,
|
|
31190
|
+
FuzzinessOff,
|
|
30742
31191
|
Fuzzy,
|
|
30743
31192
|
FuzzyRule,
|
|
30744
31193
|
FuzzyV2_2 as FuzzyV2,
|
|
@@ -30760,6 +31209,9 @@ declare namespace _Ontologies {
|
|
|
30760
31209
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequest,
|
|
30761
31210
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequestElement,
|
|
30762
31211
|
GetOutgoingLinkTypesByObjectTypeRidBatchResponse,
|
|
31212
|
+
GetQueryTypeByRidBatchRequest,
|
|
31213
|
+
GetQueryTypeByRidBatchRequestElement,
|
|
31214
|
+
GetQueryTypeByRidBatchResponse,
|
|
30763
31215
|
GetSelectedPropertyOperation,
|
|
30764
31216
|
GreatestPropertyExpression,
|
|
30765
31217
|
GroupMemberConstraint,
|
|
@@ -30767,8 +31219,12 @@ declare namespace _Ontologies {
|
|
|
30767
31219
|
GteQueryV2_2 as GteQueryV2,
|
|
30768
31220
|
GtQuery,
|
|
30769
31221
|
GtQueryV2_2 as GtQueryV2,
|
|
31222
|
+
HasActionLogActionTypesQueryV2,
|
|
31223
|
+
HasNotificationActionTypesQueryV2,
|
|
31224
|
+
HasWebhookActionTypesQueryV2,
|
|
30770
31225
|
HumanReadableFormat,
|
|
30771
31226
|
Icon,
|
|
31227
|
+
InputObjectTypeRidActionTypesQueryV2,
|
|
30772
31228
|
InQuery_2 as InQuery,
|
|
30773
31229
|
IntegerValue,
|
|
30774
31230
|
InterfaceDefinedPropertyType,
|
|
@@ -30856,6 +31312,7 @@ declare namespace _Ontologies {
|
|
|
30856
31312
|
LoadObjectSetV2ObjectsOrInterfacesResponse,
|
|
30857
31313
|
LoadOntologyMetadataRequest,
|
|
30858
31314
|
LogicRule,
|
|
31315
|
+
LogicRuleActionTypesQueryV2,
|
|
30859
31316
|
LogicRuleArgument,
|
|
30860
31317
|
LongValue,
|
|
30861
31318
|
LteQuery,
|
|
@@ -30984,6 +31441,7 @@ declare namespace _Ontologies {
|
|
|
30984
31441
|
OntologyV2,
|
|
30985
31442
|
OntologyValueType,
|
|
30986
31443
|
OntologyVersion,
|
|
31444
|
+
OrActionTypesQueryV2,
|
|
30987
31445
|
OrderBy,
|
|
30988
31446
|
OrderByDirection_2 as OrderByDirection,
|
|
30989
31447
|
OrQuery,
|
|
@@ -30993,7 +31451,10 @@ declare namespace _Ontologies {
|
|
|
30993
31451
|
ParameterEvaluationResult,
|
|
30994
31452
|
ParameterId_2 as ParameterId,
|
|
30995
31453
|
ParameterIdArgument,
|
|
31454
|
+
ParameterNameActionTypesQueryV2,
|
|
30996
31455
|
ParameterOption,
|
|
31456
|
+
ParameterRidActionTypesQueryV2,
|
|
31457
|
+
PermissionModelActionTypesQueryV2,
|
|
30997
31458
|
PhraseQuery,
|
|
30998
31459
|
Plaintext,
|
|
30999
31460
|
PolygonValue_2 as PolygonValue,
|
|
@@ -31063,6 +31524,7 @@ declare namespace _Ontologies {
|
|
|
31063
31524
|
RangesConstraint,
|
|
31064
31525
|
Reason,
|
|
31065
31526
|
ReasonType,
|
|
31527
|
+
ReferenceSigningOptions,
|
|
31066
31528
|
ReferenceUpdate,
|
|
31067
31529
|
ReferenceValue,
|
|
31068
31530
|
RefreshObjectSet,
|
|
@@ -31079,11 +31541,15 @@ declare namespace _Ontologies {
|
|
|
31079
31541
|
RequestId,
|
|
31080
31542
|
ResolvedInterfacePropertyType,
|
|
31081
31543
|
ReturnEditsMode,
|
|
31544
|
+
RevertActionEnabledActionTypesQueryV2,
|
|
31082
31545
|
RidConstraint,
|
|
31083
31546
|
RollingAggregateWindowPoints,
|
|
31084
31547
|
SdkPackageName,
|
|
31085
31548
|
SdkPackageRid,
|
|
31086
31549
|
SdkVersion,
|
|
31550
|
+
SearchActionTypesOrderByV2,
|
|
31551
|
+
SearchActionTypesRequestV2,
|
|
31552
|
+
SearchActionTypesResponseV2,
|
|
31087
31553
|
SearchJsonQuery,
|
|
31088
31554
|
SearchJsonQueryV2_2 as SearchJsonQueryV2,
|
|
31089
31555
|
SearchObjectsForInterfaceRequest,
|
|
@@ -31096,6 +31562,7 @@ declare namespace _Ontologies {
|
|
|
31096
31562
|
SearchOrderByV2,
|
|
31097
31563
|
SearchOrdering,
|
|
31098
31564
|
SearchOrderingV2,
|
|
31565
|
+
SectionRidActionTypesQueryV2,
|
|
31099
31566
|
SecuredPropertyValue,
|
|
31100
31567
|
SelectedPropertyApiName,
|
|
31101
31568
|
SelectedPropertyApproximateDistinctAggregation,
|
|
@@ -31117,6 +31584,7 @@ declare namespace _Ontologies {
|
|
|
31117
31584
|
SpatialFilterMode,
|
|
31118
31585
|
StartsWithQuery_2 as StartsWithQuery,
|
|
31119
31586
|
StaticArgument,
|
|
31587
|
+
StatusActionTypesQueryV2,
|
|
31120
31588
|
StreamingOutputFormat,
|
|
31121
31589
|
StreamMessage,
|
|
31122
31590
|
StreamTimeSeriesPointsRequest,
|
|
@@ -31176,6 +31644,8 @@ declare namespace _Ontologies {
|
|
|
31176
31644
|
TransactionEdit,
|
|
31177
31645
|
TwoDimensionalAggregation,
|
|
31178
31646
|
TypeClass,
|
|
31647
|
+
TypeClassesActionTypesQueryV2,
|
|
31648
|
+
TypeClassPredicateV2,
|
|
31179
31649
|
TypeReferenceIdentifier,
|
|
31180
31650
|
UnevaluableConstraint,
|
|
31181
31651
|
UniqueIdentifierArgument,
|
|
@@ -31202,6 +31672,8 @@ declare namespace _Ontologies {
|
|
|
31202
31672
|
ValueTypeStructType,
|
|
31203
31673
|
ValueTypeUnionType,
|
|
31204
31674
|
VersionedQueryTypeApiName,
|
|
31675
|
+
WebhookRid,
|
|
31676
|
+
WebhookRidActionTypesQueryV2,
|
|
31205
31677
|
WildcardQuery,
|
|
31206
31678
|
WithinBoundingBoxPoint_2 as WithinBoundingBoxPoint,
|
|
31207
31679
|
WithinBoundingBoxQuery_2 as WithinBoundingBoxQuery,
|
|
@@ -31303,6 +31775,7 @@ declare namespace _Ontologies {
|
|
|
31303
31775
|
NotCipherFormatted,
|
|
31304
31776
|
ObjectAlreadyExists,
|
|
31305
31777
|
ObjectChanged,
|
|
31778
|
+
ObjectEditMissingPrimaryKey,
|
|
31306
31779
|
ObjectNotFound,
|
|
31307
31780
|
ObjectSetNotFound,
|
|
31308
31781
|
ObjectsExceededLimit,
|
|
@@ -31389,14 +31862,26 @@ declare namespace _Ontologies_2 {
|
|
|
31389
31862
|
ActionLogicRule,
|
|
31390
31863
|
ActionMode,
|
|
31391
31864
|
ActionParameterArrayType,
|
|
31865
|
+
ActionParameterRid,
|
|
31392
31866
|
ActionParameterType,
|
|
31393
31867
|
ActionParameterV2,
|
|
31394
31868
|
ActionResults,
|
|
31395
31869
|
ActionRid,
|
|
31870
|
+
ActionSectionRid,
|
|
31396
31871
|
ActionType,
|
|
31397
31872
|
ActionTypeApiName,
|
|
31873
|
+
ActionTypeApiNameActionTypesQueryV2,
|
|
31874
|
+
ActionTypeDescriptionActionTypesQueryV2,
|
|
31875
|
+
ActionTypeDisplayNameActionTypesQueryV2,
|
|
31398
31876
|
ActionTypeFullMetadata,
|
|
31877
|
+
ActionTypeFuzziness,
|
|
31878
|
+
ActionTypeLogicRuleTypeFilter,
|
|
31879
|
+
ActionTypePermissionModelFilter,
|
|
31399
31880
|
ActionTypeRid,
|
|
31881
|
+
ActionTypeRidActionTypesQueryV2,
|
|
31882
|
+
ActionTypeSearchJsonQueryV2,
|
|
31883
|
+
ActionTypeSortByV2,
|
|
31884
|
+
ActionTypeStatusFilter,
|
|
31400
31885
|
ActionTypeV2,
|
|
31401
31886
|
ActivePropertyTypeStatus,
|
|
31402
31887
|
AddLink,
|
|
@@ -31404,6 +31889,9 @@ declare namespace _Ontologies_2 {
|
|
|
31404
31889
|
AddObject,
|
|
31405
31890
|
AddObjectEdit,
|
|
31406
31891
|
AddPropertyExpression,
|
|
31892
|
+
AffectedInterfaceTypeRidActionTypesQueryV2,
|
|
31893
|
+
AffectedLinkTypeRidActionTypesQueryV2,
|
|
31894
|
+
AffectedObjectTypeRidActionTypesQueryV2,
|
|
31407
31895
|
Affix,
|
|
31408
31896
|
AggregateObjectSetRequestV2,
|
|
31409
31897
|
AggregateObjectsRequest,
|
|
@@ -31440,6 +31928,7 @@ declare namespace _Ontologies_2 {
|
|
|
31440
31928
|
AggregationV2,
|
|
31441
31929
|
AllOfRule,
|
|
31442
31930
|
AllTermsQuery,
|
|
31931
|
+
AndActionTypesQueryV2,
|
|
31443
31932
|
AndQuery,
|
|
31444
31933
|
AndQueryV2_2 as AndQueryV2,
|
|
31445
31934
|
AnyOfRule,
|
|
@@ -31587,10 +32076,16 @@ declare namespace _Ontologies_2 {
|
|
|
31587
32076
|
FieldNameV1,
|
|
31588
32077
|
FilterValue,
|
|
31589
32078
|
FixedValuesMapKey,
|
|
32079
|
+
FullTextStringContainsPredicate,
|
|
32080
|
+
FullTextStringExactPredicate,
|
|
32081
|
+
FullTextStringPredicateV2,
|
|
31590
32082
|
FunctionLogicRule,
|
|
31591
32083
|
FunctionParameterName,
|
|
31592
32084
|
FunctionRid,
|
|
32085
|
+
FunctionRidActionTypesQueryV2,
|
|
31593
32086
|
FunctionVersion,
|
|
32087
|
+
FuzzinessAuto,
|
|
32088
|
+
FuzzinessOff,
|
|
31594
32089
|
Fuzzy,
|
|
31595
32090
|
FuzzyRule,
|
|
31596
32091
|
FuzzyV2_2 as FuzzyV2,
|
|
@@ -31612,6 +32107,9 @@ declare namespace _Ontologies_2 {
|
|
|
31612
32107
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequest,
|
|
31613
32108
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequestElement,
|
|
31614
32109
|
GetOutgoingLinkTypesByObjectTypeRidBatchResponse,
|
|
32110
|
+
GetQueryTypeByRidBatchRequest,
|
|
32111
|
+
GetQueryTypeByRidBatchRequestElement,
|
|
32112
|
+
GetQueryTypeByRidBatchResponse,
|
|
31615
32113
|
GetSelectedPropertyOperation,
|
|
31616
32114
|
GreatestPropertyExpression,
|
|
31617
32115
|
GroupMemberConstraint,
|
|
@@ -31619,8 +32117,12 @@ declare namespace _Ontologies_2 {
|
|
|
31619
32117
|
GteQueryV2_2 as GteQueryV2,
|
|
31620
32118
|
GtQuery,
|
|
31621
32119
|
GtQueryV2_2 as GtQueryV2,
|
|
32120
|
+
HasActionLogActionTypesQueryV2,
|
|
32121
|
+
HasNotificationActionTypesQueryV2,
|
|
32122
|
+
HasWebhookActionTypesQueryV2,
|
|
31622
32123
|
HumanReadableFormat,
|
|
31623
32124
|
Icon,
|
|
32125
|
+
InputObjectTypeRidActionTypesQueryV2,
|
|
31624
32126
|
InQuery_2 as InQuery,
|
|
31625
32127
|
IntegerValue,
|
|
31626
32128
|
InterfaceDefinedPropertyType,
|
|
@@ -31708,6 +32210,7 @@ declare namespace _Ontologies_2 {
|
|
|
31708
32210
|
LoadObjectSetV2ObjectsOrInterfacesResponse,
|
|
31709
32211
|
LoadOntologyMetadataRequest,
|
|
31710
32212
|
LogicRule,
|
|
32213
|
+
LogicRuleActionTypesQueryV2,
|
|
31711
32214
|
LogicRuleArgument,
|
|
31712
32215
|
LongValue,
|
|
31713
32216
|
LteQuery,
|
|
@@ -31836,6 +32339,7 @@ declare namespace _Ontologies_2 {
|
|
|
31836
32339
|
OntologyV2,
|
|
31837
32340
|
OntologyValueType,
|
|
31838
32341
|
OntologyVersion,
|
|
32342
|
+
OrActionTypesQueryV2,
|
|
31839
32343
|
OrderBy,
|
|
31840
32344
|
OrderByDirection_2 as OrderByDirection,
|
|
31841
32345
|
OrQuery,
|
|
@@ -31845,7 +32349,10 @@ declare namespace _Ontologies_2 {
|
|
|
31845
32349
|
ParameterEvaluationResult,
|
|
31846
32350
|
ParameterId_2 as ParameterId,
|
|
31847
32351
|
ParameterIdArgument,
|
|
32352
|
+
ParameterNameActionTypesQueryV2,
|
|
31848
32353
|
ParameterOption,
|
|
32354
|
+
ParameterRidActionTypesQueryV2,
|
|
32355
|
+
PermissionModelActionTypesQueryV2,
|
|
31849
32356
|
PhraseQuery,
|
|
31850
32357
|
Plaintext,
|
|
31851
32358
|
PolygonValue_2 as PolygonValue,
|
|
@@ -31915,6 +32422,7 @@ declare namespace _Ontologies_2 {
|
|
|
31915
32422
|
RangesConstraint,
|
|
31916
32423
|
Reason,
|
|
31917
32424
|
ReasonType,
|
|
32425
|
+
ReferenceSigningOptions,
|
|
31918
32426
|
ReferenceUpdate,
|
|
31919
32427
|
ReferenceValue,
|
|
31920
32428
|
RefreshObjectSet,
|
|
@@ -31931,11 +32439,15 @@ declare namespace _Ontologies_2 {
|
|
|
31931
32439
|
RequestId,
|
|
31932
32440
|
ResolvedInterfacePropertyType,
|
|
31933
32441
|
ReturnEditsMode,
|
|
32442
|
+
RevertActionEnabledActionTypesQueryV2,
|
|
31934
32443
|
RidConstraint,
|
|
31935
32444
|
RollingAggregateWindowPoints,
|
|
31936
32445
|
SdkPackageName,
|
|
31937
32446
|
SdkPackageRid,
|
|
31938
32447
|
SdkVersion,
|
|
32448
|
+
SearchActionTypesOrderByV2,
|
|
32449
|
+
SearchActionTypesRequestV2,
|
|
32450
|
+
SearchActionTypesResponseV2,
|
|
31939
32451
|
SearchJsonQuery,
|
|
31940
32452
|
SearchJsonQueryV2_2 as SearchJsonQueryV2,
|
|
31941
32453
|
SearchObjectsForInterfaceRequest,
|
|
@@ -31948,6 +32460,7 @@ declare namespace _Ontologies_2 {
|
|
|
31948
32460
|
SearchOrderByV2,
|
|
31949
32461
|
SearchOrdering,
|
|
31950
32462
|
SearchOrderingV2,
|
|
32463
|
+
SectionRidActionTypesQueryV2,
|
|
31951
32464
|
SecuredPropertyValue,
|
|
31952
32465
|
SelectedPropertyApiName,
|
|
31953
32466
|
SelectedPropertyApproximateDistinctAggregation,
|
|
@@ -31969,6 +32482,7 @@ declare namespace _Ontologies_2 {
|
|
|
31969
32482
|
SpatialFilterMode,
|
|
31970
32483
|
StartsWithQuery_2 as StartsWithQuery,
|
|
31971
32484
|
StaticArgument,
|
|
32485
|
+
StatusActionTypesQueryV2,
|
|
31972
32486
|
StreamingOutputFormat,
|
|
31973
32487
|
StreamMessage,
|
|
31974
32488
|
StreamTimeSeriesPointsRequest,
|
|
@@ -32028,6 +32542,8 @@ declare namespace _Ontologies_2 {
|
|
|
32028
32542
|
TransactionEdit,
|
|
32029
32543
|
TwoDimensionalAggregation,
|
|
32030
32544
|
TypeClass,
|
|
32545
|
+
TypeClassesActionTypesQueryV2,
|
|
32546
|
+
TypeClassPredicateV2,
|
|
32031
32547
|
TypeReferenceIdentifier,
|
|
32032
32548
|
UnevaluableConstraint,
|
|
32033
32549
|
UniqueIdentifierArgument,
|
|
@@ -32054,6 +32570,8 @@ declare namespace _Ontologies_2 {
|
|
|
32054
32570
|
ValueTypeStructType,
|
|
32055
32571
|
ValueTypeUnionType,
|
|
32056
32572
|
VersionedQueryTypeApiName,
|
|
32573
|
+
WebhookRid,
|
|
32574
|
+
WebhookRidActionTypesQueryV2,
|
|
32057
32575
|
WildcardQuery,
|
|
32058
32576
|
WithinBoundingBoxPoint_2 as WithinBoundingBoxPoint,
|
|
32059
32577
|
WithinBoundingBoxQuery_2 as WithinBoundingBoxQuery,
|
|
@@ -32397,7 +32915,7 @@ export declare namespace OntologyObjectsV2 {
|
|
|
32397
32915
|
export {
|
|
32398
32916
|
list_18 as list,
|
|
32399
32917
|
get_20 as get,
|
|
32400
|
-
|
|
32918
|
+
search_5 as search,
|
|
32401
32919
|
aggregate_3 as aggregate
|
|
32402
32920
|
}
|
|
32403
32921
|
}
|
|
@@ -32410,6 +32928,23 @@ declare interface OntologyObjectType {
|
|
|
32410
32928
|
objectTypeApiName: ObjectTypeApiName;
|
|
32411
32929
|
}
|
|
32412
32930
|
|
|
32931
|
+
/**
|
|
32932
|
+
* The ontology query referenced an object type RID that does not exist or
|
|
32933
|
+
is not visible to the requesting user. Verify the RID (e.g. via
|
|
32934
|
+
list-object-types or get-object-type-details) and retry.
|
|
32935
|
+
*
|
|
32936
|
+
* Log Safety: SAFE
|
|
32937
|
+
*/
|
|
32938
|
+
declare interface OntologyObjectTypeNotFound {
|
|
32939
|
+
errorCode: "NOT_FOUND";
|
|
32940
|
+
errorName: "OntologyObjectTypeNotFound";
|
|
32941
|
+
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.";
|
|
32942
|
+
errorInstanceId: string;
|
|
32943
|
+
parameters: {
|
|
32944
|
+
objectTypeRid: unknown;
|
|
32945
|
+
};
|
|
32946
|
+
}
|
|
32947
|
+
|
|
32413
32948
|
/**
|
|
32414
32949
|
* Log Safety: SAFE
|
|
32415
32950
|
*/
|
|
@@ -32438,6 +32973,60 @@ declare interface OntologyQueryFailed {
|
|
|
32438
32973
|
};
|
|
32439
32974
|
}
|
|
32440
32975
|
|
|
32976
|
+
/**
|
|
32977
|
+
* The ontology query references object types or link types indexed in Object
|
|
32978
|
+
Storage V1, which is incompatible with Ontology SQL. Migrate the entities
|
|
32979
|
+
to Object Storage V2 or remove them from the query.
|
|
32980
|
+
*
|
|
32981
|
+
* Log Safety: SAFE
|
|
32982
|
+
*/
|
|
32983
|
+
declare interface OntologyQueryInvalidObjectBackend {
|
|
32984
|
+
errorCode: "INVALID_ARGUMENT";
|
|
32985
|
+
errorName: "OntologyQueryInvalidObjectBackend";
|
|
32986
|
+
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.";
|
|
32987
|
+
errorInstanceId: string;
|
|
32988
|
+
parameters: {
|
|
32989
|
+
objectTypeRids: unknown;
|
|
32990
|
+
linkTypeRids: unknown;
|
|
32991
|
+
};
|
|
32992
|
+
}
|
|
32993
|
+
|
|
32994
|
+
/**
|
|
32995
|
+
* The query references too many objects across joins, link lookups, or
|
|
32996
|
+
sub-queries. Narrow the scope (add filters, reduce joins, restrict
|
|
32997
|
+
object types) and retry. The actual and maximum object counts are
|
|
32998
|
+
returned as parameters.
|
|
32999
|
+
*
|
|
33000
|
+
* Log Safety: SAFE
|
|
33001
|
+
*/
|
|
33002
|
+
declare interface OntologyQueryNestedObjectSetTooLarge {
|
|
33003
|
+
errorCode: "INVALID_ARGUMENT";
|
|
33004
|
+
errorName: "OntologyQueryNestedObjectSetTooLarge";
|
|
33005
|
+
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.";
|
|
33006
|
+
errorInstanceId: string;
|
|
33007
|
+
parameters: {
|
|
33008
|
+
nestedObjectSetSize: unknown;
|
|
33009
|
+
maxAllowedNestedObjectSetSize: unknown;
|
|
33010
|
+
};
|
|
33011
|
+
}
|
|
33012
|
+
|
|
33013
|
+
/**
|
|
33014
|
+
* A string column in the query result contains a value larger than
|
|
33015
|
+
the platform's per-cell size limit. Exclude or filter the column,
|
|
33016
|
+
or scope the query to skip the oversized rows.
|
|
33017
|
+
*
|
|
33018
|
+
* Log Safety: UNSAFE
|
|
33019
|
+
*/
|
|
33020
|
+
declare interface OntologyQueryStringColumnTooLong {
|
|
33021
|
+
errorCode: "INVALID_ARGUMENT";
|
|
33022
|
+
errorName: "OntologyQueryStringColumnTooLong";
|
|
33023
|
+
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.";
|
|
33024
|
+
errorInstanceId: string;
|
|
33025
|
+
parameters: {
|
|
33026
|
+
columnName: unknown;
|
|
33027
|
+
};
|
|
33028
|
+
}
|
|
33029
|
+
|
|
32441
33030
|
/**
|
|
32442
33031
|
* The unique Resource Identifier (RID) of the Ontology. To look up your Ontology RID, please use the
|
|
32443
33032
|
List ontologies endpoint or check the Ontology Manager.
|
|
@@ -32793,6 +33382,15 @@ declare interface OracleTableImportConfig {
|
|
|
32793
33382
|
initialIncrementalState?: TableImportInitialIncrementalState;
|
|
32794
33383
|
}
|
|
32795
33384
|
|
|
33385
|
+
/**
|
|
33386
|
+
* Returns action types where at least one query is satisfied. An empty list matches no action types.
|
|
33387
|
+
*
|
|
33388
|
+
* Log Safety: UNSAFE
|
|
33389
|
+
*/
|
|
33390
|
+
declare interface OrActionTypesQueryV2 {
|
|
33391
|
+
value: Array<ActionTypeSearchJsonQueryV2>;
|
|
33392
|
+
}
|
|
33393
|
+
|
|
32796
33394
|
export declare namespace Orchestration {
|
|
32797
33395
|
export {
|
|
32798
33396
|
AbortOnFailure,
|
|
@@ -33634,6 +34232,8 @@ export declare namespace Pack {
|
|
|
33634
34232
|
FieldValueUserRef,
|
|
33635
34233
|
FileSystemType,
|
|
33636
34234
|
FolderRid_5 as FolderRid,
|
|
34235
|
+
GetOperationalVersionDocumentTypeRequest,
|
|
34236
|
+
GetOperationalVersionResponse,
|
|
33637
34237
|
GroupId_2 as GroupId,
|
|
33638
34238
|
IntegerValue_2 as IntegerValue,
|
|
33639
34239
|
InterfaceTypeRid_2 as InterfaceTypeRid,
|
|
@@ -33678,6 +34278,7 @@ export declare namespace Pack {
|
|
|
33678
34278
|
DocumentTypeAlreadyExists,
|
|
33679
34279
|
DocumentTypeNameNotFound,
|
|
33680
34280
|
DocumentTypeNotFound,
|
|
34281
|
+
GetOperationalVersionDocumentTypePermissionDenied,
|
|
33681
34282
|
InvalidDocumentTypeName,
|
|
33682
34283
|
InvalidDocumentTypeVersion,
|
|
33683
34284
|
LoadByNameDocumentTypesPermissionDenied,
|
|
@@ -33773,6 +34374,8 @@ declare namespace _Pack {
|
|
|
33773
34374
|
FieldValueUserRef,
|
|
33774
34375
|
FileSystemType,
|
|
33775
34376
|
FolderRid_5 as FolderRid,
|
|
34377
|
+
GetOperationalVersionDocumentTypeRequest,
|
|
34378
|
+
GetOperationalVersionResponse,
|
|
33776
34379
|
GroupId_2 as GroupId,
|
|
33777
34380
|
IntegerValue_2 as IntegerValue,
|
|
33778
34381
|
InterfaceTypeRid_2 as InterfaceTypeRid,
|
|
@@ -34104,6 +34707,15 @@ declare type ParameterName = LooselyBrandedString_15<"ParameterName">;
|
|
|
34104
34707
|
*/
|
|
34105
34708
|
declare type ParameterName_2 = LooselyBrandedString_21<"ParameterName">;
|
|
34106
34709
|
|
|
34710
|
+
/**
|
|
34711
|
+
* Returns action types with a parameter whose name matches the given string predicate.
|
|
34712
|
+
*
|
|
34713
|
+
* Log Safety: UNSAFE
|
|
34714
|
+
*/
|
|
34715
|
+
declare interface ParameterNameActionTypesQueryV2 {
|
|
34716
|
+
value: FullTextStringPredicateV2;
|
|
34717
|
+
}
|
|
34718
|
+
|
|
34107
34719
|
/**
|
|
34108
34720
|
* A null parameter value.
|
|
34109
34721
|
*
|
|
@@ -34153,6 +34765,15 @@ declare interface ParameterOption {
|
|
|
34153
34765
|
value?: any;
|
|
34154
34766
|
}
|
|
34155
34767
|
|
|
34768
|
+
/**
|
|
34769
|
+
* Returns action types with a parameter matching the given parameter rid.
|
|
34770
|
+
*
|
|
34771
|
+
* Log Safety: SAFE
|
|
34772
|
+
*/
|
|
34773
|
+
declare interface ParameterRidActionTypesQueryV2 {
|
|
34774
|
+
value: ActionParameterRid;
|
|
34775
|
+
}
|
|
34776
|
+
|
|
34156
34777
|
/**
|
|
34157
34778
|
* Parameters for SQL query execution. Can be either unnamed positional parameters
|
|
34158
34779
|
or named parameter mappings.
|
|
@@ -34389,6 +35010,38 @@ declare interface ParquetExperimentSeriesPermissionDenied {
|
|
|
34389
35010
|
};
|
|
34390
35011
|
}
|
|
34391
35012
|
|
|
35013
|
+
/* Excluded from this release type: parseClassifications */
|
|
35014
|
+
|
|
35015
|
+
/**
|
|
35016
|
+
* The provided token does not have permission to parse the given classification strings.
|
|
35017
|
+
*
|
|
35018
|
+
* Log Safety: UNSAFE
|
|
35019
|
+
*/
|
|
35020
|
+
declare interface ParseClassificationsPermissionDenied {
|
|
35021
|
+
errorCode: "PERMISSION_DENIED";
|
|
35022
|
+
errorName: "ParseClassificationsPermissionDenied";
|
|
35023
|
+
errorDescription: "The provided token does not have permission to parse the given classification strings.";
|
|
35024
|
+
errorInstanceId: string;
|
|
35025
|
+
parameters: {
|
|
35026
|
+
classificationStrings: unknown;
|
|
35027
|
+
};
|
|
35028
|
+
}
|
|
35029
|
+
|
|
35030
|
+
/**
|
|
35031
|
+
* Log Safety: UNSAFE
|
|
35032
|
+
*/
|
|
35033
|
+
declare interface ParseClassificationsRequest {
|
|
35034
|
+
classificationStrings: Array<string>;
|
|
35035
|
+
}
|
|
35036
|
+
|
|
35037
|
+
/**
|
|
35038
|
+
* Log Safety: UNSAFE
|
|
35039
|
+
*/
|
|
35040
|
+
declare interface ParseClassificationsResponse {
|
|
35041
|
+
parsed: Record<string, Array<_Core.MarkingId>>;
|
|
35042
|
+
errors: Record<string, string>;
|
|
35043
|
+
}
|
|
35044
|
+
|
|
34392
35045
|
/**
|
|
34393
35046
|
* The identifier for a partition of a Foundry stream.
|
|
34394
35047
|
*
|
|
@@ -34570,6 +35223,15 @@ declare interface PermanentlyDeleteResourcePermissionDenied {
|
|
|
34570
35223
|
};
|
|
34571
35224
|
}
|
|
34572
35225
|
|
|
35226
|
+
/**
|
|
35227
|
+
* Returns action types with the given permission model.
|
|
35228
|
+
*
|
|
35229
|
+
* Log Safety: SAFE
|
|
35230
|
+
*/
|
|
35231
|
+
declare interface PermissionModelActionTypesQueryV2 {
|
|
35232
|
+
value: ActionTypePermissionModelFilter;
|
|
35233
|
+
}
|
|
35234
|
+
|
|
34573
35235
|
/**
|
|
34574
35236
|
* Authenticate as a user or service principal using a personal access token.
|
|
34575
35237
|
Read the official Databricks documentation for information on generating a personal access token.
|
|
@@ -34801,15 +35463,17 @@ declare type PresenceCollaborativeUpdate = ({
|
|
|
34801
35463
|
type: "presenceChangeEvent";
|
|
34802
35464
|
} & DocumentPresenceChangeEvent) | ({
|
|
34803
35465
|
type: "customPresenceEvent";
|
|
34804
|
-
} & CustomPresenceEvent)
|
|
35466
|
+
} & CustomPresenceEvent) | ({
|
|
35467
|
+
type: "error";
|
|
35468
|
+
} & ErrorMessage);
|
|
34805
35469
|
|
|
34806
35470
|
/**
|
|
34807
35471
|
* Log Safety: UNSAFE
|
|
34808
35472
|
*/
|
|
34809
35473
|
declare interface PresencePublishMessage {
|
|
35474
|
+
schemaVersion?: SchemaVersion;
|
|
34810
35475
|
messageType: PresencePublishMessageType;
|
|
34811
|
-
|
|
34812
|
-
clientSupportedVersionRange?: ClientSupportedVersionRange;
|
|
35476
|
+
clientSupportedVersionRange: ClientSupportedVersionRange;
|
|
34813
35477
|
}
|
|
34814
35478
|
|
|
34815
35479
|
/**
|
|
@@ -37014,6 +37678,7 @@ property: _Ontologies_2.PropertyApiName,
|
|
|
37014
37678
|
$queryParams?: {
|
|
37015
37679
|
sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
|
|
37016
37680
|
sdkVersion?: _Ontologies_2.SdkVersion | undefined;
|
|
37681
|
+
branch?: _Core.FoundryBranch | undefined;
|
|
37017
37682
|
}
|
|
37018
37683
|
]): Promise<Response>;
|
|
37019
37684
|
|
|
@@ -37036,6 +37701,7 @@ attachmentRid: _Ontologies_2.AttachmentRid,
|
|
|
37036
37701
|
$queryParams?: {
|
|
37037
37702
|
sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
|
|
37038
37703
|
sdkVersion?: _Ontologies_2.SdkVersion | undefined;
|
|
37704
|
+
branch?: _Core.FoundryBranch | undefined;
|
|
37039
37705
|
}
|
|
37040
37706
|
]): Promise<Response>;
|
|
37041
37707
|
|
|
@@ -37374,6 +38040,15 @@ declare type Reference = {
|
|
|
37374
38040
|
|
|
37375
38041
|
/* Excluded from this release type: reference */
|
|
37376
38042
|
|
|
38043
|
+
/**
|
|
38044
|
+
* Options for signing references in the response.
|
|
38045
|
+
*
|
|
38046
|
+
* Log Safety: SAFE
|
|
38047
|
+
*/
|
|
38048
|
+
declare interface ReferenceSigningOptions {
|
|
38049
|
+
signMediaReferences?: boolean;
|
|
38050
|
+
}
|
|
38051
|
+
|
|
37377
38052
|
/**
|
|
37378
38053
|
* The updated data value associated with an object instance's external reference. The object instance
|
|
37379
38054
|
is uniquely identified by an object type and a primary key. Note that the value of the property
|
|
@@ -38486,7 +39161,7 @@ declare interface ReplaceModelFunctionPermissionDenied {
|
|
|
38486
39161
|
errorDescription: "Could not replace the ModelFunction.";
|
|
38487
39162
|
errorInstanceId: string;
|
|
38488
39163
|
parameters: {
|
|
38489
|
-
|
|
39164
|
+
modelRid: unknown;
|
|
38490
39165
|
};
|
|
38491
39166
|
}
|
|
38492
39167
|
|
|
@@ -39581,6 +40256,15 @@ declare interface RetryDeadlineExceeded {
|
|
|
39581
40256
|
*/
|
|
39582
40257
|
declare type ReturnEditsMode = "ALL" | "ALL_V2_WITH_DELETIONS" | "NONE";
|
|
39583
40258
|
|
|
40259
|
+
/**
|
|
40260
|
+
* Returns action types based on whether they are revertible.
|
|
40261
|
+
*
|
|
40262
|
+
* Log Safety: SAFE
|
|
40263
|
+
*/
|
|
40264
|
+
declare interface RevertActionEnabledActionTypesQueryV2 {
|
|
40265
|
+
value: boolean;
|
|
40266
|
+
}
|
|
40267
|
+
|
|
39584
40268
|
/**
|
|
39585
40269
|
* A unique incrementing identifier that represents the order of edits applied by the server.
|
|
39586
40270
|
*
|
|
@@ -40425,6 +41109,8 @@ declare function search_2($ctx: SharedClient | SharedClientContext | SharedClien
|
|
|
40425
41109
|
|
|
40426
41110
|
/* Excluded from this release type: search_3 */
|
|
40427
41111
|
|
|
41112
|
+
/* Excluded from this release type: search_4 */
|
|
41113
|
+
|
|
40428
41114
|
/**
|
|
40429
41115
|
* Search for objects in the specified ontology and object type. The request body is used
|
|
40430
41116
|
* to filter objects based on the specified query. The supported queries are:
|
|
@@ -40455,7 +41141,7 @@ declare function search_2($ctx: SharedClient | SharedClientContext | SharedClien
|
|
|
40455
41141
|
* Required Scopes: [api:ontologies-read]
|
|
40456
41142
|
* URL: /v2/ontologies/{ontology}/objects/{objectType}/search
|
|
40457
41143
|
*/
|
|
40458
|
-
declare function
|
|
41144
|
+
declare function search_5($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
|
|
40459
41145
|
ontology: _Ontologies_2.OntologyIdentifier,
|
|
40460
41146
|
objectType: _Ontologies_2.ObjectTypeApiName,
|
|
40461
41147
|
$body: _Ontologies_2.SearchObjectsRequestV2,
|
|
@@ -40463,17 +41149,49 @@ $queryParams?: {
|
|
|
40463
41149
|
sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
|
|
40464
41150
|
sdkVersion?: _Ontologies_2.SdkVersion | undefined;
|
|
40465
41151
|
branch?: _Core.FoundryBranch | undefined;
|
|
41152
|
+
executeInMemoryOnly?: boolean | undefined;
|
|
40466
41153
|
}
|
|
40467
41154
|
]): Promise<_Ontologies_2.SearchObjectsResponseV2>;
|
|
40468
41155
|
|
|
40469
|
-
/* Excluded from this release type: search_5 */
|
|
40470
|
-
|
|
40471
41156
|
/* Excluded from this release type: search_6 */
|
|
40472
41157
|
|
|
40473
41158
|
/* Excluded from this release type: search_7 */
|
|
40474
41159
|
|
|
40475
41160
|
/* Excluded from this release type: search_8 */
|
|
40476
41161
|
|
|
41162
|
+
/* Excluded from this release type: search_9 */
|
|
41163
|
+
|
|
41164
|
+
/**
|
|
41165
|
+
* Specifies the ordering of action type search results by a field and an ordering direction. If not provided,
|
|
41166
|
+
results are ordered by relevance of the match.
|
|
41167
|
+
*
|
|
41168
|
+
* Log Safety: SAFE
|
|
41169
|
+
*/
|
|
41170
|
+
declare interface SearchActionTypesOrderByV2 {
|
|
41171
|
+
field: ActionTypeSortByV2;
|
|
41172
|
+
direction?: string;
|
|
41173
|
+
}
|
|
41174
|
+
|
|
41175
|
+
/**
|
|
41176
|
+
* Log Safety: UNSAFE
|
|
41177
|
+
*/
|
|
41178
|
+
declare interface SearchActionTypesRequestV2 {
|
|
41179
|
+
where?: ActionTypeSearchJsonQueryV2;
|
|
41180
|
+
orderBy?: SearchActionTypesOrderByV2;
|
|
41181
|
+
fuzziness?: ActionTypeFuzziness;
|
|
41182
|
+
pageSize?: _Core.PageSize;
|
|
41183
|
+
pageToken?: _Core.PageToken;
|
|
41184
|
+
}
|
|
41185
|
+
|
|
41186
|
+
/**
|
|
41187
|
+
* Log Safety: UNSAFE
|
|
41188
|
+
*/
|
|
41189
|
+
declare interface SearchActionTypesResponseV2 {
|
|
41190
|
+
data: Array<ActionTypeV2>;
|
|
41191
|
+
nextPageToken?: _Core.PageToken;
|
|
41192
|
+
totalCount: _Core.TotalCount;
|
|
41193
|
+
}
|
|
41194
|
+
|
|
40477
41195
|
/**
|
|
40478
41196
|
* Returns the Builds where every filter is satisfied.
|
|
40479
41197
|
*
|
|
@@ -41223,7 +41941,7 @@ declare interface SearchObjectsRequestV2 {
|
|
|
41223
41941
|
selectV2: Array<PropertyIdentifier_2>;
|
|
41224
41942
|
excludeRid?: boolean;
|
|
41225
41943
|
snapshot?: boolean;
|
|
41226
|
-
|
|
41944
|
+
referenceSigningOptions?: ReferenceSigningOptions;
|
|
41227
41945
|
}
|
|
41228
41946
|
|
|
41229
41947
|
/**
|
|
@@ -41378,6 +42096,15 @@ declare interface SecretsWithPlaintextValues {
|
|
|
41378
42096
|
secrets: Record<SecretName, PlaintextValue>;
|
|
41379
42097
|
}
|
|
41380
42098
|
|
|
42099
|
+
/**
|
|
42100
|
+
* Returns action types with a section matching the given section rid.
|
|
42101
|
+
*
|
|
42102
|
+
* Log Safety: SAFE
|
|
42103
|
+
*/
|
|
42104
|
+
declare interface SectionRidActionTypesQueryV2 {
|
|
42105
|
+
value: ActionSectionRid;
|
|
42106
|
+
}
|
|
42107
|
+
|
|
41381
42108
|
/**
|
|
41382
42109
|
* Log Safety: UNSAFE
|
|
41383
42110
|
*/
|
|
@@ -42315,7 +43042,11 @@ export declare namespace SqlQueries {
|
|
|
42315
43042
|
ExecuteSqlQueryPermissionDenied,
|
|
42316
43043
|
GetResultsSqlQueryPermissionDenied,
|
|
42317
43044
|
GetStatusSqlQueryPermissionDenied,
|
|
43045
|
+
OntologyObjectTypeNotFound,
|
|
42318
43046
|
OntologyQueryFailed,
|
|
43047
|
+
OntologyQueryInvalidObjectBackend,
|
|
43048
|
+
OntologyQueryNestedObjectSetTooLarge,
|
|
43049
|
+
OntologyQueryStringColumnTooLong,
|
|
42319
43050
|
QueryCanceled,
|
|
42320
43051
|
QueryFailed,
|
|
42321
43052
|
QueryParseError,
|
|
@@ -42433,6 +43164,15 @@ declare interface StaticArgument {
|
|
|
42433
43164
|
value: DataValue;
|
|
42434
43165
|
}
|
|
42435
43166
|
|
|
43167
|
+
/**
|
|
43168
|
+
* Returns action types with the given status.
|
|
43169
|
+
*
|
|
43170
|
+
* Log Safety: SAFE
|
|
43171
|
+
*/
|
|
43172
|
+
declare interface StatusActionTypesQueryV2 {
|
|
43173
|
+
value: ActionTypeStatusFilter;
|
|
43174
|
+
}
|
|
43175
|
+
|
|
42436
43176
|
/**
|
|
42437
43177
|
* Log Safety: UNSAFE
|
|
42438
43178
|
*/
|
|
@@ -42484,6 +43224,31 @@ declare interface StreamingContinueSessionRequest {
|
|
|
42484
43224
|
|
|
42485
43225
|
/* Excluded from this release type: streamingExecute */
|
|
42486
43226
|
|
|
43227
|
+
/**
|
|
43228
|
+
* Could not streamingExecuteEvents the Query.
|
|
43229
|
+
*
|
|
43230
|
+
* Log Safety: UNSAFE
|
|
43231
|
+
*/
|
|
43232
|
+
declare interface StreamingExecuteEventsQueryPermissionDenied {
|
|
43233
|
+
errorCode: "PERMISSION_DENIED";
|
|
43234
|
+
errorName: "StreamingExecuteEventsQueryPermissionDenied";
|
|
43235
|
+
errorDescription: "Could not streamingExecuteEvents the Query.";
|
|
43236
|
+
errorInstanceId: string;
|
|
43237
|
+
parameters: {
|
|
43238
|
+
queryApiName: unknown;
|
|
43239
|
+
};
|
|
43240
|
+
}
|
|
43241
|
+
|
|
43242
|
+
/**
|
|
43243
|
+
* Log Safety: UNSAFE
|
|
43244
|
+
*/
|
|
43245
|
+
declare interface StreamingExecuteEventsQueryRequest {
|
|
43246
|
+
ontology?: _Ontologies.OntologyIdentifier;
|
|
43247
|
+
parameters: Record<ParameterId_3, DataValue_2 | undefined>;
|
|
43248
|
+
version?: FunctionVersion_2;
|
|
43249
|
+
branch?: _Core.FoundryBranch;
|
|
43250
|
+
}
|
|
43251
|
+
|
|
42487
43252
|
/**
|
|
42488
43253
|
* Could not streamingExecute the Query.
|
|
42489
43254
|
*
|
|
@@ -44991,6 +45756,27 @@ declare interface TypeClass {
|
|
|
44991
45756
|
name: string;
|
|
44992
45757
|
}
|
|
44993
45758
|
|
|
45759
|
+
/**
|
|
45760
|
+
* Returns action types whose type class satisfies the given type class predicate.
|
|
45761
|
+
*
|
|
45762
|
+
* Log Safety: UNSAFE
|
|
45763
|
+
*/
|
|
45764
|
+
declare interface TypeClassesActionTypesQueryV2 {
|
|
45765
|
+
value: TypeClassPredicateV2;
|
|
45766
|
+
}
|
|
45767
|
+
|
|
45768
|
+
/**
|
|
45769
|
+
* A predicate for matching type classes. Matches a type class when kind, and name if provided, match the
|
|
45770
|
+
corresponding attribute of the type class. If name is empty, only kind is required to match. You can
|
|
45771
|
+
search for both parameter type classes and action type type classes.
|
|
45772
|
+
*
|
|
45773
|
+
* Log Safety: UNSAFE
|
|
45774
|
+
*/
|
|
45775
|
+
declare interface TypeClassPredicateV2 {
|
|
45776
|
+
kind: string;
|
|
45777
|
+
name?: string;
|
|
45778
|
+
}
|
|
45779
|
+
|
|
44994
45780
|
/**
|
|
44995
45781
|
* Input type does not match expected type in model API.
|
|
44996
45782
|
*
|
|
@@ -46718,7 +47504,7 @@ declare interface VersionNotFound {
|
|
|
46718
47504
|
export declare namespace Versions {
|
|
46719
47505
|
export {
|
|
46720
47506
|
deleteVersion,
|
|
46721
|
-
|
|
47507
|
+
list_37 as list,
|
|
46722
47508
|
get_69 as get,
|
|
46723
47509
|
upload_5 as upload
|
|
46724
47510
|
}
|
|
@@ -47165,6 +47951,22 @@ declare interface WavEncodeFormat {
|
|
|
47165
47951
|
audioChannelLayout?: AudioChannelLayout;
|
|
47166
47952
|
}
|
|
47167
47953
|
|
|
47954
|
+
/**
|
|
47955
|
+
* The unique resource identifier of a webhook, useful for interacting with other Foundry APIs.
|
|
47956
|
+
*
|
|
47957
|
+
* Log Safety: SAFE
|
|
47958
|
+
*/
|
|
47959
|
+
declare type WebhookRid = LooselyBrandedString_5<"WebhookRid">;
|
|
47960
|
+
|
|
47961
|
+
/**
|
|
47962
|
+
* Returns action types which reference the webhook with the given rid.
|
|
47963
|
+
*
|
|
47964
|
+
* Log Safety: SAFE
|
|
47965
|
+
*/
|
|
47966
|
+
declare interface WebhookRidActionTypesQueryV2 {
|
|
47967
|
+
value: WebhookRid;
|
|
47968
|
+
}
|
|
47969
|
+
|
|
47168
47970
|
/**
|
|
47169
47971
|
* WebP image format.
|
|
47170
47972
|
*
|