@worknice/js-sdk 0.14.0 → 0.16.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 +66 -26
- package/dist/api/_generated.js +10 -2
- 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
|
@@ -1222,7 +1222,7 @@ type EmailNotificationSettings = {
|
|
|
1222
1222
|
assignmentFailed: Scalars['Boolean']['output'];
|
|
1223
1223
|
assignmentOverdue: Scalars['Boolean']['output'];
|
|
1224
1224
|
assignmentReassigned: Scalars['Boolean']['output'];
|
|
1225
|
-
|
|
1225
|
+
assignmentRejected: Scalars['Boolean']['output'];
|
|
1226
1226
|
assignmentSubmitted: Scalars['Boolean']['output'];
|
|
1227
1227
|
leaveRequestApproved: Scalars['Boolean']['output'];
|
|
1228
1228
|
leaveRequestCancelled: Scalars['Boolean']['output'];
|
|
@@ -2098,6 +2098,7 @@ type Mutation = {
|
|
|
2098
2098
|
* Returns a token for the new session.
|
|
2099
2099
|
*/
|
|
2100
2100
|
completePasswordReset: Scalars['String']['output'];
|
|
2101
|
+
completePerformanceReviewCycle: PerformanceReviewCycle;
|
|
2101
2102
|
confirmProfile: Person;
|
|
2102
2103
|
confirmProvider: Scalars['String']['output'];
|
|
2103
2104
|
createAccount: Account;
|
|
@@ -2239,17 +2240,16 @@ type Mutation = {
|
|
|
2239
2240
|
processAssignments: Array<Assignment>;
|
|
2240
2241
|
processLeaveRequest: LeaveRequest;
|
|
2241
2242
|
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
2243
|
/** An invite can only be sent to a person with an 'ONBOARDING' or 'ACTIVE' status. */
|
|
2248
2244
|
reinviteLogin: Login;
|
|
2249
2245
|
/** 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
2246
|
reinvitePeople: Array<Person>;
|
|
2251
2247
|
/** 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
2248
|
reinvitePerson: Person;
|
|
2249
|
+
/** Transitions an assignment back from 'SUBMITTED' to 'ASSIGNED'. */
|
|
2250
|
+
rejectAssignment: Assignment;
|
|
2251
|
+
/** Transitions a certificate back from 'SUBMITTED' to 'ASSIGNED'. */
|
|
2252
|
+
rejectCertificate: Certificate;
|
|
2253
2253
|
removePaperworkTypeFromBundles: Array<Bundle>;
|
|
2254
2254
|
removePeopleFromBundles: Array<Bundle>;
|
|
2255
2255
|
removePeopleFromTags: Array<Tag>;
|
|
@@ -2275,6 +2275,7 @@ type Mutation = {
|
|
|
2275
2275
|
scheduleStandardReview: StandardReview;
|
|
2276
2276
|
/** Switches the current user to the given person. The new person must be associated with the current user. If no ID is provided, the user will have no active person set. */
|
|
2277
2277
|
setActiveLogin?: Maybe<Login>;
|
|
2278
|
+
sharePerformanceReviewReviewee: PerformanceReviewReviewee;
|
|
2278
2279
|
submitBasicAbnForm: BasicAbnForm;
|
|
2279
2280
|
submitBasicBankAccountForm: BasicBankAccountForm;
|
|
2280
2281
|
submitBasicEmergencyContactForm: BasicEmergencyContactForm;
|
|
@@ -2532,6 +2533,9 @@ type MutationCompletePasswordResetArgs = {
|
|
|
2532
2533
|
otp: Scalars['String']['input'];
|
|
2533
2534
|
password: Scalars['String']['input'];
|
|
2534
2535
|
};
|
|
2536
|
+
type MutationCompletePerformanceReviewCycleArgs = {
|
|
2537
|
+
id: Scalars['ID']['input'];
|
|
2538
|
+
};
|
|
2535
2539
|
type MutationConfirmProfileArgs = {
|
|
2536
2540
|
id: Scalars['ID']['input'];
|
|
2537
2541
|
};
|
|
@@ -2782,7 +2786,8 @@ type MutationCreateOrgArgs = {
|
|
|
2782
2786
|
name: Scalars['String']['input'];
|
|
2783
2787
|
};
|
|
2784
2788
|
type MutationCreatePaperworkTypeArgs = {
|
|
2785
|
-
|
|
2789
|
+
autoProcessSubmittedPaperwork: Scalars['Boolean']['input'];
|
|
2790
|
+
autoReassignMode: PaperworkTypeAutoReassignMode;
|
|
2786
2791
|
defaultDueDateWarningDays?: InputMaybe<Scalars['Int']['input']>;
|
|
2787
2792
|
defaultExpirationWarningDays?: InputMaybe<Scalars['Int']['input']>;
|
|
2788
2793
|
defaultResponsiblePersonId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -3062,18 +3067,6 @@ type MutationProcessLeaveRequestArgs = {
|
|
|
3062
3067
|
type MutationProcessStandardReviewArgs = {
|
|
3063
3068
|
reviewId: Scalars['ID']['input'];
|
|
3064
3069
|
};
|
|
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
3070
|
type MutationReinviteLoginArgs = {
|
|
3078
3071
|
loginId: Scalars['ID']['input'];
|
|
3079
3072
|
};
|
|
@@ -3083,6 +3076,14 @@ type MutationReinvitePeopleArgs = {
|
|
|
3083
3076
|
type MutationReinvitePersonArgs = {
|
|
3084
3077
|
personId: Scalars['ID']['input'];
|
|
3085
3078
|
};
|
|
3079
|
+
type MutationRejectAssignmentArgs = {
|
|
3080
|
+
id: Scalars['ID']['input'];
|
|
3081
|
+
notifyOwner?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3082
|
+
};
|
|
3083
|
+
type MutationRejectCertificateArgs = {
|
|
3084
|
+
id: Scalars['ID']['input'];
|
|
3085
|
+
notifyOwner?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3086
|
+
};
|
|
3086
3087
|
type MutationRemovePaperworkTypeFromBundlesArgs = {
|
|
3087
3088
|
bundleIds: Array<Scalars['ID']['input']>;
|
|
3088
3089
|
paperworkTypeId: Scalars['ID']['input'];
|
|
@@ -3151,6 +3152,9 @@ type MutationScheduleStandardReviewArgs = {
|
|
|
3151
3152
|
type MutationSetActiveLoginArgs = {
|
|
3152
3153
|
loginId?: InputMaybe<Scalars['ID']['input']>;
|
|
3153
3154
|
};
|
|
3155
|
+
type MutationSharePerformanceReviewRevieweeArgs = {
|
|
3156
|
+
id: Scalars['ID']['input'];
|
|
3157
|
+
};
|
|
3154
3158
|
type MutationSubmitBasicAbnFormArgs = {
|
|
3155
3159
|
abn: Scalars['String']['input'];
|
|
3156
3160
|
businessName: Scalars['String']['input'];
|
|
@@ -3591,7 +3595,8 @@ type MutationUpdatePaperworkAssignmentArgs = {
|
|
|
3591
3595
|
templateId?: InputMaybe<Scalars['ID']['input']>;
|
|
3592
3596
|
};
|
|
3593
3597
|
type MutationUpdatePaperworkTypeArgs = {
|
|
3594
|
-
|
|
3598
|
+
autoProcessSubmittedPaperwork?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3599
|
+
autoReassignMode?: InputMaybe<PaperworkTypeAutoReassignMode>;
|
|
3595
3600
|
defaultDueDateWarningDays?: InputMaybe<Scalars['Int']['input']>;
|
|
3596
3601
|
defaultExpirationWarningDays?: InputMaybe<Scalars['Int']['input']>;
|
|
3597
3602
|
defaultResponsiblePersonId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -3810,10 +3815,10 @@ declare enum NotificationType {
|
|
|
3810
3815
|
AssignmentFailed = "ASSIGNMENT_FAILED",
|
|
3811
3816
|
/** Sent to the owner of an assignment when it is overdue. */
|
|
3812
3817
|
AssignmentOverdue = "ASSIGNMENT_OVERDUE",
|
|
3813
|
-
/** Sent to the owner of
|
|
3818
|
+
/** Sent to the owner of an assignment when it has been reassigned. */
|
|
3814
3819
|
AssignmentReassigned = "ASSIGNMENT_REASSIGNED",
|
|
3815
|
-
/** Sent to the owner of
|
|
3816
|
-
|
|
3820
|
+
/** Sent to the owner of a assignment when an admin rejects an assignment. */
|
|
3821
|
+
AssignmentRejected = "ASSIGNMENT_REJECTED",
|
|
3817
3822
|
/** Sent to the person responsible for an assignment (i.e. an admin) when it has expired. */
|
|
3818
3823
|
AssignmentSubmitted = "ASSIGNMENT_SUBMITTED",
|
|
3819
3824
|
/** Sent to the owner when a leave request is approved. */
|
|
@@ -4098,7 +4103,8 @@ type PaperworkType = {
|
|
|
4098
4103
|
archived: Scalars['Boolean']['output'];
|
|
4099
4104
|
archivedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4100
4105
|
archiver?: Maybe<Person>;
|
|
4101
|
-
|
|
4106
|
+
autoProcessSubmittedPaperwork: Scalars['Boolean']['output'];
|
|
4107
|
+
autoReassignMode: PaperworkTypeAutoReassignMode;
|
|
4102
4108
|
bundledPaperworkTypes: Array<BundledPaperworkType>;
|
|
4103
4109
|
createdAt: Scalars['DateTime']['output'];
|
|
4104
4110
|
creator?: Maybe<Person>;
|
|
@@ -4117,6 +4123,12 @@ type PaperworkTypeTemplatesArgs = {
|
|
|
4117
4123
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4118
4124
|
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4119
4125
|
};
|
|
4126
|
+
declare enum PaperworkTypeAutoReassignMode {
|
|
4127
|
+
All = "ALL",
|
|
4128
|
+
None = "NONE",
|
|
4129
|
+
Optional = "OPTIONAL",
|
|
4130
|
+
Required = "REQUIRED"
|
|
4131
|
+
}
|
|
4120
4132
|
declare enum PayPeriod {
|
|
4121
4133
|
Hour = "HOUR",
|
|
4122
4134
|
Year = "YEAR"
|
|
@@ -4128,6 +4140,7 @@ type PerformanceReview = {
|
|
|
4128
4140
|
id: Scalars['ID']['output'];
|
|
4129
4141
|
lastEditedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4130
4142
|
lastEditedBy?: Maybe<Person>;
|
|
4143
|
+
questions: Array<PerformanceReviewQuestionResponse>;
|
|
4131
4144
|
reviewee: PerformanceReviewReviewee;
|
|
4132
4145
|
reviewer?: Maybe<Person>;
|
|
4133
4146
|
status: PerformanceReviewStatus;
|
|
@@ -4184,6 +4197,33 @@ type PerformanceReviewNotification = Notification & {
|
|
|
4184
4197
|
type: NotificationType;
|
|
4185
4198
|
updatedAt: Scalars['DateTime']['output'];
|
|
4186
4199
|
};
|
|
4200
|
+
type PerformanceReviewQuestion = {
|
|
4201
|
+
createdAt: Scalars['DateTime']['output'];
|
|
4202
|
+
cycle: PerformanceReviewCycle;
|
|
4203
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4204
|
+
id: Scalars['ID']['output'];
|
|
4205
|
+
label: Scalars['String']['output'];
|
|
4206
|
+
options?: Maybe<Array<Scalars['String']['output']>>;
|
|
4207
|
+
orderIndex: Scalars['Int']['output'];
|
|
4208
|
+
required: Scalars['Boolean']['output'];
|
|
4209
|
+
savedQuestion?: Maybe<PerformanceReviewSavedQuestion>;
|
|
4210
|
+
template?: Maybe<PerformanceReviewTemplate>;
|
|
4211
|
+
type: QuestionType;
|
|
4212
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
4213
|
+
};
|
|
4214
|
+
type PerformanceReviewQuestionResponse = {
|
|
4215
|
+
question: PerformanceReviewQuestion;
|
|
4216
|
+
response?: Maybe<PerformanceReviewResponse>;
|
|
4217
|
+
};
|
|
4218
|
+
type PerformanceReviewResponse = {
|
|
4219
|
+
createdAt: Scalars['DateTime']['output'];
|
|
4220
|
+
id: Scalars['ID']['output'];
|
|
4221
|
+
lastSavedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4222
|
+
lastSavedBy?: Maybe<Person>;
|
|
4223
|
+
question: PerformanceReviewQuestion;
|
|
4224
|
+
responseValue?: Maybe<QuestionResponse>;
|
|
4225
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
4226
|
+
};
|
|
4187
4227
|
type PerformanceReviewReviewee = {
|
|
4188
4228
|
additionalManagers: Array<Person>;
|
|
4189
4229
|
archived: Scalars['Boolean']['output'];
|
|
@@ -4220,7 +4260,7 @@ type PerformanceReviewSavedQuestion = {
|
|
|
4220
4260
|
};
|
|
4221
4261
|
declare enum PerformanceReviewStatus {
|
|
4222
4262
|
Assigned = "ASSIGNED",
|
|
4223
|
-
|
|
4263
|
+
Incomplete = "INCOMPLETE",
|
|
4224
4264
|
Submitted = "SUBMITTED"
|
|
4225
4265
|
}
|
|
4226
4266
|
type PerformanceReviewTemplate = {
|
|
@@ -6708,4 +6748,4 @@ type UpdatePersonConnectionMutation = {
|
|
|
6708
6748
|
};
|
|
6709
6749
|
};
|
|
6710
6750
|
|
|
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 };
|
|
6751
|
+
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 MutationCompletePerformanceReviewCycleArgs, 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 MutationSharePerformanceReviewRevieweeArgs, 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, PaperworkTypeAutoReassignMode, type PaperworkTypeTemplatesArgs, PayPeriod, type PerformanceReview, type PerformanceReviewCycle, type PerformanceReviewCycleConfig, PerformanceReviewCycleStatus, type PerformanceReviewNotification, type PerformanceReviewQuestion, type PerformanceReviewQuestionResponse, type PerformanceReviewResponse, 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
|
@@ -209,7 +209,7 @@ var NotificationType = /* @__PURE__ */ ((NotificationType2) => {
|
|
|
209
209
|
NotificationType2["AssignmentFailed"] = "ASSIGNMENT_FAILED";
|
|
210
210
|
NotificationType2["AssignmentOverdue"] = "ASSIGNMENT_OVERDUE";
|
|
211
211
|
NotificationType2["AssignmentReassigned"] = "ASSIGNMENT_REASSIGNED";
|
|
212
|
-
NotificationType2["
|
|
212
|
+
NotificationType2["AssignmentRejected"] = "ASSIGNMENT_REJECTED";
|
|
213
213
|
NotificationType2["AssignmentSubmitted"] = "ASSIGNMENT_SUBMITTED";
|
|
214
214
|
NotificationType2["LeaveRequestApproved"] = "LEAVE_REQUEST_APPROVED";
|
|
215
215
|
NotificationType2["LeaveRequestCancelled"] = "LEAVE_REQUEST_CANCELLED";
|
|
@@ -241,6 +241,13 @@ var PaperworkSummaryStatus = /* @__PURE__ */ ((PaperworkSummaryStatus2) => {
|
|
|
241
241
|
PaperworkSummaryStatus2["Submitted"] = "SUBMITTED";
|
|
242
242
|
return PaperworkSummaryStatus2;
|
|
243
243
|
})(PaperworkSummaryStatus || {});
|
|
244
|
+
var PaperworkTypeAutoReassignMode = /* @__PURE__ */ ((PaperworkTypeAutoReassignMode2) => {
|
|
245
|
+
PaperworkTypeAutoReassignMode2["All"] = "ALL";
|
|
246
|
+
PaperworkTypeAutoReassignMode2["None"] = "NONE";
|
|
247
|
+
PaperworkTypeAutoReassignMode2["Optional"] = "OPTIONAL";
|
|
248
|
+
PaperworkTypeAutoReassignMode2["Required"] = "REQUIRED";
|
|
249
|
+
return PaperworkTypeAutoReassignMode2;
|
|
250
|
+
})(PaperworkTypeAutoReassignMode || {});
|
|
244
251
|
var PayPeriod = /* @__PURE__ */ ((PayPeriod2) => {
|
|
245
252
|
PayPeriod2["Hour"] = "HOUR";
|
|
246
253
|
PayPeriod2["Year"] = "YEAR";
|
|
@@ -254,7 +261,7 @@ var PerformanceReviewCycleStatus = /* @__PURE__ */ ((PerformanceReviewCycleStatu
|
|
|
254
261
|
})(PerformanceReviewCycleStatus || {});
|
|
255
262
|
var PerformanceReviewStatus = /* @__PURE__ */ ((PerformanceReviewStatus2) => {
|
|
256
263
|
PerformanceReviewStatus2["Assigned"] = "ASSIGNED";
|
|
257
|
-
PerformanceReviewStatus2["
|
|
264
|
+
PerformanceReviewStatus2["Incomplete"] = "INCOMPLETE";
|
|
258
265
|
PerformanceReviewStatus2["Submitted"] = "SUBMITTED";
|
|
259
266
|
return PerformanceReviewStatus2;
|
|
260
267
|
})(PerformanceReviewStatus || {});
|
|
@@ -425,6 +432,7 @@ export {
|
|
|
425
432
|
LeaveRequestStatus,
|
|
426
433
|
NotificationType,
|
|
427
434
|
PaperworkSummaryStatus,
|
|
435
|
+
PaperworkTypeAutoReassignMode,
|
|
428
436
|
PayPeriod,
|
|
429
437
|
PerformanceReviewCycleStatus,
|
|
430
438
|
PerformanceReviewStatus,
|