@pexip-engage-public/graphql 1.0.66 → 1.0.67-canary-20250327142721
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 +42 -444
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +49 -501
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +8 -55
- package/dist/schema.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/graphql-env.ts +49 -501
- package/src/schema.ts +7 -68
package/src/schema.ts
CHANGED
|
@@ -231,6 +231,7 @@ export type AppointmentAutoAcceptEnterpriseSetting = {
|
|
|
231
231
|
export type AppointmentCancelInput = {
|
|
232
232
|
answers?: InputMaybe<Array<AppointmentAnswerInput>>;
|
|
233
233
|
messageForCustomer?: InputMaybe<Scalars['String']['input']>;
|
|
234
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
234
235
|
userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
|
|
235
236
|
};
|
|
236
237
|
|
|
@@ -239,6 +240,7 @@ export type AppointmentCompleteInput = {
|
|
|
239
240
|
end?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
240
241
|
noShow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
241
242
|
start?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
243
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
242
244
|
userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
|
|
243
245
|
};
|
|
244
246
|
|
|
@@ -429,6 +431,7 @@ export type AppointmentPatchInput = {
|
|
|
429
431
|
location?: InputMaybe<LocationInput>;
|
|
430
432
|
meetingRoomId?: InputMaybe<Scalars['ID']['input']>;
|
|
431
433
|
metadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
434
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
432
435
|
userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
|
|
433
436
|
};
|
|
434
437
|
|
|
@@ -453,6 +456,7 @@ export type AppointmentRescheduleInput = {
|
|
|
453
456
|
end: Scalars['ISO8601']['input'];
|
|
454
457
|
messageForCustomer?: InputMaybe<Scalars['String']['input']>;
|
|
455
458
|
start: Scalars['ISO8601']['input'];
|
|
459
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
456
460
|
userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
|
|
457
461
|
};
|
|
458
462
|
|
|
@@ -2874,8 +2878,6 @@ export type Mutation = {
|
|
|
2874
2878
|
createOffice: Office;
|
|
2875
2879
|
createOfficeRelation: OfficeRelation;
|
|
2876
2880
|
createQuestion: Question;
|
|
2877
|
-
createSamlIntegration: SamlIntegration;
|
|
2878
|
-
createScimToken: Scalars['String']['output'];
|
|
2879
2881
|
createSessionConfigSessionEvent: Scalars['Boolean']['output'];
|
|
2880
2882
|
createSessionDataSessionEvent: Scalars['Boolean']['output'];
|
|
2881
2883
|
createStepShownSessionEvent: Scalars['Boolean']['output'];
|
|
@@ -2910,7 +2912,6 @@ export type Mutation = {
|
|
|
2910
2912
|
deleteOffice: Office;
|
|
2911
2913
|
deleteOfficeRelation: OfficeRelation;
|
|
2912
2914
|
deleteQuestion: Question;
|
|
2913
|
-
deleteSamlIntegration: SamlIntegration;
|
|
2914
2915
|
deleteStorageAccountConfig: StorageAccountConfig;
|
|
2915
2916
|
deleteSubject: Subject;
|
|
2916
2917
|
deleteSubjectGroup: SubjectGroup;
|
|
@@ -2949,7 +2950,6 @@ export type Mutation = {
|
|
|
2949
2950
|
patchOffice: Office;
|
|
2950
2951
|
patchOfficeCallbackRequestSetting: OfficeCallbackRequestSetting;
|
|
2951
2952
|
patchQuestion: Question;
|
|
2952
|
-
patchSamlIntegration: SamlIntegration;
|
|
2953
2953
|
patchStaticTranslationOverrides: Array<StaticTranslationOverride>;
|
|
2954
2954
|
patchStorageAccountConfig: StorageAccountConfig;
|
|
2955
2955
|
patchSubject: Subject;
|
|
@@ -3019,7 +3019,6 @@ export type Mutation = {
|
|
|
3019
3019
|
syncMeetingRooms: Scalars['Boolean']['output'];
|
|
3020
3020
|
syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
|
|
3021
3021
|
testWebhookConfiguration: WebhookDelivery;
|
|
3022
|
-
uploadSamlIdentityProviderMetadata: SamlIntegration;
|
|
3023
3022
|
upsertMicrosoftGraphAPIEmailConfiguration: MicrosoftGraphApiEmailProviderConfiguration;
|
|
3024
3023
|
upsertOfficeRelation: GroupedOfficeRelation;
|
|
3025
3024
|
};
|
|
@@ -3040,6 +3039,7 @@ export type MutationActivateEmployeeArgs = {
|
|
|
3040
3039
|
export type MutationAddSecondaryParticipantsToAppointmentArgs = {
|
|
3041
3040
|
id: Scalars['ID']['input'];
|
|
3042
3041
|
secondaryParticipantInput: Array<SecondaryParticipantInput>;
|
|
3042
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
3043
3043
|
};
|
|
3044
3044
|
|
|
3045
3045
|
|
|
@@ -3575,11 +3575,6 @@ export type MutationPatchQuestionArgs = {
|
|
|
3575
3575
|
};
|
|
3576
3576
|
|
|
3577
3577
|
|
|
3578
|
-
export type MutationPatchSamlIntegrationArgs = {
|
|
3579
|
-
input: SamlIntegrationPatchInput;
|
|
3580
|
-
};
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
3578
|
export type MutationPatchStaticTranslationOverridesArgs = {
|
|
3584
3579
|
staticTranslationOverridesPatchInput: Array<StaticTranslationOverridePatchInput>;
|
|
3585
3580
|
};
|
|
@@ -3760,6 +3755,7 @@ export type MutationRemoveSecondaryCustomerParticipantFromAppointmentArgs = {
|
|
|
3760
3755
|
export type MutationRemoveSecondaryParticipantFromAppointmentArgs = {
|
|
3761
3756
|
id: Scalars['ID']['input'];
|
|
3762
3757
|
secondaryParticipantInput: SecondaryParticipantInput;
|
|
3758
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
3763
3759
|
};
|
|
3764
3760
|
|
|
3765
3761
|
|
|
@@ -3907,11 +3903,6 @@ export type MutationTestWebhookConfigurationArgs = {
|
|
|
3907
3903
|
};
|
|
3908
3904
|
|
|
3909
3905
|
|
|
3910
|
-
export type MutationUploadSamlIdentityProviderMetadataArgs = {
|
|
3911
|
-
metadataUrl: Scalars['String']['input'];
|
|
3912
|
-
};
|
|
3913
|
-
|
|
3914
|
-
|
|
3915
3906
|
export type MutationUpsertMicrosoftGraphApiEmailConfigurationArgs = {
|
|
3916
3907
|
input: MicrosoftGraphApiEmailProviderConfigurationInput;
|
|
3917
3908
|
};
|
|
@@ -4177,6 +4168,7 @@ export type PrimaryBrandColorEnterpriseSetting = {
|
|
|
4177
4168
|
|
|
4178
4169
|
export type PutAppointmentAnswersInput = {
|
|
4179
4170
|
answers: Array<AppointmentAnswerInput>;
|
|
4171
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
4180
4172
|
};
|
|
4181
4173
|
|
|
4182
4174
|
export type Query = {
|
|
@@ -4259,13 +4251,11 @@ export type Query = {
|
|
|
4259
4251
|
question: Question;
|
|
4260
4252
|
questions: Array<Question>;
|
|
4261
4253
|
regions: RegionConnection;
|
|
4262
|
-
samlIntegration: SamlIntegration;
|
|
4263
4254
|
schedulableEmployees: Array<Employee>;
|
|
4264
4255
|
schedulableMeetingRooms: Array<MeetingRoom>;
|
|
4265
4256
|
schedulableMeetingTypes: Array<MeetingType>;
|
|
4266
4257
|
schedulableOffices: Array<Office>;
|
|
4267
4258
|
schedulableSubjects: Array<Subject>;
|
|
4268
|
-
scimTokens: Array<ScimToken>;
|
|
4269
4259
|
searchRegions: Array<Region>;
|
|
4270
4260
|
staticTranslationOverrides: Array<StaticTranslationOverride>;
|
|
4271
4261
|
staticTranslations: Scalars['JSONObject']['output'];
|
|
@@ -5381,52 +5371,9 @@ export type ResourceType =
|
|
|
5381
5371
|
| 'MEETING_TYPE'
|
|
5382
5372
|
| 'OFFICE'
|
|
5383
5373
|
| 'OFFICE_RELATION'
|
|
5384
|
-
| 'SCIM_TOKEN'
|
|
5385
5374
|
| 'SUBJECT'
|
|
5386
5375
|
| 'SUBJECT_GROUP';
|
|
5387
5376
|
|
|
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
|
-
|
|
5430
5377
|
export type ScimIntegration = BaseIntegration & {
|
|
5431
5378
|
active: Scalars['Boolean']['output'];
|
|
5432
5379
|
authToken?: Maybe<Scalars['String']['output']>;
|
|
@@ -5435,14 +5382,6 @@ export type ScimIntegration = BaseIntegration & {
|
|
|
5435
5382
|
name: Scalars['String']['output'];
|
|
5436
5383
|
};
|
|
5437
5384
|
|
|
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
|
-
|
|
5446
5385
|
export type SecondaryParticipantInput = {
|
|
5447
5386
|
participantId: Scalars['ID']['input'];
|
|
5448
5387
|
type: ParticipantType;
|