@pexip-engage-public/graphql 1.1.12 → 1.1.14-canary-20251008093334
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 +17 -0
- package/dist/graphql-env.d.ts +1228 -59
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +1535 -240
- package/dist/graphql-env.js.map +1 -1
- package/dist/graphql.d.ts +1 -1
- package/dist/graphql.d.ts.map +1 -1
- package/dist/schema.d.ts +139 -4
- package/dist/schema.d.ts.map +1 -1
- package/package.json +5 -5
- package/src/graphql-env.ts +1535 -240
- package/src/graphql.ts +1 -1
- package/src/schema.ts +157 -3
package/dist/graphql.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export declare const graphql: initGraphQLTada<{
|
|
|
21
21
|
*
|
|
22
22
|
* 2022-02-03T12:24:45-08:00[America/Los_Angeles] */
|
|
23
23
|
ZonedDateTime: ZonedDateTimeString;
|
|
24
|
-
JSONObject:
|
|
24
|
+
JSONObject: Record<string, unknown>;
|
|
25
25
|
};
|
|
26
26
|
}>;
|
|
27
27
|
export type { FragmentOf, ResultOf, TadaDocumentNode, VariablesOf } from "gql.tada";
|
package/dist/graphql.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graphql.d.ts","sourceRoot":"","sources":["../src/graphql.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAE3C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEtD,eAAO,MAAM,OAAO;mBACH,OAAO,aAAa;aAC1B;QACP,EAAE,EAAE,MAAM,CAAC;QACX;;WAEG;QACH,YAAY,EAAE,kBAAkB,CAAC;QACjC;;;WAGG;QACH,IAAI,EAAE,UAAU,CAAC;QACjB;;sCAE8B;QAC9B,OAAO,EAAE,aAAa,CAAC;QACvB;;4DAEoD;QACpD,aAAa,EAAE,mBAAmB,CAAC;QACnC,UAAU,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"graphql.d.ts","sourceRoot":"","sources":["../src/graphql.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAE3C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEtD,eAAO,MAAM,OAAO;mBACH,OAAO,aAAa;aAC1B;QACP,EAAE,EAAE,MAAM,CAAC;QACX;;WAEG;QACH,YAAY,EAAE,kBAAkB,CAAC;QACjC;;;WAGG;QACH,IAAI,EAAE,UAAU,CAAC;QACjB;;sCAE8B;QAC9B,OAAO,EAAE,aAAa,CAAC;QACvB;;4DAEoD;QACpD,aAAa,EAAE,mBAAmB,CAAC;QACnC,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KACrC;EACC,CAAC;AAEL,YAAY,EAAE,UAAU,EAAE,QAAQ,EAAE,gBAAgB,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AACpF,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC"}
|
package/dist/schema.d.ts
CHANGED
|
@@ -841,6 +841,60 @@ 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
|
+
};
|
|
844
898
|
export type Customer = {
|
|
845
899
|
anonymizedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
846
900
|
company?: Maybe<Scalars['String']['output']>;
|
|
@@ -1077,6 +1131,14 @@ export type DefaultTimeZoneEnterpriseSetting = {
|
|
|
1077
1131
|
/** The default time zone used wherever no time zone is provided. */
|
|
1078
1132
|
value: Scalars['String']['output'];
|
|
1079
1133
|
};
|
|
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
|
+
};
|
|
1080
1142
|
export type DefinedAvailability = {
|
|
1081
1143
|
employee: Employee;
|
|
1082
1144
|
end: Scalars['ISO8601']['output'];
|
|
@@ -1153,6 +1215,7 @@ export type Employee = {
|
|
|
1153
1215
|
language: Language;
|
|
1154
1216
|
languageExpertise: Array<Language>;
|
|
1155
1217
|
lastName: Scalars['String']['output'];
|
|
1218
|
+
metadata?: Maybe<Scalars['JSONObject']['output']>;
|
|
1156
1219
|
officeRelations: Array<OfficeRelation>;
|
|
1157
1220
|
onlinePlanning: Scalars['Boolean']['output'];
|
|
1158
1221
|
phoneNumber?: Maybe<Scalars['String']['output']>;
|
|
@@ -1225,6 +1288,7 @@ export type EmployeeCreateInput = {
|
|
|
1225
1288
|
language?: InputMaybe<Language>;
|
|
1226
1289
|
languageExpertise?: InputMaybe<Array<Language>>;
|
|
1227
1290
|
lastName: Scalars['String']['input'];
|
|
1291
|
+
metadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
1228
1292
|
officeRelations?: InputMaybe<Array<OfficeRelationCreateInput>>;
|
|
1229
1293
|
onlinePlanning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1230
1294
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1280,6 +1344,7 @@ export type EmployeePatchInput = {
|
|
|
1280
1344
|
language?: InputMaybe<Language>;
|
|
1281
1345
|
languageExpertise?: InputMaybe<Array<Language>>;
|
|
1282
1346
|
lastName?: InputMaybe<Scalars['String']['input']>;
|
|
1347
|
+
metadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
1283
1348
|
officeRelations?: InputMaybe<Array<OfficeRelationPatchInput>>;
|
|
1284
1349
|
onlinePlanning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1285
1350
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1379,6 +1444,9 @@ export type EnterpriseSettings = {
|
|
|
1379
1444
|
defaultTermsAndConditionsUrl: DefaultTermsAndConditionsUrlEnterpriseSetting;
|
|
1380
1445
|
/** The default time zone used wherever no time zone is provided. */
|
|
1381
1446
|
defaultTimeZone: DefaultTimeZoneEnterpriseSetting;
|
|
1447
|
+
defaultUnavailabilityForm?: Maybe<Form>;
|
|
1448
|
+
/** The default form to be used when creating unavailability. */
|
|
1449
|
+
defaultUnavailabilityFormId: DefaultUnavailabilityFormIdEnterpriseSetting;
|
|
1382
1450
|
/** The email provider used to send emails. */
|
|
1383
1451
|
emailProvider: EmailProviderEnterpriseSetting;
|
|
1384
1452
|
/** The settings used to calculate which notifications should be sent to the employee. */
|
|
@@ -1479,6 +1547,8 @@ export type EnterpriseSettingsPatchInput = {
|
|
|
1479
1547
|
defaultSubjectId?: InputMaybe<DefaultSubjectIdInput>;
|
|
1480
1548
|
/** The default time zone used wherever no time zone is provided. */
|
|
1481
1549
|
defaultTimeZone?: InputMaybe<DefaultTimeZoneInput>;
|
|
1550
|
+
/** The default form to be used when creating unavailability. */
|
|
1551
|
+
defaultUnavailabilityFormId?: InputMaybe<DefaultUnavailabilityFormIdInput>;
|
|
1482
1552
|
/** The email provider used to send emails. */
|
|
1483
1553
|
emailProvider?: InputMaybe<EmailProviderInput>;
|
|
1484
1554
|
/** The settings used to calculate which notifications should be sent to the employee. */
|
|
@@ -1808,7 +1878,7 @@ export type FormSort = {
|
|
|
1808
1878
|
direction: SortDirection;
|
|
1809
1879
|
field: SortableFormFields;
|
|
1810
1880
|
};
|
|
1811
|
-
export type FormType = 'APPOINTMENT_CANCELLATION' | 'APPOINTMENT_COMPLETION' | 'CALLBACK_REQUEST' | 'QUALIFICATION' | 'SUBJECT_QUESTIONNAIRE';
|
|
1881
|
+
export type FormType = 'APPOINTMENT_CANCELLATION' | 'APPOINTMENT_COMPLETION' | 'CALLBACK_REQUEST' | 'QUALIFICATION' | 'SUBJECT_QUESTIONNAIRE' | 'UNAVAILABILITY';
|
|
1812
1882
|
export type Geolocation = {
|
|
1813
1883
|
latitude: Scalars['Float']['output'];
|
|
1814
1884
|
longitude: Scalars['Float']['output'];
|
|
@@ -2466,6 +2536,7 @@ export type Mutation = {
|
|
|
2466
2536
|
createAvailabilityTimeRange: AvailabilityTimeRange;
|
|
2467
2537
|
createCallbackRequest: CallbackRequest;
|
|
2468
2538
|
createCallbackRequestConfirmedSessionEvent: Scalars['Boolean']['output'];
|
|
2539
|
+
createContext: Context;
|
|
2469
2540
|
createCustomer: Customer;
|
|
2470
2541
|
createDataSelectedSessionEvent: Scalars['Boolean']['output'];
|
|
2471
2542
|
createDataShownSessionEvent: Scalars['Boolean']['output'];
|
|
@@ -2633,6 +2704,7 @@ export type Mutation = {
|
|
|
2633
2704
|
* - The mutation returns the deleted original unavailability
|
|
2634
2705
|
*/
|
|
2635
2706
|
revertUnavailability: Array<Unavailability>;
|
|
2707
|
+
scheduleAppointment: Appointment;
|
|
2636
2708
|
syncFutureEventsToExternalCalendar: Scalars['Boolean']['output'];
|
|
2637
2709
|
syncMeetingRooms: Scalars['Boolean']['output'];
|
|
2638
2710
|
syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
|
|
@@ -2694,6 +2766,9 @@ export type MutationCreateCallbackRequestArgs = {
|
|
|
2694
2766
|
export type MutationCreateCallbackRequestConfirmedSessionEventArgs = {
|
|
2695
2767
|
input: CallbackRequestConfirmedSessionEvent;
|
|
2696
2768
|
};
|
|
2769
|
+
export type MutationCreateContextArgs = {
|
|
2770
|
+
input: ContextInput;
|
|
2771
|
+
};
|
|
2697
2772
|
export type MutationCreateCustomerArgs = {
|
|
2698
2773
|
customerCreateInput: CustomerCreateInput;
|
|
2699
2774
|
};
|
|
@@ -3220,6 +3295,9 @@ export type MutationRevertAppliedTemplatesArgs = {
|
|
|
3220
3295
|
export type MutationRevertUnavailabilityArgs = {
|
|
3221
3296
|
input: UnavailabilityRevertInput;
|
|
3222
3297
|
};
|
|
3298
|
+
export type MutationScheduleAppointmentArgs = {
|
|
3299
|
+
appointmentCreateInput: AppointmentCreateInput;
|
|
3300
|
+
};
|
|
3223
3301
|
export type MutationSyncFutureEventsToExternalCalendarArgs = {
|
|
3224
3302
|
externalCalendarId: Scalars['ID']['input'];
|
|
3225
3303
|
};
|
|
@@ -3272,6 +3350,7 @@ export type Office = {
|
|
|
3272
3350
|
id: Scalars['ID']['output'];
|
|
3273
3351
|
location: Location;
|
|
3274
3352
|
meetingRooms: Array<MeetingRoom>;
|
|
3353
|
+
metadata?: Maybe<Scalars['JSONObject']['output']>;
|
|
3275
3354
|
name?: Maybe<TranslationObject>;
|
|
3276
3355
|
officeManagers: Array<Employee>;
|
|
3277
3356
|
parkingInfo?: Maybe<TranslationObject>;
|
|
@@ -3313,6 +3392,7 @@ export type OfficeCreateInput = {
|
|
|
3313
3392
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
3314
3393
|
location: LocationInput;
|
|
3315
3394
|
meetingRoomIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3395
|
+
metadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
3316
3396
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
3317
3397
|
timeZone?: InputMaybe<Scalars['String']['input']>;
|
|
3318
3398
|
translations: OfficeTranslationsCreateInput;
|
|
@@ -3355,6 +3435,7 @@ export type OfficePatchInput = {
|
|
|
3355
3435
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
3356
3436
|
location?: InputMaybe<LocationInput>;
|
|
3357
3437
|
meetingRoomIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3438
|
+
metadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
3358
3439
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
3359
3440
|
timeZone?: InputMaybe<Scalars['String']['input']>;
|
|
3360
3441
|
translations?: InputMaybe<OfficeTranslationsPatchInput>;
|
|
@@ -3495,6 +3576,7 @@ export type Query = {
|
|
|
3495
3576
|
callbackRequest: CallbackRequest;
|
|
3496
3577
|
callbackRequestableOffices: Array<Office>;
|
|
3497
3578
|
callbackRequests: CallbackRequestConnection;
|
|
3579
|
+
context: Context;
|
|
3498
3580
|
customer: Customer;
|
|
3499
3581
|
customers: CustomerConnection;
|
|
3500
3582
|
definedAvailability: Array<DefinedAvailability>;
|
|
@@ -3587,6 +3669,7 @@ export type Query = {
|
|
|
3587
3669
|
webhookConfigurations: Array<WebhookConfiguration>;
|
|
3588
3670
|
webhookDeliveries: WebhookDeliveryConnection;
|
|
3589
3671
|
webhookDelivery: WebhookDelivery;
|
|
3672
|
+
workLocations: Array<WorkLocationEntry>;
|
|
3590
3673
|
};
|
|
3591
3674
|
export type QueryAggregatedEmployeeAppointmentInsightsArgs = {
|
|
3592
3675
|
employeeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -3763,6 +3846,10 @@ export type QueryCallbackRequestsArgs = {
|
|
|
3763
3846
|
status?: InputMaybe<Array<CallbackRequestStatus>>;
|
|
3764
3847
|
subjectId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3765
3848
|
};
|
|
3849
|
+
export type QueryContextArgs = {
|
|
3850
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
3851
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
3852
|
+
};
|
|
3766
3853
|
export type QueryCustomerArgs = {
|
|
3767
3854
|
id: Scalars['ID']['input'];
|
|
3768
3855
|
};
|
|
@@ -4379,6 +4466,11 @@ export type QueryWebhookDeliveriesArgs = {
|
|
|
4379
4466
|
export type QueryWebhookDeliveryArgs = {
|
|
4380
4467
|
webhookId: Scalars['String']['input'];
|
|
4381
4468
|
};
|
|
4469
|
+
export type QueryWorkLocationsArgs = {
|
|
4470
|
+
employeeIds: Array<Scalars['ID']['input']>;
|
|
4471
|
+
from: Scalars['ISO8601']['input'];
|
|
4472
|
+
to: Scalars['ISO8601']['input'];
|
|
4473
|
+
};
|
|
4382
4474
|
export type Question = {
|
|
4383
4475
|
answerOptions: Array<AnswerOption>;
|
|
4384
4476
|
createdAt: Scalars['ISO8601']['output'];
|
|
@@ -4393,6 +4485,7 @@ export type Question = {
|
|
|
4393
4485
|
id: Scalars['ID']['output'];
|
|
4394
4486
|
inputType: InputType;
|
|
4395
4487
|
label?: Maybe<TranslationObject>;
|
|
4488
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4396
4489
|
order: Scalars['Int']['output'];
|
|
4397
4490
|
placeholder?: Maybe<TranslationObject>;
|
|
4398
4491
|
required: Scalars['Boolean']['output'];
|
|
@@ -4417,6 +4510,7 @@ export type QuestionPatchInput = {
|
|
|
4417
4510
|
fetchConfigurationId?: InputMaybe<Scalars['ID']['input']>;
|
|
4418
4511
|
hidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4419
4512
|
inputType?: InputMaybe<InputType>;
|
|
4513
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4420
4514
|
order?: InputMaybe<Scalars['Int']['input']>;
|
|
4421
4515
|
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4422
4516
|
targetProperty?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4431,6 +4525,7 @@ export type QuestionPutInput = {
|
|
|
4431
4525
|
hidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4432
4526
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
4433
4527
|
inputType: InputType;
|
|
4528
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4434
4529
|
order?: InputMaybe<Scalars['Int']['input']>;
|
|
4435
4530
|
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4436
4531
|
targetProperty?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4572,9 +4667,13 @@ export type SecondaryParticipantInput = {
|
|
|
4572
4667
|
};
|
|
4573
4668
|
export type SeedInput = {
|
|
4574
4669
|
/** Only the enterprises in this list will be seeded. */
|
|
4575
|
-
enterpriseFilter?: Array<Scalars['String']['input']
|
|
4670
|
+
enterpriseFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4671
|
+
/** Only the entities in this list will be seeded. */
|
|
4672
|
+
entityFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4576
4673
|
/** Run all enterprises in parallel? */
|
|
4577
|
-
parallel?: Scalars['Boolean']['input']
|
|
4674
|
+
parallel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4675
|
+
/** Target services to seed to, leave empty to seed to all services. */
|
|
4676
|
+
targetServices?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4578
4677
|
};
|
|
4579
4678
|
export type SendAppointmentEmailNotificationsEnterpriseSetting = {
|
|
4580
4679
|
createdAt: Scalars['ISO8601']['output'];
|
|
@@ -5114,7 +5213,7 @@ export type TranslationObjectInput = {
|
|
|
5114
5213
|
language: Language;
|
|
5115
5214
|
value: Scalars['String']['input'];
|
|
5116
5215
|
};
|
|
5117
|
-
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' | 'EMPLOYEE_AVATAR' | 'EMPLOYEE_FUNCTION_SUBTITLE' | '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';
|
|
5216
|
+
export type UiFeature = 'APPOINTMENT_COMPLETION' | 'APPOINTMENT_CREATION' | 'APPOINTMENT_CREATION_CUSTOMER_EDIT' | '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' | 'EMPLOYEE_AVATAR' | 'EMPLOYEE_FUNCTION_SUBTITLE' | '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';
|
|
5118
5217
|
export type UiFeatureToggleEnterpriseSettingInput = {
|
|
5119
5218
|
enabled: Scalars['Boolean']['input'];
|
|
5120
5219
|
feature: UiFeature;
|
|
@@ -5133,6 +5232,7 @@ export type UiFeatureTogglesEnterpriseSetting = {
|
|
|
5133
5232
|
};
|
|
5134
5233
|
export type Unavailability = {
|
|
5135
5234
|
allDay: Scalars['Boolean']['output'];
|
|
5235
|
+
answers: Array<UnavailabilityAnswer>;
|
|
5136
5236
|
createdAt: Scalars['ISO8601']['output'];
|
|
5137
5237
|
employee: Employee;
|
|
5138
5238
|
/** End time of unavailability. */
|
|
@@ -5148,12 +5248,30 @@ export type Unavailability = {
|
|
|
5148
5248
|
type: UnavailabilityType;
|
|
5149
5249
|
updatedAt: Scalars['ISO8601']['output'];
|
|
5150
5250
|
};
|
|
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
|
+
};
|
|
5151
5268
|
export type UnavailabilityConnection = {
|
|
5152
5269
|
edges: Array<UnavailabilityEdge>;
|
|
5153
5270
|
pageInfo: PageInfo;
|
|
5154
5271
|
totalCount: Scalars['Int']['output'];
|
|
5155
5272
|
};
|
|
5156
5273
|
export type UnavailabilityCreateInput = {
|
|
5274
|
+
answers?: InputMaybe<Array<UnavailabilityAnswerInput>>;
|
|
5157
5275
|
employeeId: Scalars['ID']['input'];
|
|
5158
5276
|
/** Is inclusive. */
|
|
5159
5277
|
endDate: Scalars['CalendarDate']['input'];
|
|
@@ -5165,11 +5283,13 @@ export type UnavailabilityEdge = {
|
|
|
5165
5283
|
node: Unavailability;
|
|
5166
5284
|
};
|
|
5167
5285
|
export type UnavailabilityEventCreateInput = {
|
|
5286
|
+
answers?: InputMaybe<Array<UnavailabilityAnswerInput>>;
|
|
5168
5287
|
employeeId: Scalars['ID']['input'];
|
|
5169
5288
|
end: Scalars['ISO8601']['input'];
|
|
5170
5289
|
start: Scalars['ISO8601']['input'];
|
|
5171
5290
|
};
|
|
5172
5291
|
export type UnavailabilityRevertInput = {
|
|
5292
|
+
answers?: InputMaybe<Array<UnavailabilityAnswerInput>>;
|
|
5173
5293
|
employeeId: Scalars['ID']['input'];
|
|
5174
5294
|
/** Is inclusive. */
|
|
5175
5295
|
endDate: Scalars['CalendarDate']['input'];
|
|
@@ -5315,6 +5435,16 @@ export type WebhookDeliveryEdge = {
|
|
|
5315
5435
|
node: WebhookDelivery;
|
|
5316
5436
|
};
|
|
5317
5437
|
export type WebhookEventType = 'appointment_create' | 'appointment_update' | 'callback_request_create' | 'callback_request_update' | 'communication_send';
|
|
5438
|
+
export type WorkLocation = {
|
|
5439
|
+
employee: Employee;
|
|
5440
|
+
meetingTypes: Array<MeetingType>;
|
|
5441
|
+
office: Office;
|
|
5442
|
+
};
|
|
5443
|
+
export type WorkLocationEntry = {
|
|
5444
|
+
end: Scalars['ISO8601']['output'];
|
|
5445
|
+
start: Scalars['ISO8601']['output'];
|
|
5446
|
+
workLocations: Array<WorkLocation>;
|
|
5447
|
+
};
|
|
5318
5448
|
export type ActiveLanguagesInput = {
|
|
5319
5449
|
manageable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5320
5450
|
/** The languages supported by the enterprise. */
|
|
@@ -5440,6 +5570,11 @@ export type DefaultTimeZoneInput = {
|
|
|
5440
5570
|
/** The default time zone used wherever no time zone is provided. */
|
|
5441
5571
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
5442
5572
|
};
|
|
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
|
+
};
|
|
5443
5578
|
export type EmailProviderInput = {
|
|
5444
5579
|
manageable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5445
5580
|
/** The email provider used to send emails. */
|