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