@pexip-engage-public/graphql 1.1.11 → 1.1.13
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 +14 -0
- package/dist/graphql-env.d.ts +101 -12
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +113 -12
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +16 -4
- package/dist/schema.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/graphql-env.ts +113 -12
- package/src/schema.ts +17 -3
package/dist/schema.d.ts
CHANGED
|
@@ -819,6 +819,7 @@ export type Communication = {
|
|
|
819
819
|
resourceVersion?: Maybe<Scalars['Int']['output']>;
|
|
820
820
|
scheduledAt: Scalars['ISO8601']['output'];
|
|
821
821
|
status: CommunicationStatus;
|
|
822
|
+
uuid: Scalars['String']['output'];
|
|
822
823
|
};
|
|
823
824
|
export type CommunicationChannel = 'EMAIL' | 'TEXT_MESSAGE';
|
|
824
825
|
export type CommunicationEmailEnterpriseSetting = {
|
|
@@ -838,7 +839,7 @@ export type CommunicationSort = {
|
|
|
838
839
|
direction: SortDirection;
|
|
839
840
|
field: SortableCommunicationFields;
|
|
840
841
|
};
|
|
841
|
-
export type CommunicationStatus = 'DELIVERED' | 'DISABLED' | 'INVALID_RECEIVER' | 'NO_RECEIVER' | '
|
|
842
|
+
export type CommunicationStatus = 'DELIVERED' | 'DISABLED' | 'FAILED' | 'INVALID_RECEIVER' | 'NO_RECEIVER' | 'SENT' | 'UNKNOWN';
|
|
842
843
|
export type CommunicationType = 'NOTIFICATION' | 'REMINDER';
|
|
843
844
|
export type Customer = {
|
|
844
845
|
anonymizedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
@@ -1152,6 +1153,7 @@ export type Employee = {
|
|
|
1152
1153
|
language: Language;
|
|
1153
1154
|
languageExpertise: Array<Language>;
|
|
1154
1155
|
lastName: Scalars['String']['output'];
|
|
1156
|
+
metadata?: Maybe<Scalars['JSONObject']['output']>;
|
|
1155
1157
|
officeRelations: Array<OfficeRelation>;
|
|
1156
1158
|
onlinePlanning: Scalars['Boolean']['output'];
|
|
1157
1159
|
phoneNumber?: Maybe<Scalars['String']['output']>;
|
|
@@ -1224,6 +1226,7 @@ export type EmployeeCreateInput = {
|
|
|
1224
1226
|
language?: InputMaybe<Language>;
|
|
1225
1227
|
languageExpertise?: InputMaybe<Array<Language>>;
|
|
1226
1228
|
lastName: Scalars['String']['input'];
|
|
1229
|
+
metadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
1227
1230
|
officeRelations?: InputMaybe<Array<OfficeRelationCreateInput>>;
|
|
1228
1231
|
onlinePlanning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1229
1232
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1279,6 +1282,7 @@ export type EmployeePatchInput = {
|
|
|
1279
1282
|
language?: InputMaybe<Language>;
|
|
1280
1283
|
languageExpertise?: InputMaybe<Array<Language>>;
|
|
1281
1284
|
lastName?: InputMaybe<Scalars['String']['input']>;
|
|
1285
|
+
metadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
1282
1286
|
officeRelations?: InputMaybe<Array<OfficeRelationPatchInput>>;
|
|
1283
1287
|
onlinePlanning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1284
1288
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3271,6 +3275,7 @@ export type Office = {
|
|
|
3271
3275
|
id: Scalars['ID']['output'];
|
|
3272
3276
|
location: Location;
|
|
3273
3277
|
meetingRooms: Array<MeetingRoom>;
|
|
3278
|
+
metadata?: Maybe<Scalars['JSONObject']['output']>;
|
|
3274
3279
|
name?: Maybe<TranslationObject>;
|
|
3275
3280
|
officeManagers: Array<Employee>;
|
|
3276
3281
|
parkingInfo?: Maybe<TranslationObject>;
|
|
@@ -3312,6 +3317,7 @@ export type OfficeCreateInput = {
|
|
|
3312
3317
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
3313
3318
|
location: LocationInput;
|
|
3314
3319
|
meetingRoomIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3320
|
+
metadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
3315
3321
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
3316
3322
|
timeZone?: InputMaybe<Scalars['String']['input']>;
|
|
3317
3323
|
translations: OfficeTranslationsCreateInput;
|
|
@@ -3354,6 +3360,7 @@ export type OfficePatchInput = {
|
|
|
3354
3360
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
3355
3361
|
location?: InputMaybe<LocationInput>;
|
|
3356
3362
|
meetingRoomIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3363
|
+
metadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
3357
3364
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
3358
3365
|
timeZone?: InputMaybe<Scalars['String']['input']>;
|
|
3359
3366
|
translations?: InputMaybe<OfficeTranslationsPatchInput>;
|
|
@@ -4367,6 +4374,7 @@ export type QueryWebhookDeliveriesArgs = {
|
|
|
4367
4374
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
4368
4375
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
4369
4376
|
correlationId?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4377
|
+
event?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4370
4378
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4371
4379
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4372
4380
|
resourceId?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -4570,9 +4578,13 @@ export type SecondaryParticipantInput = {
|
|
|
4570
4578
|
};
|
|
4571
4579
|
export type SeedInput = {
|
|
4572
4580
|
/** Only the enterprises in this list will be seeded. */
|
|
4573
|
-
enterpriseFilter?: Array<Scalars['String']['input']
|
|
4581
|
+
enterpriseFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4582
|
+
/** Only the entities in this list will be seeded. */
|
|
4583
|
+
entityFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4574
4584
|
/** Run all enterprises in parallel? */
|
|
4575
|
-
parallel?: Scalars['Boolean']['input']
|
|
4585
|
+
parallel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4586
|
+
/** Target services to seed to, leave empty to seed to all services. */
|
|
4587
|
+
targetServices?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4576
4588
|
};
|
|
4577
4589
|
export type SendAppointmentEmailNotificationsEnterpriseSetting = {
|
|
4578
4590
|
createdAt: Scalars['ISO8601']['output'];
|
|
@@ -5112,7 +5124,7 @@ export type TranslationObjectInput = {
|
|
|
5112
5124
|
language: Language;
|
|
5113
5125
|
value: Scalars['String']['input'];
|
|
5114
5126
|
};
|
|
5115
|
-
export type UiFeature = 'APPOINTMENT_COMPLETION' | 'APPOINTMENT_CREATION' | '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' | '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' | 'VIRTUAL_OFFICES';
|
|
5127
|
+
export type UiFeature = 'APPOINTMENT_COMPLETION' | 'APPOINTMENT_CREATION' | 'APPOINTMENT_CREATION_CUSTOMER_EDIT' | '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' | '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' | 'VIRTUAL_OFFICES';
|
|
5116
5128
|
export type UiFeatureToggleEnterpriseSettingInput = {
|
|
5117
5129
|
enabled: Scalars['Boolean']['input'];
|
|
5118
5130
|
feature: UiFeature;
|