@pexip-engage-public/graphql 1.1.12 → 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 +7 -0
- package/dist/graphql-env.d.ts +74 -11
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +83 -11
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +13 -3
- package/dist/schema.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/graphql-env.ts +83 -11
- package/src/schema.ts +13 -2
package/dist/schema.d.ts
CHANGED
|
@@ -1153,6 +1153,7 @@ export type Employee = {
|
|
|
1153
1153
|
language: Language;
|
|
1154
1154
|
languageExpertise: Array<Language>;
|
|
1155
1155
|
lastName: Scalars['String']['output'];
|
|
1156
|
+
metadata?: Maybe<Scalars['JSONObject']['output']>;
|
|
1156
1157
|
officeRelations: Array<OfficeRelation>;
|
|
1157
1158
|
onlinePlanning: Scalars['Boolean']['output'];
|
|
1158
1159
|
phoneNumber?: Maybe<Scalars['String']['output']>;
|
|
@@ -1225,6 +1226,7 @@ export type EmployeeCreateInput = {
|
|
|
1225
1226
|
language?: InputMaybe<Language>;
|
|
1226
1227
|
languageExpertise?: InputMaybe<Array<Language>>;
|
|
1227
1228
|
lastName: Scalars['String']['input'];
|
|
1229
|
+
metadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
1228
1230
|
officeRelations?: InputMaybe<Array<OfficeRelationCreateInput>>;
|
|
1229
1231
|
onlinePlanning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1230
1232
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1280,6 +1282,7 @@ export type EmployeePatchInput = {
|
|
|
1280
1282
|
language?: InputMaybe<Language>;
|
|
1281
1283
|
languageExpertise?: InputMaybe<Array<Language>>;
|
|
1282
1284
|
lastName?: InputMaybe<Scalars['String']['input']>;
|
|
1285
|
+
metadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
1283
1286
|
officeRelations?: InputMaybe<Array<OfficeRelationPatchInput>>;
|
|
1284
1287
|
onlinePlanning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1285
1288
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3272,6 +3275,7 @@ export type Office = {
|
|
|
3272
3275
|
id: Scalars['ID']['output'];
|
|
3273
3276
|
location: Location;
|
|
3274
3277
|
meetingRooms: Array<MeetingRoom>;
|
|
3278
|
+
metadata?: Maybe<Scalars['JSONObject']['output']>;
|
|
3275
3279
|
name?: Maybe<TranslationObject>;
|
|
3276
3280
|
officeManagers: Array<Employee>;
|
|
3277
3281
|
parkingInfo?: Maybe<TranslationObject>;
|
|
@@ -3313,6 +3317,7 @@ export type OfficeCreateInput = {
|
|
|
3313
3317
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
3314
3318
|
location: LocationInput;
|
|
3315
3319
|
meetingRoomIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3320
|
+
metadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
3316
3321
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
3317
3322
|
timeZone?: InputMaybe<Scalars['String']['input']>;
|
|
3318
3323
|
translations: OfficeTranslationsCreateInput;
|
|
@@ -3355,6 +3360,7 @@ export type OfficePatchInput = {
|
|
|
3355
3360
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
3356
3361
|
location?: InputMaybe<LocationInput>;
|
|
3357
3362
|
meetingRoomIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3363
|
+
metadata?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
3358
3364
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
3359
3365
|
timeZone?: InputMaybe<Scalars['String']['input']>;
|
|
3360
3366
|
translations?: InputMaybe<OfficeTranslationsPatchInput>;
|
|
@@ -4572,9 +4578,13 @@ export type SecondaryParticipantInput = {
|
|
|
4572
4578
|
};
|
|
4573
4579
|
export type SeedInput = {
|
|
4574
4580
|
/** Only the enterprises in this list will be seeded. */
|
|
4575
|
-
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']>>;
|
|
4576
4584
|
/** Run all enterprises in parallel? */
|
|
4577
|
-
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']>>;
|
|
4578
4588
|
};
|
|
4579
4589
|
export type SendAppointmentEmailNotificationsEnterpriseSetting = {
|
|
4580
4590
|
createdAt: Scalars['ISO8601']['output'];
|
|
@@ -5114,7 +5124,7 @@ export type TranslationObjectInput = {
|
|
|
5114
5124
|
language: Language;
|
|
5115
5125
|
value: Scalars['String']['input'];
|
|
5116
5126
|
};
|
|
5117
|
-
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';
|
|
5118
5128
|
export type UiFeatureToggleEnterpriseSettingInput = {
|
|
5119
5129
|
enabled: Scalars['Boolean']['input'];
|
|
5120
5130
|
feature: UiFeature;
|