@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/src/schema.ts
CHANGED
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
export type Maybe<T> = T | null;
|
|
2
2
|
export type InputMaybe<T> = Maybe<T>;
|
|
3
|
-
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
|
|
4
|
-
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
|
|
5
|
-
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
|
|
6
|
-
export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
|
|
7
|
-
export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
|
|
8
3
|
/** All built-in and custom scalars, mapped to their actual values */
|
|
9
4
|
export type Scalars = {
|
|
10
5
|
ID: { input: string; output: string; }
|
|
@@ -1264,6 +1259,53 @@ export type ConversionAnalyticsCountChart = {
|
|
|
1264
1259
|
totalSessions: Scalars['Int']['output'];
|
|
1265
1260
|
};
|
|
1266
1261
|
|
|
1262
|
+
export type ConversionAnalyticsSession = {
|
|
1263
|
+
appointmentId?: Maybe<Scalars['ID']['output']>;
|
|
1264
|
+
browserHref?: Maybe<Scalars['String']['output']>;
|
|
1265
|
+
callbackRequestId?: Maybe<Scalars['ID']['output']>;
|
|
1266
|
+
converted: Scalars['Boolean']['output'];
|
|
1267
|
+
createdAt: Scalars['ISO8601']['output'];
|
|
1268
|
+
daysBetweenSessionAppointment?: Maybe<Scalars['Int']['output']>;
|
|
1269
|
+
daysUntilFirstAvailableTimeSlot?: Maybe<Scalars['Int']['output']>;
|
|
1270
|
+
duration: Scalars['Int']['output'];
|
|
1271
|
+
employeeId?: Maybe<Scalars['ID']['output']>;
|
|
1272
|
+
flow: Scalars['String']['output'];
|
|
1273
|
+
id: Scalars['String']['output'];
|
|
1274
|
+
intent?: Maybe<SessionIntent>;
|
|
1275
|
+
language: Scalars['String']['output'];
|
|
1276
|
+
leadSegmentId?: Maybe<Scalars['ID']['output']>;
|
|
1277
|
+
listingId?: Maybe<Scalars['ID']['output']>;
|
|
1278
|
+
meetingType?: Maybe<MeetingType>;
|
|
1279
|
+
officeId?: Maybe<Scalars['ID']['output']>;
|
|
1280
|
+
selectedTimeSlot?: Maybe<Scalars['ISO8601']['output']>;
|
|
1281
|
+
sourceTags?: Maybe<Array<Scalars['String']['output']>>;
|
|
1282
|
+
start: Scalars['ISO8601']['output'];
|
|
1283
|
+
stepsCompleted: Array<Scalars['String']['output']>;
|
|
1284
|
+
stepsShown: Array<Scalars['String']['output']>;
|
|
1285
|
+
stepsTouched: Array<Scalars['String']['output']>;
|
|
1286
|
+
subjectGroupId?: Maybe<Scalars['ID']['output']>;
|
|
1287
|
+
subjectId?: Maybe<Scalars['ID']['output']>;
|
|
1288
|
+
timeZone: Scalars['String']['output'];
|
|
1289
|
+
timetableSelectedMeetingTypes: Array<MeetingType>;
|
|
1290
|
+
timetableView?: Maybe<TimetableView>;
|
|
1291
|
+
updatedAt: Scalars['ISO8601']['output'];
|
|
1292
|
+
userBrowser?: Maybe<Scalars['String']['output']>;
|
|
1293
|
+
userDevice?: Maybe<Scalars['String']['output']>;
|
|
1294
|
+
userOS?: Maybe<Scalars['String']['output']>;
|
|
1295
|
+
userOSFamily?: Maybe<Scalars['String']['output']>;
|
|
1296
|
+
};
|
|
1297
|
+
|
|
1298
|
+
export type ConversionAnalyticsSessionConnection = {
|
|
1299
|
+
edges: Array<ConversionAnalyticsSessionEdge>;
|
|
1300
|
+
pageInfo: PageInfo;
|
|
1301
|
+
totalCount: Scalars['Int']['output'];
|
|
1302
|
+
};
|
|
1303
|
+
|
|
1304
|
+
export type ConversionAnalyticsSessionEdge = {
|
|
1305
|
+
cursor: Scalars['String']['output'];
|
|
1306
|
+
node: ConversionAnalyticsSession;
|
|
1307
|
+
};
|
|
1308
|
+
|
|
1267
1309
|
export type ConversionAnalyticsSourceTagNestedChartItem = {
|
|
1268
1310
|
children: Array<ConversionAnalyticsSourceTagNestedChartItem>;
|
|
1269
1311
|
count: Scalars['Int']['output'];
|
|
@@ -3293,6 +3335,9 @@ export type Mutation = {
|
|
|
3293
3335
|
createMicrosoftDynamicsIntegrationConnectUrl: Scalars['String']['output'];
|
|
3294
3336
|
createOffice: Office;
|
|
3295
3337
|
createOfficeRelation: OfficeRelation;
|
|
3338
|
+
createOfficesUnavailability: Array<OfficesUnavailability>;
|
|
3339
|
+
createOidcIntegration: OidcIntegration;
|
|
3340
|
+
createOidcIntegrationConnectUrl: Scalars['String']['output'];
|
|
3296
3341
|
createQuestion: Question;
|
|
3297
3342
|
createSamlEncryptionKeyProvider: SamlKeyProvider;
|
|
3298
3343
|
createSamlIntegration: SamlIntegration;
|
|
@@ -3332,6 +3377,8 @@ export type Mutation = {
|
|
|
3332
3377
|
deleteManagedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
|
|
3333
3378
|
deleteOffice: Office;
|
|
3334
3379
|
deleteOfficeRelation: OfficeRelation;
|
|
3380
|
+
deleteOfficesUnavailability: OfficesUnavailability;
|
|
3381
|
+
deleteOidcIntegration: OidcIntegration;
|
|
3335
3382
|
deleteQuestion: Question;
|
|
3336
3383
|
deleteSamlEncryptionKeyProvider: Scalars['Boolean']['output'];
|
|
3337
3384
|
deleteSamlIntegration: SamlIntegration;
|
|
@@ -3375,6 +3422,7 @@ export type Mutation = {
|
|
|
3375
3422
|
patchMicrosoftDynamicsIntegration: MicrosoftDynamicsIntegration;
|
|
3376
3423
|
patchOffice: Office;
|
|
3377
3424
|
patchOfficeCallbackRequestSetting: OfficeCallbackRequestSetting;
|
|
3425
|
+
patchOidcIntegration: OidcIntegration;
|
|
3378
3426
|
patchQuestion: Question;
|
|
3379
3427
|
patchSamlEncryptionKeyProvider: SamlKeyProvider;
|
|
3380
3428
|
patchSamlIntegration: SamlIntegration;
|
|
@@ -3446,12 +3494,12 @@ export type Mutation = {
|
|
|
3446
3494
|
*/
|
|
3447
3495
|
revertUnavailability: Array<Unavailability>;
|
|
3448
3496
|
sendAIMessage: AiMessage;
|
|
3497
|
+
setSsoRedirectTarget?: Maybe<SsoRedirectTarget>;
|
|
3449
3498
|
syncFutureEventsToExternalCalendar: Scalars['Boolean']['output'];
|
|
3450
3499
|
syncMeetingRooms: Scalars['Boolean']['output'];
|
|
3451
3500
|
syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
|
|
3452
3501
|
testMeetingRoomAccess: Scalars['Boolean']['output'];
|
|
3453
3502
|
testWebhookConfiguration: WebhookDelivery;
|
|
3454
|
-
toggleRedirectToSaml: Scalars['Boolean']['output'];
|
|
3455
3503
|
updateAppointmentLocation: Appointment;
|
|
3456
3504
|
updateAppointmentMeetingType: Appointment;
|
|
3457
3505
|
uploadSamlIdentityProviderMetadataByFile: SamlIntegration;
|
|
@@ -3674,6 +3722,23 @@ export type MutationCreateOfficeRelationArgs = {
|
|
|
3674
3722
|
};
|
|
3675
3723
|
|
|
3676
3724
|
|
|
3725
|
+
export type MutationCreateOfficesUnavailabilityArgs = {
|
|
3726
|
+
input: OfficesUnavailabilityCreateInput;
|
|
3727
|
+
};
|
|
3728
|
+
|
|
3729
|
+
|
|
3730
|
+
export type MutationCreateOidcIntegrationArgs = {
|
|
3731
|
+
microsoftEntra?: InputMaybe<OidcMicrosoftEntraConfigInput>;
|
|
3732
|
+
provider: OidcProviderType;
|
|
3733
|
+
};
|
|
3734
|
+
|
|
3735
|
+
|
|
3736
|
+
export type MutationCreateOidcIntegrationConnectUrlArgs = {
|
|
3737
|
+
provider: OidcProviderType;
|
|
3738
|
+
redirectUrl: Scalars['String']['input'];
|
|
3739
|
+
};
|
|
3740
|
+
|
|
3741
|
+
|
|
3677
3742
|
export type MutationCreateQuestionArgs = {
|
|
3678
3743
|
formId: Scalars['ID']['input'];
|
|
3679
3744
|
questionPutInput: QuestionPutInput;
|
|
@@ -3839,6 +3904,16 @@ export type MutationDeleteOfficeRelationArgs = {
|
|
|
3839
3904
|
};
|
|
3840
3905
|
|
|
3841
3906
|
|
|
3907
|
+
export type MutationDeleteOfficesUnavailabilityArgs = {
|
|
3908
|
+
id: Scalars['ID']['input'];
|
|
3909
|
+
};
|
|
3910
|
+
|
|
3911
|
+
|
|
3912
|
+
export type MutationDeleteOidcIntegrationArgs = {
|
|
3913
|
+
provider: OidcProviderType;
|
|
3914
|
+
};
|
|
3915
|
+
|
|
3916
|
+
|
|
3842
3917
|
export type MutationDeleteQuestionArgs = {
|
|
3843
3918
|
id: Scalars['ID']['input'];
|
|
3844
3919
|
};
|
|
@@ -4064,6 +4139,12 @@ export type MutationPatchOfficeCallbackRequestSettingArgs = {
|
|
|
4064
4139
|
};
|
|
4065
4140
|
|
|
4066
4141
|
|
|
4142
|
+
export type MutationPatchOidcIntegrationArgs = {
|
|
4143
|
+
input: OidcIntegrationPatchInput;
|
|
4144
|
+
provider: OidcProviderType;
|
|
4145
|
+
};
|
|
4146
|
+
|
|
4147
|
+
|
|
4067
4148
|
export type MutationPatchQuestionArgs = {
|
|
4068
4149
|
id: Scalars['ID']['input'];
|
|
4069
4150
|
questionPatchInput: QuestionPatchInput;
|
|
@@ -4414,6 +4495,11 @@ export type MutationSendAiMessageArgs = {
|
|
|
4414
4495
|
};
|
|
4415
4496
|
|
|
4416
4497
|
|
|
4498
|
+
export type MutationSetSsoRedirectTargetArgs = {
|
|
4499
|
+
target?: InputMaybe<SsoRedirectTarget>;
|
|
4500
|
+
};
|
|
4501
|
+
|
|
4502
|
+
|
|
4417
4503
|
export type MutationSyncFutureEventsToExternalCalendarArgs = {
|
|
4418
4504
|
externalCalendarId: Scalars['ID']['input'];
|
|
4419
4505
|
};
|
|
@@ -4434,11 +4520,6 @@ export type MutationTestWebhookConfigurationArgs = {
|
|
|
4434
4520
|
};
|
|
4435
4521
|
|
|
4436
4522
|
|
|
4437
|
-
export type MutationToggleRedirectToSamlArgs = {
|
|
4438
|
-
shouldRedirectToSaml: Scalars['Boolean']['input'];
|
|
4439
|
-
};
|
|
4440
|
-
|
|
4441
|
-
|
|
4442
4523
|
export type MutationUpdateAppointmentLocationArgs = {
|
|
4443
4524
|
id: Scalars['ID']['input'];
|
|
4444
4525
|
input: AppointmentLocationUpdateInput;
|
|
@@ -4687,6 +4768,88 @@ export type OfficeTranslationsPatchInput = {
|
|
|
4687
4768
|
parkingInfo?: InputMaybe<Array<TranslationObjectInput>>;
|
|
4688
4769
|
};
|
|
4689
4770
|
|
|
4771
|
+
export type OfficeUnavailability = {
|
|
4772
|
+
action: OfficeUnavailabilityAction;
|
|
4773
|
+
end: Scalars['ISO8601']['output'];
|
|
4774
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
4775
|
+
messageForCustomer?: Maybe<Scalars['String']['output']>;
|
|
4776
|
+
officeId: Scalars['ID']['output'];
|
|
4777
|
+
officesUnavailabilityId: Scalars['ID']['output'];
|
|
4778
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
4779
|
+
start: Scalars['ISO8601']['output'];
|
|
4780
|
+
};
|
|
4781
|
+
|
|
4782
|
+
export type OfficeUnavailabilityAction =
|
|
4783
|
+
| 'CANCEL'
|
|
4784
|
+
| 'NO_ACTION'
|
|
4785
|
+
| 'REQUEST_RESCHEDULE';
|
|
4786
|
+
|
|
4787
|
+
export type OfficesUnavailability = {
|
|
4788
|
+
action: OfficeUnavailabilityAction;
|
|
4789
|
+
allOffices: Scalars['Boolean']['output'];
|
|
4790
|
+
createdAt: Scalars['ISO8601']['output'];
|
|
4791
|
+
/** End date-time WITHOUT timezone, e.g. "2026-05-01T17:00:00". Interpreted as local time in each affected office's timezone. */
|
|
4792
|
+
end: Scalars['String']['output'];
|
|
4793
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
4794
|
+
id: Scalars['ID']['output'];
|
|
4795
|
+
messageForCustomer?: Maybe<Scalars['String']['output']>;
|
|
4796
|
+
/** Offices affected by this unavailability. All active offices when allOffices is true. */
|
|
4797
|
+
offices: Array<Office>;
|
|
4798
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
4799
|
+
/** Start date-time WITHOUT timezone, e.g. "2026-05-01T09:00:00". Interpreted as local time in each affected office's timezone. */
|
|
4800
|
+
start: Scalars['String']['output'];
|
|
4801
|
+
updatedAt: Scalars['ISO8601']['output'];
|
|
4802
|
+
};
|
|
4803
|
+
|
|
4804
|
+
export type OfficesUnavailabilityConnection = {
|
|
4805
|
+
edges: Array<OfficesUnavailabilityEdge>;
|
|
4806
|
+
pageInfo: PageInfo;
|
|
4807
|
+
totalCount: Scalars['Int']['output'];
|
|
4808
|
+
};
|
|
4809
|
+
|
|
4810
|
+
export type OfficesUnavailabilityCreateInput = {
|
|
4811
|
+
/** Action to apply to existing appointments overlapping the unavailability range. */
|
|
4812
|
+
action: OfficeUnavailabilityAction;
|
|
4813
|
+
/** When true (admin-only), applies the unavailability to all active offices. Cannot be combined with officeIds. */
|
|
4814
|
+
allOffices?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4815
|
+
/** End date-time WITHOUT timezone (e.g. "2026-05-01T17:00:00"). Interpreted as local time in each office's timezone. */
|
|
4816
|
+
end: Scalars['String']['input'];
|
|
4817
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
4818
|
+
messageForCustomer?: InputMaybe<Scalars['String']['input']>;
|
|
4819
|
+
officeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4820
|
+
reason?: InputMaybe<Scalars['String']['input']>;
|
|
4821
|
+
/** Start date-time WITHOUT timezone (e.g. "2026-05-01T09:00:00"). Interpreted as local time in each office's timezone. */
|
|
4822
|
+
start: Scalars['String']['input'];
|
|
4823
|
+
};
|
|
4824
|
+
|
|
4825
|
+
export type OfficesUnavailabilityEdge = {
|
|
4826
|
+
cursor: Scalars['String']['output'];
|
|
4827
|
+
node: OfficesUnavailability;
|
|
4828
|
+
};
|
|
4829
|
+
|
|
4830
|
+
export type OidcIntegration = {
|
|
4831
|
+
active: Scalars['Boolean']['output'];
|
|
4832
|
+
microsoftEntra?: Maybe<OidcMicrosoftEntraConfig>;
|
|
4833
|
+
provider: OidcProviderType;
|
|
4834
|
+
};
|
|
4835
|
+
|
|
4836
|
+
export type OidcIntegrationPatchInput = {
|
|
4837
|
+
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4838
|
+
microsoftEntra?: InputMaybe<OidcMicrosoftEntraConfigInput>;
|
|
4839
|
+
};
|
|
4840
|
+
|
|
4841
|
+
export type OidcMicrosoftEntraConfig = {
|
|
4842
|
+
tenantId?: Maybe<Scalars['String']['output']>;
|
|
4843
|
+
};
|
|
4844
|
+
|
|
4845
|
+
export type OidcMicrosoftEntraConfigInput = {
|
|
4846
|
+
tenantId?: InputMaybe<Scalars['String']['input']>;
|
|
4847
|
+
};
|
|
4848
|
+
|
|
4849
|
+
/** Vendor-specific OIDC provider implementation (e.g. Microsoft Entra ID). */
|
|
4850
|
+
export type OidcProviderType =
|
|
4851
|
+
| 'MICROSOFT_ENTRA';
|
|
4852
|
+
|
|
4690
4853
|
export type PageInfo = {
|
|
4691
4854
|
endCursor: Scalars['String']['output'];
|
|
4692
4855
|
hasNextPage: Scalars['Boolean']['output'];
|
|
@@ -4784,6 +4947,7 @@ export type Query = {
|
|
|
4784
4947
|
conversionAnalyticsFlowChart: Chart;
|
|
4785
4948
|
conversionAnalyticsFunnelChart: Chart;
|
|
4786
4949
|
conversionAnalyticsMeetingTypeChart: Chart;
|
|
4950
|
+
conversionAnalyticsSessions: ConversionAnalyticsSessionConnection;
|
|
4787
4951
|
conversionAnalyticsSourceTagChart: Chart;
|
|
4788
4952
|
conversionAnalyticsSourceTagNestedChart: Array<ConversionAnalyticsSourceTagNestedChartItem>;
|
|
4789
4953
|
conversionAnalyticsSubjectChart: Chart;
|
|
@@ -4820,7 +4984,6 @@ export type Query = {
|
|
|
4820
4984
|
integration: BaseIntegration;
|
|
4821
4985
|
integrations: BaseIntegrationConnection;
|
|
4822
4986
|
isCallbackRequestEnabled: Scalars['Boolean']['output'];
|
|
4823
|
-
isRedirectToSamlEnabled: Scalars['Boolean']['output'];
|
|
4824
4987
|
leadSegment: LeadSegment;
|
|
4825
4988
|
leadSegmentCallbackRequestSettings: LeadSegmentCallbackRequestSetting;
|
|
4826
4989
|
leadSegments: LeadSegmentConnection;
|
|
@@ -4844,7 +5007,12 @@ export type Query = {
|
|
|
4844
5007
|
officeCallbackRequestSettings: OfficeCallbackRequestSetting;
|
|
4845
5008
|
officeEmployeeCoverageRegionSchedulingSettings: Array<OfficeEmployeeCoverageRegionSchedulingSetting>;
|
|
4846
5009
|
officeEmployeeSubjectCoverageRegionSchedulingSettings: Array<OfficeEmployeeSubjectCoverageRegionSchedulingSetting>;
|
|
5010
|
+
officeUnavailabilities: Array<OfficeUnavailability>;
|
|
4847
5011
|
offices: OfficeConnection;
|
|
5012
|
+
officesUnavailabilities: OfficesUnavailabilityConnection;
|
|
5013
|
+
officesUnavailability: OfficesUnavailability;
|
|
5014
|
+
oidcIntegration?: Maybe<OidcIntegration>;
|
|
5015
|
+
oidcIntegrations: Array<OidcIntegration>;
|
|
4848
5016
|
pexipInfinityCall: PexipInfinityCall;
|
|
4849
5017
|
question: Question;
|
|
4850
5018
|
questions: Array<Question>;
|
|
@@ -4863,6 +5031,7 @@ export type Query = {
|
|
|
4863
5031
|
scimEndpoint: Scalars['String']['output'];
|
|
4864
5032
|
scimTokens: Array<ScimToken>;
|
|
4865
5033
|
searchRegions: Array<Region>;
|
|
5034
|
+
ssoRedirectTarget?: Maybe<SsoRedirectTarget>;
|
|
4866
5035
|
staticTranslationOverrides: Array<StaticTranslationOverride>;
|
|
4867
5036
|
staticTranslations: Scalars['JSONObject']['output'];
|
|
4868
5037
|
storageAccountActive: Scalars['Boolean']['output'];
|
|
@@ -5229,6 +5398,16 @@ export type QueryConversionAnalyticsMeetingTypeChartArgs = {
|
|
|
5229
5398
|
};
|
|
5230
5399
|
|
|
5231
5400
|
|
|
5401
|
+
export type QueryConversionAnalyticsSessionsArgs = {
|
|
5402
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5403
|
+
appointmentId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5404
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
5405
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5406
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
5407
|
+
sessionId?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5408
|
+
};
|
|
5409
|
+
|
|
5410
|
+
|
|
5232
5411
|
export type QueryConversionAnalyticsSourceTagChartArgs = {
|
|
5233
5412
|
filters: ConversionAnalyticsChartFilters;
|
|
5234
5413
|
};
|
|
@@ -5686,6 +5865,13 @@ export type QueryOfficeEmployeeSubjectCoverageRegionSchedulingSettingsArgs = {
|
|
|
5686
5865
|
};
|
|
5687
5866
|
|
|
5688
5867
|
|
|
5868
|
+
export type QueryOfficeUnavailabilitiesArgs = {
|
|
5869
|
+
from?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
5870
|
+
officeId: Array<Scalars['ID']['input']>;
|
|
5871
|
+
to?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
5872
|
+
};
|
|
5873
|
+
|
|
5874
|
+
|
|
5689
5875
|
export type QueryOfficesArgs = {
|
|
5690
5876
|
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5691
5877
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5704,6 +5890,28 @@ export type QueryOfficesArgs = {
|
|
|
5704
5890
|
};
|
|
5705
5891
|
|
|
5706
5892
|
|
|
5893
|
+
export type QueryOfficesUnavailabilitiesArgs = {
|
|
5894
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5895
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
5896
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5897
|
+
from?: InputMaybe<Scalars['String']['input']>;
|
|
5898
|
+
id?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5899
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
5900
|
+
officeId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5901
|
+
to?: InputMaybe<Scalars['String']['input']>;
|
|
5902
|
+
};
|
|
5903
|
+
|
|
5904
|
+
|
|
5905
|
+
export type QueryOfficesUnavailabilityArgs = {
|
|
5906
|
+
id: Scalars['ID']['input'];
|
|
5907
|
+
};
|
|
5908
|
+
|
|
5909
|
+
|
|
5910
|
+
export type QueryOidcIntegrationArgs = {
|
|
5911
|
+
provider: OidcProviderType;
|
|
5912
|
+
};
|
|
5913
|
+
|
|
5914
|
+
|
|
5707
5915
|
export type QueryPexipInfinityCallArgs = {
|
|
5708
5916
|
token: Scalars['String']['input'];
|
|
5709
5917
|
};
|
|
@@ -6198,22 +6406,39 @@ export type RenderedTemplateMeta = {
|
|
|
6198
6406
|
};
|
|
6199
6407
|
|
|
6200
6408
|
export type ResourceType =
|
|
6409
|
+
| 'ANSWER_OPTION'
|
|
6201
6410
|
| 'API_CLIENT'
|
|
6411
|
+
| 'APPLIED_TEMPLATE'
|
|
6202
6412
|
| 'APPOINTMENT'
|
|
6413
|
+
| 'AVAILABILITY_TEMPLATE'
|
|
6414
|
+
| 'AVAILABILITY_TIME_RANGE'
|
|
6415
|
+
| 'AVAILABILITY_TIME_RANGE_OFFICE'
|
|
6416
|
+
| 'CALENDAR_EVENT_TEMPLATE'
|
|
6417
|
+
| 'CALLBACK_REQUEST'
|
|
6203
6418
|
| 'CUSTOMER'
|
|
6419
|
+
| 'EMAIL_TEMPLATE'
|
|
6204
6420
|
| 'EMPLOYEE'
|
|
6205
6421
|
| 'ENTERPRISE_SETTING'
|
|
6422
|
+
| 'EXTERNAL_CALENDAR'
|
|
6206
6423
|
| 'EXTERNAL_CALENDAR_ACCOUNT'
|
|
6424
|
+
| 'FETCH_CONFIGURATION'
|
|
6425
|
+
| 'FILE'
|
|
6426
|
+
| 'FORM'
|
|
6207
6427
|
| 'LEAD_SEGMENT'
|
|
6208
6428
|
| 'LISTING'
|
|
6429
|
+
| 'MEETING_ROOM'
|
|
6209
6430
|
| 'MEETING_TYPE'
|
|
6210
6431
|
| 'OFFICE'
|
|
6211
6432
|
| 'OFFICE_RELATION'
|
|
6433
|
+
| 'OIDC_INTEGRATION'
|
|
6434
|
+
| 'QUESTION'
|
|
6212
6435
|
| 'SAML_INTEGRATION'
|
|
6213
6436
|
| 'SAML_KEY_PROVIDER'
|
|
6214
6437
|
| 'SCIM_TOKEN'
|
|
6215
6438
|
| 'SUBJECT'
|
|
6216
|
-
| 'SUBJECT_GROUP'
|
|
6439
|
+
| 'SUBJECT_GROUP'
|
|
6440
|
+
| 'TEXT_MESSAGE_TEMPLATE'
|
|
6441
|
+
| 'UNAVAILABILITY';
|
|
6217
6442
|
|
|
6218
6443
|
export type SamlIntegration = {
|
|
6219
6444
|
active: Scalars['Boolean']['output'];
|
|
@@ -6570,6 +6795,7 @@ export type SortableSubjectFields =
|
|
|
6570
6795
|
| 'id'
|
|
6571
6796
|
| 'name'
|
|
6572
6797
|
| 'order'
|
|
6798
|
+
| 'subjectGroupDescription'
|
|
6573
6799
|
| 'subjectGroupId'
|
|
6574
6800
|
| 'subjectGroupName'
|
|
6575
6801
|
| 'updatedAt';
|
|
@@ -6583,6 +6809,11 @@ export type SortableSubjectGroupFields =
|
|
|
6583
6809
|
| 'order'
|
|
6584
6810
|
| 'updatedAt';
|
|
6585
6811
|
|
|
6812
|
+
/** Identity provider the login flow auto-redirects users to. Only one provider can be active at a time per enterprise. */
|
|
6813
|
+
export type SsoRedirectTarget =
|
|
6814
|
+
| 'OIDC_MICROSOFT_ENTRA'
|
|
6815
|
+
| 'SAML';
|
|
6816
|
+
|
|
6586
6817
|
export type StaticTranslationModule =
|
|
6587
6818
|
| 'BACKOFFICE_APP'
|
|
6588
6819
|
| 'CALENDAR_EVENT_TEMPLATE'
|
|
@@ -7135,6 +7366,7 @@ export type UiFeature =
|
|
|
7135
7366
|
| 'CUSTOMER_CREATION'
|
|
7136
7367
|
| 'CUSTOMER_DETAILS'
|
|
7137
7368
|
| 'CUSTOMER_OVERVIEW'
|
|
7369
|
+
| 'CUSTOMER_PHONE_NUMBER_VALIDATION'
|
|
7138
7370
|
| 'DEFAULT_AVAILABILITY_SETTINGS_OVERRIDE'
|
|
7139
7371
|
| 'DEFINED_AVAILABILITY_SYNCHRONIZATION'
|
|
7140
7372
|
| 'EMPLOYEE_AVATAR'
|
|
@@ -7414,19 +7646,15 @@ export type WebhookDelivery = {
|
|
|
7414
7646
|
attempts: Scalars['Int']['output'];
|
|
7415
7647
|
correlationId: Scalars['String']['output'];
|
|
7416
7648
|
createdAt: Scalars['ISO8601']['output'];
|
|
7417
|
-
/** The unique identifier of the delivery attempt. */
|
|
7418
|
-
deliveryId: Scalars['String']['output'];
|
|
7419
7649
|
/** Return the duration in milliseconds. */
|
|
7420
7650
|
duration?: Maybe<Scalars['Int']['output']>;
|
|
7421
7651
|
error?: Maybe<Scalars['String']['output']>;
|
|
7422
7652
|
event: Scalars['String']['output'];
|
|
7423
|
-
redelivery: Scalars['Boolean']['output'];
|
|
7424
7653
|
resourceId: Scalars['String']['output'];
|
|
7425
7654
|
statusCode?: Maybe<Scalars['Float']['output']>;
|
|
7426
7655
|
success: Scalars['Boolean']['output'];
|
|
7427
7656
|
updatedAt: Scalars['ISO8601']['output'];
|
|
7428
7657
|
webhookConfiguration: WebhookConfiguration;
|
|
7429
|
-
/** The unique identifier for the webhook delivery. This identifier will remain consistent across retries and redeliveries. */
|
|
7430
7658
|
webhookId: Scalars['String']['output'];
|
|
7431
7659
|
};
|
|
7432
7660
|
|