@pexip-engage-public/graphql 1.0.64 → 1.0.65-canary-20250311160309
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/dist/graphql-env.d.ts +60 -81
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +71 -94
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +10 -11
- package/dist/schema.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/graphql-env.ts +71 -94
- package/src/schema.ts +11 -16
package/dist/schema.d.ts
CHANGED
|
@@ -87,7 +87,6 @@ export type AgentPrioritizationEnabledEnterpriseSetting = {
|
|
|
87
87
|
/** Whether ranking should be applied when offering employees for scheduling. */
|
|
88
88
|
value: Scalars['Boolean']['output'];
|
|
89
89
|
};
|
|
90
|
-
export type AggregatedAvailabilityInsightsInterval = 'DAY' | 'MONTH' | 'WEEK';
|
|
91
90
|
export type AllowedExternalCalendarAccountProvidersEnterpriseSetting = {
|
|
92
91
|
createdAt: Scalars['ISO8601']['output'];
|
|
93
92
|
/** Indicates if the enterprise setting can be managed by an administrator of the enterprise. Non-manageable settings can only be modified by Pexip Engage Support. */
|
|
@@ -285,6 +284,7 @@ export type AppointmentCreateInput = {
|
|
|
285
284
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
286
285
|
fileIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
287
286
|
hybrid?: InputMaybe<Scalars['Boolean']['input']>;
|
|
287
|
+
ignoreCoverageRegions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
288
288
|
internalNotes?: InputMaybe<Scalars['String']['input']>;
|
|
289
289
|
leadSegmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
290
290
|
listingId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -339,6 +339,7 @@ export type AppointmentInviteInput = {
|
|
|
339
339
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
340
340
|
fileIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
341
341
|
hybrid?: InputMaybe<Scalars['Boolean']['input']>;
|
|
342
|
+
ignoreCoverageRegions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
342
343
|
internalNotes?: InputMaybe<Scalars['String']['input']>;
|
|
343
344
|
leadSegmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
344
345
|
listingId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -3310,7 +3311,6 @@ export type PutAppointmentAnswersInput = {
|
|
|
3310
3311
|
};
|
|
3311
3312
|
export type Query = {
|
|
3312
3313
|
activeMeetingTypes: Array<MeetingType>;
|
|
3313
|
-
aggregatedAvailabilityInsights: Array<DailyAvailabilityInsight>;
|
|
3314
3314
|
answerOption: AnswerOption;
|
|
3315
3315
|
apiClients: Array<ApiClient>;
|
|
3316
3316
|
appliedTemplates: AppliedTemplateConnection;
|
|
@@ -3418,14 +3418,6 @@ export type Query = {
|
|
|
3418
3418
|
webhookDeliveries: WebhookDeliveryConnection;
|
|
3419
3419
|
webhookDelivery: WebhookDelivery;
|
|
3420
3420
|
};
|
|
3421
|
-
export type QueryAggregatedAvailabilityInsightsArgs = {
|
|
3422
|
-
employeeId?: InputMaybe<Scalars['ID']['input']>;
|
|
3423
|
-
from: Scalars['ISO8601']['input'];
|
|
3424
|
-
interval: AggregatedAvailabilityInsightsInterval;
|
|
3425
|
-
officeId: Scalars['ID']['input'];
|
|
3426
|
-
timeZone: Scalars['String']['input'];
|
|
3427
|
-
to: Scalars['ISO8601']['input'];
|
|
3428
|
-
};
|
|
3429
3421
|
export type QueryAnswerOptionArgs = {
|
|
3430
3422
|
id: Scalars['ID']['input'];
|
|
3431
3423
|
};
|
|
@@ -3927,6 +3919,7 @@ export type QuerySchedulableEmployeesArgs = {
|
|
|
3927
3919
|
employeeExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3928
3920
|
employeeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3929
3921
|
employeeLanguages?: InputMaybe<Array<Language>>;
|
|
3922
|
+
ignoreCoverageRegions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3930
3923
|
leadSegmentCode?: InputMaybe<Scalars['String']['input']>;
|
|
3931
3924
|
leadSegmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
3932
3925
|
listingExternalId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3947,6 +3940,7 @@ export type QuerySchedulableMeetingRoomsArgs = {
|
|
|
3947
3940
|
employeeExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3948
3941
|
employeeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3949
3942
|
employeeLanguages?: InputMaybe<Array<Language>>;
|
|
3943
|
+
ignoreCoverageRegions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3950
3944
|
leadSegmentCode?: InputMaybe<Scalars['String']['input']>;
|
|
3951
3945
|
leadSegmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
3952
3946
|
listingExternalId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3967,6 +3961,7 @@ export type QuerySchedulableMeetingTypesArgs = {
|
|
|
3967
3961
|
employeeExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3968
3962
|
employeeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3969
3963
|
employeeLanguages?: InputMaybe<Array<Language>>;
|
|
3964
|
+
ignoreCoverageRegions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3970
3965
|
leadSegmentCode?: InputMaybe<Scalars['String']['input']>;
|
|
3971
3966
|
leadSegmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
3972
3967
|
listingExternalId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3987,6 +3982,7 @@ export type QuerySchedulableOfficesArgs = {
|
|
|
3987
3982
|
employeeExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3988
3983
|
employeeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3989
3984
|
employeeLanguages?: InputMaybe<Array<Language>>;
|
|
3985
|
+
ignoreCoverageRegions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3990
3986
|
leadSegmentCode?: InputMaybe<Scalars['String']['input']>;
|
|
3991
3987
|
leadSegmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
3992
3988
|
listingExternalId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4007,6 +4003,7 @@ export type QuerySchedulableSubjectsArgs = {
|
|
|
4007
4003
|
employeeExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4008
4004
|
employeeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4009
4005
|
employeeLanguages?: InputMaybe<Array<Language>>;
|
|
4006
|
+
ignoreCoverageRegions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4010
4007
|
leadSegmentCode?: InputMaybe<Scalars['String']['input']>;
|
|
4011
4008
|
leadSegmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
4012
4009
|
listingExternalId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4092,6 +4089,7 @@ export type QueryTimetableArgs = {
|
|
|
4092
4089
|
employeeId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4093
4090
|
employeeLanguages?: InputMaybe<Array<Language>>;
|
|
4094
4091
|
from: Scalars['ISO8601']['input'];
|
|
4092
|
+
ignoreCoverageRegions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4095
4093
|
leadSegmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
4096
4094
|
listingId?: InputMaybe<Scalars['ID']['input']>;
|
|
4097
4095
|
location?: InputMaybe<GeolocationInput>;
|
|
@@ -4117,6 +4115,7 @@ export type QueryValidateTimetableSlotArgs = {
|
|
|
4117
4115
|
employeeId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4118
4116
|
employeeLanguages?: InputMaybe<Array<Language>>;
|
|
4119
4117
|
from: Scalars['ISO8601']['input'];
|
|
4118
|
+
ignoreCoverageRegions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4120
4119
|
leadSegmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
4121
4120
|
listingId?: InputMaybe<Scalars['ID']['input']>;
|
|
4122
4121
|
location?: InputMaybe<GeolocationInput>;
|
|
@@ -4813,7 +4812,7 @@ export type TranslationObjectInput = {
|
|
|
4813
4812
|
language: Language;
|
|
4814
4813
|
value: Scalars['String']['input'];
|
|
4815
4814
|
};
|
|
4816
|
-
export type UiFeature = 'APPOINTMENT_COMPLETION' | 'APPOINTMENT_CREATION' | 'APPOINTMENT_CREATION_MESSAGE_FOR_CUSTOMER' | 'APPOINTMENT_CUSTOMER_SELECTION' | 'APPOINTMENT_SUBJECT_SELECTION' | 'CUSTOMER_CREATION' | 'CUSTOMER_DETAILS' | 'CUSTOMER_OVERVIEW' | 'DEFAULT_AVAILABILITY_SETTINGS_OVERRIDE' | 'DEFINED_AVAILABILITY_SYNCHRONIZATION' | 'FORMS' | 'INDEPENDENT_AGENTS' | 'INVITE_CREATION' | 'LEAD_SEGMENTS' | 'LISTINGS' | 'MEETING_LINK_CREATION' | 'MULTI_PARTICIPANTS' | 'MY_APPOINTMENTS' | 'MY_APPOINTMENT_HOURS' | 'MY_AUTHENTICATION' | 'MY_PROFILE' | 'MY_SYNCHRONIZED_CALENDARS' | 'RESCHEDULE_REQUEST' | 'TEAM_APPOINTMENTS_OVERVIEW' | 'TEAM_APPOINTMENT_INSIGHTS' | 'TEAM_COVERAGE_REGIONS_ON_LOCATION' | 'TEAM_COVERAGE_REGIONS_PHONE' | 'TEAM_COVERAGE_REGIONS_VIDEO' | 'TEAM_MEMBERS_OVERVIEW' | 'TEAM_MEMBER_APPOINTMENT_HOURS' | 'TEAM_MEMBER_EXPERTISE' | 'TEAM_MEMBER_PROFILE' | 'TEAM_MEMBER_REMOVAL' | 'TEAM_MEMBER_SYNCHRONIZED_CALENDARS' | 'TEAM_OFFICE_DETAILS' | 'TEAM_OFFICE_EXPERTISE' | 'TEAM_OFFICE_PLANNING_RULES' | 'VIRTUAL_OFFICES';
|
|
4815
|
+
export type UiFeature = 'APPOINTMENT_COMPLETION' | 'APPOINTMENT_CREATION' | 'APPOINTMENT_CREATION_MESSAGE_FOR_CUSTOMER' | 'APPOINTMENT_CUSTOMER_SELECTION' | 'APPOINTMENT_ONLY_SCHEDULABLE_TOGGLE' | 'APPOINTMENT_SCHEDULING' | 'APPOINTMENT_SUBJECT_SELECTION' | 'CUSTOMER_CREATION' | 'CUSTOMER_DETAILS' | 'CUSTOMER_OVERVIEW' | 'DEFAULT_AVAILABILITY_SETTINGS_OVERRIDE' | 'DEFINED_AVAILABILITY_SYNCHRONIZATION' | 'FORMS' | 'INDEPENDENT_AGENTS' | 'INVITE_CREATION' | 'LEAD_SEGMENTS' | 'LISTINGS' | 'MEETING_LINK_CREATION' | 'MULTI_PARTICIPANTS' | 'MY_APPOINTMENTS' | 'MY_APPOINTMENT_HOURS' | 'MY_AUTHENTICATION' | 'MY_PROFILE' | 'MY_SYNCHRONIZED_CALENDARS' | 'RESCHEDULE_REQUEST' | 'TEAM_APPOINTMENTS_OVERVIEW' | 'TEAM_APPOINTMENT_INSIGHTS' | 'TEAM_COVERAGE_REGIONS_ON_LOCATION' | 'TEAM_COVERAGE_REGIONS_PHONE' | 'TEAM_COVERAGE_REGIONS_VIDEO' | 'TEAM_MEMBERS_OVERVIEW' | 'TEAM_MEMBER_APPOINTMENT_HOURS' | 'TEAM_MEMBER_EXPERTISE' | 'TEAM_MEMBER_PROFILE' | 'TEAM_MEMBER_REMOVAL' | 'TEAM_MEMBER_SYNCHRONIZED_CALENDARS' | 'TEAM_OFFICE_DETAILS' | 'TEAM_OFFICE_EXPERTISE' | 'TEAM_OFFICE_PLANNING_RULES' | 'VIRTUAL_OFFICES';
|
|
4817
4816
|
export type UiFeatureToggleEnterpriseSettingInput = {
|
|
4818
4817
|
enabled: Scalars['Boolean']['input'];
|
|
4819
4818
|
feature: UiFeature;
|