@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/src/schema.ts
CHANGED
|
@@ -1016,63 +1016,6 @@ export type CommunicationType =
|
|
|
1016
1016
|
| 'NOTIFICATION'
|
|
1017
1017
|
| 'REMINDER';
|
|
1018
1018
|
|
|
1019
|
-
export type Context = {
|
|
1020
|
-
createdAt: Scalars['ISO8601']['output'];
|
|
1021
|
-
expiresAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
1022
|
-
externalId?: Maybe<Scalars['String']['output']>;
|
|
1023
|
-
id: Scalars['String']['output'];
|
|
1024
|
-
lastAccessedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
1025
|
-
output: ContextOutput;
|
|
1026
|
-
updatedAt: Scalars['ISO8601']['output'];
|
|
1027
|
-
};
|
|
1028
|
-
|
|
1029
|
-
export type ContextInput = {
|
|
1030
|
-
appointmentExternalId?: InputMaybe<Scalars['String']['input']>;
|
|
1031
|
-
customerExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1032
|
-
customerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1033
|
-
customers?: InputMaybe<Array<CustomerCreateInput>>;
|
|
1034
|
-
employeeExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1035
|
-
employeeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1036
|
-
end?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
1037
|
-
leadSegmentCodes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1038
|
-
leadSegmentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1039
|
-
listingExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1040
|
-
listingIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1041
|
-
meetingRoomIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1042
|
-
meetingTypes?: InputMaybe<Array<MeetingType>>;
|
|
1043
|
-
metadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
1044
|
-
officeExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1045
|
-
officeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1046
|
-
secondaryCustomerExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1047
|
-
secondaryCustomerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1048
|
-
secondaryCustomers?: InputMaybe<Array<CustomerCreateInput>>;
|
|
1049
|
-
secondaryEmployeeExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1050
|
-
secondaryEmployeeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1051
|
-
start?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
1052
|
-
subjectExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1053
|
-
subjectGroupExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1054
|
-
subjectGroupIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1055
|
-
subjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1056
|
-
};
|
|
1057
|
-
|
|
1058
|
-
export type ContextOutput = {
|
|
1059
|
-
appointmentExternalId?: Maybe<Scalars['String']['output']>;
|
|
1060
|
-
customerIds: Array<Scalars['ID']['output']>;
|
|
1061
|
-
employeeIds: Array<Scalars['ID']['output']>;
|
|
1062
|
-
end?: Maybe<Scalars['ISO8601']['output']>;
|
|
1063
|
-
leadSegmentIds: Array<Scalars['ID']['output']>;
|
|
1064
|
-
listingIds: Array<Scalars['ID']['output']>;
|
|
1065
|
-
meetingRoomIds: Array<Scalars['ID']['output']>;
|
|
1066
|
-
meetingTypes: Array<MeetingType>;
|
|
1067
|
-
metadata?: Maybe<Scalars['JSONObject']['output']>;
|
|
1068
|
-
officeIds: Array<Scalars['ID']['output']>;
|
|
1069
|
-
secondaryCustomerIds: Array<Scalars['ID']['output']>;
|
|
1070
|
-
secondaryEmployeeIds: Array<Scalars['ID']['output']>;
|
|
1071
|
-
start?: Maybe<Scalars['ISO8601']['output']>;
|
|
1072
|
-
subjectGroupIds: Array<Scalars['ID']['output']>;
|
|
1073
|
-
subjectIds: Array<Scalars['ID']['output']>;
|
|
1074
|
-
};
|
|
1075
|
-
|
|
1076
1019
|
export type Customer = {
|
|
1077
1020
|
anonymizedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
1078
1021
|
company?: Maybe<Scalars['String']['output']>;
|
|
@@ -1347,15 +1290,6 @@ export type DefaultTimeZoneEnterpriseSetting = {
|
|
|
1347
1290
|
value: Scalars['String']['output'];
|
|
1348
1291
|
};
|
|
1349
1292
|
|
|
1350
|
-
export type DefaultUnavailabilityFormIdEnterpriseSetting = {
|
|
1351
|
-
createdAt: Scalars['ISO8601']['output'];
|
|
1352
|
-
/** 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. */
|
|
1353
|
-
manageable: Scalars['Boolean']['output'];
|
|
1354
|
-
updatedAt: Scalars['ISO8601']['output'];
|
|
1355
|
-
/** The default form to be used when creating unavailability. */
|
|
1356
|
-
value?: Maybe<Scalars['ID']['output']>;
|
|
1357
|
-
};
|
|
1358
|
-
|
|
1359
1293
|
export type DefinedAvailability = {
|
|
1360
1294
|
employee: Employee;
|
|
1361
1295
|
end: Scalars['ISO8601']['output'];
|
|
@@ -1714,9 +1648,6 @@ export type EnterpriseSettings = {
|
|
|
1714
1648
|
defaultTermsAndConditionsUrl: DefaultTermsAndConditionsUrlEnterpriseSetting;
|
|
1715
1649
|
/** The default time zone used wherever no time zone is provided. */
|
|
1716
1650
|
defaultTimeZone: DefaultTimeZoneEnterpriseSetting;
|
|
1717
|
-
defaultUnavailabilityForm?: Maybe<Form>;
|
|
1718
|
-
/** The default form to be used when creating unavailability. */
|
|
1719
|
-
defaultUnavailabilityFormId: DefaultUnavailabilityFormIdEnterpriseSetting;
|
|
1720
1651
|
/** The email provider used to send emails. */
|
|
1721
1652
|
emailProvider: EmailProviderEnterpriseSetting;
|
|
1722
1653
|
/** The settings used to calculate which notifications should be sent to the employee. */
|
|
@@ -1818,8 +1749,6 @@ export type EnterpriseSettingsPatchInput = {
|
|
|
1818
1749
|
defaultSubjectId?: InputMaybe<DefaultSubjectIdInput>;
|
|
1819
1750
|
/** The default time zone used wherever no time zone is provided. */
|
|
1820
1751
|
defaultTimeZone?: InputMaybe<DefaultTimeZoneInput>;
|
|
1821
|
-
/** The default form to be used when creating unavailability. */
|
|
1822
|
-
defaultUnavailabilityFormId?: InputMaybe<DefaultUnavailabilityFormIdInput>;
|
|
1823
1752
|
/** The email provider used to send emails. */
|
|
1824
1753
|
emailProvider?: InputMaybe<EmailProviderInput>;
|
|
1825
1754
|
/** The settings used to calculate which notifications should be sent to the employee. */
|
|
@@ -2238,8 +2167,7 @@ export type FormType =
|
|
|
2238
2167
|
| 'APPOINTMENT_COMPLETION'
|
|
2239
2168
|
| 'CALLBACK_REQUEST'
|
|
2240
2169
|
| 'QUALIFICATION'
|
|
2241
|
-
| 'SUBJECT_QUESTIONNAIRE'
|
|
2242
|
-
| 'UNAVAILABILITY';
|
|
2170
|
+
| 'SUBJECT_QUESTIONNAIRE';
|
|
2243
2171
|
|
|
2244
2172
|
export type Geolocation = {
|
|
2245
2173
|
latitude: Scalars['Float']['output'];
|
|
@@ -3076,7 +3004,6 @@ export type Mutation = {
|
|
|
3076
3004
|
createAvailabilityTimeRange: AvailabilityTimeRange;
|
|
3077
3005
|
createCallbackRequest: CallbackRequest;
|
|
3078
3006
|
createCallbackRequestConfirmedSessionEvent: Scalars['Boolean']['output'];
|
|
3079
|
-
createContext: Context;
|
|
3080
3007
|
createCustomer: Customer;
|
|
3081
3008
|
createDataSelectedSessionEvent: Scalars['Boolean']['output'];
|
|
3082
3009
|
createDataShownSessionEvent: Scalars['Boolean']['output'];
|
|
@@ -3244,7 +3171,6 @@ export type Mutation = {
|
|
|
3244
3171
|
* - The mutation returns the deleted original unavailability
|
|
3245
3172
|
*/
|
|
3246
3173
|
revertUnavailability: Array<Unavailability>;
|
|
3247
|
-
scheduleAppointment: Appointment;
|
|
3248
3174
|
syncFutureEventsToExternalCalendar: Scalars['Boolean']['output'];
|
|
3249
3175
|
syncMeetingRooms: Scalars['Boolean']['output'];
|
|
3250
3176
|
syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
|
|
@@ -3336,11 +3262,6 @@ export type MutationCreateCallbackRequestConfirmedSessionEventArgs = {
|
|
|
3336
3262
|
};
|
|
3337
3263
|
|
|
3338
3264
|
|
|
3339
|
-
export type MutationCreateContextArgs = {
|
|
3340
|
-
input: ContextInput;
|
|
3341
|
-
};
|
|
3342
|
-
|
|
3343
|
-
|
|
3344
3265
|
export type MutationCreateCustomerArgs = {
|
|
3345
3266
|
customerCreateInput: CustomerCreateInput;
|
|
3346
3267
|
};
|
|
@@ -4157,11 +4078,6 @@ export type MutationRevertUnavailabilityArgs = {
|
|
|
4157
4078
|
};
|
|
4158
4079
|
|
|
4159
4080
|
|
|
4160
|
-
export type MutationScheduleAppointmentArgs = {
|
|
4161
|
-
appointmentCreateInput: AppointmentCreateInput;
|
|
4162
|
-
};
|
|
4163
|
-
|
|
4164
|
-
|
|
4165
4081
|
export type MutationSyncFutureEventsToExternalCalendarArgs = {
|
|
4166
4082
|
externalCalendarId: Scalars['ID']['input'];
|
|
4167
4083
|
};
|
|
@@ -4502,7 +4418,6 @@ export type Query = {
|
|
|
4502
4418
|
callbackRequest: CallbackRequest;
|
|
4503
4419
|
callbackRequestableOffices: Array<Office>;
|
|
4504
4420
|
callbackRequests: CallbackRequestConnection;
|
|
4505
|
-
context: Context;
|
|
4506
4421
|
customer: Customer;
|
|
4507
4422
|
customers: CustomerConnection;
|
|
4508
4423
|
definedAvailability: Array<DefinedAvailability>;
|
|
@@ -4822,12 +4737,6 @@ export type QueryCallbackRequestsArgs = {
|
|
|
4822
4737
|
};
|
|
4823
4738
|
|
|
4824
4739
|
|
|
4825
|
-
export type QueryContextArgs = {
|
|
4826
|
-
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
4827
|
-
id?: InputMaybe<Scalars['String']['input']>;
|
|
4828
|
-
};
|
|
4829
|
-
|
|
4830
|
-
|
|
4831
4740
|
export type QueryCustomerArgs = {
|
|
4832
4741
|
id: Scalars['ID']['input'];
|
|
4833
4742
|
};
|
|
@@ -5626,7 +5535,6 @@ export type Question = {
|
|
|
5626
5535
|
id: Scalars['ID']['output'];
|
|
5627
5536
|
inputType: InputType;
|
|
5628
5537
|
label?: Maybe<TranslationObject>;
|
|
5629
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
5630
5538
|
order: Scalars['Int']['output'];
|
|
5631
5539
|
placeholder?: Maybe<TranslationObject>;
|
|
5632
5540
|
required: Scalars['Boolean']['output'];
|
|
@@ -5656,7 +5564,6 @@ export type QuestionPatchInput = {
|
|
|
5656
5564
|
fetchConfigurationId?: InputMaybe<Scalars['ID']['input']>;
|
|
5657
5565
|
hidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5658
5566
|
inputType?: InputMaybe<InputType>;
|
|
5659
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
5660
5567
|
order?: InputMaybe<Scalars['Int']['input']>;
|
|
5661
5568
|
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5662
5569
|
targetProperty?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5672,7 +5579,6 @@ export type QuestionPutInput = {
|
|
|
5672
5579
|
hidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5673
5580
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
5674
5581
|
inputType: InputType;
|
|
5675
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
5676
5582
|
order?: InputMaybe<Scalars['Int']['input']>;
|
|
5677
5583
|
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5678
5584
|
targetProperty?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6714,7 +6620,6 @@ export type UiFeatureTogglesEnterpriseSetting = {
|
|
|
6714
6620
|
|
|
6715
6621
|
export type Unavailability = {
|
|
6716
6622
|
allDay: Scalars['Boolean']['output'];
|
|
6717
|
-
answers: Array<UnavailabilityAnswer>;
|
|
6718
6623
|
createdAt: Scalars['ISO8601']['output'];
|
|
6719
6624
|
employee: Employee;
|
|
6720
6625
|
/** End time of unavailability. */
|
|
@@ -6731,25 +6636,6 @@ export type Unavailability = {
|
|
|
6731
6636
|
updatedAt: Scalars['ISO8601']['output'];
|
|
6732
6637
|
};
|
|
6733
6638
|
|
|
6734
|
-
export type UnavailabilityAnswer = {
|
|
6735
|
-
answerType: FormType;
|
|
6736
|
-
createdAt: Scalars['ISO8601']['output'];
|
|
6737
|
-
files?: Maybe<Array<File>>;
|
|
6738
|
-
form: Form;
|
|
6739
|
-
id: Scalars['ID']['output'];
|
|
6740
|
-
question: Question;
|
|
6741
|
-
selectedAnswerOptions?: Maybe<Array<AnswerOption>>;
|
|
6742
|
-
updatedAt: Scalars['ISO8601']['output'];
|
|
6743
|
-
value?: Maybe<Scalars['String']['output']>;
|
|
6744
|
-
};
|
|
6745
|
-
|
|
6746
|
-
export type UnavailabilityAnswerInput = {
|
|
6747
|
-
fileIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6748
|
-
questionId: Scalars['ID']['input'];
|
|
6749
|
-
selectedAnswerOptionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6750
|
-
value?: InputMaybe<Scalars['String']['input']>;
|
|
6751
|
-
};
|
|
6752
|
-
|
|
6753
6639
|
export type UnavailabilityConnection = {
|
|
6754
6640
|
edges: Array<UnavailabilityEdge>;
|
|
6755
6641
|
pageInfo: PageInfo;
|
|
@@ -6757,7 +6643,6 @@ export type UnavailabilityConnection = {
|
|
|
6757
6643
|
};
|
|
6758
6644
|
|
|
6759
6645
|
export type UnavailabilityCreateInput = {
|
|
6760
|
-
answers?: InputMaybe<Array<UnavailabilityAnswerInput>>;
|
|
6761
6646
|
employeeId: Scalars['ID']['input'];
|
|
6762
6647
|
/** Is inclusive. */
|
|
6763
6648
|
endDate: Scalars['CalendarDate']['input'];
|
|
@@ -6771,14 +6656,12 @@ export type UnavailabilityEdge = {
|
|
|
6771
6656
|
};
|
|
6772
6657
|
|
|
6773
6658
|
export type UnavailabilityEventCreateInput = {
|
|
6774
|
-
answers?: InputMaybe<Array<UnavailabilityAnswerInput>>;
|
|
6775
6659
|
employeeId: Scalars['ID']['input'];
|
|
6776
6660
|
end: Scalars['ISO8601']['input'];
|
|
6777
6661
|
start: Scalars['ISO8601']['input'];
|
|
6778
6662
|
};
|
|
6779
6663
|
|
|
6780
6664
|
export type UnavailabilityRevertInput = {
|
|
6781
|
-
answers?: InputMaybe<Array<UnavailabilityAnswerInput>>;
|
|
6782
6665
|
employeeId: Scalars['ID']['input'];
|
|
6783
6666
|
/** Is inclusive. */
|
|
6784
6667
|
endDate: Scalars['CalendarDate']['input'];
|
|
@@ -7131,12 +7014,6 @@ export type DefaultTimeZoneInput = {
|
|
|
7131
7014
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
7132
7015
|
};
|
|
7133
7016
|
|
|
7134
|
-
export type DefaultUnavailabilityFormIdInput = {
|
|
7135
|
-
manageable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7136
|
-
/** The default form to be used when creating unavailability. */
|
|
7137
|
-
value?: InputMaybe<Scalars['ID']['input']>;
|
|
7138
|
-
};
|
|
7139
|
-
|
|
7140
7017
|
export type EmailProviderInput = {
|
|
7141
7018
|
manageable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7142
7019
|
/** The email provider used to send emails. */
|