@vendasta/meetings 0.74.0 → 0.76.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.
Files changed (64) hide show
  1. package/esm2020/lib/_generated/host.service.mjs +3 -3
  2. package/esm2020/lib/_internal/conversation-analysis.api.service.mjs +40 -0
  3. package/esm2020/lib/_internal/enums/conversation-analysis.enum.mjs +12 -0
  4. package/esm2020/lib/_internal/enums/index.mjs +2 -1
  5. package/esm2020/lib/_internal/google-meet.api.service.mjs +9 -10
  6. package/esm2020/lib/_internal/index.mjs +2 -1
  7. package/esm2020/lib/_internal/interfaces/annotations.interface.mjs +8 -0
  8. package/esm2020/lib/_internal/interfaces/conversation-analysis.interface.mjs +8 -0
  9. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  10. package/esm2020/lib/_internal/meeting-guest.api.service.mjs +9 -10
  11. package/esm2020/lib/_internal/meeting-host.api.service.mjs +9 -10
  12. package/esm2020/lib/_internal/meeting-source-api.api.service.mjs +9 -10
  13. package/esm2020/lib/_internal/objects/annotations.mjs +30 -0
  14. package/esm2020/lib/_internal/objects/conversation-analysis.mjs +101 -0
  15. package/esm2020/lib/_internal/objects/date-range.mjs +7 -7
  16. package/esm2020/lib/_internal/objects/datetime.mjs +12 -12
  17. package/esm2020/lib/_internal/objects/field-mask.mjs +6 -6
  18. package/esm2020/lib/_internal/objects/google-meet.mjs +80 -80
  19. package/esm2020/lib/_internal/objects/index.mjs +3 -1
  20. package/esm2020/lib/_internal/objects/meeting-guest.mjs +105 -105
  21. package/esm2020/lib/_internal/objects/meeting-host.mjs +311 -311
  22. package/esm2020/lib/_internal/objects/meeting-source.mjs +25 -25
  23. package/esm2020/lib/_internal/objects/meeting-type.mjs +19 -19
  24. package/esm2020/lib/_internal/objects/shared.mjs +73 -73
  25. package/esm2020/lib/_internal/objects/timeofday.mjs +6 -6
  26. package/esm2020/lib/_internal/objects/zoom.mjs +36 -36
  27. package/esm2020/lib/_internal/zoom.api.service.mjs +9 -10
  28. package/esm2020/lib/conversation_analysis/conversation-analysis.service.mjs +22 -0
  29. package/esm2020/lib/guest/guest.service.mjs +3 -3
  30. package/esm2020/lib/host/host.service.mjs +3 -3
  31. package/esm2020/lib/index.mjs +2 -1
  32. package/esm2020/lib/meetings.service.mjs +3 -3
  33. package/fesm2015/vendasta-meetings.mjs +937 -751
  34. package/fesm2015/vendasta-meetings.mjs.map +1 -1
  35. package/fesm2020/vendasta-meetings.mjs +938 -752
  36. package/fesm2020/vendasta-meetings.mjs.map +1 -1
  37. package/lib/_internal/conversation-analysis.api.service.d.ts +13 -0
  38. package/lib/_internal/enums/conversation-analysis.enum.d.ts +4 -0
  39. package/lib/_internal/enums/index.d.ts +1 -0
  40. package/lib/_internal/google-meet.api.service.d.ts +2 -5
  41. package/lib/_internal/index.d.ts +1 -0
  42. package/lib/_internal/interfaces/annotations.interface.d.ts +4 -0
  43. package/lib/_internal/interfaces/conversation-analysis.interface.d.ts +16 -0
  44. package/lib/_internal/interfaces/index.d.ts +3 -1
  45. package/lib/_internal/meeting-guest.api.service.d.ts +3 -5
  46. package/lib/_internal/meeting-host.api.service.d.ts +3 -5
  47. package/lib/_internal/meeting-source-api.api.service.d.ts +2 -5
  48. package/lib/_internal/objects/annotations.d.ts +9 -0
  49. package/lib/_internal/objects/conversation-analysis.d.ts +27 -0
  50. package/lib/_internal/objects/index.d.ts +2 -1
  51. package/lib/_internal/objects/meeting-host.d.ts +7 -7
  52. package/lib/_internal/zoom.api.service.d.ts +2 -5
  53. package/lib/conversation_analysis/conversation-analysis.service.d.ts +13 -0
  54. package/lib/index.d.ts +1 -0
  55. package/lib/shared/calendar.d.ts +1 -1
  56. package/lib/shared/host-id.d.ts +1 -1
  57. package/lib/shared/host-user.d.ts +1 -1
  58. package/lib/shared/meeting-type.d.ts +2 -2
  59. package/lib/shared/meeting.d.ts +2 -2
  60. package/package.json +5 -5
  61. package/esm2020/lib/_internal/objects/dayofweek.mjs +0 -7
  62. package/lib/_internal/objects/dayofweek.d.ts +0 -1
  63. package/src/README.md +0 -12
  64. /package/{vendasta-meetings.d.ts → index.d.ts} +0 -0
@@ -0,0 +1,13 @@
1
+ import { CreateRawTranscriptRequest, CreateRawTranscriptResponse } from './objects/';
2
+ import { CreateRawTranscriptRequestInterface } from './interfaces/';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ConversationAnalysisApiService {
6
+ private readonly hostService;
7
+ private readonly http;
8
+ private _host;
9
+ private apiOptions;
10
+ createRawTranscript(r: CreateRawTranscriptRequest | CreateRawTranscriptRequestInterface): Observable<CreateRawTranscriptResponse>;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConversationAnalysisApiService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<ConversationAnalysisApiService>;
13
+ }
@@ -0,0 +1,4 @@
1
+ export declare enum TranscriptSource {
2
+ TRANSCRIPT_SOURCE_UNSPECIFIED = 0,
3
+ TRANSCRIPT_SOURCE_GOOGLE_MEET = 1
4
+ }
@@ -2,3 +2,4 @@ export { MeetingSource, MeetingSourceStatus, } from './meeting-source.enum';
2
2
  export { ZoomApprovalType, ZoomMeetingRecurrenceType, ZoomMeetingType, ZoomMonthlyWeek, ZoomMonthlyWeekDay, ZoomRegistrationType, ZoomWeeklyDay, } from './zoom.enum';
3
3
  export { CalendarType, FormFieldType, } from './shared.enum';
4
4
  export { DayOfWeek, } from './dayofweek.enum';
5
+ export { TranscriptSource, } from './conversation-analysis.enum';
@@ -1,14 +1,11 @@
1
1
  import { GoogleMeetCreateMeetingRequest, GoogleMeetCreateMeetingResponse } from './objects/';
2
2
  import { GoogleMeetCreateMeetingRequestInterface } from './interfaces/';
3
- import { HttpClient } from '@angular/common/http';
4
- import { HostService } from '../_generated/host.service';
5
3
  import { Observable } from 'rxjs';
6
4
  import * as i0 from "@angular/core";
7
5
  export declare class GoogleMeetApiService {
8
- private http;
9
- private hostService;
6
+ private readonly hostService;
7
+ private readonly http;
10
8
  private _host;
11
- constructor(http: HttpClient, hostService: HostService);
12
9
  private apiOptions;
13
10
  createMeeting(r: GoogleMeetCreateMeetingRequest | GoogleMeetCreateMeetingRequestInterface): Observable<GoogleMeetCreateMeetingResponse>;
14
11
  static ɵfac: i0.ɵɵFactoryDeclaration<GoogleMeetApiService, never>;
@@ -1,6 +1,7 @@
1
1
  export * from './enums';
2
2
  export * from './objects';
3
3
  export * from './interfaces';
4
+ export { ConversationAnalysisApiService } from './conversation-analysis.api.service';
4
5
  export { GoogleMeetApiService } from './google-meet.api.service';
5
6
  export { MeetingGuestApiService } from './meeting-guest.api.service';
6
7
  export { MeetingHostApiService } from './meeting-host.api.service';
@@ -0,0 +1,4 @@
1
+ export interface AccessInterface {
2
+ scope?: string[];
3
+ public?: boolean;
4
+ }
@@ -0,0 +1,16 @@
1
+ import * as e from '../enums';
2
+ export interface CreateRawTranscriptRequestInterface {
3
+ rawTranscript?: RawTranscriptInterface;
4
+ }
5
+ export interface CreateRawTranscriptResponseInterface {
6
+ id?: string;
7
+ }
8
+ export interface RawTranscriptInterface {
9
+ id?: string;
10
+ namespace?: string;
11
+ transcript?: string;
12
+ source?: e.TranscriptSource;
13
+ created?: Date;
14
+ updated?: Date;
15
+ deleted?: Date;
16
+ }
@@ -9,4 +9,6 @@ export { DateRangeInterface, } from './date-range.interface';
9
9
  export { BookMeetingRequestInterface, BookMeetingResponseInterface, GetCalendarRequestInterface, GetCalendarResponseInterface, GetHostRequestInterface, GetHostResponseInterface, GetMeetingTypeRequestInterface, GetMeetingTypeResponseInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestGetBookedMeetingResponseInterface, GuestIsHostConfiguredRequestInterface, GuestIsHostConfiguredResponseInterface, GuestRescheduleMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListAvailableTimeSlotsResponseInterface, ListMeetingTypesRequestInterface, ListMeetingTypesResponseInterface, BookMeetingRequestMetadataEntryInterface, } from './meeting-guest.interface';
10
10
  export {} from './dayofweek.interface';
11
11
  export { FieldMaskInterface, } from './field-mask.interface';
12
- export { BuildHostIdRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, AvailabilityRuleInterface, BuildHostIdRequestInterface, BuildHostIdResponseInterface, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntryInterface, CancelMeetingRequestInterface, CreateAvailabilityRequestInterface, CreateAvailabilityResponseInterface, CreateCalendarRequestInterface, CreateCalendarResponseInterface, CreateDefaultMeetingTypesRequestInterface, CreateMeetingTypeRequestInterface, CreateMeetingTypeResponseInterface, DeleteAvailabilityRequestInterface, DeleteMeetingTypeRequestInterface, DoesCalendarExistRequestInterface, DoesCalendarExistResponseInterface, EnsureGroupCalendarsExistRequestInterface, EnsureGroupCalendarsExistResponseInterface, EnsurePersonalCalendarExistsRequestInterface, EnsurePersonalCalendarExistsResponseInterface, ListAvailabilityRequestFiltersInterface, ListBookedMeetingsRequestFiltersInterface, GetHostMeetingRequestInterface, GetHostMeetingResponseInterface, GetHostPreferencesRequestInterface, GetHostPreferencesResponseInterface, GetHostsForCalendarRequestInterface, GetHostsForCalendarResponseInterface, GetMeetingTypesForCalendarsRequestInterface, GetMeetingTypesForCalendarsResponseInterface, HostBookMeetingRequestInterface, HostBookMeetingResponseInterface, HostGetCalendarRequestInterface, HostGetCalendarResponseInterface, HostGetMeetingTypeRequestInterface, HostGetMeetingTypeResponseInterface, HostListMeetingTypesRequestInterface, HostListMeetingTypesResponseInterface, IsHostConfiguredRequestInterface, IsHostConfiguredResponseInterface, ListAvailabilityRequestInterface, ListAvailabilityResponseInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, MeetingInterface, MeetingTypeListInterface, MeetingMetadataEntryInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, RescheduleMeetingRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
12
+ export { BuildHostIdRequestApplicationContextPropertiesEntryInterface, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntryInterface, AvailabilityRuleInterface, BuildHostIdRequestInterface, BuildHostIdResponseInterface, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntryInterface, CancelMeetingRequestInterface, CreateAvailabilityRequestInterface, CreateAvailabilityResponseInterface, CreateCalendarRequestInterface, CreateCalendarResponseInterface, CreateDefaultMeetingTypesRequestInterface, CreateMeetingTypeRequestInterface, CreateMeetingTypeResponseInterface, DeleteAvailabilityRequestInterface, DeleteMeetingTypeRequestInterface, DoesCalendarExistRequestInterface, DoesCalendarExistResponseInterface, EnsureGroupCalendarsExistRequestInterface, EnsureGroupCalendarsExistResponseInterface, EnsurePersonalCalendarExistsRequestInterface, EnsurePersonalCalendarExistsResponseInterface, ListBookedMeetingsRequestFiltersInterface, ListAvailabilityRequestFiltersInterface, GetHostMeetingRequestInterface, GetHostMeetingResponseInterface, GetHostPreferencesRequestInterface, GetHostPreferencesResponseInterface, GetHostsForCalendarRequestInterface, GetHostsForCalendarResponseInterface, GetMeetingTypesForCalendarsRequestInterface, GetMeetingTypesForCalendarsResponseInterface, HostBookMeetingRequestInterface, HostBookMeetingResponseInterface, HostGetCalendarRequestInterface, HostGetCalendarResponseInterface, HostGetMeetingTypeRequestInterface, HostGetMeetingTypeResponseInterface, HostListMeetingTypesRequestInterface, HostListMeetingTypesResponseInterface, IsHostConfiguredRequestInterface, IsHostConfiguredResponseInterface, ListAvailabilityRequestInterface, ListAvailabilityResponseInterface, ListBookedMeetingsRequestInterface, ListBookedMeetingsResponseInterface, MeetingInterface, MeetingTypeListInterface, MeetingMetadataEntryInterface, UpdateMeetingMetadataRequestMetadataEntryInterface, RescheduleMeetingRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface, WeekdayAvailabilityInterface, } from './meeting-host.interface';
13
+ export { CreateRawTranscriptRequestInterface, CreateRawTranscriptResponseInterface, RawTranscriptInterface, } from './conversation-analysis.interface';
14
+ export { AccessInterface, } from './annotations.interface';
@@ -1,14 +1,12 @@
1
1
  import { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetHostRequest, GetHostResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingResponse, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse } from './objects/';
2
2
  import { BookMeetingRequestInterface, GetCalendarRequestInterface, GetHostRequestInterface, GetMeetingTypeRequestInterface, GuestCancelMeetingRequestInterface, GuestGetBookedMeetingRequestInterface, GuestIsHostConfiguredRequestInterface, GuestRescheduleMeetingRequestInterface, ListAvailableTimeSlotsRequestInterface, ListMeetingTypesRequestInterface } from './interfaces/';
3
- import { HttpClient, HttpResponse } from '@angular/common/http';
4
- import { HostService } from '../_generated/host.service';
3
+ import { HttpResponse } from '@angular/common/http';
5
4
  import { Observable } from 'rxjs';
6
5
  import * as i0 from "@angular/core";
7
6
  export declare class MeetingGuestApiService {
8
- private http;
9
- private hostService;
7
+ private readonly hostService;
8
+ private readonly http;
10
9
  private _host;
11
- constructor(http: HttpClient, hostService: HostService);
12
10
  private apiOptions;
13
11
  listMeetingTypes(r: ListMeetingTypesRequest | ListMeetingTypesRequestInterface): Observable<ListMeetingTypesResponse>;
14
12
  getMeetingType(r: GetMeetingTypeRequest | GetMeetingTypeRequestInterface): Observable<GetMeetingTypeResponse>;
@@ -1,14 +1,12 @@
1
1
  import { BuildHostIdRequest, BuildHostIdResponse, CancelMeetingRequest, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateMeetingTypeRequest, CreateMeetingTypeResponse, DeleteAvailabilityRequest, DeleteMeetingTypeRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, RescheduleMeetingRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest } from './objects/';
2
2
  import { BuildHostIdRequestInterface, CancelMeetingRequestInterface, CreateAvailabilityRequestInterface, CreateCalendarRequestInterface, CreateDefaultMeetingTypesRequestInterface, CreateMeetingTypeRequestInterface, DeleteAvailabilityRequestInterface, DeleteMeetingTypeRequestInterface, DoesCalendarExistRequestInterface, EnsureGroupCalendarsExistRequestInterface, EnsurePersonalCalendarExistsRequestInterface, GetHostMeetingRequestInterface, GetHostPreferencesRequestInterface, GetHostsForCalendarRequestInterface, GetMeetingTypesForCalendarsRequestInterface, HostBookMeetingRequestInterface, HostGetCalendarRequestInterface, HostGetMeetingTypeRequestInterface, HostListMeetingTypesRequestInterface, IsHostConfiguredRequestInterface, ListAvailabilityRequestInterface, ListBookedMeetingsRequestInterface, RescheduleMeetingRequestInterface, SetGeneralAvailabilityRequestInterface, UpdateAvailabilityRequestInterface, UpdateCalendarRequestInterface, UpdateHostPreferencesRequestInterface, UpdateMeetingMetadataRequestInterface, UpdateMeetingTypeRequestInterface } from './interfaces/';
3
- import { HttpClient, HttpResponse } from '@angular/common/http';
4
- import { HostService } from '../_generated/host.service';
3
+ import { HttpResponse } from '@angular/common/http';
5
4
  import { Observable } from 'rxjs';
6
5
  import * as i0 from "@angular/core";
7
6
  export declare class MeetingHostApiService {
8
- private http;
9
- private hostService;
7
+ private readonly hostService;
8
+ private readonly http;
10
9
  private _host;
11
- constructor(http: HttpClient, hostService: HostService);
12
10
  private apiOptions;
13
11
  buildHostId(r: BuildHostIdRequest | BuildHostIdRequestInterface): Observable<BuildHostIdResponse>;
14
12
  doesCalendarExist(r: DoesCalendarExistRequest | DoesCalendarExistRequestInterface): Observable<DoesCalendarExistResponse>;
@@ -1,14 +1,11 @@
1
1
  import { MeetingSourceListRequest, MeetingSourceListResponse } from './objects/';
2
2
  import { MeetingSourceListRequestInterface } from './interfaces/';
3
- import { HttpClient } from '@angular/common/http';
4
- import { HostService } from '../_generated/host.service';
5
3
  import { Observable } from 'rxjs';
6
4
  import * as i0 from "@angular/core";
7
5
  export declare class MeetingSourceAPIApiService {
8
- private http;
9
- private hostService;
6
+ private readonly hostService;
7
+ private readonly http;
10
8
  private _host;
11
- constructor(http: HttpClient, hostService: HostService);
12
9
  private apiOptions;
13
10
  list(r: MeetingSourceListRequest | MeetingSourceListRequestInterface): Observable<MeetingSourceListResponse>;
14
11
  static ɵfac: i0.ɵɵFactoryDeclaration<MeetingSourceAPIApiService, never>;
@@ -0,0 +1,9 @@
1
+ import * as i from '../interfaces';
2
+ export declare function enumStringToValue<E>(enumRef: any, value: string): E;
3
+ export declare class Access implements i.AccessInterface {
4
+ scope: string[];
5
+ public: boolean;
6
+ static fromProto(proto: any): Access;
7
+ constructor(kwargs?: i.AccessInterface);
8
+ toApiJson(): object;
9
+ }
@@ -0,0 +1,27 @@
1
+ import * as i from '../interfaces';
2
+ import * as e from '../enums';
3
+ export declare function enumStringToValue<E>(enumRef: any, value: string): E;
4
+ export declare class CreateRawTranscriptRequest implements i.CreateRawTranscriptRequestInterface {
5
+ rawTranscript: RawTranscript;
6
+ static fromProto(proto: any): CreateRawTranscriptRequest;
7
+ constructor(kwargs?: i.CreateRawTranscriptRequestInterface);
8
+ toApiJson(): object;
9
+ }
10
+ export declare class CreateRawTranscriptResponse implements i.CreateRawTranscriptResponseInterface {
11
+ id: string;
12
+ static fromProto(proto: any): CreateRawTranscriptResponse;
13
+ constructor(kwargs?: i.CreateRawTranscriptResponseInterface);
14
+ toApiJson(): object;
15
+ }
16
+ export declare class RawTranscript implements i.RawTranscriptInterface {
17
+ id: string;
18
+ namespace: string;
19
+ transcript: string;
20
+ source: e.TranscriptSource;
21
+ created: Date;
22
+ updated: Date;
23
+ deleted: Date;
24
+ static fromProto(proto: any): RawTranscript;
25
+ constructor(kwargs?: i.RawTranscriptInterface);
26
+ toApiJson(): object;
27
+ }
@@ -7,6 +7,7 @@ export { Answer, Answers, CalendarApplicationContextEntry, Attachment, Attendee,
7
7
  export { Field, Form, MeetingType, } from './meeting-type';
8
8
  export { DateRange, } from './date-range';
9
9
  export { BookMeetingRequest, BookMeetingResponse, GetCalendarRequest, GetCalendarResponse, GetHostRequest, GetHostResponse, GetMeetingTypeRequest, GetMeetingTypeResponse, GuestCancelMeetingRequest, GuestGetBookedMeetingRequest, GuestGetBookedMeetingResponse, GuestIsHostConfiguredRequest, GuestIsHostConfiguredResponse, GuestRescheduleMeetingRequest, ListAvailableTimeSlotsRequest, ListAvailableTimeSlotsResponse, ListMeetingTypesRequest, ListMeetingTypesResponse, BookMeetingRequestMetadataEntry, } from './meeting-guest';
10
- export {} from './dayofweek';
11
10
  export { FieldMask, } from './field-mask';
12
11
  export { BuildHostIdRequestApplicationContextPropertiesEntry, EnsurePersonalCalendarExistsRequestApplicationContextPropertiesEntry, AvailabilityRule, BuildHostIdRequest, BuildHostIdResponse, GetMeetingTypesForCalendarsResponseCalendarMeetingTypesMapEntry, CancelMeetingRequest, CreateAvailabilityRequest, CreateAvailabilityResponse, CreateCalendarRequest, CreateCalendarResponse, CreateDefaultMeetingTypesRequest, CreateMeetingTypeRequest, CreateMeetingTypeResponse, DeleteAvailabilityRequest, DeleteMeetingTypeRequest, DoesCalendarExistRequest, DoesCalendarExistResponse, EnsureGroupCalendarsExistRequest, EnsureGroupCalendarsExistResponse, EnsurePersonalCalendarExistsRequest, EnsurePersonalCalendarExistsResponse, ListBookedMeetingsRequestFilters, ListAvailabilityRequestFilters, GetHostMeetingRequest, GetHostMeetingResponse, GetHostPreferencesRequest, GetHostPreferencesResponse, GetHostsForCalendarRequest, GetHostsForCalendarResponse, GetMeetingTypesForCalendarsRequest, GetMeetingTypesForCalendarsResponse, HostBookMeetingRequest, HostBookMeetingResponse, HostGetCalendarRequest, HostGetCalendarResponse, HostGetMeetingTypeRequest, HostGetMeetingTypeResponse, HostListMeetingTypesRequest, HostListMeetingTypesResponse, IsHostConfiguredRequest, IsHostConfiguredResponse, ListAvailabilityRequest, ListAvailabilityResponse, ListBookedMeetingsRequest, ListBookedMeetingsResponse, Meeting, MeetingTypeList, MeetingMetadataEntry, UpdateMeetingMetadataRequestMetadataEntry, RescheduleMeetingRequest, SetGeneralAvailabilityRequest, UpdateAvailabilityRequest, UpdateCalendarRequest, UpdateHostPreferencesRequest, UpdateMeetingMetadataRequest, UpdateMeetingTypeRequest, WeekdayAvailability, } from './meeting-host';
12
+ export { CreateRawTranscriptRequest, CreateRawTranscriptResponse, RawTranscript, } from './conversation-analysis';
13
+ export { Access, } from './annotations';
@@ -150,13 +150,6 @@ export declare class EnsurePersonalCalendarExistsResponse implements i.EnsurePer
150
150
  constructor(kwargs?: i.EnsurePersonalCalendarExistsResponseInterface);
151
151
  toApiJson(): object;
152
152
  }
153
- export declare class ListAvailabilityRequestFilters implements i.ListAvailabilityRequestFiltersInterface {
154
- hostId: string;
155
- meetingTypeId: string;
156
- static fromProto(proto: any): ListAvailabilityRequestFilters;
157
- constructor(kwargs?: i.ListAvailabilityRequestFiltersInterface);
158
- toApiJson(): object;
159
- }
160
153
  export declare class ListBookedMeetingsRequestFilters implements i.ListBookedMeetingsRequestFiltersInterface {
161
154
  meetingTypeIds: string[];
162
155
  hostId: string;
@@ -165,6 +158,13 @@ export declare class ListBookedMeetingsRequestFilters implements i.ListBookedMee
165
158
  constructor(kwargs?: i.ListBookedMeetingsRequestFiltersInterface);
166
159
  toApiJson(): object;
167
160
  }
161
+ export declare class ListAvailabilityRequestFilters implements i.ListAvailabilityRequestFiltersInterface {
162
+ hostId: string;
163
+ meetingTypeId: string;
164
+ static fromProto(proto: any): ListAvailabilityRequestFilters;
165
+ constructor(kwargs?: i.ListAvailabilityRequestFiltersInterface);
166
+ toApiJson(): object;
167
+ }
168
168
  export declare class GetHostMeetingRequest implements i.GetHostMeetingRequestInterface {
169
169
  meetingId: string;
170
170
  location: string;
@@ -1,14 +1,11 @@
1
1
  import { CreateZoomMeetingRequest, CreateZoomMeetingResponse } from './objects/';
2
2
  import { CreateZoomMeetingRequestInterface } from './interfaces/';
3
- import { HttpClient } from '@angular/common/http';
4
- import { HostService } from '../_generated/host.service';
5
3
  import { Observable } from 'rxjs';
6
4
  import * as i0 from "@angular/core";
7
5
  export declare class ZoomApiService {
8
- private http;
9
- private hostService;
6
+ private readonly hostService;
7
+ private readonly http;
10
8
  private _host;
11
- constructor(http: HttpClient, hostService: HostService);
12
9
  private apiOptions;
13
10
  createMeeting(r: CreateZoomMeetingRequest | CreateZoomMeetingRequestInterface): Observable<CreateZoomMeetingResponse>;
14
11
  static ɵfac: i0.ɵɵFactoryDeclaration<ZoomApiService, never>;
@@ -0,0 +1,13 @@
1
+ import { ConversationAnalysisApiService, RawTranscriptInterface } from '../_internal';
2
+ import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export interface ConversationAnalysisServiceInterface {
5
+ createRawTranscript(rawTranscript: RawTranscriptInterface): Observable<string>;
6
+ }
7
+ export declare class ConversationAnalysisService implements ConversationAnalysisServiceInterface {
8
+ private conversationAnalysisApiService;
9
+ constructor(conversationAnalysisApiService: ConversationAnalysisApiService);
10
+ createRawTranscript(rawTranscript: RawTranscriptInterface): Observable<string>;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConversationAnalysisService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<ConversationAnalysisService>;
13
+ }
package/lib/index.d.ts CHANGED
@@ -2,6 +2,7 @@ export { MeetingsSDK, MeetingsService } from './meetings.service';
2
2
  export { BookedMeetingInfo, BookMeetingResponse, GuestServiceInterface } from './guest';
3
3
  export { GuestService } from './guest/guest.service';
4
4
  export { HostService } from './host/host.service';
5
+ export { ConversationAnalysisServiceInterface, ConversationAnalysisService } from './conversation_analysis/conversation-analysis.service';
5
6
  export { addMetadataToBookingLink } from './host/url';
6
7
  export { MeetingSource, MeetingSourceStatus, DayOfWeek, FormFieldType, CalendarType } from './_internal/enums/index';
7
8
  export { MeetingSourceQuery, MeetingSourceInfo, MeetingSourceListResponse, Contact, WeekdayAvailability, CreateCalendarRequest, CreateCalendarResponse, } from './_internal/objects/index';
@@ -1,5 +1,5 @@
1
1
  import { Calendar as APICalendar } from '../_internal';
2
- export declare type Calendar = Omit<APICalendar, 'toApiJson'>;
2
+ export type Calendar = Omit<APICalendar, 'toApiJson'>;
3
3
  export declare function CalendarFromApi(calendarAPI: APICalendar): Calendar;
4
4
  export declare enum KnownCalendarApplicationContextKeys {
5
5
  ExternalIntegration = "external_integration",
@@ -11,7 +11,7 @@ export interface PartnerCenterApplicationContextProperties {
11
11
  partner_id: string;
12
12
  user_context: 'PARTNER';
13
13
  }
14
- export declare type ApplicationContextPropertiesSet = BusinessCenterApplicationContextProperties | SalesCenterApplicationContextProperties | PartnerCenterApplicationContextProperties;
14
+ export type ApplicationContextPropertiesSet = BusinessCenterApplicationContextProperties | SalesCenterApplicationContextProperties | PartnerCenterApplicationContextProperties;
15
15
  export declare function newBusinessCenterApplicationContextProperties(req: {
16
16
  business_id: string;
17
17
  }): ApplicationContextPropertiesSet;
@@ -1,5 +1,5 @@
1
1
  import { HostUserInterface } from '../_internal';
2
- export declare type HostUser = Required<HostUserInterface>;
2
+ export type HostUser = Required<HostUserInterface>;
3
3
  export declare function hostUserFromApi(hostUser: HostUserInterface): {
4
4
  userId: string;
5
5
  displayName: string;
@@ -16,8 +16,8 @@ export interface MeetingType {
16
16
  bookingUrl: string;
17
17
  form: MeetingTypeForm;
18
18
  }
19
- export declare type MeetingTypeFormField = Required<FieldInterface>;
20
- export declare type MeetingTypeForm = Required<Omit<FormInterface, 'fields'>> & {
19
+ export type MeetingTypeFormField = Required<FieldInterface>;
20
+ export type MeetingTypeForm = Required<Omit<FormInterface, 'fields'>> & {
21
21
  fields: MeetingTypeFormField[];
22
22
  };
23
23
  export declare function MeetingTypeFromApi(req: {
@@ -8,8 +8,8 @@ export interface Attendee {
8
8
  timeZone?: string;
9
9
  isPrimary: boolean;
10
10
  }
11
- export declare type MeetingFormAnswer = Required<AnswerInterface>;
12
- export declare type MeetingForm = Required<Omit<AnswersInterface, 'formAnswers'>> & {
11
+ export type MeetingFormAnswer = Required<AnswerInterface>;
12
+ export type MeetingForm = Required<Omit<AnswersInterface, 'formAnswers'>> & {
13
13
  formAnswers: MeetingFormAnswer[];
14
14
  };
15
15
  export declare enum WellKnownMeetingMetadataKeys {
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@vendasta/meetings",
3
- "version": "0.74.0",
3
+ "version": "0.76.0",
4
4
  "peerDependencies": {
5
- "@angular/common": "^13.0.0",
6
- "@angular/core": "^13.0.0"
5
+ "@angular/common": "^15.1.0",
6
+ "@angular/core": "^15.1.0"
7
7
  },
8
8
  "author": "Vendasta R&D",
9
9
  "description": "SDK to interact with the meetings service",
10
- "typings": "vendasta-meetings.d.ts",
10
+ "typings": "index.d.ts",
11
11
  "license": "ISC",
12
12
  "main": "index.js",
13
13
  "module": "fesm2015/vendasta-meetings.mjs",
@@ -20,7 +20,7 @@
20
20
  "default": "./package.json"
21
21
  },
22
22
  ".": {
23
- "types": "./vendasta-meetings.d.ts",
23
+ "types": "./index.d.ts",
24
24
  "esm2020": "./esm2020/vendasta-meetings.mjs",
25
25
  "es2020": "./fesm2020/vendasta-meetings.mjs",
26
26
  "es2015": "./fesm2015/vendasta-meetings.mjs",
@@ -1,7 +0,0 @@
1
- export function enumStringToValue(enumRef, value) {
2
- if (typeof value === 'number') {
3
- return value;
4
- }
5
- return enumRef[value];
6
- }
7
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF5b2Z3ZWVrLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbWVldGluZ3Nfc2RrL3NyYy9saWIvX2ludGVybmFsL29iamVjdHMvZGF5b2Z3ZWVrLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQVVBLE1BQU0sVUFBVSxpQkFBaUIsQ0FBSSxPQUFZLEVBQUUsS0FBYTtJQUM5RCxJQUFJLE9BQU8sS0FBSyxLQUFLLFFBQVEsRUFBRTtRQUM3QixPQUFPLEtBQUssQ0FBQztLQUNkO0lBQ0QsT0FBTyxPQUFPLENBQUMsS0FBSyxDQUFDLENBQUM7QUFDeEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8vICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuLy8gQ29kZSBnZW5lcmF0ZWQgYnkgc2RrZ2VuXG4vLyBETyBOT1QgRURJVCEuXG4vL1xuLy8gT2JqZWN0cy5cbi8vICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuaW1wb3J0ICogYXMgaSBmcm9tICcuLi9pbnRlcmZhY2VzJztcblxuaW1wb3J0ICogYXMgZSBmcm9tICcuLi9lbnVtcyc7XG5cbmV4cG9ydCBmdW5jdGlvbiBlbnVtU3RyaW5nVG9WYWx1ZTxFPihlbnVtUmVmOiBhbnksIHZhbHVlOiBzdHJpbmcpOiBFIHtcbiAgaWYgKHR5cGVvZiB2YWx1ZSA9PT0gJ251bWJlcicpIHtcbiAgICByZXR1cm4gdmFsdWU7XG4gIH1cbiAgcmV0dXJuIGVudW1SZWZbdmFsdWVdO1xufVxuXG4iXX0=
@@ -1 +0,0 @@
1
- export declare function enumStringToValue<E>(enumRef: any, value: string): E;
package/src/README.md DELETED
@@ -1,12 +0,0 @@
1
- # meetings SDK
2
-
3
- ## Supported APIs
4
-
5
- ### Provider MeetingSourceAPIApiService
6
-
7
- * `list` - check connected status
8
-
9
- ### Provider ZoomApiService
10
-
11
- * `createMeeting` - allows you to create a meeting
12
-
File without changes