@pexip-engage-public/graphql 1.1.5 → 1.1.6
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 +6 -0
- package/dist/graphql-env.d.ts +92 -83
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +107 -95
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +15 -18
- package/dist/schema.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/graphql-env.ts +107 -95
- package/src/schema.ts +22 -19
package/dist/schema.d.ts
CHANGED
|
@@ -354,14 +354,6 @@ export type AppointmentCreateInput = {
|
|
|
354
354
|
trailingBufferTime?: InputMaybe<Scalars['Int']['input']>;
|
|
355
355
|
userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
|
|
356
356
|
};
|
|
357
|
-
export type AppointmentCrossOfficeParticipantSelectionEnabledEnterpriseSetting = {
|
|
358
|
-
createdAt: Scalars['ISO8601']['output'];
|
|
359
|
-
/** 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. */
|
|
360
|
-
manageable: Scalars['Boolean']['output'];
|
|
361
|
-
updatedAt: Scalars['ISO8601']['output'];
|
|
362
|
-
/** Whether reassigning appointments to another office is allowed. */
|
|
363
|
-
value: Scalars['Boolean']['output'];
|
|
364
|
-
};
|
|
365
357
|
export type AppointmentDefaultEstimatedDurationEnterpriseSetting = {
|
|
366
358
|
createdAt: Scalars['ISO8601']['output'];
|
|
367
359
|
/** 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. */
|
|
@@ -1336,8 +1328,6 @@ export type EnterpriseSettings = {
|
|
|
1336
1328
|
appointmentAutoAccept: AppointmentAutoAcceptEnterpriseSetting;
|
|
1337
1329
|
/** The number of days before its start from when an appointment can be completed. */
|
|
1338
1330
|
appointmentCompletionAllowedDaysBeforeStart: AppointmentCompletionAllowedDaysBeforeStartEnterpriseSetting;
|
|
1339
|
-
/** Whether reassigning appointments to another office is allowed. */
|
|
1340
|
-
appointmentCrossOfficeParticipantSelectionEnabled: AppointmentCrossOfficeParticipantSelectionEnabledEnterpriseSetting;
|
|
1341
1331
|
/** The default appointment duration. */
|
|
1342
1332
|
appointmentDefaultEstimatedDuration: AppointmentDefaultEstimatedDurationEnterpriseSetting;
|
|
1343
1333
|
/** The earliest possible time from now an appointment can be booked. */
|
|
@@ -1450,8 +1440,6 @@ export type EnterpriseSettingsPatchInput = {
|
|
|
1450
1440
|
appointmentAutoAccept?: InputMaybe<AppointmentAutoAcceptInput>;
|
|
1451
1441
|
/** The number of days before its start from when an appointment can be completed. */
|
|
1452
1442
|
appointmentCompletionAllowedDaysBeforeStart?: InputMaybe<AppointmentCompletionAllowedDaysBeforeStartInput>;
|
|
1453
|
-
/** Whether reassigning appointments to another office is allowed. */
|
|
1454
|
-
appointmentCrossOfficeParticipantSelectionEnabled?: InputMaybe<AppointmentCrossOfficeParticipantSelectionEnabledInput>;
|
|
1455
1443
|
/** The default appointment duration. */
|
|
1456
1444
|
appointmentDefaultEstimatedDuration?: InputMaybe<AppointmentDefaultEstimatedDurationInput>;
|
|
1457
1445
|
/** The earliest possible time from now an appointment can be booked. */
|
|
@@ -2510,6 +2498,7 @@ export type Mutation = {
|
|
|
2510
2498
|
* that user will be reverted (as if you called revertUnavailability first, see its description).
|
|
2511
2499
|
*/
|
|
2512
2500
|
createUnavailability: Unavailability;
|
|
2501
|
+
createUnavailabilityEvent: Unavailability;
|
|
2513
2502
|
createUploadFileLink: FileCreateUploadLinkResult;
|
|
2514
2503
|
createVPaaSMeeting: PexipVPaaSParticipant;
|
|
2515
2504
|
createWebhookConfiguration: WebhookConfiguration;
|
|
@@ -2537,6 +2526,7 @@ export type Mutation = {
|
|
|
2537
2526
|
deleteSubject: Subject;
|
|
2538
2527
|
deleteSubjectGroup: SubjectGroup;
|
|
2539
2528
|
deleteUnavailability: Unavailability;
|
|
2529
|
+
deleteUnavailabilityEvent: Unavailability;
|
|
2540
2530
|
deleteWebhookConfiguration: WebhookConfiguration;
|
|
2541
2531
|
deleteWebhookConfigurationHeaders: Array<WebhookConfigurationHeader>;
|
|
2542
2532
|
disconnectExternalCalendarAccount: ExternalCalendarAccount;
|
|
@@ -2803,6 +2793,9 @@ export type MutationCreateUnavailabilityArgs = {
|
|
|
2803
2793
|
input: UnavailabilityCreateInput;
|
|
2804
2794
|
revertOverlap?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2805
2795
|
};
|
|
2796
|
+
export type MutationCreateUnavailabilityEventArgs = {
|
|
2797
|
+
input: UnavailabilityEventCreateInput;
|
|
2798
|
+
};
|
|
2806
2799
|
export type MutationCreateUploadFileLinkArgs = {
|
|
2807
2800
|
input: FileCreateUploadLinkInput;
|
|
2808
2801
|
};
|
|
@@ -2881,6 +2874,9 @@ export type MutationDeleteSubjectGroupArgs = {
|
|
|
2881
2874
|
export type MutationDeleteUnavailabilityArgs = {
|
|
2882
2875
|
id: Scalars['ID']['input'];
|
|
2883
2876
|
};
|
|
2877
|
+
export type MutationDeleteUnavailabilityEventArgs = {
|
|
2878
|
+
id: Scalars['ID']['input'];
|
|
2879
|
+
};
|
|
2884
2880
|
export type MutationDeleteWebhookConfigurationArgs = {
|
|
2885
2881
|
id: Scalars['ID']['input'];
|
|
2886
2882
|
};
|
|
@@ -5110,7 +5106,7 @@ export type TranslationObjectInput = {
|
|
|
5110
5106
|
language: Language;
|
|
5111
5107
|
value: Scalars['String']['input'];
|
|
5112
5108
|
};
|
|
5113
|
-
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';
|
|
5109
|
+
export type UiFeature = 'APPOINTMENT_COMPLETION' | 'APPOINTMENT_CREATION' | 'APPOINTMENT_CREATION_MESSAGE_FOR_CUSTOMER' | 'APPOINTMENT_CROSS_OFFICE_EMPLOYEE_SELECTION_ENABLED' | 'APPOINTMENT_CUSTOMER_SELECTION' | 'APPOINTMENT_ONLY_SCHEDULABLE_TOGGLE' | 'APPOINTMENT_PAST_EDITING_ENABLED' | 'APPOINTMENT_SCHEDULING' | 'APPOINTMENT_SUBJECT_SELECTION' | 'CALENDAR_UNAVAILABILITY_EVENTS' | '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';
|
|
5114
5110
|
export type UiFeatureToggleEnterpriseSettingInput = {
|
|
5115
5111
|
enabled: Scalars['Boolean']['input'];
|
|
5116
5112
|
feature: UiFeature;
|
|
@@ -5128,6 +5124,7 @@ export type UiFeatureTogglesEnterpriseSetting = {
|
|
|
5128
5124
|
value: Array<UiFeatureToggleEnterpriseSettingValue>;
|
|
5129
5125
|
};
|
|
5130
5126
|
export type Unavailability = {
|
|
5127
|
+
allDay: Scalars['Boolean']['output'];
|
|
5131
5128
|
createdAt: Scalars['ISO8601']['output'];
|
|
5132
5129
|
employee: Employee;
|
|
5133
5130
|
/** End time of unavailability. */
|
|
@@ -5159,6 +5156,11 @@ export type UnavailabilityEdge = {
|
|
|
5159
5156
|
cursor: Scalars['String']['output'];
|
|
5160
5157
|
node: Unavailability;
|
|
5161
5158
|
};
|
|
5159
|
+
export type UnavailabilityEventCreateInput = {
|
|
5160
|
+
employeeId: Scalars['ID']['input'];
|
|
5161
|
+
end: Scalars['ISO8601']['input'];
|
|
5162
|
+
start: Scalars['ISO8601']['input'];
|
|
5163
|
+
};
|
|
5162
5164
|
export type UnavailabilityRevertInput = {
|
|
5163
5165
|
employeeId: Scalars['ID']['input'];
|
|
5164
5166
|
/** Is inclusive. */
|
|
@@ -5345,11 +5347,6 @@ export type AppointmentCompletionAllowedDaysBeforeStartInput = {
|
|
|
5345
5347
|
/** The number of days before its start from when an appointment can be completed. */
|
|
5346
5348
|
value?: InputMaybe<Scalars['Int']['input']>;
|
|
5347
5349
|
};
|
|
5348
|
-
export type AppointmentCrossOfficeParticipantSelectionEnabledInput = {
|
|
5349
|
-
manageable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5350
|
-
/** Whether reassigning appointments to another office is allowed. */
|
|
5351
|
-
value?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5352
|
-
};
|
|
5353
5350
|
export type AppointmentDefaultEstimatedDurationInput = {
|
|
5354
5351
|
manageable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5355
5352
|
/** The default appointment duration. */
|