@pexip-engage-public/graphql 1.0.65 → 1.0.66-canary-20250320122540
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 +6 -0
- package/dist/graphql-env.d.ts +535 -1
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +614 -11
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +69 -1
- package/dist/schema.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/graphql-env.ts +614 -11
- package/src/schema.ts +85 -0
package/src/schema.ts
CHANGED
|
@@ -348,6 +348,13 @@ export type AppointmentEventType =
|
|
|
348
348
|
| 'SECONDARY_PARTICIPANT_ADDED'
|
|
349
349
|
| 'SECONDARY_PARTICIPANT_REMOVED';
|
|
350
350
|
|
|
351
|
+
export type AppointmentIdentity = {
|
|
352
|
+
backofficeUrl: Scalars['String']['output'];
|
|
353
|
+
id: Scalars['Int']['output'];
|
|
354
|
+
participantType: ParticipantType;
|
|
355
|
+
pluginUrl: Scalars['String']['output'];
|
|
356
|
+
};
|
|
357
|
+
|
|
351
358
|
export type AppointmentInviteInput = {
|
|
352
359
|
appointmentParticipants: Array<AppointmentParticipantCreateInput>;
|
|
353
360
|
callbackRequestId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -2867,6 +2874,8 @@ export type Mutation = {
|
|
|
2867
2874
|
createOffice: Office;
|
|
2868
2875
|
createOfficeRelation: OfficeRelation;
|
|
2869
2876
|
createQuestion: Question;
|
|
2877
|
+
createSamlIntegration: SamlIntegration;
|
|
2878
|
+
createScimToken: Scalars['String']['output'];
|
|
2870
2879
|
createSessionConfigSessionEvent: Scalars['Boolean']['output'];
|
|
2871
2880
|
createSessionDataSessionEvent: Scalars['Boolean']['output'];
|
|
2872
2881
|
createStepShownSessionEvent: Scalars['Boolean']['output'];
|
|
@@ -2901,6 +2910,7 @@ export type Mutation = {
|
|
|
2901
2910
|
deleteOffice: Office;
|
|
2902
2911
|
deleteOfficeRelation: OfficeRelation;
|
|
2903
2912
|
deleteQuestion: Question;
|
|
2913
|
+
deleteSamlIntegration: SamlIntegration;
|
|
2904
2914
|
deleteStorageAccountConfig: StorageAccountConfig;
|
|
2905
2915
|
deleteSubject: Subject;
|
|
2906
2916
|
deleteSubjectGroup: SubjectGroup;
|
|
@@ -2911,6 +2921,7 @@ export type Mutation = {
|
|
|
2911
2921
|
generateAppointmentGoogleCalendarUrl: Scalars['String']['output'];
|
|
2912
2922
|
generateAppointmentICalFileContent: Scalars['String']['output'];
|
|
2913
2923
|
generateAppointmentOffice365CalendarUrl: Scalars['String']['output'];
|
|
2924
|
+
/** @deprecated Request the pluginUrl via the IdentifyAppointment Query */
|
|
2914
2925
|
generateLocalizedPluginUrl: Scalars['String']['output'];
|
|
2915
2926
|
generateVideoUrl: Scalars['String']['output'];
|
|
2916
2927
|
patchAppointment: Appointment;
|
|
@@ -2938,6 +2949,7 @@ export type Mutation = {
|
|
|
2938
2949
|
patchOffice: Office;
|
|
2939
2950
|
patchOfficeCallbackRequestSetting: OfficeCallbackRequestSetting;
|
|
2940
2951
|
patchQuestion: Question;
|
|
2952
|
+
patchSamlIntegration: SamlIntegration;
|
|
2941
2953
|
patchStaticTranslationOverrides: Array<StaticTranslationOverride>;
|
|
2942
2954
|
patchStorageAccountConfig: StorageAccountConfig;
|
|
2943
2955
|
patchSubject: Subject;
|
|
@@ -3007,6 +3019,7 @@ export type Mutation = {
|
|
|
3007
3019
|
syncMeetingRooms: Scalars['Boolean']['output'];
|
|
3008
3020
|
syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
|
|
3009
3021
|
testWebhookConfiguration: WebhookDelivery;
|
|
3022
|
+
uploadSamlIdentityProviderMetadata: SamlIntegration;
|
|
3010
3023
|
upsertMicrosoftGraphAPIEmailConfiguration: MicrosoftGraphApiEmailProviderConfiguration;
|
|
3011
3024
|
upsertOfficeRelation: GroupedOfficeRelation;
|
|
3012
3025
|
};
|
|
@@ -3562,6 +3575,11 @@ export type MutationPatchQuestionArgs = {
|
|
|
3562
3575
|
};
|
|
3563
3576
|
|
|
3564
3577
|
|
|
3578
|
+
export type MutationPatchSamlIntegrationArgs = {
|
|
3579
|
+
input: SamlIntegrationPatchInput;
|
|
3580
|
+
};
|
|
3581
|
+
|
|
3582
|
+
|
|
3565
3583
|
export type MutationPatchStaticTranslationOverridesArgs = {
|
|
3566
3584
|
staticTranslationOverridesPatchInput: Array<StaticTranslationOverridePatchInput>;
|
|
3567
3585
|
};
|
|
@@ -3889,6 +3907,11 @@ export type MutationTestWebhookConfigurationArgs = {
|
|
|
3889
3907
|
};
|
|
3890
3908
|
|
|
3891
3909
|
|
|
3910
|
+
export type MutationUploadSamlIdentityProviderMetadataArgs = {
|
|
3911
|
+
metadataUrl: Scalars['String']['input'];
|
|
3912
|
+
};
|
|
3913
|
+
|
|
3914
|
+
|
|
3892
3915
|
export type MutationUpsertMicrosoftGraphApiEmailConfigurationArgs = {
|
|
3893
3916
|
input: MicrosoftGraphApiEmailProviderConfigurationInput;
|
|
3894
3917
|
};
|
|
@@ -4205,6 +4228,7 @@ export type Query = {
|
|
|
4205
4228
|
forms: FormConnection;
|
|
4206
4229
|
getAuthorizedProfilePictureUrl: FileMetadata;
|
|
4207
4230
|
getInsightsAccessToken: InsightsAccessToken;
|
|
4231
|
+
identifyAppointment: AppointmentIdentity;
|
|
4208
4232
|
integration: BaseIntegration;
|
|
4209
4233
|
integrations: BaseIntegrationConnection;
|
|
4210
4234
|
isCallbackRequestEnabled: Scalars['Boolean']['output'];
|
|
@@ -4235,11 +4259,13 @@ export type Query = {
|
|
|
4235
4259
|
question: Question;
|
|
4236
4260
|
questions: Array<Question>;
|
|
4237
4261
|
regions: RegionConnection;
|
|
4262
|
+
samlIntegration: SamlIntegration;
|
|
4238
4263
|
schedulableEmployees: Array<Employee>;
|
|
4239
4264
|
schedulableMeetingRooms: Array<MeetingRoom>;
|
|
4240
4265
|
schedulableMeetingTypes: Array<MeetingType>;
|
|
4241
4266
|
schedulableOffices: Array<Office>;
|
|
4242
4267
|
schedulableSubjects: Array<Subject>;
|
|
4268
|
+
scimTokens: Array<ScimToken>;
|
|
4243
4269
|
searchRegions: Array<Region>;
|
|
4244
4270
|
staticTranslationOverrides: Array<StaticTranslationOverride>;
|
|
4245
4271
|
staticTranslations: Scalars['JSONObject']['output'];
|
|
@@ -4421,6 +4447,8 @@ export type QueryCallbackRequestableOfficesArgs = {
|
|
|
4421
4447
|
export type QueryCallbackRequestsArgs = {
|
|
4422
4448
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
4423
4449
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
4450
|
+
createdFrom?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
4451
|
+
createdTo?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
4424
4452
|
customerId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4425
4453
|
employeeId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4426
4454
|
externalId?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -4662,6 +4690,12 @@ export type QueryGetInsightsAccessTokenArgs = {
|
|
|
4662
4690
|
};
|
|
4663
4691
|
|
|
4664
4692
|
|
|
4693
|
+
export type QueryIdentifyAppointmentArgs = {
|
|
4694
|
+
intent: Intent;
|
|
4695
|
+
token: Scalars['String']['input'];
|
|
4696
|
+
};
|
|
4697
|
+
|
|
4698
|
+
|
|
4665
4699
|
export type QueryIntegrationArgs = {
|
|
4666
4700
|
id: Scalars['ID']['input'];
|
|
4667
4701
|
};
|
|
@@ -5347,9 +5381,52 @@ export type ResourceType =
|
|
|
5347
5381
|
| 'MEETING_TYPE'
|
|
5348
5382
|
| 'OFFICE'
|
|
5349
5383
|
| 'OFFICE_RELATION'
|
|
5384
|
+
| 'SCIM_TOKEN'
|
|
5350
5385
|
| 'SUBJECT'
|
|
5351
5386
|
| 'SUBJECT_GROUP';
|
|
5352
5387
|
|
|
5388
|
+
export type SamlIntegration = {
|
|
5389
|
+
active: Scalars['Boolean']['output'];
|
|
5390
|
+
identityProviderMetadataUrl?: Maybe<Scalars['String']['output']>;
|
|
5391
|
+
identityProviderSignatureKey?: Maybe<SamlIntegrationIdentityProviderKey>;
|
|
5392
|
+
serviceProviderEncryptionKeys: Array<SamlIntegrationServiceProviderKey>;
|
|
5393
|
+
serviceProviderMetadataUrl: Scalars['String']['output'];
|
|
5394
|
+
serviceProviderSignatureKeys: Array<SamlIntegrationServiceProviderKey>;
|
|
5395
|
+
singleLogoutServiceUrl?: Maybe<Scalars['String']['output']>;
|
|
5396
|
+
singleSignOnServiceUrl?: Maybe<Scalars['String']['output']>;
|
|
5397
|
+
validateSignature: Scalars['Boolean']['output'];
|
|
5398
|
+
wantAssertionsEncrypted: Scalars['Boolean']['output'];
|
|
5399
|
+
wantAssertionsSigned: Scalars['Boolean']['output'];
|
|
5400
|
+
wantAuthnRequestsSigned: Scalars['Boolean']['output'];
|
|
5401
|
+
};
|
|
5402
|
+
|
|
5403
|
+
export type SamlIntegrationIdentityProviderKey = {
|
|
5404
|
+
certificate: Scalars['String']['output'];
|
|
5405
|
+
expiresAt: Scalars['ISO8601']['output'];
|
|
5406
|
+
};
|
|
5407
|
+
|
|
5408
|
+
export type SamlIntegrationKeyStatus =
|
|
5409
|
+
| 'ACTIVE'
|
|
5410
|
+
| 'DISABLED'
|
|
5411
|
+
| 'PASSIVE';
|
|
5412
|
+
|
|
5413
|
+
export type SamlIntegrationPatchInput = {
|
|
5414
|
+
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5415
|
+
validateSignature?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5416
|
+
wantAssertionsEncrypted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5417
|
+
wantAssertionsSigned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5418
|
+
wantAuthnRequestsSigned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5419
|
+
};
|
|
5420
|
+
|
|
5421
|
+
export type SamlIntegrationServiceProviderKey = {
|
|
5422
|
+
algorithm: Scalars['String']['output'];
|
|
5423
|
+
certificate: Scalars['String']['output'];
|
|
5424
|
+
expiresAt: Scalars['ISO8601']['output'];
|
|
5425
|
+
id: Scalars['String']['output'];
|
|
5426
|
+
publicKey: Scalars['String']['output'];
|
|
5427
|
+
status: SamlIntegrationKeyStatus;
|
|
5428
|
+
};
|
|
5429
|
+
|
|
5353
5430
|
export type ScimIntegration = BaseIntegration & {
|
|
5354
5431
|
active: Scalars['Boolean']['output'];
|
|
5355
5432
|
authToken?: Maybe<Scalars['String']['output']>;
|
|
@@ -5358,6 +5435,14 @@ export type ScimIntegration = BaseIntegration & {
|
|
|
5358
5435
|
name: Scalars['String']['output'];
|
|
5359
5436
|
};
|
|
5360
5437
|
|
|
5438
|
+
export type ScimToken = {
|
|
5439
|
+
createdAt: Scalars['ISO8601']['output'];
|
|
5440
|
+
deletedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
5441
|
+
expiresAt: Scalars['ISO8601']['output'];
|
|
5442
|
+
id: Scalars['ID']['output'];
|
|
5443
|
+
updatedAt: Scalars['ISO8601']['output'];
|
|
5444
|
+
};
|
|
5445
|
+
|
|
5361
5446
|
export type SecondaryParticipantInput = {
|
|
5362
5447
|
participantId: Scalars['ID']['input'];
|
|
5363
5448
|
type: ParticipantType;
|