@worknice/js-sdk 0.13.52 → 0.13.54

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.
@@ -1216,15 +1216,24 @@ type EmailNotificationSettings = {
1216
1216
  approvalRequested: Scalars['Boolean']['output'];
1217
1217
  assignmentApproved: Scalars['Boolean']['output'];
1218
1218
  assignmentAssigned: Scalars['Boolean']['output'];
1219
+ assignmentDueSoon: Scalars['Boolean']['output'];
1219
1220
  assignmentExpired: Scalars['Boolean']['output'];
1220
1221
  assignmentExpiringSoon: Scalars['Boolean']['output'];
1221
1222
  assignmentFailed: Scalars['Boolean']['output'];
1223
+ assignmentOverdue: Scalars['Boolean']['output'];
1222
1224
  assignmentReassigned: Scalars['Boolean']['output'];
1223
1225
  assignmentSubmitted: Scalars['Boolean']['output'];
1224
1226
  leaveRequestApproved: Scalars['Boolean']['output'];
1225
1227
  leaveRequestCancelled: Scalars['Boolean']['output'];
1226
1228
  leaveRequestCreated: Scalars['Boolean']['output'];
1227
1229
  leaveRequestDenied: Scalars['Boolean']['output'];
1230
+ performanceReviewManagerReviewAssigned: Scalars['Boolean']['output'];
1231
+ performanceReviewManagerReviewOverdue: Scalars['Boolean']['output'];
1232
+ performanceReviewPacketShared: Scalars['Boolean']['output'];
1233
+ performanceReviewRevieweeSelfReviewOverdue: Scalars['Boolean']['output'];
1234
+ performanceReviewSelfReviewAssigned: Scalars['Boolean']['output'];
1235
+ performanceReviewSelfReviewOverdue: Scalars['Boolean']['output'];
1236
+ performanceReviewSelfReviewSubmitted: Scalars['Boolean']['output'];
1228
1237
  reviewAssigned: Scalars['Boolean']['output'];
1229
1238
  reviewScheduled: Scalars['Boolean']['output'];
1230
1239
  reviewSubmitted: Scalars['Boolean']['output'];
@@ -1846,6 +1855,15 @@ type KeypayIntegration = Integration & {
1846
1855
  type KeypayIntegrationFeaturesArgs = {
1847
1856
  rawValues?: InputMaybe<Scalars['Boolean']['input']>;
1848
1857
  };
1858
+ type KeypayIntegrationBusinessInput = {
1859
+ businessId: Scalars['Int']['input'];
1860
+ businessName: Scalars['String']['input'];
1861
+ };
1862
+ type KeypayIntegrationTokenSetInput = {
1863
+ accessToken: Scalars['String']['input'];
1864
+ expiresIn: Scalars['Int']['input'];
1865
+ refreshToken: Scalars['String']['input'];
1866
+ };
1849
1867
  type KeypayLeaveEmployee = {
1850
1868
  connection?: Maybe<PersonConnection>;
1851
1869
  createdAt: Scalars['DateTime']['output'];
@@ -1915,6 +1933,7 @@ type LeaveRequest = SharedCalendarEvent & {
1915
1933
  hours?: Maybe<Scalars['Decimal']['output']>;
1916
1934
  hoursBreakdown?: Maybe<Scalars['String']['output']>;
1917
1935
  id: Scalars['ID']['output'];
1936
+ leaveBalance?: Maybe<LeaveBalance>;
1918
1937
  leaveCategory: LeaveCategory;
1919
1938
  notes?: Maybe<Scalars['String']['output']>;
1920
1939
  notifications: Array<Notification>;
@@ -2003,10 +2022,13 @@ type Mutation = {
2003
2022
  acceptLogin: Login;
2004
2023
  /** Transitions an integration from 'UNINITIALIZED', 'UNAUTHORIZED' or 'UNCONFIGURED' to 'ACTIVE'. This can only be done by the bot associated with the integration. */
2005
2024
  activateIntegration: Integration;
2025
+ activateKeypayIntegration: Integration;
2006
2026
  /** Either transition this person's status from either 'ONBOARDING' or 'TERMINATED' to 'ACTIVE'. */
2007
2027
  activatePerson: Person;
2028
+ activateXeroIntegration: Integration;
2008
2029
  addPeopleToBundles: Array<Bundle>;
2009
2030
  addPeopleToTags: Array<Tag>;
2031
+ addRevieweesToPerformanceReviewCycle: Array<PerformanceReviewReviewee>;
2010
2032
  appendIntegrationLog: IntegrationLog;
2011
2033
  approveAssignment: Assignment;
2012
2034
  approveKeypayLeaveLeaveRequest: LeaveRequest;
@@ -2193,6 +2215,7 @@ type Mutation = {
2193
2215
  invitePerson: Person;
2194
2216
  /** Creates a person and login for the current user an organisation. Only account owners and managers can join an organisation without an invite and they can only join organisations in accounts they're already account owners or managers of. */
2195
2217
  joinOrg: Login;
2218
+ launchPerformanceReviewCycle: PerformanceReviewCycle;
2196
2219
  /**
2197
2220
  * Create a new session for the associated user and sets a cookie with the session's token.
2198
2221
  *
@@ -2225,6 +2248,7 @@ type Mutation = {
2225
2248
  removePaperworkTypeFromBundles: Array<Bundle>;
2226
2249
  removePeopleFromBundles: Array<Bundle>;
2227
2250
  removePeopleFromTags: Array<Tag>;
2251
+ removeRevieweeFromCycle: Scalars['Boolean']['output'];
2228
2252
  /** Notifies the approver and changes the approvals status to 'REQUESTED'. Only 'DRAFT' approvals can be requested. */
2229
2253
  requestApprovals: Array<Approval>;
2230
2254
  /** If the given email address is associated with a user in the system, this mutation will send an email to the address with a OTP for resetting the user's password. See 'completePasswordReset'. */
@@ -2300,6 +2324,7 @@ type Mutation = {
2300
2324
  updatePaperworkType: PaperworkType;
2301
2325
  updatePerformanceReviewCycle: PerformanceReviewCycle;
2302
2326
  updatePerformanceReviewCycleConfig: PerformanceReviewCycleConfig;
2327
+ updatePerformanceReviewCycleReviewee: PerformanceReviewReviewee;
2303
2328
  updatePerson: Person;
2304
2329
  updatePersonConnection: PersonConnection;
2305
2330
  updatePersonTags: Array<Tag>;
@@ -2327,9 +2352,17 @@ type MutationAcceptLoginArgs = {
2327
2352
  type MutationActivateIntegrationArgs = {
2328
2353
  integrationId: Scalars['ID']['input'];
2329
2354
  };
2355
+ type MutationActivateKeypayIntegrationArgs = {
2356
+ tenant: KeypayIntegrationBusinessInput;
2357
+ tokenSet: KeypayIntegrationTokenSetInput;
2358
+ };
2330
2359
  type MutationActivatePersonArgs = {
2331
2360
  id: Scalars['ID']['input'];
2332
2361
  };
2362
+ type MutationActivateXeroIntegrationArgs = {
2363
+ tenant: XeroIntegrationTenantInput;
2364
+ tokenSet: XeroIntegrationTokenSetInput;
2365
+ };
2333
2366
  type MutationAddPeopleToBundlesArgs = {
2334
2367
  bundleIds: Array<Scalars['ID']['input']>;
2335
2368
  personIds: Array<Scalars['ID']['input']>;
@@ -2338,6 +2371,10 @@ type MutationAddPeopleToTagsArgs = {
2338
2371
  personIds: Array<Scalars['ID']['input']>;
2339
2372
  tagIds: Array<Scalars['ID']['input']>;
2340
2373
  };
2374
+ type MutationAddRevieweesToPerformanceReviewCycleArgs = {
2375
+ cycleId: Scalars['ID']['input'];
2376
+ entries: Array<PerformanceReviewRevieweeInput>;
2377
+ };
2341
2378
  type MutationAppendIntegrationLogArgs = {
2342
2379
  entries: Array<IntegrationLogInput>;
2343
2380
  integrationLogId: Scalars['ID']['input'];
@@ -2948,6 +2985,9 @@ type MutationJoinOrgArgs = {
2948
2985
  displayName: Scalars['String']['input'];
2949
2986
  orgId: Scalars['ID']['input'];
2950
2987
  };
2988
+ type MutationLaunchPerformanceReviewCycleArgs = {
2989
+ id: Scalars['ID']['input'];
2990
+ };
2951
2991
  type MutationLogInArgs = {
2952
2992
  email: Scalars['String']['input'];
2953
2993
  password: Scalars['String']['input'];
@@ -3014,6 +3054,10 @@ type MutationRemovePeopleFromTagsArgs = {
3014
3054
  personIds: Array<Scalars['ID']['input']>;
3015
3055
  tagIds: Array<Scalars['ID']['input']>;
3016
3056
  };
3057
+ type MutationRemoveRevieweeFromCycleArgs = {
3058
+ cycleId: Scalars['ID']['input'];
3059
+ revieweeId: Scalars['ID']['input'];
3060
+ };
3017
3061
  type MutationRequestApprovalsArgs = {
3018
3062
  approvalIds: Array<Scalars['ID']['input']>;
3019
3063
  };
@@ -3528,6 +3572,10 @@ type MutationUpdatePerformanceReviewCycleConfigArgs = {
3528
3572
  selfReviewDueDate?: InputMaybe<Scalars['Date']['input']>;
3529
3573
  selfReviewTemplateId?: InputMaybe<Scalars['ID']['input']>;
3530
3574
  };
3575
+ type MutationUpdatePerformanceReviewCycleRevieweeArgs = {
3576
+ primaryManagerId?: InputMaybe<Scalars['ID']['input']>;
3577
+ revieweeId: Scalars['ID']['input'];
3578
+ };
3531
3579
  type MutationUpdatePersonArgs = {
3532
3580
  displayName?: InputMaybe<Scalars['String']['input']>;
3533
3581
  emailNotificationSettings?: InputMaybe<EmailNotificationSettingsInput>;
@@ -3691,14 +3739,18 @@ declare enum NotificationType {
3691
3739
  ApprovalRequested = "APPROVAL_REQUESTED",
3692
3740
  /** Sent to the person responsible for an assignment when all it's approvals have been approved. */
3693
3741
  AssignmentApproved = "ASSIGNMENT_APPROVED",
3694
- /** Sent to the owner of a assignment when it's assigned (transitions from a 'draft' to an 'assigned' status). */
3742
+ /** Sent to the owner of an assignment when it's assigned (transitions from a 'draft' to an 'assigned' status). */
3695
3743
  AssignmentAssigned = "ASSIGNMENT_ASSIGNED",
3744
+ /** Sent to the owner of an assignment when it is due soon. */
3745
+ AssignmentDueSoon = "ASSIGNMENT_DUE_SOON",
3696
3746
  /** Sent to the person responsible for an assignment (i.e. an admin) when it has expired. */
3697
3747
  AssignmentExpired = "ASSIGNMENT_EXPIRED",
3698
3748
  /** Sent to the person responsible for an assignment (i.e. an admin) when it will be expiring soon. */
3699
3749
  AssignmentExpiringSoon = "ASSIGNMENT_EXPIRING_SOON",
3700
3750
  /** Sent to the person responsible for an assignment (i.e. an admin) when a document fails to process or when a document has failed to process. */
3701
3751
  AssignmentFailed = "ASSIGNMENT_FAILED",
3752
+ /** Sent to the owner of an assignment when it is overdue. */
3753
+ AssignmentOverdue = "ASSIGNMENT_OVERDUE",
3702
3754
  /** Sent to the owner of a assignment when an admin reassigns an assignment. */
3703
3755
  AssignmentReassigned = "ASSIGNMENT_REASSIGNED",
3704
3756
  /** Sent to the person responsible for an assignment (i.e. an admin) when it has expired. */
@@ -3711,6 +3763,20 @@ declare enum NotificationType {
3711
3763
  LeaveRequestCreated = "LEAVE_REQUEST_CREATED",
3712
3764
  /** Sent to the owner when a leave request is denied. */
3713
3765
  LeaveRequestDenied = "LEAVE_REQUEST_DENIED",
3766
+ /** Sent to the manager when a manager review has been assigned to them. */
3767
+ PerformanceReviewManagerReviewAssigned = "PERFORMANCE_REVIEW_MANAGER_REVIEW_ASSIGNED",
3768
+ /** Sent to the manager when their manager review is overdue. */
3769
+ PerformanceReviewManagerReviewOverdue = "PERFORMANCE_REVIEW_MANAGER_REVIEW_OVERDUE",
3770
+ /** Sent to the employee when a review packet has been shared with them. */
3771
+ PerformanceReviewPacketShared = "PERFORMANCE_REVIEW_PACKET_SHARED",
3772
+ /** Sent to the manager when the reviewee's self review is overdue. */
3773
+ PerformanceReviewRevieweeSelfReviewOverdue = "PERFORMANCE_REVIEW_REVIEWEE_SELF_REVIEW_OVERDUE",
3774
+ /** Sent to the employee when their self review has been assigned. */
3775
+ PerformanceReviewSelfReviewAssigned = "PERFORMANCE_REVIEW_SELF_REVIEW_ASSIGNED",
3776
+ /** Sent to the employee when their self review is overdue. */
3777
+ PerformanceReviewSelfReviewOverdue = "PERFORMANCE_REVIEW_SELF_REVIEW_OVERDUE",
3778
+ /** Sent to the manager when the reviewee has submitted their self review. */
3779
+ PerformanceReviewSelfReviewSubmitted = "PERFORMANCE_REVIEW_SELF_REVIEW_SUBMITTED",
3714
3780
  /** Sent to the reviewer when a review they are required to conduct has been assigned to them. */
3715
3781
  ReviewAssigned = "REVIEW_ASSIGNED",
3716
3782
  /** Sent to the subject of a review when a time for the review to take place has been set. */
@@ -3989,6 +4055,20 @@ declare enum PayPeriod {
3989
4055
  Hour = "HOUR",
3990
4056
  Year = "YEAR"
3991
4057
  }
4058
+ type PerformanceReview = {
4059
+ assignedAt?: Maybe<Scalars['DateTime']['output']>;
4060
+ createdAt: Scalars['DateTime']['output'];
4061
+ cycle: PerformanceReviewCycle;
4062
+ id: Scalars['ID']['output'];
4063
+ lastEditedAt?: Maybe<Scalars['DateTime']['output']>;
4064
+ lastEditedBy?: Maybe<Person>;
4065
+ reviewee: PerformanceReviewReviewee;
4066
+ reviewer?: Maybe<Person>;
4067
+ submittedAt?: Maybe<Scalars['DateTime']['output']>;
4068
+ submittedBy?: Maybe<Person>;
4069
+ type: PerformanceReviewType;
4070
+ updatedAt: Scalars['DateTime']['output'];
4071
+ };
3992
4072
  type PerformanceReviewCycle = {
3993
4073
  archived: Scalars['Boolean']['output'];
3994
4074
  archivedAt?: Maybe<Scalars['DateTime']['output']>;
@@ -4004,6 +4084,7 @@ type PerformanceReviewCycle = {
4004
4084
  name: Scalars['String']['output'];
4005
4085
  org: Org;
4006
4086
  revieweeCount: Scalars['Int']['output'];
4087
+ reviewees: Array<PerformanceReviewReviewee>;
4007
4088
  status: PerformanceReviewCycleStatus;
4008
4089
  updatedAt: Scalars['DateTime']['output'];
4009
4090
  };
@@ -4026,6 +4107,35 @@ declare enum PerformanceReviewCycleStatus {
4026
4107
  Draft = "DRAFT",
4027
4108
  InProgress = "IN_PROGRESS"
4028
4109
  }
4110
+ type PerformanceReviewNotification = Notification & {
4111
+ createdAt: Scalars['DateTime']['output'];
4112
+ emailSentAt?: Maybe<Scalars['DateTime']['output']>;
4113
+ id: Scalars['ID']['output'];
4114
+ performanceReview?: Maybe<PerformanceReview>;
4115
+ person?: Maybe<Person>;
4116
+ read: Scalars['Boolean']['output'];
4117
+ type: NotificationType;
4118
+ updatedAt: Scalars['DateTime']['output'];
4119
+ };
4120
+ type PerformanceReviewReviewee = {
4121
+ additionalManagers: Array<Person>;
4122
+ archived: Scalars['Boolean']['output'];
4123
+ archivedAt?: Maybe<Scalars['DateTime']['output']>;
4124
+ archiver?: Maybe<Person>;
4125
+ createdAt: Scalars['DateTime']['output'];
4126
+ creator?: Maybe<Person>;
4127
+ cycle: PerformanceReviewCycle;
4128
+ id: Scalars['ID']['output'];
4129
+ person: Person;
4130
+ primaryManager?: Maybe<Person>;
4131
+ sharedAt?: Maybe<Scalars['DateTime']['output']>;
4132
+ sharedBy?: Maybe<Person>;
4133
+ updatedAt: Scalars['DateTime']['output'];
4134
+ };
4135
+ type PerformanceReviewRevieweeInput = {
4136
+ personId: Scalars['ID']['input'];
4137
+ primaryManagerId?: InputMaybe<Scalars['ID']['input']>;
4138
+ };
4029
4139
  type PerformanceReviewTemplate = {
4030
4140
  archived: Scalars['Boolean']['output'];
4031
4141
  archivedAt?: Maybe<Scalars['DateTime']['output']>;
@@ -4038,6 +4148,10 @@ type PerformanceReviewTemplate = {
4038
4148
  org: Org;
4039
4149
  updatedAt: Scalars['DateTime']['output'];
4040
4150
  };
4151
+ declare enum PerformanceReviewType {
4152
+ Manager = "MANAGER",
4153
+ Self = "SELF"
4154
+ }
4041
4155
  type Person = {
4042
4156
  /** When this person was first activated (transitioned from `ONBOARDING` to `ACTIVE`). */
4043
4157
  activatedAt?: Maybe<Scalars['DateTime']['output']>;
@@ -5184,7 +5298,7 @@ type StandardReviewNotification = Notification & {
5184
5298
  id: Scalars['ID']['output'];
5185
5299
  person?: Maybe<Person>;
5186
5300
  read: Scalars['Boolean']['output'];
5187
- /** This field is nullable because the viewer may not longer have access to the review this notification is about. */
5301
+ /** This field is nullable because the viewer may no longer have access to the review this notification is about. */
5188
5302
  standardReview?: Maybe<StandardReview>;
5189
5303
  type: NotificationType;
5190
5304
  updatedAt: Scalars['DateTime']['output'];
@@ -5575,6 +5689,16 @@ declare enum XeroAuTfnExemptionType {
5575
5689
  Pensioner = "PENSIONER",
5576
5690
  Under18 = "UNDER18"
5577
5691
  }
5692
+ type XeroIntegrationTenantInput = {
5693
+ id: Scalars['String']['input'];
5694
+ tenantId: Scalars['String']['input'];
5695
+ tenantName: Scalars['String']['input'];
5696
+ };
5697
+ type XeroIntegrationTokenSetInput = {
5698
+ accessToken: Scalars['String']['input'];
5699
+ expiresAt: Scalars['Int']['input'];
5700
+ refreshToken: Scalars['String']['input'];
5701
+ };
5578
5702
  type XeroLeaveEmployee = {
5579
5703
  connection?: Maybe<PersonConnection>;
5580
5704
  createdAt: Scalars['DateTime']['output'];
@@ -6471,4 +6595,4 @@ type UpdatePersonConnectionMutation = {
6471
6595
  };
6472
6596
  };
6473
6597
 
6474
- export { type Account, type AccountAppsArgs, type AccountFeatures, type AccountFeaturesInput, AccountFlag, type ActivateIntegrationMutation, type ActivateIntegrationMutationVariables, AllocationMethod, type AnniversaryEvent, type ApiToken, type App, AppCategory, type AppConfig, type AppConfigWebhooks, AppStatus, type AppendIntegrationLogMutation, type AppendIntegrationLogMutationVariables, type Approval, ApprovalStatus, type ApprovalSummary, type Archivable, type Assignment, type AssignmentNotification, type AssignmentNotificationsArgs, AssignmentRelation, AssignmentStatus, AssignmentType, AuthMethod, AuthProvider, AuthState, type AuthorizeIntegrationMutation, type AuthorizeIntegrationMutationVariables, type BasicAbnForm, type BasicAbnFormNotificationsArgs, type BasicAbnFormTemplate, type BasicBankAccountForm, type BasicBankAccountFormNotificationsArgs, type BasicBankAccountFormTemplate, type BasicEmergencyContactForm, type BasicEmergencyContactFormNotificationsArgs, type BasicEmergencyContactFormTemplate, type BasicPersonalDetailsForm, type BasicPersonalDetailsFormNotificationsArgs, type BasicPersonalDetailsFormTemplate, type BasicPreEmploymentForm, type BasicPreEmploymentFormNotificationsArgs, type BasicPreEmploymentFormTemplate, type BasicSuperForm, type BasicSuperFormNotificationsArgs, type BasicSuperFormTemplate, type BasicTaxForm, type BasicTaxFormNotificationsArgs, type BasicTaxFormTemplate, type Birthday, type BirthdayEvent, type BirthdayInput, type Bundle, type BundledPaperworkType, type BundledPaperworkTypeConnection, type BundledPerson, type BundledPersonConnection, type Certificate, type CertificateNotificationsArgs, CertificateProof, type CertificateTemplate, type ChoiceDocumentField, type ChoiceDocumentFieldConfigInput, type ChoiceDocumentFieldConfigOptionInput, type ChoiceDocumentFieldInput, type ChoiceDocumentFieldOption, type ChoiceDocumentFieldOptionInput, type CompleteSyncMutation, type CompleteSyncMutationVariables, type ConnectionRemote, type ConnectionRemoteInput, ConnectionStatus, type CreateApiTokenMutation, type CreateApiTokenMutationVariables, type CreateDataImportMutation, type CreateDataImportMutationVariables, type CreateLeaveRequestMutation, type CreateLeaveRequestMutationVariables, type CreateNoteAttachmentInput, type CreatePersonConnectionMutation, type CreatePersonConnectionMutationVariables, type CreatePersonDataImportLineMutation, type CreatePersonDataImportLineMutationVariables, type CreatePersonMutation, type CreatePersonMutationVariables, type CustomTable, type CustomTableColumn, type CustomTableColumnInput, type CustomTableConfig, type CustomTableConfigFilter, type CustomTableConfigFilterInput, type CustomTableConfigInput, type CustomTableConfigSorting, type CustomTableConfigSortingInput, type DataExport, DataExportType, type DataImport, type DataImportLine, type DateDocumentField, type DateDocumentFieldConfigInput, type DateDocumentFieldInput, type DeleteApiTokenMutation, type DeleteApiTokenMutationVariables, type DeletePersonConnectionMutation, type DeletePersonConnectionMutationVariables, type Department, type DepartmentPositionsArgs, type Document, type DocumentField, type DocumentFieldConfigInput, type DocumentFieldInput, DocumentFieldResponder, type DocumentNotificationsArgs, type DocumentTemplate, DueDateStatus, type EmailNotificationSettings, type EmailNotificationSettingsInput, type Exact, ExpiryStatus, FieldPresence, FileProcessingStatus, Gender, type GenericIntegration, type GenericIntegrationFeaturesArgs, type GetApiTokensQuery, type GetApiTokensQueryVariables, type GetIntegrationQuery, type GetIntegrationQueryVariables, type GetLeaveRequestsQuery, type GetLeaveRequestsQueryVariables, type GetMyAppsQuery, type GetMyAppsQueryVariables, type GetPeopleQuery, type GetPeopleQueryVariables, type GetPersonConnectionsQuery, type GetPersonConnectionsQueryVariables, type Incremental, type InitializeIntegrationMutation, type InitializeIntegrationMutationVariables, type InputMaybe, type Integration, type IntegrationConnection, type IntegrationFeatures, type IntegrationFeaturesArgs, type IntegrationFeaturesInput, type IntegrationLog, type IntegrationLogInput, IntegrationStatus, type IntegrationSync, type IntegrationSyncEvent, IntegrationSyncEventType, IntegrationSyncStatus, IntegrationType, type Job, JobStatus, type KeypayBusiness, type KeypayEmployee, type KeypayEmployeeForm, type KeypayEmployeeFormNotificationsArgs, type KeypayEmployeeFormTemplate, KeypayEmployeeStatus, KeypayEmploymentType, KeypayGender, type KeypayIntegration, type KeypayIntegrationFeaturesArgs, type KeypayLeaveEmployee, type KeypayLeaveIntegration, type KeypayLeaveIntegrationFeaturesArgs, type LeaveBalance, type LeaveCategory, type LeaveCategoryInput, type LeaveHoursEstimate, type LeaveRequest, type LeaveRequestNotification, type LeaveRequestNotificationsArgs, LeaveRequestRelation, LeaveRequestStatus, type Location, type Login, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Media, type MultiLineTextDocumentField, type MultiLineTextDocumentFieldConfigInput, type MultiLineTextDocumentFieldInput, type Mutation, type MutationAcceptLoginArgs, type MutationActivateIntegrationArgs, type MutationActivatePersonArgs, type MutationAddPeopleToBundlesArgs, type MutationAddPeopleToTagsArgs, type MutationAppendIntegrationLogArgs, type MutationApproveAssignmentArgs, type MutationApproveKeypayLeaveLeaveRequestArgs, type MutationApproveLeaveRequestArgs, type MutationApproveXeroLeaveRequestArgs, type MutationArchiveAssignmentArgs, type MutationArchiveBundleArgs, type MutationArchiveCustomTableArgs, type MutationArchiveIntegrationArgs, type MutationArchiveLocationArgs, type MutationArchiveNotesArgs, type MutationArchiveOrgArgs, type MutationArchivePaperworkTypeArgs, type MutationArchivePersonArgs, type MutationArchivePositionArgs, type MutationArchiveReviewCycleArgs, type MutationArchiveSavedQuestionArgs, type MutationArchiveStandardReviewArgs, type MutationArchiveStandardReviewTemplateArgs, type MutationArchiveTemplateArgs, type MutationAssignAssignmentsArgs, type MutationAssignBasicAbnFormArgs, type MutationAssignBasicBankAccountFormArgs, type MutationAssignBasicEmergencyContactFormArgs, type MutationAssignBasicPersonalDetailsFormArgs, type MutationAssignBasicPreEmploymentFormArgs, type MutationAssignBasicSuperFormArgs, type MutationAssignBasicTaxFormArgs, type MutationAssignCertificateArgs, type MutationAssignDocumentArgs, type MutationAssignKeypayEmployeeFormArgs, type MutationAssignQuestionnaireArgs, type MutationAssignStandardReviewArgs, type MutationAssignTaskArgs, type MutationAuthorizeIntegrationArgs, type MutationCancelLeaveRequestArgs, type MutationCompleteIntegrationSyncArgs, type MutationCompletePasswordResetArgs, type MutationConfirmEmailArgs, type MutationConfirmProfileArgs, type MutationConfirmProviderArgs, type MutationCreateAccountArgs, type MutationCreateApiTokenArgs, type MutationCreateAssignmentsArgs, type MutationCreateBasicAbnFormArgs, type MutationCreateBasicAbnFormTemplateArgs, type MutationCreateBasicBankAccountFormArgs, type MutationCreateBasicBankAccountFormTemplateArgs, type MutationCreateBasicEmergencyContactFormArgs, type MutationCreateBasicEmergencyContactFormTemplateArgs, type MutationCreateBasicPersonalDetailsFormArgs, type MutationCreateBasicPersonalDetailsFormTemplateArgs, type MutationCreateBasicPreEmploymentFormArgs, type MutationCreateBasicPreEmploymentFormTemplateArgs, type MutationCreateBasicSuperFormArgs, type MutationCreateBasicSuperFormTemplateArgs, type MutationCreateBasicTaxFormArgs, type MutationCreateBasicTaxFormTemplateArgs, type MutationCreateBundleArgs, type MutationCreateBundledPersonArgs, type MutationCreateCertificateArgs, type MutationCreateCertificateTemplateArgs, type MutationCreateCustomTableArgs, type MutationCreateDataExportArgs, type MutationCreateDataImportArgs, type MutationCreateDocumentArgs, type MutationCreateDocumentTemplateArgs, type MutationCreateIntegrationArgs, type MutationCreateIntegrationLogArgs, type MutationCreateJobArgs, type MutationCreateKeypayEmployeeFormArgs, type MutationCreateKeypayEmployeeFormTemplateArgs, type MutationCreateKeypayLeaveLeaveRequestArgs, type MutationCreateLeaveRequestArgs, type MutationCreateLocalPersonConnectionsArgs, type MutationCreateLocationArgs, type MutationCreateLoginArgs, type MutationCreateManualDataImportArgs, type MutationCreateNoteArgs, type MutationCreateNoteAttachmentsArgs, type MutationCreateOrgArgs, type MutationCreatePaperworkTypeArgs, type MutationCreatePerformanceReviewCycleArgs, type MutationCreatePersonArgs, type MutationCreatePersonConnectionArgs, type MutationCreatePersonDataImportLineArgs, type MutationCreatePositionArgs, type MutationCreateProcessedCertificateArgs, type MutationCreateProcessedDocumentArgs, type MutationCreateQuestionnaireArgs, type MutationCreateQuestionnaireTemplateArgs, type MutationCreateReviewCycleArgs, type MutationCreateSavedQuestionArgs, type MutationCreateStandaloneStandardReviewArgs, type MutationCreateStandaloneTaskArgs, type MutationCreateStandardReviewArgs, type MutationCreateStandardReviewQuestionArgs, type MutationCreateStandardReviewTemplateArgs, type MutationCreateStandardReviewTemplateQuestionArgs, type MutationCreateTagArgs, type MutationCreateTagsArgs, type MutationCreateTaskArgs, type MutationCreateTaskTemplateArgs, type MutationCreateXeroLeaveRequestArgs, type MutationDeleteApiTokenArgs, type MutationDeleteApprovalsArgs, type MutationDeleteBundledPersonArgs, type MutationDeleteJobArgs, type MutationDeleteLeaveRequestArgs, type MutationDeleteLoginArgs, type MutationDeletePersonConnectionArgs, type MutationDeletePersonConnectionsArgs, type MutationDeletePositionArgs, type MutationDeleteStandardReviewQuestionArgs, type MutationDeleteStandardReviewTemplateQuestionArgs, type MutationDeleteTagArgs, type MutationDenyKeypayLeaveLeaveRequestArgs, type MutationDenyLeaveRequestArgs, type MutationDenyXeroLeaveRequestArgs, type MutationDuplicatePaperworkTypeArgs, type MutationInitializeIntegrationArgs, type MutationInvitePeopleArgs, type MutationInvitePersonArgs, type MutationJoinOrgArgs, type MutationLogInArgs, type MutationLogInWithProviderArgs, type MutationMarkNotificationsReadArgs, type MutationMarkNotificationsUnreadArgs, type MutationMergePaperworkTypesArgs, type MutationPauseIntegrationArgs, type MutationProcessAssignmentArgs, type MutationProcessAssignmentsArgs, type MutationProcessLeaveRequestArgs, type MutationProcessStandardReviewArgs, type MutationReassignAssignmentArgs, type MutationReassignCertificateArgs, type MutationReassignTaskArgs, type MutationReinviteLoginArgs, type MutationReinvitePeopleArgs, type MutationReinvitePersonArgs, type MutationRemovePaperworkTypeFromBundlesArgs, type MutationRemovePeopleFromBundlesArgs, type MutationRemovePeopleFromTagsArgs, type MutationRequestApprovalsArgs, type MutationRequestPasswordResetArgs, type MutationResetXeroAuIntegrationArgs, type MutationRestoreAssignmentArgs, type MutationRestoreBundleArgs, type MutationRestoreIntegrationArgs, type MutationRestoreNotesArgs, type MutationRestorePaperworkTypeArgs, type MutationRestorePersonArgs, type MutationRestoreReviewCycleArgs, type MutationRestoreSavedQuestionArgs, type MutationRestoreStandardReviewArgs, type MutationRestoreStandardReviewTemplateArgs, type MutationRestoreTemplateArgs, type MutationScheduleStandardReviewArgs, type MutationSetActiveLoginArgs, type MutationSignUpArgs, type MutationSubmitBasicAbnFormArgs, type MutationSubmitBasicBankAccountFormArgs, type MutationSubmitBasicEmergencyContactFormArgs, type MutationSubmitBasicPersonalDetailsFormArgs, type MutationSubmitBasicPreEmploymentFormArgs, type MutationSubmitBasicSuperFormArgs, type MutationSubmitBasicTaxFormArgs, type MutationSubmitCertificateArgs, type MutationSubmitDocumentArgs, type MutationSubmitKeypayEmployeeFormArgs, type MutationSubmitQuestionnaireArgs, type MutationSubmitStandardReviewArgs, type MutationSubmitStandardReviewQuestionArgs, type MutationSubmitTaskArgs, type MutationTerminatePersonArgs, type MutationTriggerIntegrationSyncArgs, type MutationUnmatchPersonConnectionsArgs, type MutationUnpauseIntegrationArgs, type MutationUnscheduleStandardReviewArgs, type MutationUpdateAccountArgs, type MutationUpdateAssignmentArgs, type MutationUpdateAssignmentsArgs, type MutationUpdateBasicAbnFormTemplateArgs, type MutationUpdateBasicBankAccountFormTemplateArgs, type MutationUpdateBasicEmergencyContactFormTemplateArgs, type MutationUpdateBasicPersonalDetailsFormTemplateArgs, type MutationUpdateBasicPreEmploymentFormTemplateArgs, type MutationUpdateBasicSuperFormTemplateArgs, type MutationUpdateBasicTaxFormTemplateArgs, type MutationUpdateBundleArgs, type MutationUpdateCertificateArgs, type MutationUpdateCertificateTemplateArgs, type MutationUpdateCustomTableArgs, type MutationUpdateDocumentArgs, type MutationUpdateDocumentTemplateArgs, type MutationUpdateIntegrationArgs, type MutationUpdateJobArgs, type MutationUpdateKeypayEmployeeFormTemplateArgs, type MutationUpdateKeypayIntegrationArgs, type MutationUpdateKeypayLeaveIntegrationArgs, type MutationUpdateLocationArgs, type MutationUpdateNoteArgs, type MutationUpdateOnboardingAssignmentsArgs, type MutationUpdateOrgArgs, type MutationUpdatePaperworkAssignmentArgs, type MutationUpdatePaperworkTypeArgs, type MutationUpdatePerformanceReviewCycleArgs, type MutationUpdatePerformanceReviewCycleConfigArgs, type MutationUpdatePersonArgs, type MutationUpdatePersonConnectionArgs, type MutationUpdatePersonTagsArgs, type MutationUpdatePositionArgs, type MutationUpdatePositionsArgs, type MutationUpdateQuestionnaireArgs, type MutationUpdateQuestionnaireTemplateArgs, type MutationUpdateReviewCycleArgs, type MutationUpdateSavedQuestionArgs, type MutationUpdateStandardReviewArgs, type MutationUpdateStandardReviewQuestionArgs, type MutationUpdateStandardReviewTemplateArgs, type MutationUpdateStandardReviewTemplateQuestionArgs, type MutationUpdateTagArgs, type MutationUpdateTaskArgs, type MutationUpdateTaskTemplateArgs, type MutationUpdateUserPasswordArgs, type MutationUpdateXeroAuIntegrationArgs, type MutationUpdateXeroLeaveIntegrationArgs, type Note, type NoteAttachment, type Notification, NotificationType, type Org, type OrgBundlesArgs, type OrgFeatures, type OrgFeaturesInput, type OrgIntegrationsArgs, type OrgLocationsArgs, type OrgPaperworkSummariesArgs, type OrgPaperworkTypesArgs, type OrgPeopleArgs, type OrgPerformanceReviewCyclesArgs, type OrgPerformanceReviewTemplatesArgs, type OrgPositionsArgs, type OrgReviewCyclesArgs, type OrgSavedQuestionsArgs, type OrgTemplatesArgs, type PageInfo, type PaperworkAssignment, type PaperworkAssignmentNotificationsArgs, type PaperworkSummary, PaperworkSummaryStatus, type PaperworkTemplate, type PaperworkTemplateConnection, type PaperworkTemplateEdge, type PaperworkType, type PaperworkTypeTemplatesArgs, PayPeriod, type PerformanceReviewCycle, type PerformanceReviewCycleConfig, PerformanceReviewCycleStatus, type PerformanceReviewTemplate, type Person, type PersonAssignmentsArgs, type PersonBankAccountsChange, type PersonBankAccountsChangeInput, type PersonCertificatesArgs, type PersonChange, type PersonConnection, type PersonConnectionLeaveHoursEstimateArgs, type PersonConnectionLeaveRequestsArgs, type PersonCustomTablesArgs, type PersonDataImportLine, type PersonDataTransferConfigInput, type PersonDateOfBirthChange, type PersonDateOfBirthChangeInput, type PersonDocumentsArgs, type PersonEmergencyContactsChange, type PersonEmergencyContactsChangeInput, type PersonFullDetailsFragment, type PersonFullNameChange, type PersonFullNameChangeInput, type PersonGenderChange, type PersonGenderChangeInput, type PersonNotesArgs, type PersonNotificationsArgs, type PersonPersonalEmailChange, type PersonPersonalEmailChangeInput, type PersonPersonalPhoneChange, type PersonPersonalPhoneChangeInput, type PersonPostalAddressChange, type PersonPostalAddressChangeInput, type PersonQuestionnairesArgs, type PersonRemunerationChange, type PersonResidentialAddressChange, type PersonResidentialAddressChangeInput, type PersonReviewsArgs, PersonRole, PersonStatus, type PersonSuperFundsChange, type PersonSuperFundsChangeInput, type PersonTasksArgs, type PersonTaxDetailsChange, type PersonTaxDetailsChangeInput, type PersonTenureChange, type PersonTenureChangeInput, type Position, type Query, type QueryAccountArgs, type QueryAssignmentArgs, type QueryBasicAbnFormTemplateArgs, type QueryBasicBankAccountFormTemplateArgs, type QueryBasicEmergencyContactFormTemplateArgs, type QueryBasicPersonalDetailsFormTemplateArgs, type QueryBasicPreEmploymentFormTemplateArgs, type QueryBasicSuperFormTemplateArgs, type QueryBasicTaxFormTemplateArgs, type QueryBundleArgs, type QueryCertificateArgs, type QueryCertificateTemplateArgs, type QueryCustomTableArgs, type QueryDataImportArgs, type QueryDataImportLineArgs, type QueryDocumentArgs, type QueryDocumentTemplateArgs, type QueryIntegrationArgs, type QueryJobArgs, type QueryKeypayEmployeeArgs, type QueryKeypayEmployeeFormTemplateArgs, type QueryKeypayLeaveEmployeeArgs, type QueryLeaveRequestArgs, type QueryNoteArgs, type QueryOrgArgs, type QueryPaperworkTypeArgs, type QueryPerformanceReviewCycleArgs, type QueryPersonArgs, type QueryPersonConnectionArgs, type QueryPositionArgs, type QueryQuestionnaireArgs, type QueryQuestionnaireTemplateArgs, type QueryReviewCycleArgs, type QuerySavedQuestionArgs, type QueryStandardReviewArgs, type QueryStandardReviewTemplateArgs, type QueryTaskArgs, type QueryTaskTemplateArgs, type QueryTemplateArgs, type QueryUserArgs, type Question, type QuestionConfig, type QuestionConfigInput, type QuestionLikert5Config, type QuestionLikert5ConfigInput, type QuestionLikert5Response, type QuestionLikert5ResponseInput, type QuestionMultipleChoiceConfig, type QuestionMultipleChoiceConfigInput, type QuestionMultipleChoiceOtherConfig, type QuestionMultipleChoiceOtherConfigInput, type QuestionMultipleChoiceOtherResponse, type QuestionMultipleChoiceOtherResponseInput, type QuestionMultipleChoiceResponse, type QuestionMultipleChoiceResponseInput, type QuestionResponse, type QuestionResponseInput, type QuestionTemplateInput, type QuestionTextConfig, type QuestionTextConfigInput, type QuestionTextResponse, type QuestionTextResponseInput, QuestionType, type Questionnaire, type QuestionnaireNotificationsArgs, type QuestionnaireQuestion, type QuestionnaireQuestionAnswerInput, type QuestionnaireQuestionInput, type QuestionnaireTemplate, type QuestionnaireTemplateQuestion, type ReviewCycle, type ReviewCycleReviewsArgs, ReviewRelation, type SavedQuestion, type Scalars, type Session, type SharedCalendarEvent, type SignatureUploadDocumentField, type SignatureUploadDocumentFieldConfigInput, type SignatureUploadDocumentFieldInput, type SmartDocumentField, type SmartDocumentFieldConfigInput, type SmartDocumentFieldInput, SmartDocumentFieldType, type StandardReview, type StandardReviewNotification, type StandardReviewNotificationsArgs, type StandardReviewQuestion, StandardReviewQuestionRespondent, type StandardReviewQuestionsArgs, StandardReviewStatus, type StandardReviewTemplate, type StandardReviewTemplateQuestion, type StartDateEvent, SuperFundNomination, type Tag, TagColor, type TagInput, type Task, type TaskNotificationsArgs, type TaskTemplate, TaxEmploymentBasis, TaxFileNumberExemption, TaxResidencyStatus, type Template, type TemplateInput, type TextDocumentField, type TextDocumentFieldConfigInput, type TextDocumentFieldInput, type UpdateLeaveRequestMutation, type UpdateLeaveRequestMutationVariables, type UpdateNoteAttachmentInput, type UpdatePersonConnectionMutation, type UpdatePersonConnectionMutationVariables, type UpdatePersonMutation, type UpdatePersonMutationVariables, type Upload, type User, type XeroAuBankAccount, type XeroAuEmployee, XeroAuEmploymentBasis, XeroAuGender, type XeroAuIntegration, type XeroAuIntegrationFeaturesArgs, XeroAuResidencyStatus, type XeroAuSuperFund, type XeroAuSuperMembership, XeroAuTfnExemptionType, type XeroLeaveEmployee, type XeroLeaveIntegration, type XeroLeaveIntegrationFeaturesArgs };
6598
+ export { type Account, type AccountAppsArgs, type AccountFeatures, type AccountFeaturesInput, AccountFlag, type ActivateIntegrationMutation, type ActivateIntegrationMutationVariables, AllocationMethod, type AnniversaryEvent, type ApiToken, type App, AppCategory, type AppConfig, type AppConfigWebhooks, AppStatus, type AppendIntegrationLogMutation, type AppendIntegrationLogMutationVariables, type Approval, ApprovalStatus, type ApprovalSummary, type Archivable, type Assignment, type AssignmentNotification, type AssignmentNotificationsArgs, AssignmentRelation, AssignmentStatus, AssignmentType, AuthMethod, AuthProvider, AuthState, type AuthorizeIntegrationMutation, type AuthorizeIntegrationMutationVariables, type BasicAbnForm, type BasicAbnFormNotificationsArgs, type BasicAbnFormTemplate, type BasicBankAccountForm, type BasicBankAccountFormNotificationsArgs, type BasicBankAccountFormTemplate, type BasicEmergencyContactForm, type BasicEmergencyContactFormNotificationsArgs, type BasicEmergencyContactFormTemplate, type BasicPersonalDetailsForm, type BasicPersonalDetailsFormNotificationsArgs, type BasicPersonalDetailsFormTemplate, type BasicPreEmploymentForm, type BasicPreEmploymentFormNotificationsArgs, type BasicPreEmploymentFormTemplate, type BasicSuperForm, type BasicSuperFormNotificationsArgs, type BasicSuperFormTemplate, type BasicTaxForm, type BasicTaxFormNotificationsArgs, type BasicTaxFormTemplate, type Birthday, type BirthdayEvent, type BirthdayInput, type Bundle, type BundledPaperworkType, type BundledPaperworkTypeConnection, type BundledPerson, type BundledPersonConnection, type Certificate, type CertificateNotificationsArgs, CertificateProof, type CertificateTemplate, type ChoiceDocumentField, type ChoiceDocumentFieldConfigInput, type ChoiceDocumentFieldConfigOptionInput, type ChoiceDocumentFieldInput, type ChoiceDocumentFieldOption, type ChoiceDocumentFieldOptionInput, type CompleteSyncMutation, type CompleteSyncMutationVariables, type ConnectionRemote, type ConnectionRemoteInput, ConnectionStatus, type CreateApiTokenMutation, type CreateApiTokenMutationVariables, type CreateDataImportMutation, type CreateDataImportMutationVariables, type CreateLeaveRequestMutation, type CreateLeaveRequestMutationVariables, type CreateNoteAttachmentInput, type CreatePersonConnectionMutation, type CreatePersonConnectionMutationVariables, type CreatePersonDataImportLineMutation, type CreatePersonDataImportLineMutationVariables, type CreatePersonMutation, type CreatePersonMutationVariables, type CustomTable, type CustomTableColumn, type CustomTableColumnInput, type CustomTableConfig, type CustomTableConfigFilter, type CustomTableConfigFilterInput, type CustomTableConfigInput, type CustomTableConfigSorting, type CustomTableConfigSortingInput, type DataExport, DataExportType, type DataImport, type DataImportLine, type DateDocumentField, type DateDocumentFieldConfigInput, type DateDocumentFieldInput, type DeleteApiTokenMutation, type DeleteApiTokenMutationVariables, type DeletePersonConnectionMutation, type DeletePersonConnectionMutationVariables, type Department, type DepartmentPositionsArgs, type Document, type DocumentField, type DocumentFieldConfigInput, type DocumentFieldInput, DocumentFieldResponder, type DocumentNotificationsArgs, type DocumentTemplate, DueDateStatus, type EmailNotificationSettings, type EmailNotificationSettingsInput, type Exact, ExpiryStatus, FieldPresence, FileProcessingStatus, Gender, type GenericIntegration, type GenericIntegrationFeaturesArgs, type GetApiTokensQuery, type GetApiTokensQueryVariables, type GetIntegrationQuery, type GetIntegrationQueryVariables, type GetLeaveRequestsQuery, type GetLeaveRequestsQueryVariables, type GetMyAppsQuery, type GetMyAppsQueryVariables, type GetPeopleQuery, type GetPeopleQueryVariables, type GetPersonConnectionsQuery, type GetPersonConnectionsQueryVariables, type Incremental, type InitializeIntegrationMutation, type InitializeIntegrationMutationVariables, type InputMaybe, type Integration, type IntegrationConnection, type IntegrationFeatures, type IntegrationFeaturesArgs, type IntegrationFeaturesInput, type IntegrationLog, type IntegrationLogInput, IntegrationStatus, type IntegrationSync, type IntegrationSyncEvent, IntegrationSyncEventType, IntegrationSyncStatus, IntegrationType, type Job, JobStatus, type KeypayBusiness, type KeypayEmployee, type KeypayEmployeeForm, type KeypayEmployeeFormNotificationsArgs, type KeypayEmployeeFormTemplate, KeypayEmployeeStatus, KeypayEmploymentType, KeypayGender, type KeypayIntegration, type KeypayIntegrationBusinessInput, type KeypayIntegrationFeaturesArgs, type KeypayIntegrationTokenSetInput, type KeypayLeaveEmployee, type KeypayLeaveIntegration, type KeypayLeaveIntegrationFeaturesArgs, type LeaveBalance, type LeaveCategory, type LeaveCategoryInput, type LeaveHoursEstimate, type LeaveRequest, type LeaveRequestNotification, type LeaveRequestNotificationsArgs, LeaveRequestRelation, LeaveRequestStatus, type Location, type Login, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Media, type MultiLineTextDocumentField, type MultiLineTextDocumentFieldConfigInput, type MultiLineTextDocumentFieldInput, type Mutation, type MutationAcceptLoginArgs, type MutationActivateIntegrationArgs, type MutationActivateKeypayIntegrationArgs, type MutationActivatePersonArgs, type MutationActivateXeroIntegrationArgs, type MutationAddPeopleToBundlesArgs, type MutationAddPeopleToTagsArgs, type MutationAddRevieweesToPerformanceReviewCycleArgs, type MutationAppendIntegrationLogArgs, type MutationApproveAssignmentArgs, type MutationApproveKeypayLeaveLeaveRequestArgs, type MutationApproveLeaveRequestArgs, type MutationApproveXeroLeaveRequestArgs, type MutationArchiveAssignmentArgs, type MutationArchiveBundleArgs, type MutationArchiveCustomTableArgs, type MutationArchiveIntegrationArgs, type MutationArchiveLocationArgs, type MutationArchiveNotesArgs, type MutationArchiveOrgArgs, type MutationArchivePaperworkTypeArgs, type MutationArchivePersonArgs, type MutationArchivePositionArgs, type MutationArchiveReviewCycleArgs, type MutationArchiveSavedQuestionArgs, type MutationArchiveStandardReviewArgs, type MutationArchiveStandardReviewTemplateArgs, type MutationArchiveTemplateArgs, type MutationAssignAssignmentsArgs, type MutationAssignBasicAbnFormArgs, type MutationAssignBasicBankAccountFormArgs, type MutationAssignBasicEmergencyContactFormArgs, type MutationAssignBasicPersonalDetailsFormArgs, type MutationAssignBasicPreEmploymentFormArgs, type MutationAssignBasicSuperFormArgs, type MutationAssignBasicTaxFormArgs, type MutationAssignCertificateArgs, type MutationAssignDocumentArgs, type MutationAssignKeypayEmployeeFormArgs, type MutationAssignQuestionnaireArgs, type MutationAssignStandardReviewArgs, type MutationAssignTaskArgs, type MutationAuthorizeIntegrationArgs, type MutationCancelLeaveRequestArgs, type MutationCompleteIntegrationSyncArgs, type MutationCompletePasswordResetArgs, type MutationConfirmEmailArgs, type MutationConfirmProfileArgs, type MutationConfirmProviderArgs, type MutationCreateAccountArgs, type MutationCreateApiTokenArgs, type MutationCreateAssignmentsArgs, type MutationCreateBasicAbnFormArgs, type MutationCreateBasicAbnFormTemplateArgs, type MutationCreateBasicBankAccountFormArgs, type MutationCreateBasicBankAccountFormTemplateArgs, type MutationCreateBasicEmergencyContactFormArgs, type MutationCreateBasicEmergencyContactFormTemplateArgs, type MutationCreateBasicPersonalDetailsFormArgs, type MutationCreateBasicPersonalDetailsFormTemplateArgs, type MutationCreateBasicPreEmploymentFormArgs, type MutationCreateBasicPreEmploymentFormTemplateArgs, type MutationCreateBasicSuperFormArgs, type MutationCreateBasicSuperFormTemplateArgs, type MutationCreateBasicTaxFormArgs, type MutationCreateBasicTaxFormTemplateArgs, type MutationCreateBundleArgs, type MutationCreateBundledPersonArgs, type MutationCreateCertificateArgs, type MutationCreateCertificateTemplateArgs, type MutationCreateCustomTableArgs, type MutationCreateDataExportArgs, type MutationCreateDataImportArgs, type MutationCreateDocumentArgs, type MutationCreateDocumentTemplateArgs, type MutationCreateIntegrationArgs, type MutationCreateIntegrationLogArgs, type MutationCreateJobArgs, type MutationCreateKeypayEmployeeFormArgs, type MutationCreateKeypayEmployeeFormTemplateArgs, type MutationCreateKeypayLeaveLeaveRequestArgs, type MutationCreateLeaveRequestArgs, type MutationCreateLocalPersonConnectionsArgs, type MutationCreateLocationArgs, type MutationCreateLoginArgs, type MutationCreateManualDataImportArgs, type MutationCreateNoteArgs, type MutationCreateNoteAttachmentsArgs, type MutationCreateOrgArgs, type MutationCreatePaperworkTypeArgs, type MutationCreatePerformanceReviewCycleArgs, type MutationCreatePersonArgs, type MutationCreatePersonConnectionArgs, type MutationCreatePersonDataImportLineArgs, type MutationCreatePositionArgs, type MutationCreateProcessedCertificateArgs, type MutationCreateProcessedDocumentArgs, type MutationCreateQuestionnaireArgs, type MutationCreateQuestionnaireTemplateArgs, type MutationCreateReviewCycleArgs, type MutationCreateSavedQuestionArgs, type MutationCreateStandaloneStandardReviewArgs, type MutationCreateStandaloneTaskArgs, type MutationCreateStandardReviewArgs, type MutationCreateStandardReviewQuestionArgs, type MutationCreateStandardReviewTemplateArgs, type MutationCreateStandardReviewTemplateQuestionArgs, type MutationCreateTagArgs, type MutationCreateTagsArgs, type MutationCreateTaskArgs, type MutationCreateTaskTemplateArgs, type MutationCreateXeroLeaveRequestArgs, type MutationDeleteApiTokenArgs, type MutationDeleteApprovalsArgs, type MutationDeleteBundledPersonArgs, type MutationDeleteJobArgs, type MutationDeleteLeaveRequestArgs, type MutationDeleteLoginArgs, type MutationDeletePersonConnectionArgs, type MutationDeletePersonConnectionsArgs, type MutationDeletePositionArgs, type MutationDeleteStandardReviewQuestionArgs, type MutationDeleteStandardReviewTemplateQuestionArgs, type MutationDeleteTagArgs, type MutationDenyKeypayLeaveLeaveRequestArgs, type MutationDenyLeaveRequestArgs, type MutationDenyXeroLeaveRequestArgs, type MutationDuplicatePaperworkTypeArgs, type MutationInitializeIntegrationArgs, type MutationInvitePeopleArgs, type MutationInvitePersonArgs, type MutationJoinOrgArgs, type MutationLaunchPerformanceReviewCycleArgs, type MutationLogInArgs, type MutationLogInWithProviderArgs, type MutationMarkNotificationsReadArgs, type MutationMarkNotificationsUnreadArgs, type MutationMergePaperworkTypesArgs, type MutationPauseIntegrationArgs, type MutationProcessAssignmentArgs, type MutationProcessAssignmentsArgs, type MutationProcessLeaveRequestArgs, type MutationProcessStandardReviewArgs, type MutationReassignAssignmentArgs, type MutationReassignCertificateArgs, type MutationReassignTaskArgs, type MutationReinviteLoginArgs, type MutationReinvitePeopleArgs, type MutationReinvitePersonArgs, type MutationRemovePaperworkTypeFromBundlesArgs, type MutationRemovePeopleFromBundlesArgs, type MutationRemovePeopleFromTagsArgs, type MutationRemoveRevieweeFromCycleArgs, type MutationRequestApprovalsArgs, type MutationRequestPasswordResetArgs, type MutationResetXeroAuIntegrationArgs, type MutationRestoreAssignmentArgs, type MutationRestoreBundleArgs, type MutationRestoreIntegrationArgs, type MutationRestoreNotesArgs, type MutationRestorePaperworkTypeArgs, type MutationRestorePersonArgs, type MutationRestoreReviewCycleArgs, type MutationRestoreSavedQuestionArgs, type MutationRestoreStandardReviewArgs, type MutationRestoreStandardReviewTemplateArgs, type MutationRestoreTemplateArgs, type MutationScheduleStandardReviewArgs, type MutationSetActiveLoginArgs, type MutationSignUpArgs, type MutationSubmitBasicAbnFormArgs, type MutationSubmitBasicBankAccountFormArgs, type MutationSubmitBasicEmergencyContactFormArgs, type MutationSubmitBasicPersonalDetailsFormArgs, type MutationSubmitBasicPreEmploymentFormArgs, type MutationSubmitBasicSuperFormArgs, type MutationSubmitBasicTaxFormArgs, type MutationSubmitCertificateArgs, type MutationSubmitDocumentArgs, type MutationSubmitKeypayEmployeeFormArgs, type MutationSubmitQuestionnaireArgs, type MutationSubmitStandardReviewArgs, type MutationSubmitStandardReviewQuestionArgs, type MutationSubmitTaskArgs, type MutationTerminatePersonArgs, type MutationTriggerIntegrationSyncArgs, type MutationUnmatchPersonConnectionsArgs, type MutationUnpauseIntegrationArgs, type MutationUnscheduleStandardReviewArgs, type MutationUpdateAccountArgs, type MutationUpdateAssignmentArgs, type MutationUpdateAssignmentsArgs, type MutationUpdateBasicAbnFormTemplateArgs, type MutationUpdateBasicBankAccountFormTemplateArgs, type MutationUpdateBasicEmergencyContactFormTemplateArgs, type MutationUpdateBasicPersonalDetailsFormTemplateArgs, type MutationUpdateBasicPreEmploymentFormTemplateArgs, type MutationUpdateBasicSuperFormTemplateArgs, type MutationUpdateBasicTaxFormTemplateArgs, type MutationUpdateBundleArgs, type MutationUpdateCertificateArgs, type MutationUpdateCertificateTemplateArgs, type MutationUpdateCustomTableArgs, type MutationUpdateDocumentArgs, type MutationUpdateDocumentTemplateArgs, type MutationUpdateIntegrationArgs, type MutationUpdateJobArgs, type MutationUpdateKeypayEmployeeFormTemplateArgs, type MutationUpdateKeypayIntegrationArgs, type MutationUpdateKeypayLeaveIntegrationArgs, type MutationUpdateLocationArgs, type MutationUpdateNoteArgs, type MutationUpdateOnboardingAssignmentsArgs, type MutationUpdateOrgArgs, type MutationUpdatePaperworkAssignmentArgs, type MutationUpdatePaperworkTypeArgs, type MutationUpdatePerformanceReviewCycleArgs, type MutationUpdatePerformanceReviewCycleConfigArgs, type MutationUpdatePerformanceReviewCycleRevieweeArgs, type MutationUpdatePersonArgs, type MutationUpdatePersonConnectionArgs, type MutationUpdatePersonTagsArgs, type MutationUpdatePositionArgs, type MutationUpdatePositionsArgs, type MutationUpdateQuestionnaireArgs, type MutationUpdateQuestionnaireTemplateArgs, type MutationUpdateReviewCycleArgs, type MutationUpdateSavedQuestionArgs, type MutationUpdateStandardReviewArgs, type MutationUpdateStandardReviewQuestionArgs, type MutationUpdateStandardReviewTemplateArgs, type MutationUpdateStandardReviewTemplateQuestionArgs, type MutationUpdateTagArgs, type MutationUpdateTaskArgs, type MutationUpdateTaskTemplateArgs, type MutationUpdateUserPasswordArgs, type MutationUpdateXeroAuIntegrationArgs, type MutationUpdateXeroLeaveIntegrationArgs, type Note, type NoteAttachment, type Notification, NotificationType, type Org, type OrgBundlesArgs, type OrgFeatures, type OrgFeaturesInput, type OrgIntegrationsArgs, type OrgLocationsArgs, type OrgPaperworkSummariesArgs, type OrgPaperworkTypesArgs, type OrgPeopleArgs, type OrgPerformanceReviewCyclesArgs, type OrgPerformanceReviewTemplatesArgs, type OrgPositionsArgs, type OrgReviewCyclesArgs, type OrgSavedQuestionsArgs, type OrgTemplatesArgs, type PageInfo, type PaperworkAssignment, type PaperworkAssignmentNotificationsArgs, type PaperworkSummary, PaperworkSummaryStatus, type PaperworkTemplate, type PaperworkTemplateConnection, type PaperworkTemplateEdge, type PaperworkType, type PaperworkTypeTemplatesArgs, PayPeriod, type PerformanceReview, type PerformanceReviewCycle, type PerformanceReviewCycleConfig, PerformanceReviewCycleStatus, type PerformanceReviewNotification, type PerformanceReviewReviewee, type PerformanceReviewRevieweeInput, type PerformanceReviewTemplate, PerformanceReviewType, type Person, type PersonAssignmentsArgs, type PersonBankAccountsChange, type PersonBankAccountsChangeInput, type PersonCertificatesArgs, type PersonChange, type PersonConnection, type PersonConnectionLeaveHoursEstimateArgs, type PersonConnectionLeaveRequestsArgs, type PersonCustomTablesArgs, type PersonDataImportLine, type PersonDataTransferConfigInput, type PersonDateOfBirthChange, type PersonDateOfBirthChangeInput, type PersonDocumentsArgs, type PersonEmergencyContactsChange, type PersonEmergencyContactsChangeInput, type PersonFullDetailsFragment, type PersonFullNameChange, type PersonFullNameChangeInput, type PersonGenderChange, type PersonGenderChangeInput, type PersonNotesArgs, type PersonNotificationsArgs, type PersonPersonalEmailChange, type PersonPersonalEmailChangeInput, type PersonPersonalPhoneChange, type PersonPersonalPhoneChangeInput, type PersonPostalAddressChange, type PersonPostalAddressChangeInput, type PersonQuestionnairesArgs, type PersonRemunerationChange, type PersonResidentialAddressChange, type PersonResidentialAddressChangeInput, type PersonReviewsArgs, PersonRole, PersonStatus, type PersonSuperFundsChange, type PersonSuperFundsChangeInput, type PersonTasksArgs, type PersonTaxDetailsChange, type PersonTaxDetailsChangeInput, type PersonTenureChange, type PersonTenureChangeInput, type Position, type Query, type QueryAccountArgs, type QueryAssignmentArgs, type QueryBasicAbnFormTemplateArgs, type QueryBasicBankAccountFormTemplateArgs, type QueryBasicEmergencyContactFormTemplateArgs, type QueryBasicPersonalDetailsFormTemplateArgs, type QueryBasicPreEmploymentFormTemplateArgs, type QueryBasicSuperFormTemplateArgs, type QueryBasicTaxFormTemplateArgs, type QueryBundleArgs, type QueryCertificateArgs, type QueryCertificateTemplateArgs, type QueryCustomTableArgs, type QueryDataImportArgs, type QueryDataImportLineArgs, type QueryDocumentArgs, type QueryDocumentTemplateArgs, type QueryIntegrationArgs, type QueryJobArgs, type QueryKeypayEmployeeArgs, type QueryKeypayEmployeeFormTemplateArgs, type QueryKeypayLeaveEmployeeArgs, type QueryLeaveRequestArgs, type QueryNoteArgs, type QueryOrgArgs, type QueryPaperworkTypeArgs, type QueryPerformanceReviewCycleArgs, type QueryPersonArgs, type QueryPersonConnectionArgs, type QueryPositionArgs, type QueryQuestionnaireArgs, type QueryQuestionnaireTemplateArgs, type QueryReviewCycleArgs, type QuerySavedQuestionArgs, type QueryStandardReviewArgs, type QueryStandardReviewTemplateArgs, type QueryTaskArgs, type QueryTaskTemplateArgs, type QueryTemplateArgs, type QueryUserArgs, type Question, type QuestionConfig, type QuestionConfigInput, type QuestionLikert5Config, type QuestionLikert5ConfigInput, type QuestionLikert5Response, type QuestionLikert5ResponseInput, type QuestionMultipleChoiceConfig, type QuestionMultipleChoiceConfigInput, type QuestionMultipleChoiceOtherConfig, type QuestionMultipleChoiceOtherConfigInput, type QuestionMultipleChoiceOtherResponse, type QuestionMultipleChoiceOtherResponseInput, type QuestionMultipleChoiceResponse, type QuestionMultipleChoiceResponseInput, type QuestionResponse, type QuestionResponseInput, type QuestionTemplateInput, type QuestionTextConfig, type QuestionTextConfigInput, type QuestionTextResponse, type QuestionTextResponseInput, QuestionType, type Questionnaire, type QuestionnaireNotificationsArgs, type QuestionnaireQuestion, type QuestionnaireQuestionAnswerInput, type QuestionnaireQuestionInput, type QuestionnaireTemplate, type QuestionnaireTemplateQuestion, type ReviewCycle, type ReviewCycleReviewsArgs, ReviewRelation, type SavedQuestion, type Scalars, type Session, type SharedCalendarEvent, type SignatureUploadDocumentField, type SignatureUploadDocumentFieldConfigInput, type SignatureUploadDocumentFieldInput, type SmartDocumentField, type SmartDocumentFieldConfigInput, type SmartDocumentFieldInput, SmartDocumentFieldType, type StandardReview, type StandardReviewNotification, type StandardReviewNotificationsArgs, type StandardReviewQuestion, StandardReviewQuestionRespondent, type StandardReviewQuestionsArgs, StandardReviewStatus, type StandardReviewTemplate, type StandardReviewTemplateQuestion, type StartDateEvent, SuperFundNomination, type Tag, TagColor, type TagInput, type Task, type TaskNotificationsArgs, type TaskTemplate, TaxEmploymentBasis, TaxFileNumberExemption, TaxResidencyStatus, type Template, type TemplateInput, type TextDocumentField, type TextDocumentFieldConfigInput, type TextDocumentFieldInput, type UpdateLeaveRequestMutation, type UpdateLeaveRequestMutationVariables, type UpdateNoteAttachmentInput, type UpdatePersonConnectionMutation, type UpdatePersonConnectionMutationVariables, type UpdatePersonMutation, type UpdatePersonMutationVariables, type Upload, type User, type XeroAuBankAccount, type XeroAuEmployee, XeroAuEmploymentBasis, XeroAuGender, type XeroAuIntegration, type XeroAuIntegrationFeaturesArgs, XeroAuResidencyStatus, type XeroAuSuperFund, type XeroAuSuperMembership, XeroAuTfnExemptionType, type XeroIntegrationTenantInput, type XeroIntegrationTokenSetInput, type XeroLeaveEmployee, type XeroLeaveIntegration, type XeroLeaveIntegrationFeaturesArgs };
@@ -203,15 +203,24 @@ var NotificationType = /* @__PURE__ */ ((NotificationType2) => {
203
203
  NotificationType2["ApprovalRequested"] = "APPROVAL_REQUESTED";
204
204
  NotificationType2["AssignmentApproved"] = "ASSIGNMENT_APPROVED";
205
205
  NotificationType2["AssignmentAssigned"] = "ASSIGNMENT_ASSIGNED";
206
+ NotificationType2["AssignmentDueSoon"] = "ASSIGNMENT_DUE_SOON";
206
207
  NotificationType2["AssignmentExpired"] = "ASSIGNMENT_EXPIRED";
207
208
  NotificationType2["AssignmentExpiringSoon"] = "ASSIGNMENT_EXPIRING_SOON";
208
209
  NotificationType2["AssignmentFailed"] = "ASSIGNMENT_FAILED";
210
+ NotificationType2["AssignmentOverdue"] = "ASSIGNMENT_OVERDUE";
209
211
  NotificationType2["AssignmentReassigned"] = "ASSIGNMENT_REASSIGNED";
210
212
  NotificationType2["AssignmentSubmitted"] = "ASSIGNMENT_SUBMITTED";
211
213
  NotificationType2["LeaveRequestApproved"] = "LEAVE_REQUEST_APPROVED";
212
214
  NotificationType2["LeaveRequestCancelled"] = "LEAVE_REQUEST_CANCELLED";
213
215
  NotificationType2["LeaveRequestCreated"] = "LEAVE_REQUEST_CREATED";
214
216
  NotificationType2["LeaveRequestDenied"] = "LEAVE_REQUEST_DENIED";
217
+ NotificationType2["PerformanceReviewManagerReviewAssigned"] = "PERFORMANCE_REVIEW_MANAGER_REVIEW_ASSIGNED";
218
+ NotificationType2["PerformanceReviewManagerReviewOverdue"] = "PERFORMANCE_REVIEW_MANAGER_REVIEW_OVERDUE";
219
+ NotificationType2["PerformanceReviewPacketShared"] = "PERFORMANCE_REVIEW_PACKET_SHARED";
220
+ NotificationType2["PerformanceReviewRevieweeSelfReviewOverdue"] = "PERFORMANCE_REVIEW_REVIEWEE_SELF_REVIEW_OVERDUE";
221
+ NotificationType2["PerformanceReviewSelfReviewAssigned"] = "PERFORMANCE_REVIEW_SELF_REVIEW_ASSIGNED";
222
+ NotificationType2["PerformanceReviewSelfReviewOverdue"] = "PERFORMANCE_REVIEW_SELF_REVIEW_OVERDUE";
223
+ NotificationType2["PerformanceReviewSelfReviewSubmitted"] = "PERFORMANCE_REVIEW_SELF_REVIEW_SUBMITTED";
215
224
  NotificationType2["ReviewAssigned"] = "REVIEW_ASSIGNED";
216
225
  NotificationType2["ReviewScheduled"] = "REVIEW_SCHEDULED";
217
226
  NotificationType2["ReviewSubmitted"] = "REVIEW_SUBMITTED";
@@ -242,6 +251,11 @@ var PerformanceReviewCycleStatus = /* @__PURE__ */ ((PerformanceReviewCycleStatu
242
251
  PerformanceReviewCycleStatus2["InProgress"] = "IN_PROGRESS";
243
252
  return PerformanceReviewCycleStatus2;
244
253
  })(PerformanceReviewCycleStatus || {});
254
+ var PerformanceReviewType = /* @__PURE__ */ ((PerformanceReviewType2) => {
255
+ PerformanceReviewType2["Manager"] = "MANAGER";
256
+ PerformanceReviewType2["Self"] = "SELF";
257
+ return PerformanceReviewType2;
258
+ })(PerformanceReviewType || {});
245
259
  var PersonRole = /* @__PURE__ */ ((PersonRole2) => {
246
260
  PersonRole2["AccountManager"] = "ACCOUNT_MANAGER";
247
261
  PersonRole2["AccountOwner"] = "ACCOUNT_OWNER";
@@ -406,6 +420,7 @@ export {
406
420
  PaperworkSummaryStatus,
407
421
  PayPeriod,
408
422
  PerformanceReviewCycleStatus,
423
+ PerformanceReviewType,
409
424
  PersonRole,
410
425
  PersonStatus,
411
426
  QuestionType,