@vendasta/meetings 1.14.0 → 1.14.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.
@@ -8266,6 +8266,9 @@ class HostDetails {
8266
8266
  if (typeof this.name !== 'undefined') {
8267
8267
  toReturn['name'] = this.name;
8268
8268
  }
8269
+ if (typeof this.userId !== 'undefined') {
8270
+ toReturn['userId'] = this.userId;
8271
+ }
8269
8272
  return toReturn;
8270
8273
  }
8271
8274
  }
@@ -11163,6 +11166,7 @@ function meetingFromApi(meetingApi) {
11163
11166
  return {
11164
11167
  hostID: h.hostId || "",
11165
11168
  name: h.name || "",
11169
+ userID: h.userId || "",
11166
11170
  };
11167
11171
  }),
11168
11172
  meetingType: meetingApi.meetingType,