@worknice/js-sdk 0.13.57 → 0.14.0

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.
@@ -1222,6 +1222,7 @@ type EmailNotificationSettings = {
1222
1222
  assignmentFailed: Scalars['Boolean']['output'];
1223
1223
  assignmentOverdue: Scalars['Boolean']['output'];
1224
1224
  assignmentReassigned: Scalars['Boolean']['output'];
1225
+ assignmentRenewed: Scalars['Boolean']['output'];
1225
1226
  assignmentSubmitted: Scalars['Boolean']['output'];
1226
1227
  leaveRequestApproved: Scalars['Boolean']['output'];
1227
1228
  leaveRequestCancelled: Scalars['Boolean']['output'];
@@ -2018,6 +2019,7 @@ type MultiLineTextDocumentFieldInput = {
2018
2019
  value: Scalars['String']['input'];
2019
2020
  };
2020
2021
  type Mutation = {
2022
+ acceptInvite: Scalars['Boolean']['output'];
2021
2023
  /** Accepts a login invite. Only the user associated with the login can accept the invite. */
2022
2024
  acceptLogin: Login;
2023
2025
  /** Transitions an integration from 'UNINITIALIZED', 'UNAUTHORIZED' or 'UNCONFIGURED' to 'ACTIVE'. This can only be done by the bot associated with the integration. */
@@ -2044,6 +2046,11 @@ type Mutation = {
2044
2046
  archiveNotes: Array<Note>;
2045
2047
  archiveOrg: Org;
2046
2048
  archivePaperworkType: PaperworkType;
2049
+ archivePerformanceReviewCycle: PerformanceReviewCycle;
2050
+ archivePerformanceReviewReviewee: PerformanceReviewReviewee;
2051
+ archivePerformanceReviewSavedQuestion: PerformanceReviewSavedQuestion;
2052
+ archivePerformanceReviewTemplate: PerformanceReviewTemplate;
2053
+ archivePerformanceReviewTemplateQuestion: PerformanceReviewTemplateQuestion;
2047
2054
  archivePerson: Person;
2048
2055
  archivePosition: Position;
2049
2056
  archiveReviewCycle: ReviewCycle;
@@ -2091,12 +2098,6 @@ type Mutation = {
2091
2098
  * Returns a token for the new session.
2092
2099
  */
2093
2100
  completePasswordReset: Scalars['String']['output'];
2094
- /**
2095
- * Confirms a user's email using OTP that was sent to them. If the password is also provided their password will be set.
2096
- *
2097
- * Returns a token for the new session.
2098
- */
2099
- confirmEmail: Scalars['String']['output'];
2100
2101
  confirmProfile: Person;
2101
2102
  confirmProvider: Scalars['String']['output'];
2102
2103
  createAccount: Account;
@@ -2154,6 +2155,9 @@ type Mutation = {
2154
2155
  createOrg: Org;
2155
2156
  createPaperworkType: PaperworkType;
2156
2157
  createPerformanceReviewCycle: PerformanceReviewCycle;
2158
+ createPerformanceReviewSavedQuestion: PerformanceReviewSavedQuestion;
2159
+ createPerformanceReviewTemplate: PerformanceReviewTemplate;
2160
+ createPerformanceReviewTemplateQuestion: PerformanceReviewTemplateQuestion;
2157
2161
  /** Create a new person. The newly created person will have a 'DRAFT' status. */
2158
2162
  createPerson: Person;
2159
2163
  createPersonConnection: PersonConnection;
@@ -2199,6 +2203,7 @@ type Mutation = {
2199
2203
  denyLeaveRequest: LeaveRequest;
2200
2204
  denyXeroLeaveRequest: LeaveRequest;
2201
2205
  duplicatePaperworkType: Scalars['Boolean']['output'];
2206
+ duplicatePerformanceReviewTemplate: PerformanceReviewTemplate;
2202
2207
  /** Transitions an integration with an 'UNINITIALIZED' status to an 'UNAUTHORIZED' status. */
2203
2208
  initializeIntegration: Integration;
2204
2209
  /**
@@ -2251,6 +2256,7 @@ type Mutation = {
2251
2256
  removeRevieweeFromCycle: Scalars['Boolean']['output'];
2252
2257
  /** Notifies the approver and changes the approvals status to 'REQUESTED'. Only 'DRAFT' approvals can be requested. */
2253
2258
  requestApprovals: Array<Approval>;
2259
+ requestInvite: Scalars['Boolean']['output'];
2254
2260
  /** 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'. */
2255
2261
  requestPasswordReset: Scalars['Boolean']['output'];
2256
2262
  resetXeroAuIntegration: Integration;
@@ -2324,6 +2330,9 @@ type Mutation = {
2324
2330
  updatePerformanceReviewCycle: PerformanceReviewCycle;
2325
2331
  updatePerformanceReviewCycleConfig: PerformanceReviewCycleConfig;
2326
2332
  updatePerformanceReviewCycleReviewee: PerformanceReviewReviewee;
2333
+ updatePerformanceReviewSavedQuestion: PerformanceReviewSavedQuestion;
2334
+ updatePerformanceReviewTemplate: PerformanceReviewTemplate;
2335
+ updatePerformanceReviewTemplateQuestion: PerformanceReviewTemplateQuestion;
2327
2336
  updatePerson: Person;
2328
2337
  updatePersonConnection: PersonConnection;
2329
2338
  updatePersonTags: Array<Tag>;
@@ -2345,6 +2354,10 @@ type Mutation = {
2345
2354
  updateXeroAuIntegration: XeroAuIntegration;
2346
2355
  updateXeroLeaveIntegration: XeroLeaveIntegration;
2347
2356
  };
2357
+ type MutationAcceptInviteArgs = {
2358
+ email: Scalars['String']['input'];
2359
+ otp: Scalars['String']['input'];
2360
+ };
2348
2361
  type MutationAcceptLoginArgs = {
2349
2362
  loginId: Scalars['ID']['input'];
2350
2363
  };
@@ -2414,6 +2427,21 @@ type MutationArchiveOrgArgs = {
2414
2427
  type MutationArchivePaperworkTypeArgs = {
2415
2428
  id: Scalars['ID']['input'];
2416
2429
  };
2430
+ type MutationArchivePerformanceReviewCycleArgs = {
2431
+ id: Scalars['ID']['input'];
2432
+ };
2433
+ type MutationArchivePerformanceReviewRevieweeArgs = {
2434
+ id: Scalars['ID']['input'];
2435
+ };
2436
+ type MutationArchivePerformanceReviewSavedQuestionArgs = {
2437
+ id: Scalars['ID']['input'];
2438
+ };
2439
+ type MutationArchivePerformanceReviewTemplateArgs = {
2440
+ id: Scalars['ID']['input'];
2441
+ };
2442
+ type MutationArchivePerformanceReviewTemplateQuestionArgs = {
2443
+ questionId: Scalars['ID']['input'];
2444
+ };
2417
2445
  type MutationArchivePersonArgs = {
2418
2446
  id: Scalars['ID']['input'];
2419
2447
  };
@@ -2504,11 +2532,6 @@ type MutationCompletePasswordResetArgs = {
2504
2532
  otp: Scalars['String']['input'];
2505
2533
  password: Scalars['String']['input'];
2506
2534
  };
2507
- type MutationConfirmEmailArgs = {
2508
- email: Scalars['String']['input'];
2509
- otp: Scalars['String']['input'];
2510
- password?: InputMaybe<Scalars['String']['input']>;
2511
- };
2512
2535
  type MutationConfirmProfileArgs = {
2513
2536
  id: Scalars['ID']['input'];
2514
2537
  };
@@ -2759,6 +2782,7 @@ type MutationCreateOrgArgs = {
2759
2782
  name: Scalars['String']['input'];
2760
2783
  };
2761
2784
  type MutationCreatePaperworkTypeArgs = {
2785
+ autoAssignOnExpiringSoon: Scalars['Boolean']['input'];
2762
2786
  defaultDueDateWarningDays?: InputMaybe<Scalars['Int']['input']>;
2763
2787
  defaultExpirationWarningDays?: InputMaybe<Scalars['Int']['input']>;
2764
2788
  defaultResponsiblePersonId?: InputMaybe<Scalars['ID']['input']>;
@@ -2767,6 +2791,20 @@ type MutationCreatePaperworkTypeArgs = {
2767
2791
  type MutationCreatePerformanceReviewCycleArgs = {
2768
2792
  name: Scalars['String']['input'];
2769
2793
  };
2794
+ type MutationCreatePerformanceReviewSavedQuestionArgs = {
2795
+ description?: InputMaybe<Scalars['Markdown']['input']>;
2796
+ label: Scalars['String']['input'];
2797
+ options?: InputMaybe<Array<Scalars['String']['input']>>;
2798
+ type: QuestionType;
2799
+ };
2800
+ type MutationCreatePerformanceReviewTemplateArgs = {
2801
+ name: Scalars['String']['input'];
2802
+ };
2803
+ type MutationCreatePerformanceReviewTemplateQuestionArgs = {
2804
+ required?: InputMaybe<Scalars['Boolean']['input']>;
2805
+ savedQuestionId: Scalars['ID']['input'];
2806
+ templateId: Scalars['ID']['input'];
2807
+ };
2770
2808
  type MutationCreatePersonArgs = {
2771
2809
  displayName: Scalars['String']['input'];
2772
2810
  employeeCode?: InputMaybe<Scalars['String']['input']>;
@@ -2971,6 +3009,10 @@ type MutationDuplicatePaperworkTypeArgs = {
2971
3009
  newOrgId: Scalars['ID']['input'];
2972
3010
  originalPaperworkTypeId: Scalars['ID']['input'];
2973
3011
  };
3012
+ type MutationDuplicatePerformanceReviewTemplateArgs = {
3013
+ name: Scalars['String']['input'];
3014
+ templateId: Scalars['ID']['input'];
3015
+ };
2974
3016
  type MutationInitializeIntegrationArgs = {
2975
3017
  integrationId: Scalars['ID']['input'];
2976
3018
  };
@@ -3060,6 +3102,9 @@ type MutationRemoveRevieweeFromCycleArgs = {
3060
3102
  type MutationRequestApprovalsArgs = {
3061
3103
  approvalIds: Array<Scalars['ID']['input']>;
3062
3104
  };
3105
+ type MutationRequestInviteArgs = {
3106
+ email: Scalars['String']['input'];
3107
+ };
3063
3108
  type MutationRequestPasswordResetArgs = {
3064
3109
  email: Scalars['String']['input'];
3065
3110
  };
@@ -3546,6 +3591,7 @@ type MutationUpdatePaperworkAssignmentArgs = {
3546
3591
  templateId?: InputMaybe<Scalars['ID']['input']>;
3547
3592
  };
3548
3593
  type MutationUpdatePaperworkTypeArgs = {
3594
+ autoAssignOnExpiringSoon?: InputMaybe<Scalars['Boolean']['input']>;
3549
3595
  defaultDueDateWarningDays?: InputMaybe<Scalars['Int']['input']>;
3550
3596
  defaultExpirationWarningDays?: InputMaybe<Scalars['Int']['input']>;
3551
3597
  defaultResponsiblePersonId?: InputMaybe<Scalars['ID']['input']>;
@@ -3571,6 +3617,24 @@ type MutationUpdatePerformanceReviewCycleRevieweeArgs = {
3571
3617
  primaryManagerId?: InputMaybe<Scalars['ID']['input']>;
3572
3618
  revieweeId: Scalars['ID']['input'];
3573
3619
  };
3620
+ type MutationUpdatePerformanceReviewSavedQuestionArgs = {
3621
+ description?: InputMaybe<Scalars['Markdown']['input']>;
3622
+ label?: InputMaybe<Scalars['String']['input']>;
3623
+ options?: InputMaybe<Array<Scalars['String']['input']>>;
3624
+ questionId: Scalars['ID']['input'];
3625
+ type?: InputMaybe<QuestionType>;
3626
+ };
3627
+ type MutationUpdatePerformanceReviewTemplateArgs = {
3628
+ id: Scalars['ID']['input'];
3629
+ instructions?: InputMaybe<Scalars['String']['input']>;
3630
+ name?: InputMaybe<Scalars['String']['input']>;
3631
+ questionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
3632
+ };
3633
+ type MutationUpdatePerformanceReviewTemplateQuestionArgs = {
3634
+ questionId: Scalars['ID']['input'];
3635
+ required?: InputMaybe<Scalars['Boolean']['input']>;
3636
+ savedQuestionId?: InputMaybe<Scalars['ID']['input']>;
3637
+ };
3574
3638
  type MutationUpdatePersonArgs = {
3575
3639
  displayName?: InputMaybe<Scalars['String']['input']>;
3576
3640
  emailNotificationSettings?: InputMaybe<EmailNotificationSettingsInput>;
@@ -3748,6 +3812,8 @@ declare enum NotificationType {
3748
3812
  AssignmentOverdue = "ASSIGNMENT_OVERDUE",
3749
3813
  /** Sent to the owner of a assignment when an admin reassigns an assignment. */
3750
3814
  AssignmentReassigned = "ASSIGNMENT_REASSIGNED",
3815
+ /** Sent to the owner of an assignment when it has been renewed. */
3816
+ AssignmentRenewed = "ASSIGNMENT_RENEWED",
3751
3817
  /** Sent to the person responsible for an assignment (i.e. an admin) when it has expired. */
3752
3818
  AssignmentSubmitted = "ASSIGNMENT_SUBMITTED",
3753
3819
  /** Sent to the owner when a leave request is approved. */
@@ -3801,6 +3867,7 @@ type Org = {
3801
3867
  paperworkTypes: Array<PaperworkType>;
3802
3868
  people: Array<Person>;
3803
3869
  performanceReviewCycles: Array<PerformanceReviewCycle>;
3870
+ performanceReviewSavedQuestions: Array<PerformanceReviewSavedQuestion>;
3804
3871
  performanceReviewTemplates: Array<PerformanceReviewTemplate>;
3805
3872
  positions: Array<Position>;
3806
3873
  reviewCycles: Array<ReviewCycle>;
@@ -3834,6 +3901,9 @@ type OrgPeopleArgs = {
3834
3901
  type OrgPerformanceReviewCyclesArgs = {
3835
3902
  includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
3836
3903
  };
3904
+ type OrgPerformanceReviewSavedQuestionsArgs = {
3905
+ includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
3906
+ };
3837
3907
  type OrgPerformanceReviewTemplatesArgs = {
3838
3908
  includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
3839
3909
  };
@@ -4028,6 +4098,7 @@ type PaperworkType = {
4028
4098
  archived: Scalars['Boolean']['output'];
4029
4099
  archivedAt?: Maybe<Scalars['DateTime']['output']>;
4030
4100
  archiver?: Maybe<Person>;
4101
+ autoAssignOnExpiringSoon: Scalars['Boolean']['output'];
4031
4102
  bundledPaperworkTypes: Array<BundledPaperworkType>;
4032
4103
  createdAt: Scalars['DateTime']['output'];
4033
4104
  creator?: Maybe<Person>;
@@ -4133,6 +4204,20 @@ type PerformanceReviewRevieweeInput = {
4133
4204
  personId: Scalars['ID']['input'];
4134
4205
  primaryManagerId?: InputMaybe<Scalars['ID']['input']>;
4135
4206
  };
4207
+ type PerformanceReviewSavedQuestion = {
4208
+ archived: Scalars['Boolean']['output'];
4209
+ archivedAt?: Maybe<Scalars['DateTime']['output']>;
4210
+ archiver?: Maybe<Person>;
4211
+ createdAt: Scalars['DateTime']['output'];
4212
+ creator?: Maybe<Person>;
4213
+ description?: Maybe<Scalars['String']['output']>;
4214
+ id: Scalars['ID']['output'];
4215
+ label: Scalars['String']['output'];
4216
+ options?: Maybe<Array<Scalars['String']['output']>>;
4217
+ org: Org;
4218
+ type: QuestionType;
4219
+ updatedAt: Scalars['DateTime']['output'];
4220
+ };
4136
4221
  declare enum PerformanceReviewStatus {
4137
4222
  Assigned = "ASSIGNED",
4138
4223
  NotProvided = "NOT_PROVIDED",
@@ -4148,8 +4233,22 @@ type PerformanceReviewTemplate = {
4148
4233
  instructions?: Maybe<Scalars['String']['output']>;
4149
4234
  name: Scalars['String']['output'];
4150
4235
  org: Org;
4236
+ templateQuestions: Array<PerformanceReviewTemplateQuestion>;
4151
4237
  updatedAt: Scalars['DateTime']['output'];
4152
4238
  };
4239
+ type PerformanceReviewTemplateTemplateQuestionsArgs = {
4240
+ includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
4241
+ };
4242
+ type PerformanceReviewTemplateQuestion = {
4243
+ archived: Scalars['Boolean']['output'];
4244
+ archivedAt?: Maybe<Scalars['DateTime']['output']>;
4245
+ archiver?: Maybe<Person>;
4246
+ id: Scalars['ID']['output'];
4247
+ orderIndex: Scalars['Int']['output'];
4248
+ required: Scalars['Boolean']['output'];
4249
+ savedQuestion: PerformanceReviewSavedQuestion;
4250
+ template: PerformanceReviewTemplate;
4251
+ };
4153
4252
  declare enum PerformanceReviewType {
4154
4253
  Manager = "MANAGER",
4155
4254
  Self = "SELF"
@@ -4759,7 +4858,10 @@ type Query = {
4759
4858
  note: Note;
4760
4859
  org: Org;
4761
4860
  paperworkType: PaperworkType;
4861
+ performanceReview: PerformanceReview;
4762
4862
  performanceReviewCycle: PerformanceReviewCycle;
4863
+ performanceReviewReviewee: PerformanceReviewReviewee;
4864
+ performanceReviewTemplate: PerformanceReviewTemplate;
4763
4865
  person?: Maybe<Person>;
4764
4866
  personConnection: PersonConnection;
4765
4867
  position: Position;
@@ -4855,9 +4957,18 @@ type QueryOrgArgs = {
4855
4957
  type QueryPaperworkTypeArgs = {
4856
4958
  id: Scalars['ID']['input'];
4857
4959
  };
4960
+ type QueryPerformanceReviewArgs = {
4961
+ id: Scalars['ID']['input'];
4962
+ };
4858
4963
  type QueryPerformanceReviewCycleArgs = {
4859
4964
  id: Scalars['ID']['input'];
4860
4965
  };
4966
+ type QueryPerformanceReviewRevieweeArgs = {
4967
+ id: Scalars['ID']['input'];
4968
+ };
4969
+ type QueryPerformanceReviewTemplateArgs = {
4970
+ id: Scalars['ID']['input'];
4971
+ };
4861
4972
  type QueryPersonArgs = {
4862
4973
  id: Scalars['ID']['input'];
4863
4974
  };
@@ -6597,4 +6708,4 @@ type UpdatePersonConnectionMutation = {
6597
6708
  };
6598
6709
  };
6599
6710
 
6600
- 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 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, PerformanceReviewStatus, 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 };
6711
+ 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 MutationAcceptInviteArgs, 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 MutationArchivePerformanceReviewCycleArgs, type MutationArchivePerformanceReviewRevieweeArgs, type MutationArchivePerformanceReviewSavedQuestionArgs, type MutationArchivePerformanceReviewTemplateArgs, type MutationArchivePerformanceReviewTemplateQuestionArgs, 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 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 MutationCreatePerformanceReviewSavedQuestionArgs, type MutationCreatePerformanceReviewTemplateArgs, type MutationCreatePerformanceReviewTemplateQuestionArgs, 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 MutationDuplicatePerformanceReviewTemplateArgs, 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 MutationRequestInviteArgs, 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 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 MutationUpdatePerformanceReviewSavedQuestionArgs, type MutationUpdatePerformanceReviewTemplateArgs, type MutationUpdatePerformanceReviewTemplateQuestionArgs, 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 OrgPerformanceReviewSavedQuestionsArgs, 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 PerformanceReviewSavedQuestion, PerformanceReviewStatus, type PerformanceReviewTemplate, type PerformanceReviewTemplateQuestion, type PerformanceReviewTemplateTemplateQuestionsArgs, 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 QueryPerformanceReviewArgs, type QueryPerformanceReviewCycleArgs, type QueryPerformanceReviewRevieweeArgs, type QueryPerformanceReviewTemplateArgs, 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 };
@@ -209,6 +209,7 @@ var NotificationType = /* @__PURE__ */ ((NotificationType2) => {
209
209
  NotificationType2["AssignmentFailed"] = "ASSIGNMENT_FAILED";
210
210
  NotificationType2["AssignmentOverdue"] = "ASSIGNMENT_OVERDUE";
211
211
  NotificationType2["AssignmentReassigned"] = "ASSIGNMENT_REASSIGNED";
212
+ NotificationType2["AssignmentRenewed"] = "ASSIGNMENT_RENEWED";
212
213
  NotificationType2["AssignmentSubmitted"] = "ASSIGNMENT_SUBMITTED";
213
214
  NotificationType2["LeaveRequestApproved"] = "LEAVE_REQUEST_APPROVED";
214
215
  NotificationType2["LeaveRequestCancelled"] = "LEAVE_REQUEST_CANCELLED";