@pexip-engage-public/graphql 1.1.14-canary-20251008093334 → 1.1.14
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 +1 -4
- package/dist/graphql-env.d.ts +0 -968
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +162 -1232
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +1 -110
- package/dist/schema.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/graphql-env.ts +162 -1232
- package/src/schema.ts +1 -124
package/dist/schema.d.ts
CHANGED
|
@@ -841,60 +841,6 @@ export type CommunicationSort = {
|
|
|
841
841
|
};
|
|
842
842
|
export type CommunicationStatus = 'DELIVERED' | 'DISABLED' | 'FAILED' | 'INVALID_RECEIVER' | 'NO_RECEIVER' | 'SENT' | 'UNKNOWN';
|
|
843
843
|
export type CommunicationType = 'NOTIFICATION' | 'REMINDER';
|
|
844
|
-
export type Context = {
|
|
845
|
-
createdAt: Scalars['ISO8601']['output'];
|
|
846
|
-
expiresAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
847
|
-
externalId?: Maybe<Scalars['String']['output']>;
|
|
848
|
-
id: Scalars['String']['output'];
|
|
849
|
-
lastAccessedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
850
|
-
output: ContextOutput;
|
|
851
|
-
updatedAt: Scalars['ISO8601']['output'];
|
|
852
|
-
};
|
|
853
|
-
export type ContextInput = {
|
|
854
|
-
appointmentExternalId?: InputMaybe<Scalars['String']['input']>;
|
|
855
|
-
customerExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
856
|
-
customerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
857
|
-
customers?: InputMaybe<Array<CustomerCreateInput>>;
|
|
858
|
-
employeeExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
859
|
-
employeeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
860
|
-
end?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
861
|
-
leadSegmentCodes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
862
|
-
leadSegmentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
863
|
-
listingExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
864
|
-
listingIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
865
|
-
meetingRoomIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
866
|
-
meetingTypes?: InputMaybe<Array<MeetingType>>;
|
|
867
|
-
metadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
868
|
-
officeExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
869
|
-
officeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
870
|
-
secondaryCustomerExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
871
|
-
secondaryCustomerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
872
|
-
secondaryCustomers?: InputMaybe<Array<CustomerCreateInput>>;
|
|
873
|
-
secondaryEmployeeExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
874
|
-
secondaryEmployeeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
875
|
-
start?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
876
|
-
subjectExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
877
|
-
subjectGroupExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
878
|
-
subjectGroupIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
879
|
-
subjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
880
|
-
};
|
|
881
|
-
export type ContextOutput = {
|
|
882
|
-
appointmentExternalId?: Maybe<Scalars['String']['output']>;
|
|
883
|
-
customerIds: Array<Scalars['ID']['output']>;
|
|
884
|
-
employeeIds: Array<Scalars['ID']['output']>;
|
|
885
|
-
end?: Maybe<Scalars['ISO8601']['output']>;
|
|
886
|
-
leadSegmentIds: Array<Scalars['ID']['output']>;
|
|
887
|
-
listingIds: Array<Scalars['ID']['output']>;
|
|
888
|
-
meetingRoomIds: Array<Scalars['ID']['output']>;
|
|
889
|
-
meetingTypes: Array<MeetingType>;
|
|
890
|
-
metadata?: Maybe<Scalars['JSONObject']['output']>;
|
|
891
|
-
officeIds: Array<Scalars['ID']['output']>;
|
|
892
|
-
secondaryCustomerIds: Array<Scalars['ID']['output']>;
|
|
893
|
-
secondaryEmployeeIds: Array<Scalars['ID']['output']>;
|
|
894
|
-
start?: Maybe<Scalars['ISO8601']['output']>;
|
|
895
|
-
subjectGroupIds: Array<Scalars['ID']['output']>;
|
|
896
|
-
subjectIds: Array<Scalars['ID']['output']>;
|
|
897
|
-
};
|
|
898
844
|
export type Customer = {
|
|
899
845
|
anonymizedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
900
846
|
company?: Maybe<Scalars['String']['output']>;
|
|
@@ -1131,14 +1077,6 @@ export type DefaultTimeZoneEnterpriseSetting = {
|
|
|
1131
1077
|
/** The default time zone used wherever no time zone is provided. */
|
|
1132
1078
|
value: Scalars['String']['output'];
|
|
1133
1079
|
};
|
|
1134
|
-
export type DefaultUnavailabilityFormIdEnterpriseSetting = {
|
|
1135
|
-
createdAt: Scalars['ISO8601']['output'];
|
|
1136
|
-
/** 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. */
|
|
1137
|
-
manageable: Scalars['Boolean']['output'];
|
|
1138
|
-
updatedAt: Scalars['ISO8601']['output'];
|
|
1139
|
-
/** The default form to be used when creating unavailability. */
|
|
1140
|
-
value?: Maybe<Scalars['ID']['output']>;
|
|
1141
|
-
};
|
|
1142
1080
|
export type DefinedAvailability = {
|
|
1143
1081
|
employee: Employee;
|
|
1144
1082
|
end: Scalars['ISO8601']['output'];
|
|
@@ -1444,9 +1382,6 @@ export type EnterpriseSettings = {
|
|
|
1444
1382
|
defaultTermsAndConditionsUrl: DefaultTermsAndConditionsUrlEnterpriseSetting;
|
|
1445
1383
|
/** The default time zone used wherever no time zone is provided. */
|
|
1446
1384
|
defaultTimeZone: DefaultTimeZoneEnterpriseSetting;
|
|
1447
|
-
defaultUnavailabilityForm?: Maybe<Form>;
|
|
1448
|
-
/** The default form to be used when creating unavailability. */
|
|
1449
|
-
defaultUnavailabilityFormId: DefaultUnavailabilityFormIdEnterpriseSetting;
|
|
1450
1385
|
/** The email provider used to send emails. */
|
|
1451
1386
|
emailProvider: EmailProviderEnterpriseSetting;
|
|
1452
1387
|
/** The settings used to calculate which notifications should be sent to the employee. */
|
|
@@ -1547,8 +1482,6 @@ export type EnterpriseSettingsPatchInput = {
|
|
|
1547
1482
|
defaultSubjectId?: InputMaybe<DefaultSubjectIdInput>;
|
|
1548
1483
|
/** The default time zone used wherever no time zone is provided. */
|
|
1549
1484
|
defaultTimeZone?: InputMaybe<DefaultTimeZoneInput>;
|
|
1550
|
-
/** The default form to be used when creating unavailability. */
|
|
1551
|
-
defaultUnavailabilityFormId?: InputMaybe<DefaultUnavailabilityFormIdInput>;
|
|
1552
1485
|
/** The email provider used to send emails. */
|
|
1553
1486
|
emailProvider?: InputMaybe<EmailProviderInput>;
|
|
1554
1487
|
/** The settings used to calculate which notifications should be sent to the employee. */
|
|
@@ -1878,7 +1811,7 @@ export type FormSort = {
|
|
|
1878
1811
|
direction: SortDirection;
|
|
1879
1812
|
field: SortableFormFields;
|
|
1880
1813
|
};
|
|
1881
|
-
export type FormType = 'APPOINTMENT_CANCELLATION' | 'APPOINTMENT_COMPLETION' | 'CALLBACK_REQUEST' | 'QUALIFICATION' | 'SUBJECT_QUESTIONNAIRE'
|
|
1814
|
+
export type FormType = 'APPOINTMENT_CANCELLATION' | 'APPOINTMENT_COMPLETION' | 'CALLBACK_REQUEST' | 'QUALIFICATION' | 'SUBJECT_QUESTIONNAIRE';
|
|
1882
1815
|
export type Geolocation = {
|
|
1883
1816
|
latitude: Scalars['Float']['output'];
|
|
1884
1817
|
longitude: Scalars['Float']['output'];
|
|
@@ -2536,7 +2469,6 @@ export type Mutation = {
|
|
|
2536
2469
|
createAvailabilityTimeRange: AvailabilityTimeRange;
|
|
2537
2470
|
createCallbackRequest: CallbackRequest;
|
|
2538
2471
|
createCallbackRequestConfirmedSessionEvent: Scalars['Boolean']['output'];
|
|
2539
|
-
createContext: Context;
|
|
2540
2472
|
createCustomer: Customer;
|
|
2541
2473
|
createDataSelectedSessionEvent: Scalars['Boolean']['output'];
|
|
2542
2474
|
createDataShownSessionEvent: Scalars['Boolean']['output'];
|
|
@@ -2704,7 +2636,6 @@ export type Mutation = {
|
|
|
2704
2636
|
* - The mutation returns the deleted original unavailability
|
|
2705
2637
|
*/
|
|
2706
2638
|
revertUnavailability: Array<Unavailability>;
|
|
2707
|
-
scheduleAppointment: Appointment;
|
|
2708
2639
|
syncFutureEventsToExternalCalendar: Scalars['Boolean']['output'];
|
|
2709
2640
|
syncMeetingRooms: Scalars['Boolean']['output'];
|
|
2710
2641
|
syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
|
|
@@ -2766,9 +2697,6 @@ export type MutationCreateCallbackRequestArgs = {
|
|
|
2766
2697
|
export type MutationCreateCallbackRequestConfirmedSessionEventArgs = {
|
|
2767
2698
|
input: CallbackRequestConfirmedSessionEvent;
|
|
2768
2699
|
};
|
|
2769
|
-
export type MutationCreateContextArgs = {
|
|
2770
|
-
input: ContextInput;
|
|
2771
|
-
};
|
|
2772
2700
|
export type MutationCreateCustomerArgs = {
|
|
2773
2701
|
customerCreateInput: CustomerCreateInput;
|
|
2774
2702
|
};
|
|
@@ -3295,9 +3223,6 @@ export type MutationRevertAppliedTemplatesArgs = {
|
|
|
3295
3223
|
export type MutationRevertUnavailabilityArgs = {
|
|
3296
3224
|
input: UnavailabilityRevertInput;
|
|
3297
3225
|
};
|
|
3298
|
-
export type MutationScheduleAppointmentArgs = {
|
|
3299
|
-
appointmentCreateInput: AppointmentCreateInput;
|
|
3300
|
-
};
|
|
3301
3226
|
export type MutationSyncFutureEventsToExternalCalendarArgs = {
|
|
3302
3227
|
externalCalendarId: Scalars['ID']['input'];
|
|
3303
3228
|
};
|
|
@@ -3576,7 +3501,6 @@ export type Query = {
|
|
|
3576
3501
|
callbackRequest: CallbackRequest;
|
|
3577
3502
|
callbackRequestableOffices: Array<Office>;
|
|
3578
3503
|
callbackRequests: CallbackRequestConnection;
|
|
3579
|
-
context: Context;
|
|
3580
3504
|
customer: Customer;
|
|
3581
3505
|
customers: CustomerConnection;
|
|
3582
3506
|
definedAvailability: Array<DefinedAvailability>;
|
|
@@ -3846,10 +3770,6 @@ export type QueryCallbackRequestsArgs = {
|
|
|
3846
3770
|
status?: InputMaybe<Array<CallbackRequestStatus>>;
|
|
3847
3771
|
subjectId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3848
3772
|
};
|
|
3849
|
-
export type QueryContextArgs = {
|
|
3850
|
-
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
3851
|
-
id?: InputMaybe<Scalars['String']['input']>;
|
|
3852
|
-
};
|
|
3853
3773
|
export type QueryCustomerArgs = {
|
|
3854
3774
|
id: Scalars['ID']['input'];
|
|
3855
3775
|
};
|
|
@@ -4485,7 +4405,6 @@ export type Question = {
|
|
|
4485
4405
|
id: Scalars['ID']['output'];
|
|
4486
4406
|
inputType: InputType;
|
|
4487
4407
|
label?: Maybe<TranslationObject>;
|
|
4488
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
4489
4408
|
order: Scalars['Int']['output'];
|
|
4490
4409
|
placeholder?: Maybe<TranslationObject>;
|
|
4491
4410
|
required: Scalars['Boolean']['output'];
|
|
@@ -4510,7 +4429,6 @@ export type QuestionPatchInput = {
|
|
|
4510
4429
|
fetchConfigurationId?: InputMaybe<Scalars['ID']['input']>;
|
|
4511
4430
|
hidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4512
4431
|
inputType?: InputMaybe<InputType>;
|
|
4513
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
4514
4432
|
order?: InputMaybe<Scalars['Int']['input']>;
|
|
4515
4433
|
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4516
4434
|
targetProperty?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4525,7 +4443,6 @@ export type QuestionPutInput = {
|
|
|
4525
4443
|
hidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4526
4444
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
4527
4445
|
inputType: InputType;
|
|
4528
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
4529
4446
|
order?: InputMaybe<Scalars['Int']['input']>;
|
|
4530
4447
|
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4531
4448
|
targetProperty?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5232,7 +5149,6 @@ export type UiFeatureTogglesEnterpriseSetting = {
|
|
|
5232
5149
|
};
|
|
5233
5150
|
export type Unavailability = {
|
|
5234
5151
|
allDay: Scalars['Boolean']['output'];
|
|
5235
|
-
answers: Array<UnavailabilityAnswer>;
|
|
5236
5152
|
createdAt: Scalars['ISO8601']['output'];
|
|
5237
5153
|
employee: Employee;
|
|
5238
5154
|
/** End time of unavailability. */
|
|
@@ -5248,30 +5164,12 @@ export type Unavailability = {
|
|
|
5248
5164
|
type: UnavailabilityType;
|
|
5249
5165
|
updatedAt: Scalars['ISO8601']['output'];
|
|
5250
5166
|
};
|
|
5251
|
-
export type UnavailabilityAnswer = {
|
|
5252
|
-
answerType: FormType;
|
|
5253
|
-
createdAt: Scalars['ISO8601']['output'];
|
|
5254
|
-
files?: Maybe<Array<File>>;
|
|
5255
|
-
form: Form;
|
|
5256
|
-
id: Scalars['ID']['output'];
|
|
5257
|
-
question: Question;
|
|
5258
|
-
selectedAnswerOptions?: Maybe<Array<AnswerOption>>;
|
|
5259
|
-
updatedAt: Scalars['ISO8601']['output'];
|
|
5260
|
-
value?: Maybe<Scalars['String']['output']>;
|
|
5261
|
-
};
|
|
5262
|
-
export type UnavailabilityAnswerInput = {
|
|
5263
|
-
fileIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5264
|
-
questionId: Scalars['ID']['input'];
|
|
5265
|
-
selectedAnswerOptionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5266
|
-
value?: InputMaybe<Scalars['String']['input']>;
|
|
5267
|
-
};
|
|
5268
5167
|
export type UnavailabilityConnection = {
|
|
5269
5168
|
edges: Array<UnavailabilityEdge>;
|
|
5270
5169
|
pageInfo: PageInfo;
|
|
5271
5170
|
totalCount: Scalars['Int']['output'];
|
|
5272
5171
|
};
|
|
5273
5172
|
export type UnavailabilityCreateInput = {
|
|
5274
|
-
answers?: InputMaybe<Array<UnavailabilityAnswerInput>>;
|
|
5275
5173
|
employeeId: Scalars['ID']['input'];
|
|
5276
5174
|
/** Is inclusive. */
|
|
5277
5175
|
endDate: Scalars['CalendarDate']['input'];
|
|
@@ -5283,13 +5181,11 @@ export type UnavailabilityEdge = {
|
|
|
5283
5181
|
node: Unavailability;
|
|
5284
5182
|
};
|
|
5285
5183
|
export type UnavailabilityEventCreateInput = {
|
|
5286
|
-
answers?: InputMaybe<Array<UnavailabilityAnswerInput>>;
|
|
5287
5184
|
employeeId: Scalars['ID']['input'];
|
|
5288
5185
|
end: Scalars['ISO8601']['input'];
|
|
5289
5186
|
start: Scalars['ISO8601']['input'];
|
|
5290
5187
|
};
|
|
5291
5188
|
export type UnavailabilityRevertInput = {
|
|
5292
|
-
answers?: InputMaybe<Array<UnavailabilityAnswerInput>>;
|
|
5293
5189
|
employeeId: Scalars['ID']['input'];
|
|
5294
5190
|
/** Is inclusive. */
|
|
5295
5191
|
endDate: Scalars['CalendarDate']['input'];
|
|
@@ -5570,11 +5466,6 @@ export type DefaultTimeZoneInput = {
|
|
|
5570
5466
|
/** The default time zone used wherever no time zone is provided. */
|
|
5571
5467
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
5572
5468
|
};
|
|
5573
|
-
export type DefaultUnavailabilityFormIdInput = {
|
|
5574
|
-
manageable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5575
|
-
/** The default form to be used when creating unavailability. */
|
|
5576
|
-
value?: InputMaybe<Scalars['ID']['input']>;
|
|
5577
|
-
};
|
|
5578
5469
|
export type EmailProviderInput = {
|
|
5579
5470
|
manageable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5580
5471
|
/** The email provider used to send emails. */
|