@imbricate/core 3.20.0 → 3.20.1
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/package.json
CHANGED
|
@@ -13,6 +13,7 @@ export declare abstract class ImbricatePropertyFullFeatureWithActionBase<T exten
|
|
|
13
13
|
abstract readonly propertyType: T;
|
|
14
14
|
abstract readonly propertyValue: ImbricatePropertyValueObject<T>;
|
|
15
15
|
readonly supportedFeatures: IMBRICATE_PROPERTY_FEATURE[];
|
|
16
|
+
abstract cloneWithValue(value: ImbricatePropertyValueObject<T>): IImbricateProperty<T>;
|
|
16
17
|
abstract queryOriginActions(query: ImbricateCommonQueryOriginActionsQuery): PromiseLike<ImbricateCommonQueryOriginActionsOutcome>;
|
|
17
18
|
abstract executeOriginAction(input: ImbricateOriginActionInput): PromiseLike<ImbricateOriginActionOutcome>;
|
|
18
19
|
}
|
package/property/interface.d.ts
CHANGED
|
@@ -24,6 +24,14 @@ export interface IImbricateProperty<T extends IMBRICATE_PROPERTY_TYPE> {
|
|
|
24
24
|
* Supported features of the property
|
|
25
25
|
*/
|
|
26
26
|
readonly supportedFeatures: IMBRICATE_PROPERTY_FEATURE[];
|
|
27
|
+
/**
|
|
28
|
+
* Clone the property with the new value
|
|
29
|
+
*
|
|
30
|
+
* @param value the new value
|
|
31
|
+
*
|
|
32
|
+
* @returns the cloned property
|
|
33
|
+
*/
|
|
34
|
+
cloneWithValue(value: ImbricatePropertyValueObject<T>): IImbricateProperty<T>;
|
|
27
35
|
/**
|
|
28
36
|
* Query the property actions
|
|
29
37
|
*
|