@pexip-engage-public/graphql 1.0.71-canary-20250429151807 → 1.0.71

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/src/schema.ts CHANGED
@@ -640,6 +640,8 @@ export type AvailabilitySetting = {
640
640
  maxConcurrentAppointments: IntegerAvailabilitySetting;
641
641
  meetingType: MeetingType;
642
642
  office: Office;
643
+ rank1offset: IntegerAvailabilitySetting;
644
+ rank2offset: IntegerAvailabilitySetting;
643
645
  subject: Subject;
644
646
  timeSlotEarliestPossible: IntegerAvailabilitySetting;
645
647
  timeSlotGranularity: IntegerAvailabilitySetting;
@@ -1085,6 +1087,7 @@ export type DataSelectedSessionEventPayload = {
1085
1087
  subjectGroupId?: InputMaybe<Scalars['ID']['input']>;
1086
1088
  subjectId?: InputMaybe<Scalars['ID']['input']>;
1087
1089
  timetable?: InputMaybe<TimetableDataSelectedSessionEventPayload>;
1090
+ timetableMeetingType?: InputMaybe<MeetingType>;
1088
1091
  };
1089
1092
 
1090
1093
  export type DataShownSessionEvent = {
@@ -2592,7 +2595,6 @@ export type ManagedExternalCalendarEvent = Managed & {
2592
2595
  id: Scalars['String']['output'];
2593
2596
  lastSyncedAt?: Maybe<Scalars['ISO8601']['output']>;
2594
2597
  location?: Maybe<ManagedExternalCalendarEventLocation>;
2595
- phoneNumber?: Maybe<Scalars['String']['output']>;
2596
2598
  resourceId: Scalars['String']['output'];
2597
2599
  resourceType: ExternalCalendarEventResourceType;
2598
2600
  showAs: ShowAs;
@@ -2614,7 +2616,6 @@ export type ManagedExternalCalendarEventCreateInput = {
2614
2616
  hash?: InputMaybe<Scalars['String']['input']>;
2615
2617
  location?: InputMaybe<ManagedExternalCalendarEventLocationInput>;
2616
2618
  meetingRoomId?: InputMaybe<Scalars['ID']['input']>;
2617
- phoneNumber?: InputMaybe<Scalars['String']['input']>;
2618
2619
  resourceId: Scalars['String']['input'];
2619
2620
  resourceType: ExternalCalendarEventResourceType;
2620
2621
  showAs: ShowAs;
@@ -2654,7 +2655,6 @@ export type ManagedExternalCalendarEventPatchInput = {
2654
2655
  hash?: InputMaybe<Scalars['String']['input']>;
2655
2656
  location?: InputMaybe<ManagedExternalCalendarEventLocationInput>;
2656
2657
  meetingRoomId?: InputMaybe<Scalars['ID']['input']>;
2657
- phoneNumber?: InputMaybe<Scalars['String']['input']>;
2658
2658
  resourceId?: InputMaybe<Scalars['String']['input']>;
2659
2659
  resourceType?: InputMaybe<ExternalCalendarEventResourceType>;
2660
2660
  showAs?: InputMaybe<ShowAs>;
@@ -2933,8 +2933,6 @@ export type Mutation = {
2933
2933
  createOffice: Office;
2934
2934
  createOfficeRelation: OfficeRelation;
2935
2935
  createQuestion: Question;
2936
- createSamlIntegration: SamlIntegration;
2937
- createScimToken: Scalars['String']['output'];
2938
2936
  createSessionConfigSessionEvent: Scalars['Boolean']['output'];
2939
2937
  createSessionDataSessionEvent: Scalars['Boolean']['output'];
2940
2938
  createStepShownSessionEvent: Scalars['Boolean']['output'];
@@ -2969,7 +2967,6 @@ export type Mutation = {
2969
2967
  deleteOffice: Office;
2970
2968
  deleteOfficeRelation: OfficeRelation;
2971
2969
  deleteQuestion: Question;
2972
- deleteSamlIntegration: SamlIntegration;
2973
2970
  deleteStorageAccountConfig: StorageAccountConfig;
2974
2971
  deleteSubject: Subject;
2975
2972
  deleteSubjectGroup: SubjectGroup;
@@ -3008,7 +3005,6 @@ export type Mutation = {
3008
3005
  patchOffice: Office;
3009
3006
  patchOfficeCallbackRequestSetting: OfficeCallbackRequestSetting;
3010
3007
  patchQuestion: Question;
3011
- patchSamlIntegration: SamlIntegration;
3012
3008
  patchStaticTranslationOverrides: Array<StaticTranslationOverride>;
3013
3009
  patchStorageAccountConfig: StorageAccountConfig;
3014
3010
  patchSubject: Subject;
@@ -3078,7 +3074,6 @@ export type Mutation = {
3078
3074
  syncMeetingRooms: Scalars['Boolean']['output'];
3079
3075
  syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
3080
3076
  testWebhookConfiguration: WebhookDelivery;
3081
- uploadSamlIdentityProviderMetadata: SamlIntegration;
3082
3077
  upsertMicrosoftGraphAPIEmailConfiguration: MicrosoftGraphApiEmailProviderConfiguration;
3083
3078
  upsertOfficeRelation: GroupedOfficeRelation;
3084
3079
  };
@@ -3635,11 +3630,6 @@ export type MutationPatchQuestionArgs = {
3635
3630
  };
3636
3631
 
3637
3632
 
3638
- export type MutationPatchSamlIntegrationArgs = {
3639
- input: SamlIntegrationPatchInput;
3640
- };
3641
-
3642
-
3643
3633
  export type MutationPatchStaticTranslationOverridesArgs = {
3644
3634
  staticTranslationOverridesPatchInput: Array<StaticTranslationOverridePatchInput>;
3645
3635
  };
@@ -3968,11 +3958,6 @@ export type MutationTestWebhookConfigurationArgs = {
3968
3958
  };
3969
3959
 
3970
3960
 
3971
- export type MutationUploadSamlIdentityProviderMetadataArgs = {
3972
- metadataUrl: Scalars['String']['input'];
3973
- };
3974
-
3975
-
3976
3961
  export type MutationUpsertMicrosoftGraphApiEmailConfigurationArgs = {
3977
3962
  input: MicrosoftGraphApiEmailProviderConfigurationInput;
3978
3963
  };
@@ -4324,14 +4309,11 @@ export type Query = {
4324
4309
  question: Question;
4325
4310
  questions: Array<Question>;
4326
4311
  regions: RegionConnection;
4327
- samlIntegration?: Maybe<SamlIntegration>;
4328
4312
  schedulableEmployees: Array<Employee>;
4329
4313
  schedulableMeetingRooms: Array<MeetingRoom>;
4330
4314
  schedulableMeetingTypes: Array<MeetingType>;
4331
4315
  schedulableOffices: Array<Office>;
4332
4316
  schedulableSubjects: Array<Subject>;
4333
- scimEndpoint: Scalars['String']['output'];
4334
- scimTokens: Array<ScimToken>;
4335
4317
  searchRegions: Array<Region>;
4336
4318
  staticTranslationOverrides: Array<StaticTranslationOverride>;
4337
4319
  staticTranslations: Scalars['JSONObject']['output'];
@@ -5485,52 +5467,6 @@ export type ResourceType =
5485
5467
  | 'SUBJECT'
5486
5468
  | 'SUBJECT_GROUP';
5487
5469
 
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
-
5534
5470
  export type ScimIntegration = BaseIntegration & {
5535
5471
  active: Scalars['Boolean']['output'];
5536
5472
  authToken?: Maybe<Scalars['String']['output']>;
@@ -5539,14 +5475,6 @@ export type ScimIntegration = BaseIntegration & {
5539
5475
  name: Scalars['String']['output'];
5540
5476
  };
5541
5477
 
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
-
5550
5478
  export type SecondaryParticipantInput = {
5551
5479
  participantId: Scalars['ID']['input'];
5552
5480
  type: ParticipantType;
@@ -6016,6 +5944,10 @@ export type SubjectMeetingTypeAvailabilitySetting = {
6016
5944
  estimatedDuration: Scalars['Int']['output'];
6017
5945
  maxConcurrentAppointments: Scalars['Int']['output'];
6018
5946
  meetingType: MeetingType;
5947
+ /** in minutes */
5948
+ rank1offset: Scalars['Int']['output'];
5949
+ /** in minutes */
5950
+ rank2offset: Scalars['Int']['output'];
6019
5951
  subject: Subject;
6020
5952
  timeSlotEarliestPossible: Scalars['Int']['output'];
6021
5953
  timeSlotGranularity: Scalars['Int']['output'];
@@ -6031,6 +5963,10 @@ export type SubjectMeetingTypeAvailabilitySettingPutInput = {
6031
5963
  /** Valid values are 1-IntMax. */
6032
5964
  maxConcurrentAppointments: Scalars['Int']['input'];
6033
5965
  meetingType: MeetingType;
5966
+ /** Expressed in minutes. Valid values are 0-IntMax. */
5967
+ rank1offset: Scalars['Int']['input'];
5968
+ /** Expressed in minutes. Valid values are 0-IntMax. */
5969
+ rank2offset: Scalars['Int']['input'];
6034
5970
  subjectId: Scalars['ID']['input'];
6035
5971
  /** Expressed in minutes. Valid values are 0-806400 (560 days in minutes). */
6036
5972
  timeSlotEarliestPossible: Scalars['Int']['input'];
@@ -6069,6 +6005,10 @@ export type SubjectOfficeMeetingTypeAvailabilitySetting = {
6069
6005
  maxConcurrentAppointments?: Maybe<Scalars['Int']['output']>;
6070
6006
  meetingType: MeetingType;
6071
6007
  office: Office;
6008
+ /** in minutes */
6009
+ rank1offset?: Maybe<Scalars['Int']['output']>;
6010
+ /** in minutes */
6011
+ rank2offset?: Maybe<Scalars['Int']['output']>;
6072
6012
  subject: Subject;
6073
6013
  timeSlotEarliestPossible?: Maybe<Scalars['Int']['output']>;
6074
6014
  timeSlotGranularity?: Maybe<Scalars['Int']['output']>;
@@ -6085,6 +6025,10 @@ export type SubjectOfficeMeetingTypeAvailabilitySettingPutInput = {
6085
6025
  maxConcurrentAppointments?: InputMaybe<Scalars['Int']['input']>;
6086
6026
  meetingType: MeetingType;
6087
6027
  officeId: Scalars['ID']['input'];
6028
+ /** Expressed in minutes. Valid values are 0-IntMax. */
6029
+ rank1offset?: InputMaybe<Scalars['Int']['input']>;
6030
+ /** Expressed in minutes. Valid values are 0-IntMax. */
6031
+ rank2offset?: InputMaybe<Scalars['Int']['input']>;
6088
6032
  subjectId: Scalars['ID']['input'];
6089
6033
  /** Expressed in minutes. Valid values are 0-806400 (560 days in minutes). */
6090
6034
  timeSlotEarliestPossible?: InputMaybe<Scalars['Int']['input']>;