@elyx-code/project-logic-tree 0.0.7140 → 0.0.7142

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/dist/index.d.ts CHANGED
@@ -656,7 +656,7 @@ export declare function afterLiteralValueAsTypeDeleteSideEffects(entity: EntityW
656
656
 
657
657
  export declare function aggregateVariableInputsNextValues(objectData: UntypedObjectValue, entity: VariableDeclarationState, context: IValueResolutionContext, onlyDefault?: boolean): UntypedObjectValue;
658
658
 
659
- export declare function aggregateVariableInputsValues(objectData: UntypedObjectValue, entity: VariableDeclarationState | TerminationEntityState, context: IValueResolutionContext, onlyDefault?: boolean): UntypedObjectValue;
659
+ export declare function aggregateVariableInputsValues(objectData: UntypedObjectValue, entity: VariableInstanceState | VariableDeclarationState | TerminationEntityState, context: IValueResolutionContext, onlyDefault?: boolean): UntypedObjectValue;
660
660
 
661
661
  declare class AggregationStatement implements ISearchNode {
662
662
  owner: SearchStatementState;
@@ -22523,7 +22523,10 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
22523
22523
 
22524
22524
  export declare function getEntitiesCreatedSinceInitialization(projectState: ProjectState, preInitDate: string): UserManagedEntityState[];
22525
22525
 
22526
- export declare function getEntitiesToPropagateValuesTo(entity: EntityWithValueState, project: ProjectState, seenInRecursion?: Set<EntityId>): EntityWithValueState[];
22526
+ export declare function getEntitiesToPropagateValuesTo(entity: EntityWithValueState, project: ProjectState, options?: {
22527
+ seenInRecursion?: Set<EntityId>;
22528
+ forVarInst?: boolean;
22529
+ }): EntityWithValueState[];
22527
22530
 
22528
22531
  export declare function getEntityArgumentDeclarations(entity: ExecutableEntityState): (ArgumentDeclarationState | ValueDescriptorState)[];
22529
22532
 
@@ -23832,6 +23835,17 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
23832
23835
 
23833
23836
  export declare const googleSheetAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
23834
23837
 
23838
+ export declare enum GoogleSheetsAddDataValidationValidationErrorCodes {
23839
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
23840
+ UrlProvided = "url-provided",
23841
+ SpacesIncluded = "spaces-included",
23842
+ InvalidChars = "invalid-chars",
23843
+ TooShort = "too-short",
23844
+ ConditionTypeEmpty = "condition-type-empty",
23845
+ InvalidConditionType = "invalid-condition-type",
23846
+ ConditionValuesMustBeArray = "condition-values-must-be-array"
23847
+ }
23848
+
23835
23849
  export declare enum GoogleSheetsAppendRowsValidationErrorCodes {
23836
23850
  RangeCannotBeEmpty = "range-cannot-be-empty",
23837
23851
  RangeCannotContainQuotes = "range-cannot-contain-quotes",
@@ -23849,7 +23863,40 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
23849
23863
  ValuesMustBe2DArray = "values-must-be-2d-array"
23850
23864
  }
23851
23865
 
23866
+ export declare enum GoogleSheetsBatchGetValuesValidationErrorCodes {
23867
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
23868
+ UrlProvided = "url-provided",
23869
+ SpacesIncluded = "spaces-included",
23870
+ InvalidChars = "invalid-chars",
23871
+ TooShort = "too-short",
23872
+ RangesMustBeArray = "ranges-must-be-array",
23873
+ RangesEmpty = "ranges-empty"
23874
+ }
23875
+
23876
+ export declare enum GoogleSheetsBatchUpdateSpreadsheetValidationErrorCodes {
23877
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
23878
+ UrlProvided = "url-provided",
23879
+ SpacesIncluded = "spaces-included",
23880
+ InvalidChars = "invalid-chars",
23881
+ TooShort = "too-short",
23882
+ RequestsMustBeArray = "requests-must-be-array",
23883
+ RequestsEmpty = "requests-empty"
23884
+ }
23885
+
23886
+ export declare enum GoogleSheetsGetRangeValuesValidationErrorCodes {
23887
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
23888
+ UrlProvided = "url-provided",
23889
+ SpacesIncluded = "spaces-included",
23890
+ InvalidChars = "invalid-chars",
23891
+ TooShort = "too-short"
23892
+ }
23893
+
23852
23894
  export declare enum GoogleSheetsUpdateRangeValuesValidationErrorCodes {
23895
+ SpreadsheetIdEmpty = "spreadsheet-id-empty",
23896
+ UrlProvided = "url-provided",
23897
+ SpacesIncluded = "spaces-included",
23898
+ InvalidChars = "invalid-chars",
23899
+ TooShort = "too-short",
23853
23900
  ValuesMustBeArray = "values-must-be-array",
23854
23901
  ValuesMustBe2DArray = "values-must-be-2d-array"
23855
23902
  }
@@ -23922,7 +23969,11 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
23922
23969
  newEntities: EntityState[];
23923
23970
  };
23924
23971
 
23925
- export declare function handleLiteralValueChange(newValue: LiteralValueType, entity: EntityWithValueState, project: ProjectState, storage: ChangeSet | IValueStoreClient, asCastedType?: PrimitiveTypes, rawString?: string | null): ChangeSet | null;
23972
+ export declare function handleLiteralValueChange(newValue: LiteralValueType, entity: EntityWithValueState, project: ProjectState, storage: ChangeSet | IValueStoreClient, options?: {
23973
+ asCastedType?: PrimitiveTypes;
23974
+ rawString?: string | null;
23975
+ forVarInst?: boolean;
23976
+ }): ChangeSet | null;
23926
23977
 
23927
23978
  export declare function handleLiteralValueDelete(entity: EntityWithValueState, project: ProjectState, storage: ChangeSet | IValueStoreClient): ChangeSet | null;
23928
23979
 
@@ -35747,6 +35798,8 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
35747
35798
 
35748
35799
  export declare function resolveActionDescriptorNameById(id: string): string | null;
35749
35800
 
35801
+ export declare function resolveAggregateObjectValue(entity: VariableInstanceState | VariableDeclarationState | TerminationEntityState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
35802
+
35750
35803
  /**
35751
35804
  * Recursively resolves all condition entities which need to be passed
35752
35805
  * to get from the entry point to the given entity.
@@ -35883,8 +35936,6 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
35883
35936
 
35884
35937
  export declare function resolveValueDescriptorValue(entity: ValueDescriptorState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
35885
35938
 
35886
- export declare function resolveVarDeclarationAggregateObjectValue(entity: VariableDeclarationState | TerminationEntityState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
35887
-
35888
35939
  export declare function resolveVarDeclarationNextAggregateObjectValue(entity: VariableDeclarationState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
35889
35940
 
35890
35941
  export declare function resolveVarDeclarationNextValue(entity: VariableDeclarationState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;