@pexip-engage-public/graphql 1.0.73-canary-20250526074113 → 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 +2 -1
- 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/src/schema.ts
CHANGED
|
@@ -950,6 +950,21 @@ export type CallbackRequestsEnabledEnterpriseSetting = {
|
|
|
950
950
|
value: Scalars['Boolean']['output'];
|
|
951
951
|
};
|
|
952
952
|
|
|
953
|
+
export type Communication = {
|
|
954
|
+
channel: CommunicationChannel;
|
|
955
|
+
communicationReceiver: CommunicationReceiver;
|
|
956
|
+
communicationType: CommunicationType;
|
|
957
|
+
correlationId: Scalars['String']['output'];
|
|
958
|
+
createdAt: Scalars['ISO8601']['output'];
|
|
959
|
+
eventType: Scalars['String']['output'];
|
|
960
|
+
id: Scalars['ID']['output'];
|
|
961
|
+
processedAt: Scalars['ISO8601']['output'];
|
|
962
|
+
resourceId: Scalars['Int']['output'];
|
|
963
|
+
resourceType: CommunicationResourceType;
|
|
964
|
+
resourceVersion?: Maybe<Scalars['Int']['output']>;
|
|
965
|
+
scheduledAt: Scalars['ISO8601']['output'];
|
|
966
|
+
};
|
|
967
|
+
|
|
953
968
|
export type CommunicationChannel =
|
|
954
969
|
| 'EMAIL'
|
|
955
970
|
| 'TEXT_MESSAGE';
|
|
@@ -963,6 +978,21 @@ export type CommunicationEmailEnterpriseSetting = {
|
|
|
963
978
|
value?: Maybe<Scalars['String']['output']>;
|
|
964
979
|
};
|
|
965
980
|
|
|
981
|
+
export type CommunicationReceiver = Customer | Employee | Enterprise | Office | { __typename?: "%other" };
|
|
982
|
+
|
|
983
|
+
export type CommunicationResourceType =
|
|
984
|
+
| 'APPOINTMENT'
|
|
985
|
+
| 'CALLBACK_REQUEST';
|
|
986
|
+
|
|
987
|
+
export type CommunicationSort = {
|
|
988
|
+
direction: SortDirection;
|
|
989
|
+
field: SortableCommunicationFields;
|
|
990
|
+
};
|
|
991
|
+
|
|
992
|
+
export type CommunicationType =
|
|
993
|
+
| 'NOTIFICATION'
|
|
994
|
+
| 'REMINDER';
|
|
995
|
+
|
|
966
996
|
export type Customer = {
|
|
967
997
|
anonymizedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
968
998
|
company?: Maybe<Scalars['String']['output']>;
|
|
@@ -1260,7 +1290,8 @@ export type EmailProvider =
|
|
|
1260
1290
|
| 'MANDRILL'
|
|
1261
1291
|
| 'MICROSOFT_GRAPH_API'
|
|
1262
1292
|
| 'PRETEND'
|
|
1263
|
-
| 'SMTP'
|
|
1293
|
+
| 'SMTP'
|
|
1294
|
+
| 'WEBHOOK';
|
|
1264
1295
|
|
|
1265
1296
|
export type EmailProviderEnterpriseSetting = {
|
|
1266
1297
|
createdAt: Scalars['ISO8601']['output'];
|
|
@@ -1513,6 +1544,10 @@ export type EmployeeTranslationsPatchInput = {
|
|
|
1513
1544
|
function?: InputMaybe<Array<TranslationObjectInput>>;
|
|
1514
1545
|
};
|
|
1515
1546
|
|
|
1547
|
+
export type Enterprise = {
|
|
1548
|
+
name: Scalars['String']['output'];
|
|
1549
|
+
};
|
|
1550
|
+
|
|
1516
1551
|
export type EnterpriseSettingTranslationInput = {
|
|
1517
1552
|
language: Language;
|
|
1518
1553
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2595,6 +2630,7 @@ export type ManagedExternalCalendarEvent = Managed & {
|
|
|
2595
2630
|
id: Scalars['String']['output'];
|
|
2596
2631
|
lastSyncedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
2597
2632
|
location?: Maybe<ManagedExternalCalendarEventLocation>;
|
|
2633
|
+
phoneNumber?: Maybe<Scalars['String']['output']>;
|
|
2598
2634
|
resourceId: Scalars['String']['output'];
|
|
2599
2635
|
resourceType: ExternalCalendarEventResourceType;
|
|
2600
2636
|
showAs: ShowAs;
|
|
@@ -2616,6 +2652,7 @@ export type ManagedExternalCalendarEventCreateInput = {
|
|
|
2616
2652
|
hash?: InputMaybe<Scalars['String']['input']>;
|
|
2617
2653
|
location?: InputMaybe<ManagedExternalCalendarEventLocationInput>;
|
|
2618
2654
|
meetingRoomId?: InputMaybe<Scalars['ID']['input']>;
|
|
2655
|
+
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
2619
2656
|
resourceId: Scalars['String']['input'];
|
|
2620
2657
|
resourceType: ExternalCalendarEventResourceType;
|
|
2621
2658
|
showAs: ShowAs;
|
|
@@ -2655,6 +2692,7 @@ export type ManagedExternalCalendarEventPatchInput = {
|
|
|
2655
2692
|
hash?: InputMaybe<Scalars['String']['input']>;
|
|
2656
2693
|
location?: InputMaybe<ManagedExternalCalendarEventLocationInput>;
|
|
2657
2694
|
meetingRoomId?: InputMaybe<Scalars['ID']['input']>;
|
|
2695
|
+
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
2658
2696
|
resourceId?: InputMaybe<Scalars['String']['input']>;
|
|
2659
2697
|
resourceType?: InputMaybe<ExternalCalendarEventResourceType>;
|
|
2660
2698
|
showAs?: InputMaybe<ShowAs>;
|
|
@@ -4205,6 +4243,16 @@ export type PasswordAuthenticationEnabledEnterpriseSetting = {
|
|
|
4205
4243
|
value: Scalars['Boolean']['output'];
|
|
4206
4244
|
};
|
|
4207
4245
|
|
|
4246
|
+
export type PexipInfinityCall = {
|
|
4247
|
+
conferenceNode: Scalars['String']['output'];
|
|
4248
|
+
dialInCode: Scalars['String']['output'];
|
|
4249
|
+
dialInNumber: Scalars['String']['output'];
|
|
4250
|
+
id: Scalars['ID']['output'];
|
|
4251
|
+
pin: Scalars['String']['output'];
|
|
4252
|
+
vmrId: Scalars['Int']['output'];
|
|
4253
|
+
vmrName: Scalars['String']['output'];
|
|
4254
|
+
};
|
|
4255
|
+
|
|
4208
4256
|
export type PexipVPaaSParticipant = {
|
|
4209
4257
|
pexipVPaaSApiAddress: Scalars['String']['output'];
|
|
4210
4258
|
pexipVPaaSMeetingId: Scalars['String']['output'];
|
|
@@ -4236,6 +4284,7 @@ export type Query = {
|
|
|
4236
4284
|
apiClients: Array<ApiClient>;
|
|
4237
4285
|
appliedTemplates: AppliedTemplateConnection;
|
|
4238
4286
|
appointment: Appointment;
|
|
4287
|
+
appointmentCommunications: Array<Communication>;
|
|
4239
4288
|
appointmentParticipant: AppointmentParticipant;
|
|
4240
4289
|
appointmentUnavailabilityForEmployee: Array<Unavailability>;
|
|
4241
4290
|
appointments: AppointmentConnection;
|
|
@@ -4306,6 +4355,7 @@ export type Query = {
|
|
|
4306
4355
|
officeEmployeeCoverageRegionSchedulingSettings: Array<OfficeEmployeeCoverageRegionSchedulingSetting>;
|
|
4307
4356
|
officeEmployeeSubjectCoverageRegionSchedulingSettings: Array<OfficeEmployeeSubjectCoverageRegionSchedulingSetting>;
|
|
4308
4357
|
offices: OfficeConnection;
|
|
4358
|
+
pexipInfinityCall: PexipInfinityCall;
|
|
4309
4359
|
question: Question;
|
|
4310
4360
|
questions: Array<Question>;
|
|
4311
4361
|
regions: RegionConnection;
|
|
@@ -4314,6 +4364,7 @@ export type Query = {
|
|
|
4314
4364
|
schedulableMeetingTypes: Array<MeetingType>;
|
|
4315
4365
|
schedulableOffices: Array<Office>;
|
|
4316
4366
|
schedulableSubjects: Array<Subject>;
|
|
4367
|
+
scheduledAppointmentCommunications: Array<ScheduledCommunication>;
|
|
4317
4368
|
searchRegions: Array<Region>;
|
|
4318
4369
|
staticTranslationOverrides: Array<StaticTranslationOverride>;
|
|
4319
4370
|
staticTranslations: Scalars['JSONObject']['output'];
|
|
@@ -4407,6 +4458,13 @@ export type QueryAppliedTemplatesArgs = {
|
|
|
4407
4458
|
export type QueryAppointmentArgs = {
|
|
4408
4459
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
4409
4460
|
token?: InputMaybe<Scalars['String']['input']>;
|
|
4461
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
4462
|
+
};
|
|
4463
|
+
|
|
4464
|
+
|
|
4465
|
+
export type QueryAppointmentCommunicationsArgs = {
|
|
4466
|
+
appointmentId: Scalars['ID']['input'];
|
|
4467
|
+
sort?: InputMaybe<Array<CommunicationSort>>;
|
|
4410
4468
|
};
|
|
4411
4469
|
|
|
4412
4470
|
|
|
@@ -4999,6 +5057,11 @@ export type QueryOfficesArgs = {
|
|
|
4999
5057
|
};
|
|
5000
5058
|
|
|
5001
5059
|
|
|
5060
|
+
export type QueryPexipInfinityCallArgs = {
|
|
5061
|
+
token: Scalars['String']['input'];
|
|
5062
|
+
};
|
|
5063
|
+
|
|
5064
|
+
|
|
5002
5065
|
export type QueryQuestionArgs = {
|
|
5003
5066
|
id: Scalars['ID']['input'];
|
|
5004
5067
|
};
|
|
@@ -5140,6 +5203,13 @@ export type QuerySchedulableSubjectsArgs = {
|
|
|
5140
5203
|
};
|
|
5141
5204
|
|
|
5142
5205
|
|
|
5206
|
+
export type QueryScheduledAppointmentCommunicationsArgs = {
|
|
5207
|
+
appointmentId: Scalars['ID']['input'];
|
|
5208
|
+
communicationType?: InputMaybe<Array<CommunicationType>>;
|
|
5209
|
+
sort?: InputMaybe<Array<ScheduledCommunicationSort>>;
|
|
5210
|
+
};
|
|
5211
|
+
|
|
5212
|
+
|
|
5143
5213
|
export type QuerySearchRegionsArgs = {
|
|
5144
5214
|
code?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5145
5215
|
countryCode?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5297,6 +5367,8 @@ export type QueryWebhookConfigurationArgs = {
|
|
|
5297
5367
|
|
|
5298
5368
|
|
|
5299
5369
|
export type QueryWebhookConfigurationsArgs = {
|
|
5370
|
+
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5371
|
+
eventType?: InputMaybe<Array<WebhookEventType>>;
|
|
5300
5372
|
withDeleted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5301
5373
|
};
|
|
5302
5374
|
|
|
@@ -5467,6 +5539,24 @@ export type ResourceType =
|
|
|
5467
5539
|
| 'SUBJECT'
|
|
5468
5540
|
| 'SUBJECT_GROUP';
|
|
5469
5541
|
|
|
5542
|
+
export type ScheduledCommunication = {
|
|
5543
|
+
channel: CommunicationChannel;
|
|
5544
|
+
communicationReceiver: CommunicationReceiver;
|
|
5545
|
+
communicationType: CommunicationType;
|
|
5546
|
+
correlationId: Scalars['String']['output'];
|
|
5547
|
+
createdAt: Scalars['ISO8601']['output'];
|
|
5548
|
+
eventType: Scalars['String']['output'];
|
|
5549
|
+
resourceId: Scalars['Int']['output'];
|
|
5550
|
+
resourceType: CommunicationResourceType;
|
|
5551
|
+
resourceVersion?: Maybe<Scalars['Int']['output']>;
|
|
5552
|
+
scheduledAt: Scalars['ISO8601']['output'];
|
|
5553
|
+
};
|
|
5554
|
+
|
|
5555
|
+
export type ScheduledCommunicationSort = {
|
|
5556
|
+
direction: SortDirection;
|
|
5557
|
+
field: SortableScheduledCommunicationFields;
|
|
5558
|
+
};
|
|
5559
|
+
|
|
5470
5560
|
export type ScimIntegration = BaseIntegration & {
|
|
5471
5561
|
active: Scalars['Boolean']['output'];
|
|
5472
5562
|
authToken?: Maybe<Scalars['String']['output']>;
|
|
@@ -5638,6 +5728,9 @@ export type SortableCallbackRequestFields =
|
|
|
5638
5728
|
| 'id'
|
|
5639
5729
|
| 'updatedAt';
|
|
5640
5730
|
|
|
5731
|
+
export type SortableCommunicationFields =
|
|
5732
|
+
| 'processedAt';
|
|
5733
|
+
|
|
5641
5734
|
export type SortableCustomerFields =
|
|
5642
5735
|
| 'createdAt'
|
|
5643
5736
|
| 'email'
|
|
@@ -5716,6 +5809,9 @@ export type SortableRegionFields =
|
|
|
5716
5809
|
| 'name'
|
|
5717
5810
|
| 'parentId';
|
|
5718
5811
|
|
|
5812
|
+
export type SortableScheduledCommunicationFields =
|
|
5813
|
+
| 'scheduledAt';
|
|
5814
|
+
|
|
5719
5815
|
export type SortableSubjectFields =
|
|
5720
5816
|
| 'createdAt'
|
|
5721
5817
|
| 'externalId'
|
|
@@ -6117,7 +6213,8 @@ export type TextMessageProvider =
|
|
|
6117
6213
|
| 'DEFAULT'
|
|
6118
6214
|
| 'PRETEND'
|
|
6119
6215
|
| 'SPRYNG'
|
|
6120
|
-
| 'TWILIO'
|
|
6216
|
+
| 'TWILIO'
|
|
6217
|
+
| 'WEBHOOK';
|
|
6121
6218
|
|
|
6122
6219
|
export type TextMessageProviderEnterpriseSetting = {
|
|
6123
6220
|
createdAt: Scalars['ISO8601']['output'];
|
|
@@ -6423,6 +6520,7 @@ export type VideoProvider =
|
|
|
6423
6520
|
| 'EXTERNAL_PROVIDER_ACCOUNT'
|
|
6424
6521
|
| 'MICROSOFT_TEAMS_APPLICATION_AUTH'
|
|
6425
6522
|
| 'PEXIP'
|
|
6523
|
+
| 'PEXIP_INFINITY'
|
|
6426
6524
|
| 'STATIC'
|
|
6427
6525
|
| 'TEMPLATE_GENERATED_URL';
|
|
6428
6526
|
|
|
@@ -6547,7 +6645,8 @@ export type WebhookEventType =
|
|
|
6547
6645
|
| 'appointment_create'
|
|
6548
6646
|
| 'appointment_update'
|
|
6549
6647
|
| 'callback_request_create'
|
|
6550
|
-
| 'callback_request_update'
|
|
6648
|
+
| 'callback_request_update'
|
|
6649
|
+
| 'communication_send';
|
|
6551
6650
|
|
|
6552
6651
|
export type ActiveLanguagesInput = {
|
|
6553
6652
|
manageable?: InputMaybe<Scalars['Boolean']['input']>;
|