@proprioo/salatim 29.3.0 → 29.4.0

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/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  ## Changelog
2
2
 
3
- **29.2.0**
3
+ **29.4.0**
4
+
5
+ * Chore: bump packages
6
+
7
+ **29.3.0**
4
8
 
5
9
  * Feat: Add Singapore
6
10
 
@@ -1,18 +1,18 @@
1
1
  import * as yup from 'yup';
2
- export declare const OfferSignatoryFormSchema: import("yup/lib/object").OptionalObjectSchema<{
3
- streetNumber: yup.StringSchema<string | undefined, import("yup/lib/types").AnyObject, string | undefined>;
4
- street: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
5
- city: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
6
- postCode: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
7
- dateOfBirth: import("yup/lib/date").RequiredDateSchema<Date | undefined, import("yup/lib/types").AnyObject>;
8
- placeOfBirth: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
9
- maritalStatus: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
10
- }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
11
- streetNumber: yup.StringSchema<string | undefined, import("yup/lib/types").AnyObject, string | undefined>;
12
- street: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
13
- city: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
14
- postCode: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
15
- dateOfBirth: import("yup/lib/date").RequiredDateSchema<Date | undefined, import("yup/lib/types").AnyObject>;
16
- placeOfBirth: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
17
- maritalStatus: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
18
- }>>;
2
+ export declare const OfferSignatoryFormSchema: yup.ObjectSchema<{
3
+ streetNumber: string | undefined;
4
+ street: string;
5
+ city: string;
6
+ postCode: string;
7
+ dateOfBirth: Date;
8
+ placeOfBirth: string;
9
+ maritalStatus: string;
10
+ }, yup.AnyObject, {
11
+ streetNumber: undefined;
12
+ street: undefined;
13
+ city: undefined;
14
+ postCode: undefined;
15
+ dateOfBirth: undefined;
16
+ placeOfBirth: undefined;
17
+ maritalStatus: undefined;
18
+ }, "">;
@@ -1,12 +1,13 @@
1
+ import * as yup from 'yup';
1
2
  export declare const UserNameRegex: RegExp;
2
- export declare const UserSchema: import("yup/lib/object").OptionalObjectSchema<{
3
- firstName: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
4
- lastName: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
5
- email: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
6
- phone: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
7
- }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
8
- firstName: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
9
- lastName: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
10
- email: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
11
- phone: import("yup/lib/string").RequiredStringSchema<string | undefined, import("yup/lib/types").AnyObject>;
12
- }>>;
3
+ export declare const UserSchema: yup.ObjectSchema<{
4
+ firstName: string;
5
+ lastName: string;
6
+ email: string;
7
+ phone: string;
8
+ }, yup.AnyObject, {
9
+ firstName: undefined;
10
+ lastName: undefined;
11
+ email: undefined;
12
+ phone: undefined;
13
+ }, "">;