@connectedxm/admin-sdk 7.8.0 → 7.8.1
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 +8 -0
- package/dist/api.d.ts +8 -0
- package/dist/esm/api.d.ts +8 -0
- package/docs/BaseEventSessionLocation.md +2 -0
- package/docs/EventSessionLocation.md +2 -0
- package/docs/EventSessionLocationCreateInputs.md +6 -0
- package/docs/EventSessionLocationUpdateInputs.md +6 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1545,6 +1545,7 @@ export interface BaseEventSessionAccess {
|
|
|
1545
1545
|
export interface BaseEventSessionLocation {
|
|
1546
1546
|
'id': string;
|
|
1547
1547
|
'name': string;
|
|
1548
|
+
'room': string | null;
|
|
1548
1549
|
'address1': string | null;
|
|
1549
1550
|
'address2': string | null;
|
|
1550
1551
|
'zip': string | null;
|
|
@@ -5897,6 +5898,7 @@ export interface EventSessionCreateInputs {
|
|
|
5897
5898
|
export interface EventSessionLocation {
|
|
5898
5899
|
'id': string;
|
|
5899
5900
|
'name': string;
|
|
5901
|
+
'room': string | null;
|
|
5900
5902
|
'address1': string | null;
|
|
5901
5903
|
'address2': string | null;
|
|
5902
5904
|
'zip': string | null;
|
|
@@ -5914,6 +5916,7 @@ export interface EventSessionLocation {
|
|
|
5914
5916
|
export interface EventSessionLocationCreateInputs {
|
|
5915
5917
|
'location'?: string | null;
|
|
5916
5918
|
'name': string;
|
|
5919
|
+
'room'?: string | null;
|
|
5917
5920
|
'description'?: string | null;
|
|
5918
5921
|
'imageId'?: string | null;
|
|
5919
5922
|
'address1'?: string | null;
|
|
@@ -5922,6 +5925,8 @@ export interface EventSessionLocationCreateInputs {
|
|
|
5922
5925
|
'state'?: string | null;
|
|
5923
5926
|
'country'?: string | null;
|
|
5924
5927
|
'zip'?: string | null;
|
|
5928
|
+
'latitude'?: number | null;
|
|
5929
|
+
'longitude'?: number | null;
|
|
5925
5930
|
}
|
|
5926
5931
|
export interface EventSessionLocationTranslation {
|
|
5927
5932
|
'id': string;
|
|
@@ -5938,6 +5943,7 @@ export interface EventSessionLocationTranslationUpdateInputs {
|
|
|
5938
5943
|
export interface EventSessionLocationUpdateInputs {
|
|
5939
5944
|
'location'?: string | null;
|
|
5940
5945
|
'name'?: string;
|
|
5946
|
+
'room'?: string | null;
|
|
5941
5947
|
'description'?: string | null;
|
|
5942
5948
|
'imageId'?: string | null;
|
|
5943
5949
|
'address1'?: string | null;
|
|
@@ -5946,6 +5952,8 @@ export interface EventSessionLocationUpdateInputs {
|
|
|
5946
5952
|
'state'?: string | null;
|
|
5947
5953
|
'country'?: string | null;
|
|
5948
5954
|
'zip'?: string | null;
|
|
5955
|
+
'latitude'?: number | null;
|
|
5956
|
+
'longitude'?: number | null;
|
|
5949
5957
|
}
|
|
5950
5958
|
export interface EventSessionPrice {
|
|
5951
5959
|
'id': string;
|
package/dist/api.d.ts
CHANGED
|
@@ -1422,6 +1422,7 @@ export interface BaseEventSessionAccess {
|
|
|
1422
1422
|
export interface BaseEventSessionLocation {
|
|
1423
1423
|
'id': string;
|
|
1424
1424
|
'name': string;
|
|
1425
|
+
'room': string | null;
|
|
1425
1426
|
'address1': string | null;
|
|
1426
1427
|
'address2': string | null;
|
|
1427
1428
|
'zip': string | null;
|
|
@@ -5383,6 +5384,7 @@ export interface EventSessionCreateInputs {
|
|
|
5383
5384
|
export interface EventSessionLocation {
|
|
5384
5385
|
'id': string;
|
|
5385
5386
|
'name': string;
|
|
5387
|
+
'room': string | null;
|
|
5386
5388
|
'address1': string | null;
|
|
5387
5389
|
'address2': string | null;
|
|
5388
5390
|
'zip': string | null;
|
|
@@ -5400,6 +5402,7 @@ export interface EventSessionLocation {
|
|
|
5400
5402
|
export interface EventSessionLocationCreateInputs {
|
|
5401
5403
|
'location'?: string | null;
|
|
5402
5404
|
'name': string;
|
|
5405
|
+
'room'?: string | null;
|
|
5403
5406
|
'description'?: string | null;
|
|
5404
5407
|
'imageId'?: string | null;
|
|
5405
5408
|
'address1'?: string | null;
|
|
@@ -5408,6 +5411,8 @@ export interface EventSessionLocationCreateInputs {
|
|
|
5408
5411
|
'state'?: string | null;
|
|
5409
5412
|
'country'?: string | null;
|
|
5410
5413
|
'zip'?: string | null;
|
|
5414
|
+
'latitude'?: number | null;
|
|
5415
|
+
'longitude'?: number | null;
|
|
5411
5416
|
}
|
|
5412
5417
|
export interface EventSessionLocationTranslation {
|
|
5413
5418
|
'id': string;
|
|
@@ -5424,6 +5429,7 @@ export interface EventSessionLocationTranslationUpdateInputs {
|
|
|
5424
5429
|
export interface EventSessionLocationUpdateInputs {
|
|
5425
5430
|
'location'?: string | null;
|
|
5426
5431
|
'name'?: string;
|
|
5432
|
+
'room'?: string | null;
|
|
5427
5433
|
'description'?: string | null;
|
|
5428
5434
|
'imageId'?: string | null;
|
|
5429
5435
|
'address1'?: string | null;
|
|
@@ -5432,6 +5438,8 @@ export interface EventSessionLocationUpdateInputs {
|
|
|
5432
5438
|
'state'?: string | null;
|
|
5433
5439
|
'country'?: string | null;
|
|
5434
5440
|
'zip'?: string | null;
|
|
5441
|
+
'latitude'?: number | null;
|
|
5442
|
+
'longitude'?: number | null;
|
|
5435
5443
|
}
|
|
5436
5444
|
export interface EventSessionPrice {
|
|
5437
5445
|
'id': string;
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -1422,6 +1422,7 @@ export interface BaseEventSessionAccess {
|
|
|
1422
1422
|
export interface BaseEventSessionLocation {
|
|
1423
1423
|
'id': string;
|
|
1424
1424
|
'name': string;
|
|
1425
|
+
'room': string | null;
|
|
1425
1426
|
'address1': string | null;
|
|
1426
1427
|
'address2': string | null;
|
|
1427
1428
|
'zip': string | null;
|
|
@@ -5383,6 +5384,7 @@ export interface EventSessionCreateInputs {
|
|
|
5383
5384
|
export interface EventSessionLocation {
|
|
5384
5385
|
'id': string;
|
|
5385
5386
|
'name': string;
|
|
5387
|
+
'room': string | null;
|
|
5386
5388
|
'address1': string | null;
|
|
5387
5389
|
'address2': string | null;
|
|
5388
5390
|
'zip': string | null;
|
|
@@ -5400,6 +5402,7 @@ export interface EventSessionLocation {
|
|
|
5400
5402
|
export interface EventSessionLocationCreateInputs {
|
|
5401
5403
|
'location'?: string | null;
|
|
5402
5404
|
'name': string;
|
|
5405
|
+
'room'?: string | null;
|
|
5403
5406
|
'description'?: string | null;
|
|
5404
5407
|
'imageId'?: string | null;
|
|
5405
5408
|
'address1'?: string | null;
|
|
@@ -5408,6 +5411,8 @@ export interface EventSessionLocationCreateInputs {
|
|
|
5408
5411
|
'state'?: string | null;
|
|
5409
5412
|
'country'?: string | null;
|
|
5410
5413
|
'zip'?: string | null;
|
|
5414
|
+
'latitude'?: number | null;
|
|
5415
|
+
'longitude'?: number | null;
|
|
5411
5416
|
}
|
|
5412
5417
|
export interface EventSessionLocationTranslation {
|
|
5413
5418
|
'id': string;
|
|
@@ -5424,6 +5429,7 @@ export interface EventSessionLocationTranslationUpdateInputs {
|
|
|
5424
5429
|
export interface EventSessionLocationUpdateInputs {
|
|
5425
5430
|
'location'?: string | null;
|
|
5426
5431
|
'name'?: string;
|
|
5432
|
+
'room'?: string | null;
|
|
5427
5433
|
'description'?: string | null;
|
|
5428
5434
|
'imageId'?: string | null;
|
|
5429
5435
|
'address1'?: string | null;
|
|
@@ -5432,6 +5438,8 @@ export interface EventSessionLocationUpdateInputs {
|
|
|
5432
5438
|
'state'?: string | null;
|
|
5433
5439
|
'country'?: string | null;
|
|
5434
5440
|
'zip'?: string | null;
|
|
5441
|
+
'latitude'?: number | null;
|
|
5442
|
+
'longitude'?: number | null;
|
|
5435
5443
|
}
|
|
5436
5444
|
export interface EventSessionPrice {
|
|
5437
5445
|
'id': string;
|
|
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**id** | **string** | | [default to undefined]
|
|
9
9
|
**name** | **string** | | [default to undefined]
|
|
10
|
+
**room** | **string** | | [default to undefined]
|
|
10
11
|
**address1** | **string** | | [default to undefined]
|
|
11
12
|
**address2** | **string** | | [default to undefined]
|
|
12
13
|
**zip** | **string** | | [default to undefined]
|
|
@@ -24,6 +25,7 @@ import { BaseEventSessionLocation } from '@connectedxm/admin-sdk';
|
|
|
24
25
|
const instance: BaseEventSessionLocation = {
|
|
25
26
|
id,
|
|
26
27
|
name,
|
|
28
|
+
room,
|
|
27
29
|
address1,
|
|
28
30
|
address2,
|
|
29
31
|
zip,
|
|
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**id** | **string** | | [default to undefined]
|
|
9
9
|
**name** | **string** | | [default to undefined]
|
|
10
|
+
**room** | **string** | | [default to undefined]
|
|
10
11
|
**address1** | **string** | | [default to undefined]
|
|
11
12
|
**address2** | **string** | | [default to undefined]
|
|
12
13
|
**zip** | **string** | | [default to undefined]
|
|
@@ -29,6 +30,7 @@ import { EventSessionLocation } from '@connectedxm/admin-sdk';
|
|
|
29
30
|
const instance: EventSessionLocation = {
|
|
30
31
|
id,
|
|
31
32
|
name,
|
|
33
|
+
room,
|
|
32
34
|
address1,
|
|
33
35
|
address2,
|
|
34
36
|
zip,
|
|
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**location** | **string** | | [optional] [default to undefined]
|
|
9
9
|
**name** | **string** | | [default to undefined]
|
|
10
|
+
**room** | **string** | | [optional] [default to undefined]
|
|
10
11
|
**description** | **string** | | [optional] [default to undefined]
|
|
11
12
|
**imageId** | **string** | | [optional] [default to undefined]
|
|
12
13
|
**address1** | **string** | | [optional] [default to undefined]
|
|
@@ -15,6 +16,8 @@ Name | Type | Description | Notes
|
|
|
15
16
|
**state** | **string** | | [optional] [default to undefined]
|
|
16
17
|
**country** | **string** | | [optional] [default to undefined]
|
|
17
18
|
**zip** | **string** | | [optional] [default to undefined]
|
|
19
|
+
**latitude** | **number** | | [optional] [default to undefined]
|
|
20
|
+
**longitude** | **number** | | [optional] [default to undefined]
|
|
18
21
|
|
|
19
22
|
## Example
|
|
20
23
|
|
|
@@ -24,6 +27,7 @@ import { EventSessionLocationCreateInputs } from '@connectedxm/admin-sdk';
|
|
|
24
27
|
const instance: EventSessionLocationCreateInputs = {
|
|
25
28
|
location,
|
|
26
29
|
name,
|
|
30
|
+
room,
|
|
27
31
|
description,
|
|
28
32
|
imageId,
|
|
29
33
|
address1,
|
|
@@ -32,6 +36,8 @@ const instance: EventSessionLocationCreateInputs = {
|
|
|
32
36
|
state,
|
|
33
37
|
country,
|
|
34
38
|
zip,
|
|
39
|
+
latitude,
|
|
40
|
+
longitude,
|
|
35
41
|
};
|
|
36
42
|
```
|
|
37
43
|
|
|
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**location** | **string** | | [optional] [default to undefined]
|
|
9
9
|
**name** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**room** | **string** | | [optional] [default to undefined]
|
|
10
11
|
**description** | **string** | | [optional] [default to undefined]
|
|
11
12
|
**imageId** | **string** | | [optional] [default to undefined]
|
|
12
13
|
**address1** | **string** | | [optional] [default to undefined]
|
|
@@ -15,6 +16,8 @@ Name | Type | Description | Notes
|
|
|
15
16
|
**state** | **string** | | [optional] [default to undefined]
|
|
16
17
|
**country** | **string** | | [optional] [default to undefined]
|
|
17
18
|
**zip** | **string** | | [optional] [default to undefined]
|
|
19
|
+
**latitude** | **number** | | [optional] [default to undefined]
|
|
20
|
+
**longitude** | **number** | | [optional] [default to undefined]
|
|
18
21
|
|
|
19
22
|
## Example
|
|
20
23
|
|
|
@@ -24,6 +27,7 @@ import { EventSessionLocationUpdateInputs } from '@connectedxm/admin-sdk';
|
|
|
24
27
|
const instance: EventSessionLocationUpdateInputs = {
|
|
25
28
|
location,
|
|
26
29
|
name,
|
|
30
|
+
room,
|
|
27
31
|
description,
|
|
28
32
|
imageId,
|
|
29
33
|
address1,
|
|
@@ -32,6 +36,8 @@ const instance: EventSessionLocationUpdateInputs = {
|
|
|
32
36
|
state,
|
|
33
37
|
country,
|
|
34
38
|
zip,
|
|
39
|
+
latitude,
|
|
40
|
+
longitude,
|
|
35
41
|
};
|
|
36
42
|
```
|
|
37
43
|
|