@osdk/client.unstable 2.8.0-beta.3 → 2.8.0-beta.30

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.
Files changed (57) hide show
  1. package/CHANGELOG.md +78 -0
  2. package/api.d.ts +17 -0
  3. package/build/browser/public/api.js +3 -0
  4. package/build/browser/public/api.js.map +1 -0
  5. package/build/cjs/index.d.cts +388 -11
  6. package/build/cjs/public/api.cjs +4 -0
  7. package/build/cjs/public/api.cjs.map +1 -0
  8. package/build/cjs/public/api.d.cts +3272 -0
  9. package/build/esm/public/api.js +3 -0
  10. package/build/esm/public/api.js.map +1 -0
  11. package/build/types/blockDataIr.d.ts +8 -1
  12. package/build/types/blockDataIr.d.ts.map +1 -1
  13. package/build/types/generated/marketplace/api/__components.d.ts +3207 -0
  14. package/build/types/generated/marketplace/api/__components.d.ts.map +1 -0
  15. package/build/types/generated/marketplace/api/index.d.ts +1 -0
  16. package/build/types/generated/marketplace/api/index.d.ts.map +1 -0
  17. package/build/types/generated/marketplace/index.d.ts +1 -0
  18. package/build/types/generated/marketplace/index.d.ts.map +1 -0
  19. package/build/types/generated/ontology-metadata/api/__components.d.ts +340 -10
  20. package/build/types/generated/ontology-metadata/api/__components.d.ts.map +1 -1
  21. package/build/types/generated/ontology-metadata/api/blockdata/__components.d.ts +10 -2
  22. package/build/types/generated/ontology-metadata/api/blockdata/__components.d.ts.map +1 -1
  23. package/build/types/generated/ontology-metadata/api/entitymetadata/__components.d.ts +27 -0
  24. package/build/types/generated/ontology-metadata/api/entitymetadata/__components.d.ts.map +1 -1
  25. package/build/types/generated/ontology-metadata/api/entitymetadata/index.d.ts +1 -1
  26. package/build/types/generated/ontology-metadata/api/entitymetadata/index.d.ts.map +1 -1
  27. package/build/types/generated/ontology-metadata/api/index.d.ts +1 -1
  28. package/build/types/generated/ontology-metadata/api/index.d.ts.map +1 -1
  29. package/build/types/generated/ontology-metadata/api/modification/__components.d.ts +143 -3
  30. package/build/types/generated/ontology-metadata/api/modification/__components.d.ts.map +1 -1
  31. package/build/types/generated/ontology-metadata/api/modification/index.d.ts +1 -1
  32. package/build/types/generated/ontology-metadata/api/modification/index.d.ts.map +1 -1
  33. package/build/types/generated/ontology-metadata/api/permissions/__components.d.ts +6 -1
  34. package/build/types/generated/ontology-metadata/api/permissions/__components.d.ts.map +1 -1
  35. package/build/types/generated/ontology-metadata/api/permissions/index.d.ts +1 -1
  36. package/build/types/generated/ontology-metadata/api/permissions/index.d.ts.map +1 -1
  37. package/build/types/generated/ontology-metadata/api/usage/ExperimentalOntologyUsageService/checkActionTypeProvenanceStatus.d.ts +10 -0
  38. package/build/types/generated/ontology-metadata/api/usage/ExperimentalOntologyUsageService/checkActionTypeProvenanceStatus.d.ts.map +1 -0
  39. package/build/types/generated/ontology-metadata/api/usage/ExperimentalOntologyUsageService.d.ts +1 -0
  40. package/build/types/generated/ontology-metadata/api/usage/ExperimentalOntologyUsageService.d.ts.map +1 -1
  41. package/build/types/generated/ontology-metadata/api/usage/__components.d.ts +40 -0
  42. package/build/types/generated/ontology-metadata/api/usage/__components.d.ts.map +1 -1
  43. package/build/types/generated/ontology-metadata/api/usage/index.d.ts +1 -1
  44. package/build/types/generated/ontology-metadata/api/usage/index.d.ts.map +1 -1
  45. package/build/types/generated/ontology-metadata/api/validation/__components.d.ts +132 -1
  46. package/build/types/generated/ontology-metadata/api/validation/__components.d.ts.map +1 -1
  47. package/build/types/generated/ontology-metadata/api/validation/index.d.ts +1 -1
  48. package/build/types/generated/ontology-metadata/api/validation/index.d.ts.map +1 -1
  49. package/build/types/generated/ontology-metadata/branch/api/__components.d.ts +48 -2
  50. package/build/types/generated/ontology-metadata/branch/api/__components.d.ts.map +1 -1
  51. package/build/types/generated/ontology-metadata/branch/api/index.d.ts +1 -1
  52. package/build/types/generated/ontology-metadata/branch/api/index.d.ts.map +1 -1
  53. package/build/types/index.d.ts +2 -2
  54. package/build/types/index.d.ts.map +1 -1
  55. package/build/types/public/api.d.ts +1 -0
  56. package/build/types/public/api.d.ts.map +1 -0
  57. package/package.json +10 -1
@@ -38,6 +38,18 @@ export type ActionApplyClientPreferences = ActionApplyClientPreferences_disallow
38
38
  export interface ActionApplyDisallowedClients {
39
39
  disallowedFrontendConsumer: Array<ActionTypeFrontendConsumer>;
40
40
  }
41
+ /**
42
+ * Contains the definition for platform effects that are executed as part of running an Action.
43
+ */
44
+ export interface ActionEffects {
45
+ synchronousPreWritebackEffect?: SynchronousPreWritebackEffect | null | undefined;
46
+ }
47
+ /**
48
+ * See ActionEffects docs.
49
+ */
50
+ export interface ActionEffectsModification {
51
+ synchronousPreWritebackEffect?: SynchronousPreWritebackEffectModification | null | undefined;
52
+ }
41
53
  export interface ActionLogConfiguration {
42
54
  actionLogSummary: Array<ActionLogSummaryPart>;
43
55
  }
@@ -507,6 +519,8 @@ export interface ActionTypeBranchWebhooksMode_disableWebhooksOnBranches {
507
519
  export type ActionTypeBranchWebhooksMode = ActionTypeBranchWebhooksMode_allowWebhooksOnBranches | ActionTypeBranchWebhooksMode_disableWebhooksOnBranches;
508
520
  /**
509
521
  * A ActionTypeCreate is used to create ActionTypes.
522
+ *
523
+ * Used in OntologyModificationRequest.
510
524
  */
511
525
  export interface ActionTypeCreate {
512
526
  actionApplyClientSettings?: ActionApplyClientPreferences | null | undefined;
@@ -514,8 +528,10 @@ export interface ActionTypeCreate {
514
528
  apiName: ActionTypeApiName;
515
529
  branchSettings?: ActionTypeBranchSettingsModification | null | undefined;
516
530
  displayMetadata: ActionTypeDisplayMetadataModification;
531
+ effects?: ActionEffectsModification | null | undefined;
517
532
  formContentOrdering: Array<FormContent>;
518
533
  logic: ActionLogicModification;
534
+ markings: Array<MarkingId>;
519
535
  notifications: Array<ActionNotificationModification>;
520
536
  notificationSettings?: ActionNotificationSettings | null | undefined;
521
537
  packageRid?: OntologyPackageRid | null | undefined;
@@ -524,6 +540,7 @@ export interface ActionTypeCreate {
524
540
  projectRid?: CompassFolderRid | null | undefined;
525
541
  provenance?: ActionTypeProvenanceModification | null | undefined;
526
542
  revert?: ActionRevert | null | undefined;
543
+ scenarioSettings?: ActionTypeScenarioSettingsModification | null | undefined;
527
544
  sections: Record<SectionId, PutSectionRequestModification>;
528
545
  status?: ActionTypeStatus | null | undefined;
529
546
  submissionConfiguration?: ActionSubmissionConfiguration | null | undefined;
@@ -549,12 +566,15 @@ export interface ActionTypeDeletedEvent {
549
566
  * DisplayMetadata shape used in responses
550
567
  */
551
568
  export interface ActionTypeDisplayMetadata {
569
+ applyingMessage: Array<ActionTypeRichTextComponent>;
570
+ applyingMessageEnabled: boolean;
552
571
  configuration: ActionTypeDisplayMetadataConfiguration;
553
572
  description: string;
554
573
  displayName: string;
555
574
  icon?: Icon | null | undefined;
556
575
  submitButtonDisplayMetadata?: ButtonDisplayMetadata | null | undefined;
557
576
  successMessage: Array<ActionTypeRichTextComponent>;
577
+ successMessageEnabled: boolean;
558
578
  toolDescription?: string | null | undefined;
559
579
  typeClasses: Array<TypeClass>;
560
580
  undoButtonConfiguration?: boolean | null | undefined;
@@ -571,12 +591,15 @@ export interface ActionTypeDisplayMetadataConfiguration {
571
591
  * DisplayMetadata shape used in requests
572
592
  */
573
593
  export interface ActionTypeDisplayMetadataModification {
594
+ applyingMessage: Array<ActionTypeRichTextComponent>;
595
+ applyingMessageEnabled?: boolean | null | undefined;
574
596
  configuration?: ActionTypeDisplayMetadataConfiguration | null | undefined;
575
597
  description: string;
576
598
  displayName: string;
577
599
  icon?: Icon | null | undefined;
578
600
  submitButtonDisplayMetadata?: ButtonDisplayMetadata | null | undefined;
579
601
  successMessage: Array<ActionTypeRichTextComponent>;
602
+ successMessageEnabled?: boolean | null | undefined;
580
603
  toolDescription?: string | null | undefined;
581
604
  typeClasses: Array<TypeClass>;
582
605
  undoButtonConfiguration?: boolean | null | undefined;
@@ -732,6 +755,7 @@ export interface ActionTypeLoadVersionedResponse {
732
755
  actionTypes: Array<ActionType>;
733
756
  }
734
757
  export interface ActionTypeLogic {
758
+ effects?: ActionEffects | null | undefined;
735
759
  logic: ActionLogic;
736
760
  notifications: Array<ActionNotification>;
737
761
  revert?: ActionRevert | null | undefined;
@@ -739,6 +763,7 @@ export interface ActionTypeLogic {
739
763
  webhooks?: ActionWebhooks | null | undefined;
740
764
  }
741
765
  export interface ActionTypeLogicRequest {
766
+ effects?: ActionEffects | null | undefined;
742
767
  logic: ActionLogic;
743
768
  notifications: Array<ActionNotification>;
744
769
  revert?: ActionRevert | null | undefined;
@@ -761,6 +786,7 @@ export interface ActionTypeMetadata {
761
786
  parameters: Record<ParameterId, Parameter>;
762
787
  provenance?: _api_entitymetadata_provenance_ActionTypeProvenance | null | undefined;
763
788
  rid: ActionTypeRid;
789
+ scenarioSettings: ActionTypeScenarioSettings;
764
790
  sections: Record<SectionId, Section>;
765
791
  stagingMediaSetRid?: MediaSetRid | null | undefined;
766
792
  status: ActionTypeStatus;
@@ -783,6 +809,7 @@ export interface ActionTypeMetadataModification {
783
809
  parameters: Record<ParameterId, Parameter>;
784
810
  provenance?: _api_entitymetadata_provenance_ActionTypeProvenance | null | undefined;
785
811
  rid: ActionTypeRid;
812
+ scenarioSettings?: ActionTypeScenarioSettingsModification | null | undefined;
786
813
  sections: Record<SectionId, Section>;
787
814
  stagingMediaSetRid?: MediaSetRid | null | undefined;
788
815
  status: ActionTypeStatus;
@@ -798,6 +825,8 @@ export interface ActionTypeModificationRequest {
798
825
  }
799
826
  /**
800
827
  * Request used to modify ActionTypes.
828
+ *
829
+ * Deprecated: Use OntologyModificationRequest with ActionTypeCreate and ActionTypeUpdate instead.
801
830
  */
802
831
  export interface ActionTypeModifyRequest {
803
832
  actionsVersion?: ActionsVersion | null | undefined;
@@ -877,6 +906,21 @@ export type ActionTypeRid = string;
877
906
  export interface ActionTypesAlreadyExistError {
878
907
  actionTypeRids: Array<ActionTypeRid>;
879
908
  }
909
+ export interface ActionTypeScenarioExecutionOnlyMode_allowExecutionOnlyOnScenario {
910
+ type: "allowExecutionOnlyOnScenario";
911
+ allowExecutionOnlyOnScenario: AllowExecutionOnlyOnScenario;
912
+ }
913
+ export interface ActionTypeScenarioExecutionOnlyMode_noExecutionRestriction {
914
+ type: "noExecutionRestriction";
915
+ noExecutionRestriction: NoExecutionRestriction;
916
+ }
917
+ export type ActionTypeScenarioExecutionOnlyMode = ActionTypeScenarioExecutionOnlyMode_allowExecutionOnlyOnScenario | ActionTypeScenarioExecutionOnlyMode_noExecutionRestriction;
918
+ export interface ActionTypeScenarioSettings {
919
+ scenarioExecutionOnlyMode: ActionTypeScenarioExecutionOnlyMode;
920
+ }
921
+ export interface ActionTypeScenarioSettingsModification {
922
+ scenarioExecutionOnlyMode?: ActionTypeScenarioExecutionOnlyMode | null | undefined;
923
+ }
880
924
  /**
881
925
  * Request to associate given set of OrganizationRids with the specified ActionTypeRid(s).
882
926
  * Users should have permissions to modify the specified ActionTypeRid(s) and also have
@@ -918,6 +962,8 @@ export interface ActionTypeStatus_example {
918
962
  export type ActionTypeStatus = ActionTypeStatus_experimental | ActionTypeStatus_active | ActionTypeStatus_deprecated | ActionTypeStatus_example;
919
963
  /**
920
964
  * Request object to edit existing Action Types.
965
+ *
966
+ * Used in OntologyModificationRequest.
921
967
  */
922
968
  export interface ActionTypeUpdate {
923
969
  actionApplyClientSettings?: ActionApplyClientPreferences | null | undefined;
@@ -925,6 +971,7 @@ export interface ActionTypeUpdate {
925
971
  apiName: ActionTypeApiName;
926
972
  branchSettings?: ActionTypeBranchSettingsModification | null | undefined;
927
973
  displayMetadata: ActionTypeDisplayMetadataModification;
974
+ effects?: ActionEffectsModification | null | undefined;
928
975
  formContentOrdering?: Array<FormContent> | null | undefined;
929
976
  logic: ActionLogicModification;
930
977
  notifications: Array<ActionNotificationModification>;
@@ -935,6 +982,7 @@ export interface ActionTypeUpdate {
935
982
  parametersToUpdate: Record<ParameterRid, EditParameterRequestModification>;
936
983
  provenance?: ActionTypeProvenanceModification | null | undefined;
937
984
  revert?: ActionRevert | null | undefined;
985
+ scenarioSettings?: ActionTypeScenarioSettingsModification | null | undefined;
938
986
  sectionsToCreate: Record<SectionId, PutSectionRequestModification>;
939
987
  sectionsToDelete: Array<SectionRid>;
940
988
  sectionsToUpdate: Record<SectionRid, EditSectionRequestModification>;
@@ -1514,6 +1562,10 @@ export interface AllowedValuesOverrideModification {
1514
1562
  export interface AllowedValuesOverrideRequest {
1515
1563
  allowedValues: AllowedParameterValuesRequest;
1516
1564
  }
1565
+ /**
1566
+ * When set, the action can only be executed within a Scenario context and not directly on the main ontology.
1567
+ */
1568
+ export interface AllowExecutionOnlyOnScenario {}
1517
1569
  export interface AllowFunctionsWithExternalCallsOnBranches {}
1518
1570
  export interface AllowNotificationsOnBranches {
1519
1571
  branchRecipients: AllowNotificationsOnBranchesBranchRecipients;
@@ -1805,6 +1857,11 @@ export interface ButtonDisplayMetadata {
1805
1857
  text: string;
1806
1858
  }
1807
1859
  export interface BytePropertyType {}
1860
+ /**
1861
+ * Specifies the unit of the input byte size value, ensuring that the formatter correctly interprets the number.
1862
+ * All units use binary (base-1024) representation.
1863
+ */
1864
+ export type BytesBaseValue = "BYTES" | "KILOBYTES" | "MEGABYTES" | "GIGABYTES" | "TERABYTES" | "PETABYTES";
1808
1865
  export type ByteTypeDataValue = number;
1809
1866
  export interface CarbonWorkspaceComponentUrlTarget_rid {
1810
1867
  type: "rid";
@@ -1835,6 +1892,10 @@ export interface CarbonWorkspaceUrlTargetModification {
1835
1892
  resource?: CarbonWorkspaceComponentUrlTargetModification | null | undefined;
1836
1893
  }
1837
1894
  /**
1895
+ * Display name for a marking category.
1896
+ */
1897
+ export type CategoryDisplayName = string | null | undefined;
1898
+ /**
1838
1899
  * Id for a category (group of markings)
1839
1900
  */
1840
1901
  export type CategoryId = string;
@@ -2611,12 +2672,15 @@ export interface DynamicObjectSetInputUnioned {
2611
2672
  }
2612
2673
  /**
2613
2674
  * Request object to edit existing Action Types.
2675
+ *
2676
+ * Deprecated: Used in deprecated ActionTypeModifyRequest. Use ActionTypeUpdate with OntologyModificationRequest instead.
2614
2677
  */
2615
2678
  export interface EditActionTypeRequest {
2616
2679
  actionLogConfiguration?: ActionLogConfiguration | null | undefined;
2617
2680
  apiName: ActionTypeApiName;
2618
2681
  branchSettings?: ActionTypeBranchSettingsModification | null | undefined;
2619
2682
  displayMetadata: ActionTypeDisplayMetadataModification;
2683
+ effects?: ActionEffects | null | undefined;
2620
2684
  logic: ActionLogic;
2621
2685
  notifications: Array<ActionNotification>;
2622
2686
  notificationSettings?: ActionNotificationSettings | null | undefined;
@@ -2625,6 +2689,7 @@ export interface EditActionTypeRequest {
2625
2689
  parametersToDelete: Array<ParameterRid>;
2626
2690
  parametersToEdit: Record<ParameterRid, EditParameterRequest>;
2627
2691
  revert?: ActionRevert | null | undefined;
2692
+ scenarioSettings?: ActionTypeScenarioSettingsModification | null | undefined;
2628
2693
  status?: ActionTypeStatus | null | undefined;
2629
2694
  submissionConfiguration?: ActionSubmissionConfiguration | null | undefined;
2630
2695
  validationsToAdd: Array<ValidationRule>;
@@ -2638,6 +2703,8 @@ export interface EditActionTypeRequest {
2638
2703
  export interface EditOnlyPropertyType {}
2639
2704
  /**
2640
2705
  * Request to edit an existing parameter
2706
+ *
2707
+ * Deprecated: Used in deprecated ActionTypeModifyRequest. Use EditParameterRequestModification with OntologyModificationRequest instead.
2641
2708
  */
2642
2709
  export interface EditParameterRequest {
2643
2710
  displayMetadata: ParameterDisplayMetadata;
@@ -2662,6 +2729,8 @@ export interface EditsConfiguration {
2662
2729
  }
2663
2730
  /**
2664
2731
  * Request to edit an existing Section
2732
+ *
2733
+ * Deprecated: Used in deprecated ActionTypeModifyRequest. Use EditSectionRequestModification with OntologyModificationRequest instead.
2665
2734
  */
2666
2735
  export interface EditSectionRequest {
2667
2736
  content: Array<SectionContent>;
@@ -2689,6 +2758,9 @@ export type EditsHistoryObjectTypeRid = string;
2689
2758
  * must be a valid Compass project RID. If one is not specified, DatasourceRid will be used.
2690
2759
  */
2691
2760
  export type EditsOnlyRid = string;
2761
+ /**
2762
+ * Deprecated: Used in deprecated ActionTypeModifyRequest. Use ValidationRuleModification with OntologyModificationRequest instead.
2763
+ */
2692
2764
  export interface EditValidationRuleRequest {
2693
2765
  condition: Condition;
2694
2766
  displayMetadata: ValidationRuleDisplayMetadata;
@@ -2883,6 +2955,14 @@ export interface FunctionAtVersion {
2883
2955
  functionRid: FunctionRid;
2884
2956
  functionVersion: SemanticFunctionVersion;
2885
2957
  }
2958
+ /**
2959
+ * An embedding model backed by a function registered in function-registry
2960
+ * and executed via function-executor.
2961
+ */
2962
+ export interface FunctionBackedEmbeddingModel {
2963
+ functionRid: FunctionRid;
2964
+ functionVersion: FunctionVersion;
2965
+ }
2886
2966
  export interface FunctionExecutionWithRecipientInput_logicRuleValue {
2887
2967
  type: "logicRuleValue";
2888
2968
  logicRuleValue: LogicRuleValue;
@@ -3248,6 +3328,41 @@ export interface IntegerTypeRangeConstraint {
3248
3328
  max?: IntegerTypeDataValue | null | undefined;
3249
3329
  min?: IntegerTypeDataValue | null | undefined;
3250
3330
  }
3331
+ export interface InterfaceActionTypeConstraint {
3332
+ metadata: InterfaceActionTypeConstraintMetadata;
3333
+ parameters: Record<InterfaceParameterConstraintRid, InterfaceParameterConstraint>;
3334
+ requireImplementation: boolean;
3335
+ rid: InterfaceActionTypeConstraintRid;
3336
+ }
3337
+ /**
3338
+ * A string indicating the API name to use for the interface action type constraint. This API name will be used to
3339
+ * reference the interface action type constraint in programming languages. The name should be given in
3340
+ * lowerCamelCase and should be unique across the interface and the superset of its parent interfaces.
3341
+ */
3342
+ export type InterfaceActionTypeConstraintApiName = string;
3343
+ /**
3344
+ * Reference to an InterfaceActionTypeConstraint. Used to reference an InterfaceActionTypeConstraint in the same
3345
+ * request it is created in.
3346
+ */
3347
+ export type InterfaceActionTypeConstraintIdInRequest = string;
3348
+ export interface InterfaceActionTypeConstraintMetadata {
3349
+ apiName: InterfaceActionTypeConstraintApiName;
3350
+ description: string;
3351
+ displayName: string;
3352
+ }
3353
+ /**
3354
+ * ResourceIdentifier for an InterfaceActionTypeConstraint.
3355
+ */
3356
+ export type InterfaceActionTypeConstraintRid = string;
3357
+ export interface InterfaceActionTypeConstraintRidOrIdInRequest_rid {
3358
+ type: "rid";
3359
+ rid: InterfaceActionTypeConstraintRid;
3360
+ }
3361
+ export interface InterfaceActionTypeConstraintRidOrIdInRequest_idInRequest {
3362
+ type: "idInRequest";
3363
+ idInRequest: InterfaceActionTypeConstraintIdInRequest;
3364
+ }
3365
+ export type InterfaceActionTypeConstraintRidOrIdInRequest = InterfaceActionTypeConstraintRidOrIdInRequest_rid | InterfaceActionTypeConstraintRidOrIdInRequest_idInRequest;
3251
3366
  export interface InterfaceArrayPropertyType {
3252
3367
  subtype: InterfacePropertyTypeType;
3253
3368
  }
@@ -3338,6 +3453,28 @@ export interface InterfaceObjectParameterStructListFieldValueModification {
3338
3453
  parameterId: ParameterId;
3339
3454
  structFieldApiNameOrRid: StructFieldApiNameOrRid;
3340
3455
  }
3456
+ /**
3457
+ * Parameter constraint of an InterfaceActionTypeConstraint
3458
+ */
3459
+ export interface InterfaceParameterConstraint {
3460
+ displayMetadata: InterfaceParameterConstraintDisplayMetadata;
3461
+ requireImplementation: boolean;
3462
+ type: _api_types_BaseParameterType;
3463
+ }
3464
+ export interface InterfaceParameterConstraintDisplayMetadata {
3465
+ displayName: string;
3466
+ }
3467
+ export type InterfaceParameterConstraintIdInRequest = string;
3468
+ export type InterfaceParameterConstraintRid = string;
3469
+ export interface InterfaceParameterConstraintRidOrIdInRequest_rid {
3470
+ type: "rid";
3471
+ rid: InterfaceParameterConstraintRid;
3472
+ }
3473
+ export interface InterfaceParameterConstraintRidOrIdInRequest_idInRequest {
3474
+ type: "idInRequest";
3475
+ idInRequest: InterfaceParameterConstraintIdInRequest;
3476
+ }
3477
+ export type InterfaceParameterConstraintRidOrIdInRequest = InterfaceParameterConstraintRidOrIdInRequest_rid | InterfaceParameterConstraintRidOrIdInRequest_idInRequest;
3341
3478
  export interface InterfaceParameterPropertyValue {
3342
3479
  parameterId: ParameterId;
3343
3480
  sharedPropertyTypeRid: SharedPropertyTypeRid;
@@ -3542,6 +3679,7 @@ export interface InterfaceStructPropertyType {
3542
3679
  * interface, it is guaranteed to have the conform to the interface shape.
3543
3680
  */
3544
3681
  export interface InterfaceType {
3682
+ actionTypeConstraints: Array<InterfaceActionTypeConstraint>;
3545
3683
  allExtendsInterfaces: Array<InterfaceTypeRid>;
3546
3684
  allLinks: Array<InterfaceLinkType>;
3547
3685
  allProperties: Array<SharedPropertyType>;
@@ -4352,11 +4490,15 @@ export interface LogicRuleValue_synchronousWebhookOutput {
4352
4490
  type: "synchronousWebhookOutput";
4353
4491
  synchronousWebhookOutput: WebhookOutputParamName;
4354
4492
  }
4493
+ export interface LogicRuleValue_scheduleRunRid {
4494
+ type: "scheduleRunRid";
4495
+ scheduleRunRid: ScheduleRunRidValue;
4496
+ }
4355
4497
  /**
4356
4498
  * These are the possible values that can be passed into LogicRules as well as Notification and Webhook side
4357
4499
  * effects.
4358
4500
  */
4359
- export type LogicRuleValue = LogicRuleValue_parameterId | LogicRuleValue_staticValue | LogicRuleValue_objectParameterPropertyValue | LogicRuleValue_interfaceParameterPropertyValue | LogicRuleValue_interfaceParameterPropertyValueV2 | LogicRuleValue_currentUser | LogicRuleValue_currentTime | LogicRuleValue_uniqueIdentifier | LogicRuleValue_synchronousWebhookOutput;
4501
+ export type LogicRuleValue = LogicRuleValue_parameterId | LogicRuleValue_staticValue | LogicRuleValue_objectParameterPropertyValue | LogicRuleValue_interfaceParameterPropertyValue | LogicRuleValue_interfaceParameterPropertyValueV2 | LogicRuleValue_currentUser | LogicRuleValue_currentTime | LogicRuleValue_uniqueIdentifier | LogicRuleValue_synchronousWebhookOutput | LogicRuleValue_scheduleRunRid;
4360
4502
  export interface LogicRuleValueModification_parameterId {
4361
4503
  type: "parameterId";
4362
4504
  parameterId: ParameterId;
@@ -4393,11 +4535,15 @@ export interface LogicRuleValueModification_synchronousWebhookOutput {
4393
4535
  type: "synchronousWebhookOutput";
4394
4536
  synchronousWebhookOutput: WebhookOutputParamName;
4395
4537
  }
4538
+ export interface LogicRuleValueModification_scheduleRunRid {
4539
+ type: "scheduleRunRid";
4540
+ scheduleRunRid: ScheduleRunRidValue;
4541
+ }
4396
4542
  /**
4397
4543
  * These are the possible values that can be passed into LogicRules as well as Notification and Webhook side
4398
4544
  * effects.
4399
4545
  */
4400
- export type LogicRuleValueModification = LogicRuleValueModification_parameterId | LogicRuleValueModification_staticValue | LogicRuleValueModification_objectParameterPropertyValue | LogicRuleValueModification_interfaceParameterPropertyValue | LogicRuleValueModification_interfaceParameterPropertyValueV2 | LogicRuleValueModification_currentUser | LogicRuleValueModification_currentTime | LogicRuleValueModification_uniqueIdentifier | LogicRuleValueModification_synchronousWebhookOutput;
4546
+ export type LogicRuleValueModification = LogicRuleValueModification_parameterId | LogicRuleValueModification_staticValue | LogicRuleValueModification_objectParameterPropertyValue | LogicRuleValueModification_interfaceParameterPropertyValue | LogicRuleValueModification_interfaceParameterPropertyValueV2 | LogicRuleValueModification_currentUser | LogicRuleValueModification_currentTime | LogicRuleValueModification_uniqueIdentifier | LogicRuleValueModification_synchronousWebhookOutput | LogicRuleValueModification_scheduleRunRid;
4401
4547
  export interface LongPropertyType {}
4402
4548
  export interface LongTypeDataConstraints_range {
4403
4549
  type: "range";
@@ -4494,9 +4640,11 @@ export type MarkingFilter = MarkingFilter_markingTypes;
4494
4640
  */
4495
4641
  export type MarkingId = string;
4496
4642
  /**
4497
- * Combined information about a marking including its type and optional display name.
4643
+ * Combined information about a marking including its type, optional display name,
4644
+ * and optional category display name.
4498
4645
  */
4499
4646
  export interface MarkingInfo {
4647
+ categoryDisplayName: CategoryDisplayName;
4500
4648
  displayName: MarkingDisplayName;
4501
4649
  markingType: MarkingType;
4502
4650
  }
@@ -4693,6 +4841,10 @@ export interface NewObjectUrlTargetModification {
4693
4841
  keys: Record<PropertyId, LogicRuleValueModification>;
4694
4842
  objectTypeId: ObjectTypeId;
4695
4843
  }
4844
+ /**
4845
+ * When set, no restriction is applied and the action can be executed both on the main ontology and within Scenarios.
4846
+ */
4847
+ export interface NoExecutionRestriction {}
4696
4848
  export interface NoneEntityProvenance {}
4697
4849
  /**
4698
4850
  * Some ParameterPrefill(s) are referencing ParameterId(s) that do not exist on the ActionType.
@@ -4813,6 +4965,15 @@ export interface NumberFormatBillions {
4813
4965
  base: NumberFormatBase;
4814
4966
  }
4815
4967
  /**
4968
+ * Render the number as bytes, automatically converting to the appropriate size (KB, MB, GB, etc)
4969
+ * and appending the corresponding suffix. Uses binary units (powers of 1024).
4970
+ */
4971
+ export interface NumberFormatBytes {
4972
+ base: NumberFormatBase;
4973
+ baseValue: BytesBaseValue;
4974
+ showFullUnits?: boolean | null | undefined;
4975
+ }
4976
+ /**
4816
4977
  * Note that non-visual features e.g. sorting & histograms, are not guaranteed to be currency-aware. They can
4817
4978
  * group the same number together even if they have different currencies.
4818
4979
  */
@@ -4940,7 +5101,11 @@ export interface NumberFormatter_basisPoint {
4940
5101
  type: "basisPoint";
4941
5102
  basisPoint: NumberFormatBasisPoint;
4942
5103
  }
4943
- export type NumberFormatter = NumberFormatter_base | NumberFormatter_percentage | NumberFormatter_perMille | NumberFormatter_ordinal | NumberFormatter_currency | NumberFormatter_unit | NumberFormatter_customUnit | NumberFormatter_prePost | NumberFormatter_duration | NumberFormatter_thousands | NumberFormatter_millions | NumberFormatter_billions | NumberFormatter_basisPoint;
5104
+ export interface NumberFormatter_bytes {
5105
+ type: "bytes";
5106
+ bytes: NumberFormatBytes;
5107
+ }
5108
+ export type NumberFormatter = NumberFormatter_base | NumberFormatter_percentage | NumberFormatter_perMille | NumberFormatter_ordinal | NumberFormatter_currency | NumberFormatter_unit | NumberFormatter_customUnit | NumberFormatter_prePost | NumberFormatter_duration | NumberFormatter_thousands | NumberFormatter_millions | NumberFormatter_billions | NumberFormatter_basisPoint | NumberFormatter_bytes;
4944
5109
  /**
4945
5110
  * Scale the numeric value to thousands and append a suffix. For example, 1500 will be displayed as "1.5K".
4946
5111
  */
@@ -5295,6 +5460,7 @@ export interface ObjectTypeDirectDatasource {
5295
5460
  propertyMapping: Record<PropertyTypeRid, PropertyTypeMappingInfo>;
5296
5461
  propertySecurityGroups: PropertySecurityGroups;
5297
5462
  retentionConfig?: RetentionConfig | null | undefined;
5463
+ timeBasedRetentionConfig?: TimeBasedRetentionConfig | null | undefined;
5298
5464
  }
5299
5465
  /**
5300
5466
  * This includes metadata which can be used by front-ends when displaying the ObjectType.
@@ -5373,6 +5539,10 @@ export interface ObjectTypeGeotimeSeriesDatasource {
5373
5539
  * Please note that this is not safe to log as it is user-inputted and may contain sensitive information.
5374
5540
  */
5375
5541
  export type ObjectTypeId = string;
5542
+ export interface ObjectTypeIdAndPropertyTypeId {
5543
+ objectTypeId: ObjectTypeId;
5544
+ propertyTypeId: PropertyTypeId;
5545
+ }
5376
5546
  export interface ObjectTypeIdentifier_objectTypeId {
5377
5547
  type: "objectTypeId";
5378
5548
  objectTypeId: ObjectTypeId;
@@ -5535,6 +5705,18 @@ export interface ObjectTypeRestrictedViewDatasourceV2 {
5535
5705
  * ObjectTypeRid will be different.
5536
5706
  */
5537
5707
  export type ObjectTypeRid = string;
5708
+ export interface ObjectTypeRidOrInterfaceTypeRidOrIdInRequest_objectType {
5709
+ type: "objectType";
5710
+ objectType: ObjectTypeRid;
5711
+ }
5712
+ export interface ObjectTypeRidOrInterfaceTypeRidOrIdInRequest_interfaceType {
5713
+ type: "interfaceType";
5714
+ interfaceType: InterfaceTypeRidOrIdInRequest;
5715
+ }
5716
+ /**
5717
+ * Either an ObjectTypeRid or an InterfaceTypeRidOrIdInRequest.
5718
+ */
5719
+ export type ObjectTypeRidOrInterfaceTypeRidOrIdInRequest = ObjectTypeRidOrInterfaceTypeRidOrIdInRequest_objectType | ObjectTypeRidOrInterfaceTypeRidOrIdInRequest_interfaceType;
5538
5720
  /**
5539
5721
  * A wrapping of ObjectType rids and InterfaceType rids, used when returning information from API name conflict
5540
5722
  * checks.
@@ -5759,6 +5941,7 @@ export interface OntologyBulkLoadEntitiesRequest {
5759
5941
  includeTypeGroupEntitiesCount?: boolean | null | undefined;
5760
5942
  interfaceTypes: Array<InterfaceTypeLoadRequest>;
5761
5943
  linkTypes: Array<LinkTypeLoadRequest>;
5944
+ loadLinkTypeRelatedObjectTypes?: boolean | null | undefined;
5762
5945
  loadRedacted?: boolean | null | undefined;
5763
5946
  objectTypes: Array<ObjectTypeLoadRequest>;
5764
5947
  sharedPropertyTypes: Array<SharedPropertyTypeLoadRequest>;
@@ -5802,6 +5985,12 @@ export interface OntologyInformation {
5802
5985
  displayName: string;
5803
5986
  }
5804
5987
  /**
5988
+ * Contains the definition for platform effects that are executed as part of running an Action.
5989
+ */
5990
+ export interface OntologyIrActionEffects {
5991
+ synchronousPreWritebackEffect?: OntologyIrSynchronousPreWritebackEffect | null | undefined;
5992
+ }
5993
+ /**
5805
5994
  * The ActionLogic in an ActionType map the Parameters to what edits should be made in Phonograph. It employs
5806
5995
  * LogicRules for the core Action logic and, optionally, an ActionLogRule for capturing a record of the Action
5807
5996
  * execution. We don't allow the mixing of FunctionRule with other LogicRules in the same ActionType.
@@ -6241,7 +6430,8 @@ export interface OntologyIrArrayPropertyType {
6241
6430
  }
6242
6431
  export interface OntologyIrArrayPropertyTypeReducer {
6243
6432
  direction: ArrayPropertyTypeReducerSortDirection;
6244
- field?: StructFieldRid | null | undefined;
6433
+ fieldApiName?: ObjectTypeFieldApiName | null | undefined;
6434
+ structApiName?: ObjectTypeFieldApiName | null | undefined;
6245
6435
  }
6246
6436
  export interface OntologyIrAsynchronousPostWritebackWebhook_staticDirectInput {
6247
6437
  type: "staticDirectInput";
@@ -6918,11 +7108,15 @@ export interface OntologyIrLogicRuleValue_synchronousWebhookOutput {
6918
7108
  type: "synchronousWebhookOutput";
6919
7109
  synchronousWebhookOutput: WebhookOutputParamName;
6920
7110
  }
7111
+ export interface OntologyIrLogicRuleValue_scheduleRunRid {
7112
+ type: "scheduleRunRid";
7113
+ scheduleRunRid: ScheduleRunRidValue;
7114
+ }
6921
7115
  /**
6922
7116
  * These are the possible values that can be passed into LogicRules as well as Notification and Webhook side
6923
7117
  * effects.
6924
7118
  */
6925
- export type OntologyIrLogicRuleValue = OntologyIrLogicRuleValue_parameterId | OntologyIrLogicRuleValue_staticValue | OntologyIrLogicRuleValue_objectParameterPropertyValue | OntologyIrLogicRuleValue_interfaceParameterPropertyValue | OntologyIrLogicRuleValue_currentUser | OntologyIrLogicRuleValue_currentTime | OntologyIrLogicRuleValue_uniqueIdentifier | OntologyIrLogicRuleValue_synchronousWebhookOutput;
7119
+ export type OntologyIrLogicRuleValue = OntologyIrLogicRuleValue_parameterId | OntologyIrLogicRuleValue_staticValue | OntologyIrLogicRuleValue_objectParameterPropertyValue | OntologyIrLogicRuleValue_interfaceParameterPropertyValue | OntologyIrLogicRuleValue_currentUser | OntologyIrLogicRuleValue_currentTime | OntologyIrLogicRuleValue_uniqueIdentifier | OntologyIrLogicRuleValue_synchronousWebhookOutput | OntologyIrLogicRuleValue_scheduleRunRid;
6926
7120
  /**
6927
7121
  * Contains a set of markings that represent the mandatory security of this datasource.
6928
7122
  */
@@ -7156,7 +7350,11 @@ export interface OntologyIrNumberFormatter_basisPoint {
7156
7350
  type: "basisPoint";
7157
7351
  basisPoint: NumberFormatBasisPoint;
7158
7352
  }
7159
- export type OntologyIrNumberFormatter = OntologyIrNumberFormatter_base | OntologyIrNumberFormatter_percentage | OntologyIrNumberFormatter_perMille | OntologyIrNumberFormatter_ordinal | OntologyIrNumberFormatter_currency | OntologyIrNumberFormatter_unit | OntologyIrNumberFormatter_customUnit | OntologyIrNumberFormatter_prePost | OntologyIrNumberFormatter_duration | OntologyIrNumberFormatter_thousands | OntologyIrNumberFormatter_millions | OntologyIrNumberFormatter_billions | OntologyIrNumberFormatter_basisPoint;
7353
+ export interface OntologyIrNumberFormatter_bytes {
7354
+ type: "bytes";
7355
+ bytes: NumberFormatBytes;
7356
+ }
7357
+ export type OntologyIrNumberFormatter = OntologyIrNumberFormatter_base | OntologyIrNumberFormatter_percentage | OntologyIrNumberFormatter_perMille | OntologyIrNumberFormatter_ordinal | OntologyIrNumberFormatter_currency | OntologyIrNumberFormatter_unit | OntologyIrNumberFormatter_customUnit | OntologyIrNumberFormatter_prePost | OntologyIrNumberFormatter_duration | OntologyIrNumberFormatter_thousands | OntologyIrNumberFormatter_millions | OntologyIrNumberFormatter_billions | OntologyIrNumberFormatter_basisPoint | OntologyIrNumberFormatter_bytes;
7160
7358
  /**
7161
7359
  * Note that this formatter breaks e.g. sorting features if used in combination with auto-conversion.
7162
7360
  */
@@ -7381,10 +7579,11 @@ export interface OntologyIrObjectTypeDerivedPropertiesDatasource {
7381
7579
  * This type is only compatible with object storage v2.
7382
7580
  */
7383
7581
  export interface OntologyIrObjectTypeDirectDatasource {
7384
- directSourceRid: DirectSourceRid;
7582
+ directSourceRid: _api_blockdata_DataSetName;
7385
7583
  propertyMapping: Record<ObjectTypeFieldApiName, PropertyTypeMappingInfo>;
7386
7584
  propertySecurityGroups: OntologyIrPropertySecurityGroups;
7387
7585
  retentionConfig?: RetentionConfig | null | undefined;
7586
+ timeBasedRetentionConfig?: TimeBasedRetentionConfig | null | undefined;
7388
7587
  }
7389
7588
  /**
7390
7589
  * Object type datasource which is not backed by any dataset or restricted view. This type of a "datasource"
@@ -7961,6 +8160,16 @@ export interface OntologyIrRuleSetBinding {
7961
8160
  ruleSetRid: RuleSetRid;
7962
8161
  }
7963
8162
  /**
8163
+ * This effect calls SchedulerDeploymentsService.upsertAndRunDeployment endpoint which upserts a schedule
8164
+ * deployment and runs it. See the Scheduler API docs for more details.
8165
+ * The synchronous effect doesn't wait for the actual schedule run to complete, it only waits for a successful
8166
+ * kick-off of the schedule run.
8167
+ */
8168
+ export interface OntologyIrRunScheduleDeploymentEffect {
8169
+ parameterValues: Record<ScheduleParamName, OntologyIrLogicRuleValue>;
8170
+ scheduleRid: ScheduleRid;
8171
+ }
8172
+ /**
7964
8173
  * Applies the edits from a specified Scenario instance to the main branch
7965
8174
  */
7966
8175
  export interface OntologyIrScenarioRule {
@@ -8076,6 +8285,7 @@ export interface OntologyIrSecurityGroupMandatoryOnlySecurityDefinition {
8076
8285
  }
8077
8286
  export interface OntologyIrSecurityGroupMandatoryPolicy {
8078
8287
  assumedMarkings: Array<MarkingId>;
8288
+ assumedMarkingsV2: Record<MarkingId, MarkingType>;
8079
8289
  markings: Record<MarkingId, MarkingType>;
8080
8290
  }
8081
8291
  /**
@@ -8283,7 +8493,8 @@ export interface OntologyIrStructFieldValidationDisplayMetadata {
8283
8493
  visibility: _api_types_ParameterVisibility;
8284
8494
  }
8285
8495
  export interface OntologyIrStructMainValue {
8286
- fields: Array<StructFieldRid>;
8496
+ fieldApiNames: Array<ObjectTypeFieldApiName>;
8497
+ structApiName: ObjectTypeFieldApiName;
8287
8498
  type: OntologyIrType;
8288
8499
  }
8289
8500
  export interface OntologyIrStructPropertyType {
@@ -8312,6 +8523,14 @@ export interface OntologyIrSubtractionOperation {
8312
8523
  leftOperand: OntologyIrParameterTransformPrefillValue;
8313
8524
  rightOperand: OntologyIrParameterTransformPrefillValue;
8314
8525
  }
8526
+ export interface OntologyIrSynchronousPreWritebackEffect_runScheduleDeployment {
8527
+ type: "runScheduleDeployment";
8528
+ runScheduleDeployment: OntologyIrRunScheduleDeploymentEffect;
8529
+ }
8530
+ /**
8531
+ * Union wrapping the various options available for configuring a platform effect which will be executed synchronously.
8532
+ */
8533
+ export type OntologyIrSynchronousPreWritebackEffect = OntologyIrSynchronousPreWritebackEffect_runScheduleDeployment;
8315
8534
  export interface OntologyIrSynchronousPreWritebackWebhook_staticDirectInput {
8316
8535
  type: "staticDirectInput";
8317
8536
  staticDirectInput: OntologyIrStaticWebhookWithDirectInput;
@@ -9821,6 +10040,20 @@ export interface PropertySecurityGroup {
9821
10040
  type?: PropertySecurityGroupType | null | undefined;
9822
10041
  }
9823
10042
  /**
10043
+ * Creates a new PSG. A RID will be generated.
10044
+ */
10045
+ export interface PropertySecurityGroupCreate {
10046
+ properties: Array<PropertyTypeId>;
10047
+ security: SecurityGroupSecurityDefinitionModification;
10048
+ type: PropertySecurityGroupType;
10049
+ }
10050
+ /**
10051
+ * Deletes an existing PSG by RID.
10052
+ */
10053
+ export interface PropertySecurityGroupDelete {
10054
+ rid: PropertySecurityGroupRid;
10055
+ }
10056
+ /**
9824
10057
  * Modification of PropertySecurityGroup. A globally unique identifier will be generated for each unique
9825
10058
  * SecurityGroupSecurityDefinitionModification specification.
9826
10059
  *
@@ -9840,6 +10073,29 @@ export interface PropertySecurityGroupModification {
9840
10073
  */
9841
10074
  export type PropertySecurityGroupName = string;
9842
10075
  /**
10076
+ * Leaves the specified PSG unchanged.
10077
+ */
10078
+ export interface PropertySecurityGroupNoop {
10079
+ rid: PropertySecurityGroupRid;
10080
+ }
10081
+ export interface PropertySecurityGroupPatch_create {
10082
+ type: "create";
10083
+ create: PropertySecurityGroupCreate;
10084
+ }
10085
+ export interface PropertySecurityGroupPatch_update {
10086
+ type: "update";
10087
+ update: PropertySecurityGroupUpdate;
10088
+ }
10089
+ export interface PropertySecurityGroupPatch_noop {
10090
+ type: "noop";
10091
+ noop: PropertySecurityGroupNoop;
10092
+ }
10093
+ export interface PropertySecurityGroupPatch_delete {
10094
+ type: "delete";
10095
+ delete: PropertySecurityGroupDelete;
10096
+ }
10097
+ export type PropertySecurityGroupPatch = PropertySecurityGroupPatch_create | PropertySecurityGroupPatch_update | PropertySecurityGroupPatch_noop | PropertySecurityGroupPatch_delete;
10098
+ /**
9843
10099
  * A randomly generated rid that identifies a unique PropertySecurityGroup.
9844
10100
  */
9845
10101
  export type PropertySecurityGroupRid = string;
@@ -9863,6 +10119,16 @@ export interface PropertySecurityGroupType_property {
9863
10119
  }
9864
10120
  export type PropertySecurityGroupType = PropertySecurityGroupType_primaryKey | PropertySecurityGroupType_property;
9865
10121
  /**
10122
+ * Updates an existing PSG by RID. Note that the rid of a PSG remains stable unless the security definition is
10123
+ * updated, in which case a new rid will be generated.
10124
+ */
10125
+ export interface PropertySecurityGroupUpdate {
10126
+ properties: Array<PropertyTypeId>;
10127
+ rid: PropertySecurityGroupRid;
10128
+ security: SecurityGroupSecurityDefinitionModification;
10129
+ type: PropertySecurityGroupType;
10130
+ }
10131
+ /**
9866
10132
  * A PropertyType is a typed attribute of an ObjectType.
9867
10133
  */
9868
10134
  export interface PropertyType {
@@ -10110,12 +10376,15 @@ export interface PropertyWithoutRid {
10110
10376
  }
10111
10377
  /**
10112
10378
  * A PutActionTypeRequest is used to create or modify Action Types.
10379
+ *
10380
+ * Deprecated: Used in deprecated ActionTypeModifyRequest. Use ActionTypeCreate with OntologyModificationRequest instead.
10113
10381
  */
10114
10382
  export interface PutActionTypeRequest {
10115
10383
  actionLogConfiguration?: ActionLogConfiguration | null | undefined;
10116
10384
  apiName: ActionTypeApiName;
10117
10385
  branchSettings?: ActionTypeBranchSettingsModification | null | undefined;
10118
10386
  displayMetadata: ActionTypeDisplayMetadataModification;
10387
+ effects?: ActionEffects | null | undefined;
10119
10388
  logic: ActionLogic;
10120
10389
  notifications: Array<ActionNotification>;
10121
10390
  notificationSettings?: ActionNotificationSettings | null | undefined;
@@ -10129,6 +10398,8 @@ export interface PutActionTypeRequest {
10129
10398
  }
10130
10399
  /**
10131
10400
  * A PutParameterRequest is used to create or modify Parameters.
10401
+ *
10402
+ * Deprecated: Used in deprecated ActionTypeModifyRequest. Use PutParameterRequestModification with OntologyModificationRequest instead.
10132
10403
  */
10133
10404
  export interface PutParameterRequest {
10134
10405
  displayMetadata: ParameterDisplayMetadata;
@@ -10145,6 +10416,8 @@ export interface PutParameterRequestModification {
10145
10416
  }
10146
10417
  /**
10147
10418
  * A PutSectionRequest is used to create or modify Sections.
10419
+ *
10420
+ * Deprecated: Used in deprecated ActionTypeModifyRequest. Use PutSectionRequestModification with OntologyModificationRequest instead.
10148
10421
  */
10149
10422
  export interface PutSectionRequest {
10150
10423
  content: Array<SectionContent>;
@@ -10408,6 +10681,23 @@ export interface RuleSetsAlreadyExistError {
10408
10681
  export interface RuleSetsNotFoundError {
10409
10682
  ruleSetRids: Array<RuleSetRid>;
10410
10683
  }
10684
+ /**
10685
+ * This effect calls SchedulerDeploymentsService.upsertAndRunDeployment endpoint which upserts a schedule
10686
+ * deployment and runs it. See the Scheduler API docs for more details.
10687
+ * The synchronous effect doesn't wait for the actual schedule run to complete, it only waits for a successful
10688
+ * kick-off of the schedule run.
10689
+ */
10690
+ export interface RunScheduleDeploymentEffect {
10691
+ parameterValues: Record<ScheduleParamName, LogicRuleValue>;
10692
+ scheduleRid: ScheduleRid;
10693
+ }
10694
+ /**
10695
+ * See RunScheduleDeploymentEffect docs.
10696
+ */
10697
+ export interface RunScheduleDeploymentEffectModification {
10698
+ parameterValues: Record<ScheduleParamName, LogicRuleValue>;
10699
+ scheduleRid: ScheduleRid;
10700
+ }
10411
10701
  export interface SafeArg {
10412
10702
  name: string;
10413
10703
  value: string;
@@ -10492,6 +10782,18 @@ export interface ScenarioScope {
10492
10782
  objectTypes: Array<ObjectTypeId>;
10493
10783
  }
10494
10784
  /**
10785
+ * Name of a schedule parameter. Not safe to log.
10786
+ */
10787
+ export type ScheduleParamName = string;
10788
+ /**
10789
+ * The rid for a Schedule, generated and owned by Scheduler service.
10790
+ */
10791
+ export type ScheduleRid = string;
10792
+ /**
10793
+ * The resulting schedule run RID of a synchronous RunScheduleDeploymentEffect on the Action type.
10794
+ */
10795
+ export interface ScheduleRunRidValue {}
10796
+ /**
10495
10797
  * Identifier for a schema migration.
10496
10798
  */
10497
10799
  export type SchemaMigrationRid = string;
@@ -11557,6 +11859,22 @@ export interface SubtractionOperation {
11557
11859
  leftOperand: ParameterTransformPrefillValue;
11558
11860
  rightOperand: ParameterTransformPrefillValue;
11559
11861
  }
11862
+ export interface SynchronousPreWritebackEffect_runScheduleDeployment {
11863
+ type: "runScheduleDeployment";
11864
+ runScheduleDeployment: RunScheduleDeploymentEffect;
11865
+ }
11866
+ /**
11867
+ * Union wrapping the various options available for configuring a platform effect which will be executed synchronously.
11868
+ */
11869
+ export type SynchronousPreWritebackEffect = SynchronousPreWritebackEffect_runScheduleDeployment;
11870
+ export interface SynchronousPreWritebackEffectModification_runScheduleDeployment {
11871
+ type: "runScheduleDeployment";
11872
+ runScheduleDeployment: RunScheduleDeploymentEffectModification;
11873
+ }
11874
+ /**
11875
+ * See SynchronousPreWritebackEffect docs.
11876
+ */
11877
+ export type SynchronousPreWritebackEffectModification = SynchronousPreWritebackEffectModification_runScheduleDeployment;
11560
11878
  export interface SynchronousPreWritebackWebhook_staticDirectInput {
11561
11879
  type: "staticDirectInput";
11562
11880
  staticDirectInput: StaticWebhookWithDirectInput;
@@ -11637,9 +11955,21 @@ export interface TextEmbeddingModel_foundryLiveDeployment {
11637
11955
  type: "foundryLiveDeployment";
11638
11956
  foundryLiveDeployment: FoundryLiveDeployment;
11639
11957
  }
11640
- export type TextEmbeddingModel = TextEmbeddingModel_lms | TextEmbeddingModel_foundryLiveDeployment;
11958
+ export interface TextEmbeddingModel_functionBacked {
11959
+ type: "functionBacked";
11960
+ functionBacked: FunctionBackedEmbeddingModel;
11961
+ }
11962
+ export type TextEmbeddingModel = TextEmbeddingModel_lms | TextEmbeddingModel_foundryLiveDeployment | TextEmbeddingModel_functionBacked;
11641
11963
  export interface TextModality {}
11642
11964
  /**
11965
+ * Time-based retention configuration for direct datasources. Objects older than the retention window will be
11966
+ * permanently deleted. The duration should be specified in ISO8601 format, such as `P30D` (30 days) or
11967
+ * `PT720H` (720 hours).
11968
+ */
11969
+ export interface TimeBasedRetentionConfig {
11970
+ window: string;
11971
+ }
11972
+ /**
11643
11973
  * A retention policy where the datasource will contain at least data from the specified time window.
11644
11974
  */
11645
11975
  export interface TimeBasedRetentionPolicy {