@worknice/js-sdk 0.13.52 → 0.13.53

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'];
@@ -2003,10 +2021,13 @@ type Mutation = {
2003
2021
  acceptLogin: Login;
2004
2022
  /** Transitions an integration from 'UNINITIALIZED', 'UNAUTHORIZED' or 'UNCONFIGURED' to 'ACTIVE'. This can only be done by the bot associated with the integration. */
2005
2023
  activateIntegration: Integration;
2024
+ activateKeypayIntegration: Integration;
2006
2025
  /** Either transition this person's status from either 'ONBOARDING' or 'TERMINATED' to 'ACTIVE'. */
2007
2026
  activatePerson: Person;
2027
+ activateXeroIntegration: Integration;
2008
2028
  addPeopleToBundles: Array<Bundle>;
2009
2029
  addPeopleToTags: Array<Tag>;
2030
+ addRevieweesToPerformanceReviewCycle: Array<PerformanceReviewReviewee>;
2010
2031
  appendIntegrationLog: IntegrationLog;
2011
2032
  approveAssignment: Assignment;
2012
2033
  approveKeypayLeaveLeaveRequest: LeaveRequest;
@@ -2225,6 +2246,7 @@ type Mutation = {
2225
2246
  removePaperworkTypeFromBundles: Array<Bundle>;
2226
2247
  removePeopleFromBundles: Array<Bundle>;
2227
2248
  removePeopleFromTags: Array<Tag>;
2249
+ removeRevieweeFromCycle: Scalars['Boolean']['output'];
2228
2250
  /** Notifies the approver and changes the approvals status to 'REQUESTED'. Only 'DRAFT' approvals can be requested. */
2229
2251
  requestApprovals: Array<Approval>;
2230
2252
  /** 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 +2322,7 @@ type Mutation = {
2300
2322
  updatePaperworkType: PaperworkType;
2301
2323
  updatePerformanceReviewCycle: PerformanceReviewCycle;
2302
2324
  updatePerformanceReviewCycleConfig: PerformanceReviewCycleConfig;
2325
+ updatePerformanceReviewCycleReviewee: PerformanceReviewReviewee;
2303
2326
  updatePerson: Person;
2304
2327
  updatePersonConnection: PersonConnection;
2305
2328
  updatePersonTags: Array<Tag>;
@@ -2327,9 +2350,17 @@ type MutationAcceptLoginArgs = {
2327
2350
  type MutationActivateIntegrationArgs = {
2328
2351
  integrationId: Scalars['ID']['input'];
2329
2352
  };
2353
+ type MutationActivateKeypayIntegrationArgs = {
2354
+ tenant: KeypayIntegrationBusinessInput;
2355
+ tokenSet: KeypayIntegrationTokenSetInput;
2356
+ };
2330
2357
  type MutationActivatePersonArgs = {
2331
2358
  id: Scalars['ID']['input'];
2332
2359
  };
2360
+ type MutationActivateXeroIntegrationArgs = {
2361
+ tenant: XeroIntegrationTenantInput;
2362
+ tokenSet: XeroIntegrationTokenSetInput;
2363
+ };
2333
2364
  type MutationAddPeopleToBundlesArgs = {
2334
2365
  bundleIds: Array<Scalars['ID']['input']>;
2335
2366
  personIds: Array<Scalars['ID']['input']>;
@@ -2338,6 +2369,10 @@ type MutationAddPeopleToTagsArgs = {
2338
2369
  personIds: Array<Scalars['ID']['input']>;
2339
2370
  tagIds: Array<Scalars['ID']['input']>;
2340
2371
  };
2372
+ type MutationAddRevieweesToPerformanceReviewCycleArgs = {
2373
+ cycleId: Scalars['ID']['input'];
2374
+ entries: Array<PerformanceReviewRevieweeInput>;
2375
+ };
2341
2376
  type MutationAppendIntegrationLogArgs = {
2342
2377
  entries: Array<IntegrationLogInput>;
2343
2378
  integrationLogId: Scalars['ID']['input'];
@@ -3014,6 +3049,10 @@ type MutationRemovePeopleFromTagsArgs = {
3014
3049
  personIds: Array<Scalars['ID']['input']>;
3015
3050
  tagIds: Array<Scalars['ID']['input']>;
3016
3051
  };
3052
+ type MutationRemoveRevieweeFromCycleArgs = {
3053
+ cycleId: Scalars['ID']['input'];
3054
+ revieweeId: Scalars['ID']['input'];
3055
+ };
3017
3056
  type MutationRequestApprovalsArgs = {
3018
3057
  approvalIds: Array<Scalars['ID']['input']>;
3019
3058
  };
@@ -3528,6 +3567,10 @@ type MutationUpdatePerformanceReviewCycleConfigArgs = {
3528
3567
  selfReviewDueDate?: InputMaybe<Scalars['Date']['input']>;
3529
3568
  selfReviewTemplateId?: InputMaybe<Scalars['ID']['input']>;
3530
3569
  };
3570
+ type MutationUpdatePerformanceReviewCycleRevieweeArgs = {
3571
+ primaryManagerId?: InputMaybe<Scalars['ID']['input']>;
3572
+ revieweeId: Scalars['ID']['input'];
3573
+ };
3531
3574
  type MutationUpdatePersonArgs = {
3532
3575
  displayName?: InputMaybe<Scalars['String']['input']>;
3533
3576
  emailNotificationSettings?: InputMaybe<EmailNotificationSettingsInput>;
@@ -3691,14 +3734,18 @@ declare enum NotificationType {
3691
3734
  ApprovalRequested = "APPROVAL_REQUESTED",
3692
3735
  /** Sent to the person responsible for an assignment when all it's approvals have been approved. */
3693
3736
  AssignmentApproved = "ASSIGNMENT_APPROVED",
3694
- /** Sent to the owner of a assignment when it's assigned (transitions from a 'draft' to an 'assigned' status). */
3737
+ /** Sent to the owner of an assignment when it's assigned (transitions from a 'draft' to an 'assigned' status). */
3695
3738
  AssignmentAssigned = "ASSIGNMENT_ASSIGNED",
3739
+ /** Sent to the owner of an assignment when it is due soon. */
3740
+ AssignmentDueSoon = "ASSIGNMENT_DUE_SOON",
3696
3741
  /** Sent to the person responsible for an assignment (i.e. an admin) when it has expired. */
3697
3742
  AssignmentExpired = "ASSIGNMENT_EXPIRED",
3698
3743
  /** Sent to the person responsible for an assignment (i.e. an admin) when it will be expiring soon. */
3699
3744
  AssignmentExpiringSoon = "ASSIGNMENT_EXPIRING_SOON",
3700
3745
  /** 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
3746
  AssignmentFailed = "ASSIGNMENT_FAILED",
3747
+ /** Sent to the owner of an assignment when it is overdue. */
3748
+ AssignmentOverdue = "ASSIGNMENT_OVERDUE",
3702
3749
  /** Sent to the owner of a assignment when an admin reassigns an assignment. */
3703
3750
  AssignmentReassigned = "ASSIGNMENT_REASSIGNED",
3704
3751
  /** Sent to the person responsible for an assignment (i.e. an admin) when it has expired. */
@@ -3711,6 +3758,20 @@ declare enum NotificationType {
3711
3758
  LeaveRequestCreated = "LEAVE_REQUEST_CREATED",
3712
3759
  /** Sent to the owner when a leave request is denied. */
3713
3760
  LeaveRequestDenied = "LEAVE_REQUEST_DENIED",
3761
+ /** Sent to the manager when a manager review has been assigned to them. */
3762
+ PerformanceReviewManagerReviewAssigned = "PERFORMANCE_REVIEW_MANAGER_REVIEW_ASSIGNED",
3763
+ /** Sent to the manager when their manager review is overdue. */
3764
+ PerformanceReviewManagerReviewOverdue = "PERFORMANCE_REVIEW_MANAGER_REVIEW_OVERDUE",
3765
+ /** Sent to the employee when a review packet has been shared with them. */
3766
+ PerformanceReviewPacketShared = "PERFORMANCE_REVIEW_PACKET_SHARED",
3767
+ /** Sent to the manager when the reviewee's self review is overdue. */
3768
+ PerformanceReviewRevieweeSelfReviewOverdue = "PERFORMANCE_REVIEW_REVIEWEE_SELF_REVIEW_OVERDUE",
3769
+ /** Sent to the employee when their self review has been assigned. */
3770
+ PerformanceReviewSelfReviewAssigned = "PERFORMANCE_REVIEW_SELF_REVIEW_ASSIGNED",
3771
+ /** Sent to the employee when their self review is overdue. */
3772
+ PerformanceReviewSelfReviewOverdue = "PERFORMANCE_REVIEW_SELF_REVIEW_OVERDUE",
3773
+ /** Sent to the manager when the reviewee has submitted their self review. */
3774
+ PerformanceReviewSelfReviewSubmitted = "PERFORMANCE_REVIEW_SELF_REVIEW_SUBMITTED",
3714
3775
  /** Sent to the reviewer when a review they are required to conduct has been assigned to them. */
3715
3776
  ReviewAssigned = "REVIEW_ASSIGNED",
3716
3777
  /** Sent to the subject of a review when a time for the review to take place has been set. */
@@ -3989,6 +4050,20 @@ declare enum PayPeriod {
3989
4050
  Hour = "HOUR",
3990
4051
  Year = "YEAR"
3991
4052
  }
4053
+ type PerformanceReview = {
4054
+ assignedAt?: Maybe<Scalars['DateTime']['output']>;
4055
+ createdAt: Scalars['DateTime']['output'];
4056
+ cycle: PerformanceReviewCycle;
4057
+ id: Scalars['ID']['output'];
4058
+ lastEditedAt?: Maybe<Scalars['DateTime']['output']>;
4059
+ lastEditedBy?: Maybe<Person>;
4060
+ reviewee: PerformanceReviewReviewee;
4061
+ reviewer?: Maybe<Person>;
4062
+ submittedAt?: Maybe<Scalars['DateTime']['output']>;
4063
+ submittedBy?: Maybe<Person>;
4064
+ type: PerformanceReviewType;
4065
+ updatedAt: Scalars['DateTime']['output'];
4066
+ };
3992
4067
  type PerformanceReviewCycle = {
3993
4068
  archived: Scalars['Boolean']['output'];
3994
4069
  archivedAt?: Maybe<Scalars['DateTime']['output']>;
@@ -4004,6 +4079,7 @@ type PerformanceReviewCycle = {
4004
4079
  name: Scalars['String']['output'];
4005
4080
  org: Org;
4006
4081
  revieweeCount: Scalars['Int']['output'];
4082
+ reviewees: Array<PerformanceReviewReviewee>;
4007
4083
  status: PerformanceReviewCycleStatus;
4008
4084
  updatedAt: Scalars['DateTime']['output'];
4009
4085
  };
@@ -4026,6 +4102,35 @@ declare enum PerformanceReviewCycleStatus {
4026
4102
  Draft = "DRAFT",
4027
4103
  InProgress = "IN_PROGRESS"
4028
4104
  }
4105
+ type PerformanceReviewNotification = Notification & {
4106
+ createdAt: Scalars['DateTime']['output'];
4107
+ emailSentAt?: Maybe<Scalars['DateTime']['output']>;
4108
+ id: Scalars['ID']['output'];
4109
+ performanceReview?: Maybe<PerformanceReview>;
4110
+ person?: Maybe<Person>;
4111
+ read: Scalars['Boolean']['output'];
4112
+ type: NotificationType;
4113
+ updatedAt: Scalars['DateTime']['output'];
4114
+ };
4115
+ type PerformanceReviewReviewee = {
4116
+ additionalManagers: Array<Person>;
4117
+ archived: Scalars['Boolean']['output'];
4118
+ archivedAt?: Maybe<Scalars['DateTime']['output']>;
4119
+ archiver?: Maybe<Person>;
4120
+ createdAt: Scalars['DateTime']['output'];
4121
+ creator?: Maybe<Person>;
4122
+ cycle: PerformanceReviewCycle;
4123
+ id: Scalars['ID']['output'];
4124
+ person: Person;
4125
+ primaryManager?: Maybe<Person>;
4126
+ sharedAt?: Maybe<Scalars['DateTime']['output']>;
4127
+ sharedBy?: Maybe<Person>;
4128
+ updatedAt: Scalars['DateTime']['output'];
4129
+ };
4130
+ type PerformanceReviewRevieweeInput = {
4131
+ personId: Scalars['ID']['input'];
4132
+ primaryManagerId?: InputMaybe<Scalars['ID']['input']>;
4133
+ };
4029
4134
  type PerformanceReviewTemplate = {
4030
4135
  archived: Scalars['Boolean']['output'];
4031
4136
  archivedAt?: Maybe<Scalars['DateTime']['output']>;
@@ -4038,6 +4143,10 @@ type PerformanceReviewTemplate = {
4038
4143
  org: Org;
4039
4144
  updatedAt: Scalars['DateTime']['output'];
4040
4145
  };
4146
+ declare enum PerformanceReviewType {
4147
+ Manager = "MANAGER",
4148
+ Self = "SELF"
4149
+ }
4041
4150
  type Person = {
4042
4151
  /** When this person was first activated (transitioned from `ONBOARDING` to `ACTIVE`). */
4043
4152
  activatedAt?: Maybe<Scalars['DateTime']['output']>;
@@ -5184,7 +5293,7 @@ type StandardReviewNotification = Notification & {
5184
5293
  id: Scalars['ID']['output'];
5185
5294
  person?: Maybe<Person>;
5186
5295
  read: Scalars['Boolean']['output'];
5187
- /** This field is nullable because the viewer may not longer have access to the review this notification is about. */
5296
+ /** This field is nullable because the viewer may no longer have access to the review this notification is about. */
5188
5297
  standardReview?: Maybe<StandardReview>;
5189
5298
  type: NotificationType;
5190
5299
  updatedAt: Scalars['DateTime']['output'];
@@ -5575,6 +5684,16 @@ declare enum XeroAuTfnExemptionType {
5575
5684
  Pensioner = "PENSIONER",
5576
5685
  Under18 = "UNDER18"
5577
5686
  }
5687
+ type XeroIntegrationTenantInput = {
5688
+ id: Scalars['String']['input'];
5689
+ tenantId: Scalars['String']['input'];
5690
+ tenantName: Scalars['String']['input'];
5691
+ };
5692
+ type XeroIntegrationTokenSetInput = {
5693
+ accessToken: Scalars['String']['input'];
5694
+ expiresAt: Scalars['Int']['input'];
5695
+ refreshToken: Scalars['String']['input'];
5696
+ };
5578
5697
  type XeroLeaveEmployee = {
5579
5698
  connection?: Maybe<PersonConnection>;
5580
5699
  createdAt: Scalars['DateTime']['output'];
@@ -6471,4 +6590,4 @@ type UpdatePersonConnectionMutation = {
6471
6590
  };
6472
6591
  };
6473
6592
 
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 };
6593
+ 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 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,