@worknice/js-sdk 0.14.0 → 0.15.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.
- package/dist/api/_generated.d.ts +19 -21
- package/dist/api/_generated.js +1 -1
- package/dist/api/_generated.js.map +1 -1
- package/dist/api/_types.d.ts +1 -1
- package/package.json +2 -2
package/dist/api/_generated.d.ts
CHANGED
|
@@ -1221,7 +1221,7 @@ type EmailNotificationSettings = {
|
|
|
1221
1221
|
assignmentExpiringSoon: Scalars['Boolean']['output'];
|
|
1222
1222
|
assignmentFailed: Scalars['Boolean']['output'];
|
|
1223
1223
|
assignmentOverdue: Scalars['Boolean']['output'];
|
|
1224
|
-
|
|
1224
|
+
assignmentRejected: Scalars['Boolean']['output'];
|
|
1225
1225
|
assignmentRenewed: Scalars['Boolean']['output'];
|
|
1226
1226
|
assignmentSubmitted: Scalars['Boolean']['output'];
|
|
1227
1227
|
leaveRequestApproved: Scalars['Boolean']['output'];
|
|
@@ -2239,17 +2239,16 @@ type Mutation = {
|
|
|
2239
2239
|
processAssignments: Array<Assignment>;
|
|
2240
2240
|
processLeaveRequest: LeaveRequest;
|
|
2241
2241
|
processStandardReview: StandardReview;
|
|
2242
|
-
/** Transitions an assignment back from 'SUBMITTED' to 'ASSIGNED'. */
|
|
2243
|
-
reassignAssignment: Assignment;
|
|
2244
|
-
/** Transitions a certificate back from 'SUBMITTED' to 'ASSIGNED'. */
|
|
2245
|
-
reassignCertificate: Certificate;
|
|
2246
|
-
reassignTask: Task;
|
|
2247
2242
|
/** An invite can only be sent to a person with an 'ONBOARDING' or 'ACTIVE' status. */
|
|
2248
2243
|
reinviteLogin: Login;
|
|
2249
2244
|
/** People can only be reinvited if they have a status of 'ONBOARDING', have at least one login and haven't already accepted any of their logins. */
|
|
2250
2245
|
reinvitePeople: Array<Person>;
|
|
2251
2246
|
/** A person can only be reinvited if they have a status of 'ONBOARDING', have at least one login and haven't already accepted any of their logins. */
|
|
2252
2247
|
reinvitePerson: Person;
|
|
2248
|
+
/** Transitions an assignment back from 'SUBMITTED' to 'ASSIGNED'. */
|
|
2249
|
+
rejectAssignment: Assignment;
|
|
2250
|
+
/** Transitions a certificate back from 'SUBMITTED' to 'ASSIGNED'. */
|
|
2251
|
+
rejectCertificate: Certificate;
|
|
2253
2252
|
removePaperworkTypeFromBundles: Array<Bundle>;
|
|
2254
2253
|
removePeopleFromBundles: Array<Bundle>;
|
|
2255
2254
|
removePeopleFromTags: Array<Tag>;
|
|
@@ -2783,6 +2782,7 @@ type MutationCreateOrgArgs = {
|
|
|
2783
2782
|
};
|
|
2784
2783
|
type MutationCreatePaperworkTypeArgs = {
|
|
2785
2784
|
autoAssignOnExpiringSoon: Scalars['Boolean']['input'];
|
|
2785
|
+
autoProcessSubmittedPaperwork: Scalars['Boolean']['input'];
|
|
2786
2786
|
defaultDueDateWarningDays?: InputMaybe<Scalars['Int']['input']>;
|
|
2787
2787
|
defaultExpirationWarningDays?: InputMaybe<Scalars['Int']['input']>;
|
|
2788
2788
|
defaultResponsiblePersonId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -3062,18 +3062,6 @@ type MutationProcessLeaveRequestArgs = {
|
|
|
3062
3062
|
type MutationProcessStandardReviewArgs = {
|
|
3063
3063
|
reviewId: Scalars['ID']['input'];
|
|
3064
3064
|
};
|
|
3065
|
-
type MutationReassignAssignmentArgs = {
|
|
3066
|
-
id: Scalars['ID']['input'];
|
|
3067
|
-
notifyOwner?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3068
|
-
};
|
|
3069
|
-
type MutationReassignCertificateArgs = {
|
|
3070
|
-
id: Scalars['ID']['input'];
|
|
3071
|
-
notifyOwner?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3072
|
-
};
|
|
3073
|
-
type MutationReassignTaskArgs = {
|
|
3074
|
-
id: Scalars['ID']['input'];
|
|
3075
|
-
notifyOwner?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3076
|
-
};
|
|
3077
3065
|
type MutationReinviteLoginArgs = {
|
|
3078
3066
|
loginId: Scalars['ID']['input'];
|
|
3079
3067
|
};
|
|
@@ -3083,6 +3071,14 @@ type MutationReinvitePeopleArgs = {
|
|
|
3083
3071
|
type MutationReinvitePersonArgs = {
|
|
3084
3072
|
personId: Scalars['ID']['input'];
|
|
3085
3073
|
};
|
|
3074
|
+
type MutationRejectAssignmentArgs = {
|
|
3075
|
+
id: Scalars['ID']['input'];
|
|
3076
|
+
notifyOwner?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3077
|
+
};
|
|
3078
|
+
type MutationRejectCertificateArgs = {
|
|
3079
|
+
id: Scalars['ID']['input'];
|
|
3080
|
+
notifyOwner?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3081
|
+
};
|
|
3086
3082
|
type MutationRemovePaperworkTypeFromBundlesArgs = {
|
|
3087
3083
|
bundleIds: Array<Scalars['ID']['input']>;
|
|
3088
3084
|
paperworkTypeId: Scalars['ID']['input'];
|
|
@@ -3592,6 +3588,7 @@ type MutationUpdatePaperworkAssignmentArgs = {
|
|
|
3592
3588
|
};
|
|
3593
3589
|
type MutationUpdatePaperworkTypeArgs = {
|
|
3594
3590
|
autoAssignOnExpiringSoon?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3591
|
+
autoProcessSubmittedPaperwork?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3595
3592
|
defaultDueDateWarningDays?: InputMaybe<Scalars['Int']['input']>;
|
|
3596
3593
|
defaultExpirationWarningDays?: InputMaybe<Scalars['Int']['input']>;
|
|
3597
3594
|
defaultResponsiblePersonId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -3810,8 +3807,8 @@ declare enum NotificationType {
|
|
|
3810
3807
|
AssignmentFailed = "ASSIGNMENT_FAILED",
|
|
3811
3808
|
/** Sent to the owner of an assignment when it is overdue. */
|
|
3812
3809
|
AssignmentOverdue = "ASSIGNMENT_OVERDUE",
|
|
3813
|
-
/** Sent to the owner of a assignment when an admin
|
|
3814
|
-
|
|
3810
|
+
/** Sent to the owner of a assignment when an admin rejects an assignment. */
|
|
3811
|
+
AssignmentRejected = "ASSIGNMENT_REJECTED",
|
|
3815
3812
|
/** Sent to the owner of an assignment when it has been renewed. */
|
|
3816
3813
|
AssignmentRenewed = "ASSIGNMENT_RENEWED",
|
|
3817
3814
|
/** Sent to the person responsible for an assignment (i.e. an admin) when it has expired. */
|
|
@@ -4099,6 +4096,7 @@ type PaperworkType = {
|
|
|
4099
4096
|
archivedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4100
4097
|
archiver?: Maybe<Person>;
|
|
4101
4098
|
autoAssignOnExpiringSoon: Scalars['Boolean']['output'];
|
|
4099
|
+
autoProcessSubmittedPaperwork: Scalars['Boolean']['output'];
|
|
4102
4100
|
bundledPaperworkTypes: Array<BundledPaperworkType>;
|
|
4103
4101
|
createdAt: Scalars['DateTime']['output'];
|
|
4104
4102
|
creator?: Maybe<Person>;
|
|
@@ -6708,4 +6706,4 @@ type UpdatePersonConnectionMutation = {
|
|
|
6708
6706
|
};
|
|
6709
6707
|
};
|
|
6710
6708
|
|
|
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 };
|
|
6709
|
+
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 MutationReinviteLoginArgs, type MutationReinvitePeopleArgs, type MutationReinvitePersonArgs, type MutationRejectAssignmentArgs, type MutationRejectCertificateArgs, 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 };
|
package/dist/api/_generated.js
CHANGED
|
@@ -208,7 +208,7 @@ var NotificationType = /* @__PURE__ */ ((NotificationType2) => {
|
|
|
208
208
|
NotificationType2["AssignmentExpiringSoon"] = "ASSIGNMENT_EXPIRING_SOON";
|
|
209
209
|
NotificationType2["AssignmentFailed"] = "ASSIGNMENT_FAILED";
|
|
210
210
|
NotificationType2["AssignmentOverdue"] = "ASSIGNMENT_OVERDUE";
|
|
211
|
-
NotificationType2["
|
|
211
|
+
NotificationType2["AssignmentRejected"] = "ASSIGNMENT_REJECTED";
|
|
212
212
|
NotificationType2["AssignmentRenewed"] = "ASSIGNMENT_RENEWED";
|
|
213
213
|
NotificationType2["AssignmentSubmitted"] = "ASSIGNMENT_SUBMITTED";
|
|
214
214
|
NotificationType2["LeaveRequestApproved"] = "LEAVE_REQUEST_APPROVED";
|