reach-api-sdk 1.0.88 → 1.0.89
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 +22 -2
- package/package.json +1 -1
- package/src/definition/swagger.yaml +24 -2
- package/src/models/CourseCreate.ts +4 -0
- package/src/models/CourseSessionPost.ts +6 -2
- package/src/models/CourseSessionSchedulePost.ts +4 -0
- package/src/models/ScheduledSessionPost.ts +4 -0
- package/src/models/ScheduledSessionSchedulePost.ts +4 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -5507,6 +5507,10 @@ type CourseCreate = {
|
|
|
5507
5507
|
* Gets or sets the max age.
|
|
5508
5508
|
*/
|
|
5509
5509
|
maxAge?: number | null;
|
|
5510
|
+
/**
|
|
5511
|
+
* Gets or sets a value indicating whether there is an age restriction.
|
|
5512
|
+
*/
|
|
5513
|
+
noAgeRestriction?: boolean | null;
|
|
5510
5514
|
/**
|
|
5511
5515
|
* Gets or sets additional support options.
|
|
5512
5516
|
*/
|
|
@@ -6467,17 +6471,21 @@ type CourseSessionPost = {
|
|
|
6467
6471
|
*/
|
|
6468
6472
|
courseId?: string | null;
|
|
6469
6473
|
/**
|
|
6470
|
-
* Gets or sets the
|
|
6474
|
+
* Gets or sets the course session start date time in UTC as is the applications required convention. (this datetime must always be UTC).
|
|
6471
6475
|
*/
|
|
6472
6476
|
startDateTime?: string | null;
|
|
6473
6477
|
/**
|
|
6474
|
-
* Gets or sets the course session duration.
|
|
6478
|
+
* Gets or sets the course course session duration.
|
|
6475
6479
|
*/
|
|
6476
6480
|
durationMinutes?: number;
|
|
6477
6481
|
/**
|
|
6478
6482
|
* Gets or sets the capacity.
|
|
6479
6483
|
*/
|
|
6480
6484
|
capacity?: number | null;
|
|
6485
|
+
/**
|
|
6486
|
+
* Gets or sets a value indicating whether the course session has unlimited capacity.
|
|
6487
|
+
*/
|
|
6488
|
+
capacityUnlimited?: boolean;
|
|
6481
6489
|
};
|
|
6482
6490
|
|
|
6483
6491
|
declare class CourseSessionsService {
|
|
@@ -7057,6 +7065,10 @@ type CourseSessionSchedulePost = {
|
|
|
7057
7065
|
* Gets or sets the capacity.
|
|
7058
7066
|
*/
|
|
7059
7067
|
capacity: number;
|
|
7068
|
+
/**
|
|
7069
|
+
* Gets or sets a value indicating whether the course session has unlimited capacity.
|
|
7070
|
+
*/
|
|
7071
|
+
capacityUnlimited: boolean;
|
|
7060
7072
|
};
|
|
7061
7073
|
|
|
7062
7074
|
declare class CourseSessionSchedulesService {
|
|
@@ -20204,6 +20216,10 @@ type ScheduledSessionPost = {
|
|
|
20204
20216
|
* Gets or sets the capacity.
|
|
20205
20217
|
*/
|
|
20206
20218
|
capacity?: number | null;
|
|
20219
|
+
/**
|
|
20220
|
+
* Gets or sets a value indicating whether the session has unlimited capacity.
|
|
20221
|
+
*/
|
|
20222
|
+
capacityUnlimited?: boolean;
|
|
20207
20223
|
/**
|
|
20208
20224
|
* Gets or sets the session schedules transaction id, used to defect collisions when a scheduled session insert operation contains more than 1 schedule/slot.
|
|
20209
20225
|
*/
|
|
@@ -25855,6 +25871,10 @@ type ScheduledSessionSchedulePost = {
|
|
|
25855
25871
|
* Gets or sets the capacity.
|
|
25856
25872
|
*/
|
|
25857
25873
|
capacity: number;
|
|
25874
|
+
/**
|
|
25875
|
+
* Gets or sets a value indicating whether the session has unlimited capacity.
|
|
25876
|
+
*/
|
|
25877
|
+
capacityUnlimited: boolean;
|
|
25858
25878
|
/**
|
|
25859
25879
|
* Gets or sets the session schedules transaction id, used to defect collisions when a scheduled session insert operation contains more than 1 schedule/slot.
|
|
25860
25880
|
*/
|
package/package.json
CHANGED
|
@@ -84676,6 +84676,10 @@ components:
|
|
|
84676
84676
|
description: Gets or sets the max age.
|
|
84677
84677
|
format: int32
|
|
84678
84678
|
nullable: true
|
|
84679
|
+
noAgeRestriction:
|
|
84680
|
+
type: boolean
|
|
84681
|
+
description: Gets or sets a value indicating whether there is an age restriction.
|
|
84682
|
+
nullable: true
|
|
84679
84683
|
additionalSupport:
|
|
84680
84684
|
type: array
|
|
84681
84685
|
items:
|
|
@@ -85040,12 +85044,12 @@ components:
|
|
|
85040
85044
|
nullable: true
|
|
85041
85045
|
startDateTime:
|
|
85042
85046
|
type: string
|
|
85043
|
-
description: Gets or sets the
|
|
85047
|
+
description: Gets or sets the course session start date time in UTC as is the applications required convention. (this datetime must always be UTC).
|
|
85044
85048
|
format: date-time
|
|
85045
85049
|
nullable: true
|
|
85046
85050
|
durationMinutes:
|
|
85047
85051
|
type: integer
|
|
85048
|
-
description: Gets or sets the course session duration.
|
|
85052
|
+
description: Gets or sets the course course session duration.
|
|
85049
85053
|
format: int32
|
|
85050
85054
|
default: 0
|
|
85051
85055
|
capacity:
|
|
@@ -85053,6 +85057,10 @@ components:
|
|
|
85053
85057
|
description: Gets or sets the capacity.
|
|
85054
85058
|
format: int32
|
|
85055
85059
|
nullable: true
|
|
85060
|
+
capacityUnlimited:
|
|
85061
|
+
type: boolean
|
|
85062
|
+
description: Gets or sets a value indicating whether the course session has unlimited capacity.
|
|
85063
|
+
default: false
|
|
85056
85064
|
additionalProperties: false
|
|
85057
85065
|
description: Post model for course inserts.
|
|
85058
85066
|
CourseSessionSchedule:
|
|
@@ -85181,6 +85189,7 @@ components:
|
|
|
85181
85189
|
CourseSessionSchedulePost:
|
|
85182
85190
|
required:
|
|
85183
85191
|
- capacity
|
|
85192
|
+
- capacityUnlimited
|
|
85184
85193
|
- durationMinutes
|
|
85185
85194
|
- rRuleString
|
|
85186
85195
|
- startDateTime
|
|
@@ -85222,6 +85231,10 @@ components:
|
|
|
85222
85231
|
description: Gets or sets the capacity.
|
|
85223
85232
|
format: int32
|
|
85224
85233
|
default: 0
|
|
85234
|
+
capacityUnlimited:
|
|
85235
|
+
type: boolean
|
|
85236
|
+
description: Gets or sets a value indicating whether the course session has unlimited capacity.
|
|
85237
|
+
default: false
|
|
85225
85238
|
additionalProperties: false
|
|
85226
85239
|
description: Post model for course session schedule inserts.
|
|
85227
85240
|
CourseStatus:
|
|
@@ -89912,6 +89925,10 @@ components:
|
|
|
89912
89925
|
description: Gets or sets the capacity.
|
|
89913
89926
|
format: int32
|
|
89914
89927
|
nullable: true
|
|
89928
|
+
capacityUnlimited:
|
|
89929
|
+
type: boolean
|
|
89930
|
+
description: Gets or sets a value indicating whether the session has unlimited capacity.
|
|
89931
|
+
default: false
|
|
89915
89932
|
transactionId:
|
|
89916
89933
|
type: string
|
|
89917
89934
|
description: 'Gets or sets the session schedules transaction id, used to defect collisions when a scheduled session insert operation contains more than 1 schedule/slot.'
|
|
@@ -90083,6 +90100,7 @@ components:
|
|
|
90083
90100
|
ScheduledSessionSchedulePost:
|
|
90084
90101
|
required:
|
|
90085
90102
|
- capacity
|
|
90103
|
+
- capacityUnlimited
|
|
90086
90104
|
- durationMinutes
|
|
90087
90105
|
- rRuleString
|
|
90088
90106
|
- sessionId
|
|
@@ -90125,6 +90143,10 @@ components:
|
|
|
90125
90143
|
description: Gets or sets the capacity.
|
|
90126
90144
|
format: int32
|
|
90127
90145
|
default: 0
|
|
90146
|
+
capacityUnlimited:
|
|
90147
|
+
type: boolean
|
|
90148
|
+
description: Gets or sets a value indicating whether the session has unlimited capacity.
|
|
90149
|
+
default: false
|
|
90128
90150
|
transactionId:
|
|
90129
90151
|
type: string
|
|
90130
90152
|
description: 'Gets or sets the session schedules transaction id, used to defect collisions when a scheduled session insert operation contains more than 1 schedule/slot.'
|
|
@@ -73,6 +73,10 @@ export type CourseCreate = {
|
|
|
73
73
|
* Gets or sets the max age.
|
|
74
74
|
*/
|
|
75
75
|
maxAge?: number | null;
|
|
76
|
+
/**
|
|
77
|
+
* Gets or sets a value indicating whether there is an age restriction.
|
|
78
|
+
*/
|
|
79
|
+
noAgeRestriction?: boolean | null;
|
|
76
80
|
/**
|
|
77
81
|
* Gets or sets additional support options.
|
|
78
82
|
*/
|
|
@@ -16,15 +16,19 @@ export type CourseSessionPost = {
|
|
|
16
16
|
*/
|
|
17
17
|
courseId?: string | null;
|
|
18
18
|
/**
|
|
19
|
-
* Gets or sets the
|
|
19
|
+
* Gets or sets the course session start date time in UTC as is the applications required convention. (this datetime must always be UTC).
|
|
20
20
|
*/
|
|
21
21
|
startDateTime?: string | null;
|
|
22
22
|
/**
|
|
23
|
-
* Gets or sets the course session duration.
|
|
23
|
+
* Gets or sets the course course session duration.
|
|
24
24
|
*/
|
|
25
25
|
durationMinutes?: number;
|
|
26
26
|
/**
|
|
27
27
|
* Gets or sets the capacity.
|
|
28
28
|
*/
|
|
29
29
|
capacity?: number | null;
|
|
30
|
+
/**
|
|
31
|
+
* Gets or sets a value indicating whether the course session has unlimited capacity.
|
|
32
|
+
*/
|
|
33
|
+
capacityUnlimited?: boolean;
|
|
30
34
|
};
|
|
@@ -27,6 +27,10 @@ export type ScheduledSessionPost = {
|
|
|
27
27
|
* Gets or sets the capacity.
|
|
28
28
|
*/
|
|
29
29
|
capacity?: number | null;
|
|
30
|
+
/**
|
|
31
|
+
* Gets or sets a value indicating whether the session has unlimited capacity.
|
|
32
|
+
*/
|
|
33
|
+
capacityUnlimited?: boolean;
|
|
30
34
|
/**
|
|
31
35
|
* Gets or sets the session schedules transaction id, used to defect collisions when a scheduled session insert operation contains more than 1 schedule/slot.
|
|
32
36
|
*/
|
|
@@ -39,6 +39,10 @@ export type ScheduledSessionSchedulePost = {
|
|
|
39
39
|
* Gets or sets the capacity.
|
|
40
40
|
*/
|
|
41
41
|
capacity: number;
|
|
42
|
+
/**
|
|
43
|
+
* Gets or sets a value indicating whether the session has unlimited capacity.
|
|
44
|
+
*/
|
|
45
|
+
capacityUnlimited: boolean;
|
|
42
46
|
/**
|
|
43
47
|
* Gets or sets the session schedules transaction id, used to defect collisions when a scheduled session insert operation contains more than 1 schedule/slot.
|
|
44
48
|
*/
|