@pexip-engage-public/graphql 1.0.71-canary-20250429151807 → 1.0.72
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 +13 -2
- package/dist/graphql-env.d.ts +162 -569
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +107 -567
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +19 -62
- package/dist/schema.d.ts.map +1 -1
- package/package.json +9 -7
- package/src/graphql-env.ts +108 -568
- package/src/schema.ts +19 -75
package/dist/schema.d.ts
CHANGED
|
@@ -545,6 +545,8 @@ export type AvailabilitySetting = {
|
|
|
545
545
|
maxConcurrentAppointments: IntegerAvailabilitySetting;
|
|
546
546
|
meetingType: MeetingType;
|
|
547
547
|
office: Office;
|
|
548
|
+
rank1offset: IntegerAvailabilitySetting;
|
|
549
|
+
rank2offset: IntegerAvailabilitySetting;
|
|
548
550
|
subject: Subject;
|
|
549
551
|
timeSlotEarliestPossible: IntegerAvailabilitySetting;
|
|
550
552
|
timeSlotGranularity: IntegerAvailabilitySetting;
|
|
@@ -922,6 +924,7 @@ export type DataSelectedSessionEventPayload = {
|
|
|
922
924
|
subjectGroupId?: InputMaybe<Scalars['ID']['input']>;
|
|
923
925
|
subjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
924
926
|
timetable?: InputMaybe<TimetableDataSelectedSessionEventPayload>;
|
|
927
|
+
timetableMeetingType?: InputMaybe<MeetingType>;
|
|
925
928
|
};
|
|
926
929
|
export type DataShownSessionEvent = {
|
|
927
930
|
application: SessionEventApplication;
|
|
@@ -2139,7 +2142,6 @@ export type ManagedExternalCalendarEvent = Managed & {
|
|
|
2139
2142
|
id: Scalars['String']['output'];
|
|
2140
2143
|
lastSyncedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
2141
2144
|
location?: Maybe<ManagedExternalCalendarEventLocation>;
|
|
2142
|
-
phoneNumber?: Maybe<Scalars['String']['output']>;
|
|
2143
2145
|
resourceId: Scalars['String']['output'];
|
|
2144
2146
|
resourceType: ExternalCalendarEventResourceType;
|
|
2145
2147
|
showAs: ShowAs;
|
|
@@ -2159,7 +2161,6 @@ export type ManagedExternalCalendarEventCreateInput = {
|
|
|
2159
2161
|
hash?: InputMaybe<Scalars['String']['input']>;
|
|
2160
2162
|
location?: InputMaybe<ManagedExternalCalendarEventLocationInput>;
|
|
2161
2163
|
meetingRoomId?: InputMaybe<Scalars['ID']['input']>;
|
|
2162
|
-
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
2163
2164
|
resourceId: Scalars['String']['input'];
|
|
2164
2165
|
resourceType: ExternalCalendarEventResourceType;
|
|
2165
2166
|
showAs: ShowAs;
|
|
@@ -2195,7 +2196,6 @@ export type ManagedExternalCalendarEventPatchInput = {
|
|
|
2195
2196
|
hash?: InputMaybe<Scalars['String']['input']>;
|
|
2196
2197
|
location?: InputMaybe<ManagedExternalCalendarEventLocationInput>;
|
|
2197
2198
|
meetingRoomId?: InputMaybe<Scalars['ID']['input']>;
|
|
2198
|
-
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
2199
2199
|
resourceId?: InputMaybe<Scalars['String']['input']>;
|
|
2200
2200
|
resourceType?: InputMaybe<ExternalCalendarEventResourceType>;
|
|
2201
2201
|
showAs?: InputMaybe<ShowAs>;
|
|
@@ -2431,8 +2431,6 @@ export type Mutation = {
|
|
|
2431
2431
|
createOffice: Office;
|
|
2432
2432
|
createOfficeRelation: OfficeRelation;
|
|
2433
2433
|
createQuestion: Question;
|
|
2434
|
-
createSamlIntegration: SamlIntegration;
|
|
2435
|
-
createScimToken: Scalars['String']['output'];
|
|
2436
2434
|
createSessionConfigSessionEvent: Scalars['Boolean']['output'];
|
|
2437
2435
|
createSessionDataSessionEvent: Scalars['Boolean']['output'];
|
|
2438
2436
|
createStepShownSessionEvent: Scalars['Boolean']['output'];
|
|
@@ -2467,7 +2465,6 @@ export type Mutation = {
|
|
|
2467
2465
|
deleteOffice: Office;
|
|
2468
2466
|
deleteOfficeRelation: OfficeRelation;
|
|
2469
2467
|
deleteQuestion: Question;
|
|
2470
|
-
deleteSamlIntegration: SamlIntegration;
|
|
2471
2468
|
deleteStorageAccountConfig: StorageAccountConfig;
|
|
2472
2469
|
deleteSubject: Subject;
|
|
2473
2470
|
deleteSubjectGroup: SubjectGroup;
|
|
@@ -2506,7 +2503,6 @@ export type Mutation = {
|
|
|
2506
2503
|
patchOffice: Office;
|
|
2507
2504
|
patchOfficeCallbackRequestSetting: OfficeCallbackRequestSetting;
|
|
2508
2505
|
patchQuestion: Question;
|
|
2509
|
-
patchSamlIntegration: SamlIntegration;
|
|
2510
2506
|
patchStaticTranslationOverrides: Array<StaticTranslationOverride>;
|
|
2511
2507
|
patchStorageAccountConfig: StorageAccountConfig;
|
|
2512
2508
|
patchSubject: Subject;
|
|
@@ -2576,7 +2572,6 @@ export type Mutation = {
|
|
|
2576
2572
|
syncMeetingRooms: Scalars['Boolean']['output'];
|
|
2577
2573
|
syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
|
|
2578
2574
|
testWebhookConfiguration: WebhookDelivery;
|
|
2579
|
-
uploadSamlIdentityProviderMetadata: SamlIntegration;
|
|
2580
2575
|
upsertMicrosoftGraphAPIEmailConfiguration: MicrosoftGraphApiEmailProviderConfiguration;
|
|
2581
2576
|
upsertOfficeRelation: GroupedOfficeRelation;
|
|
2582
2577
|
};
|
|
@@ -2931,9 +2926,6 @@ export type MutationPatchQuestionArgs = {
|
|
|
2931
2926
|
id: Scalars['ID']['input'];
|
|
2932
2927
|
questionPatchInput: QuestionPatchInput;
|
|
2933
2928
|
};
|
|
2934
|
-
export type MutationPatchSamlIntegrationArgs = {
|
|
2935
|
-
input: SamlIntegrationPatchInput;
|
|
2936
|
-
};
|
|
2937
2929
|
export type MutationPatchStaticTranslationOverridesArgs = {
|
|
2938
2930
|
staticTranslationOverridesPatchInput: Array<StaticTranslationOverridePatchInput>;
|
|
2939
2931
|
};
|
|
@@ -3150,9 +3142,6 @@ export type MutationSyncMicrosoftDynamicsIntegrationCustomAttributesArgs = {
|
|
|
3150
3142
|
export type MutationTestWebhookConfigurationArgs = {
|
|
3151
3143
|
id: Scalars['ID']['input'];
|
|
3152
3144
|
};
|
|
3153
|
-
export type MutationUploadSamlIdentityProviderMetadataArgs = {
|
|
3154
|
-
metadataUrl: Scalars['String']['input'];
|
|
3155
|
-
};
|
|
3156
3145
|
export type MutationUpsertMicrosoftGraphApiEmailConfigurationArgs = {
|
|
3157
3146
|
input: MicrosoftGraphApiEmailProviderConfigurationInput;
|
|
3158
3147
|
};
|
|
@@ -3455,14 +3444,11 @@ export type Query = {
|
|
|
3455
3444
|
question: Question;
|
|
3456
3445
|
questions: Array<Question>;
|
|
3457
3446
|
regions: RegionConnection;
|
|
3458
|
-
samlIntegration?: Maybe<SamlIntegration>;
|
|
3459
3447
|
schedulableEmployees: Array<Employee>;
|
|
3460
3448
|
schedulableMeetingRooms: Array<MeetingRoom>;
|
|
3461
3449
|
schedulableMeetingTypes: Array<MeetingType>;
|
|
3462
3450
|
schedulableOffices: Array<Office>;
|
|
3463
3451
|
schedulableSubjects: Array<Subject>;
|
|
3464
|
-
scimEndpoint: Scalars['String']['output'];
|
|
3465
|
-
scimTokens: Array<ScimToken>;
|
|
3466
3452
|
searchRegions: Array<Region>;
|
|
3467
3453
|
staticTranslationOverrides: Array<StaticTranslationOverride>;
|
|
3468
3454
|
staticTranslations: Scalars['JSONObject']['output'];
|
|
@@ -4380,44 +4366,6 @@ export type RenderedTemplateMeta = {
|
|
|
4380
4366
|
timeZone: Scalars['String']['output'];
|
|
4381
4367
|
};
|
|
4382
4368
|
export type ResourceType = 'API_CLIENT' | 'APPOINTMENT' | 'CUSTOMER' | 'EMPLOYEE' | 'ENTERPRISE_SETTING' | 'EXTERNAL_CALENDAR_ACCOUNT' | 'LEAD_SEGMENT' | 'LISTING' | 'MEETING_TYPE' | 'OFFICE' | 'OFFICE_RELATION' | 'SUBJECT' | 'SUBJECT_GROUP';
|
|
4383
|
-
export type SamlIntegration = {
|
|
4384
|
-
active: Scalars['Boolean']['output'];
|
|
4385
|
-
forceAuthentication: Scalars['Boolean']['output'];
|
|
4386
|
-
identityProviderMetadataUrl?: Maybe<Scalars['String']['output']>;
|
|
4387
|
-
identityProviderSignatureKey?: Maybe<SamlIntegrationIdentityProviderKey>;
|
|
4388
|
-
serviceProviderEncryptionKeys: Array<SamlIntegrationServiceProviderKey>;
|
|
4389
|
-
serviceProviderMetadataUrl: Scalars['String']['output'];
|
|
4390
|
-
serviceProviderSignatureKeys: Array<SamlIntegrationServiceProviderKey>;
|
|
4391
|
-
signServiceProviderMetadata: Scalars['Boolean']['output'];
|
|
4392
|
-
singleLogoutServiceUrl?: Maybe<Scalars['String']['output']>;
|
|
4393
|
-
singleSignOnServiceUrl?: Maybe<Scalars['String']['output']>;
|
|
4394
|
-
validateSignature: Scalars['Boolean']['output'];
|
|
4395
|
-
wantAssertionsEncrypted: Scalars['Boolean']['output'];
|
|
4396
|
-
wantAssertionsSigned: Scalars['Boolean']['output'];
|
|
4397
|
-
wantAuthnRequestsSigned: Scalars['Boolean']['output'];
|
|
4398
|
-
};
|
|
4399
|
-
export type SamlIntegrationIdentityProviderKey = {
|
|
4400
|
-
certificate: Scalars['String']['output'];
|
|
4401
|
-
expiresAt: Scalars['ISO8601']['output'];
|
|
4402
|
-
};
|
|
4403
|
-
export type SamlIntegrationKeyStatus = 'ACTIVE' | 'DISABLED' | 'PASSIVE';
|
|
4404
|
-
export type SamlIntegrationPatchInput = {
|
|
4405
|
-
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4406
|
-
forceAuthentication?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4407
|
-
signServiceProviderMetadata?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4408
|
-
validateSignature?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4409
|
-
wantAssertionsEncrypted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4410
|
-
wantAssertionsSigned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4411
|
-
wantAuthnRequestsSigned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4412
|
-
};
|
|
4413
|
-
export type SamlIntegrationServiceProviderKey = {
|
|
4414
|
-
algorithm: Scalars['String']['output'];
|
|
4415
|
-
certificate: Scalars['String']['output'];
|
|
4416
|
-
expiresAt: Scalars['ISO8601']['output'];
|
|
4417
|
-
id: Scalars['String']['output'];
|
|
4418
|
-
publicKey: Scalars['String']['output'];
|
|
4419
|
-
status: SamlIntegrationKeyStatus;
|
|
4420
|
-
};
|
|
4421
4369
|
export type ScimIntegration = BaseIntegration & {
|
|
4422
4370
|
active: Scalars['Boolean']['output'];
|
|
4423
4371
|
authToken?: Maybe<Scalars['String']['output']>;
|
|
@@ -4425,13 +4373,6 @@ export type ScimIntegration = BaseIntegration & {
|
|
|
4425
4373
|
integrationType: IntegrationType;
|
|
4426
4374
|
name: Scalars['String']['output'];
|
|
4427
4375
|
};
|
|
4428
|
-
export type ScimToken = {
|
|
4429
|
-
createdAt: Scalars['ISO8601']['output'];
|
|
4430
|
-
deletedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
4431
|
-
expiresAt: Scalars['ISO8601']['output'];
|
|
4432
|
-
id: Scalars['ID']['output'];
|
|
4433
|
-
updatedAt: Scalars['ISO8601']['output'];
|
|
4434
|
-
};
|
|
4435
4376
|
export type SecondaryParticipantInput = {
|
|
4436
4377
|
participantId: Scalars['ID']['input'];
|
|
4437
4378
|
type: ParticipantType;
|
|
@@ -4719,6 +4660,10 @@ export type SubjectMeetingTypeAvailabilitySetting = {
|
|
|
4719
4660
|
estimatedDuration: Scalars['Int']['output'];
|
|
4720
4661
|
maxConcurrentAppointments: Scalars['Int']['output'];
|
|
4721
4662
|
meetingType: MeetingType;
|
|
4663
|
+
/** in minutes */
|
|
4664
|
+
rank1offset: Scalars['Int']['output'];
|
|
4665
|
+
/** in minutes */
|
|
4666
|
+
rank2offset: Scalars['Int']['output'];
|
|
4722
4667
|
subject: Subject;
|
|
4723
4668
|
timeSlotEarliestPossible: Scalars['Int']['output'];
|
|
4724
4669
|
timeSlotGranularity: Scalars['Int']['output'];
|
|
@@ -4733,6 +4678,10 @@ export type SubjectMeetingTypeAvailabilitySettingPutInput = {
|
|
|
4733
4678
|
/** Valid values are 1-IntMax. */
|
|
4734
4679
|
maxConcurrentAppointments: Scalars['Int']['input'];
|
|
4735
4680
|
meetingType: MeetingType;
|
|
4681
|
+
/** Expressed in minutes. Valid values are 0-IntMax. */
|
|
4682
|
+
rank1offset: Scalars['Int']['input'];
|
|
4683
|
+
/** Expressed in minutes. Valid values are 0-IntMax. */
|
|
4684
|
+
rank2offset: Scalars['Int']['input'];
|
|
4736
4685
|
subjectId: Scalars['ID']['input'];
|
|
4737
4686
|
/** Expressed in minutes. Valid values are 0-806400 (560 days in minutes). */
|
|
4738
4687
|
timeSlotEarliestPossible: Scalars['Int']['input'];
|
|
@@ -4767,6 +4716,10 @@ export type SubjectOfficeMeetingTypeAvailabilitySetting = {
|
|
|
4767
4716
|
maxConcurrentAppointments?: Maybe<Scalars['Int']['output']>;
|
|
4768
4717
|
meetingType: MeetingType;
|
|
4769
4718
|
office: Office;
|
|
4719
|
+
/** in minutes */
|
|
4720
|
+
rank1offset?: Maybe<Scalars['Int']['output']>;
|
|
4721
|
+
/** in minutes */
|
|
4722
|
+
rank2offset?: Maybe<Scalars['Int']['output']>;
|
|
4770
4723
|
subject: Subject;
|
|
4771
4724
|
timeSlotEarliestPossible?: Maybe<Scalars['Int']['output']>;
|
|
4772
4725
|
timeSlotGranularity?: Maybe<Scalars['Int']['output']>;
|
|
@@ -4782,6 +4735,10 @@ export type SubjectOfficeMeetingTypeAvailabilitySettingPutInput = {
|
|
|
4782
4735
|
maxConcurrentAppointments?: InputMaybe<Scalars['Int']['input']>;
|
|
4783
4736
|
meetingType: MeetingType;
|
|
4784
4737
|
officeId: Scalars['ID']['input'];
|
|
4738
|
+
/** Expressed in minutes. Valid values are 0-IntMax. */
|
|
4739
|
+
rank1offset?: InputMaybe<Scalars['Int']['input']>;
|
|
4740
|
+
/** Expressed in minutes. Valid values are 0-IntMax. */
|
|
4741
|
+
rank2offset?: InputMaybe<Scalars['Int']['input']>;
|
|
4785
4742
|
subjectId: Scalars['ID']['input'];
|
|
4786
4743
|
/** Expressed in minutes. Valid values are 0-806400 (560 days in minutes). */
|
|
4787
4744
|
timeSlotEarliestPossible?: InputMaybe<Scalars['Int']['input']>;
|