reach-api-sdk 1.0.45 → 1.0.46
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 +56 -0
- package/package.json +1 -1
- package/src/definition/swagger.yaml +66 -0
- package/src/models/VenuePost.ts +56 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -20084,6 +20084,62 @@ type VenuePost = {
|
|
|
20084
20084
|
* Gets or sets the tenant Id.
|
|
20085
20085
|
*/
|
|
20086
20086
|
tenantId: string;
|
|
20087
|
+
/**
|
|
20088
|
+
* Gets or sets the venues name.
|
|
20089
|
+
*/
|
|
20090
|
+
name?: string | null;
|
|
20091
|
+
/**
|
|
20092
|
+
* Gets or sets the venues description.
|
|
20093
|
+
*/
|
|
20094
|
+
description?: string | null;
|
|
20095
|
+
/**
|
|
20096
|
+
* Gets or sets the venue image url.
|
|
20097
|
+
*/
|
|
20098
|
+
imageUrl?: string | null;
|
|
20099
|
+
/**
|
|
20100
|
+
* Gets or sets the venues street address.
|
|
20101
|
+
*/
|
|
20102
|
+
streetAddress: string;
|
|
20103
|
+
/**
|
|
20104
|
+
* Gets or sets the venues locality.
|
|
20105
|
+
*/
|
|
20106
|
+
addressLocality?: string | null;
|
|
20107
|
+
/**
|
|
20108
|
+
* Gets or sets the venues region.
|
|
20109
|
+
*/
|
|
20110
|
+
addressRegion?: string | null;
|
|
20111
|
+
/**
|
|
20112
|
+
* Gets or sets the venues postcode.
|
|
20113
|
+
*/
|
|
20114
|
+
addressPostalcode: string;
|
|
20115
|
+
/**
|
|
20116
|
+
* Gets or sets the venues Country id.
|
|
20117
|
+
*/
|
|
20118
|
+
countryId: number;
|
|
20119
|
+
/**
|
|
20120
|
+
* Gets or sets the venues lat.
|
|
20121
|
+
*/
|
|
20122
|
+
lat: number;
|
|
20123
|
+
/**
|
|
20124
|
+
* Gets or sets the venues lng.
|
|
20125
|
+
*/
|
|
20126
|
+
lng: number;
|
|
20127
|
+
/**
|
|
20128
|
+
* Gets or sets the contact phone.
|
|
20129
|
+
*/
|
|
20130
|
+
contactPhone?: string | null;
|
|
20131
|
+
/**
|
|
20132
|
+
* Gets or sets the contact email.
|
|
20133
|
+
*/
|
|
20134
|
+
contactEmail?: string | null;
|
|
20135
|
+
/**
|
|
20136
|
+
* Gets or sets the contact website.
|
|
20137
|
+
*/
|
|
20138
|
+
contactWebsite?: string | null;
|
|
20139
|
+
/**
|
|
20140
|
+
* Gets or sets the amenity ids.
|
|
20141
|
+
*/
|
|
20142
|
+
amenityIds?: Array<number> | null;
|
|
20087
20143
|
};
|
|
20088
20144
|
|
|
20089
20145
|
declare class PublicVenuesService {
|
package/package.json
CHANGED
|
@@ -76059,6 +76059,11 @@ components:
|
|
|
76059
76059
|
description: Post model for venue updates.
|
|
76060
76060
|
VenuePost:
|
|
76061
76061
|
required:
|
|
76062
|
+
- addressPostalcode
|
|
76063
|
+
- countryId
|
|
76064
|
+
- lat
|
|
76065
|
+
- lng
|
|
76066
|
+
- streetAddress
|
|
76062
76067
|
- tenantId
|
|
76063
76068
|
type: object
|
|
76064
76069
|
properties:
|
|
@@ -76066,6 +76071,67 @@ components:
|
|
|
76066
76071
|
type: string
|
|
76067
76072
|
description: Gets or sets the tenant Id.
|
|
76068
76073
|
format: uuid
|
|
76074
|
+
name:
|
|
76075
|
+
type: string
|
|
76076
|
+
description: Gets or sets the venues name.
|
|
76077
|
+
nullable: true
|
|
76078
|
+
description:
|
|
76079
|
+
type: string
|
|
76080
|
+
description: Gets or sets the venues description.
|
|
76081
|
+
nullable: true
|
|
76082
|
+
imageUrl:
|
|
76083
|
+
type: string
|
|
76084
|
+
description: Gets or sets the venue image url.
|
|
76085
|
+
format: uri
|
|
76086
|
+
nullable: true
|
|
76087
|
+
streetAddress:
|
|
76088
|
+
minLength: 1
|
|
76089
|
+
type: string
|
|
76090
|
+
description: Gets or sets the venues street address.
|
|
76091
|
+
addressLocality:
|
|
76092
|
+
type: string
|
|
76093
|
+
description: Gets or sets the venues locality.
|
|
76094
|
+
nullable: true
|
|
76095
|
+
addressRegion:
|
|
76096
|
+
type: string
|
|
76097
|
+
description: Gets or sets the venues region.
|
|
76098
|
+
nullable: true
|
|
76099
|
+
addressPostalcode:
|
|
76100
|
+
minLength: 1
|
|
76101
|
+
type: string
|
|
76102
|
+
description: Gets or sets the venues postcode.
|
|
76103
|
+
countryId:
|
|
76104
|
+
type: integer
|
|
76105
|
+
description: Gets or sets the venues Country id.
|
|
76106
|
+
format: int32
|
|
76107
|
+
default: 0
|
|
76108
|
+
lat:
|
|
76109
|
+
type: number
|
|
76110
|
+
description: Gets or sets the venues lat.
|
|
76111
|
+
format: float
|
|
76112
|
+
lng:
|
|
76113
|
+
type: number
|
|
76114
|
+
description: Gets or sets the venues lng.
|
|
76115
|
+
format: float
|
|
76116
|
+
contactPhone:
|
|
76117
|
+
type: string
|
|
76118
|
+
description: Gets or sets the contact phone.
|
|
76119
|
+
nullable: true
|
|
76120
|
+
contactEmail:
|
|
76121
|
+
type: string
|
|
76122
|
+
description: Gets or sets the contact email.
|
|
76123
|
+
nullable: true
|
|
76124
|
+
contactWebsite:
|
|
76125
|
+
type: string
|
|
76126
|
+
description: Gets or sets the contact website.
|
|
76127
|
+
nullable: true
|
|
76128
|
+
amenityIds:
|
|
76129
|
+
type: array
|
|
76130
|
+
items:
|
|
76131
|
+
type: integer
|
|
76132
|
+
format: int32
|
|
76133
|
+
description: Gets or sets the amenity ids.
|
|
76134
|
+
nullable: true
|
|
76069
76135
|
additionalProperties: false
|
|
76070
76136
|
description: Post model for venue inserts.
|
|
76071
76137
|
VenuesReport:
|
package/src/models/VenuePost.ts
CHANGED
|
@@ -11,4 +11,60 @@ export type VenuePost = {
|
|
|
11
11
|
* Gets or sets the tenant Id.
|
|
12
12
|
*/
|
|
13
13
|
tenantId: string;
|
|
14
|
+
/**
|
|
15
|
+
* Gets or sets the venues name.
|
|
16
|
+
*/
|
|
17
|
+
name?: string | null;
|
|
18
|
+
/**
|
|
19
|
+
* Gets or sets the venues description.
|
|
20
|
+
*/
|
|
21
|
+
description?: string | null;
|
|
22
|
+
/**
|
|
23
|
+
* Gets or sets the venue image url.
|
|
24
|
+
*/
|
|
25
|
+
imageUrl?: string | null;
|
|
26
|
+
/**
|
|
27
|
+
* Gets or sets the venues street address.
|
|
28
|
+
*/
|
|
29
|
+
streetAddress: string;
|
|
30
|
+
/**
|
|
31
|
+
* Gets or sets the venues locality.
|
|
32
|
+
*/
|
|
33
|
+
addressLocality?: string | null;
|
|
34
|
+
/**
|
|
35
|
+
* Gets or sets the venues region.
|
|
36
|
+
*/
|
|
37
|
+
addressRegion?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
* Gets or sets the venues postcode.
|
|
40
|
+
*/
|
|
41
|
+
addressPostalcode: string;
|
|
42
|
+
/**
|
|
43
|
+
* Gets or sets the venues Country id.
|
|
44
|
+
*/
|
|
45
|
+
countryId: number;
|
|
46
|
+
/**
|
|
47
|
+
* Gets or sets the venues lat.
|
|
48
|
+
*/
|
|
49
|
+
lat: number;
|
|
50
|
+
/**
|
|
51
|
+
* Gets or sets the venues lng.
|
|
52
|
+
*/
|
|
53
|
+
lng: number;
|
|
54
|
+
/**
|
|
55
|
+
* Gets or sets the contact phone.
|
|
56
|
+
*/
|
|
57
|
+
contactPhone?: string | null;
|
|
58
|
+
/**
|
|
59
|
+
* Gets or sets the contact email.
|
|
60
|
+
*/
|
|
61
|
+
contactEmail?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
* Gets or sets the contact website.
|
|
64
|
+
*/
|
|
65
|
+
contactWebsite?: string | null;
|
|
66
|
+
/**
|
|
67
|
+
* Gets or sets the amenity ids.
|
|
68
|
+
*/
|
|
69
|
+
amenityIds?: Array<number> | null;
|
|
14
70
|
};
|