reach-api-sdk 1.0.21 → 1.0.22
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/reach-sdk.d.ts
CHANGED
|
@@ -773,11 +773,11 @@ type Country = {
|
|
|
773
773
|
/**
|
|
774
774
|
* Gets or sets the countries Name.
|
|
775
775
|
*/
|
|
776
|
-
code
|
|
776
|
+
code: string;
|
|
777
777
|
/**
|
|
778
778
|
* Gets or sets the countries Code.
|
|
779
779
|
*/
|
|
780
|
-
name
|
|
780
|
+
name: string;
|
|
781
781
|
/**
|
|
782
782
|
* Gets or sets the countries Code.
|
|
783
783
|
*/
|
|
@@ -797,7 +797,7 @@ type Country = {
|
|
|
797
797
|
/**
|
|
798
798
|
* Gets or sets a value indicating whether the country is active.
|
|
799
799
|
*/
|
|
800
|
-
active
|
|
800
|
+
active: boolean;
|
|
801
801
|
/**
|
|
802
802
|
* Gets or sets the available taxes.
|
|
803
803
|
*/
|
package/package.json
CHANGED
|
@@ -64034,6 +64034,10 @@ components:
|
|
|
64034
64034
|
type: string
|
|
64035
64035
|
description: Controls who the contact is on the confirmation emails.
|
|
64036
64036
|
Country:
|
|
64037
|
+
required:
|
|
64038
|
+
- active
|
|
64039
|
+
- code
|
|
64040
|
+
- name
|
|
64037
64041
|
type: object
|
|
64038
64042
|
properties:
|
|
64039
64043
|
id:
|
|
@@ -64042,13 +64046,13 @@ components:
|
|
|
64042
64046
|
format: int32
|
|
64043
64047
|
default: 0
|
|
64044
64048
|
code:
|
|
64049
|
+
minLength: 1
|
|
64045
64050
|
type: string
|
|
64046
64051
|
description: Gets or sets the countries Name.
|
|
64047
|
-
nullable: true
|
|
64048
64052
|
name:
|
|
64053
|
+
minLength: 1
|
|
64049
64054
|
type: string
|
|
64050
64055
|
description: Gets or sets the countries Code.
|
|
64051
|
-
nullable: true
|
|
64052
64056
|
codeIso3:
|
|
64053
64057
|
type: string
|
|
64054
64058
|
description: Gets or sets the countries Code.
|
package/src/models/Country.ts
CHANGED
|
@@ -16,11 +16,11 @@ export type Country = {
|
|
|
16
16
|
/**
|
|
17
17
|
* Gets or sets the countries Name.
|
|
18
18
|
*/
|
|
19
|
-
code
|
|
19
|
+
code: string;
|
|
20
20
|
/**
|
|
21
21
|
* Gets or sets the countries Code.
|
|
22
22
|
*/
|
|
23
|
-
name
|
|
23
|
+
name: string;
|
|
24
24
|
/**
|
|
25
25
|
* Gets or sets the countries Code.
|
|
26
26
|
*/
|
|
@@ -40,7 +40,7 @@ export type Country = {
|
|
|
40
40
|
/**
|
|
41
41
|
* Gets or sets a value indicating whether the country is active.
|
|
42
42
|
*/
|
|
43
|
-
active
|
|
43
|
+
active: boolean;
|
|
44
44
|
/**
|
|
45
45
|
* Gets or sets the available taxes.
|
|
46
46
|
*/
|