@pexip-engage-public/graphql 1.0.62 → 1.0.64-canary-20250304132043
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 -0
- package/dist/graphql-env.d.ts +188 -83
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +212 -90
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +24 -11
- package/dist/schema.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/graphql-env.ts +212 -90
- package/src/schema.ts +30 -13
package/dist/schema.d.ts
CHANGED
|
@@ -87,6 +87,7 @@ export type AgentPrioritizationEnabledEnterpriseSetting = {
|
|
|
87
87
|
/** Whether ranking should be applied when offering employees for scheduling. */
|
|
88
88
|
value: Scalars['Boolean']['output'];
|
|
89
89
|
};
|
|
90
|
+
export type AggregatedAvailabilityInsightsInterval = 'DAY' | 'MONTH' | 'WEEK';
|
|
90
91
|
export type AllowedExternalCalendarAccountProvidersEnterpriseSetting = {
|
|
91
92
|
createdAt: Scalars['ISO8601']['output'];
|
|
92
93
|
/** Indicates if the enterprise setting can be managed by an administrator of the enterprise. Non-manageable settings can only be modified by Pexip Engage Support. */
|
|
@@ -3309,6 +3310,7 @@ export type PutAppointmentAnswersInput = {
|
|
|
3309
3310
|
};
|
|
3310
3311
|
export type Query = {
|
|
3311
3312
|
activeMeetingTypes: Array<MeetingType>;
|
|
3313
|
+
aggregatedAvailabilityInsights: Array<DailyAvailabilityInsight>;
|
|
3312
3314
|
answerOption: AnswerOption;
|
|
3313
3315
|
apiClients: Array<ApiClient>;
|
|
3314
3316
|
appliedTemplates: AppliedTemplateConnection;
|
|
@@ -3406,7 +3408,6 @@ export type Query = {
|
|
|
3406
3408
|
textMessageTemplates: Array<TextMessageTemplate>;
|
|
3407
3409
|
timeRangeAvailabilitySettings: Array<TimeRangeAvailabilitySetting>;
|
|
3408
3410
|
timetable: Timetable;
|
|
3409
|
-
treeListRegions: Array<Region>;
|
|
3410
3411
|
unavailability: UnavailabilityConnection;
|
|
3411
3412
|
validateTimetableSlot: ValidatedTimetableSlot;
|
|
3412
3413
|
validator: Validator;
|
|
@@ -3417,6 +3418,14 @@ export type Query = {
|
|
|
3417
3418
|
webhookDeliveries: WebhookDeliveryConnection;
|
|
3418
3419
|
webhookDelivery: WebhookDelivery;
|
|
3419
3420
|
};
|
|
3421
|
+
export type QueryAggregatedAvailabilityInsightsArgs = {
|
|
3422
|
+
employeeId?: InputMaybe<Scalars['ID']['input']>;
|
|
3423
|
+
from: Scalars['ISO8601']['input'];
|
|
3424
|
+
interval: AggregatedAvailabilityInsightsInterval;
|
|
3425
|
+
officeId: Scalars['ID']['input'];
|
|
3426
|
+
timeZone: Scalars['String']['input'];
|
|
3427
|
+
to: Scalars['ISO8601']['input'];
|
|
3428
|
+
};
|
|
3420
3429
|
export type QueryAnswerOptionArgs = {
|
|
3421
3430
|
id: Scalars['ID']['input'];
|
|
3422
3431
|
};
|
|
@@ -4015,8 +4024,12 @@ export type QuerySchedulableSubjectsArgs = {
|
|
|
4015
4024
|
subjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4016
4025
|
};
|
|
4017
4026
|
export type QuerySearchRegionsArgs = {
|
|
4018
|
-
|
|
4019
|
-
|
|
4027
|
+
code?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4028
|
+
countryCode?: InputMaybe<Scalars['String']['input']>;
|
|
4029
|
+
id?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4030
|
+
level?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
4031
|
+
parentId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4032
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
4020
4033
|
};
|
|
4021
4034
|
export type QueryStaticTranslationOverridesArgs = {
|
|
4022
4035
|
key?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -4089,13 +4102,6 @@ export type QueryTimetableArgs = {
|
|
|
4089
4102
|
subjectId: Scalars['ID']['input'];
|
|
4090
4103
|
to: Scalars['ISO8601']['input'];
|
|
4091
4104
|
};
|
|
4092
|
-
export type QueryTreeListRegionsArgs = {
|
|
4093
|
-
code?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4094
|
-
countryCode: Scalars['String']['input'];
|
|
4095
|
-
id?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4096
|
-
level?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
4097
|
-
parentId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4098
|
-
};
|
|
4099
4105
|
export type QueryUnavailabilityArgs = {
|
|
4100
4106
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
4101
4107
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4237,12 +4243,19 @@ export type ReceiverInput = {
|
|
|
4237
4243
|
type: TemplateReceiverType;
|
|
4238
4244
|
};
|
|
4239
4245
|
export type Region = {
|
|
4246
|
+
boundsEast?: Maybe<Scalars['Float']['output']>;
|
|
4247
|
+
boundsNorth?: Maybe<Scalars['Float']['output']>;
|
|
4248
|
+
boundsSouth?: Maybe<Scalars['Float']['output']>;
|
|
4249
|
+
boundsWest?: Maybe<Scalars['Float']['output']>;
|
|
4250
|
+
centerLat?: Maybe<Scalars['Float']['output']>;
|
|
4251
|
+
centerLong?: Maybe<Scalars['Float']['output']>;
|
|
4240
4252
|
code?: Maybe<Scalars['String']['output']>;
|
|
4241
4253
|
countryCode: Scalars['String']['output'];
|
|
4242
4254
|
id: Scalars['ID']['output'];
|
|
4243
4255
|
level: Scalars['Int']['output'];
|
|
4244
4256
|
name: Scalars['String']['output'];
|
|
4245
4257
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
4258
|
+
region?: Maybe<Scalars['JSONObject']['output']>;
|
|
4246
4259
|
};
|
|
4247
4260
|
export type RegionConnection = {
|
|
4248
4261
|
edges: Array<RegionEdge>;
|
|
@@ -4891,7 +4904,7 @@ export type ValidatorTranslationsCreateInput = {
|
|
|
4891
4904
|
export type ValidatorTranslationsPatchInput = {
|
|
4892
4905
|
errorMessage?: InputMaybe<Array<TranslationObjectInput>>;
|
|
4893
4906
|
};
|
|
4894
|
-
export type VideoProvider = '
|
|
4907
|
+
export type VideoProvider = 'EXTERNAL_PROVIDER_ACCOUNT' | 'MICROSOFT_TEAMS_APPLICATION_AUTH' | 'PEXIP' | 'STATIC' | 'TEMPLATE_GENERATED_URL';
|
|
4895
4908
|
export type VideoProviderEnterpriseSetting = {
|
|
4896
4909
|
createdAt: Scalars['ISO8601']['output'];
|
|
4897
4910
|
/** Indicates if the enterprise setting can be managed by an administrator of the enterprise. Non-manageable settings can only be modified by Pexip Engage Support. */
|