@connectedxm/admin-sdk 6.24.4 → 6.25.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 CHANGED
@@ -153,6 +153,7 @@ export interface AccountAttribute {
153
153
  'adminOnly': boolean;
154
154
  'editable': boolean;
155
155
  'public': boolean;
156
+ 'subline': boolean;
156
157
  'includedInDashboards': boolean;
157
158
  'sortOrder': number;
158
159
  'locationOption': LocationQuestionOption;
@@ -174,6 +175,7 @@ export interface AccountAttributeCreateInputs {
174
175
  'adminOnly'?: boolean;
175
176
  'editable'?: boolean;
176
177
  'public'?: boolean;
178
+ 'subline'?: boolean;
177
179
  'includedInDashboards'?: boolean;
178
180
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
179
181
  'searchListId'?: string | null;
@@ -201,6 +203,7 @@ export interface AccountAttributeUpdateInputs {
201
203
  'adminOnly'?: boolean;
202
204
  'editable'?: boolean;
203
205
  'public'?: boolean;
206
+ 'subline'?: boolean;
204
207
  'includedInDashboards'?: boolean;
205
208
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
206
209
  'searchListId'?: string | null;
@@ -789,6 +792,7 @@ export interface BaseAccountAttribute {
789
792
  'adminOnly': boolean;
790
793
  'editable': boolean;
791
794
  'public': boolean;
795
+ 'subline': boolean;
792
796
  'includedInDashboards': boolean;
793
797
  'sortOrder': number;
794
798
  'locationOption': LocationQuestionOption;
package/dist/api.d.ts CHANGED
@@ -136,6 +136,7 @@ export interface AccountAttribute {
136
136
  'adminOnly': boolean;
137
137
  'editable': boolean;
138
138
  'public': boolean;
139
+ 'subline': boolean;
139
140
  'includedInDashboards': boolean;
140
141
  'sortOrder': number;
141
142
  'locationOption': LocationQuestionOption;
@@ -155,6 +156,7 @@ export interface AccountAttributeCreateInputs {
155
156
  'adminOnly'?: boolean;
156
157
  'editable'?: boolean;
157
158
  'public'?: boolean;
159
+ 'subline'?: boolean;
158
160
  'includedInDashboards'?: boolean;
159
161
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
160
162
  'searchListId'?: string | null;
@@ -177,6 +179,7 @@ export interface AccountAttributeUpdateInputs {
177
179
  'adminOnly'?: boolean;
178
180
  'editable'?: boolean;
179
181
  'public'?: boolean;
182
+ 'subline'?: boolean;
180
183
  'includedInDashboards'?: boolean;
181
184
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
182
185
  'searchListId'?: string | null;
@@ -714,6 +717,7 @@ export interface BaseAccountAttribute {
714
717
  'adminOnly': boolean;
715
718
  'editable': boolean;
716
719
  'public': boolean;
720
+ 'subline': boolean;
717
721
  'includedInDashboards': boolean;
718
722
  'sortOrder': number;
719
723
  'locationOption': LocationQuestionOption;
package/dist/esm/api.d.ts CHANGED
@@ -136,6 +136,7 @@ export interface AccountAttribute {
136
136
  'adminOnly': boolean;
137
137
  'editable': boolean;
138
138
  'public': boolean;
139
+ 'subline': boolean;
139
140
  'includedInDashboards': boolean;
140
141
  'sortOrder': number;
141
142
  'locationOption': LocationQuestionOption;
@@ -155,6 +156,7 @@ export interface AccountAttributeCreateInputs {
155
156
  'adminOnly'?: boolean;
156
157
  'editable'?: boolean;
157
158
  'public'?: boolean;
159
+ 'subline'?: boolean;
158
160
  'includedInDashboards'?: boolean;
159
161
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
160
162
  'searchListId'?: string | null;
@@ -177,6 +179,7 @@ export interface AccountAttributeUpdateInputs {
177
179
  'adminOnly'?: boolean;
178
180
  'editable'?: boolean;
179
181
  'public'?: boolean;
182
+ 'subline'?: boolean;
180
183
  'includedInDashboards'?: boolean;
181
184
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
182
185
  'searchListId'?: string | null;
@@ -714,6 +717,7 @@ export interface BaseAccountAttribute {
714
717
  'adminOnly': boolean;
715
718
  'editable': boolean;
716
719
  'public': boolean;
720
+ 'subline': boolean;
717
721
  'includedInDashboards': boolean;
718
722
  'sortOrder': number;
719
723
  'locationOption': LocationQuestionOption;
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
14
14
  **adminOnly** | **boolean** | | [default to undefined]
15
15
  **editable** | **boolean** | | [default to undefined]
16
16
  **_public** | **boolean** | | [default to undefined]
17
+ **subline** | **boolean** | | [default to undefined]
17
18
  **includedInDashboards** | **boolean** | | [default to undefined]
18
19
  **sortOrder** | **number** | | [default to undefined]
19
20
  **locationOption** | [**LocationQuestionOption**](LocationQuestionOption.md) | | [default to undefined]
@@ -36,6 +37,7 @@ const instance: AccountAttribute = {
36
37
  adminOnly,
37
38
  editable,
38
39
  _public,
40
+ subline,
39
41
  includedInDashboards,
40
42
  sortOrder,
41
43
  locationOption,
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
13
13
  **adminOnly** | **boolean** | | [optional] [default to undefined]
14
14
  **editable** | **boolean** | | [optional] [default to undefined]
15
15
  **_public** | **boolean** | | [optional] [default to undefined]
16
+ **subline** | **boolean** | | [optional] [default to undefined]
16
17
  **includedInDashboards** | **boolean** | | [optional] [default to undefined]
17
18
  **sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
18
19
  **searchListId** | **string** | | [optional] [default to undefined]
@@ -33,6 +34,7 @@ const instance: AccountAttributeCreateInputs = {
33
34
  adminOnly,
34
35
  editable,
35
36
  _public,
37
+ subline,
36
38
  includedInDashboards,
37
39
  sortOrder,
38
40
  searchListId,
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
11
11
  **adminOnly** | **boolean** | | [optional] [default to undefined]
12
12
  **editable** | **boolean** | | [optional] [default to undefined]
13
13
  **_public** | **boolean** | | [optional] [default to undefined]
14
+ **subline** | **boolean** | | [optional] [default to undefined]
14
15
  **includedInDashboards** | **boolean** | | [optional] [default to undefined]
15
16
  **sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
16
17
  **searchListId** | **string** | | [optional] [default to undefined]
@@ -29,6 +30,7 @@ const instance: AccountAttributeUpdateInputs = {
29
30
  adminOnly,
30
31
  editable,
31
32
  _public,
33
+ subline,
32
34
  includedInDashboards,
33
35
  sortOrder,
34
36
  searchListId,
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
14
14
  **adminOnly** | **boolean** | | [default to undefined]
15
15
  **editable** | **boolean** | | [default to undefined]
16
16
  **_public** | **boolean** | | [default to undefined]
17
+ **subline** | **boolean** | | [default to undefined]
17
18
  **includedInDashboards** | **boolean** | | [default to undefined]
18
19
  **sortOrder** | **number** | | [default to undefined]
19
20
  **locationOption** | [**LocationQuestionOption**](LocationQuestionOption.md) | | [default to undefined]
@@ -33,6 +34,7 @@ const instance: BaseAccountAttribute = {
33
34
  adminOnly,
34
35
  editable,
35
36
  _public,
37
+ subline,
36
38
  includedInDashboards,
37
39
  sortOrder,
38
40
  locationOption,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin-sdk",
3
- "version": "6.24.4",
3
+ "version": "6.25.0",
4
4
  "description": "OpenAPI client for @connectedxm/admin-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {