@worknice/js-sdk 0.13.51 → 0.13.52

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.
@@ -230,6 +230,8 @@ type Assignment = {
230
230
  createdAt: Scalars['DateTime']['output'];
231
231
  creator?: Maybe<Person>;
232
232
  dueDate?: Maybe<Scalars['Date']['output']>;
233
+ dueDateStatus?: Maybe<DueDateStatus>;
234
+ dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
233
235
  expirationDate?: Maybe<Scalars['Date']['output']>;
234
236
  expirationWarningDays?: Maybe<Scalars['Int']['output']>;
235
237
  expiryStatus: ExpiryStatus;
@@ -321,6 +323,8 @@ type BasicAbnForm = Assignment & PaperworkAssignment & {
321
323
  createdAt: Scalars['DateTime']['output'];
322
324
  creator?: Maybe<Person>;
323
325
  dueDate?: Maybe<Scalars['Date']['output']>;
326
+ dueDateStatus?: Maybe<DueDateStatus>;
327
+ dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
324
328
  expirationDate?: Maybe<Scalars['Date']['output']>;
325
329
  expirationWarningDays?: Maybe<Scalars['Int']['output']>;
326
330
  expiryStatus: ExpiryStatus;
@@ -400,6 +404,8 @@ type BasicBankAccountForm = Assignment & PaperworkAssignment & PersonBankAccount
400
404
  createdAt: Scalars['DateTime']['output'];
401
405
  creator?: Maybe<Person>;
402
406
  dueDate?: Maybe<Scalars['Date']['output']>;
407
+ dueDateStatus?: Maybe<DueDateStatus>;
408
+ dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
403
409
  expirationDate?: Maybe<Scalars['Date']['output']>;
404
410
  expirationWarningDays?: Maybe<Scalars['Int']['output']>;
405
411
  expiryStatus: ExpiryStatus;
@@ -468,6 +474,8 @@ type BasicEmergencyContactForm = Assignment & PaperworkAssignment & PersonChange
468
474
  createdAt: Scalars['DateTime']['output'];
469
475
  creator?: Maybe<Person>;
470
476
  dueDate?: Maybe<Scalars['Date']['output']>;
477
+ dueDateStatus?: Maybe<DueDateStatus>;
478
+ dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
471
479
  emailPresence: FieldPresence;
472
480
  emergencyContact1AddressCity?: Maybe<Scalars['String']['output']>;
473
481
  emergencyContact1AddressCountry?: Maybe<Scalars['String']['output']>;
@@ -541,6 +549,8 @@ type BasicPersonalDetailsForm = Assignment & PaperworkAssignment & PersonChange
541
549
  creator?: Maybe<Person>;
542
550
  dateOfBirth?: Maybe<Scalars['Date']['output']>;
543
551
  dueDate?: Maybe<Scalars['Date']['output']>;
552
+ dueDateStatus?: Maybe<DueDateStatus>;
553
+ dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
544
554
  email?: Maybe<Scalars['String']['output']>;
545
555
  expirationDate?: Maybe<Scalars['Date']['output']>;
546
556
  expirationWarningDays?: Maybe<Scalars['Int']['output']>;
@@ -615,6 +625,8 @@ type BasicPreEmploymentForm = Assignment & PaperworkAssignment & {
615
625
  createdAt: Scalars['DateTime']['output'];
616
626
  creator?: Maybe<Person>;
617
627
  dueDate?: Maybe<Scalars['Date']['output']>;
628
+ dueDateStatus?: Maybe<DueDateStatus>;
629
+ dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
618
630
  existingHealthConditions?: Maybe<Scalars['Boolean']['output']>;
619
631
  existingHealthConditionsExplanation?: Maybe<Scalars['String']['output']>;
620
632
  existingHealthConditionsPresence: Scalars['Boolean']['output'];
@@ -675,6 +687,8 @@ type BasicSuperForm = Assignment & PaperworkAssignment & PersonChange & PersonSu
675
687
  createdAt: Scalars['DateTime']['output'];
676
688
  creator?: Maybe<Person>;
677
689
  dueDate?: Maybe<Scalars['Date']['output']>;
690
+ dueDateStatus?: Maybe<DueDateStatus>;
691
+ dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
678
692
  expirationDate?: Maybe<Scalars['Date']['output']>;
679
693
  expirationWarningDays?: Maybe<Scalars['Int']['output']>;
680
694
  expiryStatus: ExpiryStatus;
@@ -754,6 +768,8 @@ type BasicTaxForm = Assignment & PaperworkAssignment & PersonChange & PersonTaxD
754
768
  creator?: Maybe<Person>;
755
769
  dateOfBirth?: Maybe<Scalars['Date']['output']>;
756
770
  dueDate?: Maybe<Scalars['Date']['output']>;
771
+ dueDateStatus?: Maybe<DueDateStatus>;
772
+ dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
757
773
  email?: Maybe<Scalars['String']['output']>;
758
774
  employmentBasis?: Maybe<TaxEmploymentBasis>;
759
775
  expirationDate?: Maybe<Scalars['Date']['output']>;
@@ -867,6 +883,8 @@ type Certificate = Assignment & PaperworkAssignment & {
867
883
  documentExpirationDate?: Maybe<Scalars['Date']['output']>;
868
884
  documentNumber?: Maybe<Scalars['String']['output']>;
869
885
  dueDate?: Maybe<Scalars['Date']['output']>;
886
+ dueDateStatus?: Maybe<DueDateStatus>;
887
+ dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
870
888
  expirationDate?: Maybe<Scalars['Date']['output']>;
871
889
  expirationDatePresence: FieldPresence;
872
890
  expirationWarningDays?: Maybe<Scalars['Int']['output']>;
@@ -1112,6 +1130,8 @@ type Document = Assignment & PaperworkAssignment & {
1112
1130
  /** @deprecated Use the 'template' field instead. */
1113
1131
  documentTemplate?: Maybe<DocumentTemplate>;
1114
1132
  dueDate?: Maybe<Scalars['Date']['output']>;
1133
+ dueDateStatus?: Maybe<DueDateStatus>;
1134
+ dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
1115
1135
  expirationDate?: Maybe<Scalars['Date']['output']>;
1116
1136
  expirationWarningDays?: Maybe<Scalars['Int']['output']>;
1117
1137
  expiryStatus: ExpiryStatus;
@@ -1184,6 +1204,14 @@ type DocumentTemplate = PaperworkTemplate & Template & {
1184
1204
  /** The signed URL where this document template can be accessed. The signed URL will only be accessible for 1 hour following the request. Every request generates a new URL. */
1185
1205
  url: Scalars['String']['output'];
1186
1206
  };
1207
+ declare enum DueDateStatus {
1208
+ /** Due date is within the next `dueDateWarningDays` days. */
1209
+ DueSoon = "DUE_SOON",
1210
+ /** No due date set, or due date is beyond the warning threshold. */
1211
+ NotDue = "NOT_DUE",
1212
+ /** Due date has passed. */
1213
+ Overdue = "OVERDUE"
1214
+ }
1187
1215
  type EmailNotificationSettings = {
1188
1216
  approvalRequested: Scalars['Boolean']['output'];
1189
1217
  assignmentApproved: Scalars['Boolean']['output'];
@@ -1627,6 +1655,8 @@ type KeypayEmployeeForm = Assignment & PaperworkAssignment & PersonBankAccountsC
1627
1655
  creator?: Maybe<Person>;
1628
1656
  dateOfBirth?: Maybe<Scalars['Date']['output']>;
1629
1657
  dueDate?: Maybe<Scalars['Date']['output']>;
1658
+ dueDateStatus?: Maybe<DueDateStatus>;
1659
+ dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
1630
1660
  emailAddress?: Maybe<Scalars['String']['output']>;
1631
1661
  emailAddressPresence: FieldPresence;
1632
1662
  emergencyContact1Address?: Maybe<Scalars['String']['output']>;
@@ -2693,6 +2723,7 @@ type MutationCreateOrgArgs = {
2693
2723
  name: Scalars['String']['input'];
2694
2724
  };
2695
2725
  type MutationCreatePaperworkTypeArgs = {
2726
+ defaultDueDateWarningDays?: InputMaybe<Scalars['Int']['input']>;
2696
2727
  defaultExpirationWarningDays?: InputMaybe<Scalars['Int']['input']>;
2697
2728
  defaultResponsiblePersonId?: InputMaybe<Scalars['ID']['input']>;
2698
2729
  name: Scalars['String']['input'];
@@ -3285,6 +3316,7 @@ type MutationUpdateAccountArgs = {
3285
3316
  type MutationUpdateAssignmentArgs = {
3286
3317
  approverIds?: InputMaybe<Array<Scalars['ID']['input']>>;
3287
3318
  dueDate?: InputMaybe<Scalars['Date']['input']>;
3319
+ dueDateWarningDays?: InputMaybe<Scalars['Int']['input']>;
3288
3320
  expirationDate?: InputMaybe<Scalars['Date']['input']>;
3289
3321
  expirationWarningDays?: InputMaybe<Scalars['Int']['input']>;
3290
3322
  id: Scalars['ID']['input'];
@@ -3298,6 +3330,7 @@ type MutationUpdateAssignmentsArgs = {
3298
3330
  approverIds?: InputMaybe<Array<Scalars['ID']['input']>>;
3299
3331
  assignmentIds: Array<Scalars['ID']['input']>;
3300
3332
  dueDate?: InputMaybe<Scalars['Date']['input']>;
3333
+ dueDateWarningDays?: InputMaybe<Scalars['Int']['input']>;
3301
3334
  expirationDate?: InputMaybe<Scalars['Date']['input']>;
3302
3335
  expirationWarningDays?: InputMaybe<Scalars['Int']['input']>;
3303
3336
  name?: InputMaybe<Scalars['String']['input']>;
@@ -3474,6 +3507,7 @@ type MutationUpdatePaperworkAssignmentArgs = {
3474
3507
  templateId?: InputMaybe<Scalars['ID']['input']>;
3475
3508
  };
3476
3509
  type MutationUpdatePaperworkTypeArgs = {
3510
+ defaultDueDateWarningDays?: InputMaybe<Scalars['Int']['input']>;
3477
3511
  defaultExpirationWarningDays?: InputMaybe<Scalars['Int']['input']>;
3478
3512
  defaultResponsiblePersonId?: InputMaybe<Scalars['ID']['input']>;
3479
3513
  id: Scalars['ID']['input'];
@@ -3490,7 +3524,9 @@ type MutationUpdatePerformanceReviewCycleConfigArgs = {
3490
3524
  isSelfReviewIncluded?: InputMaybe<Scalars['Boolean']['input']>;
3491
3525
  isSelfReviewVisibleToManager?: InputMaybe<Scalars['Boolean']['input']>;
3492
3526
  managerReviewDueDate?: InputMaybe<Scalars['Date']['input']>;
3527
+ managerReviewTemplateId?: InputMaybe<Scalars['ID']['input']>;
3493
3528
  selfReviewDueDate?: InputMaybe<Scalars['Date']['input']>;
3529
+ selfReviewTemplateId?: InputMaybe<Scalars['ID']['input']>;
3494
3530
  };
3495
3531
  type MutationUpdatePersonArgs = {
3496
3532
  displayName?: InputMaybe<Scalars['String']['input']>;
@@ -3704,6 +3740,7 @@ type Org = {
3704
3740
  paperworkTypes: Array<PaperworkType>;
3705
3741
  people: Array<Person>;
3706
3742
  performanceReviewCycles: Array<PerformanceReviewCycle>;
3743
+ performanceReviewTemplates: Array<PerformanceReviewTemplate>;
3707
3744
  positions: Array<Position>;
3708
3745
  reviewCycles: Array<ReviewCycle>;
3709
3746
  savedQuestions: Array<SavedQuestion>;
@@ -3736,6 +3773,9 @@ type OrgPeopleArgs = {
3736
3773
  type OrgPerformanceReviewCyclesArgs = {
3737
3774
  includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
3738
3775
  };
3776
+ type OrgPerformanceReviewTemplatesArgs = {
3777
+ includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
3778
+ };
3739
3779
  type OrgPositionsArgs = {
3740
3780
  includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
3741
3781
  };
@@ -3774,6 +3814,8 @@ type PaperworkAssignment = {
3774
3814
  createdAt: Scalars['DateTime']['output'];
3775
3815
  creator?: Maybe<Person>;
3776
3816
  dueDate?: Maybe<Scalars['Date']['output']>;
3817
+ dueDateStatus?: Maybe<DueDateStatus>;
3818
+ dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
3777
3819
  expirationDate?: Maybe<Scalars['Date']['output']>;
3778
3820
  expirationWarningDays?: Maybe<Scalars['Int']['output']>;
3779
3821
  expiryStatus: ExpiryStatus;
@@ -3857,12 +3899,11 @@ type PaperworkSummary = {
3857
3899
  *
3858
3900
  * 2. If the status of _latest assignment_ is `ASSIGNED`:
3859
3901
  *
3860
- * 1. If the current date is after the due date of _latest assignment_:
3902
+ * 1. If the due date status of _latest assignment_ is `OVERDUE`:
3861
3903
  *
3862
3904
  * 1. Return `OVERDUE`.
3863
3905
  *
3864
- * 2. If the current date is after the due date of _latest assignment_
3865
- * minus 14 days:
3906
+ * 2. If the due date status of _latest assignment_ is `DUE_SOON`:
3866
3907
  *
3867
3908
  * 1. Return `DUE_SOON`.
3868
3909
  * 3. Return `ASSIGNED`.
@@ -3929,6 +3970,7 @@ type PaperworkType = {
3929
3970
  bundledPaperworkTypes: Array<BundledPaperworkType>;
3930
3971
  createdAt: Scalars['DateTime']['output'];
3931
3972
  creator?: Maybe<Person>;
3973
+ defaultDueDateWarningDays?: Maybe<Scalars['Int']['output']>;
3932
3974
  defaultExpirationWarningDays?: Maybe<Scalars['Int']['output']>;
3933
3975
  defaultResponsiblePerson?: Maybe<Person>;
3934
3976
  id: Scalars['ID']['output'];
@@ -3973,8 +4015,10 @@ type PerformanceReviewCycleConfig = {
3973
4015
  isSelfReviewIncluded: Scalars['Boolean']['output'];
3974
4016
  isSelfReviewVisibleToManager: Scalars['Boolean']['output'];
3975
4017
  managerReviewDueDate?: Maybe<Scalars['Date']['output']>;
4018
+ managerReviewTemplate?: Maybe<PerformanceReviewTemplate>;
3976
4019
  scheduledStartDate?: Maybe<Scalars['Date']['output']>;
3977
4020
  selfReviewDueDate?: Maybe<Scalars['Date']['output']>;
4021
+ selfReviewTemplate?: Maybe<PerformanceReviewTemplate>;
3978
4022
  updatedAt: Scalars['DateTime']['output'];
3979
4023
  };
3980
4024
  declare enum PerformanceReviewCycleStatus {
@@ -3982,6 +4026,18 @@ declare enum PerformanceReviewCycleStatus {
3982
4026
  Draft = "DRAFT",
3983
4027
  InProgress = "IN_PROGRESS"
3984
4028
  }
4029
+ type PerformanceReviewTemplate = {
4030
+ archived: Scalars['Boolean']['output'];
4031
+ archivedAt?: Maybe<Scalars['DateTime']['output']>;
4032
+ archiver?: Maybe<Person>;
4033
+ createdAt: Scalars['DateTime']['output'];
4034
+ creator?: Maybe<Person>;
4035
+ id: Scalars['ID']['output'];
4036
+ instructions?: Maybe<Scalars['String']['output']>;
4037
+ name: Scalars['String']['output'];
4038
+ org: Org;
4039
+ updatedAt: Scalars['DateTime']['output'];
4040
+ };
3985
4041
  type Person = {
3986
4042
  /** When this person was first activated (transitioned from `ONBOARDING` to `ACTIVE`). */
3987
4043
  activatedAt?: Maybe<Scalars['DateTime']['output']>;
@@ -4845,6 +4901,8 @@ type Questionnaire = Assignment & PaperworkAssignment & {
4845
4901
  createdAt: Scalars['DateTime']['output'];
4846
4902
  creator?: Maybe<Person>;
4847
4903
  dueDate?: Maybe<Scalars['Date']['output']>;
4904
+ dueDateStatus?: Maybe<DueDateStatus>;
4905
+ dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
4848
4906
  expirationDate?: Maybe<Scalars['Date']['output']>;
4849
4907
  expirationWarningDays?: Maybe<Scalars['Int']['output']>;
4850
4908
  expiryStatus: ExpiryStatus;
@@ -5087,6 +5145,8 @@ type StandardReview = Assignment & {
5087
5145
  /** The time when the review takes place. */
5088
5146
  date?: Maybe<Scalars['DateTime']['output']>;
5089
5147
  dueDate?: Maybe<Scalars['Date']['output']>;
5148
+ dueDateStatus?: Maybe<DueDateStatus>;
5149
+ dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
5090
5150
  expirationDate?: Maybe<Scalars['Date']['output']>;
5091
5151
  expirationWarningDays?: Maybe<Scalars['Int']['output']>;
5092
5152
  expiryStatus: ExpiryStatus;
@@ -5233,6 +5293,8 @@ type Task = Assignment & {
5233
5293
  creator?: Maybe<Person>;
5234
5294
  description?: Maybe<Scalars['String']['output']>;
5235
5295
  dueDate?: Maybe<Scalars['Date']['output']>;
5296
+ dueDateStatus?: Maybe<DueDateStatus>;
5297
+ dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
5236
5298
  expirationDate?: Maybe<Scalars['Date']['output']>;
5237
5299
  expirationWarningDays?: Maybe<Scalars['Int']['output']>;
5238
5300
  expiryStatus: ExpiryStatus;
@@ -6409,4 +6471,4 @@ type UpdatePersonConnectionMutation = {
6409
6471
  };
6410
6472
  };
6411
6473
 
6412
- 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, 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 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 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 };
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 };
@@ -101,6 +101,12 @@ var DocumentFieldResponder = /* @__PURE__ */ ((DocumentFieldResponder2) => {
101
101
  DocumentFieldResponder2["Submitter"] = "SUBMITTER";
102
102
  return DocumentFieldResponder2;
103
103
  })(DocumentFieldResponder || {});
104
+ var DueDateStatus = /* @__PURE__ */ ((DueDateStatus2) => {
105
+ DueDateStatus2["DueSoon"] = "DUE_SOON";
106
+ DueDateStatus2["NotDue"] = "NOT_DUE";
107
+ DueDateStatus2["Overdue"] = "OVERDUE";
108
+ return DueDateStatus2;
109
+ })(DueDateStatus || {});
104
110
  var ExpiryStatus = /* @__PURE__ */ ((ExpiryStatus2) => {
105
111
  ExpiryStatus2["Current"] = "CURRENT";
106
112
  ExpiryStatus2["Expired"] = "EXPIRED";
@@ -381,6 +387,7 @@ export {
381
387
  ConnectionStatus,
382
388
  DataExportType,
383
389
  DocumentFieldResponder,
390
+ DueDateStatus,
384
391
  ExpiryStatus,
385
392
  FieldPresence,
386
393
  FileProcessingStatus,