@connectedxm/admin-sdk 7.0.11 → 7.1.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/api.ts +2 -0
- package/dist/api.d.ts +2 -0
- package/dist/esm/api.d.ts +2 -0
- package/docs/Organization.md +2 -0
- package/docs/OrganizationUpdateInputs.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -11058,6 +11058,7 @@ export interface Organization {
|
|
|
11058
11058
|
'email': string | null;
|
|
11059
11059
|
'description': string | null;
|
|
11060
11060
|
'phone': string | null;
|
|
11061
|
+
'privacyPolicyLink': string | null;
|
|
11061
11062
|
'address1': string | null;
|
|
11062
11063
|
'address2': string | null;
|
|
11063
11064
|
'city': string | null;
|
|
@@ -11362,6 +11363,7 @@ export interface OrganizationUpdateInputs {
|
|
|
11362
11363
|
'phone'?: string | null;
|
|
11363
11364
|
'timezone'?: string | null;
|
|
11364
11365
|
'website'?: string | null;
|
|
11366
|
+
'privacyPolicyLink'?: string | null;
|
|
11365
11367
|
'address1'?: string | null;
|
|
11366
11368
|
'address2'?: string | null;
|
|
11367
11369
|
'city'?: string | null;
|
package/dist/api.d.ts
CHANGED
|
@@ -9776,6 +9776,7 @@ export interface Organization {
|
|
|
9776
9776
|
'email': string | null;
|
|
9777
9777
|
'description': string | null;
|
|
9778
9778
|
'phone': string | null;
|
|
9779
|
+
'privacyPolicyLink': string | null;
|
|
9779
9780
|
'address1': string | null;
|
|
9780
9781
|
'address2': string | null;
|
|
9781
9782
|
'city': string | null;
|
|
@@ -10063,6 +10064,7 @@ export interface OrganizationUpdateInputs {
|
|
|
10063
10064
|
'phone'?: string | null;
|
|
10064
10065
|
'timezone'?: string | null;
|
|
10065
10066
|
'website'?: string | null;
|
|
10067
|
+
'privacyPolicyLink'?: string | null;
|
|
10066
10068
|
'address1'?: string | null;
|
|
10067
10069
|
'address2'?: string | null;
|
|
10068
10070
|
'city'?: string | null;
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -9776,6 +9776,7 @@ export interface Organization {
|
|
|
9776
9776
|
'email': string | null;
|
|
9777
9777
|
'description': string | null;
|
|
9778
9778
|
'phone': string | null;
|
|
9779
|
+
'privacyPolicyLink': string | null;
|
|
9779
9780
|
'address1': string | null;
|
|
9780
9781
|
'address2': string | null;
|
|
9781
9782
|
'city': string | null;
|
|
@@ -10063,6 +10064,7 @@ export interface OrganizationUpdateInputs {
|
|
|
10063
10064
|
'phone'?: string | null;
|
|
10064
10065
|
'timezone'?: string | null;
|
|
10065
10066
|
'website'?: string | null;
|
|
10067
|
+
'privacyPolicyLink'?: string | null;
|
|
10066
10068
|
'address1'?: string | null;
|
|
10067
10069
|
'address2'?: string | null;
|
|
10068
10070
|
'city'?: string | null;
|
package/docs/Organization.md
CHANGED
|
@@ -17,6 +17,7 @@ Name | Type | Description | Notes
|
|
|
17
17
|
**email** | **string** | | [default to undefined]
|
|
18
18
|
**description** | **string** | | [default to undefined]
|
|
19
19
|
**phone** | **string** | | [default to undefined]
|
|
20
|
+
**privacyPolicyLink** | **string** | | [default to undefined]
|
|
20
21
|
**address1** | **string** | | [default to undefined]
|
|
21
22
|
**address2** | **string** | | [default to undefined]
|
|
22
23
|
**city** | **string** | | [default to undefined]
|
|
@@ -95,6 +96,7 @@ const instance: Organization = {
|
|
|
95
96
|
email,
|
|
96
97
|
description,
|
|
97
98
|
phone,
|
|
99
|
+
privacyPolicyLink,
|
|
98
100
|
address1,
|
|
99
101
|
address2,
|
|
100
102
|
city,
|
|
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
|
|
|
12
12
|
**phone** | **string** | | [optional] [default to undefined]
|
|
13
13
|
**timezone** | **string** | | [optional] [default to undefined]
|
|
14
14
|
**website** | **string** | | [optional] [default to undefined]
|
|
15
|
+
**privacyPolicyLink** | **string** | | [optional] [default to undefined]
|
|
15
16
|
**address1** | **string** | | [optional] [default to undefined]
|
|
16
17
|
**address2** | **string** | | [optional] [default to undefined]
|
|
17
18
|
**city** | **string** | | [optional] [default to undefined]
|
|
@@ -65,6 +66,7 @@ const instance: OrganizationUpdateInputs = {
|
|
|
65
66
|
phone,
|
|
66
67
|
timezone,
|
|
67
68
|
website,
|
|
69
|
+
privacyPolicyLink,
|
|
68
70
|
address1,
|
|
69
71
|
address2,
|
|
70
72
|
city,
|