@dereekb/util 13.6.12 → 13.6.13

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.
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@dereekb/util/fetch",
3
- "version": "13.6.12",
3
+ "version": "13.6.13",
4
4
  "peerDependencies": {
5
- "@dereekb/util": "13.6.12",
5
+ "@dereekb/util": "13.6.13",
6
6
  "make-error": "^1.3.0",
7
7
  "fast-content-type-parse": "^3.0.0"
8
8
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/util",
3
- "version": "13.6.12",
3
+ "version": "13.6.13",
4
4
  "exports": {
5
5
  "./test": {
6
6
  "module": "./test/index.esm.js",
@@ -38,7 +38,7 @@ export interface UnitedStatesAddress {
38
38
  /**
39
39
  * Secondary address line (apartment, suite, etc.).
40
40
  */
41
- line2?: AddressLineString;
41
+ line2?: Maybe<AddressLineString>;
42
42
  /**
43
43
  * City name.
44
44
  */
@@ -60,11 +60,11 @@ export interface UnitedStatesAddressWithContact extends UnitedStatesAddress {
60
60
  /**
61
61
  * Contact name associated with this address.
62
62
  */
63
- name?: string;
63
+ name?: Maybe<string>;
64
64
  /**
65
65
  * Phone number associated with this address.
66
66
  */
67
- phone?: string;
67
+ phone?: Maybe<string>;
68
68
  }
69
69
  /**
70
70
  * Formats a {@link UnitedStatesAddress} or {@link UnitedStatesAddressWithContact} into a human-readable multi-line string.
package/test/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@dereekb/util/test",
3
- "version": "13.6.12",
3
+ "version": "13.6.13",
4
4
  "peerDependencies": {
5
- "@dereekb/util": "13.6.12",
5
+ "@dereekb/util": "13.6.13",
6
6
  "make-error": "^1.3.0"
7
7
  },
8
8
  "exports": {