@pexip-engage-public/graphql 1.0.72 → 1.0.73-canary-20250527085440
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 +8 -0
- package/dist/graphql-env.d.ts +632 -28
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +692 -0
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +78 -4
- package/dist/schema.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/graphql-env.ts +692 -0
- package/src/schema.ts +102 -3
package/dist/schema.d.ts
CHANGED
|
@@ -804,6 +804,20 @@ export type CallbackRequestsEnabledEnterpriseSetting = {
|
|
|
804
804
|
/** This setting determines whether customers can request a callback. */
|
|
805
805
|
value: Scalars['Boolean']['output'];
|
|
806
806
|
};
|
|
807
|
+
export type Communication = {
|
|
808
|
+
channel: CommunicationChannel;
|
|
809
|
+
communicationReceiver: CommunicationReceiver;
|
|
810
|
+
communicationType: CommunicationType;
|
|
811
|
+
correlationId: Scalars['String']['output'];
|
|
812
|
+
createdAt: Scalars['ISO8601']['output'];
|
|
813
|
+
eventType: Scalars['String']['output'];
|
|
814
|
+
id: Scalars['ID']['output'];
|
|
815
|
+
processedAt: Scalars['ISO8601']['output'];
|
|
816
|
+
resourceId: Scalars['Int']['output'];
|
|
817
|
+
resourceType: CommunicationResourceType;
|
|
818
|
+
resourceVersion?: Maybe<Scalars['Int']['output']>;
|
|
819
|
+
scheduledAt: Scalars['ISO8601']['output'];
|
|
820
|
+
};
|
|
807
821
|
export type CommunicationChannel = 'EMAIL' | 'TEXT_MESSAGE';
|
|
808
822
|
export type CommunicationEmailEnterpriseSetting = {
|
|
809
823
|
createdAt: Scalars['ISO8601']['output'];
|
|
@@ -813,6 +827,15 @@ export type CommunicationEmailEnterpriseSetting = {
|
|
|
813
827
|
/** The default (non-localized) email address that receives callback requests when there is no office or employee email address. */
|
|
814
828
|
value?: Maybe<Scalars['String']['output']>;
|
|
815
829
|
};
|
|
830
|
+
export type CommunicationReceiver = Customer | Employee | Enterprise | Office | {
|
|
831
|
+
__typename?: "%other";
|
|
832
|
+
};
|
|
833
|
+
export type CommunicationResourceType = 'APPOINTMENT' | 'CALLBACK_REQUEST';
|
|
834
|
+
export type CommunicationSort = {
|
|
835
|
+
direction: SortDirection;
|
|
836
|
+
field: SortableCommunicationFields;
|
|
837
|
+
};
|
|
838
|
+
export type CommunicationType = 'NOTIFICATION' | 'REMINDER';
|
|
816
839
|
export type Customer = {
|
|
817
840
|
anonymizedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
818
841
|
company?: Maybe<Scalars['String']['output']>;
|
|
@@ -1065,7 +1088,7 @@ export type DefinedAvailabilityEvent = {
|
|
|
1065
1088
|
office: Office;
|
|
1066
1089
|
start: Scalars['ISO8601']['output'];
|
|
1067
1090
|
};
|
|
1068
|
-
export type EmailProvider = 'DEFAULT' | 'MANDRILL' | 'MICROSOFT_GRAPH_API' | 'PRETEND' | 'SMTP';
|
|
1091
|
+
export type EmailProvider = 'DEFAULT' | 'MANDRILL' | 'MICROSOFT_GRAPH_API' | 'PRETEND' | 'SMTP' | 'WEBHOOK';
|
|
1069
1092
|
export type EmailProviderEnterpriseSetting = {
|
|
1070
1093
|
createdAt: Scalars['ISO8601']['output'];
|
|
1071
1094
|
/** 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. */
|
|
@@ -1277,6 +1300,9 @@ export type EmployeeTranslationsCreateInput = {
|
|
|
1277
1300
|
export type EmployeeTranslationsPatchInput = {
|
|
1278
1301
|
function?: InputMaybe<Array<TranslationObjectInput>>;
|
|
1279
1302
|
};
|
|
1303
|
+
export type Enterprise = {
|
|
1304
|
+
name: Scalars['String']['output'];
|
|
1305
|
+
};
|
|
1280
1306
|
export type EnterpriseSettingTranslationInput = {
|
|
1281
1307
|
language: Language;
|
|
1282
1308
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2142,6 +2168,7 @@ export type ManagedExternalCalendarEvent = Managed & {
|
|
|
2142
2168
|
id: Scalars['String']['output'];
|
|
2143
2169
|
lastSyncedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
2144
2170
|
location?: Maybe<ManagedExternalCalendarEventLocation>;
|
|
2171
|
+
phoneNumber?: Maybe<Scalars['String']['output']>;
|
|
2145
2172
|
resourceId: Scalars['String']['output'];
|
|
2146
2173
|
resourceType: ExternalCalendarEventResourceType;
|
|
2147
2174
|
showAs: ShowAs;
|
|
@@ -2161,6 +2188,7 @@ export type ManagedExternalCalendarEventCreateInput = {
|
|
|
2161
2188
|
hash?: InputMaybe<Scalars['String']['input']>;
|
|
2162
2189
|
location?: InputMaybe<ManagedExternalCalendarEventLocationInput>;
|
|
2163
2190
|
meetingRoomId?: InputMaybe<Scalars['ID']['input']>;
|
|
2191
|
+
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
2164
2192
|
resourceId: Scalars['String']['input'];
|
|
2165
2193
|
resourceType: ExternalCalendarEventResourceType;
|
|
2166
2194
|
showAs: ShowAs;
|
|
@@ -2196,6 +2224,7 @@ export type ManagedExternalCalendarEventPatchInput = {
|
|
|
2196
2224
|
hash?: InputMaybe<Scalars['String']['input']>;
|
|
2197
2225
|
location?: InputMaybe<ManagedExternalCalendarEventLocationInput>;
|
|
2198
2226
|
meetingRoomId?: InputMaybe<Scalars['ID']['input']>;
|
|
2227
|
+
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
2199
2228
|
resourceId?: InputMaybe<Scalars['String']['input']>;
|
|
2200
2229
|
resourceType?: InputMaybe<ExternalCalendarEventResourceType>;
|
|
2201
2230
|
showAs?: InputMaybe<ShowAs>;
|
|
@@ -3343,6 +3372,15 @@ export type PasswordAuthenticationEnabledEnterpriseSetting = {
|
|
|
3343
3372
|
/** Whether password authentication is used. */
|
|
3344
3373
|
value: Scalars['Boolean']['output'];
|
|
3345
3374
|
};
|
|
3375
|
+
export type PexipInfinityCall = {
|
|
3376
|
+
conferenceNode: Scalars['String']['output'];
|
|
3377
|
+
dialInCode: Scalars['String']['output'];
|
|
3378
|
+
dialInNumber: Scalars['String']['output'];
|
|
3379
|
+
id: Scalars['ID']['output'];
|
|
3380
|
+
pin: Scalars['String']['output'];
|
|
3381
|
+
vmrId: Scalars['Int']['output'];
|
|
3382
|
+
vmrName: Scalars['String']['output'];
|
|
3383
|
+
};
|
|
3346
3384
|
export type PexipVPaaSParticipant = {
|
|
3347
3385
|
pexipVPaaSApiAddress: Scalars['String']['output'];
|
|
3348
3386
|
pexipVPaaSMeetingId: Scalars['String']['output'];
|
|
@@ -3371,6 +3409,7 @@ export type Query = {
|
|
|
3371
3409
|
apiClients: Array<ApiClient>;
|
|
3372
3410
|
appliedTemplates: AppliedTemplateConnection;
|
|
3373
3411
|
appointment: Appointment;
|
|
3412
|
+
appointmentCommunications: Array<Communication>;
|
|
3374
3413
|
appointmentParticipant: AppointmentParticipant;
|
|
3375
3414
|
appointmentUnavailabilityForEmployee: Array<Unavailability>;
|
|
3376
3415
|
appointments: AppointmentConnection;
|
|
@@ -3441,6 +3480,7 @@ export type Query = {
|
|
|
3441
3480
|
officeEmployeeCoverageRegionSchedulingSettings: Array<OfficeEmployeeCoverageRegionSchedulingSetting>;
|
|
3442
3481
|
officeEmployeeSubjectCoverageRegionSchedulingSettings: Array<OfficeEmployeeSubjectCoverageRegionSchedulingSetting>;
|
|
3443
3482
|
offices: OfficeConnection;
|
|
3483
|
+
pexipInfinityCall: PexipInfinityCall;
|
|
3444
3484
|
question: Question;
|
|
3445
3485
|
questions: Array<Question>;
|
|
3446
3486
|
regions: RegionConnection;
|
|
@@ -3449,6 +3489,7 @@ export type Query = {
|
|
|
3449
3489
|
schedulableMeetingTypes: Array<MeetingType>;
|
|
3450
3490
|
schedulableOffices: Array<Office>;
|
|
3451
3491
|
schedulableSubjects: Array<Subject>;
|
|
3492
|
+
scheduledAppointmentCommunications: Array<ScheduledCommunication>;
|
|
3452
3493
|
searchRegions: Array<Region>;
|
|
3453
3494
|
staticTranslationOverrides: Array<StaticTranslationOverride>;
|
|
3454
3495
|
staticTranslations: Scalars['JSONObject']['output'];
|
|
@@ -3528,6 +3569,11 @@ export type QueryAppliedTemplatesArgs = {
|
|
|
3528
3569
|
export type QueryAppointmentArgs = {
|
|
3529
3570
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
3530
3571
|
token?: InputMaybe<Scalars['String']['input']>;
|
|
3572
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
3573
|
+
};
|
|
3574
|
+
export type QueryAppointmentCommunicationsArgs = {
|
|
3575
|
+
appointmentId: Scalars['ID']['input'];
|
|
3576
|
+
sort?: InputMaybe<Array<CommunicationSort>>;
|
|
3531
3577
|
};
|
|
3532
3578
|
export type QueryAppointmentParticipantArgs = {
|
|
3533
3579
|
token: Scalars['String']['input'];
|
|
@@ -3986,6 +4032,9 @@ export type QueryOfficesArgs = {
|
|
|
3986
4032
|
virtual?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3987
4033
|
withDeleted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3988
4034
|
};
|
|
4035
|
+
export type QueryPexipInfinityCallArgs = {
|
|
4036
|
+
token: Scalars['String']['input'];
|
|
4037
|
+
};
|
|
3989
4038
|
export type QueryQuestionArgs = {
|
|
3990
4039
|
id: Scalars['ID']['input'];
|
|
3991
4040
|
};
|
|
@@ -4111,6 +4160,11 @@ export type QuerySchedulableSubjectsArgs = {
|
|
|
4111
4160
|
subjectGroupIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4112
4161
|
subjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4113
4162
|
};
|
|
4163
|
+
export type QueryScheduledAppointmentCommunicationsArgs = {
|
|
4164
|
+
appointmentId: Scalars['ID']['input'];
|
|
4165
|
+
communicationType?: InputMaybe<Array<CommunicationType>>;
|
|
4166
|
+
sort?: InputMaybe<Array<ScheduledCommunicationSort>>;
|
|
4167
|
+
};
|
|
4114
4168
|
export type QuerySearchRegionsArgs = {
|
|
4115
4169
|
code?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4116
4170
|
countryCode?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4232,6 +4286,8 @@ export type QueryWebhookConfigurationArgs = {
|
|
|
4232
4286
|
id: Scalars['ID']['input'];
|
|
4233
4287
|
};
|
|
4234
4288
|
export type QueryWebhookConfigurationsArgs = {
|
|
4289
|
+
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4290
|
+
eventType?: InputMaybe<Array<WebhookEventType>>;
|
|
4235
4291
|
withDeleted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4236
4292
|
};
|
|
4237
4293
|
export type QueryWebhookDeliveriesArgs = {
|
|
@@ -4366,6 +4422,22 @@ export type RenderedTemplateMeta = {
|
|
|
4366
4422
|
timeZone: Scalars['String']['output'];
|
|
4367
4423
|
};
|
|
4368
4424
|
export type ResourceType = 'API_CLIENT' | 'APPOINTMENT' | 'CUSTOMER' | 'EMPLOYEE' | 'ENTERPRISE_SETTING' | 'EXTERNAL_CALENDAR_ACCOUNT' | 'LEAD_SEGMENT' | 'LISTING' | 'MEETING_TYPE' | 'OFFICE' | 'OFFICE_RELATION' | 'SUBJECT' | 'SUBJECT_GROUP';
|
|
4425
|
+
export type ScheduledCommunication = {
|
|
4426
|
+
channel: CommunicationChannel;
|
|
4427
|
+
communicationReceiver: CommunicationReceiver;
|
|
4428
|
+
communicationType: CommunicationType;
|
|
4429
|
+
correlationId: Scalars['String']['output'];
|
|
4430
|
+
createdAt: Scalars['ISO8601']['output'];
|
|
4431
|
+
eventType: Scalars['String']['output'];
|
|
4432
|
+
resourceId: Scalars['Int']['output'];
|
|
4433
|
+
resourceType: CommunicationResourceType;
|
|
4434
|
+
resourceVersion?: Maybe<Scalars['Int']['output']>;
|
|
4435
|
+
scheduledAt: Scalars['ISO8601']['output'];
|
|
4436
|
+
};
|
|
4437
|
+
export type ScheduledCommunicationSort = {
|
|
4438
|
+
direction: SortDirection;
|
|
4439
|
+
field: SortableScheduledCommunicationFields;
|
|
4440
|
+
};
|
|
4369
4441
|
export type ScimIntegration = BaseIntegration & {
|
|
4370
4442
|
active: Scalars['Boolean']['output'];
|
|
4371
4443
|
authToken?: Maybe<Scalars['String']['output']>;
|
|
@@ -4478,6 +4550,7 @@ export type SortableAppointmentFields = 'createdAt' | 'externalId' | 'id' | 'sta
|
|
|
4478
4550
|
export type SortableAuditLogFields = 'event' | 'id' | 'modifiedAt' | 'resourceId' | 'resourceType';
|
|
4479
4551
|
export type SortableAvailabilityTemplateFields = 'id' | 'name' | 'order' | 'type';
|
|
4480
4552
|
export type SortableCallbackRequestFields = 'createdAt' | 'externalId' | 'id' | 'updatedAt';
|
|
4553
|
+
export type SortableCommunicationFields = 'processedAt';
|
|
4481
4554
|
export type SortableCustomerFields = 'createdAt' | 'email' | 'firstName' | 'id' | 'lastName' | 'updatedAt';
|
|
4482
4555
|
export type SortableEmployeeFields = 'createdAt' | 'email' | 'externalId' | 'firstName' | 'id' | 'lastName' | 'status' | 'updatedAt' | 'username';
|
|
4483
4556
|
export type SortableFileFields = 'blobName' | 'createdAt' | 'id' | 'originalFileName' | 'scanResultType' | 'updatedAt';
|
|
@@ -4488,6 +4561,7 @@ export type SortableManagedExternalCalendarEventFields = 'createdAt' | 'updatedA
|
|
|
4488
4561
|
export type SortableMeetingRoomFields = 'active' | 'capacity' | 'createdAt' | 'email' | 'externalId' | 'id' | 'name' | 'updatedAt';
|
|
4489
4562
|
export type SortableOfficeFields = 'active' | 'createdAt' | 'externalId' | 'id' | 'name' | 'updatedAt';
|
|
4490
4563
|
export type SortableRegionFields = 'code' | 'countryCode' | 'id' | 'level' | 'name' | 'parentId';
|
|
4564
|
+
export type SortableScheduledCommunicationFields = 'scheduledAt';
|
|
4491
4565
|
export type SortableSubjectFields = 'createdAt' | 'externalId' | 'id' | 'name' | 'order' | 'subjectGroupId' | 'subjectGroupName' | 'updatedAt';
|
|
4492
4566
|
export type SortableSubjectGroupFields = 'createdAt' | 'externalId' | 'id' | 'name' | 'order' | 'updatedAt';
|
|
4493
4567
|
export type StaticTranslationModule = 'BACKOFFICE_APP' | 'CALENDAR_EVENT_TEMPLATE' | 'EMAIL_TEMPLATE' | 'INSIGHTS' | 'PLUGIN' | 'TEXT_MESSAGE_TEMPLATE' | 'VIDEO';
|
|
@@ -4800,7 +4874,7 @@ export type SubjectTranslationsPatchInput = {
|
|
|
4800
4874
|
};
|
|
4801
4875
|
export type TemplateContext = 'APPOINTMENT' | 'AVAILABILITY' | 'CALLBACK_REQUEST' | 'EMPLOYEE' | 'EXTERNAL_CALENDAR_ACCOUNT' | 'LISTING_TIME_SLOT' | 'WEBHOOK_DELIVERY';
|
|
4802
4876
|
export type TemplateReceiverType = 'CUSTOMER' | 'EMPLOYEE' | 'ENTERPRISE' | 'OFFICE';
|
|
4803
|
-
export type TextMessageProvider = 'DEFAULT' | 'PRETEND' | 'SPRYNG' | 'TWILIO';
|
|
4877
|
+
export type TextMessageProvider = 'DEFAULT' | 'PRETEND' | 'SPRYNG' | 'TWILIO' | 'WEBHOOK';
|
|
4804
4878
|
export type TextMessageProviderEnterpriseSetting = {
|
|
4805
4879
|
createdAt: Scalars['ISO8601']['output'];
|
|
4806
4880
|
/** 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. */
|
|
@@ -5010,7 +5084,7 @@ export type ValidatorTranslationsCreateInput = {
|
|
|
5010
5084
|
export type ValidatorTranslationsPatchInput = {
|
|
5011
5085
|
errorMessage?: InputMaybe<Array<TranslationObjectInput>>;
|
|
5012
5086
|
};
|
|
5013
|
-
export type VideoProvider = 'EXTERNAL_PROVIDER_ACCOUNT' | 'MICROSOFT_TEAMS_APPLICATION_AUTH' | 'PEXIP' | 'STATIC' | 'TEMPLATE_GENERATED_URL';
|
|
5087
|
+
export type VideoProvider = 'EXTERNAL_PROVIDER_ACCOUNT' | 'MICROSOFT_TEAMS_APPLICATION_AUTH' | 'PEXIP' | 'PEXIP_INFINITY' | 'STATIC' | 'TEMPLATE_GENERATED_URL';
|
|
5014
5088
|
export type VideoProviderEnterpriseSetting = {
|
|
5015
5089
|
createdAt: Scalars['ISO8601']['output'];
|
|
5016
5090
|
/** 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. */
|
|
@@ -5113,7 +5187,7 @@ export type WebhookDeliveryEdge = {
|
|
|
5113
5187
|
cursor: Scalars['String']['output'];
|
|
5114
5188
|
node: WebhookDelivery;
|
|
5115
5189
|
};
|
|
5116
|
-
export type WebhookEventType = 'appointment_create' | 'appointment_update' | 'callback_request_create' | 'callback_request_update';
|
|
5190
|
+
export type WebhookEventType = 'appointment_create' | 'appointment_update' | 'callback_request_create' | 'callback_request_update' | 'communication_send';
|
|
5117
5191
|
export type ActiveLanguagesInput = {
|
|
5118
5192
|
manageable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5119
5193
|
/** The languages supported by the enterprise. */
|