@pexip-engage-public/graphql 1.2.1 → 1.3.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.
- package/CHANGELOG.md +16 -0
- package/dist/graphql-env.d.ts +464 -0
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +536 -0
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +69 -1
- package/dist/schema.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/graphql-env.ts +536 -0
- package/src/schema.ts +105 -0
package/src/schema.ts
CHANGED
|
@@ -306,6 +306,20 @@ export type AppointmentCancelInput = {
|
|
|
306
306
|
userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
|
|
307
307
|
};
|
|
308
308
|
|
|
309
|
+
export type AppointmentChartFilters = {
|
|
310
|
+
appointmentStatus?: InputMaybe<Array<AppointmentStatus>>;
|
|
311
|
+
createdByType?: InputMaybe<Array<UserType>>;
|
|
312
|
+
createdFrom?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
313
|
+
createdTo?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
314
|
+
employeeId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
315
|
+
from?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
316
|
+
meetingType?: InputMaybe<Array<MeetingType>>;
|
|
317
|
+
officeId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
318
|
+
subjectGroupId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
319
|
+
subjectId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
320
|
+
to?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
321
|
+
};
|
|
322
|
+
|
|
309
323
|
export type AppointmentCompleteInput = {
|
|
310
324
|
answers?: InputMaybe<Array<AppointmentAnswerInput>>;
|
|
311
325
|
end?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
@@ -452,6 +466,7 @@ export type AppointmentLatestPossibleEnterpriseSetting = {
|
|
|
452
466
|
|
|
453
467
|
export type AppointmentParticipant = {
|
|
454
468
|
appointment: Appointment;
|
|
469
|
+
appointmentId: Scalars['ID']['output'];
|
|
455
470
|
cancelUrl: Scalars['String']['output'];
|
|
456
471
|
declineUrl: Scalars['String']['output'];
|
|
457
472
|
destinationVideoUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -950,6 +965,31 @@ export type CallbackRequestsEnabledEnterpriseSetting = {
|
|
|
950
965
|
value: Scalars['Boolean']['output'];
|
|
951
966
|
};
|
|
952
967
|
|
|
968
|
+
export type Chart = {
|
|
969
|
+
chartConfig: Scalars['JSONObject']['output'];
|
|
970
|
+
chartData: Array<ChartDataItem>;
|
|
971
|
+
};
|
|
972
|
+
|
|
973
|
+
export type ChartConfigGroupByDatePart =
|
|
974
|
+
| 'DAY'
|
|
975
|
+
| 'DAY_OF_WEEK_NUMBER'
|
|
976
|
+
| 'HOUR_NUMBER'
|
|
977
|
+
| 'MONTH'
|
|
978
|
+
| 'MONTH_NUMBER'
|
|
979
|
+
| 'QUARTER_NUMBER'
|
|
980
|
+
| 'WEEK'
|
|
981
|
+
| 'WEEK_NUMBER'
|
|
982
|
+
| 'YEAR';
|
|
983
|
+
|
|
984
|
+
export type ChartConfigWeekStartsOn =
|
|
985
|
+
| 'MONDAY'
|
|
986
|
+
| 'SUNDAY';
|
|
987
|
+
|
|
988
|
+
export type ChartDataItem = {
|
|
989
|
+
count: Scalars['Int']['output'];
|
|
990
|
+
id: Scalars['String']['output'];
|
|
991
|
+
};
|
|
992
|
+
|
|
953
993
|
export type Communication = {
|
|
954
994
|
channel: CommunicationChannel;
|
|
955
995
|
communicationReceiver: CommunicationReceiver;
|
|
@@ -4496,7 +4536,17 @@ export type Query = {
|
|
|
4496
4536
|
appliedTemplates: AppliedTemplateConnection;
|
|
4497
4537
|
appointment: Appointment;
|
|
4498
4538
|
appointmentCommunications: Array<Communication>;
|
|
4539
|
+
appointmentCountByCreatedAtChart: Chart;
|
|
4540
|
+
appointmentCountByStartChart: Chart;
|
|
4541
|
+
appointmentCountChart: Chart;
|
|
4542
|
+
appointmentCreatedByTypeChart: Chart;
|
|
4543
|
+
appointmentCustomerCountChart: Chart;
|
|
4544
|
+
appointmentMeetingTypeChart: Chart;
|
|
4545
|
+
appointmentOfficeChart: Chart;
|
|
4499
4546
|
appointmentParticipant: AppointmentParticipant;
|
|
4547
|
+
appointmentStatusChart: Chart;
|
|
4548
|
+
appointmentSubjectChart: Chart;
|
|
4549
|
+
appointmentSubjectGroupChart: Chart;
|
|
4500
4550
|
appointmentUnavailabilityForEmployee: Array<Unavailability>;
|
|
4501
4551
|
appointments: AppointmentConnection;
|
|
4502
4552
|
auditLogs: AuditLogConnection;
|
|
@@ -4685,11 +4735,65 @@ export type QueryAppointmentCommunicationsArgs = {
|
|
|
4685
4735
|
};
|
|
4686
4736
|
|
|
4687
4737
|
|
|
4738
|
+
export type QueryAppointmentCountByCreatedAtChartArgs = {
|
|
4739
|
+
filters: AppointmentChartFilters;
|
|
4740
|
+
interval: ChartConfigGroupByDatePart;
|
|
4741
|
+
weekStartsOn: ChartConfigWeekStartsOn;
|
|
4742
|
+
};
|
|
4743
|
+
|
|
4744
|
+
|
|
4745
|
+
export type QueryAppointmentCountByStartChartArgs = {
|
|
4746
|
+
filters: AppointmentChartFilters;
|
|
4747
|
+
interval: ChartConfigGroupByDatePart;
|
|
4748
|
+
weekStartsOn: ChartConfigWeekStartsOn;
|
|
4749
|
+
};
|
|
4750
|
+
|
|
4751
|
+
|
|
4752
|
+
export type QueryAppointmentCountChartArgs = {
|
|
4753
|
+
filters: AppointmentChartFilters;
|
|
4754
|
+
};
|
|
4755
|
+
|
|
4756
|
+
|
|
4757
|
+
export type QueryAppointmentCreatedByTypeChartArgs = {
|
|
4758
|
+
filters: AppointmentChartFilters;
|
|
4759
|
+
};
|
|
4760
|
+
|
|
4761
|
+
|
|
4762
|
+
export type QueryAppointmentCustomerCountChartArgs = {
|
|
4763
|
+
filters: AppointmentChartFilters;
|
|
4764
|
+
};
|
|
4765
|
+
|
|
4766
|
+
|
|
4767
|
+
export type QueryAppointmentMeetingTypeChartArgs = {
|
|
4768
|
+
filters: AppointmentChartFilters;
|
|
4769
|
+
};
|
|
4770
|
+
|
|
4771
|
+
|
|
4772
|
+
export type QueryAppointmentOfficeChartArgs = {
|
|
4773
|
+
filters: AppointmentChartFilters;
|
|
4774
|
+
};
|
|
4775
|
+
|
|
4776
|
+
|
|
4688
4777
|
export type QueryAppointmentParticipantArgs = {
|
|
4689
4778
|
token: Scalars['String']['input'];
|
|
4690
4779
|
};
|
|
4691
4780
|
|
|
4692
4781
|
|
|
4782
|
+
export type QueryAppointmentStatusChartArgs = {
|
|
4783
|
+
filters: AppointmentChartFilters;
|
|
4784
|
+
};
|
|
4785
|
+
|
|
4786
|
+
|
|
4787
|
+
export type QueryAppointmentSubjectChartArgs = {
|
|
4788
|
+
filters: AppointmentChartFilters;
|
|
4789
|
+
};
|
|
4790
|
+
|
|
4791
|
+
|
|
4792
|
+
export type QueryAppointmentSubjectGroupChartArgs = {
|
|
4793
|
+
filters: AppointmentChartFilters;
|
|
4794
|
+
};
|
|
4795
|
+
|
|
4796
|
+
|
|
4693
4797
|
export type QueryAppointmentUnavailabilityForEmployeeArgs = {
|
|
4694
4798
|
employeeId: Scalars['ID']['input'];
|
|
4695
4799
|
excludeAppointmentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -6850,6 +6954,7 @@ export type ValidatorTranslationsPatchInput = {
|
|
|
6850
6954
|
export type VideoProvider =
|
|
6851
6955
|
| 'EXTERNAL_PROVIDER_ACCOUNT'
|
|
6852
6956
|
| 'MICROSOFT_TEAMS_APPLICATION_AUTH'
|
|
6957
|
+
| 'NONE'
|
|
6853
6958
|
| 'PEXIP'
|
|
6854
6959
|
| 'PEXIP_INFINITY'
|
|
6855
6960
|
| 'STATIC'
|