@pexip-engage-public/graphql 1.0.65-canary-20250311160309 → 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/dist/schema.d.ts CHANGED
@@ -332,6 +332,12 @@ export type AppointmentEmailMeta = {
332
332
  eventType: AppointmentTemplateName;
333
333
  };
334
334
  export type AppointmentEventType = 'ACCEPTED_BY_EMPLOYEE' | 'ALTERNATIVE_DATE_REQUESTED_BY_EMPLOYEE' | 'ASSIGNED_BY_EMPLOYEE' | 'CANCELLED_BY_CUSTOMER' | 'CANCELLED_BY_EMPLOYEE' | 'COMPLETED_BY_EMPLOYEE' | 'CREATED_BY_CUSTOMER' | 'CREATED_BY_EMPLOYEE' | 'REQUEST_CREATED_BY_CUSTOMER' | 'REQUEST_CREATED_BY_EMPLOYEE' | 'REQUEST_RESCHEDULED_BY_CUSTOMER' | 'RESCHEDULED_BY_CUSTOMER' | 'RESCHEDULED_BY_EMPLOYEE' | 'SECONDARY_PARTICIPANTS_UPDATED' | 'SECONDARY_PARTICIPANT_ADDED' | 'SECONDARY_PARTICIPANT_REMOVED';
335
+ export type AppointmentIdentity = {
336
+ backofficeUrl: Scalars['String']['output'];
337
+ id: Scalars['Int']['output'];
338
+ participantType: ParticipantType;
339
+ pluginUrl: Scalars['String']['output'];
340
+ };
335
341
  export type AppointmentInviteInput = {
336
342
  appointmentParticipants: Array<AppointmentParticipantCreateInput>;
337
343
  callbackRequestId?: InputMaybe<Scalars['ID']['input']>;
@@ -2383,6 +2389,8 @@ export type Mutation = {
2383
2389
  createOffice: Office;
2384
2390
  createOfficeRelation: OfficeRelation;
2385
2391
  createQuestion: Question;
2392
+ createSamlIntegration: SamlIntegration;
2393
+ createScimToken: Scalars['String']['output'];
2386
2394
  createSessionConfigSessionEvent: Scalars['Boolean']['output'];
2387
2395
  createSessionDataSessionEvent: Scalars['Boolean']['output'];
2388
2396
  createStepShownSessionEvent: Scalars['Boolean']['output'];
@@ -2417,6 +2425,7 @@ export type Mutation = {
2417
2425
  deleteOffice: Office;
2418
2426
  deleteOfficeRelation: OfficeRelation;
2419
2427
  deleteQuestion: Question;
2428
+ deleteSamlIntegration: SamlIntegration;
2420
2429
  deleteStorageAccountConfig: StorageAccountConfig;
2421
2430
  deleteSubject: Subject;
2422
2431
  deleteSubjectGroup: SubjectGroup;
@@ -2427,6 +2436,7 @@ export type Mutation = {
2427
2436
  generateAppointmentGoogleCalendarUrl: Scalars['String']['output'];
2428
2437
  generateAppointmentICalFileContent: Scalars['String']['output'];
2429
2438
  generateAppointmentOffice365CalendarUrl: Scalars['String']['output'];
2439
+ /** @deprecated Request the pluginUrl via the IdentifyAppointment Query */
2430
2440
  generateLocalizedPluginUrl: Scalars['String']['output'];
2431
2441
  generateVideoUrl: Scalars['String']['output'];
2432
2442
  patchAppointment: Appointment;
@@ -2454,6 +2464,7 @@ export type Mutation = {
2454
2464
  patchOffice: Office;
2455
2465
  patchOfficeCallbackRequestSetting: OfficeCallbackRequestSetting;
2456
2466
  patchQuestion: Question;
2467
+ patchSamlIntegration: SamlIntegration;
2457
2468
  patchStaticTranslationOverrides: Array<StaticTranslationOverride>;
2458
2469
  patchStorageAccountConfig: StorageAccountConfig;
2459
2470
  patchSubject: Subject;
@@ -2523,6 +2534,7 @@ export type Mutation = {
2523
2534
  syncMeetingRooms: Scalars['Boolean']['output'];
2524
2535
  syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
2525
2536
  testWebhookConfiguration: WebhookDelivery;
2537
+ uploadSamlIdentityProviderMetadata: SamlIntegration;
2526
2538
  upsertMicrosoftGraphAPIEmailConfiguration: MicrosoftGraphApiEmailProviderConfiguration;
2527
2539
  upsertOfficeRelation: GroupedOfficeRelation;
2528
2540
  };
@@ -2876,6 +2888,9 @@ export type MutationPatchQuestionArgs = {
2876
2888
  id: Scalars['ID']['input'];
2877
2889
  questionPatchInput: QuestionPatchInput;
2878
2890
  };
2891
+ export type MutationPatchSamlIntegrationArgs = {
2892
+ input: SamlIntegrationPatchInput;
2893
+ };
2879
2894
  export type MutationPatchStaticTranslationOverridesArgs = {
2880
2895
  staticTranslationOverridesPatchInput: Array<StaticTranslationOverridePatchInput>;
2881
2896
  };
@@ -3091,6 +3106,9 @@ export type MutationSyncMicrosoftDynamicsIntegrationCustomAttributesArgs = {
3091
3106
  export type MutationTestWebhookConfigurationArgs = {
3092
3107
  id: Scalars['ID']['input'];
3093
3108
  };
3109
+ export type MutationUploadSamlIdentityProviderMetadataArgs = {
3110
+ metadataUrl: Scalars['String']['input'];
3111
+ };
3094
3112
  export type MutationUpsertMicrosoftGraphApiEmailConfigurationArgs = {
3095
3113
  input: MicrosoftGraphApiEmailProviderConfigurationInput;
3096
3114
  };
@@ -3358,6 +3376,7 @@ export type Query = {
3358
3376
  forms: FormConnection;
3359
3377
  getAuthorizedProfilePictureUrl: FileMetadata;
3360
3378
  getInsightsAccessToken: InsightsAccessToken;
3379
+ identifyAppointment: AppointmentIdentity;
3361
3380
  integration: BaseIntegration;
3362
3381
  integrations: BaseIntegrationConnection;
3363
3382
  isCallbackRequestEnabled: Scalars['Boolean']['output'];
@@ -3388,11 +3407,13 @@ export type Query = {
3388
3407
  question: Question;
3389
3408
  questions: Array<Question>;
3390
3409
  regions: RegionConnection;
3410
+ samlIntegration: SamlIntegration;
3391
3411
  schedulableEmployees: Array<Employee>;
3392
3412
  schedulableMeetingRooms: Array<MeetingRoom>;
3393
3413
  schedulableMeetingTypes: Array<MeetingType>;
3394
3414
  schedulableOffices: Array<Office>;
3395
3415
  schedulableSubjects: Array<Subject>;
3416
+ scimTokens: Array<ScimToken>;
3396
3417
  searchRegions: Array<Region>;
3397
3418
  staticTranslationOverrides: Array<StaticTranslationOverride>;
3398
3419
  staticTranslations: Scalars['JSONObject']['output'];
@@ -3536,6 +3557,8 @@ export type QueryCallbackRequestableOfficesArgs = {
3536
3557
  export type QueryCallbackRequestsArgs = {
3537
3558
  after?: InputMaybe<Scalars['String']['input']>;
3538
3559
  before?: InputMaybe<Scalars['String']['input']>;
3560
+ createdFrom?: InputMaybe<Scalars['ISO8601']['input']>;
3561
+ createdTo?: InputMaybe<Scalars['ISO8601']['input']>;
3539
3562
  customerId?: InputMaybe<Array<Scalars['ID']['input']>>;
3540
3563
  employeeId?: InputMaybe<Array<Scalars['ID']['input']>>;
3541
3564
  externalId?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -3723,6 +3746,10 @@ export type QueryGetInsightsAccessTokenArgs = {
3723
3746
  dashboard: InsightsDashboardType;
3724
3747
  officeId?: InputMaybe<Scalars['ID']['input']>;
3725
3748
  };
3749
+ export type QueryIdentifyAppointmentArgs = {
3750
+ intent: Intent;
3751
+ token: Scalars['String']['input'];
3752
+ };
3726
3753
  export type QueryIntegrationArgs = {
3727
3754
  id: Scalars['ID']['input'];
3728
3755
  };
@@ -4274,7 +4301,41 @@ export type RenderedTemplateMeta = {
4274
4301
  receiver: Receiver;
4275
4302
  timeZone: Scalars['String']['output'];
4276
4303
  };
4277
- export type ResourceType = 'API_CLIENT' | 'APPOINTMENT' | 'CUSTOMER' | 'EMPLOYEE' | 'ENTERPRISE_SETTING' | 'EXTERNAL_CALENDAR_ACCOUNT' | 'LEAD_SEGMENT' | 'LISTING' | 'MEETING_TYPE' | 'OFFICE' | 'OFFICE_RELATION' | 'SUBJECT' | 'SUBJECT_GROUP';
4304
+ export type ResourceType = 'API_CLIENT' | 'APPOINTMENT' | 'CUSTOMER' | 'EMPLOYEE' | 'ENTERPRISE_SETTING' | 'EXTERNAL_CALENDAR_ACCOUNT' | 'LEAD_SEGMENT' | 'LISTING' | 'MEETING_TYPE' | 'OFFICE' | 'OFFICE_RELATION' | 'SCIM_TOKEN' | 'SUBJECT' | 'SUBJECT_GROUP';
4305
+ export type SamlIntegration = {
4306
+ active: Scalars['Boolean']['output'];
4307
+ identityProviderMetadataUrl?: Maybe<Scalars['String']['output']>;
4308
+ identityProviderSignatureKey?: Maybe<SamlIntegrationIdentityProviderKey>;
4309
+ serviceProviderEncryptionKeys: Array<SamlIntegrationServiceProviderKey>;
4310
+ serviceProviderMetadataUrl: Scalars['String']['output'];
4311
+ serviceProviderSignatureKeys: Array<SamlIntegrationServiceProviderKey>;
4312
+ singleLogoutServiceUrl?: Maybe<Scalars['String']['output']>;
4313
+ singleSignOnServiceUrl?: Maybe<Scalars['String']['output']>;
4314
+ validateSignature: Scalars['Boolean']['output'];
4315
+ wantAssertionsEncrypted: Scalars['Boolean']['output'];
4316
+ wantAssertionsSigned: Scalars['Boolean']['output'];
4317
+ wantAuthnRequestsSigned: Scalars['Boolean']['output'];
4318
+ };
4319
+ export type SamlIntegrationIdentityProviderKey = {
4320
+ certificate: Scalars['String']['output'];
4321
+ expiresAt: Scalars['ISO8601']['output'];
4322
+ };
4323
+ export type SamlIntegrationKeyStatus = 'ACTIVE' | 'DISABLED' | 'PASSIVE';
4324
+ export type SamlIntegrationPatchInput = {
4325
+ active?: InputMaybe<Scalars['Boolean']['input']>;
4326
+ validateSignature?: InputMaybe<Scalars['Boolean']['input']>;
4327
+ wantAssertionsEncrypted?: InputMaybe<Scalars['Boolean']['input']>;
4328
+ wantAssertionsSigned?: InputMaybe<Scalars['Boolean']['input']>;
4329
+ wantAuthnRequestsSigned?: InputMaybe<Scalars['Boolean']['input']>;
4330
+ };
4331
+ export type SamlIntegrationServiceProviderKey = {
4332
+ algorithm: Scalars['String']['output'];
4333
+ certificate: Scalars['String']['output'];
4334
+ expiresAt: Scalars['ISO8601']['output'];
4335
+ id: Scalars['String']['output'];
4336
+ publicKey: Scalars['String']['output'];
4337
+ status: SamlIntegrationKeyStatus;
4338
+ };
4278
4339
  export type ScimIntegration = BaseIntegration & {
4279
4340
  active: Scalars['Boolean']['output'];
4280
4341
  authToken?: Maybe<Scalars['String']['output']>;
@@ -4282,6 +4343,13 @@ export type ScimIntegration = BaseIntegration & {
4282
4343
  integrationType: IntegrationType;
4283
4344
  name: Scalars['String']['output'];
4284
4345
  };
4346
+ export type ScimToken = {
4347
+ createdAt: Scalars['ISO8601']['output'];
4348
+ deletedAt?: Maybe<Scalars['ISO8601']['output']>;
4349
+ expiresAt: Scalars['ISO8601']['output'];
4350
+ id: Scalars['ID']['output'];
4351
+ updatedAt: Scalars['ISO8601']['output'];
4352
+ };
4285
4353
  export type SecondaryParticipantInput = {
4286
4354
  participantId: Scalars['ID']['input'];
4287
4355
  type: ParticipantType;