@vendasta/meetings 0.93.5 → 0.94.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.
@@ -209,6 +209,9 @@ class MeetingSourceListRequest {
209
209
  if (typeof this.namespace !== 'undefined') {
210
210
  toReturn['namespace'] = this.namespace;
211
211
  }
212
+ if (typeof this.origin !== 'undefined') {
213
+ toReturn['origin'] = this.origin;
214
+ }
212
215
  return toReturn;
213
216
  }
214
217
  }
@@ -4804,16 +4807,18 @@ class MeetingsService {
4804
4807
  * @deprecated Use listForUser instead. This method will result in the backend grabbing the userID from the user's JWT
4805
4808
  * This will eventually no longer be supported because it breaks our impersonation workflows.
4806
4809
  */
4807
- list(meetingSources, namespace) {
4810
+ list(meetingSources, namespace, origin) {
4808
4811
  return this._api.list({
4809
4812
  queriedSources: meetingSources,
4810
4813
  namespace: namespace,
4814
+ origin: origin,
4811
4815
  });
4812
4816
  }
4813
- listForUser(iamUserId, namespace, queriedSources) {
4817
+ listForUser(iamUserId, namespace, origin, queriedSources) {
4814
4818
  return this._api.list({
4815
4819
  iamUserId: iamUserId,
4816
4820
  namespace: namespace,
4821
+ origin: origin,
4817
4822
  queriedSources: queriedSources,
4818
4823
  });
4819
4824
  }
@@ -5709,6 +5714,14 @@ function ServiceFromApi(req) {
5709
5714
  };
5710
5715
  }
5711
5716
 
5717
+ var MeetingSourceOrigin;
5718
+ (function (MeetingSourceOrigin) {
5719
+ MeetingSourceOrigin["TaskManager"] = "task-manager";
5720
+ MeetingSourceOrigin["PartnerCenter"] = "partner-center";
5721
+ MeetingSourceOrigin["BusinessApp"] = "business-app";
5722
+ MeetingSourceOrigin["SalesCenter"] = "sales-center";
5723
+ })(MeetingSourceOrigin || (MeetingSourceOrigin = {}));
5724
+
5712
5725
  class GuestService {
5713
5726
  constructor(guestAPIService) {
5714
5727
  this.guestAPIService = guestAPIService;
@@ -6188,5 +6201,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
6188
6201
  * Generated bundle index. Do not edit.
6189
6202
  */
6190
6203
 
6191
- export { CalendarType, Contact, CreateCalendarRequest, CreateCalendarResponse, DayOfWeek, FormFieldType, GuestService, HostService, KnownCalendarApplicationContextKeys, KnownCalendarExternalIntegrations, MeetingLocationType, MeetingSource, MeetingSourceInfo, MeetingSourceListResponse, MeetingSourceQuery, MeetingSourceStatus, MeetingsService, PagedResponse, WeekdayAvailability, WellKnownFormFieldIds, WellKnownMeetingMetadataKeys, addMetadataToBookingLink, durationFromString, durationStringToMinutes, durationToString, meetingSchedulerIdToMetadataKey, newBusinessCenterApplicationContextProperties, newPartnerCenterApplicationContextProperties, newSalesCenterApplicationContextProperties };
6204
+ export { CalendarType, Contact, CreateCalendarRequest, CreateCalendarResponse, DayOfWeek, FormFieldType, GuestService, HostService, KnownCalendarApplicationContextKeys, KnownCalendarExternalIntegrations, MeetingLocationType, MeetingSource, MeetingSourceInfo, MeetingSourceListResponse, MeetingSourceOrigin, MeetingSourceQuery, MeetingSourceStatus, MeetingsService, PagedResponse, WeekdayAvailability, WellKnownFormFieldIds, WellKnownMeetingMetadataKeys, addMetadataToBookingLink, durationFromString, durationStringToMinutes, durationToString, meetingSchedulerIdToMetadataKey, newBusinessCenterApplicationContextProperties, newPartnerCenterApplicationContextProperties, newSalesCenterApplicationContextProperties };
6192
6205
  //# sourceMappingURL=vendasta-meetings.mjs.map