@worknice/js-sdk 0.11.15 → 0.11.16
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/{_types-mREZ9_FT.d.ts → _types-BDPQKGH6.d.ts} +55 -1
- package/dist/api/WorkniceIntegrationLogger.d.ts +1 -1
- package/dist/api/_generated.d.ts +122 -1
- package/dist/api/_generated.js.map +1 -1
- package/dist/api/_types.d.ts +2 -2
- package/dist/api/createApiOperation.d.ts +1 -1
- package/dist/api/createWorkniceClient.d.ts +1 -1
- package/dist/api/operations/activateIntegration.d.ts +1 -1
- package/dist/api/operations/authorizeIntegration.d.ts +1 -1
- package/dist/api/operations/completeSync.d.ts +1 -1
- package/dist/api/operations/createApiToken.d.ts +1 -1
- package/dist/api/operations/createDataImport.d.ts +1 -1
- package/dist/api/operations/createLeaveRequest.d.ts +1 -1
- package/dist/api/operations/createPerson.d.ts +56 -2
- package/dist/api/operations/createPerson.js +3 -1
- package/dist/api/operations/createPerson.js.map +1 -1
- package/dist/api/operations/createPersonConnection.d.ts +1 -1
- package/dist/api/operations/createPersonDataImportLine.d.ts +1 -1
- package/dist/api/operations/deleteApiToken.d.ts +1 -1
- package/dist/api/operations/deletePersonConnection.d.ts +1 -1
- package/dist/api/operations/fragments/PersonFullDetails.d.ts +3 -0
- package/dist/api/operations/fragments/PersonFullDetails.js +64 -0
- package/dist/api/operations/fragments/PersonFullDetails.js.map +1 -0
- package/dist/api/operations/getApiTokens.d.ts +1 -1
- package/dist/api/operations/getIntegration.d.ts +1 -1
- package/dist/api/operations/getLeaveRequests.d.ts +1 -1
- package/dist/api/operations/getMyApps.d.ts +1 -1
- package/dist/api/operations/getPeople.d.ts +1 -1
- package/dist/api/operations/getPeople.js +3 -55
- package/dist/api/operations/getPeople.js.map +1 -1
- package/dist/api/operations/getPersonConnections.d.ts +1 -1
- package/dist/api/operations/initializeIntegration.d.ts +1 -1
- package/dist/api/operations/updateLeaveRequest.d.ts +1 -1
- package/dist/api/operations/updatePerson.d.ts +1 -1
- package/dist/api/operations/updatePersonConnection.d.ts +1 -1
- package/dist/helpers/_types.d.ts +1 -1
- package/dist/helpers/handleApproveLeaveRequestWebhook.d.ts +1 -1
- package/dist/helpers/handleCancelLeaveRequestWebhook.d.ts +1 -1
- package/dist/helpers/handleCreateIntegrationWebhook.d.ts +1 -1
- package/dist/helpers/handleCreateLeaveRequestWebhook.d.ts +1 -1
- package/dist/helpers/handleDenyLeaveRequestWebhook.d.ts +1 -1
- package/dist/helpers/handleGetAuthorizationUrlWebhook.d.ts +1 -1
- package/dist/helpers/handleGetConfigurationUrlWebhook.d.ts +1 -1
- package/dist/helpers/handleGetLeaveBalancesWebhook.d.ts +1 -1
- package/dist/helpers/handleGetLeaveCategoriesWebhook.d.ts +1 -1
- package/dist/helpers/handleGetLeaveRequestHoursWebhook.d.ts +1 -1
- package/dist/helpers/handleGetOpenUrlWebhook.d.ts +1 -1
- package/dist/helpers/handleProcessLeaveRequestWebhook.d.ts +1 -1
- package/dist/helpers/handleRequest.d.ts +1 -1
- package/dist/helpers/handleRequestWithWorknice.d.ts +1 -1
- package/dist/helpers/handleTriggerIntegrationSyncWebhook.d.ts +1 -1
- package/dist/helpers/handleTriggerIntegrationSyncWebhook.js +1 -0
- package/dist/helpers/handleTriggerIntegrationSyncWebhook.js.map +1 -1
- package/dist/helpers/index.d.ts +1 -1
- package/package.json +3 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Exact, Scalars, InputMaybe, LeaveCategoryInput, LeaveRequestStatus, PersonRole, ConnectionStatus, PersonBankAccountsChangeInput, PersonDataTransferConfigInput, PersonDateOfBirthChangeInput, PersonEmergencyContactsChangeInput, PersonFullNameChangeInput, PersonGenderChangeInput, PersonPersonalEmailChangeInput, PersonPersonalPhoneChangeInput, PersonPostalAddressChangeInput, PersonResidentialAddressChangeInput, PersonSuperFundsChangeInput, PersonTaxDetailsChangeInput, PersonTenureChangeInput, AppCategory, AppStatus, IntegrationStatus
|
|
1
|
+
import { Exact, Scalars, InputMaybe, LeaveCategoryInput, LeaveRequestStatus, PersonRole, AllocationMethod, Gender, TaxResidencyStatus, SuperFundNomination, TaxFileNumberExemption, ConnectionStatus, PersonBankAccountsChangeInput, PersonDataTransferConfigInput, PersonDateOfBirthChangeInput, PersonEmergencyContactsChangeInput, PersonFullNameChangeInput, PersonGenderChangeInput, PersonPersonalEmailChangeInput, PersonPersonalPhoneChangeInput, PersonPostalAddressChangeInput, PersonResidentialAddressChangeInput, PersonSuperFundsChangeInput, PersonTaxDetailsChangeInput, PersonTenureChangeInput, AppCategory, AppStatus, IntegrationStatus } from './api/_generated.js';
|
|
2
2
|
|
|
3
3
|
declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
4
4
|
fetchFromApi: <Data extends object, Variables extends object>(query: string, variables?: Variables, fetchOptions?: FetchOptions) => Promise<SuccessfulQueryResult<Data>>;
|
|
@@ -98,7 +98,61 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
98
98
|
displayName: Scalars["String"]["input"];
|
|
99
99
|
role: PersonRole;
|
|
100
100
|
}>, fetchOptions?: FetchOptions) => Promise<{
|
|
101
|
+
bankAccount1Allocation?: string | null;
|
|
102
|
+
bankAccount1AllocationMethod?: AllocationMethod | null;
|
|
103
|
+
bankAccount1Bsb?: string | null;
|
|
104
|
+
bankAccount1Name?: string | null;
|
|
105
|
+
bankAccount1Number?: string | null;
|
|
106
|
+
bankAccount2Allocation?: string | null;
|
|
107
|
+
bankAccount2AllocationMethod?: AllocationMethod | null;
|
|
108
|
+
bankAccount2Bsb?: string | null;
|
|
109
|
+
bankAccount2Name?: string | null;
|
|
110
|
+
bankAccount2Number?: string | null;
|
|
111
|
+
bankAccount3Allocation?: string | null;
|
|
112
|
+
bankAccount3AllocationMethod?: AllocationMethod | null;
|
|
113
|
+
bankAccount3Bsb?: string | null;
|
|
114
|
+
bankAccount3Name?: string | null;
|
|
115
|
+
bankAccount3Number?: string | null;
|
|
116
|
+
bankAccount4Allocation?: string | null;
|
|
117
|
+
bankAccount4AllocationMethod?: AllocationMethod | null;
|
|
118
|
+
bankAccount4Bsb?: string | null;
|
|
119
|
+
bankAccount4Name?: string | null;
|
|
120
|
+
bankAccount4Number?: string | null;
|
|
121
|
+
bankAccount5Allocation?: string | null;
|
|
122
|
+
bankAccount5AllocationMethod?: AllocationMethod | null;
|
|
123
|
+
bankAccount5Bsb?: string | null;
|
|
124
|
+
bankAccount5Name?: string | null;
|
|
125
|
+
bankAccount5Number?: string | null;
|
|
126
|
+
dateOfBirth?: string | null;
|
|
127
|
+
displayName: string;
|
|
128
|
+
employeeCode?: string | null;
|
|
129
|
+
endDate?: string | null;
|
|
130
|
+
familyName?: string | null;
|
|
131
|
+
gender?: Gender | null;
|
|
132
|
+
givenName?: string | null;
|
|
133
|
+
hasLoanOrStudentDebt?: boolean | null;
|
|
101
134
|
id: string;
|
|
135
|
+
otherGivenNames?: string | null;
|
|
136
|
+
personalEmail?: string | null;
|
|
137
|
+
personalPhone?: string | null;
|
|
138
|
+
profileEmail?: string | null;
|
|
139
|
+
profilePhone?: string | null;
|
|
140
|
+
residencyStatus?: TaxResidencyStatus | null;
|
|
141
|
+
residentialAddressCity?: string | null;
|
|
142
|
+
residentialAddressCountry?: string | null;
|
|
143
|
+
residentialAddressLine1?: string | null;
|
|
144
|
+
residentialAddressLine2?: string | null;
|
|
145
|
+
residentialAddressPostcode?: string | null;
|
|
146
|
+
residentialAddressState?: string | null;
|
|
147
|
+
startDate?: string | null;
|
|
148
|
+
superFund1MemberName?: string | null;
|
|
149
|
+
superFund1MemberNumber?: string | null;
|
|
150
|
+
superFund1Nomination?: SuperFundNomination | null;
|
|
151
|
+
superFund1Usi?: string | null;
|
|
152
|
+
taxFileNumber?: string | null;
|
|
153
|
+
taxFileNumberExemption?: TaxFileNumberExemption | null;
|
|
154
|
+
taxFreeThresholdClaimed?: boolean | null;
|
|
155
|
+
updatedAt: string;
|
|
102
156
|
}>;
|
|
103
157
|
createPersonConnection: (variables: {
|
|
104
158
|
integrationId: string;
|
package/dist/api/_generated.d.ts
CHANGED
|
@@ -743,6 +743,8 @@ type BasicSuperFormTemplate = Template & {
|
|
|
743
743
|
assignments: Array<BasicSuperForm>;
|
|
744
744
|
bundledTemplates: Array<BundledTemplate>;
|
|
745
745
|
createdAt: Scalars['DateTime']['output'];
|
|
746
|
+
defaultFundAbn?: Maybe<Scalars['String']['output']>;
|
|
747
|
+
defaultFundName?: Maybe<Scalars['String']['output']>;
|
|
746
748
|
defaultResponsiblePerson?: Maybe<Person>;
|
|
747
749
|
defaultUsi?: Maybe<Scalars['String']['output']>;
|
|
748
750
|
id: Scalars['ID']['output'];
|
|
@@ -1677,6 +1679,7 @@ type KeypayEmployeeForm = Assignment & PaperworkAssignment & PersonBankAccountsC
|
|
|
1677
1679
|
emergencyContact2Phone?: Maybe<Scalars['String']['output']>;
|
|
1678
1680
|
emergencyContact2Relationship?: Maybe<Scalars['String']['output']>;
|
|
1679
1681
|
emergencyContactsPresence: FieldPresence;
|
|
1682
|
+
employerSuperFundAbn?: Maybe<Scalars['String']['output']>;
|
|
1680
1683
|
employerSuperFundName?: Maybe<Scalars['String']['output']>;
|
|
1681
1684
|
employerSuperFundProductCode?: Maybe<Scalars['String']['output']>;
|
|
1682
1685
|
employmentType?: Maybe<KeypayEmploymentType>;
|
|
@@ -1778,6 +1781,7 @@ type KeypayEmployeeFormTemplate = Template & {
|
|
|
1778
1781
|
defaultResponsible?: Maybe<Person>;
|
|
1779
1782
|
emailAddressPresence: FieldPresence;
|
|
1780
1783
|
emergencyContactsPresence: FieldPresence;
|
|
1784
|
+
employerSuperFundAbn?: Maybe<Scalars['String']['output']>;
|
|
1781
1785
|
employerSuperFundName?: Maybe<Scalars['String']['output']>;
|
|
1782
1786
|
employerSuperFundProductCode?: Maybe<Scalars['String']['output']>;
|
|
1783
1787
|
genderPresence: FieldPresence;
|
|
@@ -2522,6 +2526,8 @@ type MutationCreateBasicSuperFormArgs = {
|
|
|
2522
2526
|
templateId: Scalars['ID']['input'];
|
|
2523
2527
|
};
|
|
2524
2528
|
type MutationCreateBasicSuperFormTemplateArgs = {
|
|
2529
|
+
defaultFundAbn?: InputMaybe<Scalars['String']['input']>;
|
|
2530
|
+
defaultFundName?: InputMaybe<Scalars['String']['input']>;
|
|
2525
2531
|
defaultResponsiblePersonId: Scalars['ID']['input'];
|
|
2526
2532
|
defaultUsi?: InputMaybe<Scalars['String']['input']>;
|
|
2527
2533
|
name: Scalars['String']['input'];
|
|
@@ -2612,6 +2618,7 @@ type MutationCreateKeypayEmployeeFormTemplateArgs = {
|
|
|
2612
2618
|
defaultResponsibleId: Scalars['ID']['input'];
|
|
2613
2619
|
emailAddressPresence?: InputMaybe<FieldPresence>;
|
|
2614
2620
|
emergencyContactsPresence?: InputMaybe<FieldPresence>;
|
|
2621
|
+
employerSuperFundAbn?: InputMaybe<Scalars['String']['input']>;
|
|
2615
2622
|
employerSuperFundName?: InputMaybe<Scalars['String']['input']>;
|
|
2616
2623
|
employerSuperFundProductCode?: InputMaybe<Scalars['String']['input']>;
|
|
2617
2624
|
genderPresence?: InputMaybe<FieldPresence>;
|
|
@@ -3309,6 +3316,8 @@ type MutationUpdateBasicPreEmploymentFormTemplateArgs = {
|
|
|
3309
3316
|
workplaceAdjustmentsRequiredPresence?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3310
3317
|
};
|
|
3311
3318
|
type MutationUpdateBasicSuperFormTemplateArgs = {
|
|
3319
|
+
defaultFundAbn?: InputMaybe<Scalars['String']['input']>;
|
|
3320
|
+
defaultFundName?: InputMaybe<Scalars['String']['input']>;
|
|
3312
3321
|
defaultResponsiblePersonId?: InputMaybe<Scalars['ID']['input']>;
|
|
3313
3322
|
defaultUsi?: InputMaybe<Scalars['String']['input']>;
|
|
3314
3323
|
id: Scalars['ID']['input'];
|
|
@@ -3380,6 +3389,7 @@ type MutationUpdateKeypayEmployeeFormTemplateArgs = {
|
|
|
3380
3389
|
defaultResponsibleId?: InputMaybe<Scalars['ID']['input']>;
|
|
3381
3390
|
emailAddressPresence?: InputMaybe<FieldPresence>;
|
|
3382
3391
|
emergencyContactsPresence?: InputMaybe<FieldPresence>;
|
|
3392
|
+
employerSuperFundAbn?: InputMaybe<Scalars['String']['input']>;
|
|
3383
3393
|
employerSuperFundName?: InputMaybe<Scalars['String']['input']>;
|
|
3384
3394
|
employerSuperFundProductCode?: InputMaybe<Scalars['String']['input']>;
|
|
3385
3395
|
genderPresence?: InputMaybe<FieldPresence>;
|
|
@@ -5561,7 +5571,61 @@ type CreatePersonMutationVariables = Exact<{
|
|
|
5561
5571
|
}>;
|
|
5562
5572
|
type CreatePersonMutation = {
|
|
5563
5573
|
createPerson: {
|
|
5574
|
+
bankAccount1Allocation?: string | null;
|
|
5575
|
+
bankAccount1AllocationMethod?: AllocationMethod | null;
|
|
5576
|
+
bankAccount1Bsb?: string | null;
|
|
5577
|
+
bankAccount1Name?: string | null;
|
|
5578
|
+
bankAccount1Number?: string | null;
|
|
5579
|
+
bankAccount2Allocation?: string | null;
|
|
5580
|
+
bankAccount2AllocationMethod?: AllocationMethod | null;
|
|
5581
|
+
bankAccount2Bsb?: string | null;
|
|
5582
|
+
bankAccount2Name?: string | null;
|
|
5583
|
+
bankAccount2Number?: string | null;
|
|
5584
|
+
bankAccount3Allocation?: string | null;
|
|
5585
|
+
bankAccount3AllocationMethod?: AllocationMethod | null;
|
|
5586
|
+
bankAccount3Bsb?: string | null;
|
|
5587
|
+
bankAccount3Name?: string | null;
|
|
5588
|
+
bankAccount3Number?: string | null;
|
|
5589
|
+
bankAccount4Allocation?: string | null;
|
|
5590
|
+
bankAccount4AllocationMethod?: AllocationMethod | null;
|
|
5591
|
+
bankAccount4Bsb?: string | null;
|
|
5592
|
+
bankAccount4Name?: string | null;
|
|
5593
|
+
bankAccount4Number?: string | null;
|
|
5594
|
+
bankAccount5Allocation?: string | null;
|
|
5595
|
+
bankAccount5AllocationMethod?: AllocationMethod | null;
|
|
5596
|
+
bankAccount5Bsb?: string | null;
|
|
5597
|
+
bankAccount5Name?: string | null;
|
|
5598
|
+
bankAccount5Number?: string | null;
|
|
5599
|
+
dateOfBirth?: string | null;
|
|
5600
|
+
displayName: string;
|
|
5601
|
+
employeeCode?: string | null;
|
|
5602
|
+
endDate?: string | null;
|
|
5603
|
+
familyName?: string | null;
|
|
5604
|
+
gender?: Gender | null;
|
|
5605
|
+
givenName?: string | null;
|
|
5606
|
+
hasLoanOrStudentDebt?: boolean | null;
|
|
5564
5607
|
id: string;
|
|
5608
|
+
otherGivenNames?: string | null;
|
|
5609
|
+
personalEmail?: string | null;
|
|
5610
|
+
personalPhone?: string | null;
|
|
5611
|
+
profileEmail?: string | null;
|
|
5612
|
+
profilePhone?: string | null;
|
|
5613
|
+
residencyStatus?: TaxResidencyStatus | null;
|
|
5614
|
+
residentialAddressCity?: string | null;
|
|
5615
|
+
residentialAddressCountry?: string | null;
|
|
5616
|
+
residentialAddressLine1?: string | null;
|
|
5617
|
+
residentialAddressLine2?: string | null;
|
|
5618
|
+
residentialAddressPostcode?: string | null;
|
|
5619
|
+
residentialAddressState?: string | null;
|
|
5620
|
+
startDate?: string | null;
|
|
5621
|
+
superFund1MemberName?: string | null;
|
|
5622
|
+
superFund1MemberNumber?: string | null;
|
|
5623
|
+
superFund1Nomination?: SuperFundNomination | null;
|
|
5624
|
+
superFund1Usi?: string | null;
|
|
5625
|
+
taxFileNumber?: string | null;
|
|
5626
|
+
taxFileNumberExemption?: TaxFileNumberExemption | null;
|
|
5627
|
+
taxFreeThresholdClaimed?: boolean | null;
|
|
5628
|
+
updatedAt: string;
|
|
5565
5629
|
};
|
|
5566
5630
|
};
|
|
5567
5631
|
type CreatePersonConnectionMutationVariables = Exact<{
|
|
@@ -5624,6 +5688,63 @@ type DeletePersonConnectionMutationVariables = Exact<{
|
|
|
5624
5688
|
type DeletePersonConnectionMutation = {
|
|
5625
5689
|
deletePersonConnection: boolean;
|
|
5626
5690
|
};
|
|
5691
|
+
type PersonFullDetailsFragment = {
|
|
5692
|
+
bankAccount1Allocation?: string | null;
|
|
5693
|
+
bankAccount1AllocationMethod?: AllocationMethod | null;
|
|
5694
|
+
bankAccount1Bsb?: string | null;
|
|
5695
|
+
bankAccount1Name?: string | null;
|
|
5696
|
+
bankAccount1Number?: string | null;
|
|
5697
|
+
bankAccount2Allocation?: string | null;
|
|
5698
|
+
bankAccount2AllocationMethod?: AllocationMethod | null;
|
|
5699
|
+
bankAccount2Bsb?: string | null;
|
|
5700
|
+
bankAccount2Name?: string | null;
|
|
5701
|
+
bankAccount2Number?: string | null;
|
|
5702
|
+
bankAccount3Allocation?: string | null;
|
|
5703
|
+
bankAccount3AllocationMethod?: AllocationMethod | null;
|
|
5704
|
+
bankAccount3Bsb?: string | null;
|
|
5705
|
+
bankAccount3Name?: string | null;
|
|
5706
|
+
bankAccount3Number?: string | null;
|
|
5707
|
+
bankAccount4Allocation?: string | null;
|
|
5708
|
+
bankAccount4AllocationMethod?: AllocationMethod | null;
|
|
5709
|
+
bankAccount4Bsb?: string | null;
|
|
5710
|
+
bankAccount4Name?: string | null;
|
|
5711
|
+
bankAccount4Number?: string | null;
|
|
5712
|
+
bankAccount5Allocation?: string | null;
|
|
5713
|
+
bankAccount5AllocationMethod?: AllocationMethod | null;
|
|
5714
|
+
bankAccount5Bsb?: string | null;
|
|
5715
|
+
bankAccount5Name?: string | null;
|
|
5716
|
+
bankAccount5Number?: string | null;
|
|
5717
|
+
dateOfBirth?: string | null;
|
|
5718
|
+
displayName: string;
|
|
5719
|
+
employeeCode?: string | null;
|
|
5720
|
+
endDate?: string | null;
|
|
5721
|
+
familyName?: string | null;
|
|
5722
|
+
gender?: Gender | null;
|
|
5723
|
+
givenName?: string | null;
|
|
5724
|
+
hasLoanOrStudentDebt?: boolean | null;
|
|
5725
|
+
id: string;
|
|
5726
|
+
otherGivenNames?: string | null;
|
|
5727
|
+
personalEmail?: string | null;
|
|
5728
|
+
personalPhone?: string | null;
|
|
5729
|
+
profileEmail?: string | null;
|
|
5730
|
+
profilePhone?: string | null;
|
|
5731
|
+
residencyStatus?: TaxResidencyStatus | null;
|
|
5732
|
+
residentialAddressCity?: string | null;
|
|
5733
|
+
residentialAddressCountry?: string | null;
|
|
5734
|
+
residentialAddressLine1?: string | null;
|
|
5735
|
+
residentialAddressLine2?: string | null;
|
|
5736
|
+
residentialAddressPostcode?: string | null;
|
|
5737
|
+
residentialAddressState?: string | null;
|
|
5738
|
+
startDate?: string | null;
|
|
5739
|
+
superFund1MemberName?: string | null;
|
|
5740
|
+
superFund1MemberNumber?: string | null;
|
|
5741
|
+
superFund1Nomination?: SuperFundNomination | null;
|
|
5742
|
+
superFund1Usi?: string | null;
|
|
5743
|
+
taxFileNumber?: string | null;
|
|
5744
|
+
taxFileNumberExemption?: TaxFileNumberExemption | null;
|
|
5745
|
+
taxFreeThresholdClaimed?: boolean | null;
|
|
5746
|
+
updatedAt: string;
|
|
5747
|
+
};
|
|
5627
5748
|
type GetApiTokensQueryVariables = Exact<{
|
|
5628
5749
|
[key: string]: never;
|
|
5629
5750
|
}>;
|
|
@@ -6169,4 +6290,4 @@ type UpdatePersonConnectionMutation = {
|
|
|
6169
6290
|
};
|
|
6170
6291
|
};
|
|
6171
6292
|
|
|
6172
|
-
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 BundledPerson, type BundledTemplate, type BundledTemplateInput, 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 Document, type DocumentField, type DocumentFieldConfigInput, type DocumentFieldInput, DocumentFieldResponder, type DocumentNotificationsArgs, type DocumentTemplate, type EmailNotificationSettings, type EmailNotificationSettingsInput, type Exact, ExpiryStatus, FieldPresence, Gender, type GenericIntegration, type GenericIntegrationFeaturesArgs, type GetApiTokensQuery, type GetApiTokensQueryVariables, type GetIntegrationQuery, type GetIntegrationQueryVariables, type GetLeaveRequestsQuery, type GetLeaveRequestsQueryVariables, type GetMyAppsQuery, type GetMyAppsQueryVariables, type GetPeopleQuery, type GetPeopleQueryVariables, type GetPersonConnectionsQuery, type GetPersonConnectionsQueryVariables, type Incremental, type InitializeIntegrationMutation, type InitializeIntegrationMutationVariables, type InputMaybe, type Integration, type IntegrationConnection, type IntegrationFeatures, type IntegrationFeaturesArgs, type IntegrationFeaturesInput, type IntegrationLog, type IntegrationLogInput, IntegrationStatus, type IntegrationSync, type IntegrationSyncEvent, IntegrationSyncEventType, IntegrationSyncStatus, IntegrationType, type Job, JobStatus, type KeypayBusiness, type KeypayEmployee, type KeypayEmployeeForm, type KeypayEmployeeFormNotificationsArgs, type KeypayEmployeeFormTemplate, KeypayEmployeeStatus, KeypayEmploymentType, KeypayGender, type KeypayIntegration, type KeypayIntegrationFeaturesArgs, type KeypayLeaveEmployee, type KeypayLeaveIntegration, type KeypayLeaveIntegrationFeaturesArgs, type LeaveBalance, type LeaveCategory, type LeaveCategoryInput, type LeaveHoursEstimate, type LeaveRequest, type LeaveRequestNotification, type LeaveRequestNotificationsArgs, LeaveRequestStatus, type Location, type Login, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Media, type MultiLineTextDocumentField, type MultiLineTextDocumentFieldConfigInput, type MultiLineTextDocumentFieldInput, type Mutation, type MutationAcceptLoginArgs, type MutationActivateIntegrationArgs, type MutationActivatePersonArgs, type MutationAddPeopleToBundlesArgs, type MutationAddPeopleToTagsArgs, type MutationAppendIntegrationLogArgs, type MutationApproveAssignmentArgs, type MutationApproveKeypayLeaveLeaveRequestArgs, type MutationApproveLeaveRequestArgs, type MutationApproveXeroLeaveRequestArgs, type MutationArchiveAssignmentArgs, type MutationArchiveBundleArgs, type MutationArchiveCustomTableArgs, type MutationArchiveIntegrationArgs, type MutationArchiveLocationArgs, type MutationArchiveNotesArgs, type MutationArchiveOrgArgs, type MutationArchivePersonArgs, type MutationArchiveReviewCycleArgs, type MutationArchiveSavedQuestionArgs, type MutationArchiveStandardReviewArgs, type MutationArchiveStandardReviewTemplateArgs, type MutationArchiveTemplateArgs, type MutationAssignAssignmentsArgs, type MutationAssignBasicAbnFormArgs, type MutationAssignBasicBankAccountFormArgs, type MutationAssignBasicEmergencyContactFormArgs, type MutationAssignBasicPersonalDetailsFormArgs, type MutationAssignBasicPreEmploymentFormArgs, type MutationAssignBasicSuperFormArgs, type MutationAssignBasicTaxFormArgs, type MutationAssignCertificateArgs, type MutationAssignDocumentArgs, type MutationAssignKeypayEmployeeFormArgs, type MutationAssignQuestionnaireArgs, type MutationAssignStandardReviewArgs, type MutationAssignTaskArgs, type MutationAuthorizeIntegrationArgs, type MutationCancelLeaveRequestArgs, type MutationCompleteIntegrationSyncArgs, type MutationCompletePasswordResetArgs, type MutationConfirmEmailArgs, type MutationConfirmProfileArgs, type MutationConfirmProviderArgs, type MutationCreateAccountArgs, type MutationCreateApiTokenArgs, type MutationCreateAssignmentsArgs, type MutationCreateBasicAbnFormArgs, type MutationCreateBasicAbnFormTemplateArgs, type MutationCreateBasicBankAccountFormArgs, type MutationCreateBasicBankAccountFormTemplateArgs, type MutationCreateBasicEmergencyContactFormArgs, type MutationCreateBasicEmergencyContactFormTemplateArgs, type MutationCreateBasicPersonalDetailsFormArgs, type MutationCreateBasicPersonalDetailsFormTemplateArgs, type MutationCreateBasicPreEmploymentFormArgs, type MutationCreateBasicPreEmploymentFormTemplateArgs, type MutationCreateBasicSuperFormArgs, type MutationCreateBasicSuperFormTemplateArgs, type MutationCreateBasicTaxFormArgs, type MutationCreateBasicTaxFormTemplateArgs, type MutationCreateBundleArgs, type MutationCreateBundledPersonArgs, type MutationCreateCertificateArgs, type MutationCreateCertificateTemplateArgs, type MutationCreateCustomTableArgs, type MutationCreateDataExportArgs, type MutationCreateDataImportArgs, type MutationCreateDocumentArgs, type MutationCreateDocumentTemplateArgs, type MutationCreateIntegrationArgs, type MutationCreateIntegrationLogArgs, type MutationCreateJobArgs, type MutationCreateKeypayEmployeeFormArgs, type MutationCreateKeypayEmployeeFormTemplateArgs, type MutationCreateKeypayLeaveLeaveRequestArgs, type MutationCreateLeaveRequestArgs, type MutationCreateLocalPersonConnectionsArgs, type MutationCreateLocationArgs, type MutationCreateLoginArgs, type MutationCreateManualDataImportArgs, type MutationCreateNoteArgs, type MutationCreateNoteAttachmentsArgs, type MutationCreateOrgArgs, type MutationCreatePersonArgs, type MutationCreatePersonConnectionArgs, type MutationCreatePersonDataImportLineArgs, type MutationCreatePositionArgs, type MutationCreateQuestionnaireArgs, type MutationCreateQuestionnaireTemplateArgs, type MutationCreateReviewCycleArgs, type MutationCreateSavedQuestionArgs, type MutationCreateStandaloneCertificateArgs, type MutationCreateStandaloneDocumentArgs, type MutationCreateStandaloneQuestionnaireArgs, 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 MutationDuplicateTemplateArgs, type MutationInitializeIntegrationArgs, type MutationInvitePeopleArgs, type MutationInvitePersonArgs, type MutationJoinOrgArgs, type MutationLogInArgs, type MutationLogInWithProviderArgs, type MutationMarkNotificationsReadArgs, type MutationMarkNotificationsUnreadArgs, type MutationPauseIntegrationArgs, type MutationProcessAssignmentArgs, type MutationProcessAssignmentsArgs, type MutationProcessLeaveRequestArgs, type MutationProcessStandardReviewArgs, type MutationReassignAssignmentArgs, type MutationReassignCertificateArgs, type MutationReassignTaskArgs, type MutationReinviteLoginArgs, type MutationReinvitePeopleArgs, type MutationReinvitePersonArgs, type MutationRemovePeopleFromBundlesArgs, type MutationRemovePeopleFromTagsArgs, type MutationRequestApprovalsArgs, type MutationRequestPasswordResetArgs, type MutationResetXeroAuIntegrationArgs, type MutationRestoreAssignmentArgs, type MutationRestoreBundleArgs, type MutationRestoreIntegrationArgs, type MutationRestoreNotesArgs, type MutationRestorePersonArgs, type MutationRestoreReviewCycleArgs, type MutationRestoreSavedQuestionArgs, type MutationRestoreStandardReviewArgs, type MutationRestoreStandardReviewTemplateArgs, type MutationRestoreTemplateArgs, type MutationScheduleStandardReviewArgs, type MutationSetActiveLoginArgs, type MutationSignUpArgs, type MutationSubmitBasicAbnFormArgs, type MutationSubmitBasicBankAccountFormArgs, type MutationSubmitBasicEmergencyContactFormArgs, type MutationSubmitBasicPersonalDetailsFormArgs, type MutationSubmitBasicPreEmploymentFormArgs, type MutationSubmitBasicSuperFormArgs, type MutationSubmitBasicTaxFormArgs, type MutationSubmitCertificateArgs, type MutationSubmitDocumentArgs, type MutationSubmitKeypayEmployeeFormArgs, type MutationSubmitQuestionnaireArgs, type MutationSubmitStandardReviewArgs, type MutationSubmitStandardReviewQuestionArgs, type MutationSubmitTaskArgs, type MutationTerminatePersonArgs, type MutationTriggerIntegrationSyncArgs, type MutationUnmatchPersonConnectionsArgs, type MutationUnpauseIntegrationArgs, type MutationUnscheduleStandardReviewArgs, type MutationUpdateAccountArgs, type MutationUpdateAssignmentArgs, type MutationUpdateAssignmentsArgs, type MutationUpdateBasicAbnFormTemplateArgs, type MutationUpdateBasicBankAccountFormTemplateArgs, type MutationUpdateBasicEmergencyContactFormTemplateArgs, type MutationUpdateBasicPersonalDetailsFormTemplateArgs, type MutationUpdateBasicPreEmploymentFormTemplateArgs, type MutationUpdateBasicSuperFormTemplateArgs, type MutationUpdateBasicTaxFormTemplateArgs, type MutationUpdateBundleArgs, type MutationUpdateCertificateArgs, type MutationUpdateCertificateTemplateArgs, type MutationUpdateCustomTableArgs, type MutationUpdateDocumentArgs, type MutationUpdateDocumentTemplateArgs, type MutationUpdateIntegrationArgs, type MutationUpdateJobArgs, type MutationUpdateKeypayEmployeeFormTemplateArgs, type MutationUpdateKeypayIntegrationArgs, type MutationUpdateKeypayLeaveIntegrationArgs, type MutationUpdateLocationArgs, type MutationUpdateNoteArgs, type MutationUpdateOnboardingAssignmentsArgs, type MutationUpdateOrgArgs, type MutationUpdatePaperworkAssignmentArgs, type MutationUpdatePersonArgs, type MutationUpdatePersonConnectionArgs, 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 Note, type NoteAttachment, type Notification, NotificationType, type Org, type OrgBundlesArgs, type OrgFeatures, type OrgFeaturesInput, type OrgIntegrationsArgs, type OrgLocationsArgs, type OrgPaperworkSummariesArgs, type OrgPeopleArgs, type OrgReviewCyclesArgs, type OrgSavedQuestionsArgs, type OrgTemplatesArgs, type PaperworkAssignment, type PaperworkAssignmentNotificationsArgs, type PaperworkSummary, PaperworkSummaryStatus, PayPeriod, type Person, type PersonAssignmentsArgs, type PersonBankAccountsChange, type PersonBankAccountsChangeInput, type PersonCertificatesArgs, type PersonChange, type PersonConnection, type PersonConnectionLeaveHoursEstimateArgs, type PersonCustomTablesArgs, type PersonDataImportLine, type PersonDataTransferConfigInput, type PersonDateOfBirthChange, type PersonDateOfBirthChangeInput, type PersonDocumentsArgs, type PersonEmergencyContactsChange, type PersonEmergencyContactsChangeInput, 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 QueryPersonArgs, type QueryPersonConnectionArgs, 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, SuperFundNomination, type Tag, TagColor, type TagInput, type Task, type TaskNotificationsArgs, type TaskTemplate, TaxEmploymentBasis, TaxFileNumberExemption, TaxResidencyStatus, type Template, type TemplateInput, type TemplateParameter, type TemplateParameterInput, type TemplateParameterInputValue, TemplateParameterType, type TemplateParameterValue, type TextDocumentField, type TextDocumentFieldConfigInput, type TextDocumentFieldInput, type UpdateLeaveRequestMutation, type UpdateLeaveRequestMutationVariables, type UpdateNoteAttachmentInput, type UpdatePersonConnectionMutation, type UpdatePersonConnectionMutationVariables, type UpdatePersonMutation, type UpdatePersonMutationVariables, type Upload, type User, type XeroAuBankAccount, type XeroAuEmployee, XeroAuEmploymentBasis, XeroAuGender, type XeroAuIntegration, type XeroAuIntegrationFeaturesArgs, XeroAuResidencyStatus, type XeroAuSuperFund, type XeroAuSuperMembership, XeroAuTfnExemptionType, type XeroLeaveEmployee, type XeroLeaveIntegration, type XeroLeaveIntegrationFeaturesArgs };
|
|
6293
|
+
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 BundledPerson, type BundledTemplate, type BundledTemplateInput, 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 Document, type DocumentField, type DocumentFieldConfigInput, type DocumentFieldInput, DocumentFieldResponder, type DocumentNotificationsArgs, type DocumentTemplate, type EmailNotificationSettings, type EmailNotificationSettingsInput, type Exact, ExpiryStatus, FieldPresence, Gender, type GenericIntegration, type GenericIntegrationFeaturesArgs, type GetApiTokensQuery, type GetApiTokensQueryVariables, type GetIntegrationQuery, type GetIntegrationQueryVariables, type GetLeaveRequestsQuery, type GetLeaveRequestsQueryVariables, type GetMyAppsQuery, type GetMyAppsQueryVariables, type GetPeopleQuery, type GetPeopleQueryVariables, type GetPersonConnectionsQuery, type GetPersonConnectionsQueryVariables, type Incremental, type InitializeIntegrationMutation, type InitializeIntegrationMutationVariables, type InputMaybe, type Integration, type IntegrationConnection, type IntegrationFeatures, type IntegrationFeaturesArgs, type IntegrationFeaturesInput, type IntegrationLog, type IntegrationLogInput, IntegrationStatus, type IntegrationSync, type IntegrationSyncEvent, IntegrationSyncEventType, IntegrationSyncStatus, IntegrationType, type Job, JobStatus, type KeypayBusiness, type KeypayEmployee, type KeypayEmployeeForm, type KeypayEmployeeFormNotificationsArgs, type KeypayEmployeeFormTemplate, KeypayEmployeeStatus, KeypayEmploymentType, KeypayGender, type KeypayIntegration, type KeypayIntegrationFeaturesArgs, type KeypayLeaveEmployee, type KeypayLeaveIntegration, type KeypayLeaveIntegrationFeaturesArgs, type LeaveBalance, type LeaveCategory, type LeaveCategoryInput, type LeaveHoursEstimate, type LeaveRequest, type LeaveRequestNotification, type LeaveRequestNotificationsArgs, LeaveRequestStatus, type Location, type Login, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Media, type MultiLineTextDocumentField, type MultiLineTextDocumentFieldConfigInput, type MultiLineTextDocumentFieldInput, type Mutation, type MutationAcceptLoginArgs, type MutationActivateIntegrationArgs, type MutationActivatePersonArgs, type MutationAddPeopleToBundlesArgs, type MutationAddPeopleToTagsArgs, type MutationAppendIntegrationLogArgs, type MutationApproveAssignmentArgs, type MutationApproveKeypayLeaveLeaveRequestArgs, type MutationApproveLeaveRequestArgs, type MutationApproveXeroLeaveRequestArgs, type MutationArchiveAssignmentArgs, type MutationArchiveBundleArgs, type MutationArchiveCustomTableArgs, type MutationArchiveIntegrationArgs, type MutationArchiveLocationArgs, type MutationArchiveNotesArgs, type MutationArchiveOrgArgs, type MutationArchivePersonArgs, type MutationArchiveReviewCycleArgs, type MutationArchiveSavedQuestionArgs, type MutationArchiveStandardReviewArgs, type MutationArchiveStandardReviewTemplateArgs, type MutationArchiveTemplateArgs, type MutationAssignAssignmentsArgs, type MutationAssignBasicAbnFormArgs, type MutationAssignBasicBankAccountFormArgs, type MutationAssignBasicEmergencyContactFormArgs, type MutationAssignBasicPersonalDetailsFormArgs, type MutationAssignBasicPreEmploymentFormArgs, type MutationAssignBasicSuperFormArgs, type MutationAssignBasicTaxFormArgs, type MutationAssignCertificateArgs, type MutationAssignDocumentArgs, type MutationAssignKeypayEmployeeFormArgs, type MutationAssignQuestionnaireArgs, type MutationAssignStandardReviewArgs, type MutationAssignTaskArgs, type MutationAuthorizeIntegrationArgs, type MutationCancelLeaveRequestArgs, type MutationCompleteIntegrationSyncArgs, type MutationCompletePasswordResetArgs, type MutationConfirmEmailArgs, type MutationConfirmProfileArgs, type MutationConfirmProviderArgs, type MutationCreateAccountArgs, type MutationCreateApiTokenArgs, type MutationCreateAssignmentsArgs, type MutationCreateBasicAbnFormArgs, type MutationCreateBasicAbnFormTemplateArgs, type MutationCreateBasicBankAccountFormArgs, type MutationCreateBasicBankAccountFormTemplateArgs, type MutationCreateBasicEmergencyContactFormArgs, type MutationCreateBasicEmergencyContactFormTemplateArgs, type MutationCreateBasicPersonalDetailsFormArgs, type MutationCreateBasicPersonalDetailsFormTemplateArgs, type MutationCreateBasicPreEmploymentFormArgs, type MutationCreateBasicPreEmploymentFormTemplateArgs, type MutationCreateBasicSuperFormArgs, type MutationCreateBasicSuperFormTemplateArgs, type MutationCreateBasicTaxFormArgs, type MutationCreateBasicTaxFormTemplateArgs, type MutationCreateBundleArgs, type MutationCreateBundledPersonArgs, type MutationCreateCertificateArgs, type MutationCreateCertificateTemplateArgs, type MutationCreateCustomTableArgs, type MutationCreateDataExportArgs, type MutationCreateDataImportArgs, type MutationCreateDocumentArgs, type MutationCreateDocumentTemplateArgs, type MutationCreateIntegrationArgs, type MutationCreateIntegrationLogArgs, type MutationCreateJobArgs, type MutationCreateKeypayEmployeeFormArgs, type MutationCreateKeypayEmployeeFormTemplateArgs, type MutationCreateKeypayLeaveLeaveRequestArgs, type MutationCreateLeaveRequestArgs, type MutationCreateLocalPersonConnectionsArgs, type MutationCreateLocationArgs, type MutationCreateLoginArgs, type MutationCreateManualDataImportArgs, type MutationCreateNoteArgs, type MutationCreateNoteAttachmentsArgs, type MutationCreateOrgArgs, type MutationCreatePersonArgs, type MutationCreatePersonConnectionArgs, type MutationCreatePersonDataImportLineArgs, type MutationCreatePositionArgs, type MutationCreateQuestionnaireArgs, type MutationCreateQuestionnaireTemplateArgs, type MutationCreateReviewCycleArgs, type MutationCreateSavedQuestionArgs, type MutationCreateStandaloneCertificateArgs, type MutationCreateStandaloneDocumentArgs, type MutationCreateStandaloneQuestionnaireArgs, 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 MutationDuplicateTemplateArgs, type MutationInitializeIntegrationArgs, type MutationInvitePeopleArgs, type MutationInvitePersonArgs, type MutationJoinOrgArgs, type MutationLogInArgs, type MutationLogInWithProviderArgs, type MutationMarkNotificationsReadArgs, type MutationMarkNotificationsUnreadArgs, type MutationPauseIntegrationArgs, type MutationProcessAssignmentArgs, type MutationProcessAssignmentsArgs, type MutationProcessLeaveRequestArgs, type MutationProcessStandardReviewArgs, type MutationReassignAssignmentArgs, type MutationReassignCertificateArgs, type MutationReassignTaskArgs, type MutationReinviteLoginArgs, type MutationReinvitePeopleArgs, type MutationReinvitePersonArgs, type MutationRemovePeopleFromBundlesArgs, type MutationRemovePeopleFromTagsArgs, type MutationRequestApprovalsArgs, type MutationRequestPasswordResetArgs, type MutationResetXeroAuIntegrationArgs, type MutationRestoreAssignmentArgs, type MutationRestoreBundleArgs, type MutationRestoreIntegrationArgs, type MutationRestoreNotesArgs, type MutationRestorePersonArgs, type MutationRestoreReviewCycleArgs, type MutationRestoreSavedQuestionArgs, type MutationRestoreStandardReviewArgs, type MutationRestoreStandardReviewTemplateArgs, type MutationRestoreTemplateArgs, type MutationScheduleStandardReviewArgs, type MutationSetActiveLoginArgs, type MutationSignUpArgs, type MutationSubmitBasicAbnFormArgs, type MutationSubmitBasicBankAccountFormArgs, type MutationSubmitBasicEmergencyContactFormArgs, type MutationSubmitBasicPersonalDetailsFormArgs, type MutationSubmitBasicPreEmploymentFormArgs, type MutationSubmitBasicSuperFormArgs, type MutationSubmitBasicTaxFormArgs, type MutationSubmitCertificateArgs, type MutationSubmitDocumentArgs, type MutationSubmitKeypayEmployeeFormArgs, type MutationSubmitQuestionnaireArgs, type MutationSubmitStandardReviewArgs, type MutationSubmitStandardReviewQuestionArgs, type MutationSubmitTaskArgs, type MutationTerminatePersonArgs, type MutationTriggerIntegrationSyncArgs, type MutationUnmatchPersonConnectionsArgs, type MutationUnpauseIntegrationArgs, type MutationUnscheduleStandardReviewArgs, type MutationUpdateAccountArgs, type MutationUpdateAssignmentArgs, type MutationUpdateAssignmentsArgs, type MutationUpdateBasicAbnFormTemplateArgs, type MutationUpdateBasicBankAccountFormTemplateArgs, type MutationUpdateBasicEmergencyContactFormTemplateArgs, type MutationUpdateBasicPersonalDetailsFormTemplateArgs, type MutationUpdateBasicPreEmploymentFormTemplateArgs, type MutationUpdateBasicSuperFormTemplateArgs, type MutationUpdateBasicTaxFormTemplateArgs, type MutationUpdateBundleArgs, type MutationUpdateCertificateArgs, type MutationUpdateCertificateTemplateArgs, type MutationUpdateCustomTableArgs, type MutationUpdateDocumentArgs, type MutationUpdateDocumentTemplateArgs, type MutationUpdateIntegrationArgs, type MutationUpdateJobArgs, type MutationUpdateKeypayEmployeeFormTemplateArgs, type MutationUpdateKeypayIntegrationArgs, type MutationUpdateKeypayLeaveIntegrationArgs, type MutationUpdateLocationArgs, type MutationUpdateNoteArgs, type MutationUpdateOnboardingAssignmentsArgs, type MutationUpdateOrgArgs, type MutationUpdatePaperworkAssignmentArgs, type MutationUpdatePersonArgs, type MutationUpdatePersonConnectionArgs, 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 Note, type NoteAttachment, type Notification, NotificationType, type Org, type OrgBundlesArgs, type OrgFeatures, type OrgFeaturesInput, type OrgIntegrationsArgs, type OrgLocationsArgs, type OrgPaperworkSummariesArgs, type OrgPeopleArgs, type OrgReviewCyclesArgs, type OrgSavedQuestionsArgs, type OrgTemplatesArgs, type PaperworkAssignment, type PaperworkAssignmentNotificationsArgs, type PaperworkSummary, PaperworkSummaryStatus, PayPeriod, type Person, type PersonAssignmentsArgs, type PersonBankAccountsChange, type PersonBankAccountsChangeInput, type PersonCertificatesArgs, type PersonChange, type PersonConnection, type PersonConnectionLeaveHoursEstimateArgs, 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 QueryPersonArgs, type QueryPersonConnectionArgs, 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, SuperFundNomination, type Tag, TagColor, type TagInput, type Task, type TaskNotificationsArgs, type TaskTemplate, TaxEmploymentBasis, TaxFileNumberExemption, TaxResidencyStatus, type Template, type TemplateInput, type TemplateParameter, type TemplateParameterInput, type TemplateParameterInputValue, TemplateParameterType, type TemplateParameterValue, type TextDocumentField, type TextDocumentFieldConfigInput, type TextDocumentFieldInput, type UpdateLeaveRequestMutation, type UpdateLeaveRequestMutationVariables, type UpdateNoteAttachmentInput, type UpdatePersonConnectionMutation, type UpdatePersonConnectionMutationVariables, type UpdatePersonMutation, type UpdatePersonMutationVariables, type Upload, type User, type XeroAuBankAccount, type XeroAuEmployee, XeroAuEmploymentBasis, XeroAuGender, type XeroAuIntegration, type XeroAuIntegrationFeaturesArgs, XeroAuResidencyStatus, type XeroAuSuperFund, type XeroAuSuperMembership, XeroAuTfnExemptionType, type XeroLeaveEmployee, type XeroLeaveIntegration, type XeroLeaveIntegrationFeaturesArgs };
|