@dcl/playground-assets 7.24.3-28199504206.commit-1a6c780 → 7.24.3-28525637063.commit-3df0a22

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/alpha.d.ts CHANGED
@@ -220,42 +220,6 @@ export declare interface AudioStreamComponentDefinitionExtended extends LastWrit
220
220
  getAudioState(entity: Entity): PBAudioEvent | undefined;
221
221
  }
222
222
 
223
- /**
224
- * @public
225
- */
226
- export declare type AuthoritativePutComponentMessage = CrdtMessageHeader & AuthoritativePutComponentMessageBody;
227
-
228
- /**
229
- * Server authoritative message - identical to PutComponentMessageBody but with forced processing
230
- * Min. length = header (8 bytes) + 16 bytes = 24 bytes
231
- *
232
- * @param entity - Uint32 number of the entity
233
- * @param componentId - Uint32 number of id
234
- * @param timestamp - Uint32 Lamport timestamp (server's authoritative timestamp)
235
- * @param data - Uint8[] data of component => length(4 bytes) + block of bytes[0..length-1]
236
- * @public
237
- */
238
- export declare type AuthoritativePutComponentMessageBody = {
239
- type: CrdtMessageType.AUTHORITATIVE_PUT_COMPONENT;
240
- entityId: Entity;
241
- componentId: number;
242
- timestamp: number;
243
- data: Uint8Array;
244
- };
245
-
246
- /**
247
- * @public
248
- */
249
- export declare namespace AuthoritativePutComponentOperation {
250
- const MESSAGE_HEADER_LENGTH = 16;
251
- /**
252
- * Call this function for an optimal writing data passing the ByteBuffer
253
- * already allocated
254
- */
255
- export function write(entity: Entity, timestamp: number, componentId: number, data: Uint8Array, buf: ByteBuffer): void;
256
- export function read(buf: ByteBuffer): AuthoritativePutComponentMessage | null;
257
- }
258
-
259
223
  /** AvatarAnchorPointType determines the part of the avatar's body that anchors the Entity. */
260
224
  /**
261
225
  * @public
@@ -418,22 +382,6 @@ export declare interface BaseComponent<T> {
418
382
  * If the value is undefined, the component was deleted.
419
383
  */
420
384
  onChange(entity: Entity, cb: (value: T | undefined) => void): void;
421
- /**
422
- * @public
423
- *
424
- */
425
- validateBeforeChange(entity: Entity, cb: ValidateCallback<T>): void;
426
- validateBeforeChange(cb: ValidateCallback<T>): void;
427
- /**
428
- * Get the CRDT state for an entity (serialized data and timestamp)
429
- * @param entity - Entity to get the CRDT state for
430
- * @returns Object with serialized data and timestamp, or null if entity doesn't have the component
431
- * @public
432
- */
433
- getCrdtState(entity: Entity): {
434
- data: Uint8Array;
435
- timestamp: number;
436
- } | null;
437
385
  }
438
386
 
439
387
  /** @public */
@@ -1672,12 +1620,12 @@ export declare const CRDT_MESSAGE_HEADER_LENGTH = 8;
1672
1620
  /**
1673
1621
  * @public
1674
1622
  */
1675
- export declare type CrdtMessage = PutComponentMessage | AuthoritativePutComponentMessage | DeleteComponentMessage | AppendValueMessage | DeleteEntityMessage | PutNetworkComponentMessage | DeleteComponentNetworkMessage | DeleteEntityNetworkMessage;
1623
+ export declare type CrdtMessage = PutComponentMessage | DeleteComponentMessage | AppendValueMessage | DeleteEntityMessage | PutNetworkComponentMessage | DeleteComponentNetworkMessage | DeleteEntityNetworkMessage;
1676
1624
 
1677
1625
  /**
1678
1626
  * @public
1679
1627
  */
1680
- export declare type CrdtMessageBody = PutComponentMessageBody | AuthoritativePutComponentMessageBody | DeleteComponentMessageBody | DeleteEntityMessageBody | AppendValueMessageBody | CrdtNetworkMessageBody;
1628
+ export declare type CrdtMessageBody = PutComponentMessageBody | DeleteComponentMessageBody | DeleteEntityMessageBody | AppendValueMessageBody | CrdtNetworkMessageBody;
1681
1629
 
1682
1630
  /**
1683
1631
  * Min length = 8 bytes
@@ -1732,8 +1680,7 @@ export declare enum CrdtMessageType {
1732
1680
  PUT_COMPONENT_NETWORK = 5,
1733
1681
  DELETE_COMPONENT_NETWORK = 6,
1734
1682
  DELETE_ENTITY_NETWORK = 7,
1735
- AUTHORITATIVE_PUT_COMPONENT = 8,
1736
- MAX_MESSAGE_TYPE = 9
1683
+ MAX_MESSAGE_TYPE = 8
1737
1684
  }
1738
1685
 
1739
1686
  /**
@@ -1741,8 +1688,6 @@ export declare enum CrdtMessageType {
1741
1688
  */
1742
1689
  export declare type CrdtNetworkMessageBody = PutNetworkComponentMessageBody | DeleteComponentNetworkMessageBody | DeleteEntityNetworkMessageBody;
1743
1690
 
1744
- export declare const CreatedBy: ICreatedBy;
1745
-
1746
1691
  /**
1747
1692
  * @public
1748
1693
  */
@@ -2469,12 +2414,6 @@ export declare interface GrowOnlyValueSetComponentDefinition<T> extends BaseComp
2469
2414
 
2470
2415
  export declare type GSetComponentGetter<T extends GrowOnlyValueSetComponentDefinition<any>> = (engine: Pick<IEngine, 'defineValueSetComponentFromSchema'>) => T;
2471
2416
 
2472
- export declare type ICreatedBy = LastWriteWinElementSetComponentDefinition<ICreatedByType>;
2473
-
2474
- export declare interface ICreatedByType {
2475
- address: string;
2476
- }
2477
-
2478
2417
  /**
2479
2418
  * @public
2480
2419
  */
@@ -2928,35 +2867,6 @@ export declare const enum InteractionType {
2928
2867
  PROXIMITY = 1
2929
2868
  }
2930
2869
 
2931
- /**
2932
- * Internal component interface that exposes all internal methods for SDK use
2933
- * This is not exposed to users, only for internal SDK operations
2934
- */
2935
- export declare interface InternalBaseComponent<T> extends BaseComponent<T> {
2936
- /**
2937
- * @public
2938
- * Dry run update to check if a CRDT message would be accepted without actually applying it
2939
- */
2940
- __dry_run_updateFromCrdt(body: CrdtMessageBody): ProcessMessageResultType;
2941
- /**
2942
- * @public
2943
- * Get the iterator to every entity has the component
2944
- */
2945
- iterator(): Iterable<[Entity, any]>;
2946
- /**
2947
- * @public
2948
- */
2949
- dirtyIterator(): Iterable<Entity>;
2950
- /**
2951
- * @public
2952
- */
2953
- __onChangeCallbacks(entity: Entity, value: T): void;
2954
- /**
2955
- * @public
2956
- */
2957
- __run_validateBeforeChange(entity: Entity, newValue: T | undefined, senderAddress: string, createdBy: string): boolean;
2958
- }
2959
-
2960
2870
  /**
2961
2871
  * @public
2962
2872
  */
@@ -4941,6 +4851,12 @@ export declare interface PBAvatarLocomotionSettings {
4941
4851
  runJumpHeight?: number | undefined;
4942
4852
  /** Cooldown time after a hard landing before the avatar can move again (in seconds) */
4943
4853
  hardLandingCooldown?: number | undefined;
4854
+ /** Height of the double jump (in meters) */
4855
+ doubleJumpHeight?: number | undefined;
4856
+ /** Maximum speed when gliding (in meters per second) */
4857
+ glidingSpeed?: number | undefined;
4858
+ /** Maximum falling speed when gliding (in meters per second) */
4859
+ glidingFallingSpeed?: number | undefined;
4944
4860
  }
4945
4861
 
4946
4862
  /**
@@ -9667,14 +9583,6 @@ export declare interface UiTransformProps {
9667
9583
  */
9668
9584
  export declare type Unpacked<T> = T extends (infer U)[] ? U : T;
9669
9585
 
9670
- export declare type ValidateCallback<T> = (value: {
9671
- entity: Entity;
9672
- currentValue: T | undefined;
9673
- newValue: T | undefined;
9674
- senderAddress: string;
9675
- createdBy: string;
9676
- }) => boolean;
9677
-
9678
9586
  /**
9679
9587
  * @public
9680
9588
  */
package/dist/beta.d.ts CHANGED
@@ -220,42 +220,6 @@ export declare interface AudioStreamComponentDefinitionExtended extends LastWrit
220
220
  getAudioState(entity: Entity): PBAudioEvent | undefined;
221
221
  }
222
222
 
223
- /**
224
- * @public
225
- */
226
- export declare type AuthoritativePutComponentMessage = CrdtMessageHeader & AuthoritativePutComponentMessageBody;
227
-
228
- /**
229
- * Server authoritative message - identical to PutComponentMessageBody but with forced processing
230
- * Min. length = header (8 bytes) + 16 bytes = 24 bytes
231
- *
232
- * @param entity - Uint32 number of the entity
233
- * @param componentId - Uint32 number of id
234
- * @param timestamp - Uint32 Lamport timestamp (server's authoritative timestamp)
235
- * @param data - Uint8[] data of component => length(4 bytes) + block of bytes[0..length-1]
236
- * @public
237
- */
238
- export declare type AuthoritativePutComponentMessageBody = {
239
- type: CrdtMessageType.AUTHORITATIVE_PUT_COMPONENT;
240
- entityId: Entity;
241
- componentId: number;
242
- timestamp: number;
243
- data: Uint8Array;
244
- };
245
-
246
- /**
247
- * @public
248
- */
249
- export declare namespace AuthoritativePutComponentOperation {
250
- const MESSAGE_HEADER_LENGTH = 16;
251
- /**
252
- * Call this function for an optimal writing data passing the ByteBuffer
253
- * already allocated
254
- */
255
- export function write(entity: Entity, timestamp: number, componentId: number, data: Uint8Array, buf: ByteBuffer): void;
256
- export function read(buf: ByteBuffer): AuthoritativePutComponentMessage | null;
257
- }
258
-
259
223
  /** AvatarAnchorPointType determines the part of the avatar's body that anchors the Entity. */
260
224
  /**
261
225
  * @public
@@ -418,22 +382,6 @@ export declare interface BaseComponent<T> {
418
382
  * If the value is undefined, the component was deleted.
419
383
  */
420
384
  onChange(entity: Entity, cb: (value: T | undefined) => void): void;
421
- /**
422
- * @public
423
- *
424
- */
425
- validateBeforeChange(entity: Entity, cb: ValidateCallback<T>): void;
426
- validateBeforeChange(cb: ValidateCallback<T>): void;
427
- /**
428
- * Get the CRDT state for an entity (serialized data and timestamp)
429
- * @param entity - Entity to get the CRDT state for
430
- * @returns Object with serialized data and timestamp, or null if entity doesn't have the component
431
- * @public
432
- */
433
- getCrdtState(entity: Entity): {
434
- data: Uint8Array;
435
- timestamp: number;
436
- } | null;
437
385
  }
438
386
 
439
387
  /** @public */
@@ -1672,12 +1620,12 @@ export declare const CRDT_MESSAGE_HEADER_LENGTH = 8;
1672
1620
  /**
1673
1621
  * @public
1674
1622
  */
1675
- export declare type CrdtMessage = PutComponentMessage | AuthoritativePutComponentMessage | DeleteComponentMessage | AppendValueMessage | DeleteEntityMessage | PutNetworkComponentMessage | DeleteComponentNetworkMessage | DeleteEntityNetworkMessage;
1623
+ export declare type CrdtMessage = PutComponentMessage | DeleteComponentMessage | AppendValueMessage | DeleteEntityMessage | PutNetworkComponentMessage | DeleteComponentNetworkMessage | DeleteEntityNetworkMessage;
1676
1624
 
1677
1625
  /**
1678
1626
  * @public
1679
1627
  */
1680
- export declare type CrdtMessageBody = PutComponentMessageBody | AuthoritativePutComponentMessageBody | DeleteComponentMessageBody | DeleteEntityMessageBody | AppendValueMessageBody | CrdtNetworkMessageBody;
1628
+ export declare type CrdtMessageBody = PutComponentMessageBody | DeleteComponentMessageBody | DeleteEntityMessageBody | AppendValueMessageBody | CrdtNetworkMessageBody;
1681
1629
 
1682
1630
  /**
1683
1631
  * Min length = 8 bytes
@@ -1732,8 +1680,7 @@ export declare enum CrdtMessageType {
1732
1680
  PUT_COMPONENT_NETWORK = 5,
1733
1681
  DELETE_COMPONENT_NETWORK = 6,
1734
1682
  DELETE_ENTITY_NETWORK = 7,
1735
- AUTHORITATIVE_PUT_COMPONENT = 8,
1736
- MAX_MESSAGE_TYPE = 9
1683
+ MAX_MESSAGE_TYPE = 8
1737
1684
  }
1738
1685
 
1739
1686
  /**
@@ -1741,8 +1688,6 @@ export declare enum CrdtMessageType {
1741
1688
  */
1742
1689
  export declare type CrdtNetworkMessageBody = PutNetworkComponentMessageBody | DeleteComponentNetworkMessageBody | DeleteEntityNetworkMessageBody;
1743
1690
 
1744
- export declare const CreatedBy: ICreatedBy;
1745
-
1746
1691
  /**
1747
1692
  * @public
1748
1693
  */
@@ -2469,12 +2414,6 @@ export declare interface GrowOnlyValueSetComponentDefinition<T> extends BaseComp
2469
2414
 
2470
2415
  export declare type GSetComponentGetter<T extends GrowOnlyValueSetComponentDefinition<any>> = (engine: Pick<IEngine, 'defineValueSetComponentFromSchema'>) => T;
2471
2416
 
2472
- export declare type ICreatedBy = LastWriteWinElementSetComponentDefinition<ICreatedByType>;
2473
-
2474
- export declare interface ICreatedByType {
2475
- address: string;
2476
- }
2477
-
2478
2417
  /**
2479
2418
  * @public
2480
2419
  */
@@ -2919,35 +2858,6 @@ export declare const enum InteractionType {
2919
2858
  PROXIMITY = 1
2920
2859
  }
2921
2860
 
2922
- /**
2923
- * Internal component interface that exposes all internal methods for SDK use
2924
- * This is not exposed to users, only for internal SDK operations
2925
- */
2926
- export declare interface InternalBaseComponent<T> extends BaseComponent<T> {
2927
- /**
2928
- * @public
2929
- * Dry run update to check if a CRDT message would be accepted without actually applying it
2930
- */
2931
- __dry_run_updateFromCrdt(body: CrdtMessageBody): ProcessMessageResultType;
2932
- /**
2933
- * @public
2934
- * Get the iterator to every entity has the component
2935
- */
2936
- iterator(): Iterable<[Entity, any]>;
2937
- /**
2938
- * @public
2939
- */
2940
- dirtyIterator(): Iterable<Entity>;
2941
- /**
2942
- * @public
2943
- */
2944
- __onChangeCallbacks(entity: Entity, value: T): void;
2945
- /**
2946
- * @public
2947
- */
2948
- __run_validateBeforeChange(entity: Entity, newValue: T | undefined, senderAddress: string, createdBy: string): boolean;
2949
- }
2950
-
2951
2861
  /**
2952
2862
  * @public
2953
2863
  */
@@ -4913,6 +4823,12 @@ export declare interface PBAvatarLocomotionSettings {
4913
4823
  runJumpHeight?: number | undefined;
4914
4824
  /** Cooldown time after a hard landing before the avatar can move again (in seconds) */
4915
4825
  hardLandingCooldown?: number | undefined;
4826
+ /** Height of the double jump (in meters) */
4827
+ doubleJumpHeight?: number | undefined;
4828
+ /** Maximum speed when gliding (in meters per second) */
4829
+ glidingSpeed?: number | undefined;
4830
+ /** Maximum falling speed when gliding (in meters per second) */
4831
+ glidingFallingSpeed?: number | undefined;
4916
4832
  }
4917
4833
 
4918
4834
  /**
@@ -9634,14 +9550,6 @@ export declare interface UiTransformProps {
9634
9550
  */
9635
9551
  export declare type Unpacked<T> = T extends (infer U)[] ? U : T;
9636
9552
 
9637
- export declare type ValidateCallback<T> = (value: {
9638
- entity: Entity;
9639
- currentValue: T | undefined;
9640
- newValue: T | undefined;
9641
- senderAddress: string;
9642
- createdBy: string;
9643
- }) => boolean;
9644
-
9645
9553
  /**
9646
9554
  * @public
9647
9555
  */
@@ -220,42 +220,6 @@ export declare interface AudioStreamComponentDefinitionExtended extends LastWrit
220
220
  getAudioState(entity: Entity): PBAudioEvent | undefined;
221
221
  }
222
222
 
223
- /**
224
- * @public
225
- */
226
- export declare type AuthoritativePutComponentMessage = CrdtMessageHeader & AuthoritativePutComponentMessageBody;
227
-
228
- /**
229
- * Server authoritative message - identical to PutComponentMessageBody but with forced processing
230
- * Min. length = header (8 bytes) + 16 bytes = 24 bytes
231
- *
232
- * @param entity - Uint32 number of the entity
233
- * @param componentId - Uint32 number of id
234
- * @param timestamp - Uint32 Lamport timestamp (server's authoritative timestamp)
235
- * @param data - Uint8[] data of component => length(4 bytes) + block of bytes[0..length-1]
236
- * @public
237
- */
238
- export declare type AuthoritativePutComponentMessageBody = {
239
- type: CrdtMessageType.AUTHORITATIVE_PUT_COMPONENT;
240
- entityId: Entity;
241
- componentId: number;
242
- timestamp: number;
243
- data: Uint8Array;
244
- };
245
-
246
- /**
247
- * @public
248
- */
249
- export declare namespace AuthoritativePutComponentOperation {
250
- const MESSAGE_HEADER_LENGTH = 16;
251
- /**
252
- * Call this function for an optimal writing data passing the ByteBuffer
253
- * already allocated
254
- */
255
- export function write(entity: Entity, timestamp: number, componentId: number, data: Uint8Array, buf: ByteBuffer): void;
256
- export function read(buf: ByteBuffer): AuthoritativePutComponentMessage | null;
257
- }
258
-
259
223
  /** AvatarAnchorPointType determines the part of the avatar's body that anchors the Entity. */
260
224
  /**
261
225
  * @public
@@ -418,22 +382,6 @@ export declare interface BaseComponent<T> {
418
382
  * If the value is undefined, the component was deleted.
419
383
  */
420
384
  onChange(entity: Entity, cb: (value: T | undefined) => void): void;
421
- /**
422
- * @public
423
- *
424
- */
425
- validateBeforeChange(entity: Entity, cb: ValidateCallback<T>): void;
426
- validateBeforeChange(cb: ValidateCallback<T>): void;
427
- /**
428
- * Get the CRDT state for an entity (serialized data and timestamp)
429
- * @param entity - Entity to get the CRDT state for
430
- * @returns Object with serialized data and timestamp, or null if entity doesn't have the component
431
- * @public
432
- */
433
- getCrdtState(entity: Entity): {
434
- data: Uint8Array;
435
- timestamp: number;
436
- } | null;
437
385
  }
438
386
 
439
387
  /** @public */
@@ -1672,12 +1620,12 @@ export declare const CRDT_MESSAGE_HEADER_LENGTH = 8;
1672
1620
  /**
1673
1621
  * @public
1674
1622
  */
1675
- export declare type CrdtMessage = PutComponentMessage | AuthoritativePutComponentMessage | DeleteComponentMessage | AppendValueMessage | DeleteEntityMessage | PutNetworkComponentMessage | DeleteComponentNetworkMessage | DeleteEntityNetworkMessage;
1623
+ export declare type CrdtMessage = PutComponentMessage | DeleteComponentMessage | AppendValueMessage | DeleteEntityMessage | PutNetworkComponentMessage | DeleteComponentNetworkMessage | DeleteEntityNetworkMessage;
1676
1624
 
1677
1625
  /**
1678
1626
  * @public
1679
1627
  */
1680
- export declare type CrdtMessageBody = PutComponentMessageBody | AuthoritativePutComponentMessageBody | DeleteComponentMessageBody | DeleteEntityMessageBody | AppendValueMessageBody | CrdtNetworkMessageBody;
1628
+ export declare type CrdtMessageBody = PutComponentMessageBody | DeleteComponentMessageBody | DeleteEntityMessageBody | AppendValueMessageBody | CrdtNetworkMessageBody;
1681
1629
 
1682
1630
  /**
1683
1631
  * Min length = 8 bytes
@@ -1732,8 +1680,7 @@ export declare enum CrdtMessageType {
1732
1680
  PUT_COMPONENT_NETWORK = 5,
1733
1681
  DELETE_COMPONENT_NETWORK = 6,
1734
1682
  DELETE_ENTITY_NETWORK = 7,
1735
- AUTHORITATIVE_PUT_COMPONENT = 8,
1736
- MAX_MESSAGE_TYPE = 9
1683
+ MAX_MESSAGE_TYPE = 8
1737
1684
  }
1738
1685
 
1739
1686
  /**
@@ -1741,8 +1688,6 @@ export declare enum CrdtMessageType {
1741
1688
  */
1742
1689
  export declare type CrdtNetworkMessageBody = PutNetworkComponentMessageBody | DeleteComponentNetworkMessageBody | DeleteEntityNetworkMessageBody;
1743
1690
 
1744
- export declare const CreatedBy: ICreatedBy;
1745
-
1746
1691
  /**
1747
1692
  * @public
1748
1693
  */
@@ -2469,12 +2414,6 @@ export declare interface GrowOnlyValueSetComponentDefinition<T> extends BaseComp
2469
2414
 
2470
2415
  export declare type GSetComponentGetter<T extends GrowOnlyValueSetComponentDefinition<any>> = (engine: Pick<IEngine, 'defineValueSetComponentFromSchema'>) => T;
2471
2416
 
2472
- export declare type ICreatedBy = LastWriteWinElementSetComponentDefinition<ICreatedByType>;
2473
-
2474
- export declare interface ICreatedByType {
2475
- address: string;
2476
- }
2477
-
2478
2417
  /**
2479
2418
  * @public
2480
2419
  */
@@ -2919,35 +2858,6 @@ export declare const enum InteractionType {
2919
2858
  PROXIMITY = 1
2920
2859
  }
2921
2860
 
2922
- /**
2923
- * Internal component interface that exposes all internal methods for SDK use
2924
- * This is not exposed to users, only for internal SDK operations
2925
- */
2926
- export declare interface InternalBaseComponent<T> extends BaseComponent<T> {
2927
- /**
2928
- * @public
2929
- * Dry run update to check if a CRDT message would be accepted without actually applying it
2930
- */
2931
- __dry_run_updateFromCrdt(body: CrdtMessageBody): ProcessMessageResultType;
2932
- /**
2933
- * @public
2934
- * Get the iterator to every entity has the component
2935
- */
2936
- iterator(): Iterable<[Entity, any]>;
2937
- /**
2938
- * @public
2939
- */
2940
- dirtyIterator(): Iterable<Entity>;
2941
- /**
2942
- * @public
2943
- */
2944
- __onChangeCallbacks(entity: Entity, value: T): void;
2945
- /**
2946
- * @public
2947
- */
2948
- __run_validateBeforeChange(entity: Entity, newValue: T | undefined, senderAddress: string, createdBy: string): boolean;
2949
- }
2950
-
2951
2861
  /**
2952
2862
  * @public
2953
2863
  */
@@ -4913,6 +4823,12 @@ export declare interface PBAvatarLocomotionSettings {
4913
4823
  runJumpHeight?: number | undefined;
4914
4824
  /** Cooldown time after a hard landing before the avatar can move again (in seconds) */
4915
4825
  hardLandingCooldown?: number | undefined;
4826
+ /** Height of the double jump (in meters) */
4827
+ doubleJumpHeight?: number | undefined;
4828
+ /** Maximum speed when gliding (in meters per second) */
4829
+ glidingSpeed?: number | undefined;
4830
+ /** Maximum falling speed when gliding (in meters per second) */
4831
+ glidingFallingSpeed?: number | undefined;
4916
4832
  }
4917
4833
 
4918
4834
  /**
@@ -9634,14 +9550,6 @@ export declare interface UiTransformProps {
9634
9550
  */
9635
9551
  export declare type Unpacked<T> = T extends (infer U)[] ? U : T;
9636
9552
 
9637
- export declare type ValidateCallback<T> = (value: {
9638
- entity: Entity;
9639
- currentValue: T | undefined;
9640
- newValue: T | undefined;
9641
- senderAddress: string;
9642
- createdBy: string;
9643
- }) => boolean;
9644
-
9645
9553
  /**
9646
9554
  * @public
9647
9555
  */