reach-api-sdk 1.0.45 → 1.0.47
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 +71 -3
- package/dist/reach-sdk.js +6 -0
- package/package.json +1 -1
- package/src/definition/swagger.yaml +87 -0
- package/src/models/VenuePost.ts +56 -0
- package/src/services/OrderItemsService.ts +18 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -12901,7 +12901,7 @@ declare class OrderItemsService {
|
|
|
12901
12901
|
* @returns boolean Success
|
|
12902
12902
|
* @throws ApiError
|
|
12903
12903
|
*/
|
|
12904
|
-
exists({ ids, orderId, scheduledSessionId, slotId, courseId, status, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12904
|
+
exists({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12905
12905
|
/**
|
|
12906
12906
|
* Gets or sets the queryable order item ids.
|
|
12907
12907
|
*/
|
|
@@ -12926,6 +12926,10 @@ declare class OrderItemsService {
|
|
|
12926
12926
|
* Gets or sets the queryable order item status id.
|
|
12927
12927
|
*/
|
|
12928
12928
|
status?: OrderItemStatus;
|
|
12929
|
+
/**
|
|
12930
|
+
* Gets or sets the queryable order statuses.
|
|
12931
|
+
*/
|
|
12932
|
+
statuses?: Array<OrderItemStatus>;
|
|
12929
12933
|
/**
|
|
12930
12934
|
* Gets or sets the page number for paged queries.
|
|
12931
12935
|
*/
|
|
@@ -12972,7 +12976,7 @@ declare class OrderItemsService {
|
|
|
12972
12976
|
* @returns OrderItemPage Success
|
|
12973
12977
|
* @throws ApiError
|
|
12974
12978
|
*/
|
|
12975
|
-
getPage({ ids, orderId, scheduledSessionId, slotId, courseId, status, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12979
|
+
getPage({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12976
12980
|
/**
|
|
12977
12981
|
* Gets or sets the queryable order item ids.
|
|
12978
12982
|
*/
|
|
@@ -12997,6 +13001,10 @@ declare class OrderItemsService {
|
|
|
12997
13001
|
* Gets or sets the queryable order item status id.
|
|
12998
13002
|
*/
|
|
12999
13003
|
status?: OrderItemStatus;
|
|
13004
|
+
/**
|
|
13005
|
+
* Gets or sets the queryable order statuses.
|
|
13006
|
+
*/
|
|
13007
|
+
statuses?: Array<OrderItemStatus>;
|
|
13000
13008
|
/**
|
|
13001
13009
|
* Gets or sets the page number for paged queries.
|
|
13002
13010
|
*/
|
|
@@ -13054,7 +13062,7 @@ declare class OrderItemsService {
|
|
|
13054
13062
|
* @returns OrderItem Success
|
|
13055
13063
|
* @throws ApiError
|
|
13056
13064
|
*/
|
|
13057
|
-
getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, status, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13065
|
+
getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13058
13066
|
/**
|
|
13059
13067
|
* Gets or sets the queryable order item ids.
|
|
13060
13068
|
*/
|
|
@@ -13079,6 +13087,10 @@ declare class OrderItemsService {
|
|
|
13079
13087
|
* Gets or sets the queryable order item status id.
|
|
13080
13088
|
*/
|
|
13081
13089
|
status?: OrderItemStatus;
|
|
13090
|
+
/**
|
|
13091
|
+
* Gets or sets the queryable order statuses.
|
|
13092
|
+
*/
|
|
13093
|
+
statuses?: Array<OrderItemStatus>;
|
|
13082
13094
|
/**
|
|
13083
13095
|
* Gets or sets the page number for paged queries.
|
|
13084
13096
|
*/
|
|
@@ -20084,6 +20096,62 @@ type VenuePost = {
|
|
|
20084
20096
|
* Gets or sets the tenant Id.
|
|
20085
20097
|
*/
|
|
20086
20098
|
tenantId: string;
|
|
20099
|
+
/**
|
|
20100
|
+
* Gets or sets the venues name.
|
|
20101
|
+
*/
|
|
20102
|
+
name?: string | null;
|
|
20103
|
+
/**
|
|
20104
|
+
* Gets or sets the venues description.
|
|
20105
|
+
*/
|
|
20106
|
+
description?: string | null;
|
|
20107
|
+
/**
|
|
20108
|
+
* Gets or sets the venue image url.
|
|
20109
|
+
*/
|
|
20110
|
+
imageUrl?: string | null;
|
|
20111
|
+
/**
|
|
20112
|
+
* Gets or sets the venues street address.
|
|
20113
|
+
*/
|
|
20114
|
+
streetAddress: string;
|
|
20115
|
+
/**
|
|
20116
|
+
* Gets or sets the venues locality.
|
|
20117
|
+
*/
|
|
20118
|
+
addressLocality?: string | null;
|
|
20119
|
+
/**
|
|
20120
|
+
* Gets or sets the venues region.
|
|
20121
|
+
*/
|
|
20122
|
+
addressRegion?: string | null;
|
|
20123
|
+
/**
|
|
20124
|
+
* Gets or sets the venues postcode.
|
|
20125
|
+
*/
|
|
20126
|
+
addressPostalcode: string;
|
|
20127
|
+
/**
|
|
20128
|
+
* Gets or sets the venues Country id.
|
|
20129
|
+
*/
|
|
20130
|
+
countryId: number;
|
|
20131
|
+
/**
|
|
20132
|
+
* Gets or sets the venues lat.
|
|
20133
|
+
*/
|
|
20134
|
+
lat: number;
|
|
20135
|
+
/**
|
|
20136
|
+
* Gets or sets the venues lng.
|
|
20137
|
+
*/
|
|
20138
|
+
lng: number;
|
|
20139
|
+
/**
|
|
20140
|
+
* Gets or sets the contact phone.
|
|
20141
|
+
*/
|
|
20142
|
+
contactPhone?: string | null;
|
|
20143
|
+
/**
|
|
20144
|
+
* Gets or sets the contact email.
|
|
20145
|
+
*/
|
|
20146
|
+
contactEmail?: string | null;
|
|
20147
|
+
/**
|
|
20148
|
+
* Gets or sets the contact website.
|
|
20149
|
+
*/
|
|
20150
|
+
contactWebsite?: string | null;
|
|
20151
|
+
/**
|
|
20152
|
+
* Gets or sets the amenity ids.
|
|
20153
|
+
*/
|
|
20154
|
+
amenityIds?: Array<number> | null;
|
|
20087
20155
|
};
|
|
20088
20156
|
|
|
20089
20157
|
declare class PublicVenuesService {
|
package/dist/reach-sdk.js
CHANGED
|
@@ -8075,6 +8075,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8075
8075
|
slotId,
|
|
8076
8076
|
courseId,
|
|
8077
8077
|
status,
|
|
8078
|
+
statuses,
|
|
8078
8079
|
pageNumber,
|
|
8079
8080
|
take,
|
|
8080
8081
|
limitListRequests,
|
|
@@ -8096,6 +8097,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8096
8097
|
SlotId: slotId,
|
|
8097
8098
|
CourseId: courseId,
|
|
8098
8099
|
Status: status,
|
|
8100
|
+
Statuses: statuses,
|
|
8099
8101
|
PageNumber: pageNumber,
|
|
8100
8102
|
Take: take,
|
|
8101
8103
|
LimitListRequests: limitListRequests,
|
|
@@ -8126,6 +8128,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8126
8128
|
slotId,
|
|
8127
8129
|
courseId,
|
|
8128
8130
|
status,
|
|
8131
|
+
statuses,
|
|
8129
8132
|
pageNumber,
|
|
8130
8133
|
take,
|
|
8131
8134
|
limitListRequests,
|
|
@@ -8147,6 +8150,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8147
8150
|
SlotId: slotId,
|
|
8148
8151
|
CourseId: courseId,
|
|
8149
8152
|
Status: status,
|
|
8153
|
+
Statuses: statuses,
|
|
8150
8154
|
PageNumber: pageNumber,
|
|
8151
8155
|
Take: take,
|
|
8152
8156
|
LimitListRequests: limitListRequests,
|
|
@@ -8197,6 +8201,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8197
8201
|
slotId,
|
|
8198
8202
|
courseId,
|
|
8199
8203
|
status,
|
|
8204
|
+
statuses,
|
|
8200
8205
|
pageNumber,
|
|
8201
8206
|
take,
|
|
8202
8207
|
limitListRequests,
|
|
@@ -8218,6 +8223,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8218
8223
|
SlotId: slotId,
|
|
8219
8224
|
CourseId: courseId,
|
|
8220
8225
|
Status: status,
|
|
8226
|
+
Statuses: statuses,
|
|
8221
8227
|
PageNumber: pageNumber,
|
|
8222
8228
|
Take: take,
|
|
8223
8229
|
LimitListRequests: limitListRequests,
|
package/package.json
CHANGED
|
@@ -23212,6 +23212,13 @@ paths:
|
|
|
23212
23212
|
description: Gets or sets the queryable order item status id.
|
|
23213
23213
|
schema:
|
|
23214
23214
|
$ref: '#/components/schemas/OrderItemStatus'
|
|
23215
|
+
- name: Statuses
|
|
23216
|
+
in: query
|
|
23217
|
+
description: Gets or sets the queryable order statuses.
|
|
23218
|
+
schema:
|
|
23219
|
+
type: array
|
|
23220
|
+
items:
|
|
23221
|
+
$ref: '#/components/schemas/OrderItemStatus'
|
|
23215
23222
|
- name: PageNumber
|
|
23216
23223
|
in: query
|
|
23217
23224
|
description: Gets or sets the page number for paged queries.
|
|
@@ -23364,6 +23371,13 @@ paths:
|
|
|
23364
23371
|
description: Gets or sets the queryable order item status id.
|
|
23365
23372
|
schema:
|
|
23366
23373
|
$ref: '#/components/schemas/OrderItemStatus'
|
|
23374
|
+
- name: Statuses
|
|
23375
|
+
in: query
|
|
23376
|
+
description: Gets or sets the queryable order statuses.
|
|
23377
|
+
schema:
|
|
23378
|
+
type: array
|
|
23379
|
+
items:
|
|
23380
|
+
$ref: '#/components/schemas/OrderItemStatus'
|
|
23367
23381
|
- name: PageNumber
|
|
23368
23382
|
in: query
|
|
23369
23383
|
description: Gets or sets the page number for paged queries.
|
|
@@ -23572,6 +23586,13 @@ paths:
|
|
|
23572
23586
|
description: Gets or sets the queryable order item status id.
|
|
23573
23587
|
schema:
|
|
23574
23588
|
$ref: '#/components/schemas/OrderItemStatus'
|
|
23589
|
+
- name: Statuses
|
|
23590
|
+
in: query
|
|
23591
|
+
description: Gets or sets the queryable order statuses.
|
|
23592
|
+
schema:
|
|
23593
|
+
type: array
|
|
23594
|
+
items:
|
|
23595
|
+
$ref: '#/components/schemas/OrderItemStatus'
|
|
23575
23596
|
- name: PageNumber
|
|
23576
23597
|
in: query
|
|
23577
23598
|
description: Gets or sets the page number for paged queries.
|
|
@@ -76059,6 +76080,11 @@ components:
|
|
|
76059
76080
|
description: Post model for venue updates.
|
|
76060
76081
|
VenuePost:
|
|
76061
76082
|
required:
|
|
76083
|
+
- addressPostalcode
|
|
76084
|
+
- countryId
|
|
76085
|
+
- lat
|
|
76086
|
+
- lng
|
|
76087
|
+
- streetAddress
|
|
76062
76088
|
- tenantId
|
|
76063
76089
|
type: object
|
|
76064
76090
|
properties:
|
|
@@ -76066,6 +76092,67 @@ components:
|
|
|
76066
76092
|
type: string
|
|
76067
76093
|
description: Gets or sets the tenant Id.
|
|
76068
76094
|
format: uuid
|
|
76095
|
+
name:
|
|
76096
|
+
type: string
|
|
76097
|
+
description: Gets or sets the venues name.
|
|
76098
|
+
nullable: true
|
|
76099
|
+
description:
|
|
76100
|
+
type: string
|
|
76101
|
+
description: Gets or sets the venues description.
|
|
76102
|
+
nullable: true
|
|
76103
|
+
imageUrl:
|
|
76104
|
+
type: string
|
|
76105
|
+
description: Gets or sets the venue image url.
|
|
76106
|
+
format: uri
|
|
76107
|
+
nullable: true
|
|
76108
|
+
streetAddress:
|
|
76109
|
+
minLength: 1
|
|
76110
|
+
type: string
|
|
76111
|
+
description: Gets or sets the venues street address.
|
|
76112
|
+
addressLocality:
|
|
76113
|
+
type: string
|
|
76114
|
+
description: Gets or sets the venues locality.
|
|
76115
|
+
nullable: true
|
|
76116
|
+
addressRegion:
|
|
76117
|
+
type: string
|
|
76118
|
+
description: Gets or sets the venues region.
|
|
76119
|
+
nullable: true
|
|
76120
|
+
addressPostalcode:
|
|
76121
|
+
minLength: 1
|
|
76122
|
+
type: string
|
|
76123
|
+
description: Gets or sets the venues postcode.
|
|
76124
|
+
countryId:
|
|
76125
|
+
type: integer
|
|
76126
|
+
description: Gets or sets the venues Country id.
|
|
76127
|
+
format: int32
|
|
76128
|
+
default: 0
|
|
76129
|
+
lat:
|
|
76130
|
+
type: number
|
|
76131
|
+
description: Gets or sets the venues lat.
|
|
76132
|
+
format: float
|
|
76133
|
+
lng:
|
|
76134
|
+
type: number
|
|
76135
|
+
description: Gets or sets the venues lng.
|
|
76136
|
+
format: float
|
|
76137
|
+
contactPhone:
|
|
76138
|
+
type: string
|
|
76139
|
+
description: Gets or sets the contact phone.
|
|
76140
|
+
nullable: true
|
|
76141
|
+
contactEmail:
|
|
76142
|
+
type: string
|
|
76143
|
+
description: Gets or sets the contact email.
|
|
76144
|
+
nullable: true
|
|
76145
|
+
contactWebsite:
|
|
76146
|
+
type: string
|
|
76147
|
+
description: Gets or sets the contact website.
|
|
76148
|
+
nullable: true
|
|
76149
|
+
amenityIds:
|
|
76150
|
+
type: array
|
|
76151
|
+
items:
|
|
76152
|
+
type: integer
|
|
76153
|
+
format: int32
|
|
76154
|
+
description: Gets or sets the amenity ids.
|
|
76155
|
+
nullable: true
|
|
76069
76156
|
additionalProperties: false
|
|
76070
76157
|
description: Post model for venue inserts.
|
|
76071
76158
|
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
|
};
|
|
@@ -81,6 +81,7 @@ export class OrderItemsService {
|
|
|
81
81
|
slotId,
|
|
82
82
|
courseId,
|
|
83
83
|
status,
|
|
84
|
+
statuses,
|
|
84
85
|
pageNumber,
|
|
85
86
|
take,
|
|
86
87
|
limitListRequests,
|
|
@@ -116,6 +117,10 @@ export class OrderItemsService {
|
|
|
116
117
|
* Gets or sets the queryable order item status id.
|
|
117
118
|
*/
|
|
118
119
|
status?: OrderItemStatus;
|
|
120
|
+
/**
|
|
121
|
+
* Gets or sets the queryable order statuses.
|
|
122
|
+
*/
|
|
123
|
+
statuses?: Array<OrderItemStatus>;
|
|
119
124
|
/**
|
|
120
125
|
* Gets or sets the page number for paged queries.
|
|
121
126
|
*/
|
|
@@ -167,6 +172,7 @@ export class OrderItemsService {
|
|
|
167
172
|
SlotId: slotId,
|
|
168
173
|
CourseId: courseId,
|
|
169
174
|
Status: status,
|
|
175
|
+
Statuses: statuses,
|
|
170
176
|
PageNumber: pageNumber,
|
|
171
177
|
Take: take,
|
|
172
178
|
LimitListRequests: limitListRequests,
|
|
@@ -198,6 +204,7 @@ export class OrderItemsService {
|
|
|
198
204
|
slotId,
|
|
199
205
|
courseId,
|
|
200
206
|
status,
|
|
207
|
+
statuses,
|
|
201
208
|
pageNumber,
|
|
202
209
|
take,
|
|
203
210
|
limitListRequests,
|
|
@@ -233,6 +240,10 @@ export class OrderItemsService {
|
|
|
233
240
|
* Gets or sets the queryable order item status id.
|
|
234
241
|
*/
|
|
235
242
|
status?: OrderItemStatus;
|
|
243
|
+
/**
|
|
244
|
+
* Gets or sets the queryable order statuses.
|
|
245
|
+
*/
|
|
246
|
+
statuses?: Array<OrderItemStatus>;
|
|
236
247
|
/**
|
|
237
248
|
* Gets or sets the page number for paged queries.
|
|
238
249
|
*/
|
|
@@ -284,6 +295,7 @@ export class OrderItemsService {
|
|
|
284
295
|
SlotId: slotId,
|
|
285
296
|
CourseId: courseId,
|
|
286
297
|
Status: status,
|
|
298
|
+
Statuses: statuses,
|
|
287
299
|
PageNumber: pageNumber,
|
|
288
300
|
Take: take,
|
|
289
301
|
LimitListRequests: limitListRequests,
|
|
@@ -341,6 +353,7 @@ export class OrderItemsService {
|
|
|
341
353
|
slotId,
|
|
342
354
|
courseId,
|
|
343
355
|
status,
|
|
356
|
+
statuses,
|
|
344
357
|
pageNumber,
|
|
345
358
|
take,
|
|
346
359
|
limitListRequests,
|
|
@@ -376,6 +389,10 @@ export class OrderItemsService {
|
|
|
376
389
|
* Gets or sets the queryable order item status id.
|
|
377
390
|
*/
|
|
378
391
|
status?: OrderItemStatus;
|
|
392
|
+
/**
|
|
393
|
+
* Gets or sets the queryable order statuses.
|
|
394
|
+
*/
|
|
395
|
+
statuses?: Array<OrderItemStatus>;
|
|
379
396
|
/**
|
|
380
397
|
* Gets or sets the page number for paged queries.
|
|
381
398
|
*/
|
|
@@ -427,6 +444,7 @@ export class OrderItemsService {
|
|
|
427
444
|
SlotId: slotId,
|
|
428
445
|
CourseId: courseId,
|
|
429
446
|
Status: status,
|
|
447
|
+
Statuses: statuses,
|
|
430
448
|
PageNumber: pageNumber,
|
|
431
449
|
Take: take,
|
|
432
450
|
LimitListRequests: limitListRequests,
|