@pexip-engage-public/graphql 1.8.0 → 1.8.1
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 +6 -0
- package/dist/graphql-env.d.ts +89 -0
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +99 -0
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +11 -0
- package/dist/schema.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/graphql-env.ts +99 -0
- package/src/schema.ts +14 -0
package/dist/schema.d.ts
CHANGED
|
@@ -1563,6 +1563,10 @@ export type EmployeePatchInput = {
|
|
|
1563
1563
|
translations?: InputMaybe<EmployeeTranslationsPatchInput>;
|
|
1564
1564
|
username?: InputMaybe<Scalars['String']['input']>;
|
|
1565
1565
|
};
|
|
1566
|
+
export type EmployeeRank = {
|
|
1567
|
+
employeeIds: Array<Scalars['ID']['output']>;
|
|
1568
|
+
rank: Scalars['Int']['output'];
|
|
1569
|
+
};
|
|
1566
1570
|
export type EmployeeRole = 'ADMIN' | 'AGENT' | 'CENTRAL_PLANNER' | 'OFFICE_MANAGER';
|
|
1567
1571
|
export type EmployeeSort = {
|
|
1568
1572
|
direction: SortDirection;
|
|
@@ -4009,6 +4013,7 @@ export type Query = {
|
|
|
4009
4013
|
emailTemplate: EmailTemplate;
|
|
4010
4014
|
emailTemplates: Array<EmailTemplate>;
|
|
4011
4015
|
employee: Employee;
|
|
4016
|
+
employeeRanks: Array<EmployeeRank>;
|
|
4012
4017
|
employees: EmployeeConnection;
|
|
4013
4018
|
enterpriseSettings: EnterpriseSettings;
|
|
4014
4019
|
executeFetchField: ExecuteFetchFieldResponse;
|
|
@@ -4431,6 +4436,12 @@ export type QueryEmailTemplatesArgs = {
|
|
|
4431
4436
|
export type QueryEmployeeArgs = {
|
|
4432
4437
|
id: Scalars['ID']['input'];
|
|
4433
4438
|
};
|
|
4439
|
+
export type QueryEmployeeRanksArgs = {
|
|
4440
|
+
employeeId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4441
|
+
meetingType: MeetingType;
|
|
4442
|
+
officeId: Scalars['ID']['input'];
|
|
4443
|
+
subjectId: Scalars['ID']['input'];
|
|
4444
|
+
};
|
|
4434
4445
|
export type QueryEmployeesArgs = {
|
|
4435
4446
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
4436
4447
|
availableRole?: InputMaybe<Array<EmployeeRole>>;
|