@worknice/js-sdk 0.53.0 → 0.54.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/_generated.d.ts +5 -350
- package/dist/api/_generated.js +0 -26
- package/dist/api/_generated.js.map +1 -1
- package/dist/api/_types.d.ts +1 -1
- package/package.json +3 -3
package/dist/api/_generated.d.ts
CHANGED
|
@@ -248,7 +248,7 @@ type Assignment = {
|
|
|
248
248
|
processor?: Maybe<Person>;
|
|
249
249
|
/** The person who is receiving this assignment's submission. This is typically a person with an admin role. */
|
|
250
250
|
responsible?: Maybe<Person>;
|
|
251
|
-
/** The person this assignment is about. For many assignments this will be the same as the owner, but for
|
|
251
|
+
/** The person this assignment is about. For many assignments this will be the same as the owner, but for tasks the subject may be different from the owner. */
|
|
252
252
|
subject?: Maybe<Person>;
|
|
253
253
|
submittedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
254
254
|
/** The person who submitted this assignment. */
|
|
@@ -278,7 +278,7 @@ declare enum AssignmentRelation {
|
|
|
278
278
|
Owner = "OWNER",
|
|
279
279
|
/** The person who is receiving an assignment's submission. This is typically a person with an admin role. */
|
|
280
280
|
Responsible = "RESPONSIBLE",
|
|
281
|
-
/** The person the assignment is about. For many assignments this will be the same as the owner, but for
|
|
281
|
+
/** The person the assignment is about. For many assignments this will be the same as the owner, but for tasks the subject may be different from the owner. */
|
|
282
282
|
Subject = "SUBJECT"
|
|
283
283
|
}
|
|
284
284
|
declare enum AssignmentStatus {
|
|
@@ -296,7 +296,6 @@ declare enum AssignmentType {
|
|
|
296
296
|
Document = "DOCUMENT",
|
|
297
297
|
Form = "FORM",
|
|
298
298
|
Questionnaire = "QUESTIONNAIRE",
|
|
299
|
-
Review = "REVIEW",
|
|
300
299
|
Task = "TASK"
|
|
301
300
|
}
|
|
302
301
|
declare enum AuthMethod {
|
|
@@ -1375,9 +1374,6 @@ type EmailNotificationSettings = {
|
|
|
1375
1374
|
performanceReviewSelfReviewAssigned: Scalars['Boolean']['output'];
|
|
1376
1375
|
performanceReviewSelfReviewOverdue: Scalars['Boolean']['output'];
|
|
1377
1376
|
performanceReviewSelfReviewSubmitted: Scalars['Boolean']['output'];
|
|
1378
|
-
reviewAssigned: Scalars['Boolean']['output'];
|
|
1379
|
-
reviewScheduled: Scalars['Boolean']['output'];
|
|
1380
|
-
reviewSubmitted: Scalars['Boolean']['output'];
|
|
1381
1377
|
};
|
|
1382
1378
|
type EmailNotificationSettingsInput = {
|
|
1383
1379
|
assignmentApproved?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -1387,7 +1383,6 @@ type EmailNotificationSettingsInput = {
|
|
|
1387
1383
|
leaveRequestApproved?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1388
1384
|
leaveRequestCancelled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1389
1385
|
leaveRequestDenied?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1390
|
-
reviewSubmitted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1391
1386
|
};
|
|
1392
1387
|
declare enum ExpiryStatus {
|
|
1393
1388
|
/** Has not expired and is not expiring soon. */
|
|
@@ -2198,10 +2193,7 @@ type Mutation = {
|
|
|
2198
2193
|
archivePerformanceReviewTemplateQuestion: PerformanceReviewTemplateQuestion;
|
|
2199
2194
|
archivePerson: Person;
|
|
2200
2195
|
archivePosition: Position;
|
|
2201
|
-
archiveReviewCycle: ReviewCycle;
|
|
2202
2196
|
archiveSavedQuestion: SavedQuestion;
|
|
2203
|
-
archiveStandardReview: StandardReview;
|
|
2204
|
-
archiveStandardReviewTemplate: StandardReviewTemplate;
|
|
2205
2197
|
/** Archive a template. */
|
|
2206
2198
|
archiveTemplate: Template;
|
|
2207
2199
|
archiveWorkflow: Workflow;
|
|
@@ -2230,8 +2222,6 @@ type Mutation = {
|
|
|
2230
2222
|
assignKeypayEmployeeForm: KeypayEmployeeForm;
|
|
2231
2223
|
/** Transition a questionnaire from 'DRAFT' to 'ASSIGNED'. This will notify the owner of the document that it has been assigned to them. */
|
|
2232
2224
|
assignQuestionnaire: Questionnaire;
|
|
2233
|
-
/** Transitions the review from 'DRAFT' to 'ASSIGNED'. This will notify the reviewer that the review needs to be scheduled. */
|
|
2234
|
-
assignStandardReview: StandardReview;
|
|
2235
2225
|
/** Transition a task from 'DRAFT' to 'ASSIGNED'. This will notify the owner of the document that it has been assigned to them. */
|
|
2236
2226
|
assignTask: Task;
|
|
2237
2227
|
/** Transitions an integration with an 'UNINITIALIZED' or 'UNAUTHORIZED' status to an 'UNCONFIGURED' status. */
|
|
@@ -2319,14 +2309,8 @@ type Mutation = {
|
|
|
2319
2309
|
createProcessedDocument: Document;
|
|
2320
2310
|
createQuestionnaire: Questionnaire;
|
|
2321
2311
|
createQuestionnaireTemplate: QuestionnaireTemplate;
|
|
2322
|
-
createReviewCycle: ReviewCycle;
|
|
2323
2312
|
createSavedQuestion: SavedQuestion;
|
|
2324
|
-
createStandaloneStandardReview: StandardReview;
|
|
2325
2313
|
createStandaloneTask: Task;
|
|
2326
|
-
createStandardReview: StandardReview;
|
|
2327
|
-
createStandardReviewQuestion: StandardReviewQuestion;
|
|
2328
|
-
createStandardReviewTemplate: StandardReviewTemplate;
|
|
2329
|
-
createStandardReviewTemplateQuestion: StandardReviewTemplateQuestion;
|
|
2330
2314
|
/** @deprecated Use 'createTags' instead. */
|
|
2331
2315
|
createTag: Tag;
|
|
2332
2316
|
createTags: Array<Tag>;
|
|
@@ -2347,8 +2331,6 @@ type Mutation = {
|
|
|
2347
2331
|
deletePersonConnections: Scalars['Boolean']['output'];
|
|
2348
2332
|
/** @deprecated Do not use. This mutation is temporary. */
|
|
2349
2333
|
deletePosition: Scalars['Boolean']['output'];
|
|
2350
|
-
deleteStandardReviewQuestion: Scalars['Boolean']['output'];
|
|
2351
|
-
deleteStandardReviewTemplateQuestion: Scalars['Boolean']['output'];
|
|
2352
2334
|
deleteTag: Scalars['Boolean']['output'];
|
|
2353
2335
|
deleteWorkflowGroup: Scalars['Boolean']['output'];
|
|
2354
2336
|
deleteWorkflowStep: Scalars['Boolean']['output'];
|
|
@@ -2391,7 +2373,6 @@ type Mutation = {
|
|
|
2391
2373
|
processAssignment: Assignment;
|
|
2392
2374
|
processAssignments: Array<Assignment>;
|
|
2393
2375
|
processLeaveRequest: LeaveRequest;
|
|
2394
|
-
processStandardReview: StandardReview;
|
|
2395
2376
|
/** An invite can only be sent to a person with an 'ONBOARDING' or 'ACTIVE' status. */
|
|
2396
2377
|
reinviteLogin: Login;
|
|
2397
2378
|
/** People can only be reinvited if they have a status of 'ONBOARDING', have at least one login and haven't already accepted any of their logins. */
|
|
@@ -2418,13 +2399,9 @@ type Mutation = {
|
|
|
2418
2399
|
restoreNotes: Array<Note>;
|
|
2419
2400
|
restorePaperworkType: PaperworkType;
|
|
2420
2401
|
restorePerson: Person;
|
|
2421
|
-
restoreReviewCycle: ReviewCycle;
|
|
2422
2402
|
restoreSavedQuestion: SavedQuestion;
|
|
2423
|
-
restoreStandardReview: StandardReview;
|
|
2424
|
-
restoreStandardReviewTemplate: StandardReviewTemplate;
|
|
2425
2403
|
/** Restores a previously archived template. */
|
|
2426
2404
|
restoreTemplate: Template;
|
|
2427
|
-
scheduleStandardReview: StandardReview;
|
|
2428
2405
|
/** Switches the current user to the given person. The new person must be associated with the current user. If no ID is provided, the user will have no active person set. */
|
|
2429
2406
|
setActiveLogin?: Maybe<Login>;
|
|
2430
2407
|
setPersonCustomFields: Array<PersonCustomField>;
|
|
@@ -2443,8 +2420,6 @@ type Mutation = {
|
|
|
2443
2420
|
submitKeypayEmployeeForm: KeypayEmployeeForm;
|
|
2444
2421
|
submitPerformanceReview: PerformanceReview;
|
|
2445
2422
|
submitQuestionnaire: Questionnaire;
|
|
2446
|
-
submitStandardReview: StandardReview;
|
|
2447
|
-
submitStandardReviewQuestion: StandardReviewQuestion;
|
|
2448
2423
|
submitTask: Task;
|
|
2449
2424
|
terminatePerson: Person;
|
|
2450
2425
|
transferResponsibility: Scalars['Boolean']['output'];
|
|
@@ -2455,8 +2430,6 @@ type Mutation = {
|
|
|
2455
2430
|
unmatchPersonConnections: Scalars['Boolean']['output'];
|
|
2456
2431
|
/** Transitions an integration from 'PAUSED' to 'ACTIVE'. This can only be done by a user — a bot cannot unpause an integration. */
|
|
2457
2432
|
unpauseIntegration: Integration;
|
|
2458
|
-
/** Transitions a review with a 'SCHEDULED' status back to an 'ASSIGNED' status. */
|
|
2459
|
-
unscheduleStandardReview: StandardReview;
|
|
2460
2433
|
updateAccount: Account;
|
|
2461
2434
|
updateAssignment: Assignment;
|
|
2462
2435
|
updateAssignments: Array<Assignment>;
|
|
@@ -2502,12 +2475,7 @@ type Mutation = {
|
|
|
2502
2475
|
/** Only a draft questionnaires can be updated. */
|
|
2503
2476
|
updateQuestionnaire: Questionnaire;
|
|
2504
2477
|
updateQuestionnaireTemplate: QuestionnaireTemplate;
|
|
2505
|
-
updateReviewCycle: ReviewCycle;
|
|
2506
2478
|
updateSavedQuestion: SavedQuestion;
|
|
2507
|
-
updateStandardReview: StandardReview;
|
|
2508
|
-
updateStandardReviewQuestion: StandardReviewQuestion;
|
|
2509
|
-
updateStandardReviewTemplate: StandardReviewTemplate;
|
|
2510
|
-
updateStandardReviewTemplateQuestion: StandardReviewTemplateQuestion;
|
|
2511
2479
|
updateTag: Tag;
|
|
2512
2480
|
updateTask: Task;
|
|
2513
2481
|
updateTaskTemplate: TaskTemplate;
|
|
@@ -2630,18 +2598,9 @@ type MutationArchivePersonArgs = {
|
|
|
2630
2598
|
type MutationArchivePositionArgs = {
|
|
2631
2599
|
id: Scalars['ID']['input'];
|
|
2632
2600
|
};
|
|
2633
|
-
type MutationArchiveReviewCycleArgs = {
|
|
2634
|
-
reviewCycleId: Scalars['ID']['input'];
|
|
2635
|
-
};
|
|
2636
2601
|
type MutationArchiveSavedQuestionArgs = {
|
|
2637
2602
|
id: Scalars['ID']['input'];
|
|
2638
2603
|
};
|
|
2639
|
-
type MutationArchiveStandardReviewArgs = {
|
|
2640
|
-
reviewId: Scalars['ID']['input'];
|
|
2641
|
-
};
|
|
2642
|
-
type MutationArchiveStandardReviewTemplateArgs = {
|
|
2643
|
-
templateId: Scalars['ID']['input'];
|
|
2644
|
-
};
|
|
2645
2604
|
type MutationArchiveTemplateArgs = {
|
|
2646
2605
|
id: Scalars['ID']['input'];
|
|
2647
2606
|
};
|
|
@@ -2699,9 +2658,6 @@ type MutationAssignQuestionnaireArgs = {
|
|
|
2699
2658
|
id: Scalars['ID']['input'];
|
|
2700
2659
|
notifyOwner?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2701
2660
|
};
|
|
2702
|
-
type MutationAssignStandardReviewArgs = {
|
|
2703
|
-
reviewId: Scalars['ID']['input'];
|
|
2704
|
-
};
|
|
2705
2661
|
type MutationAssignTaskArgs = {
|
|
2706
2662
|
id: Scalars['ID']['input'];
|
|
2707
2663
|
notifyOwner?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -3078,10 +3034,6 @@ type MutationCreateQuestionnaireTemplateArgs = {
|
|
|
3078
3034
|
paperworkTypeId: Scalars['ID']['input'];
|
|
3079
3035
|
questions: Array<QuestionTemplateInput>;
|
|
3080
3036
|
};
|
|
3081
|
-
type MutationCreateReviewCycleArgs = {
|
|
3082
|
-
name: Scalars['String']['input'];
|
|
3083
|
-
reviewCycleId?: InputMaybe<Scalars['ID']['input']>;
|
|
3084
|
-
};
|
|
3085
3037
|
type MutationCreateSavedQuestionArgs = {
|
|
3086
3038
|
description?: InputMaybe<Scalars['Markdown']['input']>;
|
|
3087
3039
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -3089,15 +3041,6 @@ type MutationCreateSavedQuestionArgs = {
|
|
|
3089
3041
|
options?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3090
3042
|
type: QuestionType;
|
|
3091
3043
|
};
|
|
3092
|
-
type MutationCreateStandaloneStandardReviewArgs = {
|
|
3093
|
-
dueDate?: InputMaybe<Scalars['Date']['input']>;
|
|
3094
|
-
name: Scalars['String']['input'];
|
|
3095
|
-
responsibleId?: InputMaybe<Scalars['ID']['input']>;
|
|
3096
|
-
reviewCycleId?: InputMaybe<Scalars['ID']['input']>;
|
|
3097
|
-
reviewId?: InputMaybe<Scalars['ID']['input']>;
|
|
3098
|
-
reviewerId: Scalars['ID']['input'];
|
|
3099
|
-
subjectId: Scalars['ID']['input'];
|
|
3100
|
-
};
|
|
3101
3044
|
type MutationCreateStandaloneTaskArgs = {
|
|
3102
3045
|
description?: InputMaybe<Scalars['Markdown']['input']>;
|
|
3103
3046
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -3106,36 +3049,6 @@ type MutationCreateStandaloneTaskArgs = {
|
|
|
3106
3049
|
subjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
3107
3050
|
submissionDueAt?: InputMaybe<Scalars['Date']['input']>;
|
|
3108
3051
|
};
|
|
3109
|
-
type MutationCreateStandardReviewArgs = {
|
|
3110
|
-
dueDate?: InputMaybe<Scalars['Date']['input']>;
|
|
3111
|
-
responsibleId?: InputMaybe<Scalars['ID']['input']>;
|
|
3112
|
-
reviewCycleId?: InputMaybe<Scalars['ID']['input']>;
|
|
3113
|
-
reviewId?: InputMaybe<Scalars['ID']['input']>;
|
|
3114
|
-
reviewerId: Scalars['ID']['input'];
|
|
3115
|
-
subjectId: Scalars['ID']['input'];
|
|
3116
|
-
templateId: Scalars['ID']['input'];
|
|
3117
|
-
};
|
|
3118
|
-
type MutationCreateStandardReviewQuestionArgs = {
|
|
3119
|
-
config: QuestionConfigInput;
|
|
3120
|
-
description?: InputMaybe<Scalars['Markdown']['input']>;
|
|
3121
|
-
label: Scalars['String']['input'];
|
|
3122
|
-
questionId?: InputMaybe<Scalars['ID']['input']>;
|
|
3123
|
-
required: Scalars['Boolean']['input'];
|
|
3124
|
-
respondent: StandardReviewQuestionRespondent;
|
|
3125
|
-
reviewId: Scalars['ID']['input'];
|
|
3126
|
-
savedQuestionId?: InputMaybe<Scalars['ID']['input']>;
|
|
3127
|
-
};
|
|
3128
|
-
type MutationCreateStandardReviewTemplateArgs = {
|
|
3129
|
-
name: Scalars['String']['input'];
|
|
3130
|
-
templateId?: InputMaybe<Scalars['ID']['input']>;
|
|
3131
|
-
};
|
|
3132
|
-
type MutationCreateStandardReviewTemplateQuestionArgs = {
|
|
3133
|
-
questionId?: InputMaybe<Scalars['ID']['input']>;
|
|
3134
|
-
required: Scalars['Boolean']['input'];
|
|
3135
|
-
respondent: StandardReviewQuestionRespondent;
|
|
3136
|
-
savedQuestionId: Scalars['ID']['input'];
|
|
3137
|
-
templateId: Scalars['ID']['input'];
|
|
3138
|
-
};
|
|
3139
3052
|
type MutationCreateTagArgs = {
|
|
3140
3053
|
color: TagColor;
|
|
3141
3054
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3206,12 +3119,6 @@ type MutationDeletePersonConnectionsArgs = {
|
|
|
3206
3119
|
type MutationDeletePositionArgs = {
|
|
3207
3120
|
positionId: Scalars['ID']['input'];
|
|
3208
3121
|
};
|
|
3209
|
-
type MutationDeleteStandardReviewQuestionArgs = {
|
|
3210
|
-
questionId: Scalars['ID']['input'];
|
|
3211
|
-
};
|
|
3212
|
-
type MutationDeleteStandardReviewTemplateQuestionArgs = {
|
|
3213
|
-
questionId: Scalars['ID']['input'];
|
|
3214
|
-
};
|
|
3215
3122
|
type MutationDeleteTagArgs = {
|
|
3216
3123
|
tagId: Scalars['ID']['input'];
|
|
3217
3124
|
};
|
|
@@ -3287,9 +3194,6 @@ type MutationProcessAssignmentsArgs = {
|
|
|
3287
3194
|
type MutationProcessLeaveRequestArgs = {
|
|
3288
3195
|
leaveRequestId: Scalars['ID']['input'];
|
|
3289
3196
|
};
|
|
3290
|
-
type MutationProcessStandardReviewArgs = {
|
|
3291
|
-
reviewId: Scalars['ID']['input'];
|
|
3292
|
-
};
|
|
3293
3197
|
type MutationReinviteLoginArgs = {
|
|
3294
3198
|
loginId: Scalars['ID']['input'];
|
|
3295
3199
|
};
|
|
@@ -3353,25 +3257,12 @@ type MutationRestorePaperworkTypeArgs = {
|
|
|
3353
3257
|
type MutationRestorePersonArgs = {
|
|
3354
3258
|
id: Scalars['ID']['input'];
|
|
3355
3259
|
};
|
|
3356
|
-
type MutationRestoreReviewCycleArgs = {
|
|
3357
|
-
reviewCycleId: Scalars['ID']['input'];
|
|
3358
|
-
};
|
|
3359
3260
|
type MutationRestoreSavedQuestionArgs = {
|
|
3360
3261
|
id: Scalars['ID']['input'];
|
|
3361
3262
|
};
|
|
3362
|
-
type MutationRestoreStandardReviewArgs = {
|
|
3363
|
-
reviewId: Scalars['ID']['input'];
|
|
3364
|
-
};
|
|
3365
|
-
type MutationRestoreStandardReviewTemplateArgs = {
|
|
3366
|
-
templateId: Scalars['ID']['input'];
|
|
3367
|
-
};
|
|
3368
3263
|
type MutationRestoreTemplateArgs = {
|
|
3369
3264
|
id: Scalars['ID']['input'];
|
|
3370
3265
|
};
|
|
3371
|
-
type MutationScheduleStandardReviewArgs = {
|
|
3372
|
-
date: Scalars['DateTime']['input'];
|
|
3373
|
-
reviewId: Scalars['ID']['input'];
|
|
3374
|
-
};
|
|
3375
3266
|
type MutationSetActiveLoginArgs = {
|
|
3376
3267
|
loginId?: InputMaybe<Scalars['ID']['input']>;
|
|
3377
3268
|
};
|
|
@@ -3595,13 +3486,6 @@ type MutationSubmitQuestionnaireArgs = {
|
|
|
3595
3486
|
answers: Array<QuestionnaireQuestionAnswerInput>;
|
|
3596
3487
|
id: Scalars['ID']['input'];
|
|
3597
3488
|
};
|
|
3598
|
-
type MutationSubmitStandardReviewArgs = {
|
|
3599
|
-
reviewId: Scalars['ID']['input'];
|
|
3600
|
-
};
|
|
3601
|
-
type MutationSubmitStandardReviewQuestionArgs = {
|
|
3602
|
-
questionId: Scalars['ID']['input'];
|
|
3603
|
-
response: QuestionResponseInput;
|
|
3604
|
-
};
|
|
3605
3489
|
type MutationSubmitTaskArgs = {
|
|
3606
3490
|
id: Scalars['ID']['input'];
|
|
3607
3491
|
};
|
|
@@ -3624,9 +3508,6 @@ type MutationUnmatchPersonConnectionsArgs = {
|
|
|
3624
3508
|
type MutationUnpauseIntegrationArgs = {
|
|
3625
3509
|
integrationId: Scalars['ID']['input'];
|
|
3626
3510
|
};
|
|
3627
|
-
type MutationUnscheduleStandardReviewArgs = {
|
|
3628
|
-
reviewId: Scalars['ID']['input'];
|
|
3629
|
-
};
|
|
3630
3511
|
type MutationUpdateAccountArgs = {
|
|
3631
3512
|
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3632
3513
|
attioCompanyId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3948,11 +3829,6 @@ type MutationUpdateQuestionnaireTemplateArgs = {
|
|
|
3948
3829
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
3949
3830
|
questions?: InputMaybe<Array<QuestionTemplateInput>>;
|
|
3950
3831
|
};
|
|
3951
|
-
type MutationUpdateReviewCycleArgs = {
|
|
3952
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
3953
|
-
reviewCycleId: Scalars['ID']['input'];
|
|
3954
|
-
savedOverviewQuestionId?: InputMaybe<Scalars['ID']['input']>;
|
|
3955
|
-
};
|
|
3956
3832
|
type MutationUpdateSavedQuestionArgs = {
|
|
3957
3833
|
description?: InputMaybe<Scalars['Markdown']['input']>;
|
|
3958
3834
|
id: Scalars['ID']['input'];
|
|
@@ -3960,40 +3836,6 @@ type MutationUpdateSavedQuestionArgs = {
|
|
|
3960
3836
|
options?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3961
3837
|
type?: InputMaybe<QuestionType>;
|
|
3962
3838
|
};
|
|
3963
|
-
type MutationUpdateStandardReviewArgs = {
|
|
3964
|
-
dueDate?: InputMaybe<Scalars['Date']['input']>;
|
|
3965
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
3966
|
-
questionOrder?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3967
|
-
responsibleId?: InputMaybe<Scalars['ID']['input']>;
|
|
3968
|
-
reviewCycleId?: InputMaybe<Scalars['ID']['input']>;
|
|
3969
|
-
reviewId: Scalars['ID']['input'];
|
|
3970
|
-
reviewerId?: InputMaybe<Scalars['ID']['input']>;
|
|
3971
|
-
reviewerInstructions?: InputMaybe<Scalars['Markdown']['input']>;
|
|
3972
|
-
subjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
3973
|
-
subjectInstructions?: InputMaybe<Scalars['Markdown']['input']>;
|
|
3974
|
-
};
|
|
3975
|
-
type MutationUpdateStandardReviewQuestionArgs = {
|
|
3976
|
-
config?: InputMaybe<QuestionConfigInput>;
|
|
3977
|
-
description?: InputMaybe<Scalars['Markdown']['input']>;
|
|
3978
|
-
label?: InputMaybe<Scalars['String']['input']>;
|
|
3979
|
-
questionId: Scalars['ID']['input'];
|
|
3980
|
-
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3981
|
-
respondent?: InputMaybe<StandardReviewQuestionRespondent>;
|
|
3982
|
-
savedQuestionId?: InputMaybe<Scalars['ID']['input']>;
|
|
3983
|
-
};
|
|
3984
|
-
type MutationUpdateStandardReviewTemplateArgs = {
|
|
3985
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
3986
|
-
questionOrder?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3987
|
-
reviewerInstructions?: InputMaybe<Scalars['Markdown']['input']>;
|
|
3988
|
-
subjectInstructions?: InputMaybe<Scalars['Markdown']['input']>;
|
|
3989
|
-
templateId: Scalars['ID']['input'];
|
|
3990
|
-
};
|
|
3991
|
-
type MutationUpdateStandardReviewTemplateQuestionArgs = {
|
|
3992
|
-
questionId: Scalars['ID']['input'];
|
|
3993
|
-
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3994
|
-
respondent?: InputMaybe<StandardReviewQuestionRespondent>;
|
|
3995
|
-
savedQuestionId?: InputMaybe<Scalars['ID']['input']>;
|
|
3996
|
-
};
|
|
3997
3839
|
type MutationUpdateTagArgs = {
|
|
3998
3840
|
color?: InputMaybe<TagColor>;
|
|
3999
3841
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4123,13 +3965,7 @@ declare enum NotificationType {
|
|
|
4123
3965
|
/** Sent to the employee when their self review is overdue. */
|
|
4124
3966
|
PerformanceReviewSelfReviewOverdue = "PERFORMANCE_REVIEW_SELF_REVIEW_OVERDUE",
|
|
4125
3967
|
/** Sent to the manager when the reviewee has submitted their self review. */
|
|
4126
|
-
PerformanceReviewSelfReviewSubmitted = "PERFORMANCE_REVIEW_SELF_REVIEW_SUBMITTED"
|
|
4127
|
-
/** Sent to the reviewer when a review they are required to conduct has been assigned to them. */
|
|
4128
|
-
ReviewAssigned = "REVIEW_ASSIGNED",
|
|
4129
|
-
/** Sent to the subject of a review when a time for the review to take place has been set. */
|
|
4130
|
-
ReviewScheduled = "REVIEW_SCHEDULED",
|
|
4131
|
-
/** Sent to the person responsible for a review (i.e. an admin) when it has been submitted by the reviewer. */
|
|
4132
|
-
ReviewSubmitted = "REVIEW_SUBMITTED"
|
|
3968
|
+
PerformanceReviewSelfReviewSubmitted = "PERFORMANCE_REVIEW_SELF_REVIEW_SUBMITTED"
|
|
4133
3969
|
}
|
|
4134
3970
|
type Org = {
|
|
4135
3971
|
account: Account;
|
|
@@ -4159,7 +3995,6 @@ type Org = {
|
|
|
4159
3995
|
performanceReviewSavedQuestions: Array<PerformanceReviewSavedQuestion>;
|
|
4160
3996
|
performanceReviewTemplates: Array<PerformanceReviewTemplate>;
|
|
4161
3997
|
positions: Array<Position>;
|
|
4162
|
-
reviewCycles: Array<ReviewCycle>;
|
|
4163
3998
|
savedQuestions: Array<SavedQuestion>;
|
|
4164
3999
|
/** Only includes events that are after the start of last year or are in the future. */
|
|
4165
4000
|
sharedCalendarEvents: Array<SharedCalendarEvent>;
|
|
@@ -4201,9 +4036,6 @@ type OrgPerformanceReviewTemplatesArgs = {
|
|
|
4201
4036
|
type OrgPositionsArgs = {
|
|
4202
4037
|
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4203
4038
|
};
|
|
4204
|
-
type OrgReviewCyclesArgs = {
|
|
4205
|
-
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4206
|
-
};
|
|
4207
4039
|
type OrgSavedQuestionsArgs = {
|
|
4208
4040
|
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4209
4041
|
};
|
|
@@ -4259,7 +4091,7 @@ type PaperworkAssignment = {
|
|
|
4259
4091
|
processor?: Maybe<Person>;
|
|
4260
4092
|
/** The person who is receiving this assignment's submission. This is typically a person with an admin role. */
|
|
4261
4093
|
responsible?: Maybe<Person>;
|
|
4262
|
-
/** The person this assignment is about. For many assignments this will be the same as the owner, but for
|
|
4094
|
+
/** The person this assignment is about. For many assignments this will be the same as the owner, but for tasks the subject may be different from the owner. */
|
|
4263
4095
|
subject?: Maybe<Person>;
|
|
4264
4096
|
submittedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4265
4097
|
/** The person who submitted this assignment. */
|
|
@@ -4753,7 +4585,6 @@ type Person = {
|
|
|
4753
4585
|
residentialAddressLine2?: Maybe<Scalars['String']['output']>;
|
|
4754
4586
|
residentialAddressPostcode?: Maybe<Scalars['String']['output']>;
|
|
4755
4587
|
residentialAddressState?: Maybe<Scalars['String']['output']>;
|
|
4756
|
-
reviews: Array<StandardReview>;
|
|
4757
4588
|
role: PersonRole;
|
|
4758
4589
|
startDate?: Maybe<Scalars['Date']['output']>;
|
|
4759
4590
|
status: PersonStatus;
|
|
@@ -4807,11 +4638,6 @@ type PersonQuestionnairesArgs = {
|
|
|
4807
4638
|
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4808
4639
|
status?: InputMaybe<Array<AssignmentStatus>>;
|
|
4809
4640
|
};
|
|
4810
|
-
type PersonReviewsArgs = {
|
|
4811
|
-
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4812
|
-
relation?: InputMaybe<Array<InputMaybe<ReviewRelation>>>;
|
|
4813
|
-
status?: InputMaybe<Array<StandardReviewStatus>>;
|
|
4814
|
-
};
|
|
4815
4641
|
type PersonTasksArgs = {
|
|
4816
4642
|
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4817
4643
|
};
|
|
@@ -5263,11 +5089,8 @@ type Query = {
|
|
|
5263
5089
|
position: Position;
|
|
5264
5090
|
questionnaire: Questionnaire;
|
|
5265
5091
|
questionnaireTemplate: QuestionnaireTemplate;
|
|
5266
|
-
reviewCycle: ReviewCycle;
|
|
5267
5092
|
savedQuestion: SavedQuestion;
|
|
5268
5093
|
session: Session;
|
|
5269
|
-
standardReview: StandardReview;
|
|
5270
|
-
standardReviewTemplate: StandardReviewTemplate;
|
|
5271
5094
|
task: Task;
|
|
5272
5095
|
taskTemplate: TaskTemplate;
|
|
5273
5096
|
template: Template;
|
|
@@ -5385,18 +5208,9 @@ type QueryQuestionnaireArgs = {
|
|
|
5385
5208
|
type QueryQuestionnaireTemplateArgs = {
|
|
5386
5209
|
id: Scalars['ID']['input'];
|
|
5387
5210
|
};
|
|
5388
|
-
type QueryReviewCycleArgs = {
|
|
5389
|
-
id: Scalars['ID']['input'];
|
|
5390
|
-
};
|
|
5391
5211
|
type QuerySavedQuestionArgs = {
|
|
5392
5212
|
id: Scalars['ID']['input'];
|
|
5393
5213
|
};
|
|
5394
|
-
type QueryStandardReviewArgs = {
|
|
5395
|
-
id: Scalars['ID']['input'];
|
|
5396
|
-
};
|
|
5397
|
-
type QueryStandardReviewTemplateArgs = {
|
|
5398
|
-
id: Scalars['ID']['input'];
|
|
5399
|
-
};
|
|
5400
5214
|
type QueryTaskArgs = {
|
|
5401
5215
|
id: Scalars['ID']['input'];
|
|
5402
5216
|
};
|
|
@@ -5416,24 +5230,9 @@ type QueryWorkflowParticipantArgs = {
|
|
|
5416
5230
|
id: Scalars['ID']['input'];
|
|
5417
5231
|
};
|
|
5418
5232
|
type QuestionConfig = QuestionLikert5Config | QuestionMultipleChoiceConfig | QuestionMultipleChoiceOtherConfig | QuestionTextConfig;
|
|
5419
|
-
/**
|
|
5420
|
-
* One and only one of the fields must be provided.
|
|
5421
|
-
*
|
|
5422
|
-
* This will use [OneOf](https://github.com/graphql/graphql-spec/pull/825) when it's introduced to GraphQL.
|
|
5423
|
-
*/
|
|
5424
|
-
type QuestionConfigInput = {
|
|
5425
|
-
likert5?: InputMaybe<QuestionLikert5ConfigInput>;
|
|
5426
|
-
multipleChoice?: InputMaybe<QuestionMultipleChoiceConfigInput>;
|
|
5427
|
-
multipleChoiceOther?: InputMaybe<QuestionMultipleChoiceOtherConfigInput>;
|
|
5428
|
-
text?: InputMaybe<QuestionTextConfigInput>;
|
|
5429
|
-
};
|
|
5430
5233
|
type QuestionLikert5Config = {
|
|
5431
5234
|
options: Array<Scalars['String']['output']>;
|
|
5432
5235
|
};
|
|
5433
|
-
type QuestionLikert5ConfigInput = {
|
|
5434
|
-
/** There must be 2, 3 or 5 options. */
|
|
5435
|
-
options: Array<Scalars['String']['input']>;
|
|
5436
|
-
};
|
|
5437
5236
|
type QuestionLikert5Response = {
|
|
5438
5237
|
choice: Scalars['Int']['output'];
|
|
5439
5238
|
};
|
|
@@ -5443,17 +5242,9 @@ type QuestionLikert5ResponseInput = {
|
|
|
5443
5242
|
type QuestionMultipleChoiceConfig = {
|
|
5444
5243
|
options: Array<Scalars['String']['output']>;
|
|
5445
5244
|
};
|
|
5446
|
-
type QuestionMultipleChoiceConfigInput = {
|
|
5447
|
-
/** At least 2 options must be provided. */
|
|
5448
|
-
options: Array<Scalars['String']['input']>;
|
|
5449
|
-
};
|
|
5450
5245
|
type QuestionMultipleChoiceOtherConfig = {
|
|
5451
5246
|
options: Array<Scalars['String']['output']>;
|
|
5452
5247
|
};
|
|
5453
|
-
type QuestionMultipleChoiceOtherConfigInput = {
|
|
5454
|
-
/** At least 1 option must be provided. */
|
|
5455
|
-
options: Array<Scalars['String']['input']>;
|
|
5456
|
-
};
|
|
5457
5248
|
type QuestionMultipleChoiceOtherResponse = {
|
|
5458
5249
|
choice?: Maybe<Scalars['Int']['output']>;
|
|
5459
5250
|
other?: Maybe<Scalars['String']['output']>;
|
|
@@ -5493,9 +5284,6 @@ type QuestionTemplateInput = {
|
|
|
5493
5284
|
type QuestionTextConfig = {
|
|
5494
5285
|
_?: Maybe<Scalars['Boolean']['output']>;
|
|
5495
5286
|
};
|
|
5496
|
-
type QuestionTextConfigInput = {
|
|
5497
|
-
_?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5498
|
-
};
|
|
5499
5287
|
type QuestionTextResponse = {
|
|
5500
5288
|
value: Scalars['String']['output'];
|
|
5501
5289
|
};
|
|
@@ -5609,27 +5397,6 @@ type QuestionnaireTemplateQuestion = {
|
|
|
5609
5397
|
savedQuestion: SavedQuestion;
|
|
5610
5398
|
template: QuestionnaireTemplate;
|
|
5611
5399
|
};
|
|
5612
|
-
type ReviewCycle = {
|
|
5613
|
-
archived: Scalars['Boolean']['output'];
|
|
5614
|
-
archivedAt?: Maybe<Scalars['Date']['output']>;
|
|
5615
|
-
archiver?: Maybe<Person>;
|
|
5616
|
-
createdAt: Scalars['DateTime']['output'];
|
|
5617
|
-
creator: Person;
|
|
5618
|
-
id: Scalars['ID']['output'];
|
|
5619
|
-
name: Scalars['String']['output'];
|
|
5620
|
-
org: Org;
|
|
5621
|
-
reviews: Array<StandardReview>;
|
|
5622
|
-
savedOverviewQuestion?: Maybe<SavedQuestion>;
|
|
5623
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
5624
|
-
};
|
|
5625
|
-
type ReviewCycleReviewsArgs = {
|
|
5626
|
-
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5627
|
-
};
|
|
5628
|
-
declare enum ReviewRelation {
|
|
5629
|
-
Responsible = "RESPONSIBLE",
|
|
5630
|
-
Reviewer = "REVIEWER",
|
|
5631
|
-
Subject = "SUBJECT"
|
|
5632
|
-
}
|
|
5633
5400
|
type SavedQuestion = {
|
|
5634
5401
|
archived: Scalars['Boolean']['output'];
|
|
5635
5402
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -5748,118 +5515,6 @@ declare enum SmartDocumentFieldType {
|
|
|
5748
5515
|
WorkEmail = "WORK_EMAIL",
|
|
5749
5516
|
WorkPhone = "WORK_PHONE"
|
|
5750
5517
|
}
|
|
5751
|
-
type StandardReview = Assignment & {
|
|
5752
|
-
approvals: Array<Approval>;
|
|
5753
|
-
archived: Scalars['Boolean']['output'];
|
|
5754
|
-
archivedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5755
|
-
archiver?: Maybe<Person>;
|
|
5756
|
-
assignedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5757
|
-
assignee?: Maybe<Person>;
|
|
5758
|
-
assigner?: Maybe<Person>;
|
|
5759
|
-
assignmentStatus: AssignmentStatus;
|
|
5760
|
-
assignmentType: AssignmentType;
|
|
5761
|
-
createdAt: Scalars['DateTime']['output'];
|
|
5762
|
-
creator: Person;
|
|
5763
|
-
/** The time when the review takes place. */
|
|
5764
|
-
date?: Maybe<Scalars['DateTime']['output']>;
|
|
5765
|
-
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
5766
|
-
dueDateStatus?: Maybe<DueDateStatus>;
|
|
5767
|
-
dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
5768
|
-
expirationDate?: Maybe<Scalars['Date']['output']>;
|
|
5769
|
-
expirationWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
5770
|
-
expiryStatus: ExpiryStatus;
|
|
5771
|
-
id: Scalars['ID']['output'];
|
|
5772
|
-
name: Scalars['String']['output'];
|
|
5773
|
-
notifications: Array<Notification>;
|
|
5774
|
-
onboardingIndex?: Maybe<Scalars['Int']['output']>;
|
|
5775
|
-
owner?: Maybe<Person>;
|
|
5776
|
-
processedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5777
|
-
processor?: Maybe<Person>;
|
|
5778
|
-
questions: Array<StandardReviewQuestion>;
|
|
5779
|
-
responsible: Person;
|
|
5780
|
-
reviewCycle?: Maybe<ReviewCycle>;
|
|
5781
|
-
reviewer: Person;
|
|
5782
|
-
reviewerInstructions?: Maybe<Scalars['Markdown']['output']>;
|
|
5783
|
-
scheduledAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5784
|
-
scheduler?: Maybe<Person>;
|
|
5785
|
-
status: StandardReviewStatus;
|
|
5786
|
-
subject: Person;
|
|
5787
|
-
subjectInstructions?: Maybe<Scalars['Markdown']['output']>;
|
|
5788
|
-
submittedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5789
|
-
submitter?: Maybe<Person>;
|
|
5790
|
-
template?: Maybe<StandardReviewTemplate>;
|
|
5791
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
5792
|
-
};
|
|
5793
|
-
type StandardReviewNotificationsArgs = {
|
|
5794
|
-
includeRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5795
|
-
};
|
|
5796
|
-
type StandardReviewQuestionsArgs = {
|
|
5797
|
-
respondent?: InputMaybe<Array<StandardReviewQuestionRespondent>>;
|
|
5798
|
-
};
|
|
5799
|
-
type StandardReviewNotification = Notification & {
|
|
5800
|
-
createdAt: Scalars['DateTime']['output'];
|
|
5801
|
-
emailSentAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5802
|
-
id: Scalars['ID']['output'];
|
|
5803
|
-
person?: Maybe<Person>;
|
|
5804
|
-
read: Scalars['Boolean']['output'];
|
|
5805
|
-
/** This field is nullable because the viewer may no longer have access to the review this notification is about. */
|
|
5806
|
-
standardReview?: Maybe<StandardReview>;
|
|
5807
|
-
type: NotificationType;
|
|
5808
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
5809
|
-
};
|
|
5810
|
-
type StandardReviewQuestion = {
|
|
5811
|
-
config: QuestionConfig;
|
|
5812
|
-
createdAt: Scalars['DateTime']['output'];
|
|
5813
|
-
description?: Maybe<Scalars['Markdown']['output']>;
|
|
5814
|
-
id: Scalars['ID']['output'];
|
|
5815
|
-
index: Scalars['Int']['output'];
|
|
5816
|
-
label: Scalars['String']['output'];
|
|
5817
|
-
required: Scalars['Boolean']['output'];
|
|
5818
|
-
respondent: StandardReviewQuestionRespondent;
|
|
5819
|
-
response?: Maybe<QuestionResponse>;
|
|
5820
|
-
review: StandardReview;
|
|
5821
|
-
savedQuestion?: Maybe<SavedQuestion>;
|
|
5822
|
-
subject: Person;
|
|
5823
|
-
submitted: Scalars['Boolean']['output'];
|
|
5824
|
-
submittedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5825
|
-
submitter?: Maybe<Person>;
|
|
5826
|
-
type: QuestionType;
|
|
5827
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
5828
|
-
};
|
|
5829
|
-
declare enum StandardReviewQuestionRespondent {
|
|
5830
|
-
Reviewer = "REVIEWER",
|
|
5831
|
-
Subject = "SUBJECT"
|
|
5832
|
-
}
|
|
5833
|
-
declare enum StandardReviewStatus {
|
|
5834
|
-
Assigned = "ASSIGNED",
|
|
5835
|
-
Draft = "DRAFT",
|
|
5836
|
-
Processed = "PROCESSED",
|
|
5837
|
-
Scheduled = "SCHEDULED",
|
|
5838
|
-
Submitted = "SUBMITTED"
|
|
5839
|
-
}
|
|
5840
|
-
type StandardReviewTemplate = Template & {
|
|
5841
|
-
archived: Scalars['Boolean']['output'];
|
|
5842
|
-
archivedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5843
|
-
archiver?: Maybe<Person>;
|
|
5844
|
-
assignmentType: AssignmentType;
|
|
5845
|
-
assignments: Array<StandardReview>;
|
|
5846
|
-
createdAt: Scalars['DateTime']['output'];
|
|
5847
|
-
id: Scalars['ID']['output'];
|
|
5848
|
-
name: Scalars['String']['output'];
|
|
5849
|
-
org: Org;
|
|
5850
|
-
questions: Array<StandardReviewTemplateQuestion>;
|
|
5851
|
-
reviewerInstructions?: Maybe<Scalars['Markdown']['output']>;
|
|
5852
|
-
subjectInstructions?: Maybe<Scalars['Markdown']['output']>;
|
|
5853
|
-
updatedAt: Scalars['DateTime']['output'];
|
|
5854
|
-
};
|
|
5855
|
-
type StandardReviewTemplateQuestion = {
|
|
5856
|
-
id: Scalars['ID']['output'];
|
|
5857
|
-
index: Scalars['Int']['output'];
|
|
5858
|
-
required: Scalars['Boolean']['output'];
|
|
5859
|
-
respondent: StandardReviewQuestionRespondent;
|
|
5860
|
-
savedQuestion: SavedQuestion;
|
|
5861
|
-
template: StandardReviewTemplate;
|
|
5862
|
-
};
|
|
5863
5518
|
type StartDateEvent = SharedCalendarEvent & {
|
|
5864
5519
|
endDate: Scalars['Date']['output'];
|
|
5865
5520
|
id: Scalars['ID']['output'];
|
|
@@ -7194,4 +6849,4 @@ type UpdatePersonConnectionMutation = {
|
|
|
7194
6849
|
};
|
|
7195
6850
|
};
|
|
7196
6851
|
|
|
7197
|
-
export { type Account, type AccountAppsArgs, type AccountFeatures, type AccountFeaturesInput, AccountFlag, type ActivateIntegrationMutation, type ActivateIntegrationMutationVariables, AllocationMethod, type AnniversaryEvent, type ApiToken, type App, AppCategory, type AppConfig, type AppConfigWebhooks, AppStatus, type AppendIntegrationLogMutation, type AppendIntegrationLogMutationVariables, type Approval, ApprovalStatus, type ApprovalSummary, type Archivable, type Assignment, type AssignmentNotification, type AssignmentNotificationsArgs, AssignmentRelation, AssignmentStatus, AssignmentType, AuthMethod, AuthProvider, AuthState, type AuthorizeIntegrationMutation, type AuthorizeIntegrationMutationVariables, type BasicAbnForm, type BasicAbnFormNotificationsArgs, type BasicAbnFormTemplate, type BasicBankAccountForm, type BasicBankAccountFormNotificationsArgs, type BasicBankAccountFormTemplate, type BasicEmergencyContactForm, type BasicEmergencyContactFormNotificationsArgs, type BasicEmergencyContactFormTemplate, type BasicPersonalDetailsForm, type BasicPersonalDetailsFormNotificationsArgs, type BasicPersonalDetailsFormTemplate, type BasicPreEmploymentForm, type BasicPreEmploymentFormNotificationsArgs, type BasicPreEmploymentFormTemplate, type BasicSuperForm, type BasicSuperFormNotificationsArgs, type BasicSuperFormTemplate, type BasicTaxForm, type BasicTaxFormNotificationsArgs, type BasicTaxFormTemplate, type Birthday, type BirthdayEvent, type BirthdayInput, type Bundle, type BundledPaperworkType, type BundledPaperworkTypeConnection, type Certificate, type CertificateNotificationsArgs, CertificateProof, type CertificateTemplate, type ChoiceDocumentField, type ChoiceDocumentFieldConfigInput, type ChoiceDocumentFieldConfigOptionInput, type ChoiceDocumentFieldInput, type ChoiceDocumentFieldOption, type ChoiceDocumentFieldOptionInput, type CompleteSyncMutation, type CompleteSyncMutationVariables, type ComplianceGroup, type ComplianceGroupPaperworkType, type ComplianceGroupPaperworkTypeConnection, type ComplianceGroupPersonConnection, ComplianceStatus, 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 CustomField, type CustomFieldConfig, type CustomFieldConfigInput, type CustomFieldDateConfig, type CustomFieldDateConfigInput, type CustomFieldDateValue, type CustomFieldNumberConfig, type CustomFieldNumberConfigInput, type CustomFieldNumberUnderlyingValue, CustomFieldNumberUnit, type CustomFieldNumberValue, type CustomFieldNumberValueInput, type CustomFieldSingleChoiceConfig, type CustomFieldSingleChoiceConfigInput, type CustomFieldSingleChoiceOption, type CustomFieldSingleChoiceOptionInput, type CustomFieldSingleChoiceValue, type CustomFieldTextConfig, type CustomFieldTextConfigInput, type CustomFieldTextValue, CustomFieldType, type CustomFieldValue, type CustomFieldValueInput, type CustomTable, type CustomTableColumn, type CustomTableColumnInput, type CustomTableConfig, type CustomTableConfigFilter, type CustomTableConfigFilterInput, type CustomTableConfigInput, type CustomTableConfigSorting, type CustomTableConfigSortingInput, type DataExport, DataExportType, type DataImport, type DataImportLine, type DateDocumentField, type DateDocumentFieldConfigInput, type DateDocumentFieldInput, type DeleteApiTokenMutation, type DeleteApiTokenMutationVariables, type DeletePersonConnectionMutation, type DeletePersonConnectionMutationVariables, type Department, type DepartmentPositionsArgs, type Document, type DocumentField, type DocumentFieldConfigInput, type DocumentFieldInput, DocumentFieldResponder, type DocumentNotificationsArgs, type DocumentTemplate, DueDateStatus, type EmailNotificationSettings, type EmailNotificationSettingsInput, type Exact, ExpiryStatus, FieldPresence, FileProcessingStatus, Gender, type GenericIntegration, type GenericIntegrationFeaturesArgs, type GetApiTokensQuery, type GetApiTokensQueryVariables, type GetIntegrationQuery, type GetIntegrationQueryVariables, type GetLeaveRequestsQuery, type GetLeaveRequestsQueryVariables, type GetMyAppsQuery, type GetMyAppsQueryVariables, type GetPeopleQuery, type GetPeopleQueryVariables, type GetPersonConnectionsQuery, type GetPersonConnectionsQueryVariables, type Incremental, type InitializeIntegrationMutation, type InitializeIntegrationMutationVariables, type InputMaybe, type Integration, type IntegrationConnection, type IntegrationFeatures, type IntegrationFeaturesArgs, type IntegrationFeaturesInput, type IntegrationLog, type IntegrationLogInput, IntegrationStatus, type IntegrationSync, type IntegrationSyncEvent, IntegrationSyncEventType, IntegrationSyncStatus, IntegrationType, type Job, JobStatus, type KeypayBusiness, type KeypayEmployee, type KeypayEmployeeForm, type KeypayEmployeeFormNotificationsArgs, type KeypayEmployeeFormTemplate, KeypayEmployeeStatus, KeypayEmploymentType, KeypayGender, type KeypayIntegration, type KeypayIntegrationBusinessInput, type KeypayIntegrationFeaturesArgs, type KeypayIntegrationTokenSetInput, type KeypayLeaveEmployee, type KeypayLeaveIntegration, type KeypayLeaveIntegrationFeaturesArgs, type LeaveBalance, type LeaveCategory, type LeaveCategoryInput, type LeaveHoursEstimate, type LeaveRequest, type LeaveRequestNotification, type LeaveRequestNotificationsArgs, LeaveRequestRelation, LeaveRequestStatus, type Location, type Login, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Media, type MultiLineTextDocumentField, type MultiLineTextDocumentFieldConfigInput, type MultiLineTextDocumentFieldInput, type Mutation, type MutationAcceptInviteArgs, type MutationAcceptLoginArgs, type MutationActivateIntegrationArgs, type MutationActivateKeypayIntegrationArgs, type MutationActivatePersonArgs, type MutationActivateWorkflowRunArgs, type MutationActivateXeroIntegrationArgs, type MutationAddParticipantsToWorkflowArgs, type MutationAddPeopleToComplianceGroupsArgs, type MutationAddPeopleToTagsArgs, type MutationAddRevieweesToPerformanceReviewCycleArgs, type MutationAnswerPerformanceReviewQuestionArgs, type MutationAppendIntegrationLogArgs, type MutationApproveAssignmentArgs, type MutationApproveKeypayLeaveLeaveRequestArgs, type MutationApproveLeaveRequestArgs, type MutationApproveXeroLeaveRequestArgs, type MutationArchiveAssignmentArgs, type MutationArchiveBundleArgs, type MutationArchiveComplianceGroupArgs, type MutationArchiveCustomFieldArgs, type MutationArchiveCustomTableArgs, type MutationArchiveIntegrationArgs, type MutationArchiveLocationArgs, type MutationArchiveNotesArgs, type MutationArchiveOrgArgs, type MutationArchivePaperworkTypeArgs, type MutationArchivePerformanceReviewCycleArgs, type MutationArchivePerformanceReviewRevieweeArgs, type MutationArchivePerformanceReviewSavedQuestionArgs, type MutationArchivePerformanceReviewTemplateArgs, type MutationArchivePerformanceReviewTemplateQuestionArgs, type MutationArchivePersonArgs, type MutationArchivePositionArgs, type MutationArchiveReviewCycleArgs, type MutationArchiveSavedQuestionArgs, type MutationArchiveStandardReviewArgs, type MutationArchiveStandardReviewTemplateArgs, type MutationArchiveTemplateArgs, type MutationArchiveWorkflowArgs, type MutationArchiveWorkflowParticipantArgs, 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 MutationBulkAssignPaperworkArgs, type MutationBulkUpdatePeopleLocationArgs, type MutationCancelLeaveRequestArgs, type MutationCompleteIntegrationSyncArgs, type MutationCompletePasswordResetArgs, type MutationCompletePerformanceReviewCycleArgs, type MutationConfirmProfileArgs, type MutationConfirmProviderArgs, type MutationCreateAccountArgs, type MutationCreateApiTokenArgs, type MutationCreateAssignmentsArgs, type MutationCreateBasicAbnFormArgs, type MutationCreateBasicAbnFormTemplateArgs, type MutationCreateBasicBankAccountFormArgs, type MutationCreateBasicBankAccountFormTemplateArgs, type MutationCreateBasicEmergencyContactFormArgs, type MutationCreateBasicEmergencyContactFormTemplateArgs, type MutationCreateBasicPersonalDetailsFormArgs, type MutationCreateBasicPersonalDetailsFormTemplateArgs, type MutationCreateBasicPreEmploymentFormArgs, type MutationCreateBasicPreEmploymentFormTemplateArgs, type MutationCreateBasicSuperFormArgs, type MutationCreateBasicSuperFormTemplateArgs, type MutationCreateBasicTaxFormArgs, type MutationCreateBasicTaxFormTemplateArgs, type MutationCreateBundleArgs, type MutationCreateCertificateArgs, type MutationCreateCertificateTemplateArgs, type MutationCreateComplianceGroupArgs, type MutationCreateCustomFieldArgs, type MutationCreateCustomTableArgs, type MutationCreateDataExportArgs, type MutationCreateDataImportArgs, type MutationCreateDocumentArgs, type MutationCreateDocumentTemplateArgs, type MutationCreateIntegrationArgs, type MutationCreateIntegrationLogArgs, type MutationCreateJobArgs, type MutationCreateKeypayEmployeeFormArgs, type MutationCreateKeypayEmployeeFormTemplateArgs, type MutationCreateKeypayLeaveLeaveRequestArgs, type MutationCreateLeaveRequestArgs, type MutationCreateLocalPersonConnectionsArgs, type MutationCreateLocationArgs, type MutationCreateLoginArgs, type MutationCreateManualDataImportArgs, type MutationCreateNoteArgs, type MutationCreateNoteAttachmentsArgs, type MutationCreateOrgArgs, type MutationCreatePaperworkTypeArgs, type MutationCreatePerformanceReviewCycleArgs, type MutationCreatePerformanceReviewSavedQuestionArgs, type MutationCreatePerformanceReviewTemplateArgs, type MutationCreatePerformanceReviewTemplateQuestionArgs, type MutationCreatePersonArgs, type MutationCreatePersonConnectionArgs, type MutationCreatePersonDataImportLineArgs, type MutationCreatePositionArgs, type MutationCreateProcessedCertificateArgs, type MutationCreateProcessedDocumentArgs, type MutationCreateQuestionnaireArgs, type MutationCreateQuestionnaireTemplateArgs, type MutationCreateReviewCycleArgs, type MutationCreateSavedQuestionArgs, type MutationCreateStandaloneStandardReviewArgs, type MutationCreateStandaloneTaskArgs, type MutationCreateStandardReviewArgs, type MutationCreateStandardReviewQuestionArgs, type MutationCreateStandardReviewTemplateArgs, type MutationCreateStandardReviewTemplateQuestionArgs, type MutationCreateTagArgs, type MutationCreateTagsArgs, type MutationCreateTaskArgs, type MutationCreateTaskTemplateArgs, type MutationCreateWorkflowArgs, type MutationCreateWorkflowGroupArgs, type MutationCreateWorkflowStepArgs, type MutationCreateXeroLeaveRequestArgs, type MutationDeleteApiTokenArgs, type MutationDeleteApprovalsArgs, type MutationDeleteJobArgs, type MutationDeleteLoginArgs, type MutationDeletePersonConnectionArgs, type MutationDeletePersonConnectionsArgs, type MutationDeletePositionArgs, type MutationDeleteStandardReviewQuestionArgs, type MutationDeleteStandardReviewTemplateQuestionArgs, type MutationDeleteTagArgs, type MutationDeleteWorkflowGroupArgs, type MutationDeleteWorkflowStepArgs, type MutationDenyKeypayLeaveLeaveRequestArgs, type MutationDenyLeaveRequestArgs, type MutationDenyXeroLeaveRequestArgs, type MutationDuplicatePaperworkTypeArgs, type MutationDuplicatePerformanceReviewTemplateArgs, type MutationInitializeIntegrationArgs, type MutationInvitePeopleArgs, type MutationInvitePersonArgs, type MutationJoinOrgArgs, type MutationLaunchPerformanceReviewCycleArgs, type MutationLogInArgs, type MutationLogInWithProviderArgs, type MutationMarkNotificationsReadArgs, type MutationMarkNotificationsUnreadArgs, type MutationMergePaperworkTypesArgs, type MutationPauseIntegrationArgs, type MutationProcessAssignmentArgs, type MutationProcessAssignmentsArgs, type MutationProcessLeaveRequestArgs, type MutationProcessStandardReviewArgs, type MutationReinviteLoginArgs, type MutationReinvitePeopleArgs, type MutationReinvitePersonArgs, type MutationRejectAssignmentArgs, type MutationRejectCertificateArgs, type MutationRemovePaperworkTypeFromBundlesArgs, type MutationRemovePeopleFromComplianceGroupsArgs, type MutationRemovePeopleFromTagsArgs, type MutationRemoveRevieweeFromCycleArgs, type MutationRequestApprovalsArgs, type MutationRequestInviteArgs, type MutationRequestPasswordResetArgs, type MutationResetXeroAuIntegrationArgs, type MutationRestoreAssignmentArgs, type MutationRestoreBundleArgs, type MutationRestoreIntegrationArgs, type MutationRestoreNotesArgs, type MutationRestorePaperworkTypeArgs, type MutationRestorePersonArgs, type MutationRestoreReviewCycleArgs, type MutationRestoreSavedQuestionArgs, type MutationRestoreStandardReviewArgs, type MutationRestoreStandardReviewTemplateArgs, type MutationRestoreTemplateArgs, type MutationScheduleStandardReviewArgs, type MutationSetActiveLoginArgs, type MutationSetPersonCustomFieldsArgs, type MutationSharePerformanceReviewRevieweeArgs, type MutationSubmitBasicAbnFormArgs, type MutationSubmitBasicBankAccountFormArgs, type MutationSubmitBasicEmergencyContactFormArgs, type MutationSubmitBasicPersonalDetailsFormArgs, type MutationSubmitBasicPreEmploymentFormArgs, type MutationSubmitBasicSuperFormArgs, type MutationSubmitBasicTaxFormArgs, type MutationSubmitCertificateArgs, type MutationSubmitDocumentArgs, type MutationSubmitKeypayEmployeeFormArgs, type MutationSubmitPerformanceReviewArgs, type MutationSubmitQuestionnaireArgs, type MutationSubmitStandardReviewArgs, type MutationSubmitStandardReviewQuestionArgs, type MutationSubmitTaskArgs, type MutationTerminatePersonArgs, type MutationTransferResponsibilityArgs, type MutationTriggerIntegrationSyncArgs, type MutationTriggerWorkflowGroupRunArgs, 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 MutationUpdateComplianceGroupArgs, type MutationUpdateCustomFieldArgs, type MutationUpdateCustomTableArgs, type MutationUpdateDocumentArgs, type MutationUpdateDocumentTemplateArgs, type MutationUpdateIntegrationArgs, type MutationUpdateJobArgs, type MutationUpdateKeypayEmployeeFormTemplateArgs, type MutationUpdateKeypayIntegrationArgs, type MutationUpdateKeypayLeaveIntegrationArgs, type MutationUpdateLeaveRequestArgs, type MutationUpdateLocationArgs, type MutationUpdateNoteArgs, type MutationUpdateOnboardingAssignmentsArgs, type MutationUpdateOrgArgs, type MutationUpdatePaperworkAssignmentArgs, type MutationUpdatePaperworkTypeArgs, type MutationUpdatePerformanceReviewCycleArgs, type MutationUpdatePerformanceReviewCycleConfigArgs, type MutationUpdatePerformanceReviewCycleRevieweeArgs, type MutationUpdatePerformanceReviewSavedQuestionArgs, type MutationUpdatePerformanceReviewTemplateArgs, type MutationUpdatePerformanceReviewTemplateQuestionArgs, type MutationUpdatePersonArgs, type MutationUpdatePersonConnectionArgs, type MutationUpdatePersonTagsArgs, type MutationUpdatePositionArgs, type MutationUpdatePositionsArgs, type MutationUpdateQuestionnaireArgs, type MutationUpdateQuestionnaireTemplateArgs, type MutationUpdateReviewCycleArgs, type MutationUpdateSavedQuestionArgs, type MutationUpdateStandardReviewArgs, type MutationUpdateStandardReviewQuestionArgs, type MutationUpdateStandardReviewTemplateArgs, type MutationUpdateStandardReviewTemplateQuestionArgs, type MutationUpdateTagArgs, type MutationUpdateTaskArgs, type MutationUpdateTaskTemplateArgs, type MutationUpdateUserPasswordArgs, type MutationUpdateWorkflowArgs, type MutationUpdateWorkflowGroupArgs, type MutationUpdateWorkflowStepArgs, type MutationUpdateXeroAuIntegrationArgs, type MutationUpdateXeroLeaveIntegrationArgs, type Note, type NoteAttachment, type Notification, NotificationType, type Org, type OrgBundlesArgs, type OrgComplianceGroupConnection, type OrgFeatures, type OrgFeaturesInput, type OrgIntegrationsArgs, type OrgLocationsArgs, type OrgPaperworkSummariesArgs, type OrgPaperworkTypesArgs, type OrgPeopleArgs, type OrgPerformanceReviewCyclesArgs, type OrgPerformanceReviewSavedQuestionsArgs, type OrgPerformanceReviewTemplatesArgs, type OrgPositionsArgs, type OrgReviewCyclesArgs, type OrgSavedQuestionsArgs, type OrgTemplatesArgs, type PageInfo, type PaperworkAssignment, type PaperworkAssignmentNotificationsArgs, type PaperworkRequirement, type PaperworkRequirementConnection, type PaperworkSummary, PaperworkSummaryStatus, type PaperworkTemplate, type PaperworkTemplateConnection, type PaperworkTemplateEdge, type PaperworkType, PaperworkTypeAutoReassignMode, type PaperworkTypeTemplatesArgs, type PaperworkWorkflowStep, type PaperworkWorkflowStepRun, PayPeriod, type PerformanceReview, type PerformanceReviewCycle, type PerformanceReviewCycleConfig, PerformanceReviewCycleStatus, type PerformanceReviewNotification, type PerformanceReviewQuestion, type PerformanceReviewQuestionResponse, type PerformanceReviewResponse, type PerformanceReviewReviewee, type PerformanceReviewRevieweeInput, type PerformanceReviewSavedQuestion, PerformanceReviewStatus, type PerformanceReviewTemplate, type PerformanceReviewTemplateQuestion, type PerformanceReviewTemplateTemplateQuestionsArgs, PerformanceReviewType, type Person, type PersonAssignmentsArgs, type PersonBankAccountsChange, type PersonBankAccountsChangeInput, type PersonCertificatesArgs, type PersonChange, type PersonConnection, type PersonConnectionLeaveHoursEstimateArgs, type PersonConnectionLeaveRequestsArgs, type PersonCustomField, type PersonCustomFieldInput, type PersonCustomFieldsArgs, 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 PersonLatestQuestionsArgs, type PersonNotesArgs, type PersonNotificationsArgs, type PersonPerformanceReviewsArgs, 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 PreviousPerformanceRating, 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 QueryComplianceGroupArgs, type QueryCustomTableArgs, type QueryDataImportArgs, type QueryDataImportLineArgs, type QueryDocumentArgs, type QueryDocumentTemplateArgs, type QueryIntegrationArgs, type QueryJobArgs, type QueryKeypayEmployeeArgs, type QueryKeypayEmployeeFormTemplateArgs, type QueryKeypayLeaveEmployeeArgs, type QueryLeaveRequestArgs, type QueryNoteArgs, type QueryOrgArgs, type QueryPaperworkTypeArgs, type QueryPerformanceReviewArgs, type QueryPerformanceReviewCycleArgs, type QueryPerformanceReviewRevieweeArgs, type QueryPerformanceReviewTemplateArgs, type QueryPersonArgs, type QueryPersonConnectionArgs, type QueryPositionArgs, type QueryQuestionnaireArgs, type QueryQuestionnaireTemplateArgs, type QueryReviewCycleArgs, type QuerySavedQuestionArgs, type QueryStandardReviewArgs, type QueryStandardReviewTemplateArgs, type QueryTaskArgs, type QueryTaskTemplateArgs, type QueryTemplateArgs, type QueryUserArgs, type QueryWorkflowArgs, type QueryWorkflowParticipantArgs, type QuestionConfig, type QuestionConfigInput, type QuestionLikert5Config, type QuestionLikert5ConfigInput, type QuestionLikert5Response, type QuestionLikert5ResponseInput, type QuestionMultipleChoiceConfig, type QuestionMultipleChoiceConfigInput, type QuestionMultipleChoiceOtherConfig, type QuestionMultipleChoiceOtherConfigInput, type QuestionMultipleChoiceOtherResponse, type QuestionMultipleChoiceOtherResponseInput, type QuestionMultipleChoiceResponse, type QuestionMultipleChoiceResponseInput, type QuestionResponse, type QuestionResponseInput, type QuestionTemplateInput, type QuestionTextConfig, type QuestionTextConfigInput, type QuestionTextResponse, type QuestionTextResponseInput, QuestionType, type Questionnaire, type QuestionnaireNotificationsArgs, type QuestionnaireQuestion, type QuestionnaireQuestionAnswerInput, type QuestionnaireQuestionInput, type QuestionnaireTemplate, type QuestionnaireTemplateQuestion, type ReviewCycle, type ReviewCycleReviewsArgs, ReviewRelation, type SavedQuestion, type Scalars, type Session, type SharedCalendarEvent, type SignatureUploadDocumentField, type SignatureUploadDocumentFieldConfigInput, type SignatureUploadDocumentFieldInput, type SmartDocumentField, type SmartDocumentFieldConfigInput, type SmartDocumentFieldInput, SmartDocumentFieldType, type StandardReview, type StandardReviewNotification, type StandardReviewNotificationsArgs, type StandardReviewQuestion, StandardReviewQuestionRespondent, type StandardReviewQuestionsArgs, StandardReviewStatus, type StandardReviewTemplate, type StandardReviewTemplateQuestion, type StartDateEvent, SuperFundNomination, type Tag, TagColor, type TagInput, type Task, type TaskNotificationsArgs, type TaskTemplate, type TaskWorkflowStep, type TaskWorkflowStepRun, TaxEmploymentBasis, TaxFileNumberExemption, TaxResidencyStatus, type Template, type TemplateInput, type TextDocumentField, type TextDocumentFieldConfigInput, type TextDocumentFieldInput, type UpdateLeaveRequestMutation, type UpdateLeaveRequestMutationVariables, type UpdateNoteAttachmentInput, type UpdatePersonConnectionMutation, type UpdatePersonConnectionMutationVariables, type UpdatePersonMutation, type UpdatePersonMutationVariables, type Upload, type User, type Workflow, type WorkflowGroup, WorkflowGroupEventDateType, WorkflowGroupEventTriggerType, type WorkflowGroupRun, WorkflowGroupRunStatus, type WorkflowParticipant, type WorkflowParticipantConnection, type WorkflowRunProgress, WorkflowRunStatus, type WorkflowStep, type WorkflowStepConnection, type WorkflowStepRun, type WorkflowStepRunConnection, WorkflowStepRunStatus, WorkflowStepTaskAssigneeType, WorkflowStepType, type XeroAuBankAccount, type XeroAuEmployee, XeroAuEmploymentBasis, XeroAuGender, type XeroAuIntegration, type XeroAuIntegrationFeaturesArgs, XeroAuResidencyStatus, type XeroAuSuperFund, type XeroAuSuperMembership, XeroAuTfnExemptionType, type XeroIntegrationTenantInput, type XeroIntegrationTokenSetInput, type XeroLeaveEmployee, type XeroLeaveIntegration, type XeroLeaveIntegrationFeaturesArgs };
|
|
6852
|
+
export { type Account, type AccountAppsArgs, type AccountFeatures, type AccountFeaturesInput, AccountFlag, type ActivateIntegrationMutation, type ActivateIntegrationMutationVariables, AllocationMethod, type AnniversaryEvent, type ApiToken, type App, AppCategory, type AppConfig, type AppConfigWebhooks, AppStatus, type AppendIntegrationLogMutation, type AppendIntegrationLogMutationVariables, type Approval, ApprovalStatus, type ApprovalSummary, type Archivable, type Assignment, type AssignmentNotification, type AssignmentNotificationsArgs, AssignmentRelation, AssignmentStatus, AssignmentType, AuthMethod, AuthProvider, AuthState, type AuthorizeIntegrationMutation, type AuthorizeIntegrationMutationVariables, type BasicAbnForm, type BasicAbnFormNotificationsArgs, type BasicAbnFormTemplate, type BasicBankAccountForm, type BasicBankAccountFormNotificationsArgs, type BasicBankAccountFormTemplate, type BasicEmergencyContactForm, type BasicEmergencyContactFormNotificationsArgs, type BasicEmergencyContactFormTemplate, type BasicPersonalDetailsForm, type BasicPersonalDetailsFormNotificationsArgs, type BasicPersonalDetailsFormTemplate, type BasicPreEmploymentForm, type BasicPreEmploymentFormNotificationsArgs, type BasicPreEmploymentFormTemplate, type BasicSuperForm, type BasicSuperFormNotificationsArgs, type BasicSuperFormTemplate, type BasicTaxForm, type BasicTaxFormNotificationsArgs, type BasicTaxFormTemplate, type Birthday, type BirthdayEvent, type BirthdayInput, type Bundle, type BundledPaperworkType, type BundledPaperworkTypeConnection, type Certificate, type CertificateNotificationsArgs, CertificateProof, type CertificateTemplate, type ChoiceDocumentField, type ChoiceDocumentFieldConfigInput, type ChoiceDocumentFieldConfigOptionInput, type ChoiceDocumentFieldInput, type ChoiceDocumentFieldOption, type ChoiceDocumentFieldOptionInput, type CompleteSyncMutation, type CompleteSyncMutationVariables, type ComplianceGroup, type ComplianceGroupPaperworkType, type ComplianceGroupPaperworkTypeConnection, type ComplianceGroupPersonConnection, ComplianceStatus, 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 CustomField, type CustomFieldConfig, type CustomFieldConfigInput, type CustomFieldDateConfig, type CustomFieldDateConfigInput, type CustomFieldDateValue, type CustomFieldNumberConfig, type CustomFieldNumberConfigInput, type CustomFieldNumberUnderlyingValue, CustomFieldNumberUnit, type CustomFieldNumberValue, type CustomFieldNumberValueInput, type CustomFieldSingleChoiceConfig, type CustomFieldSingleChoiceConfigInput, type CustomFieldSingleChoiceOption, type CustomFieldSingleChoiceOptionInput, type CustomFieldSingleChoiceValue, type CustomFieldTextConfig, type CustomFieldTextConfigInput, type CustomFieldTextValue, CustomFieldType, type CustomFieldValue, type CustomFieldValueInput, type CustomTable, type CustomTableColumn, type CustomTableColumnInput, type CustomTableConfig, type CustomTableConfigFilter, type CustomTableConfigFilterInput, type CustomTableConfigInput, type CustomTableConfigSorting, type CustomTableConfigSortingInput, type DataExport, DataExportType, type DataImport, type DataImportLine, type DateDocumentField, type DateDocumentFieldConfigInput, type DateDocumentFieldInput, type DeleteApiTokenMutation, type DeleteApiTokenMutationVariables, type DeletePersonConnectionMutation, type DeletePersonConnectionMutationVariables, type Department, type DepartmentPositionsArgs, type Document, type DocumentField, type DocumentFieldConfigInput, type DocumentFieldInput, DocumentFieldResponder, type DocumentNotificationsArgs, type DocumentTemplate, DueDateStatus, type EmailNotificationSettings, type EmailNotificationSettingsInput, type Exact, ExpiryStatus, FieldPresence, FileProcessingStatus, Gender, type GenericIntegration, type GenericIntegrationFeaturesArgs, type GetApiTokensQuery, type GetApiTokensQueryVariables, type GetIntegrationQuery, type GetIntegrationQueryVariables, type GetLeaveRequestsQuery, type GetLeaveRequestsQueryVariables, type GetMyAppsQuery, type GetMyAppsQueryVariables, type GetPeopleQuery, type GetPeopleQueryVariables, type GetPersonConnectionsQuery, type GetPersonConnectionsQueryVariables, type Incremental, type InitializeIntegrationMutation, type InitializeIntegrationMutationVariables, type InputMaybe, type Integration, type IntegrationConnection, type IntegrationFeatures, type IntegrationFeaturesArgs, type IntegrationFeaturesInput, type IntegrationLog, type IntegrationLogInput, IntegrationStatus, type IntegrationSync, type IntegrationSyncEvent, IntegrationSyncEventType, IntegrationSyncStatus, IntegrationType, type Job, JobStatus, type KeypayBusiness, type KeypayEmployee, type KeypayEmployeeForm, type KeypayEmployeeFormNotificationsArgs, type KeypayEmployeeFormTemplate, KeypayEmployeeStatus, KeypayEmploymentType, KeypayGender, type KeypayIntegration, type KeypayIntegrationBusinessInput, type KeypayIntegrationFeaturesArgs, type KeypayIntegrationTokenSetInput, type KeypayLeaveEmployee, type KeypayLeaveIntegration, type KeypayLeaveIntegrationFeaturesArgs, type LeaveBalance, type LeaveCategory, type LeaveCategoryInput, type LeaveHoursEstimate, type LeaveRequest, type LeaveRequestNotification, type LeaveRequestNotificationsArgs, LeaveRequestRelation, LeaveRequestStatus, type Location, type Login, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Media, type MultiLineTextDocumentField, type MultiLineTextDocumentFieldConfigInput, type MultiLineTextDocumentFieldInput, type Mutation, type MutationAcceptInviteArgs, type MutationAcceptLoginArgs, type MutationActivateIntegrationArgs, type MutationActivateKeypayIntegrationArgs, type MutationActivatePersonArgs, type MutationActivateWorkflowRunArgs, type MutationActivateXeroIntegrationArgs, type MutationAddParticipantsToWorkflowArgs, type MutationAddPeopleToComplianceGroupsArgs, type MutationAddPeopleToTagsArgs, type MutationAddRevieweesToPerformanceReviewCycleArgs, type MutationAnswerPerformanceReviewQuestionArgs, type MutationAppendIntegrationLogArgs, type MutationApproveAssignmentArgs, type MutationApproveKeypayLeaveLeaveRequestArgs, type MutationApproveLeaveRequestArgs, type MutationApproveXeroLeaveRequestArgs, type MutationArchiveAssignmentArgs, type MutationArchiveBundleArgs, type MutationArchiveComplianceGroupArgs, type MutationArchiveCustomFieldArgs, type MutationArchiveCustomTableArgs, type MutationArchiveIntegrationArgs, type MutationArchiveLocationArgs, type MutationArchiveNotesArgs, type MutationArchiveOrgArgs, type MutationArchivePaperworkTypeArgs, type MutationArchivePerformanceReviewCycleArgs, type MutationArchivePerformanceReviewRevieweeArgs, type MutationArchivePerformanceReviewSavedQuestionArgs, type MutationArchivePerformanceReviewTemplateArgs, type MutationArchivePerformanceReviewTemplateQuestionArgs, type MutationArchivePersonArgs, type MutationArchivePositionArgs, type MutationArchiveSavedQuestionArgs, type MutationArchiveTemplateArgs, type MutationArchiveWorkflowArgs, type MutationArchiveWorkflowParticipantArgs, 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 MutationAssignTaskArgs, type MutationAuthorizeIntegrationArgs, type MutationBulkAssignPaperworkArgs, type MutationBulkUpdatePeopleLocationArgs, type MutationCancelLeaveRequestArgs, type MutationCompleteIntegrationSyncArgs, type MutationCompletePasswordResetArgs, type MutationCompletePerformanceReviewCycleArgs, type MutationConfirmProfileArgs, type MutationConfirmProviderArgs, type MutationCreateAccountArgs, type MutationCreateApiTokenArgs, type MutationCreateAssignmentsArgs, type MutationCreateBasicAbnFormArgs, type MutationCreateBasicAbnFormTemplateArgs, type MutationCreateBasicBankAccountFormArgs, type MutationCreateBasicBankAccountFormTemplateArgs, type MutationCreateBasicEmergencyContactFormArgs, type MutationCreateBasicEmergencyContactFormTemplateArgs, type MutationCreateBasicPersonalDetailsFormArgs, type MutationCreateBasicPersonalDetailsFormTemplateArgs, type MutationCreateBasicPreEmploymentFormArgs, type MutationCreateBasicPreEmploymentFormTemplateArgs, type MutationCreateBasicSuperFormArgs, type MutationCreateBasicSuperFormTemplateArgs, type MutationCreateBasicTaxFormArgs, type MutationCreateBasicTaxFormTemplateArgs, type MutationCreateBundleArgs, type MutationCreateCertificateArgs, type MutationCreateCertificateTemplateArgs, type MutationCreateComplianceGroupArgs, type MutationCreateCustomFieldArgs, type MutationCreateCustomTableArgs, type MutationCreateDataExportArgs, type MutationCreateDataImportArgs, type MutationCreateDocumentArgs, type MutationCreateDocumentTemplateArgs, type MutationCreateIntegrationArgs, type MutationCreateIntegrationLogArgs, type MutationCreateJobArgs, type MutationCreateKeypayEmployeeFormArgs, type MutationCreateKeypayEmployeeFormTemplateArgs, type MutationCreateKeypayLeaveLeaveRequestArgs, type MutationCreateLeaveRequestArgs, type MutationCreateLocalPersonConnectionsArgs, type MutationCreateLocationArgs, type MutationCreateLoginArgs, type MutationCreateManualDataImportArgs, type MutationCreateNoteArgs, type MutationCreateNoteAttachmentsArgs, type MutationCreateOrgArgs, type MutationCreatePaperworkTypeArgs, type MutationCreatePerformanceReviewCycleArgs, type MutationCreatePerformanceReviewSavedQuestionArgs, type MutationCreatePerformanceReviewTemplateArgs, type MutationCreatePerformanceReviewTemplateQuestionArgs, type MutationCreatePersonArgs, type MutationCreatePersonConnectionArgs, type MutationCreatePersonDataImportLineArgs, type MutationCreatePositionArgs, type MutationCreateProcessedCertificateArgs, type MutationCreateProcessedDocumentArgs, type MutationCreateQuestionnaireArgs, type MutationCreateQuestionnaireTemplateArgs, type MutationCreateSavedQuestionArgs, type MutationCreateStandaloneTaskArgs, type MutationCreateTagArgs, type MutationCreateTagsArgs, type MutationCreateTaskArgs, type MutationCreateTaskTemplateArgs, type MutationCreateWorkflowArgs, type MutationCreateWorkflowGroupArgs, type MutationCreateWorkflowStepArgs, type MutationCreateXeroLeaveRequestArgs, type MutationDeleteApiTokenArgs, type MutationDeleteApprovalsArgs, type MutationDeleteJobArgs, type MutationDeleteLoginArgs, type MutationDeletePersonConnectionArgs, type MutationDeletePersonConnectionsArgs, type MutationDeletePositionArgs, type MutationDeleteTagArgs, type MutationDeleteWorkflowGroupArgs, type MutationDeleteWorkflowStepArgs, type MutationDenyKeypayLeaveLeaveRequestArgs, type MutationDenyLeaveRequestArgs, type MutationDenyXeroLeaveRequestArgs, type MutationDuplicatePaperworkTypeArgs, type MutationDuplicatePerformanceReviewTemplateArgs, type MutationInitializeIntegrationArgs, type MutationInvitePeopleArgs, type MutationInvitePersonArgs, type MutationJoinOrgArgs, type MutationLaunchPerformanceReviewCycleArgs, type MutationLogInArgs, type MutationLogInWithProviderArgs, type MutationMarkNotificationsReadArgs, type MutationMarkNotificationsUnreadArgs, type MutationMergePaperworkTypesArgs, type MutationPauseIntegrationArgs, type MutationProcessAssignmentArgs, type MutationProcessAssignmentsArgs, type MutationProcessLeaveRequestArgs, type MutationReinviteLoginArgs, type MutationReinvitePeopleArgs, type MutationReinvitePersonArgs, type MutationRejectAssignmentArgs, type MutationRejectCertificateArgs, type MutationRemovePaperworkTypeFromBundlesArgs, type MutationRemovePeopleFromComplianceGroupsArgs, type MutationRemovePeopleFromTagsArgs, type MutationRemoveRevieweeFromCycleArgs, type MutationRequestApprovalsArgs, type MutationRequestInviteArgs, type MutationRequestPasswordResetArgs, type MutationResetXeroAuIntegrationArgs, type MutationRestoreAssignmentArgs, type MutationRestoreBundleArgs, type MutationRestoreIntegrationArgs, type MutationRestoreNotesArgs, type MutationRestorePaperworkTypeArgs, type MutationRestorePersonArgs, type MutationRestoreSavedQuestionArgs, type MutationRestoreTemplateArgs, type MutationSetActiveLoginArgs, type MutationSetPersonCustomFieldsArgs, type MutationSharePerformanceReviewRevieweeArgs, type MutationSubmitBasicAbnFormArgs, type MutationSubmitBasicBankAccountFormArgs, type MutationSubmitBasicEmergencyContactFormArgs, type MutationSubmitBasicPersonalDetailsFormArgs, type MutationSubmitBasicPreEmploymentFormArgs, type MutationSubmitBasicSuperFormArgs, type MutationSubmitBasicTaxFormArgs, type MutationSubmitCertificateArgs, type MutationSubmitDocumentArgs, type MutationSubmitKeypayEmployeeFormArgs, type MutationSubmitPerformanceReviewArgs, type MutationSubmitQuestionnaireArgs, type MutationSubmitTaskArgs, type MutationTerminatePersonArgs, type MutationTransferResponsibilityArgs, type MutationTriggerIntegrationSyncArgs, type MutationTriggerWorkflowGroupRunArgs, type MutationUnmatchPersonConnectionsArgs, type MutationUnpauseIntegrationArgs, 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 MutationUpdateComplianceGroupArgs, type MutationUpdateCustomFieldArgs, type MutationUpdateCustomTableArgs, type MutationUpdateDocumentArgs, type MutationUpdateDocumentTemplateArgs, type MutationUpdateIntegrationArgs, type MutationUpdateJobArgs, type MutationUpdateKeypayEmployeeFormTemplateArgs, type MutationUpdateKeypayIntegrationArgs, type MutationUpdateKeypayLeaveIntegrationArgs, type MutationUpdateLeaveRequestArgs, type MutationUpdateLocationArgs, type MutationUpdateNoteArgs, type MutationUpdateOnboardingAssignmentsArgs, type MutationUpdateOrgArgs, type MutationUpdatePaperworkAssignmentArgs, type MutationUpdatePaperworkTypeArgs, type MutationUpdatePerformanceReviewCycleArgs, type MutationUpdatePerformanceReviewCycleConfigArgs, type MutationUpdatePerformanceReviewCycleRevieweeArgs, type MutationUpdatePerformanceReviewSavedQuestionArgs, type MutationUpdatePerformanceReviewTemplateArgs, type MutationUpdatePerformanceReviewTemplateQuestionArgs, type MutationUpdatePersonArgs, type MutationUpdatePersonConnectionArgs, type MutationUpdatePersonTagsArgs, type MutationUpdatePositionArgs, type MutationUpdatePositionsArgs, type MutationUpdateQuestionnaireArgs, type MutationUpdateQuestionnaireTemplateArgs, type MutationUpdateSavedQuestionArgs, type MutationUpdateTagArgs, type MutationUpdateTaskArgs, type MutationUpdateTaskTemplateArgs, type MutationUpdateUserPasswordArgs, type MutationUpdateWorkflowArgs, type MutationUpdateWorkflowGroupArgs, type MutationUpdateWorkflowStepArgs, type MutationUpdateXeroAuIntegrationArgs, type MutationUpdateXeroLeaveIntegrationArgs, type Note, type NoteAttachment, type Notification, NotificationType, type Org, type OrgBundlesArgs, type OrgComplianceGroupConnection, type OrgFeatures, type OrgFeaturesInput, type OrgIntegrationsArgs, type OrgLocationsArgs, type OrgPaperworkSummariesArgs, type OrgPaperworkTypesArgs, type OrgPeopleArgs, type OrgPerformanceReviewCyclesArgs, type OrgPerformanceReviewSavedQuestionsArgs, type OrgPerformanceReviewTemplatesArgs, type OrgPositionsArgs, type OrgSavedQuestionsArgs, type OrgTemplatesArgs, type PageInfo, type PaperworkAssignment, type PaperworkAssignmentNotificationsArgs, type PaperworkRequirement, type PaperworkRequirementConnection, type PaperworkSummary, PaperworkSummaryStatus, type PaperworkTemplate, type PaperworkTemplateConnection, type PaperworkTemplateEdge, type PaperworkType, PaperworkTypeAutoReassignMode, type PaperworkTypeTemplatesArgs, type PaperworkWorkflowStep, type PaperworkWorkflowStepRun, PayPeriod, type PerformanceReview, type PerformanceReviewCycle, type PerformanceReviewCycleConfig, PerformanceReviewCycleStatus, type PerformanceReviewNotification, type PerformanceReviewQuestion, type PerformanceReviewQuestionResponse, type PerformanceReviewResponse, type PerformanceReviewReviewee, type PerformanceReviewRevieweeInput, type PerformanceReviewSavedQuestion, PerformanceReviewStatus, type PerformanceReviewTemplate, type PerformanceReviewTemplateQuestion, type PerformanceReviewTemplateTemplateQuestionsArgs, PerformanceReviewType, type Person, type PersonAssignmentsArgs, type PersonBankAccountsChange, type PersonBankAccountsChangeInput, type PersonCertificatesArgs, type PersonChange, type PersonConnection, type PersonConnectionLeaveHoursEstimateArgs, type PersonConnectionLeaveRequestsArgs, type PersonCustomField, type PersonCustomFieldInput, type PersonCustomFieldsArgs, 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 PersonLatestQuestionsArgs, type PersonNotesArgs, type PersonNotificationsArgs, type PersonPerformanceReviewsArgs, type PersonPersonalEmailChange, type PersonPersonalEmailChangeInput, type PersonPersonalPhoneChange, type PersonPersonalPhoneChangeInput, type PersonPostalAddressChange, type PersonPostalAddressChangeInput, type PersonQuestionnairesArgs, type PersonRemunerationChange, type PersonResidentialAddressChange, type PersonResidentialAddressChangeInput, PersonRole, PersonStatus, type PersonSuperFundsChange, type PersonSuperFundsChangeInput, type PersonTasksArgs, type PersonTaxDetailsChange, type PersonTaxDetailsChangeInput, type PersonTenureChange, type PersonTenureChangeInput, type Position, type PreviousPerformanceRating, 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 QueryComplianceGroupArgs, type QueryCustomTableArgs, type QueryDataImportArgs, type QueryDataImportLineArgs, type QueryDocumentArgs, type QueryDocumentTemplateArgs, type QueryIntegrationArgs, type QueryJobArgs, type QueryKeypayEmployeeArgs, type QueryKeypayEmployeeFormTemplateArgs, type QueryKeypayLeaveEmployeeArgs, type QueryLeaveRequestArgs, type QueryNoteArgs, type QueryOrgArgs, type QueryPaperworkTypeArgs, type QueryPerformanceReviewArgs, type QueryPerformanceReviewCycleArgs, type QueryPerformanceReviewRevieweeArgs, type QueryPerformanceReviewTemplateArgs, type QueryPersonArgs, type QueryPersonConnectionArgs, type QueryPositionArgs, type QueryQuestionnaireArgs, type QueryQuestionnaireTemplateArgs, type QuerySavedQuestionArgs, type QueryTaskArgs, type QueryTaskTemplateArgs, type QueryTemplateArgs, type QueryUserArgs, type QueryWorkflowArgs, type QueryWorkflowParticipantArgs, type QuestionConfig, type QuestionLikert5Config, type QuestionLikert5Response, type QuestionLikert5ResponseInput, type QuestionMultipleChoiceConfig, type QuestionMultipleChoiceOtherConfig, type QuestionMultipleChoiceOtherResponse, type QuestionMultipleChoiceOtherResponseInput, type QuestionMultipleChoiceResponse, type QuestionMultipleChoiceResponseInput, type QuestionResponse, type QuestionResponseInput, type QuestionTemplateInput, type QuestionTextConfig, type QuestionTextResponse, type QuestionTextResponseInput, QuestionType, type Questionnaire, type QuestionnaireNotificationsArgs, type QuestionnaireQuestion, type QuestionnaireQuestionAnswerInput, type QuestionnaireQuestionInput, type QuestionnaireTemplate, type QuestionnaireTemplateQuestion, type SavedQuestion, type Scalars, type Session, type SharedCalendarEvent, type SignatureUploadDocumentField, type SignatureUploadDocumentFieldConfigInput, type SignatureUploadDocumentFieldInput, type SmartDocumentField, type SmartDocumentFieldConfigInput, type SmartDocumentFieldInput, SmartDocumentFieldType, type StartDateEvent, SuperFundNomination, type Tag, TagColor, type TagInput, type Task, type TaskNotificationsArgs, type TaskTemplate, type TaskWorkflowStep, type TaskWorkflowStepRun, TaxEmploymentBasis, TaxFileNumberExemption, TaxResidencyStatus, type Template, type TemplateInput, type TextDocumentField, type TextDocumentFieldConfigInput, type TextDocumentFieldInput, type UpdateLeaveRequestMutation, type UpdateLeaveRequestMutationVariables, type UpdateNoteAttachmentInput, type UpdatePersonConnectionMutation, type UpdatePersonConnectionMutationVariables, type UpdatePersonMutation, type UpdatePersonMutationVariables, type Upload, type User, type Workflow, type WorkflowGroup, WorkflowGroupEventDateType, WorkflowGroupEventTriggerType, type WorkflowGroupRun, WorkflowGroupRunStatus, type WorkflowParticipant, type WorkflowParticipantConnection, type WorkflowRunProgress, WorkflowRunStatus, type WorkflowStep, type WorkflowStepConnection, type WorkflowStepRun, type WorkflowStepRunConnection, WorkflowStepRunStatus, WorkflowStepTaskAssigneeType, WorkflowStepType, type XeroAuBankAccount, type XeroAuEmployee, XeroAuEmploymentBasis, XeroAuGender, type XeroAuIntegration, type XeroAuIntegrationFeaturesArgs, XeroAuResidencyStatus, type XeroAuSuperFund, type XeroAuSuperMembership, XeroAuTfnExemptionType, type XeroIntegrationTenantInput, type XeroIntegrationTokenSetInput, type XeroLeaveEmployee, type XeroLeaveIntegration, type XeroLeaveIntegrationFeaturesArgs };
|