@vendasta/meetings 1.8.0 → 1.9.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/esm2020/lib/_internal/interfaces/meeting-external.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-guest.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/annotations.mjs +1 -1
- package/esm2020/lib/_internal/objects/date-range.mjs +1 -1
- package/esm2020/lib/_internal/objects/field-mask.mjs +1 -1
- package/esm2020/lib/_internal/objects/meeting-external.mjs +2 -2
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +44 -2
- package/esm2020/lib/_internal/objects/meeting-host.mjs +2 -2
- package/esm2020/lib/_internal/objects/meeting-type.mjs +1 -1
- package/esm2020/lib/_internal/objects/openapiv2.mjs +1 -1
- package/esm2020/lib/_internal/objects/shared.mjs +1 -1
- package/esm2020/lib/_internal/objects/zoom.mjs +1 -1
- package/esm2020/lib/guest/guest.service.mjs +1 -1
- package/fesm2015/vendasta-meetings.mjs +42 -0
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +42 -0
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/interfaces/meeting-external.interface.d.ts +1 -1
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +9 -1
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +3 -1
- package/lib/_internal/objects/annotations.d.ts +1 -1
- package/lib/_internal/objects/date-range.d.ts +1 -1
- package/lib/_internal/objects/field-mask.d.ts +1 -1
- package/lib/_internal/objects/meeting-external.d.ts +2 -2
- package/lib/_internal/objects/meeting-guest.d.ts +12 -2
- package/lib/_internal/objects/meeting-host.d.ts +2 -2
- package/lib/_internal/objects/meeting-type.d.ts +1 -1
- package/lib/_internal/objects/openapiv2.d.ts +1 -1
- package/lib/_internal/objects/shared.d.ts +1 -1
- package/lib/_internal/objects/zoom.d.ts +1 -1
- package/lib/guest/guest.service.d.ts +10 -0
- package/package.json +1 -1
|
@@ -3932,6 +3932,9 @@ class BookBatchMeetingRequest {
|
|
|
3932
3932
|
if (typeof this.bookingOriginId !== 'undefined') {
|
|
3933
3933
|
toReturn['bookingOriginId'] = this.bookingOriginId;
|
|
3934
3934
|
}
|
|
3935
|
+
if (typeof this.uniqueRequestId !== 'undefined') {
|
|
3936
|
+
toReturn['uniqueRequestId'] = this.uniqueRequestId;
|
|
3937
|
+
}
|
|
3935
3938
|
return toReturn;
|
|
3936
3939
|
}
|
|
3937
3940
|
}
|
|
@@ -4026,6 +4029,9 @@ class BookMeetingRequest {
|
|
|
4026
4029
|
if (typeof this.hasSmsConsent !== 'undefined') {
|
|
4027
4030
|
toReturn['hasSmsConsent'] = this.hasSmsConsent;
|
|
4028
4031
|
}
|
|
4032
|
+
if (typeof this.uniqueRequestId !== 'undefined') {
|
|
4033
|
+
toReturn['uniqueRequestId'] = this.uniqueRequestId;
|
|
4034
|
+
}
|
|
4029
4035
|
return toReturn;
|
|
4030
4036
|
}
|
|
4031
4037
|
}
|
|
@@ -4171,6 +4177,9 @@ class GetGroupRequest {
|
|
|
4171
4177
|
static fromProto(proto) {
|
|
4172
4178
|
let m = new GetGroupRequest();
|
|
4173
4179
|
m = Object.assign(m, proto);
|
|
4180
|
+
if (proto.bookingSource) {
|
|
4181
|
+
m.bookingSource = enumStringToValue$6(BookingSource, proto.bookingSource);
|
|
4182
|
+
}
|
|
4174
4183
|
return m;
|
|
4175
4184
|
}
|
|
4176
4185
|
constructor(kwargs) {
|
|
@@ -4190,6 +4199,12 @@ class GetGroupRequest {
|
|
|
4190
4199
|
if (typeof this.hostId !== 'undefined') {
|
|
4191
4200
|
toReturn['hostId'] = this.hostId;
|
|
4192
4201
|
}
|
|
4202
|
+
if (typeof this.uniqueRequestId !== 'undefined') {
|
|
4203
|
+
toReturn['uniqueRequestId'] = this.uniqueRequestId;
|
|
4204
|
+
}
|
|
4205
|
+
if (typeof this.bookingSource !== 'undefined') {
|
|
4206
|
+
toReturn['bookingSource'] = this.bookingSource;
|
|
4207
|
+
}
|
|
4193
4208
|
return toReturn;
|
|
4194
4209
|
}
|
|
4195
4210
|
}
|
|
@@ -4312,6 +4327,9 @@ class GetMeetingTypeRequest {
|
|
|
4312
4327
|
static fromProto(proto) {
|
|
4313
4328
|
let m = new GetMeetingTypeRequest();
|
|
4314
4329
|
m = Object.assign(m, proto);
|
|
4330
|
+
if (proto.bookingSource) {
|
|
4331
|
+
m.bookingSource = enumStringToValue$6(BookingSource, proto.bookingSource);
|
|
4332
|
+
}
|
|
4315
4333
|
return m;
|
|
4316
4334
|
}
|
|
4317
4335
|
constructor(kwargs) {
|
|
@@ -4328,6 +4346,12 @@ class GetMeetingTypeRequest {
|
|
|
4328
4346
|
if (typeof this.meetingTypeSlug !== 'undefined') {
|
|
4329
4347
|
toReturn['meetingTypeSlug'] = this.meetingTypeSlug;
|
|
4330
4348
|
}
|
|
4349
|
+
if (typeof this.uniqueRequestId !== 'undefined') {
|
|
4350
|
+
toReturn['uniqueRequestId'] = this.uniqueRequestId;
|
|
4351
|
+
}
|
|
4352
|
+
if (typeof this.bookingSource !== 'undefined') {
|
|
4353
|
+
toReturn['bookingSource'] = this.bookingSource;
|
|
4354
|
+
}
|
|
4331
4355
|
return toReturn;
|
|
4332
4356
|
}
|
|
4333
4357
|
}
|
|
@@ -4358,6 +4382,9 @@ class GetServiceRequest {
|
|
|
4358
4382
|
static fromProto(proto) {
|
|
4359
4383
|
let m = new GetServiceRequest();
|
|
4360
4384
|
m = Object.assign(m, proto);
|
|
4385
|
+
if (proto.bookingSource) {
|
|
4386
|
+
m.bookingSource = enumStringToValue$6(BookingSource, proto.bookingSource);
|
|
4387
|
+
}
|
|
4361
4388
|
return m;
|
|
4362
4389
|
}
|
|
4363
4390
|
constructor(kwargs) {
|
|
@@ -4377,6 +4404,12 @@ class GetServiceRequest {
|
|
|
4377
4404
|
if (typeof this.hostId !== 'undefined') {
|
|
4378
4405
|
toReturn['hostId'] = this.hostId;
|
|
4379
4406
|
}
|
|
4407
|
+
if (typeof this.uniqueRequestId !== 'undefined') {
|
|
4408
|
+
toReturn['uniqueRequestId'] = this.uniqueRequestId;
|
|
4409
|
+
}
|
|
4410
|
+
if (typeof this.bookingSource !== 'undefined') {
|
|
4411
|
+
toReturn['bookingSource'] = this.bookingSource;
|
|
4412
|
+
}
|
|
4380
4413
|
return toReturn;
|
|
4381
4414
|
}
|
|
4382
4415
|
}
|
|
@@ -4410,6 +4443,9 @@ class GetServiceV2Request {
|
|
|
4410
4443
|
static fromProto(proto) {
|
|
4411
4444
|
let m = new GetServiceV2Request();
|
|
4412
4445
|
m = Object.assign(m, proto);
|
|
4446
|
+
if (proto.bookingSource) {
|
|
4447
|
+
m.bookingSource = enumStringToValue$6(BookingSource, proto.bookingSource);
|
|
4448
|
+
}
|
|
4413
4449
|
return m;
|
|
4414
4450
|
}
|
|
4415
4451
|
constructor(kwargs) {
|
|
@@ -4423,6 +4459,12 @@ class GetServiceV2Request {
|
|
|
4423
4459
|
if (typeof this.serviceId !== 'undefined') {
|
|
4424
4460
|
toReturn['serviceId'] = this.serviceId;
|
|
4425
4461
|
}
|
|
4462
|
+
if (typeof this.uniqueRequestId !== 'undefined') {
|
|
4463
|
+
toReturn['uniqueRequestId'] = this.uniqueRequestId;
|
|
4464
|
+
}
|
|
4465
|
+
if (typeof this.bookingSource !== 'undefined') {
|
|
4466
|
+
toReturn['bookingSource'] = this.bookingSource;
|
|
4467
|
+
}
|
|
4426
4468
|
return toReturn;
|
|
4427
4469
|
}
|
|
4428
4470
|
}
|