@elyx-code/project-logic-tree 0.0.7117 → 0.0.7119
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.cjs +133 -133
- package/dist/index.d.ts +20 -0
- package/dist/index.js +11840 -11744
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -617,6 +617,8 @@ export declare const appendRowsValuesInputDataTypeNestedBoolean: IDataTypeTransf
|
|
|
617
617
|
|
|
618
618
|
export declare const appendRowsValuesInputDataTypeNestedList: IDataTypeTransfer;
|
|
619
619
|
|
|
620
|
+
export declare const appendRowsValuesInputDataTypeNestedNull: IDataTypeTransfer;
|
|
621
|
+
|
|
620
622
|
export declare const appendRowsValuesInputDataTypeNestedNumber: IDataTypeTransfer;
|
|
621
623
|
|
|
622
624
|
export declare const appendRowsValuesInputDataTypeNestedString: IDataTypeTransfer;
|
|
@@ -845,6 +847,7 @@ export declare class ArgumentDeclarationState extends UserManagedVersionedState
|
|
|
845
847
|
startedInitialization: boolean;
|
|
846
848
|
suggestion: boolean;
|
|
847
849
|
readonly _codeNativeValueValidation: ValueValidationCallback | null;
|
|
850
|
+
readonly _codeNativeInitExampleValue: ExampleValueInitCallback | null;
|
|
848
851
|
constructor(initialData: IArgumentDeclaration | IArgumentDeclarationTransfer, parentProjectState: ProjectState);
|
|
849
852
|
static repository: IEditableEntityPersistanceRepository;
|
|
850
853
|
static type: EntityType.ArgumentDeclaration;
|
|
@@ -874,6 +877,7 @@ export declare class ArgumentDeclarationState extends UserManagedVersionedState
|
|
|
874
877
|
modifiedData: IArgumentDeclarationGenerationTarget;
|
|
875
878
|
};
|
|
876
879
|
get codeNativeValueValidation(): ValueValidationCallback | null;
|
|
880
|
+
get codeNativeInitExampleValue(): ExampleValueInitCallback | null;
|
|
877
881
|
validateGeneratedUpdate(data: Partial<IArgumentDeclarationGenerationTarget>): {
|
|
878
882
|
errors: EntityGenerationError[];
|
|
879
883
|
explanations: {
|
|
@@ -16951,6 +16955,7 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
16951
16955
|
export declare abstract class EntityWithDefaultValueClass {
|
|
16952
16956
|
abstract getDefaultValue(): LiteralValueState | null;
|
|
16953
16957
|
abstract codeNativeValueValidation: ValueValidationCallback | null;
|
|
16958
|
+
abstract codeNativeInitExampleValue: ExampleValueInitCallback | null;
|
|
16954
16959
|
}
|
|
16955
16960
|
|
|
16956
16961
|
export declare type EntityWithDefaultValueGenerationTarget = ValueWritingEntityGenerationTarget | IArgumentDeclarationGenerationTarget | IPropertyGenerationTarget | IValueDescriptorGenerationTarget;
|
|
@@ -17075,6 +17080,8 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
17075
17080
|
|
|
17076
17081
|
export declare type EventEntityTypesUnion = EventEntity | EventEntityTransfer | EventEntityShallowTransfer | EventEntityGenerationTarget;
|
|
17077
17082
|
|
|
17083
|
+
export declare type ExampleValueInitCallback = (self: EntityWithValueState) => IExampleValueInitResult | Promise<IExampleValueInitResult>;
|
|
17084
|
+
|
|
17078
17085
|
export declare const EXECUTABLE_TYPES: EntityType[];
|
|
17079
17086
|
|
|
17080
17087
|
export declare type ExecutableEntity = CallableEntity | EntryPointEntity;
|
|
@@ -22988,6 +22995,10 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
22988
22995
|
stripe_org_sub_mngmt_url: string;
|
|
22989
22996
|
}
|
|
22990
22997
|
|
|
22998
|
+
export declare interface IExampleValueInitResult {
|
|
22999
|
+
value: any;
|
|
23000
|
+
}
|
|
23001
|
+
|
|
22991
23002
|
export declare interface IExecutionCallbackContext {
|
|
22992
23003
|
detached: boolean;
|
|
22993
23004
|
execution?: Execution;
|
|
@@ -23600,6 +23611,7 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
23600
23611
|
startedInitialization: boolean;
|
|
23601
23612
|
suggestion: boolean;
|
|
23602
23613
|
readonly _codeNativeValueValidation: ValueValidationCallback | null;
|
|
23614
|
+
readonly _codeNativeInitExampleValue: ExampleValueInitCallback | null;
|
|
23603
23615
|
constructor(initialData: IInputMap | IInputMapTransfer, parentProjectState: ProjectState);
|
|
23604
23616
|
static repository: IEditableEntityPersistanceRepository;
|
|
23605
23617
|
static type: EntityType.InputMap;
|
|
@@ -23629,6 +23641,7 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
23629
23641
|
modifiedData: IInputMapGenerationTarget;
|
|
23630
23642
|
};
|
|
23631
23643
|
get codeNativeValueValidation(): ValueValidationCallback | null;
|
|
23644
|
+
get codeNativeInitExampleValue(): ExampleValueInitCallback | null;
|
|
23632
23645
|
validateGeneratedUpdate(data: Partial<IInputMapGenerationTarget>): {
|
|
23633
23646
|
errors: EntityGenerationError[];
|
|
23634
23647
|
explanations: {
|
|
@@ -32586,6 +32599,7 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
32586
32599
|
startedInitialization: boolean;
|
|
32587
32600
|
suggestion: boolean;
|
|
32588
32601
|
readonly _codeNativeValueValidation: ValueValidationCallback | null;
|
|
32602
|
+
readonly _codeNativeInitExampleValue: ExampleValueInitCallback | null;
|
|
32589
32603
|
constructor(initialData: IProperty | IPropertyTransfer, parentProjectState: ProjectState);
|
|
32590
32604
|
static repository: IEditableEntityPersistanceRepository;
|
|
32591
32605
|
static type: EntityType.Property;
|
|
@@ -32616,6 +32630,7 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
32616
32630
|
};
|
|
32617
32631
|
get isExtendedProperty(): boolean;
|
|
32618
32632
|
get codeNativeValueValidation(): ValueValidationCallback | null;
|
|
32633
|
+
get codeNativeInitExampleValue(): ExampleValueInitCallback | null;
|
|
32619
32634
|
validateGeneratedUpdate(data: Partial<IPropertyGenerationTarget>): {
|
|
32620
32635
|
errors: EntityGenerationError[];
|
|
32621
32636
|
explanations: {
|
|
@@ -37693,6 +37708,7 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
37693
37708
|
initialized: boolean;
|
|
37694
37709
|
startedInitialization: boolean;
|
|
37695
37710
|
readonly _codeNativeValueValidation: ValueValidationCallback | null;
|
|
37711
|
+
readonly _codeNativeInitExampleValue: ExampleValueInitCallback | null;
|
|
37696
37712
|
constructor(initialData: IValueDescriptor | IValueDescriptorTransfer, parentProjectState: ProjectState);
|
|
37697
37713
|
static repository: IEditableEntityPersistanceRepository;
|
|
37698
37714
|
static type: EntityType.ValueDescriptor;
|
|
@@ -37722,6 +37738,7 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
37722
37738
|
modifiedData: IValueDescriptorGenerationTarget;
|
|
37723
37739
|
};
|
|
37724
37740
|
get codeNativeValueValidation(): ValueValidationCallback | null;
|
|
37741
|
+
get codeNativeInitExampleValue(): ExampleValueInitCallback | null;
|
|
37725
37742
|
validateGeneratedUpdate(data: Partial<IValueDescriptorGenerationTarget>): {
|
|
37726
37743
|
errors: EntityGenerationError[];
|
|
37727
37744
|
explanations: {
|
|
@@ -37943,6 +37960,7 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
37943
37960
|
startedInitialization: boolean;
|
|
37944
37961
|
suggestion: boolean;
|
|
37945
37962
|
readonly codeNativeValueValidation: ValueValidationCallback | null;
|
|
37963
|
+
readonly codeNativeInitExampleValue: ExampleValueInitCallback | null;
|
|
37946
37964
|
constructor(initialData: IVariableDeclaration | IVariableDeclarationTransfer, parentProjectState: ProjectState);
|
|
37947
37965
|
static repository: IEditableEntityPersistanceRepository;
|
|
37948
37966
|
static type: EntityType.VariableDeclaration;
|
|
@@ -38171,6 +38189,7 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
38171
38189
|
startedInitialization: boolean;
|
|
38172
38190
|
suggestion: boolean;
|
|
38173
38191
|
readonly _codeNativeValueValidation: ValueValidationCallback | null;
|
|
38192
|
+
readonly _codeNativeInitExampleValue: ExampleValueInitCallback | null;
|
|
38174
38193
|
constructor(initialData: IVariableInstance | IVariableInstanceTransfer, parentProjectState: ProjectState);
|
|
38175
38194
|
static repository: IEditableEntityPersistanceRepository;
|
|
38176
38195
|
static type: EntityType.VariableInstance;
|
|
@@ -38201,6 +38220,7 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
38201
38220
|
};
|
|
38202
38221
|
get codeName(): string | null;
|
|
38203
38222
|
get codeNativeValueValidation(): ValueValidationCallback | null;
|
|
38223
|
+
get codeNativeInitExampleValue(): ExampleValueInitCallback | null;
|
|
38204
38224
|
validateGeneratedUpdate(data: Partial<IVariableInstanceGenerationTarget>): {
|
|
38205
38225
|
errors: EntityGenerationError[];
|
|
38206
38226
|
explanations: {
|