@worknice/js-sdk 0.13.51 → 0.13.53
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 +187 -6
- package/dist/api/_generated.js +22 -0
- package/dist/api/_generated.js.map +1 -1
- package/dist/api/_types.d.ts +1 -1
- package/package.json +2 -2
package/dist/api/_generated.d.ts
CHANGED
|
@@ -230,6 +230,8 @@ type Assignment = {
|
|
|
230
230
|
createdAt: Scalars['DateTime']['output'];
|
|
231
231
|
creator?: Maybe<Person>;
|
|
232
232
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
233
|
+
dueDateStatus?: Maybe<DueDateStatus>;
|
|
234
|
+
dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
233
235
|
expirationDate?: Maybe<Scalars['Date']['output']>;
|
|
234
236
|
expirationWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
235
237
|
expiryStatus: ExpiryStatus;
|
|
@@ -321,6 +323,8 @@ type BasicAbnForm = Assignment & PaperworkAssignment & {
|
|
|
321
323
|
createdAt: Scalars['DateTime']['output'];
|
|
322
324
|
creator?: Maybe<Person>;
|
|
323
325
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
326
|
+
dueDateStatus?: Maybe<DueDateStatus>;
|
|
327
|
+
dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
324
328
|
expirationDate?: Maybe<Scalars['Date']['output']>;
|
|
325
329
|
expirationWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
326
330
|
expiryStatus: ExpiryStatus;
|
|
@@ -400,6 +404,8 @@ type BasicBankAccountForm = Assignment & PaperworkAssignment & PersonBankAccount
|
|
|
400
404
|
createdAt: Scalars['DateTime']['output'];
|
|
401
405
|
creator?: Maybe<Person>;
|
|
402
406
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
407
|
+
dueDateStatus?: Maybe<DueDateStatus>;
|
|
408
|
+
dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
403
409
|
expirationDate?: Maybe<Scalars['Date']['output']>;
|
|
404
410
|
expirationWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
405
411
|
expiryStatus: ExpiryStatus;
|
|
@@ -468,6 +474,8 @@ type BasicEmergencyContactForm = Assignment & PaperworkAssignment & PersonChange
|
|
|
468
474
|
createdAt: Scalars['DateTime']['output'];
|
|
469
475
|
creator?: Maybe<Person>;
|
|
470
476
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
477
|
+
dueDateStatus?: Maybe<DueDateStatus>;
|
|
478
|
+
dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
471
479
|
emailPresence: FieldPresence;
|
|
472
480
|
emergencyContact1AddressCity?: Maybe<Scalars['String']['output']>;
|
|
473
481
|
emergencyContact1AddressCountry?: Maybe<Scalars['String']['output']>;
|
|
@@ -541,6 +549,8 @@ type BasicPersonalDetailsForm = Assignment & PaperworkAssignment & PersonChange
|
|
|
541
549
|
creator?: Maybe<Person>;
|
|
542
550
|
dateOfBirth?: Maybe<Scalars['Date']['output']>;
|
|
543
551
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
552
|
+
dueDateStatus?: Maybe<DueDateStatus>;
|
|
553
|
+
dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
544
554
|
email?: Maybe<Scalars['String']['output']>;
|
|
545
555
|
expirationDate?: Maybe<Scalars['Date']['output']>;
|
|
546
556
|
expirationWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
@@ -615,6 +625,8 @@ type BasicPreEmploymentForm = Assignment & PaperworkAssignment & {
|
|
|
615
625
|
createdAt: Scalars['DateTime']['output'];
|
|
616
626
|
creator?: Maybe<Person>;
|
|
617
627
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
628
|
+
dueDateStatus?: Maybe<DueDateStatus>;
|
|
629
|
+
dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
618
630
|
existingHealthConditions?: Maybe<Scalars['Boolean']['output']>;
|
|
619
631
|
existingHealthConditionsExplanation?: Maybe<Scalars['String']['output']>;
|
|
620
632
|
existingHealthConditionsPresence: Scalars['Boolean']['output'];
|
|
@@ -675,6 +687,8 @@ type BasicSuperForm = Assignment & PaperworkAssignment & PersonChange & PersonSu
|
|
|
675
687
|
createdAt: Scalars['DateTime']['output'];
|
|
676
688
|
creator?: Maybe<Person>;
|
|
677
689
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
690
|
+
dueDateStatus?: Maybe<DueDateStatus>;
|
|
691
|
+
dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
678
692
|
expirationDate?: Maybe<Scalars['Date']['output']>;
|
|
679
693
|
expirationWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
680
694
|
expiryStatus: ExpiryStatus;
|
|
@@ -754,6 +768,8 @@ type BasicTaxForm = Assignment & PaperworkAssignment & PersonChange & PersonTaxD
|
|
|
754
768
|
creator?: Maybe<Person>;
|
|
755
769
|
dateOfBirth?: Maybe<Scalars['Date']['output']>;
|
|
756
770
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
771
|
+
dueDateStatus?: Maybe<DueDateStatus>;
|
|
772
|
+
dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
757
773
|
email?: Maybe<Scalars['String']['output']>;
|
|
758
774
|
employmentBasis?: Maybe<TaxEmploymentBasis>;
|
|
759
775
|
expirationDate?: Maybe<Scalars['Date']['output']>;
|
|
@@ -867,6 +883,8 @@ type Certificate = Assignment & PaperworkAssignment & {
|
|
|
867
883
|
documentExpirationDate?: Maybe<Scalars['Date']['output']>;
|
|
868
884
|
documentNumber?: Maybe<Scalars['String']['output']>;
|
|
869
885
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
886
|
+
dueDateStatus?: Maybe<DueDateStatus>;
|
|
887
|
+
dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
870
888
|
expirationDate?: Maybe<Scalars['Date']['output']>;
|
|
871
889
|
expirationDatePresence: FieldPresence;
|
|
872
890
|
expirationWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
@@ -1112,6 +1130,8 @@ type Document = Assignment & PaperworkAssignment & {
|
|
|
1112
1130
|
/** @deprecated Use the 'template' field instead. */
|
|
1113
1131
|
documentTemplate?: Maybe<DocumentTemplate>;
|
|
1114
1132
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
1133
|
+
dueDateStatus?: Maybe<DueDateStatus>;
|
|
1134
|
+
dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
1115
1135
|
expirationDate?: Maybe<Scalars['Date']['output']>;
|
|
1116
1136
|
expirationWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
1117
1137
|
expiryStatus: ExpiryStatus;
|
|
@@ -1184,19 +1204,36 @@ type DocumentTemplate = PaperworkTemplate & Template & {
|
|
|
1184
1204
|
/** The signed URL where this document template can be accessed. The signed URL will only be accessible for 1 hour following the request. Every request generates a new URL. */
|
|
1185
1205
|
url: Scalars['String']['output'];
|
|
1186
1206
|
};
|
|
1207
|
+
declare enum DueDateStatus {
|
|
1208
|
+
/** Due date is within the next `dueDateWarningDays` days. */
|
|
1209
|
+
DueSoon = "DUE_SOON",
|
|
1210
|
+
/** No due date set, or due date is beyond the warning threshold. */
|
|
1211
|
+
NotDue = "NOT_DUE",
|
|
1212
|
+
/** Due date has passed. */
|
|
1213
|
+
Overdue = "OVERDUE"
|
|
1214
|
+
}
|
|
1187
1215
|
type EmailNotificationSettings = {
|
|
1188
1216
|
approvalRequested: Scalars['Boolean']['output'];
|
|
1189
1217
|
assignmentApproved: Scalars['Boolean']['output'];
|
|
1190
1218
|
assignmentAssigned: Scalars['Boolean']['output'];
|
|
1219
|
+
assignmentDueSoon: Scalars['Boolean']['output'];
|
|
1191
1220
|
assignmentExpired: Scalars['Boolean']['output'];
|
|
1192
1221
|
assignmentExpiringSoon: Scalars['Boolean']['output'];
|
|
1193
1222
|
assignmentFailed: Scalars['Boolean']['output'];
|
|
1223
|
+
assignmentOverdue: Scalars['Boolean']['output'];
|
|
1194
1224
|
assignmentReassigned: Scalars['Boolean']['output'];
|
|
1195
1225
|
assignmentSubmitted: Scalars['Boolean']['output'];
|
|
1196
1226
|
leaveRequestApproved: Scalars['Boolean']['output'];
|
|
1197
1227
|
leaveRequestCancelled: Scalars['Boolean']['output'];
|
|
1198
1228
|
leaveRequestCreated: Scalars['Boolean']['output'];
|
|
1199
1229
|
leaveRequestDenied: Scalars['Boolean']['output'];
|
|
1230
|
+
performanceReviewManagerReviewAssigned: Scalars['Boolean']['output'];
|
|
1231
|
+
performanceReviewManagerReviewOverdue: Scalars['Boolean']['output'];
|
|
1232
|
+
performanceReviewPacketShared: Scalars['Boolean']['output'];
|
|
1233
|
+
performanceReviewRevieweeSelfReviewOverdue: Scalars['Boolean']['output'];
|
|
1234
|
+
performanceReviewSelfReviewAssigned: Scalars['Boolean']['output'];
|
|
1235
|
+
performanceReviewSelfReviewOverdue: Scalars['Boolean']['output'];
|
|
1236
|
+
performanceReviewSelfReviewSubmitted: Scalars['Boolean']['output'];
|
|
1200
1237
|
reviewAssigned: Scalars['Boolean']['output'];
|
|
1201
1238
|
reviewScheduled: Scalars['Boolean']['output'];
|
|
1202
1239
|
reviewSubmitted: Scalars['Boolean']['output'];
|
|
@@ -1627,6 +1664,8 @@ type KeypayEmployeeForm = Assignment & PaperworkAssignment & PersonBankAccountsC
|
|
|
1627
1664
|
creator?: Maybe<Person>;
|
|
1628
1665
|
dateOfBirth?: Maybe<Scalars['Date']['output']>;
|
|
1629
1666
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
1667
|
+
dueDateStatus?: Maybe<DueDateStatus>;
|
|
1668
|
+
dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
1630
1669
|
emailAddress?: Maybe<Scalars['String']['output']>;
|
|
1631
1670
|
emailAddressPresence: FieldPresence;
|
|
1632
1671
|
emergencyContact1Address?: Maybe<Scalars['String']['output']>;
|
|
@@ -1816,6 +1855,15 @@ type KeypayIntegration = Integration & {
|
|
|
1816
1855
|
type KeypayIntegrationFeaturesArgs = {
|
|
1817
1856
|
rawValues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1818
1857
|
};
|
|
1858
|
+
type KeypayIntegrationBusinessInput = {
|
|
1859
|
+
businessId: Scalars['Int']['input'];
|
|
1860
|
+
businessName: Scalars['String']['input'];
|
|
1861
|
+
};
|
|
1862
|
+
type KeypayIntegrationTokenSetInput = {
|
|
1863
|
+
accessToken: Scalars['String']['input'];
|
|
1864
|
+
expiresIn: Scalars['Int']['input'];
|
|
1865
|
+
refreshToken: Scalars['String']['input'];
|
|
1866
|
+
};
|
|
1819
1867
|
type KeypayLeaveEmployee = {
|
|
1820
1868
|
connection?: Maybe<PersonConnection>;
|
|
1821
1869
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -1973,10 +2021,13 @@ type Mutation = {
|
|
|
1973
2021
|
acceptLogin: Login;
|
|
1974
2022
|
/** Transitions an integration from 'UNINITIALIZED', 'UNAUTHORIZED' or 'UNCONFIGURED' to 'ACTIVE'. This can only be done by the bot associated with the integration. */
|
|
1975
2023
|
activateIntegration: Integration;
|
|
2024
|
+
activateKeypayIntegration: Integration;
|
|
1976
2025
|
/** Either transition this person's status from either 'ONBOARDING' or 'TERMINATED' to 'ACTIVE'. */
|
|
1977
2026
|
activatePerson: Person;
|
|
2027
|
+
activateXeroIntegration: Integration;
|
|
1978
2028
|
addPeopleToBundles: Array<Bundle>;
|
|
1979
2029
|
addPeopleToTags: Array<Tag>;
|
|
2030
|
+
addRevieweesToPerformanceReviewCycle: Array<PerformanceReviewReviewee>;
|
|
1980
2031
|
appendIntegrationLog: IntegrationLog;
|
|
1981
2032
|
approveAssignment: Assignment;
|
|
1982
2033
|
approveKeypayLeaveLeaveRequest: LeaveRequest;
|
|
@@ -2195,6 +2246,7 @@ type Mutation = {
|
|
|
2195
2246
|
removePaperworkTypeFromBundles: Array<Bundle>;
|
|
2196
2247
|
removePeopleFromBundles: Array<Bundle>;
|
|
2197
2248
|
removePeopleFromTags: Array<Tag>;
|
|
2249
|
+
removeRevieweeFromCycle: Scalars['Boolean']['output'];
|
|
2198
2250
|
/** Notifies the approver and changes the approvals status to 'REQUESTED'. Only 'DRAFT' approvals can be requested. */
|
|
2199
2251
|
requestApprovals: Array<Approval>;
|
|
2200
2252
|
/** If the given email address is associated with a user in the system, this mutation will send an email to the address with a OTP for resetting the user's password. See 'completePasswordReset'. */
|
|
@@ -2270,6 +2322,7 @@ type Mutation = {
|
|
|
2270
2322
|
updatePaperworkType: PaperworkType;
|
|
2271
2323
|
updatePerformanceReviewCycle: PerformanceReviewCycle;
|
|
2272
2324
|
updatePerformanceReviewCycleConfig: PerformanceReviewCycleConfig;
|
|
2325
|
+
updatePerformanceReviewCycleReviewee: PerformanceReviewReviewee;
|
|
2273
2326
|
updatePerson: Person;
|
|
2274
2327
|
updatePersonConnection: PersonConnection;
|
|
2275
2328
|
updatePersonTags: Array<Tag>;
|
|
@@ -2297,9 +2350,17 @@ type MutationAcceptLoginArgs = {
|
|
|
2297
2350
|
type MutationActivateIntegrationArgs = {
|
|
2298
2351
|
integrationId: Scalars['ID']['input'];
|
|
2299
2352
|
};
|
|
2353
|
+
type MutationActivateKeypayIntegrationArgs = {
|
|
2354
|
+
tenant: KeypayIntegrationBusinessInput;
|
|
2355
|
+
tokenSet: KeypayIntegrationTokenSetInput;
|
|
2356
|
+
};
|
|
2300
2357
|
type MutationActivatePersonArgs = {
|
|
2301
2358
|
id: Scalars['ID']['input'];
|
|
2302
2359
|
};
|
|
2360
|
+
type MutationActivateXeroIntegrationArgs = {
|
|
2361
|
+
tenant: XeroIntegrationTenantInput;
|
|
2362
|
+
tokenSet: XeroIntegrationTokenSetInput;
|
|
2363
|
+
};
|
|
2303
2364
|
type MutationAddPeopleToBundlesArgs = {
|
|
2304
2365
|
bundleIds: Array<Scalars['ID']['input']>;
|
|
2305
2366
|
personIds: Array<Scalars['ID']['input']>;
|
|
@@ -2308,6 +2369,10 @@ type MutationAddPeopleToTagsArgs = {
|
|
|
2308
2369
|
personIds: Array<Scalars['ID']['input']>;
|
|
2309
2370
|
tagIds: Array<Scalars['ID']['input']>;
|
|
2310
2371
|
};
|
|
2372
|
+
type MutationAddRevieweesToPerformanceReviewCycleArgs = {
|
|
2373
|
+
cycleId: Scalars['ID']['input'];
|
|
2374
|
+
entries: Array<PerformanceReviewRevieweeInput>;
|
|
2375
|
+
};
|
|
2311
2376
|
type MutationAppendIntegrationLogArgs = {
|
|
2312
2377
|
entries: Array<IntegrationLogInput>;
|
|
2313
2378
|
integrationLogId: Scalars['ID']['input'];
|
|
@@ -2693,6 +2758,7 @@ type MutationCreateOrgArgs = {
|
|
|
2693
2758
|
name: Scalars['String']['input'];
|
|
2694
2759
|
};
|
|
2695
2760
|
type MutationCreatePaperworkTypeArgs = {
|
|
2761
|
+
defaultDueDateWarningDays?: InputMaybe<Scalars['Int']['input']>;
|
|
2696
2762
|
defaultExpirationWarningDays?: InputMaybe<Scalars['Int']['input']>;
|
|
2697
2763
|
defaultResponsiblePersonId?: InputMaybe<Scalars['ID']['input']>;
|
|
2698
2764
|
name: Scalars['String']['input'];
|
|
@@ -2983,6 +3049,10 @@ type MutationRemovePeopleFromTagsArgs = {
|
|
|
2983
3049
|
personIds: Array<Scalars['ID']['input']>;
|
|
2984
3050
|
tagIds: Array<Scalars['ID']['input']>;
|
|
2985
3051
|
};
|
|
3052
|
+
type MutationRemoveRevieweeFromCycleArgs = {
|
|
3053
|
+
cycleId: Scalars['ID']['input'];
|
|
3054
|
+
revieweeId: Scalars['ID']['input'];
|
|
3055
|
+
};
|
|
2986
3056
|
type MutationRequestApprovalsArgs = {
|
|
2987
3057
|
approvalIds: Array<Scalars['ID']['input']>;
|
|
2988
3058
|
};
|
|
@@ -3285,6 +3355,7 @@ type MutationUpdateAccountArgs = {
|
|
|
3285
3355
|
type MutationUpdateAssignmentArgs = {
|
|
3286
3356
|
approverIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3287
3357
|
dueDate?: InputMaybe<Scalars['Date']['input']>;
|
|
3358
|
+
dueDateWarningDays?: InputMaybe<Scalars['Int']['input']>;
|
|
3288
3359
|
expirationDate?: InputMaybe<Scalars['Date']['input']>;
|
|
3289
3360
|
expirationWarningDays?: InputMaybe<Scalars['Int']['input']>;
|
|
3290
3361
|
id: Scalars['ID']['input'];
|
|
@@ -3298,6 +3369,7 @@ type MutationUpdateAssignmentsArgs = {
|
|
|
3298
3369
|
approverIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3299
3370
|
assignmentIds: Array<Scalars['ID']['input']>;
|
|
3300
3371
|
dueDate?: InputMaybe<Scalars['Date']['input']>;
|
|
3372
|
+
dueDateWarningDays?: InputMaybe<Scalars['Int']['input']>;
|
|
3301
3373
|
expirationDate?: InputMaybe<Scalars['Date']['input']>;
|
|
3302
3374
|
expirationWarningDays?: InputMaybe<Scalars['Int']['input']>;
|
|
3303
3375
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3474,6 +3546,7 @@ type MutationUpdatePaperworkAssignmentArgs = {
|
|
|
3474
3546
|
templateId?: InputMaybe<Scalars['ID']['input']>;
|
|
3475
3547
|
};
|
|
3476
3548
|
type MutationUpdatePaperworkTypeArgs = {
|
|
3549
|
+
defaultDueDateWarningDays?: InputMaybe<Scalars['Int']['input']>;
|
|
3477
3550
|
defaultExpirationWarningDays?: InputMaybe<Scalars['Int']['input']>;
|
|
3478
3551
|
defaultResponsiblePersonId?: InputMaybe<Scalars['ID']['input']>;
|
|
3479
3552
|
id: Scalars['ID']['input'];
|
|
@@ -3490,7 +3563,13 @@ type MutationUpdatePerformanceReviewCycleConfigArgs = {
|
|
|
3490
3563
|
isSelfReviewIncluded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3491
3564
|
isSelfReviewVisibleToManager?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3492
3565
|
managerReviewDueDate?: InputMaybe<Scalars['Date']['input']>;
|
|
3566
|
+
managerReviewTemplateId?: InputMaybe<Scalars['ID']['input']>;
|
|
3493
3567
|
selfReviewDueDate?: InputMaybe<Scalars['Date']['input']>;
|
|
3568
|
+
selfReviewTemplateId?: InputMaybe<Scalars['ID']['input']>;
|
|
3569
|
+
};
|
|
3570
|
+
type MutationUpdatePerformanceReviewCycleRevieweeArgs = {
|
|
3571
|
+
primaryManagerId?: InputMaybe<Scalars['ID']['input']>;
|
|
3572
|
+
revieweeId: Scalars['ID']['input'];
|
|
3494
3573
|
};
|
|
3495
3574
|
type MutationUpdatePersonArgs = {
|
|
3496
3575
|
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3655,14 +3734,18 @@ declare enum NotificationType {
|
|
|
3655
3734
|
ApprovalRequested = "APPROVAL_REQUESTED",
|
|
3656
3735
|
/** Sent to the person responsible for an assignment when all it's approvals have been approved. */
|
|
3657
3736
|
AssignmentApproved = "ASSIGNMENT_APPROVED",
|
|
3658
|
-
/** Sent to the owner of
|
|
3737
|
+
/** Sent to the owner of an assignment when it's assigned (transitions from a 'draft' to an 'assigned' status). */
|
|
3659
3738
|
AssignmentAssigned = "ASSIGNMENT_ASSIGNED",
|
|
3739
|
+
/** Sent to the owner of an assignment when it is due soon. */
|
|
3740
|
+
AssignmentDueSoon = "ASSIGNMENT_DUE_SOON",
|
|
3660
3741
|
/** Sent to the person responsible for an assignment (i.e. an admin) when it has expired. */
|
|
3661
3742
|
AssignmentExpired = "ASSIGNMENT_EXPIRED",
|
|
3662
3743
|
/** Sent to the person responsible for an assignment (i.e. an admin) when it will be expiring soon. */
|
|
3663
3744
|
AssignmentExpiringSoon = "ASSIGNMENT_EXPIRING_SOON",
|
|
3664
3745
|
/** Sent to the person responsible for an assignment (i.e. an admin) when a document fails to process or when a document has failed to process. */
|
|
3665
3746
|
AssignmentFailed = "ASSIGNMENT_FAILED",
|
|
3747
|
+
/** Sent to the owner of an assignment when it is overdue. */
|
|
3748
|
+
AssignmentOverdue = "ASSIGNMENT_OVERDUE",
|
|
3666
3749
|
/** Sent to the owner of a assignment when an admin reassigns an assignment. */
|
|
3667
3750
|
AssignmentReassigned = "ASSIGNMENT_REASSIGNED",
|
|
3668
3751
|
/** Sent to the person responsible for an assignment (i.e. an admin) when it has expired. */
|
|
@@ -3675,6 +3758,20 @@ declare enum NotificationType {
|
|
|
3675
3758
|
LeaveRequestCreated = "LEAVE_REQUEST_CREATED",
|
|
3676
3759
|
/** Sent to the owner when a leave request is denied. */
|
|
3677
3760
|
LeaveRequestDenied = "LEAVE_REQUEST_DENIED",
|
|
3761
|
+
/** Sent to the manager when a manager review has been assigned to them. */
|
|
3762
|
+
PerformanceReviewManagerReviewAssigned = "PERFORMANCE_REVIEW_MANAGER_REVIEW_ASSIGNED",
|
|
3763
|
+
/** Sent to the manager when their manager review is overdue. */
|
|
3764
|
+
PerformanceReviewManagerReviewOverdue = "PERFORMANCE_REVIEW_MANAGER_REVIEW_OVERDUE",
|
|
3765
|
+
/** Sent to the employee when a review packet has been shared with them. */
|
|
3766
|
+
PerformanceReviewPacketShared = "PERFORMANCE_REVIEW_PACKET_SHARED",
|
|
3767
|
+
/** Sent to the manager when the reviewee's self review is overdue. */
|
|
3768
|
+
PerformanceReviewRevieweeSelfReviewOverdue = "PERFORMANCE_REVIEW_REVIEWEE_SELF_REVIEW_OVERDUE",
|
|
3769
|
+
/** Sent to the employee when their self review has been assigned. */
|
|
3770
|
+
PerformanceReviewSelfReviewAssigned = "PERFORMANCE_REVIEW_SELF_REVIEW_ASSIGNED",
|
|
3771
|
+
/** Sent to the employee when their self review is overdue. */
|
|
3772
|
+
PerformanceReviewSelfReviewOverdue = "PERFORMANCE_REVIEW_SELF_REVIEW_OVERDUE",
|
|
3773
|
+
/** Sent to the manager when the reviewee has submitted their self review. */
|
|
3774
|
+
PerformanceReviewSelfReviewSubmitted = "PERFORMANCE_REVIEW_SELF_REVIEW_SUBMITTED",
|
|
3678
3775
|
/** Sent to the reviewer when a review they are required to conduct has been assigned to them. */
|
|
3679
3776
|
ReviewAssigned = "REVIEW_ASSIGNED",
|
|
3680
3777
|
/** Sent to the subject of a review when a time for the review to take place has been set. */
|
|
@@ -3704,6 +3801,7 @@ type Org = {
|
|
|
3704
3801
|
paperworkTypes: Array<PaperworkType>;
|
|
3705
3802
|
people: Array<Person>;
|
|
3706
3803
|
performanceReviewCycles: Array<PerformanceReviewCycle>;
|
|
3804
|
+
performanceReviewTemplates: Array<PerformanceReviewTemplate>;
|
|
3707
3805
|
positions: Array<Position>;
|
|
3708
3806
|
reviewCycles: Array<ReviewCycle>;
|
|
3709
3807
|
savedQuestions: Array<SavedQuestion>;
|
|
@@ -3736,6 +3834,9 @@ type OrgPeopleArgs = {
|
|
|
3736
3834
|
type OrgPerformanceReviewCyclesArgs = {
|
|
3737
3835
|
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3738
3836
|
};
|
|
3837
|
+
type OrgPerformanceReviewTemplatesArgs = {
|
|
3838
|
+
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3839
|
+
};
|
|
3739
3840
|
type OrgPositionsArgs = {
|
|
3740
3841
|
includeArchived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3741
3842
|
};
|
|
@@ -3774,6 +3875,8 @@ type PaperworkAssignment = {
|
|
|
3774
3875
|
createdAt: Scalars['DateTime']['output'];
|
|
3775
3876
|
creator?: Maybe<Person>;
|
|
3776
3877
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
3878
|
+
dueDateStatus?: Maybe<DueDateStatus>;
|
|
3879
|
+
dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
3777
3880
|
expirationDate?: Maybe<Scalars['Date']['output']>;
|
|
3778
3881
|
expirationWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
3779
3882
|
expiryStatus: ExpiryStatus;
|
|
@@ -3857,12 +3960,11 @@ type PaperworkSummary = {
|
|
|
3857
3960
|
*
|
|
3858
3961
|
* 2. If the status of _latest assignment_ is `ASSIGNED`:
|
|
3859
3962
|
*
|
|
3860
|
-
* 1. If the
|
|
3963
|
+
* 1. If the due date status of _latest assignment_ is `OVERDUE`:
|
|
3861
3964
|
*
|
|
3862
3965
|
* 1. Return `OVERDUE`.
|
|
3863
3966
|
*
|
|
3864
|
-
* 2. If the
|
|
3865
|
-
* minus 14 days:
|
|
3967
|
+
* 2. If the due date status of _latest assignment_ is `DUE_SOON`:
|
|
3866
3968
|
*
|
|
3867
3969
|
* 1. Return `DUE_SOON`.
|
|
3868
3970
|
* 3. Return `ASSIGNED`.
|
|
@@ -3929,6 +4031,7 @@ type PaperworkType = {
|
|
|
3929
4031
|
bundledPaperworkTypes: Array<BundledPaperworkType>;
|
|
3930
4032
|
createdAt: Scalars['DateTime']['output'];
|
|
3931
4033
|
creator?: Maybe<Person>;
|
|
4034
|
+
defaultDueDateWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
3932
4035
|
defaultExpirationWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
3933
4036
|
defaultResponsiblePerson?: Maybe<Person>;
|
|
3934
4037
|
id: Scalars['ID']['output'];
|
|
@@ -3947,6 +4050,20 @@ declare enum PayPeriod {
|
|
|
3947
4050
|
Hour = "HOUR",
|
|
3948
4051
|
Year = "YEAR"
|
|
3949
4052
|
}
|
|
4053
|
+
type PerformanceReview = {
|
|
4054
|
+
assignedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4055
|
+
createdAt: Scalars['DateTime']['output'];
|
|
4056
|
+
cycle: PerformanceReviewCycle;
|
|
4057
|
+
id: Scalars['ID']['output'];
|
|
4058
|
+
lastEditedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4059
|
+
lastEditedBy?: Maybe<Person>;
|
|
4060
|
+
reviewee: PerformanceReviewReviewee;
|
|
4061
|
+
reviewer?: Maybe<Person>;
|
|
4062
|
+
submittedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4063
|
+
submittedBy?: Maybe<Person>;
|
|
4064
|
+
type: PerformanceReviewType;
|
|
4065
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
4066
|
+
};
|
|
3950
4067
|
type PerformanceReviewCycle = {
|
|
3951
4068
|
archived: Scalars['Boolean']['output'];
|
|
3952
4069
|
archivedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -3962,6 +4079,7 @@ type PerformanceReviewCycle = {
|
|
|
3962
4079
|
name: Scalars['String']['output'];
|
|
3963
4080
|
org: Org;
|
|
3964
4081
|
revieweeCount: Scalars['Int']['output'];
|
|
4082
|
+
reviewees: Array<PerformanceReviewReviewee>;
|
|
3965
4083
|
status: PerformanceReviewCycleStatus;
|
|
3966
4084
|
updatedAt: Scalars['DateTime']['output'];
|
|
3967
4085
|
};
|
|
@@ -3973,8 +4091,10 @@ type PerformanceReviewCycleConfig = {
|
|
|
3973
4091
|
isSelfReviewIncluded: Scalars['Boolean']['output'];
|
|
3974
4092
|
isSelfReviewVisibleToManager: Scalars['Boolean']['output'];
|
|
3975
4093
|
managerReviewDueDate?: Maybe<Scalars['Date']['output']>;
|
|
4094
|
+
managerReviewTemplate?: Maybe<PerformanceReviewTemplate>;
|
|
3976
4095
|
scheduledStartDate?: Maybe<Scalars['Date']['output']>;
|
|
3977
4096
|
selfReviewDueDate?: Maybe<Scalars['Date']['output']>;
|
|
4097
|
+
selfReviewTemplate?: Maybe<PerformanceReviewTemplate>;
|
|
3978
4098
|
updatedAt: Scalars['DateTime']['output'];
|
|
3979
4099
|
};
|
|
3980
4100
|
declare enum PerformanceReviewCycleStatus {
|
|
@@ -3982,6 +4102,51 @@ declare enum PerformanceReviewCycleStatus {
|
|
|
3982
4102
|
Draft = "DRAFT",
|
|
3983
4103
|
InProgress = "IN_PROGRESS"
|
|
3984
4104
|
}
|
|
4105
|
+
type PerformanceReviewNotification = Notification & {
|
|
4106
|
+
createdAt: Scalars['DateTime']['output'];
|
|
4107
|
+
emailSentAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4108
|
+
id: Scalars['ID']['output'];
|
|
4109
|
+
performanceReview?: Maybe<PerformanceReview>;
|
|
4110
|
+
person?: Maybe<Person>;
|
|
4111
|
+
read: Scalars['Boolean']['output'];
|
|
4112
|
+
type: NotificationType;
|
|
4113
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
4114
|
+
};
|
|
4115
|
+
type PerformanceReviewReviewee = {
|
|
4116
|
+
additionalManagers: Array<Person>;
|
|
4117
|
+
archived: Scalars['Boolean']['output'];
|
|
4118
|
+
archivedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4119
|
+
archiver?: Maybe<Person>;
|
|
4120
|
+
createdAt: Scalars['DateTime']['output'];
|
|
4121
|
+
creator?: Maybe<Person>;
|
|
4122
|
+
cycle: PerformanceReviewCycle;
|
|
4123
|
+
id: Scalars['ID']['output'];
|
|
4124
|
+
person: Person;
|
|
4125
|
+
primaryManager?: Maybe<Person>;
|
|
4126
|
+
sharedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4127
|
+
sharedBy?: Maybe<Person>;
|
|
4128
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
4129
|
+
};
|
|
4130
|
+
type PerformanceReviewRevieweeInput = {
|
|
4131
|
+
personId: Scalars['ID']['input'];
|
|
4132
|
+
primaryManagerId?: InputMaybe<Scalars['ID']['input']>;
|
|
4133
|
+
};
|
|
4134
|
+
type PerformanceReviewTemplate = {
|
|
4135
|
+
archived: Scalars['Boolean']['output'];
|
|
4136
|
+
archivedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4137
|
+
archiver?: Maybe<Person>;
|
|
4138
|
+
createdAt: Scalars['DateTime']['output'];
|
|
4139
|
+
creator?: Maybe<Person>;
|
|
4140
|
+
id: Scalars['ID']['output'];
|
|
4141
|
+
instructions?: Maybe<Scalars['String']['output']>;
|
|
4142
|
+
name: Scalars['String']['output'];
|
|
4143
|
+
org: Org;
|
|
4144
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
4145
|
+
};
|
|
4146
|
+
declare enum PerformanceReviewType {
|
|
4147
|
+
Manager = "MANAGER",
|
|
4148
|
+
Self = "SELF"
|
|
4149
|
+
}
|
|
3985
4150
|
type Person = {
|
|
3986
4151
|
/** When this person was first activated (transitioned from `ONBOARDING` to `ACTIVE`). */
|
|
3987
4152
|
activatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -4845,6 +5010,8 @@ type Questionnaire = Assignment & PaperworkAssignment & {
|
|
|
4845
5010
|
createdAt: Scalars['DateTime']['output'];
|
|
4846
5011
|
creator?: Maybe<Person>;
|
|
4847
5012
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
5013
|
+
dueDateStatus?: Maybe<DueDateStatus>;
|
|
5014
|
+
dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
4848
5015
|
expirationDate?: Maybe<Scalars['Date']['output']>;
|
|
4849
5016
|
expirationWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
4850
5017
|
expiryStatus: ExpiryStatus;
|
|
@@ -5087,6 +5254,8 @@ type StandardReview = Assignment & {
|
|
|
5087
5254
|
/** The time when the review takes place. */
|
|
5088
5255
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
5089
5256
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
5257
|
+
dueDateStatus?: Maybe<DueDateStatus>;
|
|
5258
|
+
dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
5090
5259
|
expirationDate?: Maybe<Scalars['Date']['output']>;
|
|
5091
5260
|
expirationWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
5092
5261
|
expiryStatus: ExpiryStatus;
|
|
@@ -5124,7 +5293,7 @@ type StandardReviewNotification = Notification & {
|
|
|
5124
5293
|
id: Scalars['ID']['output'];
|
|
5125
5294
|
person?: Maybe<Person>;
|
|
5126
5295
|
read: Scalars['Boolean']['output'];
|
|
5127
|
-
/** This field is nullable because the viewer may
|
|
5296
|
+
/** This field is nullable because the viewer may no longer have access to the review this notification is about. */
|
|
5128
5297
|
standardReview?: Maybe<StandardReview>;
|
|
5129
5298
|
type: NotificationType;
|
|
5130
5299
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -5233,6 +5402,8 @@ type Task = Assignment & {
|
|
|
5233
5402
|
creator?: Maybe<Person>;
|
|
5234
5403
|
description?: Maybe<Scalars['String']['output']>;
|
|
5235
5404
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
5405
|
+
dueDateStatus?: Maybe<DueDateStatus>;
|
|
5406
|
+
dueDateWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
5236
5407
|
expirationDate?: Maybe<Scalars['Date']['output']>;
|
|
5237
5408
|
expirationWarningDays?: Maybe<Scalars['Int']['output']>;
|
|
5238
5409
|
expiryStatus: ExpiryStatus;
|
|
@@ -5513,6 +5684,16 @@ declare enum XeroAuTfnExemptionType {
|
|
|
5513
5684
|
Pensioner = "PENSIONER",
|
|
5514
5685
|
Under18 = "UNDER18"
|
|
5515
5686
|
}
|
|
5687
|
+
type XeroIntegrationTenantInput = {
|
|
5688
|
+
id: Scalars['String']['input'];
|
|
5689
|
+
tenantId: Scalars['String']['input'];
|
|
5690
|
+
tenantName: Scalars['String']['input'];
|
|
5691
|
+
};
|
|
5692
|
+
type XeroIntegrationTokenSetInput = {
|
|
5693
|
+
accessToken: Scalars['String']['input'];
|
|
5694
|
+
expiresAt: Scalars['Int']['input'];
|
|
5695
|
+
refreshToken: Scalars['String']['input'];
|
|
5696
|
+
};
|
|
5516
5697
|
type XeroLeaveEmployee = {
|
|
5517
5698
|
connection?: Maybe<PersonConnection>;
|
|
5518
5699
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -6409,4 +6590,4 @@ type UpdatePersonConnectionMutation = {
|
|
|
6409
6590
|
};
|
|
6410
6591
|
};
|
|
6411
6592
|
|
|
6412
|
-
export { type Account, type AccountAppsArgs, type AccountFeatures, type AccountFeaturesInput, AccountFlag, type ActivateIntegrationMutation, type ActivateIntegrationMutationVariables, AllocationMethod, type AnniversaryEvent, type ApiToken, type App, AppCategory, type AppConfig, type AppConfigWebhooks, AppStatus, type AppendIntegrationLogMutation, type AppendIntegrationLogMutationVariables, type Approval, ApprovalStatus, type ApprovalSummary, type Archivable, type Assignment, type AssignmentNotification, type AssignmentNotificationsArgs, AssignmentRelation, AssignmentStatus, AssignmentType, AuthMethod, AuthProvider, AuthState, type AuthorizeIntegrationMutation, type AuthorizeIntegrationMutationVariables, type BasicAbnForm, type BasicAbnFormNotificationsArgs, type BasicAbnFormTemplate, type BasicBankAccountForm, type BasicBankAccountFormNotificationsArgs, type BasicBankAccountFormTemplate, type BasicEmergencyContactForm, type BasicEmergencyContactFormNotificationsArgs, type BasicEmergencyContactFormTemplate, type BasicPersonalDetailsForm, type BasicPersonalDetailsFormNotificationsArgs, type BasicPersonalDetailsFormTemplate, type BasicPreEmploymentForm, type BasicPreEmploymentFormNotificationsArgs, type BasicPreEmploymentFormTemplate, type BasicSuperForm, type BasicSuperFormNotificationsArgs, type BasicSuperFormTemplate, type BasicTaxForm, type BasicTaxFormNotificationsArgs, type BasicTaxFormTemplate, type Birthday, type BirthdayEvent, type BirthdayInput, type Bundle, type BundledPaperworkType, type BundledPaperworkTypeConnection, type BundledPerson, type BundledPersonConnection, type Certificate, type CertificateNotificationsArgs, CertificateProof, type CertificateTemplate, type ChoiceDocumentField, type ChoiceDocumentFieldConfigInput, type ChoiceDocumentFieldConfigOptionInput, type ChoiceDocumentFieldInput, type ChoiceDocumentFieldOption, type ChoiceDocumentFieldOptionInput, type CompleteSyncMutation, type CompleteSyncMutationVariables, type ConnectionRemote, type ConnectionRemoteInput, ConnectionStatus, type CreateApiTokenMutation, type CreateApiTokenMutationVariables, type CreateDataImportMutation, type CreateDataImportMutationVariables, type CreateLeaveRequestMutation, type CreateLeaveRequestMutationVariables, type CreateNoteAttachmentInput, type CreatePersonConnectionMutation, type CreatePersonConnectionMutationVariables, type CreatePersonDataImportLineMutation, type CreatePersonDataImportLineMutationVariables, type CreatePersonMutation, type CreatePersonMutationVariables, type CustomTable, type CustomTableColumn, type CustomTableColumnInput, type CustomTableConfig, type CustomTableConfigFilter, type CustomTableConfigFilterInput, type CustomTableConfigInput, type CustomTableConfigSorting, type CustomTableConfigSortingInput, type DataExport, DataExportType, type DataImport, type DataImportLine, type DateDocumentField, type DateDocumentFieldConfigInput, type DateDocumentFieldInput, type DeleteApiTokenMutation, type DeleteApiTokenMutationVariables, type DeletePersonConnectionMutation, type DeletePersonConnectionMutationVariables, type Department, type DepartmentPositionsArgs, type Document, type DocumentField, type DocumentFieldConfigInput, type DocumentFieldInput, DocumentFieldResponder, type DocumentNotificationsArgs, type DocumentTemplate, 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 KeypayIntegrationFeaturesArgs, 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 MutationAcceptLoginArgs, type MutationActivateIntegrationArgs, type MutationActivatePersonArgs, type MutationAddPeopleToBundlesArgs, type MutationAddPeopleToTagsArgs, type MutationAppendIntegrationLogArgs, type MutationApproveAssignmentArgs, type MutationApproveKeypayLeaveLeaveRequestArgs, type MutationApproveLeaveRequestArgs, type MutationApproveXeroLeaveRequestArgs, type MutationArchiveAssignmentArgs, type MutationArchiveBundleArgs, type MutationArchiveCustomTableArgs, type MutationArchiveIntegrationArgs, type MutationArchiveLocationArgs, type MutationArchiveNotesArgs, type MutationArchiveOrgArgs, type MutationArchivePaperworkTypeArgs, type MutationArchivePersonArgs, type MutationArchivePositionArgs, type MutationArchiveReviewCycleArgs, type MutationArchiveSavedQuestionArgs, type MutationArchiveStandardReviewArgs, type MutationArchiveStandardReviewTemplateArgs, type MutationArchiveTemplateArgs, type MutationAssignAssignmentsArgs, type MutationAssignBasicAbnFormArgs, type MutationAssignBasicBankAccountFormArgs, type MutationAssignBasicEmergencyContactFormArgs, type MutationAssignBasicPersonalDetailsFormArgs, type MutationAssignBasicPreEmploymentFormArgs, type MutationAssignBasicSuperFormArgs, type MutationAssignBasicTaxFormArgs, type MutationAssignCertificateArgs, type MutationAssignDocumentArgs, type MutationAssignKeypayEmployeeFormArgs, type MutationAssignQuestionnaireArgs, type MutationAssignStandardReviewArgs, type MutationAssignTaskArgs, type MutationAuthorizeIntegrationArgs, type MutationCancelLeaveRequestArgs, type MutationCompleteIntegrationSyncArgs, type MutationCompletePasswordResetArgs, type MutationConfirmEmailArgs, type MutationConfirmProfileArgs, type MutationConfirmProviderArgs, type MutationCreateAccountArgs, type MutationCreateApiTokenArgs, type MutationCreateAssignmentsArgs, type MutationCreateBasicAbnFormArgs, type MutationCreateBasicAbnFormTemplateArgs, type MutationCreateBasicBankAccountFormArgs, type MutationCreateBasicBankAccountFormTemplateArgs, type MutationCreateBasicEmergencyContactFormArgs, type MutationCreateBasicEmergencyContactFormTemplateArgs, type MutationCreateBasicPersonalDetailsFormArgs, type MutationCreateBasicPersonalDetailsFormTemplateArgs, type MutationCreateBasicPreEmploymentFormArgs, type MutationCreateBasicPreEmploymentFormTemplateArgs, type MutationCreateBasicSuperFormArgs, type MutationCreateBasicSuperFormTemplateArgs, type MutationCreateBasicTaxFormArgs, type MutationCreateBasicTaxFormTemplateArgs, type MutationCreateBundleArgs, type MutationCreateBundledPersonArgs, type MutationCreateCertificateArgs, type MutationCreateCertificateTemplateArgs, type MutationCreateCustomTableArgs, type MutationCreateDataExportArgs, type MutationCreateDataImportArgs, type MutationCreateDocumentArgs, type MutationCreateDocumentTemplateArgs, type MutationCreateIntegrationArgs, type MutationCreateIntegrationLogArgs, type MutationCreateJobArgs, type MutationCreateKeypayEmployeeFormArgs, type MutationCreateKeypayEmployeeFormTemplateArgs, type MutationCreateKeypayLeaveLeaveRequestArgs, type MutationCreateLeaveRequestArgs, type MutationCreateLocalPersonConnectionsArgs, type MutationCreateLocationArgs, type MutationCreateLoginArgs, type MutationCreateManualDataImportArgs, type MutationCreateNoteArgs, type MutationCreateNoteAttachmentsArgs, type MutationCreateOrgArgs, type MutationCreatePaperworkTypeArgs, type MutationCreatePerformanceReviewCycleArgs, type MutationCreatePersonArgs, type MutationCreatePersonConnectionArgs, type MutationCreatePersonDataImportLineArgs, type MutationCreatePositionArgs, type MutationCreateProcessedCertificateArgs, type MutationCreateProcessedDocumentArgs, type MutationCreateQuestionnaireArgs, type MutationCreateQuestionnaireTemplateArgs, type MutationCreateReviewCycleArgs, type MutationCreateSavedQuestionArgs, type MutationCreateStandaloneStandardReviewArgs, type MutationCreateStandaloneTaskArgs, type MutationCreateStandardReviewArgs, type MutationCreateStandardReviewQuestionArgs, type MutationCreateStandardReviewTemplateArgs, type MutationCreateStandardReviewTemplateQuestionArgs, type MutationCreateTagArgs, type MutationCreateTagsArgs, type MutationCreateTaskArgs, type MutationCreateTaskTemplateArgs, type MutationCreateXeroLeaveRequestArgs, type MutationDeleteApiTokenArgs, type MutationDeleteApprovalsArgs, type MutationDeleteBundledPersonArgs, type MutationDeleteJobArgs, type MutationDeleteLeaveRequestArgs, type MutationDeleteLoginArgs, type MutationDeletePersonConnectionArgs, type MutationDeletePersonConnectionsArgs, type MutationDeletePositionArgs, type MutationDeleteStandardReviewQuestionArgs, type MutationDeleteStandardReviewTemplateQuestionArgs, type MutationDeleteTagArgs, type MutationDenyKeypayLeaveLeaveRequestArgs, type MutationDenyLeaveRequestArgs, type MutationDenyXeroLeaveRequestArgs, type MutationDuplicatePaperworkTypeArgs, type MutationInitializeIntegrationArgs, type MutationInvitePeopleArgs, type MutationInvitePersonArgs, type MutationJoinOrgArgs, type MutationLogInArgs, type MutationLogInWithProviderArgs, type MutationMarkNotificationsReadArgs, type MutationMarkNotificationsUnreadArgs, type MutationMergePaperworkTypesArgs, type MutationPauseIntegrationArgs, type MutationProcessAssignmentArgs, type MutationProcessAssignmentsArgs, type MutationProcessLeaveRequestArgs, type MutationProcessStandardReviewArgs, type MutationReassignAssignmentArgs, type MutationReassignCertificateArgs, type MutationReassignTaskArgs, type MutationReinviteLoginArgs, type MutationReinvitePeopleArgs, type MutationReinvitePersonArgs, type MutationRemovePaperworkTypeFromBundlesArgs, type MutationRemovePeopleFromBundlesArgs, type MutationRemovePeopleFromTagsArgs, type MutationRequestApprovalsArgs, 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 MutationSignUpArgs, type MutationSubmitBasicAbnFormArgs, type MutationSubmitBasicBankAccountFormArgs, type MutationSubmitBasicEmergencyContactFormArgs, type MutationSubmitBasicPersonalDetailsFormArgs, type MutationSubmitBasicPreEmploymentFormArgs, type MutationSubmitBasicSuperFormArgs, type MutationSubmitBasicTaxFormArgs, type MutationSubmitCertificateArgs, type MutationSubmitDocumentArgs, type MutationSubmitKeypayEmployeeFormArgs, type MutationSubmitQuestionnaireArgs, type MutationSubmitStandardReviewArgs, type MutationSubmitStandardReviewQuestionArgs, type MutationSubmitTaskArgs, type MutationTerminatePersonArgs, type MutationTriggerIntegrationSyncArgs, type MutationUnmatchPersonConnectionsArgs, type MutationUnpauseIntegrationArgs, type MutationUnscheduleStandardReviewArgs, type MutationUpdateAccountArgs, type MutationUpdateAssignmentArgs, type MutationUpdateAssignmentsArgs, type MutationUpdateBasicAbnFormTemplateArgs, type MutationUpdateBasicBankAccountFormTemplateArgs, type MutationUpdateBasicEmergencyContactFormTemplateArgs, type MutationUpdateBasicPersonalDetailsFormTemplateArgs, type MutationUpdateBasicPreEmploymentFormTemplateArgs, type MutationUpdateBasicSuperFormTemplateArgs, type MutationUpdateBasicTaxFormTemplateArgs, type MutationUpdateBundleArgs, type MutationUpdateCertificateArgs, type MutationUpdateCertificateTemplateArgs, type MutationUpdateCustomTableArgs, type MutationUpdateDocumentArgs, type MutationUpdateDocumentTemplateArgs, type MutationUpdateIntegrationArgs, type MutationUpdateJobArgs, type MutationUpdateKeypayEmployeeFormTemplateArgs, type MutationUpdateKeypayIntegrationArgs, type MutationUpdateKeypayLeaveIntegrationArgs, type MutationUpdateLocationArgs, type MutationUpdateNoteArgs, type MutationUpdateOnboardingAssignmentsArgs, type MutationUpdateOrgArgs, type MutationUpdatePaperworkAssignmentArgs, type MutationUpdatePaperworkTypeArgs, type MutationUpdatePerformanceReviewCycleArgs, type MutationUpdatePerformanceReviewCycleConfigArgs, type MutationUpdatePersonArgs, type MutationUpdatePersonConnectionArgs, type MutationUpdatePersonTagsArgs, type MutationUpdatePositionArgs, type MutationUpdatePositionsArgs, type MutationUpdateQuestionnaireArgs, type MutationUpdateQuestionnaireTemplateArgs, type MutationUpdateReviewCycleArgs, type MutationUpdateSavedQuestionArgs, type MutationUpdateStandardReviewArgs, type MutationUpdateStandardReviewQuestionArgs, type MutationUpdateStandardReviewTemplateArgs, type MutationUpdateStandardReviewTemplateQuestionArgs, type MutationUpdateTagArgs, type MutationUpdateTaskArgs, type MutationUpdateTaskTemplateArgs, type MutationUpdateUserPasswordArgs, type MutationUpdateXeroAuIntegrationArgs, type MutationUpdateXeroLeaveIntegrationArgs, type Note, type NoteAttachment, type Notification, NotificationType, type Org, type OrgBundlesArgs, type OrgFeatures, type OrgFeaturesInput, type OrgIntegrationsArgs, type OrgLocationsArgs, type OrgPaperworkSummariesArgs, type OrgPaperworkTypesArgs, type OrgPeopleArgs, type OrgPerformanceReviewCyclesArgs, type OrgPositionsArgs, type OrgReviewCyclesArgs, type OrgSavedQuestionsArgs, type OrgTemplatesArgs, type PageInfo, type PaperworkAssignment, type PaperworkAssignmentNotificationsArgs, type PaperworkSummary, PaperworkSummaryStatus, type PaperworkTemplate, type PaperworkTemplateConnection, type PaperworkTemplateEdge, type PaperworkType, type PaperworkTypeTemplatesArgs, PayPeriod, type PerformanceReviewCycle, type PerformanceReviewCycleConfig, PerformanceReviewCycleStatus, type Person, type PersonAssignmentsArgs, type PersonBankAccountsChange, type PersonBankAccountsChangeInput, type PersonCertificatesArgs, type PersonChange, type PersonConnection, type PersonConnectionLeaveHoursEstimateArgs, type PersonConnectionLeaveRequestsArgs, type PersonCustomTablesArgs, type PersonDataImportLine, type PersonDataTransferConfigInput, type PersonDateOfBirthChange, type PersonDateOfBirthChangeInput, type PersonDocumentsArgs, type PersonEmergencyContactsChange, type PersonEmergencyContactsChangeInput, type PersonFullDetailsFragment, type PersonFullNameChange, type PersonFullNameChangeInput, type PersonGenderChange, type PersonGenderChangeInput, type PersonNotesArgs, type PersonNotificationsArgs, type PersonPersonalEmailChange, type PersonPersonalEmailChangeInput, type PersonPersonalPhoneChange, type PersonPersonalPhoneChangeInput, type PersonPostalAddressChange, type PersonPostalAddressChangeInput, type PersonQuestionnairesArgs, type PersonRemunerationChange, type PersonResidentialAddressChange, type PersonResidentialAddressChangeInput, type PersonReviewsArgs, PersonRole, PersonStatus, type PersonSuperFundsChange, type PersonSuperFundsChangeInput, type PersonTasksArgs, type PersonTaxDetailsChange, type PersonTaxDetailsChangeInput, type PersonTenureChange, type PersonTenureChangeInput, type Position, type Query, type QueryAccountArgs, type QueryAssignmentArgs, type QueryBasicAbnFormTemplateArgs, type QueryBasicBankAccountFormTemplateArgs, type QueryBasicEmergencyContactFormTemplateArgs, type QueryBasicPersonalDetailsFormTemplateArgs, type QueryBasicPreEmploymentFormTemplateArgs, type QueryBasicSuperFormTemplateArgs, type QueryBasicTaxFormTemplateArgs, type QueryBundleArgs, type QueryCertificateArgs, type QueryCertificateTemplateArgs, type QueryCustomTableArgs, type QueryDataImportArgs, type QueryDataImportLineArgs, type QueryDocumentArgs, type QueryDocumentTemplateArgs, type QueryIntegrationArgs, type QueryJobArgs, type QueryKeypayEmployeeArgs, type QueryKeypayEmployeeFormTemplateArgs, type QueryKeypayLeaveEmployeeArgs, type QueryLeaveRequestArgs, type QueryNoteArgs, type QueryOrgArgs, type QueryPaperworkTypeArgs, type QueryPerformanceReviewCycleArgs, type QueryPersonArgs, type QueryPersonConnectionArgs, type QueryPositionArgs, type QueryQuestionnaireArgs, type QueryQuestionnaireTemplateArgs, type QueryReviewCycleArgs, type QuerySavedQuestionArgs, type QueryStandardReviewArgs, type QueryStandardReviewTemplateArgs, type QueryTaskArgs, type QueryTaskTemplateArgs, type QueryTemplateArgs, type QueryUserArgs, type Question, type QuestionConfig, type QuestionConfigInput, type QuestionLikert5Config, type QuestionLikert5ConfigInput, type QuestionLikert5Response, type QuestionLikert5ResponseInput, type QuestionMultipleChoiceConfig, type QuestionMultipleChoiceConfigInput, type QuestionMultipleChoiceOtherConfig, type QuestionMultipleChoiceOtherConfigInput, type QuestionMultipleChoiceOtherResponse, type QuestionMultipleChoiceOtherResponseInput, type QuestionMultipleChoiceResponse, type QuestionMultipleChoiceResponseInput, type QuestionResponse, type QuestionResponseInput, type QuestionTemplateInput, type QuestionTextConfig, type QuestionTextConfigInput, type QuestionTextResponse, type QuestionTextResponseInput, QuestionType, type Questionnaire, type QuestionnaireNotificationsArgs, type QuestionnaireQuestion, type QuestionnaireQuestionAnswerInput, type QuestionnaireQuestionInput, type QuestionnaireTemplate, type QuestionnaireTemplateQuestion, type ReviewCycle, type ReviewCycleReviewsArgs, ReviewRelation, type SavedQuestion, type Scalars, type Session, type SharedCalendarEvent, type SignatureUploadDocumentField, type SignatureUploadDocumentFieldConfigInput, type SignatureUploadDocumentFieldInput, type SmartDocumentField, type SmartDocumentFieldConfigInput, type SmartDocumentFieldInput, SmartDocumentFieldType, type StandardReview, type StandardReviewNotification, type StandardReviewNotificationsArgs, type StandardReviewQuestion, StandardReviewQuestionRespondent, type StandardReviewQuestionsArgs, StandardReviewStatus, type StandardReviewTemplate, type StandardReviewTemplateQuestion, type StartDateEvent, SuperFundNomination, type Tag, TagColor, type TagInput, type Task, type TaskNotificationsArgs, type TaskTemplate, TaxEmploymentBasis, TaxFileNumberExemption, TaxResidencyStatus, type Template, type TemplateInput, type TextDocumentField, type TextDocumentFieldConfigInput, type TextDocumentFieldInput, type UpdateLeaveRequestMutation, type UpdateLeaveRequestMutationVariables, type UpdateNoteAttachmentInput, type UpdatePersonConnectionMutation, type UpdatePersonConnectionMutationVariables, type UpdatePersonMutation, type UpdatePersonMutationVariables, type Upload, type User, type XeroAuBankAccount, type XeroAuEmployee, XeroAuEmploymentBasis, XeroAuGender, type XeroAuIntegration, type XeroAuIntegrationFeaturesArgs, XeroAuResidencyStatus, type XeroAuSuperFund, type XeroAuSuperMembership, XeroAuTfnExemptionType, type XeroLeaveEmployee, type XeroLeaveIntegration, type XeroLeaveIntegrationFeaturesArgs };
|
|
6593
|
+
export { type Account, type AccountAppsArgs, type AccountFeatures, type AccountFeaturesInput, AccountFlag, type ActivateIntegrationMutation, type ActivateIntegrationMutationVariables, AllocationMethod, type AnniversaryEvent, type ApiToken, type App, AppCategory, type AppConfig, type AppConfigWebhooks, AppStatus, type AppendIntegrationLogMutation, type AppendIntegrationLogMutationVariables, type Approval, ApprovalStatus, type ApprovalSummary, type Archivable, type Assignment, type AssignmentNotification, type AssignmentNotificationsArgs, AssignmentRelation, AssignmentStatus, AssignmentType, AuthMethod, AuthProvider, AuthState, type AuthorizeIntegrationMutation, type AuthorizeIntegrationMutationVariables, type BasicAbnForm, type BasicAbnFormNotificationsArgs, type BasicAbnFormTemplate, type BasicBankAccountForm, type BasicBankAccountFormNotificationsArgs, type BasicBankAccountFormTemplate, type BasicEmergencyContactForm, type BasicEmergencyContactFormNotificationsArgs, type BasicEmergencyContactFormTemplate, type BasicPersonalDetailsForm, type BasicPersonalDetailsFormNotificationsArgs, type BasicPersonalDetailsFormTemplate, type BasicPreEmploymentForm, type BasicPreEmploymentFormNotificationsArgs, type BasicPreEmploymentFormTemplate, type BasicSuperForm, type BasicSuperFormNotificationsArgs, type BasicSuperFormTemplate, type BasicTaxForm, type BasicTaxFormNotificationsArgs, type BasicTaxFormTemplate, type Birthday, type BirthdayEvent, type BirthdayInput, type Bundle, type BundledPaperworkType, type BundledPaperworkTypeConnection, type BundledPerson, type BundledPersonConnection, type Certificate, type CertificateNotificationsArgs, CertificateProof, type CertificateTemplate, type ChoiceDocumentField, type ChoiceDocumentFieldConfigInput, type ChoiceDocumentFieldConfigOptionInput, type ChoiceDocumentFieldInput, type ChoiceDocumentFieldOption, type ChoiceDocumentFieldOptionInput, type CompleteSyncMutation, type CompleteSyncMutationVariables, type ConnectionRemote, type ConnectionRemoteInput, ConnectionStatus, type CreateApiTokenMutation, type CreateApiTokenMutationVariables, type CreateDataImportMutation, type CreateDataImportMutationVariables, type CreateLeaveRequestMutation, type CreateLeaveRequestMutationVariables, type CreateNoteAttachmentInput, type CreatePersonConnectionMutation, type CreatePersonConnectionMutationVariables, type CreatePersonDataImportLineMutation, type CreatePersonDataImportLineMutationVariables, type CreatePersonMutation, type CreatePersonMutationVariables, type CustomTable, type CustomTableColumn, type CustomTableColumnInput, type CustomTableConfig, type CustomTableConfigFilter, type CustomTableConfigFilterInput, type CustomTableConfigInput, type CustomTableConfigSorting, type CustomTableConfigSortingInput, type DataExport, DataExportType, type DataImport, type DataImportLine, type DateDocumentField, type DateDocumentFieldConfigInput, type DateDocumentFieldInput, type DeleteApiTokenMutation, type DeleteApiTokenMutationVariables, type DeletePersonConnectionMutation, type DeletePersonConnectionMutationVariables, type Department, type DepartmentPositionsArgs, type Document, type DocumentField, type DocumentFieldConfigInput, type DocumentFieldInput, DocumentFieldResponder, type DocumentNotificationsArgs, type DocumentTemplate, DueDateStatus, type EmailNotificationSettings, type EmailNotificationSettingsInput, type Exact, ExpiryStatus, FieldPresence, FileProcessingStatus, Gender, type GenericIntegration, type GenericIntegrationFeaturesArgs, type GetApiTokensQuery, type GetApiTokensQueryVariables, type GetIntegrationQuery, type GetIntegrationQueryVariables, type GetLeaveRequestsQuery, type GetLeaveRequestsQueryVariables, type GetMyAppsQuery, type GetMyAppsQueryVariables, type GetPeopleQuery, type GetPeopleQueryVariables, type GetPersonConnectionsQuery, type GetPersonConnectionsQueryVariables, type Incremental, type InitializeIntegrationMutation, type InitializeIntegrationMutationVariables, type InputMaybe, type Integration, type IntegrationConnection, type IntegrationFeatures, type IntegrationFeaturesArgs, type IntegrationFeaturesInput, type IntegrationLog, type IntegrationLogInput, IntegrationStatus, type IntegrationSync, type IntegrationSyncEvent, IntegrationSyncEventType, IntegrationSyncStatus, IntegrationType, type Job, JobStatus, type KeypayBusiness, type KeypayEmployee, type KeypayEmployeeForm, type KeypayEmployeeFormNotificationsArgs, type KeypayEmployeeFormTemplate, KeypayEmployeeStatus, KeypayEmploymentType, KeypayGender, type KeypayIntegration, type KeypayIntegrationBusinessInput, type KeypayIntegrationFeaturesArgs, type KeypayIntegrationTokenSetInput, type KeypayLeaveEmployee, type KeypayLeaveIntegration, type KeypayLeaveIntegrationFeaturesArgs, type LeaveBalance, type LeaveCategory, type LeaveCategoryInput, type LeaveHoursEstimate, type LeaveRequest, type LeaveRequestNotification, type LeaveRequestNotificationsArgs, LeaveRequestRelation, LeaveRequestStatus, type Location, type Login, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Media, type MultiLineTextDocumentField, type MultiLineTextDocumentFieldConfigInput, type MultiLineTextDocumentFieldInput, type Mutation, type MutationAcceptLoginArgs, type MutationActivateIntegrationArgs, type MutationActivateKeypayIntegrationArgs, type MutationActivatePersonArgs, type MutationActivateXeroIntegrationArgs, type MutationAddPeopleToBundlesArgs, type MutationAddPeopleToTagsArgs, type MutationAddRevieweesToPerformanceReviewCycleArgs, type MutationAppendIntegrationLogArgs, type MutationApproveAssignmentArgs, type MutationApproveKeypayLeaveLeaveRequestArgs, type MutationApproveLeaveRequestArgs, type MutationApproveXeroLeaveRequestArgs, type MutationArchiveAssignmentArgs, type MutationArchiveBundleArgs, type MutationArchiveCustomTableArgs, type MutationArchiveIntegrationArgs, type MutationArchiveLocationArgs, type MutationArchiveNotesArgs, type MutationArchiveOrgArgs, type MutationArchivePaperworkTypeArgs, type MutationArchivePersonArgs, type MutationArchivePositionArgs, type MutationArchiveReviewCycleArgs, type MutationArchiveSavedQuestionArgs, type MutationArchiveStandardReviewArgs, type MutationArchiveStandardReviewTemplateArgs, type MutationArchiveTemplateArgs, type MutationAssignAssignmentsArgs, type MutationAssignBasicAbnFormArgs, type MutationAssignBasicBankAccountFormArgs, type MutationAssignBasicEmergencyContactFormArgs, type MutationAssignBasicPersonalDetailsFormArgs, type MutationAssignBasicPreEmploymentFormArgs, type MutationAssignBasicSuperFormArgs, type MutationAssignBasicTaxFormArgs, type MutationAssignCertificateArgs, type MutationAssignDocumentArgs, type MutationAssignKeypayEmployeeFormArgs, type MutationAssignQuestionnaireArgs, type MutationAssignStandardReviewArgs, type MutationAssignTaskArgs, type MutationAuthorizeIntegrationArgs, type MutationCancelLeaveRequestArgs, type MutationCompleteIntegrationSyncArgs, type MutationCompletePasswordResetArgs, type MutationConfirmEmailArgs, type MutationConfirmProfileArgs, type MutationConfirmProviderArgs, type MutationCreateAccountArgs, type MutationCreateApiTokenArgs, type MutationCreateAssignmentsArgs, type MutationCreateBasicAbnFormArgs, type MutationCreateBasicAbnFormTemplateArgs, type MutationCreateBasicBankAccountFormArgs, type MutationCreateBasicBankAccountFormTemplateArgs, type MutationCreateBasicEmergencyContactFormArgs, type MutationCreateBasicEmergencyContactFormTemplateArgs, type MutationCreateBasicPersonalDetailsFormArgs, type MutationCreateBasicPersonalDetailsFormTemplateArgs, type MutationCreateBasicPreEmploymentFormArgs, type MutationCreateBasicPreEmploymentFormTemplateArgs, type MutationCreateBasicSuperFormArgs, type MutationCreateBasicSuperFormTemplateArgs, type MutationCreateBasicTaxFormArgs, type MutationCreateBasicTaxFormTemplateArgs, type MutationCreateBundleArgs, type MutationCreateBundledPersonArgs, type MutationCreateCertificateArgs, type MutationCreateCertificateTemplateArgs, type MutationCreateCustomTableArgs, type MutationCreateDataExportArgs, type MutationCreateDataImportArgs, type MutationCreateDocumentArgs, type MutationCreateDocumentTemplateArgs, type MutationCreateIntegrationArgs, type MutationCreateIntegrationLogArgs, type MutationCreateJobArgs, type MutationCreateKeypayEmployeeFormArgs, type MutationCreateKeypayEmployeeFormTemplateArgs, type MutationCreateKeypayLeaveLeaveRequestArgs, type MutationCreateLeaveRequestArgs, type MutationCreateLocalPersonConnectionsArgs, type MutationCreateLocationArgs, type MutationCreateLoginArgs, type MutationCreateManualDataImportArgs, type MutationCreateNoteArgs, type MutationCreateNoteAttachmentsArgs, type MutationCreateOrgArgs, type MutationCreatePaperworkTypeArgs, type MutationCreatePerformanceReviewCycleArgs, type MutationCreatePersonArgs, type MutationCreatePersonConnectionArgs, type MutationCreatePersonDataImportLineArgs, type MutationCreatePositionArgs, type MutationCreateProcessedCertificateArgs, type MutationCreateProcessedDocumentArgs, type MutationCreateQuestionnaireArgs, type MutationCreateQuestionnaireTemplateArgs, type MutationCreateReviewCycleArgs, type MutationCreateSavedQuestionArgs, type MutationCreateStandaloneStandardReviewArgs, type MutationCreateStandaloneTaskArgs, type MutationCreateStandardReviewArgs, type MutationCreateStandardReviewQuestionArgs, type MutationCreateStandardReviewTemplateArgs, type MutationCreateStandardReviewTemplateQuestionArgs, type MutationCreateTagArgs, type MutationCreateTagsArgs, type MutationCreateTaskArgs, type MutationCreateTaskTemplateArgs, type MutationCreateXeroLeaveRequestArgs, type MutationDeleteApiTokenArgs, type MutationDeleteApprovalsArgs, type MutationDeleteBundledPersonArgs, type MutationDeleteJobArgs, type MutationDeleteLeaveRequestArgs, type MutationDeleteLoginArgs, type MutationDeletePersonConnectionArgs, type MutationDeletePersonConnectionsArgs, type MutationDeletePositionArgs, type MutationDeleteStandardReviewQuestionArgs, type MutationDeleteStandardReviewTemplateQuestionArgs, type MutationDeleteTagArgs, type MutationDenyKeypayLeaveLeaveRequestArgs, type MutationDenyLeaveRequestArgs, type MutationDenyXeroLeaveRequestArgs, type MutationDuplicatePaperworkTypeArgs, type MutationInitializeIntegrationArgs, type MutationInvitePeopleArgs, type MutationInvitePersonArgs, type MutationJoinOrgArgs, type MutationLogInArgs, type MutationLogInWithProviderArgs, type MutationMarkNotificationsReadArgs, type MutationMarkNotificationsUnreadArgs, type MutationMergePaperworkTypesArgs, type MutationPauseIntegrationArgs, type MutationProcessAssignmentArgs, type MutationProcessAssignmentsArgs, type MutationProcessLeaveRequestArgs, type MutationProcessStandardReviewArgs, type MutationReassignAssignmentArgs, type MutationReassignCertificateArgs, type MutationReassignTaskArgs, type MutationReinviteLoginArgs, type MutationReinvitePeopleArgs, type MutationReinvitePersonArgs, type MutationRemovePaperworkTypeFromBundlesArgs, type MutationRemovePeopleFromBundlesArgs, type MutationRemovePeopleFromTagsArgs, type MutationRemoveRevieweeFromCycleArgs, type MutationRequestApprovalsArgs, type 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 MutationSignUpArgs, type MutationSubmitBasicAbnFormArgs, type MutationSubmitBasicBankAccountFormArgs, type MutationSubmitBasicEmergencyContactFormArgs, type MutationSubmitBasicPersonalDetailsFormArgs, type MutationSubmitBasicPreEmploymentFormArgs, type MutationSubmitBasicSuperFormArgs, type MutationSubmitBasicTaxFormArgs, type MutationSubmitCertificateArgs, type MutationSubmitDocumentArgs, type MutationSubmitKeypayEmployeeFormArgs, type MutationSubmitQuestionnaireArgs, type MutationSubmitStandardReviewArgs, type MutationSubmitStandardReviewQuestionArgs, type MutationSubmitTaskArgs, type MutationTerminatePersonArgs, type MutationTriggerIntegrationSyncArgs, type MutationUnmatchPersonConnectionsArgs, type MutationUnpauseIntegrationArgs, type MutationUnscheduleStandardReviewArgs, type MutationUpdateAccountArgs, type MutationUpdateAssignmentArgs, type MutationUpdateAssignmentsArgs, type MutationUpdateBasicAbnFormTemplateArgs, type MutationUpdateBasicBankAccountFormTemplateArgs, type MutationUpdateBasicEmergencyContactFormTemplateArgs, type MutationUpdateBasicPersonalDetailsFormTemplateArgs, type MutationUpdateBasicPreEmploymentFormTemplateArgs, type MutationUpdateBasicSuperFormTemplateArgs, type MutationUpdateBasicTaxFormTemplateArgs, type MutationUpdateBundleArgs, type MutationUpdateCertificateArgs, type MutationUpdateCertificateTemplateArgs, type MutationUpdateCustomTableArgs, type MutationUpdateDocumentArgs, type MutationUpdateDocumentTemplateArgs, type MutationUpdateIntegrationArgs, type MutationUpdateJobArgs, type MutationUpdateKeypayEmployeeFormTemplateArgs, type MutationUpdateKeypayIntegrationArgs, type MutationUpdateKeypayLeaveIntegrationArgs, type MutationUpdateLocationArgs, type MutationUpdateNoteArgs, type MutationUpdateOnboardingAssignmentsArgs, type MutationUpdateOrgArgs, type MutationUpdatePaperworkAssignmentArgs, type MutationUpdatePaperworkTypeArgs, type MutationUpdatePerformanceReviewCycleArgs, type MutationUpdatePerformanceReviewCycleConfigArgs, type MutationUpdatePerformanceReviewCycleRevieweeArgs, type MutationUpdatePersonArgs, type MutationUpdatePersonConnectionArgs, type MutationUpdatePersonTagsArgs, type MutationUpdatePositionArgs, type MutationUpdatePositionsArgs, type MutationUpdateQuestionnaireArgs, type MutationUpdateQuestionnaireTemplateArgs, type MutationUpdateReviewCycleArgs, type MutationUpdateSavedQuestionArgs, type MutationUpdateStandardReviewArgs, type MutationUpdateStandardReviewQuestionArgs, type MutationUpdateStandardReviewTemplateArgs, type MutationUpdateStandardReviewTemplateQuestionArgs, type MutationUpdateTagArgs, type MutationUpdateTaskArgs, type MutationUpdateTaskTemplateArgs, type MutationUpdateUserPasswordArgs, type MutationUpdateXeroAuIntegrationArgs, type MutationUpdateXeroLeaveIntegrationArgs, type Note, type NoteAttachment, type Notification, NotificationType, type Org, type OrgBundlesArgs, type OrgFeatures, type OrgFeaturesInput, type OrgIntegrationsArgs, type OrgLocationsArgs, type OrgPaperworkSummariesArgs, type OrgPaperworkTypesArgs, type OrgPeopleArgs, type OrgPerformanceReviewCyclesArgs, type OrgPerformanceReviewTemplatesArgs, type OrgPositionsArgs, type OrgReviewCyclesArgs, type OrgSavedQuestionsArgs, type OrgTemplatesArgs, type PageInfo, type PaperworkAssignment, type PaperworkAssignmentNotificationsArgs, type PaperworkSummary, PaperworkSummaryStatus, type PaperworkTemplate, type PaperworkTemplateConnection, type PaperworkTemplateEdge, type PaperworkType, type PaperworkTypeTemplatesArgs, PayPeriod, type PerformanceReview, type PerformanceReviewCycle, type PerformanceReviewCycleConfig, PerformanceReviewCycleStatus, type PerformanceReviewNotification, type PerformanceReviewReviewee, type PerformanceReviewRevieweeInput, type PerformanceReviewTemplate, PerformanceReviewType, type Person, type PersonAssignmentsArgs, type PersonBankAccountsChange, type PersonBankAccountsChangeInput, type PersonCertificatesArgs, type PersonChange, type PersonConnection, type PersonConnectionLeaveHoursEstimateArgs, type PersonConnectionLeaveRequestsArgs, type PersonCustomTablesArgs, type PersonDataImportLine, type PersonDataTransferConfigInput, type PersonDateOfBirthChange, type PersonDateOfBirthChangeInput, type PersonDocumentsArgs, type PersonEmergencyContactsChange, type PersonEmergencyContactsChangeInput, type PersonFullDetailsFragment, type PersonFullNameChange, type PersonFullNameChangeInput, type PersonGenderChange, type PersonGenderChangeInput, type PersonNotesArgs, type PersonNotificationsArgs, type PersonPersonalEmailChange, type PersonPersonalEmailChangeInput, type PersonPersonalPhoneChange, type PersonPersonalPhoneChangeInput, type PersonPostalAddressChange, type PersonPostalAddressChangeInput, type PersonQuestionnairesArgs, type PersonRemunerationChange, type PersonResidentialAddressChange, type PersonResidentialAddressChangeInput, type PersonReviewsArgs, PersonRole, PersonStatus, type PersonSuperFundsChange, type PersonSuperFundsChangeInput, type PersonTasksArgs, type PersonTaxDetailsChange, type PersonTaxDetailsChangeInput, type PersonTenureChange, type PersonTenureChangeInput, type Position, type Query, type QueryAccountArgs, type QueryAssignmentArgs, type QueryBasicAbnFormTemplateArgs, type QueryBasicBankAccountFormTemplateArgs, type QueryBasicEmergencyContactFormTemplateArgs, type QueryBasicPersonalDetailsFormTemplateArgs, type QueryBasicPreEmploymentFormTemplateArgs, type QueryBasicSuperFormTemplateArgs, type QueryBasicTaxFormTemplateArgs, type QueryBundleArgs, type QueryCertificateArgs, type QueryCertificateTemplateArgs, type QueryCustomTableArgs, type QueryDataImportArgs, type QueryDataImportLineArgs, type QueryDocumentArgs, type QueryDocumentTemplateArgs, type QueryIntegrationArgs, type QueryJobArgs, type QueryKeypayEmployeeArgs, type QueryKeypayEmployeeFormTemplateArgs, type QueryKeypayLeaveEmployeeArgs, type QueryLeaveRequestArgs, type QueryNoteArgs, type QueryOrgArgs, type QueryPaperworkTypeArgs, type QueryPerformanceReviewCycleArgs, type QueryPersonArgs, type QueryPersonConnectionArgs, type QueryPositionArgs, type QueryQuestionnaireArgs, type QueryQuestionnaireTemplateArgs, type QueryReviewCycleArgs, type QuerySavedQuestionArgs, type QueryStandardReviewArgs, type QueryStandardReviewTemplateArgs, type QueryTaskArgs, type QueryTaskTemplateArgs, type QueryTemplateArgs, type QueryUserArgs, type Question, type QuestionConfig, type QuestionConfigInput, type QuestionLikert5Config, type QuestionLikert5ConfigInput, type QuestionLikert5Response, type QuestionLikert5ResponseInput, type QuestionMultipleChoiceConfig, type QuestionMultipleChoiceConfigInput, type QuestionMultipleChoiceOtherConfig, type QuestionMultipleChoiceOtherConfigInput, type QuestionMultipleChoiceOtherResponse, type QuestionMultipleChoiceOtherResponseInput, type QuestionMultipleChoiceResponse, type QuestionMultipleChoiceResponseInput, type QuestionResponse, type QuestionResponseInput, type QuestionTemplateInput, type QuestionTextConfig, type QuestionTextConfigInput, type QuestionTextResponse, type QuestionTextResponseInput, QuestionType, type Questionnaire, type QuestionnaireNotificationsArgs, type QuestionnaireQuestion, type QuestionnaireQuestionAnswerInput, type QuestionnaireQuestionInput, type QuestionnaireTemplate, type QuestionnaireTemplateQuestion, type ReviewCycle, type ReviewCycleReviewsArgs, ReviewRelation, type SavedQuestion, type Scalars, type Session, type SharedCalendarEvent, type SignatureUploadDocumentField, type SignatureUploadDocumentFieldConfigInput, type SignatureUploadDocumentFieldInput, type SmartDocumentField, type SmartDocumentFieldConfigInput, type SmartDocumentFieldInput, SmartDocumentFieldType, type StandardReview, type StandardReviewNotification, type StandardReviewNotificationsArgs, type StandardReviewQuestion, StandardReviewQuestionRespondent, type StandardReviewQuestionsArgs, StandardReviewStatus, type StandardReviewTemplate, type StandardReviewTemplateQuestion, type StartDateEvent, SuperFundNomination, type Tag, TagColor, type TagInput, type Task, type TaskNotificationsArgs, type TaskTemplate, TaxEmploymentBasis, TaxFileNumberExemption, TaxResidencyStatus, type Template, type TemplateInput, type TextDocumentField, type TextDocumentFieldConfigInput, type TextDocumentFieldInput, type UpdateLeaveRequestMutation, type UpdateLeaveRequestMutationVariables, type UpdateNoteAttachmentInput, type UpdatePersonConnectionMutation, type UpdatePersonConnectionMutationVariables, type UpdatePersonMutation, type UpdatePersonMutationVariables, type Upload, type User, type XeroAuBankAccount, type XeroAuEmployee, XeroAuEmploymentBasis, XeroAuGender, type XeroAuIntegration, type XeroAuIntegrationFeaturesArgs, XeroAuResidencyStatus, type XeroAuSuperFund, type XeroAuSuperMembership, XeroAuTfnExemptionType, type XeroIntegrationTenantInput, type XeroIntegrationTokenSetInput, type XeroLeaveEmployee, type XeroLeaveIntegration, type XeroLeaveIntegrationFeaturesArgs };
|
package/dist/api/_generated.js
CHANGED
|
@@ -101,6 +101,12 @@ var DocumentFieldResponder = /* @__PURE__ */ ((DocumentFieldResponder2) => {
|
|
|
101
101
|
DocumentFieldResponder2["Submitter"] = "SUBMITTER";
|
|
102
102
|
return DocumentFieldResponder2;
|
|
103
103
|
})(DocumentFieldResponder || {});
|
|
104
|
+
var DueDateStatus = /* @__PURE__ */ ((DueDateStatus2) => {
|
|
105
|
+
DueDateStatus2["DueSoon"] = "DUE_SOON";
|
|
106
|
+
DueDateStatus2["NotDue"] = "NOT_DUE";
|
|
107
|
+
DueDateStatus2["Overdue"] = "OVERDUE";
|
|
108
|
+
return DueDateStatus2;
|
|
109
|
+
})(DueDateStatus || {});
|
|
104
110
|
var ExpiryStatus = /* @__PURE__ */ ((ExpiryStatus2) => {
|
|
105
111
|
ExpiryStatus2["Current"] = "CURRENT";
|
|
106
112
|
ExpiryStatus2["Expired"] = "EXPIRED";
|
|
@@ -197,15 +203,24 @@ var NotificationType = /* @__PURE__ */ ((NotificationType2) => {
|
|
|
197
203
|
NotificationType2["ApprovalRequested"] = "APPROVAL_REQUESTED";
|
|
198
204
|
NotificationType2["AssignmentApproved"] = "ASSIGNMENT_APPROVED";
|
|
199
205
|
NotificationType2["AssignmentAssigned"] = "ASSIGNMENT_ASSIGNED";
|
|
206
|
+
NotificationType2["AssignmentDueSoon"] = "ASSIGNMENT_DUE_SOON";
|
|
200
207
|
NotificationType2["AssignmentExpired"] = "ASSIGNMENT_EXPIRED";
|
|
201
208
|
NotificationType2["AssignmentExpiringSoon"] = "ASSIGNMENT_EXPIRING_SOON";
|
|
202
209
|
NotificationType2["AssignmentFailed"] = "ASSIGNMENT_FAILED";
|
|
210
|
+
NotificationType2["AssignmentOverdue"] = "ASSIGNMENT_OVERDUE";
|
|
203
211
|
NotificationType2["AssignmentReassigned"] = "ASSIGNMENT_REASSIGNED";
|
|
204
212
|
NotificationType2["AssignmentSubmitted"] = "ASSIGNMENT_SUBMITTED";
|
|
205
213
|
NotificationType2["LeaveRequestApproved"] = "LEAVE_REQUEST_APPROVED";
|
|
206
214
|
NotificationType2["LeaveRequestCancelled"] = "LEAVE_REQUEST_CANCELLED";
|
|
207
215
|
NotificationType2["LeaveRequestCreated"] = "LEAVE_REQUEST_CREATED";
|
|
208
216
|
NotificationType2["LeaveRequestDenied"] = "LEAVE_REQUEST_DENIED";
|
|
217
|
+
NotificationType2["PerformanceReviewManagerReviewAssigned"] = "PERFORMANCE_REVIEW_MANAGER_REVIEW_ASSIGNED";
|
|
218
|
+
NotificationType2["PerformanceReviewManagerReviewOverdue"] = "PERFORMANCE_REVIEW_MANAGER_REVIEW_OVERDUE";
|
|
219
|
+
NotificationType2["PerformanceReviewPacketShared"] = "PERFORMANCE_REVIEW_PACKET_SHARED";
|
|
220
|
+
NotificationType2["PerformanceReviewRevieweeSelfReviewOverdue"] = "PERFORMANCE_REVIEW_REVIEWEE_SELF_REVIEW_OVERDUE";
|
|
221
|
+
NotificationType2["PerformanceReviewSelfReviewAssigned"] = "PERFORMANCE_REVIEW_SELF_REVIEW_ASSIGNED";
|
|
222
|
+
NotificationType2["PerformanceReviewSelfReviewOverdue"] = "PERFORMANCE_REVIEW_SELF_REVIEW_OVERDUE";
|
|
223
|
+
NotificationType2["PerformanceReviewSelfReviewSubmitted"] = "PERFORMANCE_REVIEW_SELF_REVIEW_SUBMITTED";
|
|
209
224
|
NotificationType2["ReviewAssigned"] = "REVIEW_ASSIGNED";
|
|
210
225
|
NotificationType2["ReviewScheduled"] = "REVIEW_SCHEDULED";
|
|
211
226
|
NotificationType2["ReviewSubmitted"] = "REVIEW_SUBMITTED";
|
|
@@ -236,6 +251,11 @@ var PerformanceReviewCycleStatus = /* @__PURE__ */ ((PerformanceReviewCycleStatu
|
|
|
236
251
|
PerformanceReviewCycleStatus2["InProgress"] = "IN_PROGRESS";
|
|
237
252
|
return PerformanceReviewCycleStatus2;
|
|
238
253
|
})(PerformanceReviewCycleStatus || {});
|
|
254
|
+
var PerformanceReviewType = /* @__PURE__ */ ((PerformanceReviewType2) => {
|
|
255
|
+
PerformanceReviewType2["Manager"] = "MANAGER";
|
|
256
|
+
PerformanceReviewType2["Self"] = "SELF";
|
|
257
|
+
return PerformanceReviewType2;
|
|
258
|
+
})(PerformanceReviewType || {});
|
|
239
259
|
var PersonRole = /* @__PURE__ */ ((PersonRole2) => {
|
|
240
260
|
PersonRole2["AccountManager"] = "ACCOUNT_MANAGER";
|
|
241
261
|
PersonRole2["AccountOwner"] = "ACCOUNT_OWNER";
|
|
@@ -381,6 +401,7 @@ export {
|
|
|
381
401
|
ConnectionStatus,
|
|
382
402
|
DataExportType,
|
|
383
403
|
DocumentFieldResponder,
|
|
404
|
+
DueDateStatus,
|
|
384
405
|
ExpiryStatus,
|
|
385
406
|
FieldPresence,
|
|
386
407
|
FileProcessingStatus,
|
|
@@ -399,6 +420,7 @@ export {
|
|
|
399
420
|
PaperworkSummaryStatus,
|
|
400
421
|
PayPeriod,
|
|
401
422
|
PerformanceReviewCycleStatus,
|
|
423
|
+
PerformanceReviewType,
|
|
402
424
|
PersonRole,
|
|
403
425
|
PersonStatus,
|
|
404
426
|
QuestionType,
|