@osdk/foundry 2.63.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 +35 -0
- package/dist/foundry-public.d.ts +798 -32
- 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
|
}
|
|
@@ -12472,8 +12657,8 @@ declare interface DocumentTypeSchema {
|
|
|
12472
12657
|
declare interface DocumentUpdate {
|
|
12473
12658
|
update?: YjsUpdate;
|
|
12474
12659
|
clientId: ClientId;
|
|
12475
|
-
|
|
12476
|
-
|
|
12660
|
+
clientSupportedVersionRange: ClientSupportedVersionRange;
|
|
12661
|
+
updateSchemaVersion?: SchemaVersion;
|
|
12477
12662
|
revisionId: RevisionId;
|
|
12478
12663
|
baseRevisionId: RevisionId;
|
|
12479
12664
|
editIds: Array<EditId>;
|
|
@@ -12500,8 +12685,7 @@ declare type DocumentUpdateMessage = ({
|
|
|
12500
12685
|
*/
|
|
12501
12686
|
declare interface DocumentUpdateSubscriptionRequest {
|
|
12502
12687
|
clientId: ClientId;
|
|
12503
|
-
|
|
12504
|
-
clientSupportedVersionRange?: ClientSupportedVersionRange;
|
|
12688
|
+
clientSupportedVersionRange: ClientSupportedVersionRange;
|
|
12505
12689
|
lastRevisionId?: RevisionId;
|
|
12506
12690
|
}
|
|
12507
12691
|
|
|
@@ -13271,6 +13455,7 @@ declare interface ExamplePropertyTypeStatus {
|
|
|
13271
13455
|
|
|
13272
13456
|
/**
|
|
13273
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.
|
|
13274
13459
|
*
|
|
13275
13460
|
* Optional parameters do not need to be supplied.
|
|
13276
13461
|
*
|
|
@@ -15795,17 +15980,47 @@ declare interface FullRowChangeDataCaptureConfiguration {
|
|
|
15795
15980
|
}
|
|
15796
15981
|
|
|
15797
15982
|
/**
|
|
15798
|
-
*
|
|
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.
|
|
15799
16014
|
*
|
|
15800
16015
|
* Log Safety: SAFE
|
|
15801
16016
|
*/
|
|
15802
16017
|
declare interface FunctionAlreadyExists {
|
|
15803
16018
|
errorCode: "CONFLICT";
|
|
15804
16019
|
errorName: "FunctionAlreadyExists";
|
|
15805
|
-
errorDescription: "A function already exists for this
|
|
16020
|
+
errorDescription: "A function already exists for this model.";
|
|
15806
16021
|
errorInstanceId: string;
|
|
15807
16022
|
parameters: {
|
|
15808
|
-
|
|
16023
|
+
modelRid: unknown;
|
|
15809
16024
|
};
|
|
15810
16025
|
}
|
|
15811
16026
|
|
|
@@ -15995,6 +16210,15 @@ declare type FunctionRid = LooselyBrandedString_5<"FunctionRid">;
|
|
|
15995
16210
|
*/
|
|
15996
16211
|
declare type FunctionRid_2 = LooselyBrandedString_6<"FunctionRid">;
|
|
15997
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
|
+
|
|
15998
16222
|
export declare namespace Functions {
|
|
15999
16223
|
export {
|
|
16000
16224
|
ArrayConstraint_2 as ArrayConstraint,
|
|
@@ -16039,6 +16263,7 @@ export declare namespace Functions {
|
|
|
16039
16263
|
RegexConstraint_2 as RegexConstraint,
|
|
16040
16264
|
RidConstraint_2 as RidConstraint,
|
|
16041
16265
|
RunningExecution,
|
|
16266
|
+
StreamingExecuteEventsQueryRequest,
|
|
16042
16267
|
StreamingExecuteQueryRequest,
|
|
16043
16268
|
StreamingExecuteQueryResponse,
|
|
16044
16269
|
StreamingQueryData,
|
|
@@ -16110,6 +16335,7 @@ export declare namespace Functions {
|
|
|
16110
16335
|
QueryRuntimeError_2 as QueryRuntimeError,
|
|
16111
16336
|
QueryTimeExceededLimit_2 as QueryTimeExceededLimit,
|
|
16112
16337
|
QueryVersionNotFound_2 as QueryVersionNotFound,
|
|
16338
|
+
StreamingExecuteEventsQueryPermissionDenied,
|
|
16113
16339
|
StreamingExecuteQueryPermissionDenied,
|
|
16114
16340
|
UnknownParameter_2 as UnknownParameter,
|
|
16115
16341
|
ValueTypeNotFound_2 as ValueTypeNotFound,
|
|
@@ -16165,6 +16391,7 @@ declare namespace _Functions {
|
|
|
16165
16391
|
RegexConstraint_2 as RegexConstraint,
|
|
16166
16392
|
RidConstraint_2 as RidConstraint,
|
|
16167
16393
|
RunningExecution,
|
|
16394
|
+
StreamingExecuteEventsQueryRequest,
|
|
16168
16395
|
StreamingExecuteQueryRequest,
|
|
16169
16396
|
StreamingExecuteQueryResponse,
|
|
16170
16397
|
StreamingQueryData,
|
|
@@ -16236,6 +16463,7 @@ declare namespace _Functions {
|
|
|
16236
16463
|
QueryRuntimeError_2 as QueryRuntimeError,
|
|
16237
16464
|
QueryTimeExceededLimit_2 as QueryTimeExceededLimit,
|
|
16238
16465
|
QueryVersionNotFound_2 as QueryVersionNotFound,
|
|
16466
|
+
StreamingExecuteEventsQueryPermissionDenied,
|
|
16239
16467
|
StreamingExecuteQueryPermissionDenied,
|
|
16240
16468
|
UnknownParameter_2 as UnknownParameter,
|
|
16241
16469
|
ValueTypeNotFound_2 as ValueTypeNotFound,
|
|
@@ -16292,6 +16520,7 @@ declare namespace _Functions_2 {
|
|
|
16292
16520
|
RegexConstraint_2 as RegexConstraint,
|
|
16293
16521
|
RidConstraint_2 as RidConstraint,
|
|
16294
16522
|
RunningExecution,
|
|
16523
|
+
StreamingExecuteEventsQueryRequest,
|
|
16295
16524
|
StreamingExecuteQueryRequest,
|
|
16296
16525
|
StreamingExecuteQueryResponse,
|
|
16297
16526
|
StreamingQueryData,
|
|
@@ -16355,6 +16584,24 @@ declare type FunctionVersion = LooselyBrandedString_5<"FunctionVersion">;
|
|
|
16355
16584
|
*/
|
|
16356
16585
|
declare type FunctionVersion_2 = LooselyBrandedString_6<"FunctionVersion">;
|
|
16357
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
|
+
|
|
16358
16605
|
/**
|
|
16359
16606
|
* Setting fuzzy to true allows approximate matching in search queries that support it.
|
|
16360
16607
|
*
|
|
@@ -17344,6 +17591,7 @@ property: _Ontologies_2.PropertyApiName,
|
|
|
17344
17591
|
$queryParams?: {
|
|
17345
17592
|
sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
|
|
17346
17593
|
sdkVersion?: _Ontologies_2.SdkVersion | undefined;
|
|
17594
|
+
branch?: _Core.FoundryBranch | undefined;
|
|
17347
17595
|
}
|
|
17348
17596
|
]): Promise<_Ontologies_2.AttachmentMetadataResponse>;
|
|
17349
17597
|
|
|
@@ -17364,6 +17612,7 @@ attachmentRid: _Ontologies_2.AttachmentRid,
|
|
|
17364
17612
|
$queryParams?: {
|
|
17365
17613
|
sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
|
|
17366
17614
|
sdkVersion?: _Ontologies_2.SdkVersion | undefined;
|
|
17615
|
+
branch?: _Core.FoundryBranch | undefined;
|
|
17367
17616
|
}
|
|
17368
17617
|
]): Promise<_Ontologies_2.AttachmentV2>;
|
|
17369
17618
|
|
|
@@ -17559,6 +17808,8 @@ $queryParams?: {
|
|
|
17559
17808
|
|
|
17560
17809
|
/* Excluded from this release type: getByRidBatch_3 */
|
|
17561
17810
|
|
|
17811
|
+
/* Excluded from this release type: getByRidBatch_4 */
|
|
17812
|
+
|
|
17562
17813
|
/**
|
|
17563
17814
|
* Could not getByRid the Query.
|
|
17564
17815
|
*
|
|
@@ -18383,6 +18634,28 @@ declare interface GetProfilePictureOfUserPermissionDenied {
|
|
|
18383
18634
|
};
|
|
18384
18635
|
}
|
|
18385
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
|
+
|
|
18386
18659
|
/**
|
|
18387
18660
|
* Could not ragContext the Session.
|
|
18388
18661
|
*
|
|
@@ -19112,6 +19385,33 @@ declare interface GtQueryV2_2 {
|
|
|
19112
19385
|
value: PropertyValue_2;
|
|
19113
19386
|
}
|
|
19114
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
|
+
|
|
19115
19415
|
/**
|
|
19116
19416
|
* Log Safety: UNSAFE
|
|
19117
19417
|
*/
|
|
@@ -19538,6 +19838,15 @@ declare type InputContext = ({
|
|
|
19538
19838
|
type: "objectContext";
|
|
19539
19839
|
} & ObjectContext);
|
|
19540
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
|
+
|
|
19541
19850
|
/**
|
|
19542
19851
|
* @deprecated Use `InQuery` in the `foundry.ontologies` package
|
|
19543
19852
|
*
|
|
@@ -23328,6 +23637,8 @@ $queryParams?: {
|
|
|
23328
23637
|
|
|
23329
23638
|
/* Excluded from this release type: list_35 */
|
|
23330
23639
|
|
|
23640
|
+
/* Excluded from this release type: list_36 */
|
|
23641
|
+
|
|
23331
23642
|
/**
|
|
23332
23643
|
* Lists all Versions.
|
|
23333
23644
|
*
|
|
@@ -23338,7 +23649,7 @@ $queryParams?: {
|
|
|
23338
23649
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
23339
23650
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions
|
|
23340
23651
|
*/
|
|
23341
|
-
declare function
|
|
23652
|
+
declare function list_37($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
|
|
23342
23653
|
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid,
|
|
23343
23654
|
$queryParams?: {
|
|
23344
23655
|
pageSize?: _Core.PageSize | undefined;
|
|
@@ -23346,7 +23657,7 @@ $queryParams?: {
|
|
|
23346
23657
|
}
|
|
23347
23658
|
]): Promise<_ThirdPartyApplications.ListVersionsResponse>;
|
|
23348
23659
|
|
|
23349
|
-
/* Excluded from this release type:
|
|
23660
|
+
/* Excluded from this release type: list_38 */
|
|
23350
23661
|
|
|
23351
23662
|
/**
|
|
23352
23663
|
* Lists all members (which can be a User or a Group) of a given Group.
|
|
@@ -23751,6 +24062,14 @@ declare interface ListLinkedObjectsResponseV2 {
|
|
|
23751
24062
|
nextPageToken?: _Core.PageToken;
|
|
23752
24063
|
}
|
|
23753
24064
|
|
|
24065
|
+
/**
|
|
24066
|
+
* Log Safety: UNSAFE
|
|
24067
|
+
*/
|
|
24068
|
+
declare interface ListLiveDeploymentsResponse {
|
|
24069
|
+
data: Array<LiveDeployment>;
|
|
24070
|
+
nextPageToken?: _Core.PageToken;
|
|
24071
|
+
}
|
|
24072
|
+
|
|
23754
24073
|
/**
|
|
23755
24074
|
* The provided token does not have permission to list audit log files.
|
|
23756
24075
|
*
|
|
@@ -24224,11 +24543,12 @@ declare interface ListVersionsResponse {
|
|
|
24224
24543
|
}
|
|
24225
24544
|
|
|
24226
24545
|
/**
|
|
24227
|
-
* Log Safety:
|
|
24546
|
+
* Log Safety: UNSAFE
|
|
24228
24547
|
*/
|
|
24229
24548
|
declare interface LiveDeployment {
|
|
24230
24549
|
rid: LiveDeploymentRid;
|
|
24231
24550
|
modelVersion: LiveDeploymentModelVersion;
|
|
24551
|
+
branch?: _Core.BranchName;
|
|
24232
24552
|
runtimeConfiguration: LiveDeploymentRuntimeConfiguration;
|
|
24233
24553
|
status: LiveDeploymentStatus;
|
|
24234
24554
|
}
|
|
@@ -24378,6 +24698,7 @@ $queryParams?: {
|
|
|
24378
24698
|
branch?: _Core.FoundryBranch | undefined;
|
|
24379
24699
|
transactionId?: _Ontologies_2.OntologyTransactionId | undefined;
|
|
24380
24700
|
scenarioRid?: _Ontologies_2.OntologyScenarioRid | undefined;
|
|
24701
|
+
executeInMemoryOnly?: boolean | undefined;
|
|
24381
24702
|
},
|
|
24382
24703
|
$headerParams?: {
|
|
24383
24704
|
traceParent?: _Core.TraceParent | undefined;
|
|
@@ -24468,7 +24789,6 @@ declare interface LoadObjectSetLinksRequestV2 {
|
|
|
24468
24789
|
links: Array<LinkTypeApiName_2>;
|
|
24469
24790
|
pageToken?: _Core.PageToken;
|
|
24470
24791
|
includeComputeUsage?: _Core.IncludeComputeUsage;
|
|
24471
|
-
executeInMemoryOnly?: boolean;
|
|
24472
24792
|
}
|
|
24473
24793
|
|
|
24474
24794
|
/**
|
|
@@ -24496,6 +24816,7 @@ declare interface LoadObjectSetRequestV2 {
|
|
|
24496
24816
|
loadPropertySecurities?: boolean;
|
|
24497
24817
|
snapshot?: boolean;
|
|
24498
24818
|
includeComputeUsage?: _Core.IncludeComputeUsage;
|
|
24819
|
+
referenceSigningOptions?: ReferenceSigningOptions;
|
|
24499
24820
|
}
|
|
24500
24821
|
|
|
24501
24822
|
/**
|
|
@@ -24527,6 +24848,7 @@ declare interface LoadObjectSetV2MultipleObjectTypesRequest {
|
|
|
24527
24848
|
loadPropertySecurities?: boolean;
|
|
24528
24849
|
snapshot?: boolean;
|
|
24529
24850
|
includeComputeUsage?: _Core.IncludeComputeUsage;
|
|
24851
|
+
referenceSigningOptions?: ReferenceSigningOptions;
|
|
24530
24852
|
}
|
|
24531
24853
|
|
|
24532
24854
|
/**
|
|
@@ -24567,7 +24889,7 @@ declare interface LoadObjectSetV2ObjectsOrInterfacesRequest {
|
|
|
24567
24889
|
pageSize?: _Core.PageSize;
|
|
24568
24890
|
excludeRid?: boolean;
|
|
24569
24891
|
snapshot?: boolean;
|
|
24570
|
-
|
|
24892
|
+
referenceSigningOptions?: ReferenceSigningOptions;
|
|
24571
24893
|
}
|
|
24572
24894
|
|
|
24573
24895
|
/**
|
|
@@ -24658,6 +24980,15 @@ declare type LogicRule = ({
|
|
|
24658
24980
|
type: "applyScenario";
|
|
24659
24981
|
} & ApplyScenarioRule);
|
|
24660
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
|
+
|
|
24661
24992
|
/**
|
|
24662
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.
|
|
24663
24994
|
*
|
|
@@ -26911,7 +27242,7 @@ declare interface ModelFunctionNotFound {
|
|
|
26911
27242
|
errorDescription: "The given ModelFunction could not be found.";
|
|
26912
27243
|
errorInstanceId: string;
|
|
26913
27244
|
parameters: {
|
|
26914
|
-
|
|
27245
|
+
modelRid: unknown;
|
|
26915
27246
|
};
|
|
26916
27247
|
}
|
|
26917
27248
|
|
|
@@ -27012,6 +27343,7 @@ export declare namespace Models {
|
|
|
27012
27343
|
InvalidResourceConfigurationError,
|
|
27013
27344
|
InvalidTabularFormatError,
|
|
27014
27345
|
JsonSchemaValidationError,
|
|
27346
|
+
ListLiveDeploymentsResponse,
|
|
27015
27347
|
ListModelStudioConfigVersionsResponse,
|
|
27016
27348
|
ListModelStudioRunsResponse,
|
|
27017
27349
|
ListModelStudioTrainersResponse,
|
|
@@ -27258,6 +27590,7 @@ declare namespace _Models {
|
|
|
27258
27590
|
InvalidResourceConfigurationError,
|
|
27259
27591
|
InvalidTabularFormatError,
|
|
27260
27592
|
JsonSchemaValidationError,
|
|
27593
|
+
ListLiveDeploymentsResponse,
|
|
27261
27594
|
ListModelStudioConfigVersionsResponse,
|
|
27262
27595
|
ListModelStudioRunsResponse,
|
|
27263
27596
|
ListModelStudioTrainersResponse,
|
|
@@ -28680,6 +29013,23 @@ declare interface ObjectEditHistoryEntry {
|
|
|
28680
29013
|
edit: EditHistoryEdit;
|
|
28681
29014
|
}
|
|
28682
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
|
+
|
|
28683
29033
|
/**
|
|
28684
29034
|
* Log Safety: UNSAFE
|
|
28685
29035
|
*/
|
|
@@ -29717,14 +30067,26 @@ export declare namespace Ontologies {
|
|
|
29717
30067
|
ActionLogicRule,
|
|
29718
30068
|
ActionMode,
|
|
29719
30069
|
ActionParameterArrayType,
|
|
30070
|
+
ActionParameterRid,
|
|
29720
30071
|
ActionParameterType,
|
|
29721
30072
|
ActionParameterV2,
|
|
29722
30073
|
ActionResults,
|
|
29723
30074
|
ActionRid,
|
|
30075
|
+
ActionSectionRid,
|
|
29724
30076
|
ActionType,
|
|
29725
30077
|
ActionTypeApiName,
|
|
30078
|
+
ActionTypeApiNameActionTypesQueryV2,
|
|
30079
|
+
ActionTypeDescriptionActionTypesQueryV2,
|
|
30080
|
+
ActionTypeDisplayNameActionTypesQueryV2,
|
|
29726
30081
|
ActionTypeFullMetadata,
|
|
30082
|
+
ActionTypeFuzziness,
|
|
30083
|
+
ActionTypeLogicRuleTypeFilter,
|
|
30084
|
+
ActionTypePermissionModelFilter,
|
|
29727
30085
|
ActionTypeRid,
|
|
30086
|
+
ActionTypeRidActionTypesQueryV2,
|
|
30087
|
+
ActionTypeSearchJsonQueryV2,
|
|
30088
|
+
ActionTypeSortByV2,
|
|
30089
|
+
ActionTypeStatusFilter,
|
|
29728
30090
|
ActionTypeV2,
|
|
29729
30091
|
ActivePropertyTypeStatus,
|
|
29730
30092
|
AddLink,
|
|
@@ -29732,6 +30094,9 @@ export declare namespace Ontologies {
|
|
|
29732
30094
|
AddObject,
|
|
29733
30095
|
AddObjectEdit,
|
|
29734
30096
|
AddPropertyExpression,
|
|
30097
|
+
AffectedInterfaceTypeRidActionTypesQueryV2,
|
|
30098
|
+
AffectedLinkTypeRidActionTypesQueryV2,
|
|
30099
|
+
AffectedObjectTypeRidActionTypesQueryV2,
|
|
29735
30100
|
Affix,
|
|
29736
30101
|
AggregateObjectSetRequestV2,
|
|
29737
30102
|
AggregateObjectsRequest,
|
|
@@ -29768,6 +30133,7 @@ export declare namespace Ontologies {
|
|
|
29768
30133
|
AggregationV2,
|
|
29769
30134
|
AllOfRule,
|
|
29770
30135
|
AllTermsQuery,
|
|
30136
|
+
AndActionTypesQueryV2,
|
|
29771
30137
|
AndQuery,
|
|
29772
30138
|
AndQueryV2_2 as AndQueryV2,
|
|
29773
30139
|
AnyOfRule,
|
|
@@ -29915,10 +30281,16 @@ export declare namespace Ontologies {
|
|
|
29915
30281
|
FieldNameV1,
|
|
29916
30282
|
FilterValue,
|
|
29917
30283
|
FixedValuesMapKey,
|
|
30284
|
+
FullTextStringContainsPredicate,
|
|
30285
|
+
FullTextStringExactPredicate,
|
|
30286
|
+
FullTextStringPredicateV2,
|
|
29918
30287
|
FunctionLogicRule,
|
|
29919
30288
|
FunctionParameterName,
|
|
29920
30289
|
FunctionRid,
|
|
30290
|
+
FunctionRidActionTypesQueryV2,
|
|
29921
30291
|
FunctionVersion,
|
|
30292
|
+
FuzzinessAuto,
|
|
30293
|
+
FuzzinessOff,
|
|
29922
30294
|
Fuzzy,
|
|
29923
30295
|
FuzzyRule,
|
|
29924
30296
|
FuzzyV2_2 as FuzzyV2,
|
|
@@ -29940,6 +30312,9 @@ export declare namespace Ontologies {
|
|
|
29940
30312
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequest,
|
|
29941
30313
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequestElement,
|
|
29942
30314
|
GetOutgoingLinkTypesByObjectTypeRidBatchResponse,
|
|
30315
|
+
GetQueryTypeByRidBatchRequest,
|
|
30316
|
+
GetQueryTypeByRidBatchRequestElement,
|
|
30317
|
+
GetQueryTypeByRidBatchResponse,
|
|
29943
30318
|
GetSelectedPropertyOperation,
|
|
29944
30319
|
GreatestPropertyExpression,
|
|
29945
30320
|
GroupMemberConstraint,
|
|
@@ -29947,8 +30322,12 @@ export declare namespace Ontologies {
|
|
|
29947
30322
|
GteQueryV2_2 as GteQueryV2,
|
|
29948
30323
|
GtQuery,
|
|
29949
30324
|
GtQueryV2_2 as GtQueryV2,
|
|
30325
|
+
HasActionLogActionTypesQueryV2,
|
|
30326
|
+
HasNotificationActionTypesQueryV2,
|
|
30327
|
+
HasWebhookActionTypesQueryV2,
|
|
29950
30328
|
HumanReadableFormat,
|
|
29951
30329
|
Icon,
|
|
30330
|
+
InputObjectTypeRidActionTypesQueryV2,
|
|
29952
30331
|
InQuery_2 as InQuery,
|
|
29953
30332
|
IntegerValue,
|
|
29954
30333
|
InterfaceDefinedPropertyType,
|
|
@@ -30036,6 +30415,7 @@ export declare namespace Ontologies {
|
|
|
30036
30415
|
LoadObjectSetV2ObjectsOrInterfacesResponse,
|
|
30037
30416
|
LoadOntologyMetadataRequest,
|
|
30038
30417
|
LogicRule,
|
|
30418
|
+
LogicRuleActionTypesQueryV2,
|
|
30039
30419
|
LogicRuleArgument,
|
|
30040
30420
|
LongValue,
|
|
30041
30421
|
LteQuery,
|
|
@@ -30164,6 +30544,7 @@ export declare namespace Ontologies {
|
|
|
30164
30544
|
OntologyV2,
|
|
30165
30545
|
OntologyValueType,
|
|
30166
30546
|
OntologyVersion,
|
|
30547
|
+
OrActionTypesQueryV2,
|
|
30167
30548
|
OrderBy,
|
|
30168
30549
|
OrderByDirection_2 as OrderByDirection,
|
|
30169
30550
|
OrQuery,
|
|
@@ -30173,7 +30554,10 @@ export declare namespace Ontologies {
|
|
|
30173
30554
|
ParameterEvaluationResult,
|
|
30174
30555
|
ParameterId_2 as ParameterId,
|
|
30175
30556
|
ParameterIdArgument,
|
|
30557
|
+
ParameterNameActionTypesQueryV2,
|
|
30176
30558
|
ParameterOption,
|
|
30559
|
+
ParameterRidActionTypesQueryV2,
|
|
30560
|
+
PermissionModelActionTypesQueryV2,
|
|
30177
30561
|
PhraseQuery,
|
|
30178
30562
|
Plaintext,
|
|
30179
30563
|
PolygonValue_2 as PolygonValue,
|
|
@@ -30243,6 +30627,7 @@ export declare namespace Ontologies {
|
|
|
30243
30627
|
RangesConstraint,
|
|
30244
30628
|
Reason,
|
|
30245
30629
|
ReasonType,
|
|
30630
|
+
ReferenceSigningOptions,
|
|
30246
30631
|
ReferenceUpdate,
|
|
30247
30632
|
ReferenceValue,
|
|
30248
30633
|
RefreshObjectSet,
|
|
@@ -30259,11 +30644,15 @@ export declare namespace Ontologies {
|
|
|
30259
30644
|
RequestId,
|
|
30260
30645
|
ResolvedInterfacePropertyType,
|
|
30261
30646
|
ReturnEditsMode,
|
|
30647
|
+
RevertActionEnabledActionTypesQueryV2,
|
|
30262
30648
|
RidConstraint,
|
|
30263
30649
|
RollingAggregateWindowPoints,
|
|
30264
30650
|
SdkPackageName,
|
|
30265
30651
|
SdkPackageRid,
|
|
30266
30652
|
SdkVersion,
|
|
30653
|
+
SearchActionTypesOrderByV2,
|
|
30654
|
+
SearchActionTypesRequestV2,
|
|
30655
|
+
SearchActionTypesResponseV2,
|
|
30267
30656
|
SearchJsonQuery,
|
|
30268
30657
|
SearchJsonQueryV2_2 as SearchJsonQueryV2,
|
|
30269
30658
|
SearchObjectsForInterfaceRequest,
|
|
@@ -30276,6 +30665,7 @@ export declare namespace Ontologies {
|
|
|
30276
30665
|
SearchOrderByV2,
|
|
30277
30666
|
SearchOrdering,
|
|
30278
30667
|
SearchOrderingV2,
|
|
30668
|
+
SectionRidActionTypesQueryV2,
|
|
30279
30669
|
SecuredPropertyValue,
|
|
30280
30670
|
SelectedPropertyApiName,
|
|
30281
30671
|
SelectedPropertyApproximateDistinctAggregation,
|
|
@@ -30297,6 +30687,7 @@ export declare namespace Ontologies {
|
|
|
30297
30687
|
SpatialFilterMode,
|
|
30298
30688
|
StartsWithQuery_2 as StartsWithQuery,
|
|
30299
30689
|
StaticArgument,
|
|
30690
|
+
StatusActionTypesQueryV2,
|
|
30300
30691
|
StreamingOutputFormat,
|
|
30301
30692
|
StreamMessage,
|
|
30302
30693
|
StreamTimeSeriesPointsRequest,
|
|
@@ -30356,6 +30747,8 @@ export declare namespace Ontologies {
|
|
|
30356
30747
|
TransactionEdit,
|
|
30357
30748
|
TwoDimensionalAggregation,
|
|
30358
30749
|
TypeClass,
|
|
30750
|
+
TypeClassesActionTypesQueryV2,
|
|
30751
|
+
TypeClassPredicateV2,
|
|
30359
30752
|
TypeReferenceIdentifier,
|
|
30360
30753
|
UnevaluableConstraint,
|
|
30361
30754
|
UniqueIdentifierArgument,
|
|
@@ -30382,6 +30775,8 @@ export declare namespace Ontologies {
|
|
|
30382
30775
|
ValueTypeStructType,
|
|
30383
30776
|
ValueTypeUnionType,
|
|
30384
30777
|
VersionedQueryTypeApiName,
|
|
30778
|
+
WebhookRid,
|
|
30779
|
+
WebhookRidActionTypesQueryV2,
|
|
30385
30780
|
WildcardQuery,
|
|
30386
30781
|
WithinBoundingBoxPoint_2 as WithinBoundingBoxPoint,
|
|
30387
30782
|
WithinBoundingBoxQuery_2 as WithinBoundingBoxQuery,
|
|
@@ -30483,6 +30878,7 @@ export declare namespace Ontologies {
|
|
|
30483
30878
|
NotCipherFormatted,
|
|
30484
30879
|
ObjectAlreadyExists,
|
|
30485
30880
|
ObjectChanged,
|
|
30881
|
+
ObjectEditMissingPrimaryKey,
|
|
30486
30882
|
ObjectNotFound,
|
|
30487
30883
|
ObjectSetNotFound,
|
|
30488
30884
|
ObjectsExceededLimit,
|
|
@@ -30568,14 +30964,26 @@ declare namespace _Ontologies {
|
|
|
30568
30964
|
ActionLogicRule,
|
|
30569
30965
|
ActionMode,
|
|
30570
30966
|
ActionParameterArrayType,
|
|
30967
|
+
ActionParameterRid,
|
|
30571
30968
|
ActionParameterType,
|
|
30572
30969
|
ActionParameterV2,
|
|
30573
30970
|
ActionResults,
|
|
30574
30971
|
ActionRid,
|
|
30972
|
+
ActionSectionRid,
|
|
30575
30973
|
ActionType,
|
|
30576
30974
|
ActionTypeApiName,
|
|
30975
|
+
ActionTypeApiNameActionTypesQueryV2,
|
|
30976
|
+
ActionTypeDescriptionActionTypesQueryV2,
|
|
30977
|
+
ActionTypeDisplayNameActionTypesQueryV2,
|
|
30577
30978
|
ActionTypeFullMetadata,
|
|
30979
|
+
ActionTypeFuzziness,
|
|
30980
|
+
ActionTypeLogicRuleTypeFilter,
|
|
30981
|
+
ActionTypePermissionModelFilter,
|
|
30578
30982
|
ActionTypeRid,
|
|
30983
|
+
ActionTypeRidActionTypesQueryV2,
|
|
30984
|
+
ActionTypeSearchJsonQueryV2,
|
|
30985
|
+
ActionTypeSortByV2,
|
|
30986
|
+
ActionTypeStatusFilter,
|
|
30579
30987
|
ActionTypeV2,
|
|
30580
30988
|
ActivePropertyTypeStatus,
|
|
30581
30989
|
AddLink,
|
|
@@ -30583,6 +30991,9 @@ declare namespace _Ontologies {
|
|
|
30583
30991
|
AddObject,
|
|
30584
30992
|
AddObjectEdit,
|
|
30585
30993
|
AddPropertyExpression,
|
|
30994
|
+
AffectedInterfaceTypeRidActionTypesQueryV2,
|
|
30995
|
+
AffectedLinkTypeRidActionTypesQueryV2,
|
|
30996
|
+
AffectedObjectTypeRidActionTypesQueryV2,
|
|
30586
30997
|
Affix,
|
|
30587
30998
|
AggregateObjectSetRequestV2,
|
|
30588
30999
|
AggregateObjectsRequest,
|
|
@@ -30619,6 +31030,7 @@ declare namespace _Ontologies {
|
|
|
30619
31030
|
AggregationV2,
|
|
30620
31031
|
AllOfRule,
|
|
30621
31032
|
AllTermsQuery,
|
|
31033
|
+
AndActionTypesQueryV2,
|
|
30622
31034
|
AndQuery,
|
|
30623
31035
|
AndQueryV2_2 as AndQueryV2,
|
|
30624
31036
|
AnyOfRule,
|
|
@@ -30766,10 +31178,16 @@ declare namespace _Ontologies {
|
|
|
30766
31178
|
FieldNameV1,
|
|
30767
31179
|
FilterValue,
|
|
30768
31180
|
FixedValuesMapKey,
|
|
31181
|
+
FullTextStringContainsPredicate,
|
|
31182
|
+
FullTextStringExactPredicate,
|
|
31183
|
+
FullTextStringPredicateV2,
|
|
30769
31184
|
FunctionLogicRule,
|
|
30770
31185
|
FunctionParameterName,
|
|
30771
31186
|
FunctionRid,
|
|
31187
|
+
FunctionRidActionTypesQueryV2,
|
|
30772
31188
|
FunctionVersion,
|
|
31189
|
+
FuzzinessAuto,
|
|
31190
|
+
FuzzinessOff,
|
|
30773
31191
|
Fuzzy,
|
|
30774
31192
|
FuzzyRule,
|
|
30775
31193
|
FuzzyV2_2 as FuzzyV2,
|
|
@@ -30791,6 +31209,9 @@ declare namespace _Ontologies {
|
|
|
30791
31209
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequest,
|
|
30792
31210
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequestElement,
|
|
30793
31211
|
GetOutgoingLinkTypesByObjectTypeRidBatchResponse,
|
|
31212
|
+
GetQueryTypeByRidBatchRequest,
|
|
31213
|
+
GetQueryTypeByRidBatchRequestElement,
|
|
31214
|
+
GetQueryTypeByRidBatchResponse,
|
|
30794
31215
|
GetSelectedPropertyOperation,
|
|
30795
31216
|
GreatestPropertyExpression,
|
|
30796
31217
|
GroupMemberConstraint,
|
|
@@ -30798,8 +31219,12 @@ declare namespace _Ontologies {
|
|
|
30798
31219
|
GteQueryV2_2 as GteQueryV2,
|
|
30799
31220
|
GtQuery,
|
|
30800
31221
|
GtQueryV2_2 as GtQueryV2,
|
|
31222
|
+
HasActionLogActionTypesQueryV2,
|
|
31223
|
+
HasNotificationActionTypesQueryV2,
|
|
31224
|
+
HasWebhookActionTypesQueryV2,
|
|
30801
31225
|
HumanReadableFormat,
|
|
30802
31226
|
Icon,
|
|
31227
|
+
InputObjectTypeRidActionTypesQueryV2,
|
|
30803
31228
|
InQuery_2 as InQuery,
|
|
30804
31229
|
IntegerValue,
|
|
30805
31230
|
InterfaceDefinedPropertyType,
|
|
@@ -30887,6 +31312,7 @@ declare namespace _Ontologies {
|
|
|
30887
31312
|
LoadObjectSetV2ObjectsOrInterfacesResponse,
|
|
30888
31313
|
LoadOntologyMetadataRequest,
|
|
30889
31314
|
LogicRule,
|
|
31315
|
+
LogicRuleActionTypesQueryV2,
|
|
30890
31316
|
LogicRuleArgument,
|
|
30891
31317
|
LongValue,
|
|
30892
31318
|
LteQuery,
|
|
@@ -31015,6 +31441,7 @@ declare namespace _Ontologies {
|
|
|
31015
31441
|
OntologyV2,
|
|
31016
31442
|
OntologyValueType,
|
|
31017
31443
|
OntologyVersion,
|
|
31444
|
+
OrActionTypesQueryV2,
|
|
31018
31445
|
OrderBy,
|
|
31019
31446
|
OrderByDirection_2 as OrderByDirection,
|
|
31020
31447
|
OrQuery,
|
|
@@ -31024,7 +31451,10 @@ declare namespace _Ontologies {
|
|
|
31024
31451
|
ParameterEvaluationResult,
|
|
31025
31452
|
ParameterId_2 as ParameterId,
|
|
31026
31453
|
ParameterIdArgument,
|
|
31454
|
+
ParameterNameActionTypesQueryV2,
|
|
31027
31455
|
ParameterOption,
|
|
31456
|
+
ParameterRidActionTypesQueryV2,
|
|
31457
|
+
PermissionModelActionTypesQueryV2,
|
|
31028
31458
|
PhraseQuery,
|
|
31029
31459
|
Plaintext,
|
|
31030
31460
|
PolygonValue_2 as PolygonValue,
|
|
@@ -31094,6 +31524,7 @@ declare namespace _Ontologies {
|
|
|
31094
31524
|
RangesConstraint,
|
|
31095
31525
|
Reason,
|
|
31096
31526
|
ReasonType,
|
|
31527
|
+
ReferenceSigningOptions,
|
|
31097
31528
|
ReferenceUpdate,
|
|
31098
31529
|
ReferenceValue,
|
|
31099
31530
|
RefreshObjectSet,
|
|
@@ -31110,11 +31541,15 @@ declare namespace _Ontologies {
|
|
|
31110
31541
|
RequestId,
|
|
31111
31542
|
ResolvedInterfacePropertyType,
|
|
31112
31543
|
ReturnEditsMode,
|
|
31544
|
+
RevertActionEnabledActionTypesQueryV2,
|
|
31113
31545
|
RidConstraint,
|
|
31114
31546
|
RollingAggregateWindowPoints,
|
|
31115
31547
|
SdkPackageName,
|
|
31116
31548
|
SdkPackageRid,
|
|
31117
31549
|
SdkVersion,
|
|
31550
|
+
SearchActionTypesOrderByV2,
|
|
31551
|
+
SearchActionTypesRequestV2,
|
|
31552
|
+
SearchActionTypesResponseV2,
|
|
31118
31553
|
SearchJsonQuery,
|
|
31119
31554
|
SearchJsonQueryV2_2 as SearchJsonQueryV2,
|
|
31120
31555
|
SearchObjectsForInterfaceRequest,
|
|
@@ -31127,6 +31562,7 @@ declare namespace _Ontologies {
|
|
|
31127
31562
|
SearchOrderByV2,
|
|
31128
31563
|
SearchOrdering,
|
|
31129
31564
|
SearchOrderingV2,
|
|
31565
|
+
SectionRidActionTypesQueryV2,
|
|
31130
31566
|
SecuredPropertyValue,
|
|
31131
31567
|
SelectedPropertyApiName,
|
|
31132
31568
|
SelectedPropertyApproximateDistinctAggregation,
|
|
@@ -31148,6 +31584,7 @@ declare namespace _Ontologies {
|
|
|
31148
31584
|
SpatialFilterMode,
|
|
31149
31585
|
StartsWithQuery_2 as StartsWithQuery,
|
|
31150
31586
|
StaticArgument,
|
|
31587
|
+
StatusActionTypesQueryV2,
|
|
31151
31588
|
StreamingOutputFormat,
|
|
31152
31589
|
StreamMessage,
|
|
31153
31590
|
StreamTimeSeriesPointsRequest,
|
|
@@ -31207,6 +31644,8 @@ declare namespace _Ontologies {
|
|
|
31207
31644
|
TransactionEdit,
|
|
31208
31645
|
TwoDimensionalAggregation,
|
|
31209
31646
|
TypeClass,
|
|
31647
|
+
TypeClassesActionTypesQueryV2,
|
|
31648
|
+
TypeClassPredicateV2,
|
|
31210
31649
|
TypeReferenceIdentifier,
|
|
31211
31650
|
UnevaluableConstraint,
|
|
31212
31651
|
UniqueIdentifierArgument,
|
|
@@ -31233,6 +31672,8 @@ declare namespace _Ontologies {
|
|
|
31233
31672
|
ValueTypeStructType,
|
|
31234
31673
|
ValueTypeUnionType,
|
|
31235
31674
|
VersionedQueryTypeApiName,
|
|
31675
|
+
WebhookRid,
|
|
31676
|
+
WebhookRidActionTypesQueryV2,
|
|
31236
31677
|
WildcardQuery,
|
|
31237
31678
|
WithinBoundingBoxPoint_2 as WithinBoundingBoxPoint,
|
|
31238
31679
|
WithinBoundingBoxQuery_2 as WithinBoundingBoxQuery,
|
|
@@ -31334,6 +31775,7 @@ declare namespace _Ontologies {
|
|
|
31334
31775
|
NotCipherFormatted,
|
|
31335
31776
|
ObjectAlreadyExists,
|
|
31336
31777
|
ObjectChanged,
|
|
31778
|
+
ObjectEditMissingPrimaryKey,
|
|
31337
31779
|
ObjectNotFound,
|
|
31338
31780
|
ObjectSetNotFound,
|
|
31339
31781
|
ObjectsExceededLimit,
|
|
@@ -31420,14 +31862,26 @@ declare namespace _Ontologies_2 {
|
|
|
31420
31862
|
ActionLogicRule,
|
|
31421
31863
|
ActionMode,
|
|
31422
31864
|
ActionParameterArrayType,
|
|
31865
|
+
ActionParameterRid,
|
|
31423
31866
|
ActionParameterType,
|
|
31424
31867
|
ActionParameterV2,
|
|
31425
31868
|
ActionResults,
|
|
31426
31869
|
ActionRid,
|
|
31870
|
+
ActionSectionRid,
|
|
31427
31871
|
ActionType,
|
|
31428
31872
|
ActionTypeApiName,
|
|
31873
|
+
ActionTypeApiNameActionTypesQueryV2,
|
|
31874
|
+
ActionTypeDescriptionActionTypesQueryV2,
|
|
31875
|
+
ActionTypeDisplayNameActionTypesQueryV2,
|
|
31429
31876
|
ActionTypeFullMetadata,
|
|
31877
|
+
ActionTypeFuzziness,
|
|
31878
|
+
ActionTypeLogicRuleTypeFilter,
|
|
31879
|
+
ActionTypePermissionModelFilter,
|
|
31430
31880
|
ActionTypeRid,
|
|
31881
|
+
ActionTypeRidActionTypesQueryV2,
|
|
31882
|
+
ActionTypeSearchJsonQueryV2,
|
|
31883
|
+
ActionTypeSortByV2,
|
|
31884
|
+
ActionTypeStatusFilter,
|
|
31431
31885
|
ActionTypeV2,
|
|
31432
31886
|
ActivePropertyTypeStatus,
|
|
31433
31887
|
AddLink,
|
|
@@ -31435,6 +31889,9 @@ declare namespace _Ontologies_2 {
|
|
|
31435
31889
|
AddObject,
|
|
31436
31890
|
AddObjectEdit,
|
|
31437
31891
|
AddPropertyExpression,
|
|
31892
|
+
AffectedInterfaceTypeRidActionTypesQueryV2,
|
|
31893
|
+
AffectedLinkTypeRidActionTypesQueryV2,
|
|
31894
|
+
AffectedObjectTypeRidActionTypesQueryV2,
|
|
31438
31895
|
Affix,
|
|
31439
31896
|
AggregateObjectSetRequestV2,
|
|
31440
31897
|
AggregateObjectsRequest,
|
|
@@ -31471,6 +31928,7 @@ declare namespace _Ontologies_2 {
|
|
|
31471
31928
|
AggregationV2,
|
|
31472
31929
|
AllOfRule,
|
|
31473
31930
|
AllTermsQuery,
|
|
31931
|
+
AndActionTypesQueryV2,
|
|
31474
31932
|
AndQuery,
|
|
31475
31933
|
AndQueryV2_2 as AndQueryV2,
|
|
31476
31934
|
AnyOfRule,
|
|
@@ -31618,10 +32076,16 @@ declare namespace _Ontologies_2 {
|
|
|
31618
32076
|
FieldNameV1,
|
|
31619
32077
|
FilterValue,
|
|
31620
32078
|
FixedValuesMapKey,
|
|
32079
|
+
FullTextStringContainsPredicate,
|
|
32080
|
+
FullTextStringExactPredicate,
|
|
32081
|
+
FullTextStringPredicateV2,
|
|
31621
32082
|
FunctionLogicRule,
|
|
31622
32083
|
FunctionParameterName,
|
|
31623
32084
|
FunctionRid,
|
|
32085
|
+
FunctionRidActionTypesQueryV2,
|
|
31624
32086
|
FunctionVersion,
|
|
32087
|
+
FuzzinessAuto,
|
|
32088
|
+
FuzzinessOff,
|
|
31625
32089
|
Fuzzy,
|
|
31626
32090
|
FuzzyRule,
|
|
31627
32091
|
FuzzyV2_2 as FuzzyV2,
|
|
@@ -31643,6 +32107,9 @@ declare namespace _Ontologies_2 {
|
|
|
31643
32107
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequest,
|
|
31644
32108
|
GetOutgoingLinkTypesByObjectTypeRidBatchRequestElement,
|
|
31645
32109
|
GetOutgoingLinkTypesByObjectTypeRidBatchResponse,
|
|
32110
|
+
GetQueryTypeByRidBatchRequest,
|
|
32111
|
+
GetQueryTypeByRidBatchRequestElement,
|
|
32112
|
+
GetQueryTypeByRidBatchResponse,
|
|
31646
32113
|
GetSelectedPropertyOperation,
|
|
31647
32114
|
GreatestPropertyExpression,
|
|
31648
32115
|
GroupMemberConstraint,
|
|
@@ -31650,8 +32117,12 @@ declare namespace _Ontologies_2 {
|
|
|
31650
32117
|
GteQueryV2_2 as GteQueryV2,
|
|
31651
32118
|
GtQuery,
|
|
31652
32119
|
GtQueryV2_2 as GtQueryV2,
|
|
32120
|
+
HasActionLogActionTypesQueryV2,
|
|
32121
|
+
HasNotificationActionTypesQueryV2,
|
|
32122
|
+
HasWebhookActionTypesQueryV2,
|
|
31653
32123
|
HumanReadableFormat,
|
|
31654
32124
|
Icon,
|
|
32125
|
+
InputObjectTypeRidActionTypesQueryV2,
|
|
31655
32126
|
InQuery_2 as InQuery,
|
|
31656
32127
|
IntegerValue,
|
|
31657
32128
|
InterfaceDefinedPropertyType,
|
|
@@ -31739,6 +32210,7 @@ declare namespace _Ontologies_2 {
|
|
|
31739
32210
|
LoadObjectSetV2ObjectsOrInterfacesResponse,
|
|
31740
32211
|
LoadOntologyMetadataRequest,
|
|
31741
32212
|
LogicRule,
|
|
32213
|
+
LogicRuleActionTypesQueryV2,
|
|
31742
32214
|
LogicRuleArgument,
|
|
31743
32215
|
LongValue,
|
|
31744
32216
|
LteQuery,
|
|
@@ -31867,6 +32339,7 @@ declare namespace _Ontologies_2 {
|
|
|
31867
32339
|
OntologyV2,
|
|
31868
32340
|
OntologyValueType,
|
|
31869
32341
|
OntologyVersion,
|
|
32342
|
+
OrActionTypesQueryV2,
|
|
31870
32343
|
OrderBy,
|
|
31871
32344
|
OrderByDirection_2 as OrderByDirection,
|
|
31872
32345
|
OrQuery,
|
|
@@ -31876,7 +32349,10 @@ declare namespace _Ontologies_2 {
|
|
|
31876
32349
|
ParameterEvaluationResult,
|
|
31877
32350
|
ParameterId_2 as ParameterId,
|
|
31878
32351
|
ParameterIdArgument,
|
|
32352
|
+
ParameterNameActionTypesQueryV2,
|
|
31879
32353
|
ParameterOption,
|
|
32354
|
+
ParameterRidActionTypesQueryV2,
|
|
32355
|
+
PermissionModelActionTypesQueryV2,
|
|
31880
32356
|
PhraseQuery,
|
|
31881
32357
|
Plaintext,
|
|
31882
32358
|
PolygonValue_2 as PolygonValue,
|
|
@@ -31946,6 +32422,7 @@ declare namespace _Ontologies_2 {
|
|
|
31946
32422
|
RangesConstraint,
|
|
31947
32423
|
Reason,
|
|
31948
32424
|
ReasonType,
|
|
32425
|
+
ReferenceSigningOptions,
|
|
31949
32426
|
ReferenceUpdate,
|
|
31950
32427
|
ReferenceValue,
|
|
31951
32428
|
RefreshObjectSet,
|
|
@@ -31962,11 +32439,15 @@ declare namespace _Ontologies_2 {
|
|
|
31962
32439
|
RequestId,
|
|
31963
32440
|
ResolvedInterfacePropertyType,
|
|
31964
32441
|
ReturnEditsMode,
|
|
32442
|
+
RevertActionEnabledActionTypesQueryV2,
|
|
31965
32443
|
RidConstraint,
|
|
31966
32444
|
RollingAggregateWindowPoints,
|
|
31967
32445
|
SdkPackageName,
|
|
31968
32446
|
SdkPackageRid,
|
|
31969
32447
|
SdkVersion,
|
|
32448
|
+
SearchActionTypesOrderByV2,
|
|
32449
|
+
SearchActionTypesRequestV2,
|
|
32450
|
+
SearchActionTypesResponseV2,
|
|
31970
32451
|
SearchJsonQuery,
|
|
31971
32452
|
SearchJsonQueryV2_2 as SearchJsonQueryV2,
|
|
31972
32453
|
SearchObjectsForInterfaceRequest,
|
|
@@ -31979,6 +32460,7 @@ declare namespace _Ontologies_2 {
|
|
|
31979
32460
|
SearchOrderByV2,
|
|
31980
32461
|
SearchOrdering,
|
|
31981
32462
|
SearchOrderingV2,
|
|
32463
|
+
SectionRidActionTypesQueryV2,
|
|
31982
32464
|
SecuredPropertyValue,
|
|
31983
32465
|
SelectedPropertyApiName,
|
|
31984
32466
|
SelectedPropertyApproximateDistinctAggregation,
|
|
@@ -32000,6 +32482,7 @@ declare namespace _Ontologies_2 {
|
|
|
32000
32482
|
SpatialFilterMode,
|
|
32001
32483
|
StartsWithQuery_2 as StartsWithQuery,
|
|
32002
32484
|
StaticArgument,
|
|
32485
|
+
StatusActionTypesQueryV2,
|
|
32003
32486
|
StreamingOutputFormat,
|
|
32004
32487
|
StreamMessage,
|
|
32005
32488
|
StreamTimeSeriesPointsRequest,
|
|
@@ -32059,6 +32542,8 @@ declare namespace _Ontologies_2 {
|
|
|
32059
32542
|
TransactionEdit,
|
|
32060
32543
|
TwoDimensionalAggregation,
|
|
32061
32544
|
TypeClass,
|
|
32545
|
+
TypeClassesActionTypesQueryV2,
|
|
32546
|
+
TypeClassPredicateV2,
|
|
32062
32547
|
TypeReferenceIdentifier,
|
|
32063
32548
|
UnevaluableConstraint,
|
|
32064
32549
|
UniqueIdentifierArgument,
|
|
@@ -32085,6 +32570,8 @@ declare namespace _Ontologies_2 {
|
|
|
32085
32570
|
ValueTypeStructType,
|
|
32086
32571
|
ValueTypeUnionType,
|
|
32087
32572
|
VersionedQueryTypeApiName,
|
|
32573
|
+
WebhookRid,
|
|
32574
|
+
WebhookRidActionTypesQueryV2,
|
|
32088
32575
|
WildcardQuery,
|
|
32089
32576
|
WithinBoundingBoxPoint_2 as WithinBoundingBoxPoint,
|
|
32090
32577
|
WithinBoundingBoxQuery_2 as WithinBoundingBoxQuery,
|
|
@@ -32428,7 +32915,7 @@ export declare namespace OntologyObjectsV2 {
|
|
|
32428
32915
|
export {
|
|
32429
32916
|
list_18 as list,
|
|
32430
32917
|
get_20 as get,
|
|
32431
|
-
|
|
32918
|
+
search_5 as search,
|
|
32432
32919
|
aggregate_3 as aggregate
|
|
32433
32920
|
}
|
|
32434
32921
|
}
|
|
@@ -32441,6 +32928,23 @@ declare interface OntologyObjectType {
|
|
|
32441
32928
|
objectTypeApiName: ObjectTypeApiName;
|
|
32442
32929
|
}
|
|
32443
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
|
+
|
|
32444
32948
|
/**
|
|
32445
32949
|
* Log Safety: SAFE
|
|
32446
32950
|
*/
|
|
@@ -32469,6 +32973,60 @@ declare interface OntologyQueryFailed {
|
|
|
32469
32973
|
};
|
|
32470
32974
|
}
|
|
32471
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
|
+
|
|
32472
33030
|
/**
|
|
32473
33031
|
* The unique Resource Identifier (RID) of the Ontology. To look up your Ontology RID, please use the
|
|
32474
33032
|
List ontologies endpoint or check the Ontology Manager.
|
|
@@ -32824,6 +33382,15 @@ declare interface OracleTableImportConfig {
|
|
|
32824
33382
|
initialIncrementalState?: TableImportInitialIncrementalState;
|
|
32825
33383
|
}
|
|
32826
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
|
+
|
|
32827
33394
|
export declare namespace Orchestration {
|
|
32828
33395
|
export {
|
|
32829
33396
|
AbortOnFailure,
|
|
@@ -34140,6 +34707,15 @@ declare type ParameterName = LooselyBrandedString_15<"ParameterName">;
|
|
|
34140
34707
|
*/
|
|
34141
34708
|
declare type ParameterName_2 = LooselyBrandedString_21<"ParameterName">;
|
|
34142
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
|
+
|
|
34143
34719
|
/**
|
|
34144
34720
|
* A null parameter value.
|
|
34145
34721
|
*
|
|
@@ -34189,6 +34765,15 @@ declare interface ParameterOption {
|
|
|
34189
34765
|
value?: any;
|
|
34190
34766
|
}
|
|
34191
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
|
+
|
|
34192
34777
|
/**
|
|
34193
34778
|
* Parameters for SQL query execution. Can be either unnamed positional parameters
|
|
34194
34779
|
or named parameter mappings.
|
|
@@ -34425,6 +35010,38 @@ declare interface ParquetExperimentSeriesPermissionDenied {
|
|
|
34425
35010
|
};
|
|
34426
35011
|
}
|
|
34427
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
|
+
|
|
34428
35045
|
/**
|
|
34429
35046
|
* The identifier for a partition of a Foundry stream.
|
|
34430
35047
|
*
|
|
@@ -34606,6 +35223,15 @@ declare interface PermanentlyDeleteResourcePermissionDenied {
|
|
|
34606
35223
|
};
|
|
34607
35224
|
}
|
|
34608
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
|
+
|
|
34609
35235
|
/**
|
|
34610
35236
|
* Authenticate as a user or service principal using a personal access token.
|
|
34611
35237
|
Read the official Databricks documentation for information on generating a personal access token.
|
|
@@ -34837,15 +35463,17 @@ declare type PresenceCollaborativeUpdate = ({
|
|
|
34837
35463
|
type: "presenceChangeEvent";
|
|
34838
35464
|
} & DocumentPresenceChangeEvent) | ({
|
|
34839
35465
|
type: "customPresenceEvent";
|
|
34840
|
-
} & CustomPresenceEvent)
|
|
35466
|
+
} & CustomPresenceEvent) | ({
|
|
35467
|
+
type: "error";
|
|
35468
|
+
} & ErrorMessage);
|
|
34841
35469
|
|
|
34842
35470
|
/**
|
|
34843
35471
|
* Log Safety: UNSAFE
|
|
34844
35472
|
*/
|
|
34845
35473
|
declare interface PresencePublishMessage {
|
|
35474
|
+
schemaVersion?: SchemaVersion;
|
|
34846
35475
|
messageType: PresencePublishMessageType;
|
|
34847
|
-
|
|
34848
|
-
clientSupportedVersionRange?: ClientSupportedVersionRange;
|
|
35476
|
+
clientSupportedVersionRange: ClientSupportedVersionRange;
|
|
34849
35477
|
}
|
|
34850
35478
|
|
|
34851
35479
|
/**
|
|
@@ -37050,6 +37678,7 @@ property: _Ontologies_2.PropertyApiName,
|
|
|
37050
37678
|
$queryParams?: {
|
|
37051
37679
|
sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
|
|
37052
37680
|
sdkVersion?: _Ontologies_2.SdkVersion | undefined;
|
|
37681
|
+
branch?: _Core.FoundryBranch | undefined;
|
|
37053
37682
|
}
|
|
37054
37683
|
]): Promise<Response>;
|
|
37055
37684
|
|
|
@@ -37072,6 +37701,7 @@ attachmentRid: _Ontologies_2.AttachmentRid,
|
|
|
37072
37701
|
$queryParams?: {
|
|
37073
37702
|
sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
|
|
37074
37703
|
sdkVersion?: _Ontologies_2.SdkVersion | undefined;
|
|
37704
|
+
branch?: _Core.FoundryBranch | undefined;
|
|
37075
37705
|
}
|
|
37076
37706
|
]): Promise<Response>;
|
|
37077
37707
|
|
|
@@ -37410,6 +38040,15 @@ declare type Reference = {
|
|
|
37410
38040
|
|
|
37411
38041
|
/* Excluded from this release type: reference */
|
|
37412
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
|
+
|
|
37413
38052
|
/**
|
|
37414
38053
|
* The updated data value associated with an object instance's external reference. The object instance
|
|
37415
38054
|
is uniquely identified by an object type and a primary key. Note that the value of the property
|
|
@@ -38522,7 +39161,7 @@ declare interface ReplaceModelFunctionPermissionDenied {
|
|
|
38522
39161
|
errorDescription: "Could not replace the ModelFunction.";
|
|
38523
39162
|
errorInstanceId: string;
|
|
38524
39163
|
parameters: {
|
|
38525
|
-
|
|
39164
|
+
modelRid: unknown;
|
|
38526
39165
|
};
|
|
38527
39166
|
}
|
|
38528
39167
|
|
|
@@ -39617,6 +40256,15 @@ declare interface RetryDeadlineExceeded {
|
|
|
39617
40256
|
*/
|
|
39618
40257
|
declare type ReturnEditsMode = "ALL" | "ALL_V2_WITH_DELETIONS" | "NONE";
|
|
39619
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
|
+
|
|
39620
40268
|
/**
|
|
39621
40269
|
* A unique incrementing identifier that represents the order of edits applied by the server.
|
|
39622
40270
|
*
|
|
@@ -40461,6 +41109,8 @@ declare function search_2($ctx: SharedClient | SharedClientContext | SharedClien
|
|
|
40461
41109
|
|
|
40462
41110
|
/* Excluded from this release type: search_3 */
|
|
40463
41111
|
|
|
41112
|
+
/* Excluded from this release type: search_4 */
|
|
41113
|
+
|
|
40464
41114
|
/**
|
|
40465
41115
|
* Search for objects in the specified ontology and object type. The request body is used
|
|
40466
41116
|
* to filter objects based on the specified query. The supported queries are:
|
|
@@ -40491,7 +41141,7 @@ declare function search_2($ctx: SharedClient | SharedClientContext | SharedClien
|
|
|
40491
41141
|
* Required Scopes: [api:ontologies-read]
|
|
40492
41142
|
* URL: /v2/ontologies/{ontology}/objects/{objectType}/search
|
|
40493
41143
|
*/
|
|
40494
|
-
declare function
|
|
41144
|
+
declare function search_5($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
|
|
40495
41145
|
ontology: _Ontologies_2.OntologyIdentifier,
|
|
40496
41146
|
objectType: _Ontologies_2.ObjectTypeApiName,
|
|
40497
41147
|
$body: _Ontologies_2.SearchObjectsRequestV2,
|
|
@@ -40499,17 +41149,49 @@ $queryParams?: {
|
|
|
40499
41149
|
sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
|
|
40500
41150
|
sdkVersion?: _Ontologies_2.SdkVersion | undefined;
|
|
40501
41151
|
branch?: _Core.FoundryBranch | undefined;
|
|
41152
|
+
executeInMemoryOnly?: boolean | undefined;
|
|
40502
41153
|
}
|
|
40503
41154
|
]): Promise<_Ontologies_2.SearchObjectsResponseV2>;
|
|
40504
41155
|
|
|
40505
|
-
/* Excluded from this release type: search_5 */
|
|
40506
|
-
|
|
40507
41156
|
/* Excluded from this release type: search_6 */
|
|
40508
41157
|
|
|
40509
41158
|
/* Excluded from this release type: search_7 */
|
|
40510
41159
|
|
|
40511
41160
|
/* Excluded from this release type: search_8 */
|
|
40512
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
|
+
|
|
40513
41195
|
/**
|
|
40514
41196
|
* Returns the Builds where every filter is satisfied.
|
|
40515
41197
|
*
|
|
@@ -41259,7 +41941,7 @@ declare interface SearchObjectsRequestV2 {
|
|
|
41259
41941
|
selectV2: Array<PropertyIdentifier_2>;
|
|
41260
41942
|
excludeRid?: boolean;
|
|
41261
41943
|
snapshot?: boolean;
|
|
41262
|
-
|
|
41944
|
+
referenceSigningOptions?: ReferenceSigningOptions;
|
|
41263
41945
|
}
|
|
41264
41946
|
|
|
41265
41947
|
/**
|
|
@@ -41414,6 +42096,15 @@ declare interface SecretsWithPlaintextValues {
|
|
|
41414
42096
|
secrets: Record<SecretName, PlaintextValue>;
|
|
41415
42097
|
}
|
|
41416
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
|
+
|
|
41417
42108
|
/**
|
|
41418
42109
|
* Log Safety: UNSAFE
|
|
41419
42110
|
*/
|
|
@@ -42351,7 +43042,11 @@ export declare namespace SqlQueries {
|
|
|
42351
43042
|
ExecuteSqlQueryPermissionDenied,
|
|
42352
43043
|
GetResultsSqlQueryPermissionDenied,
|
|
42353
43044
|
GetStatusSqlQueryPermissionDenied,
|
|
43045
|
+
OntologyObjectTypeNotFound,
|
|
42354
43046
|
OntologyQueryFailed,
|
|
43047
|
+
OntologyQueryInvalidObjectBackend,
|
|
43048
|
+
OntologyQueryNestedObjectSetTooLarge,
|
|
43049
|
+
OntologyQueryStringColumnTooLong,
|
|
42355
43050
|
QueryCanceled,
|
|
42356
43051
|
QueryFailed,
|
|
42357
43052
|
QueryParseError,
|
|
@@ -42469,6 +43164,15 @@ declare interface StaticArgument {
|
|
|
42469
43164
|
value: DataValue;
|
|
42470
43165
|
}
|
|
42471
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
|
+
|
|
42472
43176
|
/**
|
|
42473
43177
|
* Log Safety: UNSAFE
|
|
42474
43178
|
*/
|
|
@@ -42520,6 +43224,31 @@ declare interface StreamingContinueSessionRequest {
|
|
|
42520
43224
|
|
|
42521
43225
|
/* Excluded from this release type: streamingExecute */
|
|
42522
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
|
+
|
|
42523
43252
|
/**
|
|
42524
43253
|
* Could not streamingExecute the Query.
|
|
42525
43254
|
*
|
|
@@ -45027,6 +45756,27 @@ declare interface TypeClass {
|
|
|
45027
45756
|
name: string;
|
|
45028
45757
|
}
|
|
45029
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
|
+
|
|
45030
45780
|
/**
|
|
45031
45781
|
* Input type does not match expected type in model API.
|
|
45032
45782
|
*
|
|
@@ -46754,7 +47504,7 @@ declare interface VersionNotFound {
|
|
|
46754
47504
|
export declare namespace Versions {
|
|
46755
47505
|
export {
|
|
46756
47506
|
deleteVersion,
|
|
46757
|
-
|
|
47507
|
+
list_37 as list,
|
|
46758
47508
|
get_69 as get,
|
|
46759
47509
|
upload_5 as upload
|
|
46760
47510
|
}
|
|
@@ -47201,6 +47951,22 @@ declare interface WavEncodeFormat {
|
|
|
47201
47951
|
audioChannelLayout?: AudioChannelLayout;
|
|
47202
47952
|
}
|
|
47203
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
|
+
|
|
47204
47970
|
/**
|
|
47205
47971
|
* WebP image format.
|
|
47206
47972
|
*
|