@worknice/js-sdk 0.2.0-rc.1 → 0.2.0-rc.3
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-Cobjq3B-.d.ts → _types-Crem3H1y.d.ts} +54 -15
- package/dist/api/WorkniceIntegrationLogger.d.ts +1 -1
- package/dist/api/_generated.d.ts +27 -7
- 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/createWorkniceClient.js +2 -0
- package/dist/api/createWorkniceClient.js.map +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/createPerson.d.ts +13 -0
- package/dist/api/operations/createPerson.js +24 -0
- package/dist/api/operations/createPerson.js.map +1 -0
- package/dist/api/operations/createPersonConnection.d.ts +21 -8
- package/dist/api/operations/createPersonConnection.js +2 -1
- package/dist/api/operations/createPersonConnection.js.map +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/getApiTokens.d.ts +1 -1
- package/dist/api/operations/getIntegration.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/getPersonConnections.d.ts +15 -8
- package/dist/api/operations/getPersonConnections.js +2 -1
- package/dist/api/operations/getPersonConnections.js.map +1 -1
- package/dist/api/operations/initializeIntegration.d.ts +1 -1
- package/dist/api/operations/updatePerson.d.ts +1 -1
- package/dist/api/operations/updatePersonConnection.d.ts +14 -1
- package/dist/api/operations/updatePersonConnection.js +1 -0
- package/dist/api/operations/updatePersonConnection.js.map +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/handleGetLeaveBalancesWebhook.d.ts +1 -1
- package/dist/helpers/handleGetLeaveCategoriesWebhook.d.ts +1 -1
- package/dist/helpers/handleGetLeaveRequestHoursWebhook.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 +15 -1
- package/dist/helpers/handleTriggerIntegrationSyncWebhook.js +39 -13
- package/dist/helpers/handleTriggerIntegrationSyncWebhook.js.map +1 -1
- package/dist/helpers/index.d.ts +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Exact, Scalars, InputMaybe, ConnectionStatus, PersonBankAccountsChangeInput, PersonDataTransferConfigInput, PersonDateOfBirthChangeInput, PersonEmergencyContactsChangeInput, PersonFullNameChangeInput, PersonGenderChangeInput, PersonPersonalEmailChangeInput, PersonPersonalPhoneChangeInput, PersonPostalAddressChangeInput, PersonResidentialAddressChangeInput, PersonSuperFundsChangeInput, PersonTaxDetailsChangeInput, PersonTenureChangeInput, AppCategory, AppStatus, IntegrationStatus, AllocationMethod, Gender, TaxResidencyStatus, SuperFundNomination, TaxFileNumberExemption } from './api/_generated.js';
|
|
1
|
+
import { Exact, Scalars, InputMaybe, PersonRole, ConnectionStatus, PersonBankAccountsChangeInput, PersonDataTransferConfigInput, PersonDateOfBirthChangeInput, PersonEmergencyContactsChangeInput, PersonFullNameChangeInput, PersonGenderChangeInput, PersonPersonalEmailChangeInput, PersonPersonalPhoneChangeInput, PersonPostalAddressChangeInput, PersonResidentialAddressChangeInput, PersonSuperFundsChangeInput, PersonTaxDetailsChangeInput, PersonTenureChangeInput, AppCategory, AppStatus, IntegrationStatus, AllocationMethod, Gender, TaxResidencyStatus, SuperFundNomination, TaxFileNumberExemption } 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>>;
|
|
@@ -63,12 +63,20 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
63
63
|
}>, fetchOptions?: FetchOptions) => Promise<{
|
|
64
64
|
id: string;
|
|
65
65
|
}>;
|
|
66
|
+
createPerson: (variables: Exact<{
|
|
67
|
+
displayName: Scalars["String"]["input"];
|
|
68
|
+
role: PersonRole;
|
|
69
|
+
}>, fetchOptions?: FetchOptions) => Promise<{
|
|
70
|
+
id: string;
|
|
71
|
+
}>;
|
|
66
72
|
createPersonConnection: (variables: {
|
|
67
73
|
integrationId: string;
|
|
68
74
|
personId: string;
|
|
69
75
|
remote: {
|
|
76
|
+
description?: string | null;
|
|
70
77
|
id: string;
|
|
71
78
|
name: string;
|
|
79
|
+
url?: string | null;
|
|
72
80
|
};
|
|
73
81
|
status: ConnectionStatus.Connected;
|
|
74
82
|
} | {
|
|
@@ -79,15 +87,19 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
79
87
|
integrationId: string;
|
|
80
88
|
personId: string;
|
|
81
89
|
remote: {
|
|
90
|
+
description?: string | null;
|
|
82
91
|
id: string;
|
|
83
92
|
name: string;
|
|
93
|
+
url?: string | null;
|
|
84
94
|
};
|
|
85
95
|
status: ConnectionStatus.Merged;
|
|
86
96
|
} | {
|
|
87
97
|
integrationId: string;
|
|
88
98
|
remote: {
|
|
99
|
+
description?: string | null;
|
|
89
100
|
id: string;
|
|
90
101
|
name: string;
|
|
102
|
+
url?: string | null;
|
|
91
103
|
};
|
|
92
104
|
status: ConnectionStatus.RemoteOnly;
|
|
93
105
|
}, fetchOptions?: FetchOptions) => Promise<({
|
|
@@ -102,15 +114,17 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
102
114
|
updatedAt: string;
|
|
103
115
|
} | null;
|
|
104
116
|
remote?: {
|
|
105
|
-
|
|
117
|
+
description?: string | null;
|
|
106
118
|
id: string;
|
|
119
|
+
name: string;
|
|
107
120
|
url?: string | null;
|
|
108
121
|
} | null;
|
|
109
122
|
} & {
|
|
110
123
|
status: ConnectionStatus.Connected;
|
|
111
124
|
remote: {
|
|
112
|
-
|
|
125
|
+
description?: string | null;
|
|
113
126
|
id: string;
|
|
127
|
+
name: string;
|
|
114
128
|
url?: string | null;
|
|
115
129
|
};
|
|
116
130
|
person: {
|
|
@@ -130,15 +144,17 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
130
144
|
updatedAt: string;
|
|
131
145
|
} | null;
|
|
132
146
|
remote?: {
|
|
133
|
-
|
|
147
|
+
description?: string | null;
|
|
134
148
|
id: string;
|
|
149
|
+
name: string;
|
|
135
150
|
url?: string | null;
|
|
136
151
|
} | null;
|
|
137
152
|
} & {
|
|
138
153
|
status: ConnectionStatus.Merged;
|
|
139
154
|
remote: {
|
|
140
|
-
|
|
155
|
+
description?: string | null;
|
|
141
156
|
id: string;
|
|
157
|
+
name: string;
|
|
142
158
|
url?: string | null;
|
|
143
159
|
};
|
|
144
160
|
person: {
|
|
@@ -158,8 +174,9 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
158
174
|
updatedAt: string;
|
|
159
175
|
} | null;
|
|
160
176
|
remote?: {
|
|
161
|
-
|
|
177
|
+
description?: string | null;
|
|
162
178
|
id: string;
|
|
179
|
+
name: string;
|
|
163
180
|
url?: string | null;
|
|
164
181
|
} | null;
|
|
165
182
|
} & {
|
|
@@ -182,15 +199,17 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
182
199
|
updatedAt: string;
|
|
183
200
|
} | null;
|
|
184
201
|
remote?: {
|
|
185
|
-
|
|
202
|
+
description?: string | null;
|
|
186
203
|
id: string;
|
|
204
|
+
name: string;
|
|
187
205
|
url?: string | null;
|
|
188
206
|
} | null;
|
|
189
207
|
} & {
|
|
190
208
|
status: ConnectionStatus.RemoteOnly;
|
|
191
209
|
remote: {
|
|
192
|
-
|
|
210
|
+
description?: string | null;
|
|
193
211
|
id: string;
|
|
212
|
+
name: string;
|
|
194
213
|
url?: string | null;
|
|
195
214
|
};
|
|
196
215
|
person: null;
|
|
@@ -415,15 +434,17 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
415
434
|
updatedAt: string;
|
|
416
435
|
} | null;
|
|
417
436
|
remote?: {
|
|
418
|
-
|
|
437
|
+
description?: string | null;
|
|
419
438
|
id: string;
|
|
439
|
+
name: string;
|
|
420
440
|
url?: string | null;
|
|
421
441
|
} | null;
|
|
422
442
|
} & {
|
|
423
443
|
status: ConnectionStatus.Connected;
|
|
424
444
|
remote: {
|
|
425
|
-
|
|
445
|
+
description?: string | null;
|
|
426
446
|
id: string;
|
|
447
|
+
name: string;
|
|
427
448
|
url?: string | null;
|
|
428
449
|
};
|
|
429
450
|
person: {
|
|
@@ -443,15 +464,17 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
443
464
|
updatedAt: string;
|
|
444
465
|
} | null;
|
|
445
466
|
remote?: {
|
|
446
|
-
|
|
467
|
+
description?: string | null;
|
|
447
468
|
id: string;
|
|
469
|
+
name: string;
|
|
448
470
|
url?: string | null;
|
|
449
471
|
} | null;
|
|
450
472
|
} & {
|
|
451
473
|
status: ConnectionStatus.Merged;
|
|
452
474
|
remote: {
|
|
453
|
-
|
|
475
|
+
description?: string | null;
|
|
454
476
|
id: string;
|
|
477
|
+
name: string;
|
|
455
478
|
url?: string | null;
|
|
456
479
|
};
|
|
457
480
|
person: {
|
|
@@ -471,8 +494,9 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
471
494
|
updatedAt: string;
|
|
472
495
|
} | null;
|
|
473
496
|
remote?: {
|
|
474
|
-
|
|
497
|
+
description?: string | null;
|
|
475
498
|
id: string;
|
|
499
|
+
name: string;
|
|
476
500
|
url?: string | null;
|
|
477
501
|
} | null;
|
|
478
502
|
} & {
|
|
@@ -495,15 +519,17 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
495
519
|
updatedAt: string;
|
|
496
520
|
} | null;
|
|
497
521
|
remote?: {
|
|
498
|
-
|
|
522
|
+
description?: string | null;
|
|
499
523
|
id: string;
|
|
524
|
+
name: string;
|
|
500
525
|
url?: string | null;
|
|
501
526
|
} | null;
|
|
502
527
|
} & {
|
|
503
528
|
status: ConnectionStatus.RemoteOnly;
|
|
504
529
|
remote: {
|
|
505
|
-
|
|
530
|
+
description?: string | null;
|
|
506
531
|
id: string;
|
|
532
|
+
name: string;
|
|
507
533
|
url?: string | null;
|
|
508
534
|
};
|
|
509
535
|
person: null;
|
|
@@ -575,8 +601,10 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
575
601
|
personConnectionId: string;
|
|
576
602
|
personId: string;
|
|
577
603
|
remote: {
|
|
604
|
+
description?: string | null;
|
|
578
605
|
id: string;
|
|
579
606
|
name: string;
|
|
607
|
+
url?: string | null;
|
|
580
608
|
};
|
|
581
609
|
status: ConnectionStatus.Connected;
|
|
582
610
|
} | {
|
|
@@ -587,15 +615,19 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
587
615
|
personConnectionId: string;
|
|
588
616
|
personId: string;
|
|
589
617
|
remote: {
|
|
618
|
+
description?: string | null;
|
|
590
619
|
id: string;
|
|
591
620
|
name: string;
|
|
621
|
+
url?: string | null;
|
|
592
622
|
};
|
|
593
623
|
status: ConnectionStatus.Merged;
|
|
594
624
|
} | {
|
|
595
625
|
personConnectionId: string;
|
|
596
626
|
remote: {
|
|
627
|
+
description?: string | null;
|
|
597
628
|
id: string;
|
|
598
629
|
name: string;
|
|
630
|
+
url?: string | null;
|
|
599
631
|
};
|
|
600
632
|
status: ConnectionStatus.RemoteOnly;
|
|
601
633
|
}, fetchOptions?: FetchOptions) => Promise<({
|
|
@@ -610,6 +642,7 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
610
642
|
updatedAt: string;
|
|
611
643
|
} | null;
|
|
612
644
|
remote?: {
|
|
645
|
+
description?: string | null;
|
|
613
646
|
name: string;
|
|
614
647
|
id: string;
|
|
615
648
|
url?: string | null;
|
|
@@ -617,6 +650,7 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
617
650
|
} & {
|
|
618
651
|
status: ConnectionStatus.Connected;
|
|
619
652
|
remote: {
|
|
653
|
+
description?: string | null;
|
|
620
654
|
name: string;
|
|
621
655
|
id: string;
|
|
622
656
|
url?: string | null;
|
|
@@ -638,6 +672,7 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
638
672
|
updatedAt: string;
|
|
639
673
|
} | null;
|
|
640
674
|
remote?: {
|
|
675
|
+
description?: string | null;
|
|
641
676
|
name: string;
|
|
642
677
|
id: string;
|
|
643
678
|
url?: string | null;
|
|
@@ -645,6 +680,7 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
645
680
|
} & {
|
|
646
681
|
status: ConnectionStatus.Merged;
|
|
647
682
|
remote: {
|
|
683
|
+
description?: string | null;
|
|
648
684
|
name: string;
|
|
649
685
|
id: string;
|
|
650
686
|
url?: string | null;
|
|
@@ -666,6 +702,7 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
666
702
|
updatedAt: string;
|
|
667
703
|
} | null;
|
|
668
704
|
remote?: {
|
|
705
|
+
description?: string | null;
|
|
669
706
|
name: string;
|
|
670
707
|
id: string;
|
|
671
708
|
url?: string | null;
|
|
@@ -690,6 +727,7 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
690
727
|
updatedAt: string;
|
|
691
728
|
} | null;
|
|
692
729
|
remote?: {
|
|
730
|
+
description?: string | null;
|
|
693
731
|
name: string;
|
|
694
732
|
id: string;
|
|
695
733
|
url?: string | null;
|
|
@@ -697,6 +735,7 @@ declare const createWorkniceClient: (clientConfig?: ClientConfig) => {
|
|
|
697
735
|
} & {
|
|
698
736
|
status: ConnectionStatus.RemoteOnly;
|
|
699
737
|
remote: {
|
|
738
|
+
description?: string | null;
|
|
700
739
|
name: string;
|
|
701
740
|
id: string;
|
|
702
741
|
url?: string | null;
|
package/dist/api/_generated.d.ts
CHANGED
|
@@ -977,11 +977,15 @@ type ChoiceDocumentFieldOptionInput = {
|
|
|
977
977
|
value: Scalars['String']['input'];
|
|
978
978
|
};
|
|
979
979
|
type ConnectionRemote = {
|
|
980
|
+
/** Useful details that can be used to identify the remote record. Optionally tab-delimited. */
|
|
981
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
980
982
|
id: Scalars['String']['output'];
|
|
981
983
|
name: Scalars['String']['output'];
|
|
982
984
|
url?: Maybe<Scalars['String']['output']>;
|
|
983
985
|
};
|
|
984
986
|
type ConnectionRemoteInput = {
|
|
987
|
+
/** Useful details that can be used to identify the remote record. Optionally tab-delimited. */
|
|
988
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
985
989
|
id: Scalars['String']['input'];
|
|
986
990
|
name: Scalars['String']['input'];
|
|
987
991
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5283,6 +5287,15 @@ type CreateDataImportMutation = {
|
|
|
5283
5287
|
id: string;
|
|
5284
5288
|
};
|
|
5285
5289
|
};
|
|
5290
|
+
type CreatePersonMutationVariables = Exact<{
|
|
5291
|
+
displayName: Scalars['String']['input'];
|
|
5292
|
+
role: PersonRole;
|
|
5293
|
+
}>;
|
|
5294
|
+
type CreatePersonMutation = {
|
|
5295
|
+
createPerson: {
|
|
5296
|
+
id: string;
|
|
5297
|
+
};
|
|
5298
|
+
};
|
|
5286
5299
|
type CreatePersonConnectionMutationVariables = Exact<{
|
|
5287
5300
|
integrationId: Scalars['ID']['input'];
|
|
5288
5301
|
remote?: InputMaybe<ConnectionRemoteInput>;
|
|
@@ -5302,8 +5315,9 @@ type CreatePersonConnectionMutation = {
|
|
|
5302
5315
|
updatedAt: string;
|
|
5303
5316
|
} | null;
|
|
5304
5317
|
remote?: {
|
|
5305
|
-
|
|
5318
|
+
description?: string | null;
|
|
5306
5319
|
id: string;
|
|
5320
|
+
name: string;
|
|
5307
5321
|
url?: string | null;
|
|
5308
5322
|
} | null;
|
|
5309
5323
|
};
|
|
@@ -5537,8 +5551,9 @@ type GetPersonConnectionsQuery = {
|
|
|
5537
5551
|
updatedAt: string;
|
|
5538
5552
|
} | null;
|
|
5539
5553
|
remote?: {
|
|
5540
|
-
|
|
5554
|
+
description?: string | null;
|
|
5541
5555
|
id: string;
|
|
5556
|
+
name: string;
|
|
5542
5557
|
url?: string | null;
|
|
5543
5558
|
} | null;
|
|
5544
5559
|
}>;
|
|
@@ -5555,8 +5570,9 @@ type GetPersonConnectionsQuery = {
|
|
|
5555
5570
|
updatedAt: string;
|
|
5556
5571
|
} | null;
|
|
5557
5572
|
remote?: {
|
|
5558
|
-
|
|
5573
|
+
description?: string | null;
|
|
5559
5574
|
id: string;
|
|
5575
|
+
name: string;
|
|
5560
5576
|
url?: string | null;
|
|
5561
5577
|
} | null;
|
|
5562
5578
|
}>;
|
|
@@ -5573,8 +5589,9 @@ type GetPersonConnectionsQuery = {
|
|
|
5573
5589
|
updatedAt: string;
|
|
5574
5590
|
} | null;
|
|
5575
5591
|
remote?: {
|
|
5576
|
-
|
|
5592
|
+
description?: string | null;
|
|
5577
5593
|
id: string;
|
|
5594
|
+
name: string;
|
|
5578
5595
|
url?: string | null;
|
|
5579
5596
|
} | null;
|
|
5580
5597
|
}>;
|
|
@@ -5591,8 +5608,9 @@ type GetPersonConnectionsQuery = {
|
|
|
5591
5608
|
updatedAt: string;
|
|
5592
5609
|
} | null;
|
|
5593
5610
|
remote?: {
|
|
5594
|
-
|
|
5611
|
+
description?: string | null;
|
|
5595
5612
|
id: string;
|
|
5613
|
+
name: string;
|
|
5596
5614
|
url?: string | null;
|
|
5597
5615
|
} | null;
|
|
5598
5616
|
}>;
|
|
@@ -5609,8 +5627,9 @@ type GetPersonConnectionsQuery = {
|
|
|
5609
5627
|
updatedAt: string;
|
|
5610
5628
|
} | null;
|
|
5611
5629
|
remote?: {
|
|
5612
|
-
|
|
5630
|
+
description?: string | null;
|
|
5613
5631
|
id: string;
|
|
5632
|
+
name: string;
|
|
5614
5633
|
url?: string | null;
|
|
5615
5634
|
} | null;
|
|
5616
5635
|
}>;
|
|
@@ -5717,6 +5736,7 @@ type UpdatePersonConnectionMutation = {
|
|
|
5717
5736
|
updatedAt: string;
|
|
5718
5737
|
} | null;
|
|
5719
5738
|
remote?: {
|
|
5739
|
+
description?: string | null;
|
|
5720
5740
|
name: string;
|
|
5721
5741
|
id: string;
|
|
5722
5742
|
url?: string | null;
|
|
@@ -5724,4 +5744,4 @@ type UpdatePersonConnectionMutation = {
|
|
|
5724
5744
|
};
|
|
5725
5745
|
};
|
|
5726
5746
|
|
|
5727
|
-
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 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 CreatePersonConnectionMutation, type CreatePersonConnectionMutationVariables, type CreatePersonDataImportLineMutation, type CreatePersonDataImportLineMutationVariables, 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, type Form, type FormNotificationsArgs, FormOrderBy, FormType, Gender, type GenericIntegration, type GetApiTokensQuery, type GetApiTokensQueryVariables, type GetIntegrationQuery, type GetIntegrationQueryVariables, 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 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 KeypayLeaveEmployee, type KeypayLeaveIntegration, 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 MutationArchiveIntegrationArgs, 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 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 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 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 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 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 MutationUpdateCertificateTemplateArgs, 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 Notification, NotificationType, type Org, type OrgBundlesArgs, type OrgFeatures, type OrgFeaturesInput, type OrgIntegrationsArgs, type OrgPeopleArgs, type OrgReviewCyclesArgs, type OrgSavedQuestionsArgs, type OrgTemplatesArgs, type PaperworkAssignment, type PaperworkAssignmentNotificationsArgs, type PaperworkSummary, PayPeriod, type Person, type PersonAssignmentsArgs, type PersonBankAccountsChange, type PersonBankAccountsChangeInput, type PersonCertificatesArgs, type PersonChange, type PersonConnection, type PersonConnectionLeaveHoursEstimateArgs, type PersonDataImportLine, type PersonDataTransferConfigInput, type PersonDateOfBirthChange, type PersonDateOfBirthChangeInput, type PersonDocumentsArgs, type PersonEmergencyContactsChange, type PersonEmergencyContactsChangeInput, type PersonFormsArgs, 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 QueryDataImportArgs, type QueryDataImportLineArgs, type QueryDocumentArgs, type QueryDocumentTemplateArgs, type QueryFormArgs, 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 UpdatePersonConnectionMutation, type UpdatePersonConnectionMutationVariables, type UpdatePersonMutation, type UpdatePersonMutationVariables, type Upload, type User, type XeroAuBankAccount, type XeroAuEmployee, XeroAuEmploymentBasis, XeroAuGender, type XeroAuIntegration, XeroAuResidencyStatus, type XeroAuSuperFund, type XeroAuSuperMembership, XeroAuTfnExemptionType, type XeroLeaveEmployee, type XeroLeaveIntegration };
|
|
5747
|
+
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 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 CreatePersonConnectionMutation, type CreatePersonConnectionMutationVariables, type CreatePersonDataImportLineMutation, type CreatePersonDataImportLineMutationVariables, type CreatePersonMutation, type CreatePersonMutationVariables, 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, type Form, type FormNotificationsArgs, FormOrderBy, FormType, Gender, type GenericIntegration, type GetApiTokensQuery, type GetApiTokensQueryVariables, type GetIntegrationQuery, type GetIntegrationQueryVariables, 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 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 KeypayLeaveEmployee, type KeypayLeaveIntegration, 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 MutationArchiveIntegrationArgs, 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 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 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 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 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 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 MutationUpdateCertificateTemplateArgs, 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 Notification, NotificationType, type Org, type OrgBundlesArgs, type OrgFeatures, type OrgFeaturesInput, type OrgIntegrationsArgs, type OrgPeopleArgs, type OrgReviewCyclesArgs, type OrgSavedQuestionsArgs, type OrgTemplatesArgs, type PaperworkAssignment, type PaperworkAssignmentNotificationsArgs, type PaperworkSummary, PayPeriod, type Person, type PersonAssignmentsArgs, type PersonBankAccountsChange, type PersonBankAccountsChangeInput, type PersonCertificatesArgs, type PersonChange, type PersonConnection, type PersonConnectionLeaveHoursEstimateArgs, type PersonDataImportLine, type PersonDataTransferConfigInput, type PersonDateOfBirthChange, type PersonDateOfBirthChangeInput, type PersonDocumentsArgs, type PersonEmergencyContactsChange, type PersonEmergencyContactsChangeInput, type PersonFormsArgs, 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 QueryDataImportArgs, type QueryDataImportLineArgs, type QueryDocumentArgs, type QueryDocumentTemplateArgs, type QueryFormArgs, 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 UpdatePersonConnectionMutation, type UpdatePersonConnectionMutationVariables, type UpdatePersonMutation, type UpdatePersonMutationVariables, type Upload, type User, type XeroAuBankAccount, type XeroAuEmployee, XeroAuEmploymentBasis, XeroAuGender, type XeroAuIntegration, XeroAuResidencyStatus, type XeroAuSuperFund, type XeroAuSuperMembership, XeroAuTfnExemptionType, type XeroLeaveEmployee, type XeroLeaveIntegration };
|