@pexip-engage-public/graphql 1.6.9 → 1.7.3
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 +31 -0
- package/dist/graphql-env.d.ts +1359 -94
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +1505 -59
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +183 -31
- package/dist/schema.d.ts.map +1 -1
- package/dist/type-guards.d.ts +1 -1
- package/package.json +12 -6
- package/src/graphql-env.ts +1505 -59
- package/src/schema.ts +245 -17
package/dist/schema.d.ts
CHANGED
|
@@ -1,24 +1,5 @@
|
|
|
1
1
|
export type Maybe<T> = T | null;
|
|
2
2
|
export type InputMaybe<T> = Maybe<T>;
|
|
3
|
-
export type Exact<T extends {
|
|
4
|
-
[key: string]: unknown;
|
|
5
|
-
}> = {
|
|
6
|
-
[K in keyof T]: T[K];
|
|
7
|
-
};
|
|
8
|
-
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
9
|
-
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
10
|
-
};
|
|
11
|
-
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
12
|
-
[SubKey in K]: Maybe<T[SubKey]>;
|
|
13
|
-
};
|
|
14
|
-
export type MakeEmpty<T extends {
|
|
15
|
-
[key: string]: unknown;
|
|
16
|
-
}, K extends keyof T> = {
|
|
17
|
-
[_ in K]?: never;
|
|
18
|
-
};
|
|
19
|
-
export type Incremental<T> = T | {
|
|
20
|
-
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
21
|
-
};
|
|
22
3
|
/** All built-in and custom scalars, mapped to their actual values */
|
|
23
4
|
export type Scalars = {
|
|
24
5
|
ID: {
|
|
@@ -1044,6 +1025,50 @@ export type ConversionAnalyticsCountChart = {
|
|
|
1044
1025
|
totalConvertedSessions: Scalars['Int']['output'];
|
|
1045
1026
|
totalSessions: Scalars['Int']['output'];
|
|
1046
1027
|
};
|
|
1028
|
+
export type ConversionAnalyticsSession = {
|
|
1029
|
+
appointmentId?: Maybe<Scalars['ID']['output']>;
|
|
1030
|
+
browserHref?: Maybe<Scalars['String']['output']>;
|
|
1031
|
+
callbackRequestId?: Maybe<Scalars['ID']['output']>;
|
|
1032
|
+
converted: Scalars['Boolean']['output'];
|
|
1033
|
+
createdAt: Scalars['ISO8601']['output'];
|
|
1034
|
+
daysBetweenSessionAppointment?: Maybe<Scalars['Int']['output']>;
|
|
1035
|
+
daysUntilFirstAvailableTimeSlot?: Maybe<Scalars['Int']['output']>;
|
|
1036
|
+
duration: Scalars['Int']['output'];
|
|
1037
|
+
employeeId?: Maybe<Scalars['ID']['output']>;
|
|
1038
|
+
flow: Scalars['String']['output'];
|
|
1039
|
+
id: Scalars['String']['output'];
|
|
1040
|
+
intent?: Maybe<SessionIntent>;
|
|
1041
|
+
language: Scalars['String']['output'];
|
|
1042
|
+
leadSegmentId?: Maybe<Scalars['ID']['output']>;
|
|
1043
|
+
listingId?: Maybe<Scalars['ID']['output']>;
|
|
1044
|
+
meetingType?: Maybe<MeetingType>;
|
|
1045
|
+
officeId?: Maybe<Scalars['ID']['output']>;
|
|
1046
|
+
selectedTimeSlot?: Maybe<Scalars['ISO8601']['output']>;
|
|
1047
|
+
sourceTags?: Maybe<Array<Scalars['String']['output']>>;
|
|
1048
|
+
start: Scalars['ISO8601']['output'];
|
|
1049
|
+
stepsCompleted: Array<Scalars['String']['output']>;
|
|
1050
|
+
stepsShown: Array<Scalars['String']['output']>;
|
|
1051
|
+
stepsTouched: Array<Scalars['String']['output']>;
|
|
1052
|
+
subjectGroupId?: Maybe<Scalars['ID']['output']>;
|
|
1053
|
+
subjectId?: Maybe<Scalars['ID']['output']>;
|
|
1054
|
+
timeZone: Scalars['String']['output'];
|
|
1055
|
+
timetableSelectedMeetingTypes: Array<MeetingType>;
|
|
1056
|
+
timetableView?: Maybe<TimetableView>;
|
|
1057
|
+
updatedAt: Scalars['ISO8601']['output'];
|
|
1058
|
+
userBrowser?: Maybe<Scalars['String']['output']>;
|
|
1059
|
+
userDevice?: Maybe<Scalars['String']['output']>;
|
|
1060
|
+
userOS?: Maybe<Scalars['String']['output']>;
|
|
1061
|
+
userOSFamily?: Maybe<Scalars['String']['output']>;
|
|
1062
|
+
};
|
|
1063
|
+
export type ConversionAnalyticsSessionConnection = {
|
|
1064
|
+
edges: Array<ConversionAnalyticsSessionEdge>;
|
|
1065
|
+
pageInfo: PageInfo;
|
|
1066
|
+
totalCount: Scalars['Int']['output'];
|
|
1067
|
+
};
|
|
1068
|
+
export type ConversionAnalyticsSessionEdge = {
|
|
1069
|
+
cursor: Scalars['String']['output'];
|
|
1070
|
+
node: ConversionAnalyticsSession;
|
|
1071
|
+
};
|
|
1047
1072
|
export type ConversionAnalyticsSourceTagNestedChartItem = {
|
|
1048
1073
|
children: Array<ConversionAnalyticsSourceTagNestedChartItem>;
|
|
1049
1074
|
count: Scalars['Int']['output'];
|
|
@@ -2717,6 +2742,9 @@ export type Mutation = {
|
|
|
2717
2742
|
createMicrosoftDynamicsIntegrationConnectUrl: Scalars['String']['output'];
|
|
2718
2743
|
createOffice: Office;
|
|
2719
2744
|
createOfficeRelation: OfficeRelation;
|
|
2745
|
+
createOfficesUnavailability: Array<OfficesUnavailability>;
|
|
2746
|
+
createOidcIntegration: OidcIntegration;
|
|
2747
|
+
createOidcIntegrationConnectUrl: Scalars['String']['output'];
|
|
2720
2748
|
createQuestion: Question;
|
|
2721
2749
|
createSamlEncryptionKeyProvider: SamlKeyProvider;
|
|
2722
2750
|
createSamlIntegration: SamlIntegration;
|
|
@@ -2756,6 +2784,8 @@ export type Mutation = {
|
|
|
2756
2784
|
deleteManagedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
|
|
2757
2785
|
deleteOffice: Office;
|
|
2758
2786
|
deleteOfficeRelation: OfficeRelation;
|
|
2787
|
+
deleteOfficesUnavailability: OfficesUnavailability;
|
|
2788
|
+
deleteOidcIntegration: OidcIntegration;
|
|
2759
2789
|
deleteQuestion: Question;
|
|
2760
2790
|
deleteSamlEncryptionKeyProvider: Scalars['Boolean']['output'];
|
|
2761
2791
|
deleteSamlIntegration: SamlIntegration;
|
|
@@ -2799,6 +2829,7 @@ export type Mutation = {
|
|
|
2799
2829
|
patchMicrosoftDynamicsIntegration: MicrosoftDynamicsIntegration;
|
|
2800
2830
|
patchOffice: Office;
|
|
2801
2831
|
patchOfficeCallbackRequestSetting: OfficeCallbackRequestSetting;
|
|
2832
|
+
patchOidcIntegration: OidcIntegration;
|
|
2802
2833
|
patchQuestion: Question;
|
|
2803
2834
|
patchSamlEncryptionKeyProvider: SamlKeyProvider;
|
|
2804
2835
|
patchSamlIntegration: SamlIntegration;
|
|
@@ -2870,12 +2901,12 @@ export type Mutation = {
|
|
|
2870
2901
|
*/
|
|
2871
2902
|
revertUnavailability: Array<Unavailability>;
|
|
2872
2903
|
sendAIMessage: AiMessage;
|
|
2904
|
+
setSsoRedirectTarget?: Maybe<SsoRedirectTarget>;
|
|
2873
2905
|
syncFutureEventsToExternalCalendar: Scalars['Boolean']['output'];
|
|
2874
2906
|
syncMeetingRooms: Scalars['Boolean']['output'];
|
|
2875
2907
|
syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
|
|
2876
2908
|
testMeetingRoomAccess: Scalars['Boolean']['output'];
|
|
2877
2909
|
testWebhookConfiguration: WebhookDelivery;
|
|
2878
|
-
toggleRedirectToSaml: Scalars['Boolean']['output'];
|
|
2879
2910
|
updateAppointmentLocation: Appointment;
|
|
2880
2911
|
updateAppointmentMeetingType: Appointment;
|
|
2881
2912
|
uploadSamlIdentityProviderMetadataByFile: SamlIntegration;
|
|
@@ -3020,6 +3051,17 @@ export type MutationCreateOfficeRelationArgs = {
|
|
|
3020
3051
|
officeId: Scalars['ID']['input'];
|
|
3021
3052
|
role: OfficeRelationRole;
|
|
3022
3053
|
};
|
|
3054
|
+
export type MutationCreateOfficesUnavailabilityArgs = {
|
|
3055
|
+
input: OfficesUnavailabilityCreateInput;
|
|
3056
|
+
};
|
|
3057
|
+
export type MutationCreateOidcIntegrationArgs = {
|
|
3058
|
+
microsoftEntra?: InputMaybe<OidcMicrosoftEntraConfigInput>;
|
|
3059
|
+
provider: OidcProviderType;
|
|
3060
|
+
};
|
|
3061
|
+
export type MutationCreateOidcIntegrationConnectUrlArgs = {
|
|
3062
|
+
provider: OidcProviderType;
|
|
3063
|
+
redirectUrl: Scalars['String']['input'];
|
|
3064
|
+
};
|
|
3023
3065
|
export type MutationCreateQuestionArgs = {
|
|
3024
3066
|
formId: Scalars['ID']['input'];
|
|
3025
3067
|
questionPutInput: QuestionPutInput;
|
|
@@ -3121,6 +3163,12 @@ export type MutationDeleteOfficeRelationArgs = {
|
|
|
3121
3163
|
officeId: Scalars['ID']['input'];
|
|
3122
3164
|
role: OfficeRelationRole;
|
|
3123
3165
|
};
|
|
3166
|
+
export type MutationDeleteOfficesUnavailabilityArgs = {
|
|
3167
|
+
id: Scalars['ID']['input'];
|
|
3168
|
+
};
|
|
3169
|
+
export type MutationDeleteOidcIntegrationArgs = {
|
|
3170
|
+
provider: OidcProviderType;
|
|
3171
|
+
};
|
|
3124
3172
|
export type MutationDeleteQuestionArgs = {
|
|
3125
3173
|
id: Scalars['ID']['input'];
|
|
3126
3174
|
};
|
|
@@ -3266,6 +3314,10 @@ export type MutationPatchOfficeCallbackRequestSettingArgs = {
|
|
|
3266
3314
|
input: OfficeCallbackRequestSettingInput;
|
|
3267
3315
|
officeId: Scalars['ID']['input'];
|
|
3268
3316
|
};
|
|
3317
|
+
export type MutationPatchOidcIntegrationArgs = {
|
|
3318
|
+
input: OidcIntegrationPatchInput;
|
|
3319
|
+
provider: OidcProviderType;
|
|
3320
|
+
};
|
|
3269
3321
|
export type MutationPatchQuestionArgs = {
|
|
3270
3322
|
id: Scalars['ID']['input'];
|
|
3271
3323
|
questionPatchInput: QuestionPatchInput;
|
|
@@ -3498,6 +3550,9 @@ export type MutationSendAiMessageArgs = {
|
|
|
3498
3550
|
aiThreadId?: InputMaybe<Scalars['String']['input']>;
|
|
3499
3551
|
input: AiMessageSendInput;
|
|
3500
3552
|
};
|
|
3553
|
+
export type MutationSetSsoRedirectTargetArgs = {
|
|
3554
|
+
target?: InputMaybe<SsoRedirectTarget>;
|
|
3555
|
+
};
|
|
3501
3556
|
export type MutationSyncFutureEventsToExternalCalendarArgs = {
|
|
3502
3557
|
externalCalendarId: Scalars['ID']['input'];
|
|
3503
3558
|
};
|
|
@@ -3510,9 +3565,6 @@ export type MutationTestMeetingRoomAccessArgs = {
|
|
|
3510
3565
|
export type MutationTestWebhookConfigurationArgs = {
|
|
3511
3566
|
id: Scalars['ID']['input'];
|
|
3512
3567
|
};
|
|
3513
|
-
export type MutationToggleRedirectToSamlArgs = {
|
|
3514
|
-
shouldRedirectToSaml: Scalars['Boolean']['input'];
|
|
3515
|
-
};
|
|
3516
3568
|
export type MutationUpdateAppointmentLocationArgs = {
|
|
3517
3569
|
id: Scalars['ID']['input'];
|
|
3518
3570
|
input: AppointmentLocationUpdateInput;
|
|
@@ -3714,6 +3766,73 @@ export type OfficeTranslationsPatchInput = {
|
|
|
3714
3766
|
name?: InputMaybe<Array<TranslationObjectInput>>;
|
|
3715
3767
|
parkingInfo?: InputMaybe<Array<TranslationObjectInput>>;
|
|
3716
3768
|
};
|
|
3769
|
+
export type OfficeUnavailability = {
|
|
3770
|
+
action: OfficeUnavailabilityAction;
|
|
3771
|
+
end: Scalars['ISO8601']['output'];
|
|
3772
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
3773
|
+
messageForCustomer?: Maybe<Scalars['String']['output']>;
|
|
3774
|
+
officeId: Scalars['ID']['output'];
|
|
3775
|
+
officesUnavailabilityId: Scalars['ID']['output'];
|
|
3776
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
3777
|
+
start: Scalars['ISO8601']['output'];
|
|
3778
|
+
};
|
|
3779
|
+
export type OfficeUnavailabilityAction = 'CANCEL' | 'NO_ACTION' | 'REQUEST_RESCHEDULE';
|
|
3780
|
+
export type OfficesUnavailability = {
|
|
3781
|
+
action: OfficeUnavailabilityAction;
|
|
3782
|
+
allOffices: Scalars['Boolean']['output'];
|
|
3783
|
+
createdAt: Scalars['ISO8601']['output'];
|
|
3784
|
+
/** End date-time WITHOUT timezone, e.g. "2026-05-01T17:00:00". Interpreted as local time in each affected office's timezone. */
|
|
3785
|
+
end: Scalars['String']['output'];
|
|
3786
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
3787
|
+
id: Scalars['ID']['output'];
|
|
3788
|
+
messageForCustomer?: Maybe<Scalars['String']['output']>;
|
|
3789
|
+
/** Offices affected by this unavailability. All active offices when allOffices is true. */
|
|
3790
|
+
offices: Array<Office>;
|
|
3791
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
3792
|
+
/** Start date-time WITHOUT timezone, e.g. "2026-05-01T09:00:00". Interpreted as local time in each affected office's timezone. */
|
|
3793
|
+
start: Scalars['String']['output'];
|
|
3794
|
+
updatedAt: Scalars['ISO8601']['output'];
|
|
3795
|
+
};
|
|
3796
|
+
export type OfficesUnavailabilityConnection = {
|
|
3797
|
+
edges: Array<OfficesUnavailabilityEdge>;
|
|
3798
|
+
pageInfo: PageInfo;
|
|
3799
|
+
totalCount: Scalars['Int']['output'];
|
|
3800
|
+
};
|
|
3801
|
+
export type OfficesUnavailabilityCreateInput = {
|
|
3802
|
+
/** Action to apply to existing appointments overlapping the unavailability range. */
|
|
3803
|
+
action: OfficeUnavailabilityAction;
|
|
3804
|
+
/** When true (admin-only), applies the unavailability to all active offices. Cannot be combined with officeIds. */
|
|
3805
|
+
allOffices?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3806
|
+
/** End date-time WITHOUT timezone (e.g. "2026-05-01T17:00:00"). Interpreted as local time in each office's timezone. */
|
|
3807
|
+
end: Scalars['String']['input'];
|
|
3808
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
3809
|
+
messageForCustomer?: InputMaybe<Scalars['String']['input']>;
|
|
3810
|
+
officeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3811
|
+
reason?: InputMaybe<Scalars['String']['input']>;
|
|
3812
|
+
/** Start date-time WITHOUT timezone (e.g. "2026-05-01T09:00:00"). Interpreted as local time in each office's timezone. */
|
|
3813
|
+
start: Scalars['String']['input'];
|
|
3814
|
+
};
|
|
3815
|
+
export type OfficesUnavailabilityEdge = {
|
|
3816
|
+
cursor: Scalars['String']['output'];
|
|
3817
|
+
node: OfficesUnavailability;
|
|
3818
|
+
};
|
|
3819
|
+
export type OidcIntegration = {
|
|
3820
|
+
active: Scalars['Boolean']['output'];
|
|
3821
|
+
microsoftEntra?: Maybe<OidcMicrosoftEntraConfig>;
|
|
3822
|
+
provider: OidcProviderType;
|
|
3823
|
+
};
|
|
3824
|
+
export type OidcIntegrationPatchInput = {
|
|
3825
|
+
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3826
|
+
microsoftEntra?: InputMaybe<OidcMicrosoftEntraConfigInput>;
|
|
3827
|
+
};
|
|
3828
|
+
export type OidcMicrosoftEntraConfig = {
|
|
3829
|
+
tenantId?: Maybe<Scalars['String']['output']>;
|
|
3830
|
+
};
|
|
3831
|
+
export type OidcMicrosoftEntraConfigInput = {
|
|
3832
|
+
tenantId?: InputMaybe<Scalars['String']['input']>;
|
|
3833
|
+
};
|
|
3834
|
+
/** Vendor-specific OIDC provider implementation (e.g. Microsoft Entra ID). */
|
|
3835
|
+
export type OidcProviderType = 'MICROSOFT_ENTRA';
|
|
3717
3836
|
export type PageInfo = {
|
|
3718
3837
|
endCursor: Scalars['String']['output'];
|
|
3719
3838
|
hasNextPage: Scalars['Boolean']['output'];
|
|
@@ -3801,6 +3920,7 @@ export type Query = {
|
|
|
3801
3920
|
conversionAnalyticsFlowChart: Chart;
|
|
3802
3921
|
conversionAnalyticsFunnelChart: Chart;
|
|
3803
3922
|
conversionAnalyticsMeetingTypeChart: Chart;
|
|
3923
|
+
conversionAnalyticsSessions: ConversionAnalyticsSessionConnection;
|
|
3804
3924
|
conversionAnalyticsSourceTagChart: Chart;
|
|
3805
3925
|
conversionAnalyticsSourceTagNestedChart: Array<ConversionAnalyticsSourceTagNestedChartItem>;
|
|
3806
3926
|
conversionAnalyticsSubjectChart: Chart;
|
|
@@ -3837,7 +3957,6 @@ export type Query = {
|
|
|
3837
3957
|
integration: BaseIntegration;
|
|
3838
3958
|
integrations: BaseIntegrationConnection;
|
|
3839
3959
|
isCallbackRequestEnabled: Scalars['Boolean']['output'];
|
|
3840
|
-
isRedirectToSamlEnabled: Scalars['Boolean']['output'];
|
|
3841
3960
|
leadSegment: LeadSegment;
|
|
3842
3961
|
leadSegmentCallbackRequestSettings: LeadSegmentCallbackRequestSetting;
|
|
3843
3962
|
leadSegments: LeadSegmentConnection;
|
|
@@ -3861,7 +3980,12 @@ export type Query = {
|
|
|
3861
3980
|
officeCallbackRequestSettings: OfficeCallbackRequestSetting;
|
|
3862
3981
|
officeEmployeeCoverageRegionSchedulingSettings: Array<OfficeEmployeeCoverageRegionSchedulingSetting>;
|
|
3863
3982
|
officeEmployeeSubjectCoverageRegionSchedulingSettings: Array<OfficeEmployeeSubjectCoverageRegionSchedulingSetting>;
|
|
3983
|
+
officeUnavailabilities: Array<OfficeUnavailability>;
|
|
3864
3984
|
offices: OfficeConnection;
|
|
3985
|
+
officesUnavailabilities: OfficesUnavailabilityConnection;
|
|
3986
|
+
officesUnavailability: OfficesUnavailability;
|
|
3987
|
+
oidcIntegration?: Maybe<OidcIntegration>;
|
|
3988
|
+
oidcIntegrations: Array<OidcIntegration>;
|
|
3865
3989
|
pexipInfinityCall: PexipInfinityCall;
|
|
3866
3990
|
question: Question;
|
|
3867
3991
|
questions: Array<Question>;
|
|
@@ -3880,6 +4004,7 @@ export type Query = {
|
|
|
3880
4004
|
scimEndpoint: Scalars['String']['output'];
|
|
3881
4005
|
scimTokens: Array<ScimToken>;
|
|
3882
4006
|
searchRegions: Array<Region>;
|
|
4007
|
+
ssoRedirectTarget?: Maybe<SsoRedirectTarget>;
|
|
3883
4008
|
staticTranslationOverrides: Array<StaticTranslationOverride>;
|
|
3884
4009
|
staticTranslations: Scalars['JSONObject']['output'];
|
|
3885
4010
|
storageAccountActive: Scalars['Boolean']['output'];
|
|
@@ -4156,6 +4281,14 @@ export type QueryConversionAnalyticsFunnelChartArgs = {
|
|
|
4156
4281
|
export type QueryConversionAnalyticsMeetingTypeChartArgs = {
|
|
4157
4282
|
filters: ConversionAnalyticsChartFilters;
|
|
4158
4283
|
};
|
|
4284
|
+
export type QueryConversionAnalyticsSessionsArgs = {
|
|
4285
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4286
|
+
appointmentId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4287
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
4288
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4289
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4290
|
+
sessionId?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4291
|
+
};
|
|
4159
4292
|
export type QueryConversionAnalyticsSourceTagChartArgs = {
|
|
4160
4293
|
filters: ConversionAnalyticsChartFilters;
|
|
4161
4294
|
};
|
|
@@ -4503,6 +4636,11 @@ export type QueryOfficeEmployeeSubjectCoverageRegionSchedulingSettingsArgs = {
|
|
|
4503
4636
|
regionId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4504
4637
|
subjectId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4505
4638
|
};
|
|
4639
|
+
export type QueryOfficeUnavailabilitiesArgs = {
|
|
4640
|
+
from?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
4641
|
+
officeId: Array<Scalars['ID']['input']>;
|
|
4642
|
+
to?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
4643
|
+
};
|
|
4506
4644
|
export type QueryOfficesArgs = {
|
|
4507
4645
|
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4508
4646
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4519,6 +4657,22 @@ export type QueryOfficesArgs = {
|
|
|
4519
4657
|
virtual?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4520
4658
|
withDeleted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4521
4659
|
};
|
|
4660
|
+
export type QueryOfficesUnavailabilitiesArgs = {
|
|
4661
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4662
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
4663
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4664
|
+
from?: InputMaybe<Scalars['String']['input']>;
|
|
4665
|
+
id?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4666
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4667
|
+
officeId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4668
|
+
to?: InputMaybe<Scalars['String']['input']>;
|
|
4669
|
+
};
|
|
4670
|
+
export type QueryOfficesUnavailabilityArgs = {
|
|
4671
|
+
id: Scalars['ID']['input'];
|
|
4672
|
+
};
|
|
4673
|
+
export type QueryOidcIntegrationArgs = {
|
|
4674
|
+
provider: OidcProviderType;
|
|
4675
|
+
};
|
|
4522
4676
|
export type QueryPexipInfinityCallArgs = {
|
|
4523
4677
|
token: Scalars['String']['input'];
|
|
4524
4678
|
};
|
|
@@ -4926,7 +5080,7 @@ export type RenderedTemplateMeta = {
|
|
|
4926
5080
|
receiver: Receiver;
|
|
4927
5081
|
timeZone: Scalars['String']['output'];
|
|
4928
5082
|
};
|
|
4929
|
-
export type ResourceType = 'API_CLIENT' | 'APPOINTMENT' | 'CUSTOMER' | 'EMPLOYEE' | 'ENTERPRISE_SETTING' | 'EXTERNAL_CALENDAR_ACCOUNT' | 'LEAD_SEGMENT' | 'LISTING' | 'MEETING_TYPE' | 'OFFICE' | 'OFFICE_RELATION' | 'SAML_INTEGRATION' | 'SAML_KEY_PROVIDER' | 'SCIM_TOKEN' | 'SUBJECT' | 'SUBJECT_GROUP';
|
|
5083
|
+
export type ResourceType = 'ANSWER_OPTION' | 'API_CLIENT' | 'APPLIED_TEMPLATE' | 'APPOINTMENT' | 'AVAILABILITY_TEMPLATE' | 'AVAILABILITY_TIME_RANGE' | 'AVAILABILITY_TIME_RANGE_OFFICE' | 'CALENDAR_EVENT_TEMPLATE' | 'CALLBACK_REQUEST' | 'CUSTOMER' | 'EMAIL_TEMPLATE' | 'EMPLOYEE' | 'ENTERPRISE_SETTING' | 'EXTERNAL_CALENDAR' | 'EXTERNAL_CALENDAR_ACCOUNT' | 'FETCH_CONFIGURATION' | 'FILE' | 'FORM' | 'LEAD_SEGMENT' | 'LISTING' | 'MEETING_ROOM' | 'MEETING_TYPE' | 'OFFICE' | 'OFFICE_RELATION' | 'OIDC_INTEGRATION' | 'QUESTION' | 'SAML_INTEGRATION' | 'SAML_KEY_PROVIDER' | 'SCIM_TOKEN' | 'SUBJECT' | 'SUBJECT_GROUP' | 'TEXT_MESSAGE_TEMPLATE' | 'UNAVAILABILITY';
|
|
4930
5084
|
export type SamlIntegration = {
|
|
4931
5085
|
active: Scalars['Boolean']['output'];
|
|
4932
5086
|
forceAuthentication: Scalars['Boolean']['output'];
|
|
@@ -5125,8 +5279,10 @@ export type SortableMeetingRoomFields = 'active' | 'capacity' | 'createdAt' | 'e
|
|
|
5125
5279
|
export type SortableOfficeFields = 'active' | 'createdAt' | 'externalId' | 'id' | 'name' | 'updatedAt';
|
|
5126
5280
|
export type SortableRegionFields = 'code' | 'countryCode' | 'id' | 'level' | 'name' | 'parentId';
|
|
5127
5281
|
export type SortableScheduledCommunicationFields = 'scheduledAt';
|
|
5128
|
-
export type SortableSubjectFields = 'createdAt' | 'externalId' | 'id' | 'name' | 'order' | 'subjectGroupId' | 'subjectGroupName' | 'updatedAt';
|
|
5282
|
+
export type SortableSubjectFields = 'createdAt' | 'externalId' | 'id' | 'name' | 'order' | 'subjectGroupDescription' | 'subjectGroupId' | 'subjectGroupName' | 'updatedAt';
|
|
5129
5283
|
export type SortableSubjectGroupFields = 'createdAt' | 'description' | 'externalId' | 'id' | 'name' | 'order' | 'updatedAt';
|
|
5284
|
+
/** Identity provider the login flow auto-redirects users to. Only one provider can be active at a time per enterprise. */
|
|
5285
|
+
export type SsoRedirectTarget = 'OIDC_MICROSOFT_ENTRA' | 'SAML';
|
|
5130
5286
|
export type StaticTranslationModule = 'BACKOFFICE_APP' | 'CALENDAR_EVENT_TEMPLATE' | 'EMAIL_TEMPLATE' | 'INSIGHTS' | 'PLUGIN' | 'TEXT_MESSAGE_TEMPLATE' | 'VIDEO';
|
|
5131
5287
|
export type StaticTranslationOverride = {
|
|
5132
5288
|
createdAt: Scalars['ISO8601']['output'];
|
|
@@ -5560,7 +5716,7 @@ export type TranslationObjectInput = {
|
|
|
5560
5716
|
language: Language;
|
|
5561
5717
|
value: Scalars['String']['input'];
|
|
5562
5718
|
};
|
|
5563
|
-
export type UiFeature = 'ALLOW_AVAILABILITY_TIME_RANGE_OVERLAP' | 'APPOINTMENT_COMPLETION' | 'APPOINTMENT_CREATION' | 'APPOINTMENT_CREATION_CUSTOMER_EDIT' | 'APPOINTMENT_CREATION_LEAD_SEGMENT' | 'APPOINTMENT_CREATION_LISTING' | 'APPOINTMENT_CREATION_MESSAGE_FOR_CUSTOMER' | 'APPOINTMENT_CROSS_OFFICE_EMPLOYEE_SELECTION_ENABLED' | 'APPOINTMENT_CUSTOMER_SELECTION' | 'APPOINTMENT_ONLY_SCHEDULABLE_TOGGLE' | 'APPOINTMENT_PAST_EDITING_ENABLED' | 'APPOINTMENT_SCHEDULING' | 'APPOINTMENT_SUBJECT_SELECTION' | 'CALENDAR_UNAVAILABILITY_EVENTS' | 'CUSTOMER_CREATION' | 'CUSTOMER_DETAILS' | 'CUSTOMER_OVERVIEW' | 'DEFAULT_AVAILABILITY_SETTINGS_OVERRIDE' | 'DEFINED_AVAILABILITY_SYNCHRONIZATION' | 'EMPLOYEE_AVATAR' | 'EMPLOYEE_FUNCTION_SUBTITLE' | 'FORMS' | 'INDEPENDENT_AGENTS' | 'INVITE_CREATION' | 'LEAD_SEGMENTS' | 'LISTINGS' | 'MEETING_LINK_CREATION' | 'MULTI_PARTICIPANTS_AGENT' | 'MULTI_PARTICIPANTS_CUSTOMER' | 'MY_APPOINTMENTS' | 'MY_APPOINTMENT_HOURS' | 'MY_AUTHENTICATION' | 'MY_PROFILE' | 'MY_SYNCHRONIZED_CALENDARS' | 'RESCHEDULE_REQUEST' | 'TEAM_APPOINTMENTS_OVERVIEW' | 'TEAM_APPOINTMENT_INSIGHTS' | 'TEAM_COVERAGE_REGIONS_ON_LOCATION' | 'TEAM_COVERAGE_REGIONS_PHONE' | 'TEAM_COVERAGE_REGIONS_VIDEO' | 'TEAM_MEMBERS_OVERVIEW' | 'TEAM_MEMBER_APPOINTMENT_HOURS' | 'TEAM_MEMBER_EXPERTISE' | 'TEAM_MEMBER_PROFILE' | 'TEAM_MEMBER_REMOVAL' | 'TEAM_MEMBER_SYNCHRONIZED_CALENDARS' | 'TEAM_OFFICE_DETAILS' | 'TEAM_OFFICE_EXPERTISE' | 'TEAM_OFFICE_PLANNING_RULES' | 'UPDATE_MEETING_TYPE' | 'VIRTUAL_OFFICES';
|
|
5719
|
+
export type UiFeature = 'ALLOW_AVAILABILITY_TIME_RANGE_OVERLAP' | 'APPOINTMENT_COMPLETION' | 'APPOINTMENT_CREATION' | 'APPOINTMENT_CREATION_CUSTOMER_EDIT' | 'APPOINTMENT_CREATION_LEAD_SEGMENT' | 'APPOINTMENT_CREATION_LISTING' | 'APPOINTMENT_CREATION_MESSAGE_FOR_CUSTOMER' | 'APPOINTMENT_CROSS_OFFICE_EMPLOYEE_SELECTION_ENABLED' | 'APPOINTMENT_CUSTOMER_SELECTION' | 'APPOINTMENT_ONLY_SCHEDULABLE_TOGGLE' | 'APPOINTMENT_PAST_EDITING_ENABLED' | 'APPOINTMENT_SCHEDULING' | 'APPOINTMENT_SUBJECT_SELECTION' | 'CALENDAR_UNAVAILABILITY_EVENTS' | 'CUSTOMER_CREATION' | 'CUSTOMER_DETAILS' | 'CUSTOMER_OVERVIEW' | 'CUSTOMER_PHONE_NUMBER_VALIDATION' | 'DEFAULT_AVAILABILITY_SETTINGS_OVERRIDE' | 'DEFINED_AVAILABILITY_SYNCHRONIZATION' | 'EMPLOYEE_AVATAR' | 'EMPLOYEE_FUNCTION_SUBTITLE' | 'FORMS' | 'INDEPENDENT_AGENTS' | 'INVITE_CREATION' | 'LEAD_SEGMENTS' | 'LISTINGS' | 'MEETING_LINK_CREATION' | 'MULTI_PARTICIPANTS_AGENT' | 'MULTI_PARTICIPANTS_CUSTOMER' | 'MY_APPOINTMENTS' | 'MY_APPOINTMENT_HOURS' | 'MY_AUTHENTICATION' | 'MY_PROFILE' | 'MY_SYNCHRONIZED_CALENDARS' | 'RESCHEDULE_REQUEST' | 'TEAM_APPOINTMENTS_OVERVIEW' | 'TEAM_APPOINTMENT_INSIGHTS' | 'TEAM_COVERAGE_REGIONS_ON_LOCATION' | 'TEAM_COVERAGE_REGIONS_PHONE' | 'TEAM_COVERAGE_REGIONS_VIDEO' | 'TEAM_MEMBERS_OVERVIEW' | 'TEAM_MEMBER_APPOINTMENT_HOURS' | 'TEAM_MEMBER_EXPERTISE' | 'TEAM_MEMBER_PROFILE' | 'TEAM_MEMBER_REMOVAL' | 'TEAM_MEMBER_SYNCHRONIZED_CALENDARS' | 'TEAM_OFFICE_DETAILS' | 'TEAM_OFFICE_EXPERTISE' | 'TEAM_OFFICE_PLANNING_RULES' | 'UPDATE_MEETING_TYPE' | 'VIRTUAL_OFFICES';
|
|
5564
5720
|
export type UiFeatureToggleEnterpriseSettingInput = {
|
|
5565
5721
|
enabled: Scalars['Boolean']['input'];
|
|
5566
5722
|
feature: UiFeature;
|
|
@@ -5758,19 +5914,15 @@ export type WebhookDelivery = {
|
|
|
5758
5914
|
attempts: Scalars['Int']['output'];
|
|
5759
5915
|
correlationId: Scalars['String']['output'];
|
|
5760
5916
|
createdAt: Scalars['ISO8601']['output'];
|
|
5761
|
-
/** The unique identifier of the delivery attempt. */
|
|
5762
|
-
deliveryId: Scalars['String']['output'];
|
|
5763
5917
|
/** Return the duration in milliseconds. */
|
|
5764
5918
|
duration?: Maybe<Scalars['Int']['output']>;
|
|
5765
5919
|
error?: Maybe<Scalars['String']['output']>;
|
|
5766
5920
|
event: Scalars['String']['output'];
|
|
5767
|
-
redelivery: Scalars['Boolean']['output'];
|
|
5768
5921
|
resourceId: Scalars['String']['output'];
|
|
5769
5922
|
statusCode?: Maybe<Scalars['Float']['output']>;
|
|
5770
5923
|
success: Scalars['Boolean']['output'];
|
|
5771
5924
|
updatedAt: Scalars['ISO8601']['output'];
|
|
5772
5925
|
webhookConfiguration: WebhookConfiguration;
|
|
5773
|
-
/** The unique identifier for the webhook delivery. This identifier will remain consistent across retries and redeliveries. */
|
|
5774
5926
|
webhookId: Scalars['String']['output'];
|
|
5775
5927
|
};
|
|
5776
5928
|
export type WebhookDeliveryConnection = {
|