@wix/payments 1.0.19 → 1.0.21

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.
@@ -38,7 +38,7 @@ interface AttestationInfo$1 {
38
38
  * Date of signing attestation form (only if status is CONFIRMED)
39
39
  * @readonly
40
40
  */
41
- attestationFormSignedDate?: Date;
41
+ attestationFormSignedDate?: Date | null;
42
42
  /** True, if attestation form was signed. False otherwise. */
43
43
  formSigned?: boolean | null;
44
44
  }
@@ -187,7 +187,7 @@ interface AttestationInfo {
187
187
  * Date of signing attestation form (only if status is CONFIRMED)
188
188
  * @readonly
189
189
  */
190
- attestationFormSignedDate?: Date;
190
+ attestationFormSignedDate?: Date | null;
191
191
  /** True, if attestation form was signed. False otherwise. */
192
192
  formSigned?: boolean | null;
193
193
  }
@@ -536,12 +536,12 @@ interface Refund$1 {
536
536
  * Date and time the refund was created.
537
537
  * @readonly
538
538
  */
539
- createdDate?: Date;
539
+ createdDate?: Date | null;
540
540
  /**
541
541
  * Date and time the refund was last updated.
542
542
  * @readonly
543
543
  */
544
- updatedDate?: Date;
544
+ updatedDate?: Date | null;
545
545
  /** Data Extensions */
546
546
  extendedFields?: ExtendedFields$1;
547
547
  /** ID of charge for which the funds are returned by this refund. */
@@ -903,12 +903,12 @@ interface Refund {
903
903
  * Date and time the refund was created.
904
904
  * @readonly
905
905
  */
906
- _createdDate?: Date;
906
+ _createdDate?: Date | null;
907
907
  /**
908
908
  * Date and time the refund was last updated.
909
909
  * @readonly
910
910
  */
911
- _updatedDate?: Date;
911
+ _updatedDate?: Date | null;
912
912
  /** Data Extensions */
913
913
  extendedFields?: ExtendedFields;
914
914
  /** ID of charge for which the funds are returned by this refund. */