@connectedxm/admin-sdk 6.28.2 → 6.29.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
|
@@ -11125,6 +11125,7 @@ export interface Organization {
|
|
|
11125
11125
|
'maxVideoMins': number | null;
|
|
11126
11126
|
'locales': Array<string>;
|
|
11127
11127
|
'inviteOnly': boolean;
|
|
11128
|
+
'autoTranslate': boolean;
|
|
11128
11129
|
'googleTagManagerId': string | null;
|
|
11129
11130
|
'options': object | null;
|
|
11130
11131
|
}
|
|
@@ -11408,6 +11409,7 @@ export interface OrganizationUpdateInputs {
|
|
|
11408
11409
|
'locale'?: string | null;
|
|
11409
11410
|
'locales'?: Array<string> | null;
|
|
11410
11411
|
'inviteOnly'?: boolean;
|
|
11412
|
+
'autoTranslate'?: boolean;
|
|
11411
11413
|
'googleTagManagerId'?: string | null;
|
|
11412
11414
|
'options'?: object | null;
|
|
11413
11415
|
}
|
package/dist/api.d.ts
CHANGED
|
@@ -9836,6 +9836,7 @@ export interface Organization {
|
|
|
9836
9836
|
'maxVideoMins': number | null;
|
|
9837
9837
|
'locales': Array<string>;
|
|
9838
9838
|
'inviteOnly': boolean;
|
|
9839
|
+
'autoTranslate': boolean;
|
|
9839
9840
|
'googleTagManagerId': string | null;
|
|
9840
9841
|
'options': object | null;
|
|
9841
9842
|
}
|
|
@@ -10102,6 +10103,7 @@ export interface OrganizationUpdateInputs {
|
|
|
10102
10103
|
'locale'?: string | null;
|
|
10103
10104
|
'locales'?: Array<string> | null;
|
|
10104
10105
|
'inviteOnly'?: boolean;
|
|
10106
|
+
'autoTranslate'?: boolean;
|
|
10105
10107
|
'googleTagManagerId'?: string | null;
|
|
10106
10108
|
'options'?: object | null;
|
|
10107
10109
|
}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -9836,6 +9836,7 @@ export interface Organization {
|
|
|
9836
9836
|
'maxVideoMins': number | null;
|
|
9837
9837
|
'locales': Array<string>;
|
|
9838
9838
|
'inviteOnly': boolean;
|
|
9839
|
+
'autoTranslate': boolean;
|
|
9839
9840
|
'googleTagManagerId': string | null;
|
|
9840
9841
|
'options': object | null;
|
|
9841
9842
|
}
|
|
@@ -10102,6 +10103,7 @@ export interface OrganizationUpdateInputs {
|
|
|
10102
10103
|
'locale'?: string | null;
|
|
10103
10104
|
'locales'?: Array<string> | null;
|
|
10104
10105
|
'inviteOnly'?: boolean;
|
|
10106
|
+
'autoTranslate'?: boolean;
|
|
10105
10107
|
'googleTagManagerId'?: string | null;
|
|
10106
10108
|
'options'?: object | null;
|
|
10107
10109
|
}
|
package/docs/Organization.md
CHANGED
|
@@ -73,6 +73,7 @@ Name | Type | Description | Notes
|
|
|
73
73
|
**maxVideoMins** | **number** | | [default to undefined]
|
|
74
74
|
**locales** | **Array<string>** | | [default to undefined]
|
|
75
75
|
**inviteOnly** | **boolean** | | [default to undefined]
|
|
76
|
+
**autoTranslate** | **boolean** | | [default to undefined]
|
|
76
77
|
**googleTagManagerId** | **string** | | [default to undefined]
|
|
77
78
|
**_options** | **object** | | [default to undefined]
|
|
78
79
|
|
|
@@ -150,6 +151,7 @@ const instance: Organization = {
|
|
|
150
151
|
maxVideoMins,
|
|
151
152
|
locales,
|
|
152
153
|
inviteOnly,
|
|
154
|
+
autoTranslate,
|
|
153
155
|
googleTagManagerId,
|
|
154
156
|
_options,
|
|
155
157
|
};
|
|
@@ -48,6 +48,7 @@ Name | Type | Description | Notes
|
|
|
48
48
|
**locale** | **string** | | [optional] [default to undefined]
|
|
49
49
|
**locales** | **Array<string>** | | [optional] [default to undefined]
|
|
50
50
|
**inviteOnly** | **boolean** | | [optional] [default to undefined]
|
|
51
|
+
**autoTranslate** | **boolean** | | [optional] [default to undefined]
|
|
51
52
|
**googleTagManagerId** | **string** | | [optional] [default to undefined]
|
|
52
53
|
**_options** | **object** | | [optional] [default to undefined]
|
|
53
54
|
|
|
@@ -100,6 +101,7 @@ const instance: OrganizationUpdateInputs = {
|
|
|
100
101
|
locale,
|
|
101
102
|
locales,
|
|
102
103
|
inviteOnly,
|
|
104
|
+
autoTranslate,
|
|
103
105
|
googleTagManagerId,
|
|
104
106
|
_options,
|
|
105
107
|
};
|