@pexip-engage-public/graphql 1.0.70 → 1.0.71-canary-20250429150215
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 +7 -0
- package/dist/graphql-env.d.ts +11816 -10746
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +1515 -303
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +146 -17
- package/dist/schema.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/graphql-env.ts +1516 -304
- package/src/schema.ts +185 -20
package/src/schema.ts
CHANGED
|
@@ -54,6 +54,68 @@ export type AgentPrioritizationEnabledEnterpriseSetting = {
|
|
|
54
54
|
value: Scalars['Boolean']['output'];
|
|
55
55
|
};
|
|
56
56
|
|
|
57
|
+
export type AggregatedAppointmentInsightsInterval =
|
|
58
|
+
| 'DAY'
|
|
59
|
+
| 'MONTH'
|
|
60
|
+
| 'WEEK';
|
|
61
|
+
|
|
62
|
+
export type AggregatedAppointmentInsightsWeekStartsOn =
|
|
63
|
+
| 'MONDAY'
|
|
64
|
+
| 'SUNDAY';
|
|
65
|
+
|
|
66
|
+
export type AggregatedAvailabilityInsightsInterval =
|
|
67
|
+
| 'DAY'
|
|
68
|
+
| 'MONTH'
|
|
69
|
+
| 'WEEK';
|
|
70
|
+
|
|
71
|
+
export type AggregatedAvailabilityInsightsWeekStartsOn =
|
|
72
|
+
| 'MONDAY'
|
|
73
|
+
| 'SUNDAY';
|
|
74
|
+
|
|
75
|
+
export type AggregatedEmployeeAppointmentInsight = {
|
|
76
|
+
employeeId: Scalars['ID']['output'];
|
|
77
|
+
officeId: Scalars['ID']['output'];
|
|
78
|
+
officeMinutes: Scalars['Int']['output'];
|
|
79
|
+
onLocationMinutes: Scalars['Int']['output'];
|
|
80
|
+
phoneMinutes: Scalars['Int']['output'];
|
|
81
|
+
startDateOfInterval: Scalars['CalendarDate']['output'];
|
|
82
|
+
totalMinutes: Scalars['Int']['output'];
|
|
83
|
+
videoMinutes: Scalars['Int']['output'];
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export type AggregatedEmployeeAvailabilityInsight = {
|
|
87
|
+
appointmentUnavailabilityMinutes: Scalars['Int']['output'];
|
|
88
|
+
bookableMinutes: Scalars['Int']['output'];
|
|
89
|
+
definedAvailabilityMinutes: Scalars['Int']['output'];
|
|
90
|
+
employeeId: Scalars['ID']['output'];
|
|
91
|
+
externalCalendarUnavailabilityMinutes: Scalars['Int']['output'];
|
|
92
|
+
gapTime: Scalars['Int']['output'];
|
|
93
|
+
officeId: Scalars['ID']['output'];
|
|
94
|
+
startDateOfInterval: Scalars['CalendarDate']['output'];
|
|
95
|
+
unavailabilityMinutes: Scalars['Int']['output'];
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
export type AggregatedOfficeAppointmentInsight = {
|
|
99
|
+
officeId: Scalars['ID']['output'];
|
|
100
|
+
officeMinutes: Scalars['Int']['output'];
|
|
101
|
+
onLocationMinutes: Scalars['Int']['output'];
|
|
102
|
+
phoneMinutes: Scalars['Int']['output'];
|
|
103
|
+
startDateOfInterval: Scalars['CalendarDate']['output'];
|
|
104
|
+
totalMinutes: Scalars['Int']['output'];
|
|
105
|
+
videoMinutes: Scalars['Int']['output'];
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
export type AggregatedOfficeAvailabilityInsight = {
|
|
109
|
+
appointmentUnavailabilityMinutes: Scalars['Int']['output'];
|
|
110
|
+
bookableMinutes: Scalars['Int']['output'];
|
|
111
|
+
definedAvailabilityMinutes: Scalars['Int']['output'];
|
|
112
|
+
externalCalendarUnavailabilityMinutes: Scalars['Int']['output'];
|
|
113
|
+
gapTime: Scalars['Int']['output'];
|
|
114
|
+
officeId: Scalars['ID']['output'];
|
|
115
|
+
startDateOfInterval: Scalars['CalendarDate']['output'];
|
|
116
|
+
unavailabilityMinutes: Scalars['Int']['output'];
|
|
117
|
+
};
|
|
118
|
+
|
|
57
119
|
export type AllowedExternalCalendarAccountProvidersEnterpriseSetting = {
|
|
58
120
|
createdAt: Scalars['ISO8601']['output'];
|
|
59
121
|
/** 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. */
|
|
@@ -998,16 +1060,6 @@ export type CustomerSort = {
|
|
|
998
1060
|
field: SortableCustomerFields;
|
|
999
1061
|
};
|
|
1000
1062
|
|
|
1001
|
-
export type DailyAvailabilityInsight = {
|
|
1002
|
-
appointmentUnavailabilityMinutes: Scalars['Int']['output'];
|
|
1003
|
-
bookableMinutes: Scalars['Int']['output'];
|
|
1004
|
-
date: Scalars['ISO8601']['output'];
|
|
1005
|
-
definedAvailabilityMinutes: Scalars['Int']['output'];
|
|
1006
|
-
employeeId: Scalars['ID']['output'];
|
|
1007
|
-
externalCalendarUnavailabilityMinutes: Scalars['Int']['output'];
|
|
1008
|
-
officeId: Scalars['ID']['output'];
|
|
1009
|
-
};
|
|
1010
|
-
|
|
1011
1063
|
export type DataRetentionDurationEnterpriseSetting = {
|
|
1012
1064
|
createdAt: Scalars['ISO8601']['output'];
|
|
1013
1065
|
/** 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. */
|
|
@@ -2540,6 +2592,7 @@ export type ManagedExternalCalendarEvent = Managed & {
|
|
|
2540
2592
|
id: Scalars['String']['output'];
|
|
2541
2593
|
lastSyncedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
2542
2594
|
location?: Maybe<ManagedExternalCalendarEventLocation>;
|
|
2595
|
+
phoneNumber?: Maybe<Scalars['String']['output']>;
|
|
2543
2596
|
resourceId: Scalars['String']['output'];
|
|
2544
2597
|
resourceType: ExternalCalendarEventResourceType;
|
|
2545
2598
|
showAs: ShowAs;
|
|
@@ -2561,6 +2614,7 @@ export type ManagedExternalCalendarEventCreateInput = {
|
|
|
2561
2614
|
hash?: InputMaybe<Scalars['String']['input']>;
|
|
2562
2615
|
location?: InputMaybe<ManagedExternalCalendarEventLocationInput>;
|
|
2563
2616
|
meetingRoomId?: InputMaybe<Scalars['ID']['input']>;
|
|
2617
|
+
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
2564
2618
|
resourceId: Scalars['String']['input'];
|
|
2565
2619
|
resourceType: ExternalCalendarEventResourceType;
|
|
2566
2620
|
showAs: ShowAs;
|
|
@@ -2600,6 +2654,7 @@ export type ManagedExternalCalendarEventPatchInput = {
|
|
|
2600
2654
|
hash?: InputMaybe<Scalars['String']['input']>;
|
|
2601
2655
|
location?: InputMaybe<ManagedExternalCalendarEventLocationInput>;
|
|
2602
2656
|
meetingRoomId?: InputMaybe<Scalars['ID']['input']>;
|
|
2657
|
+
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
2603
2658
|
resourceId?: InputMaybe<Scalars['String']['input']>;
|
|
2604
2659
|
resourceType?: InputMaybe<ExternalCalendarEventResourceType>;
|
|
2605
2660
|
showAs?: InputMaybe<ShowAs>;
|
|
@@ -2878,6 +2933,8 @@ export type Mutation = {
|
|
|
2878
2933
|
createOffice: Office;
|
|
2879
2934
|
createOfficeRelation: OfficeRelation;
|
|
2880
2935
|
createQuestion: Question;
|
|
2936
|
+
createSamlIntegration: SamlIntegration;
|
|
2937
|
+
createScimToken: Scalars['String']['output'];
|
|
2881
2938
|
createSessionConfigSessionEvent: Scalars['Boolean']['output'];
|
|
2882
2939
|
createSessionDataSessionEvent: Scalars['Boolean']['output'];
|
|
2883
2940
|
createStepShownSessionEvent: Scalars['Boolean']['output'];
|
|
@@ -2912,6 +2969,7 @@ export type Mutation = {
|
|
|
2912
2969
|
deleteOffice: Office;
|
|
2913
2970
|
deleteOfficeRelation: OfficeRelation;
|
|
2914
2971
|
deleteQuestion: Question;
|
|
2972
|
+
deleteSamlIntegration: SamlIntegration;
|
|
2915
2973
|
deleteStorageAccountConfig: StorageAccountConfig;
|
|
2916
2974
|
deleteSubject: Subject;
|
|
2917
2975
|
deleteSubjectGroup: SubjectGroup;
|
|
@@ -2950,6 +3008,7 @@ export type Mutation = {
|
|
|
2950
3008
|
patchOffice: Office;
|
|
2951
3009
|
patchOfficeCallbackRequestSetting: OfficeCallbackRequestSetting;
|
|
2952
3010
|
patchQuestion: Question;
|
|
3011
|
+
patchSamlIntegration: SamlIntegration;
|
|
2953
3012
|
patchStaticTranslationOverrides: Array<StaticTranslationOverride>;
|
|
2954
3013
|
patchStorageAccountConfig: StorageAccountConfig;
|
|
2955
3014
|
patchSubject: Subject;
|
|
@@ -3019,6 +3078,7 @@ export type Mutation = {
|
|
|
3019
3078
|
syncMeetingRooms: Scalars['Boolean']['output'];
|
|
3020
3079
|
syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
|
|
3021
3080
|
testWebhookConfiguration: WebhookDelivery;
|
|
3081
|
+
uploadSamlIdentityProviderMetadata: SamlIntegration;
|
|
3022
3082
|
upsertMicrosoftGraphAPIEmailConfiguration: MicrosoftGraphApiEmailProviderConfiguration;
|
|
3023
3083
|
upsertOfficeRelation: GroupedOfficeRelation;
|
|
3024
3084
|
};
|
|
@@ -3575,6 +3635,11 @@ export type MutationPatchQuestionArgs = {
|
|
|
3575
3635
|
};
|
|
3576
3636
|
|
|
3577
3637
|
|
|
3638
|
+
export type MutationPatchSamlIntegrationArgs = {
|
|
3639
|
+
input: SamlIntegrationPatchInput;
|
|
3640
|
+
};
|
|
3641
|
+
|
|
3642
|
+
|
|
3578
3643
|
export type MutationPatchStaticTranslationOverridesArgs = {
|
|
3579
3644
|
staticTranslationOverridesPatchInput: Array<StaticTranslationOverridePatchInput>;
|
|
3580
3645
|
};
|
|
@@ -3903,6 +3968,11 @@ export type MutationTestWebhookConfigurationArgs = {
|
|
|
3903
3968
|
};
|
|
3904
3969
|
|
|
3905
3970
|
|
|
3971
|
+
export type MutationUploadSamlIdentityProviderMetadataArgs = {
|
|
3972
|
+
metadataUrl: Scalars['String']['input'];
|
|
3973
|
+
};
|
|
3974
|
+
|
|
3975
|
+
|
|
3906
3976
|
export type MutationUpsertMicrosoftGraphApiEmailConfigurationArgs = {
|
|
3907
3977
|
input: MicrosoftGraphApiEmailProviderConfigurationInput;
|
|
3908
3978
|
};
|
|
@@ -4173,6 +4243,10 @@ export type PutAppointmentAnswersInput = {
|
|
|
4173
4243
|
|
|
4174
4244
|
export type Query = {
|
|
4175
4245
|
activeMeetingTypes: Array<MeetingType>;
|
|
4246
|
+
aggregatedEmployeeAppointmentInsights: Array<AggregatedEmployeeAppointmentInsight>;
|
|
4247
|
+
aggregatedEmployeeAvailabilityInsights: Array<AggregatedEmployeeAvailabilityInsight>;
|
|
4248
|
+
aggregatedOfficeAppointmentInsights: Array<AggregatedOfficeAppointmentInsight>;
|
|
4249
|
+
aggregatedOfficeAvailabilityInsights: Array<AggregatedOfficeAvailabilityInsight>;
|
|
4176
4250
|
answerOption: AnswerOption;
|
|
4177
4251
|
apiClients: Array<ApiClient>;
|
|
4178
4252
|
appliedTemplates: AppliedTemplateConnection;
|
|
@@ -4195,7 +4269,6 @@ export type Query = {
|
|
|
4195
4269
|
callbackRequests: CallbackRequestConnection;
|
|
4196
4270
|
customer: Customer;
|
|
4197
4271
|
customers: CustomerConnection;
|
|
4198
|
-
dailyAvailabilityInsights: Array<DailyAvailabilityInsight>;
|
|
4199
4272
|
definedAvailability: Array<DefinedAvailability>;
|
|
4200
4273
|
definedAvailabilityEvents: Array<DefinedAvailabilityEvent>;
|
|
4201
4274
|
emailTemplate: EmailTemplate;
|
|
@@ -4251,11 +4324,14 @@ export type Query = {
|
|
|
4251
4324
|
question: Question;
|
|
4252
4325
|
questions: Array<Question>;
|
|
4253
4326
|
regions: RegionConnection;
|
|
4327
|
+
samlIntegration?: Maybe<SamlIntegration>;
|
|
4254
4328
|
schedulableEmployees: Array<Employee>;
|
|
4255
4329
|
schedulableMeetingRooms: Array<MeetingRoom>;
|
|
4256
4330
|
schedulableMeetingTypes: Array<MeetingType>;
|
|
4257
4331
|
schedulableOffices: Array<Office>;
|
|
4258
4332
|
schedulableSubjects: Array<Subject>;
|
|
4333
|
+
scimEndpoint: Scalars['String']['output'];
|
|
4334
|
+
scimTokens: Array<ScimToken>;
|
|
4259
4335
|
searchRegions: Array<Region>;
|
|
4260
4336
|
staticTranslationOverrides: Array<StaticTranslationOverride>;
|
|
4261
4337
|
staticTranslations: Scalars['JSONObject']['output'];
|
|
@@ -4283,6 +4359,50 @@ export type Query = {
|
|
|
4283
4359
|
};
|
|
4284
4360
|
|
|
4285
4361
|
|
|
4362
|
+
export type QueryAggregatedEmployeeAppointmentInsightsArgs = {
|
|
4363
|
+
employeeId?: InputMaybe<Scalars['ID']['input']>;
|
|
4364
|
+
from: Scalars['ISO8601']['input'];
|
|
4365
|
+
interval: AggregatedAppointmentInsightsInterval;
|
|
4366
|
+
officeId: Scalars['ID']['input'];
|
|
4367
|
+
timeZone: Scalars['String']['input'];
|
|
4368
|
+
to: Scalars['ISO8601']['input'];
|
|
4369
|
+
weekStartsOn?: InputMaybe<AggregatedAppointmentInsightsWeekStartsOn>;
|
|
4370
|
+
};
|
|
4371
|
+
|
|
4372
|
+
|
|
4373
|
+
export type QueryAggregatedEmployeeAvailabilityInsightsArgs = {
|
|
4374
|
+
employeeId?: InputMaybe<Scalars['ID']['input']>;
|
|
4375
|
+
from: Scalars['ISO8601']['input'];
|
|
4376
|
+
interval: AggregatedAvailabilityInsightsInterval;
|
|
4377
|
+
officeId: Scalars['ID']['input'];
|
|
4378
|
+
timeZone: Scalars['String']['input'];
|
|
4379
|
+
to: Scalars['ISO8601']['input'];
|
|
4380
|
+
weekStartsOn?: InputMaybe<AggregatedAvailabilityInsightsWeekStartsOn>;
|
|
4381
|
+
};
|
|
4382
|
+
|
|
4383
|
+
|
|
4384
|
+
export type QueryAggregatedOfficeAppointmentInsightsArgs = {
|
|
4385
|
+
employeeId?: InputMaybe<Scalars['ID']['input']>;
|
|
4386
|
+
from: Scalars['ISO8601']['input'];
|
|
4387
|
+
interval: AggregatedAppointmentInsightsInterval;
|
|
4388
|
+
officeId: Scalars['ID']['input'];
|
|
4389
|
+
timeZone: Scalars['String']['input'];
|
|
4390
|
+
to: Scalars['ISO8601']['input'];
|
|
4391
|
+
weekStartsOn?: InputMaybe<AggregatedAppointmentInsightsWeekStartsOn>;
|
|
4392
|
+
};
|
|
4393
|
+
|
|
4394
|
+
|
|
4395
|
+
export type QueryAggregatedOfficeAvailabilityInsightsArgs = {
|
|
4396
|
+
employeeId?: InputMaybe<Scalars['ID']['input']>;
|
|
4397
|
+
from: Scalars['ISO8601']['input'];
|
|
4398
|
+
interval: AggregatedAvailabilityInsightsInterval;
|
|
4399
|
+
officeId: Scalars['ID']['input'];
|
|
4400
|
+
timeZone: Scalars['String']['input'];
|
|
4401
|
+
to: Scalars['ISO8601']['input'];
|
|
4402
|
+
weekStartsOn?: InputMaybe<AggregatedAvailabilityInsightsWeekStartsOn>;
|
|
4403
|
+
};
|
|
4404
|
+
|
|
4405
|
+
|
|
4286
4406
|
export type QueryAnswerOptionArgs = {
|
|
4287
4407
|
id: Scalars['ID']['input'];
|
|
4288
4408
|
};
|
|
@@ -4475,15 +4595,6 @@ export type QueryCustomersArgs = {
|
|
|
4475
4595
|
};
|
|
4476
4596
|
|
|
4477
4597
|
|
|
4478
|
-
export type QueryDailyAvailabilityInsightsArgs = {
|
|
4479
|
-
employeeId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4480
|
-
from: Scalars['ISO8601']['input'];
|
|
4481
|
-
officeId: Scalars['ID']['input'];
|
|
4482
|
-
timeZone: Scalars['String']['input'];
|
|
4483
|
-
to: Scalars['ISO8601']['input'];
|
|
4484
|
-
};
|
|
4485
|
-
|
|
4486
|
-
|
|
4487
4598
|
export type QueryDefinedAvailabilityArgs = {
|
|
4488
4599
|
employeeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4489
4600
|
from: Scalars['ISO8601']['input'];
|
|
@@ -5374,6 +5485,52 @@ export type ResourceType =
|
|
|
5374
5485
|
| 'SUBJECT'
|
|
5375
5486
|
| 'SUBJECT_GROUP';
|
|
5376
5487
|
|
|
5488
|
+
export type SamlIntegration = {
|
|
5489
|
+
active: Scalars['Boolean']['output'];
|
|
5490
|
+
forceAuthentication: Scalars['Boolean']['output'];
|
|
5491
|
+
identityProviderMetadataUrl?: Maybe<Scalars['String']['output']>;
|
|
5492
|
+
identityProviderSignatureKey?: Maybe<SamlIntegrationIdentityProviderKey>;
|
|
5493
|
+
serviceProviderEncryptionKeys: Array<SamlIntegrationServiceProviderKey>;
|
|
5494
|
+
serviceProviderMetadataUrl: Scalars['String']['output'];
|
|
5495
|
+
serviceProviderSignatureKeys: Array<SamlIntegrationServiceProviderKey>;
|
|
5496
|
+
signServiceProviderMetadata: Scalars['Boolean']['output'];
|
|
5497
|
+
singleLogoutServiceUrl?: Maybe<Scalars['String']['output']>;
|
|
5498
|
+
singleSignOnServiceUrl?: Maybe<Scalars['String']['output']>;
|
|
5499
|
+
validateSignature: Scalars['Boolean']['output'];
|
|
5500
|
+
wantAssertionsEncrypted: Scalars['Boolean']['output'];
|
|
5501
|
+
wantAssertionsSigned: Scalars['Boolean']['output'];
|
|
5502
|
+
wantAuthnRequestsSigned: Scalars['Boolean']['output'];
|
|
5503
|
+
};
|
|
5504
|
+
|
|
5505
|
+
export type SamlIntegrationIdentityProviderKey = {
|
|
5506
|
+
certificate: Scalars['String']['output'];
|
|
5507
|
+
expiresAt: Scalars['ISO8601']['output'];
|
|
5508
|
+
};
|
|
5509
|
+
|
|
5510
|
+
export type SamlIntegrationKeyStatus =
|
|
5511
|
+
| 'ACTIVE'
|
|
5512
|
+
| 'DISABLED'
|
|
5513
|
+
| 'PASSIVE';
|
|
5514
|
+
|
|
5515
|
+
export type SamlIntegrationPatchInput = {
|
|
5516
|
+
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5517
|
+
forceAuthentication?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5518
|
+
signServiceProviderMetadata?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5519
|
+
validateSignature?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5520
|
+
wantAssertionsEncrypted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5521
|
+
wantAssertionsSigned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5522
|
+
wantAuthnRequestsSigned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5523
|
+
};
|
|
5524
|
+
|
|
5525
|
+
export type SamlIntegrationServiceProviderKey = {
|
|
5526
|
+
algorithm: Scalars['String']['output'];
|
|
5527
|
+
certificate: Scalars['String']['output'];
|
|
5528
|
+
expiresAt: Scalars['ISO8601']['output'];
|
|
5529
|
+
id: Scalars['String']['output'];
|
|
5530
|
+
publicKey: Scalars['String']['output'];
|
|
5531
|
+
status: SamlIntegrationKeyStatus;
|
|
5532
|
+
};
|
|
5533
|
+
|
|
5377
5534
|
export type ScimIntegration = BaseIntegration & {
|
|
5378
5535
|
active: Scalars['Boolean']['output'];
|
|
5379
5536
|
authToken?: Maybe<Scalars['String']['output']>;
|
|
@@ -5382,6 +5539,14 @@ export type ScimIntegration = BaseIntegration & {
|
|
|
5382
5539
|
name: Scalars['String']['output'];
|
|
5383
5540
|
};
|
|
5384
5541
|
|
|
5542
|
+
export type ScimToken = {
|
|
5543
|
+
createdAt: Scalars['ISO8601']['output'];
|
|
5544
|
+
deletedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
5545
|
+
expiresAt: Scalars['ISO8601']['output'];
|
|
5546
|
+
id: Scalars['ID']['output'];
|
|
5547
|
+
updatedAt: Scalars['ISO8601']['output'];
|
|
5548
|
+
};
|
|
5549
|
+
|
|
5385
5550
|
export type SecondaryParticipantInput = {
|
|
5386
5551
|
participantId: Scalars['ID']['input'];
|
|
5387
5552
|
type: ParticipantType;
|