@worknice/js-sdk 0.0.5 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{_types-kBsjg67t.d.ts → _types-Cobjq3B-.d.ts} +64 -0
- package/dist/api/ApiError.js +3 -3
- package/dist/api/ApiError.js.map +1 -1
- package/dist/api/WorkniceIntegrationLogger.d.ts +3 -1
- package/dist/api/WorkniceIntegrationLogger.js.map +1 -1
- package/dist/api/_generated.d.ts +261 -40
- package/dist/api/_generated.js +15 -12
- package/dist/api/_generated.js.map +1 -1
- package/dist/api/_types.d.ts +2 -2
- package/dist/api/createApiOperation.d.ts +1 -1
- package/dist/api/createWorkniceClient.d.ts +1 -1
- package/dist/api/createWorkniceClient.js +2 -0
- package/dist/api/createWorkniceClient.js.map +1 -1
- package/dist/api/operations/activateIntegration.d.ts +1 -1
- package/dist/api/operations/authorizeIntegration.d.ts +1 -1
- package/dist/api/operations/completeSync.d.ts +1 -1
- package/dist/api/operations/createApiToken.d.ts +1 -1
- package/dist/api/operations/createDataImport.d.ts +1 -1
- package/dist/api/operations/createPersonConnection.d.ts +1 -1
- package/dist/api/operations/createPersonDataImportLine.d.ts +1 -1
- package/dist/api/operations/deleteApiToken.d.ts +1 -1
- package/dist/api/operations/deletePersonConnection.d.ts +1 -1
- package/dist/api/operations/getApiTokens.d.ts +1 -1
- package/dist/api/operations/getIntegration.d.ts +1 -1
- package/dist/api/operations/getMyApps.d.ts +1 -1
- package/dist/api/operations/getPeople.d.ts +2 -1
- package/dist/api/operations/getPeople.js +1 -0
- package/dist/api/operations/getPeople.js.map +1 -1
- package/dist/api/operations/getPersonConnections.d.ts +1 -1
- package/dist/api/operations/initializeIntegration.d.ts +1 -1
- package/dist/api/operations/updatePerson.d.ts +70 -0
- package/dist/api/operations/updatePerson.js +90 -0
- package/dist/api/operations/updatePerson.js.map +1 -0
- package/dist/api/operations/updatePersonConnection.d.ts +1 -1
- package/dist/api/operations/updatePersonConnection.js.map +1 -1
- package/dist/employee-records/EQUALITY_CHECKS.js +5 -0
- package/dist/employee-records/EQUALITY_CHECKS.js.map +1 -1
- package/dist/employee-records/_types.d.ts +11 -5
- package/dist/employee-records/comparePersonDataTransferLines.js +14 -0
- package/dist/employee-records/comparePersonDataTransferLines.js.map +1 -1
- package/dist/employee-records/index.d.ts +1 -1
- package/dist/employee-records/mergePersonDataTransferLines.js +1 -0
- package/dist/employee-records/mergePersonDataTransferLines.js.map +1 -1
- package/dist/employee-records/validatePersonDataTransferLine.js +2 -0
- package/dist/employee-records/validatePersonDataTransferLine.js.map +1 -1
- package/dist/employee-records/validatePersonDataTransferLineProfile.d.ts +6 -0
- package/dist/employee-records/validatePersonDataTransferLineProfile.js +17 -0
- package/dist/employee-records/validatePersonDataTransferLineProfile.js.map +1 -0
- package/dist/helpers/_types.d.ts +1 -1
- package/dist/helpers/handleApproveLeaveRequestWebhook.d.ts +1 -1
- package/dist/helpers/handleCancelLeaveRequestWebhook.d.ts +1 -1
- package/dist/helpers/handleCreateIntegrationWebhook.d.ts +4 -2
- package/dist/helpers/handleCreateIntegrationWebhook.js +17 -2
- package/dist/helpers/handleCreateIntegrationWebhook.js.map +1 -1
- package/dist/helpers/handleCreateLeaveRequestWebhook.d.ts +1 -1
- package/dist/helpers/handleDenyLeaveRequestWebhook.d.ts +1 -1
- package/dist/helpers/handleGetAuthorizationUrlWebhook.d.ts +1 -1
- package/dist/helpers/handleGetLeaveBalancesWebhook.d.ts +1 -1
- package/dist/helpers/handleGetLeaveCategoriesWebhook.d.ts +1 -1
- package/dist/helpers/handleGetLeaveRequestHoursWebhook.d.ts +1 -1
- package/dist/helpers/handleProcessLeaveRequestWebhook.d.ts +1 -1
- package/dist/helpers/handleRequest.d.ts +1 -1
- package/dist/helpers/handleRequestWithWorknice.d.ts +1 -1
- package/dist/helpers/handleTriggerIntegrationSyncWebhook.d.ts +7 -8
- package/dist/helpers/handleTriggerIntegrationSyncWebhook.js +185 -117
- package/dist/helpers/handleTriggerIntegrationSyncWebhook.js.map +1 -1
- package/dist/helpers/index.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/utils/errorToString.js +6 -4
- package/dist/utils/errorToString.js.map +1 -1
- package/package.json +7 -4
package/dist/api/_generated.d.ts
CHANGED
|
@@ -358,6 +358,7 @@ type BasicAbnFormTemplate = Template & {
|
|
|
358
358
|
name: Scalars['String']['output'];
|
|
359
359
|
org: Org;
|
|
360
360
|
paperworkSummaries: Array<PaperworkSummary>;
|
|
361
|
+
/** @deprecated Unused. */
|
|
361
362
|
templateParameters: Array<TemplateParameter>;
|
|
362
363
|
updatedAt: Scalars['DateTime']['output'];
|
|
363
364
|
};
|
|
@@ -438,6 +439,7 @@ type BasicBankAccountFormTemplate = Template & {
|
|
|
438
439
|
name: Scalars['String']['output'];
|
|
439
440
|
org: Org;
|
|
440
441
|
paperworkSummaries: Array<PaperworkSummary>;
|
|
442
|
+
/** @deprecated Unused. */
|
|
441
443
|
templateParameters: Array<TemplateParameter>;
|
|
442
444
|
updatedAt: Scalars['DateTime']['output'];
|
|
443
445
|
};
|
|
@@ -532,6 +534,7 @@ type BasicEmergencyContactFormTemplate = Template & {
|
|
|
532
534
|
name: Scalars['String']['output'];
|
|
533
535
|
org: Org;
|
|
534
536
|
paperworkSummaries: Array<PaperworkSummary>;
|
|
537
|
+
/** @deprecated Unused. */
|
|
535
538
|
templateParameters: Array<TemplateParameter>;
|
|
536
539
|
updatedAt: Scalars['DateTime']['output'];
|
|
537
540
|
};
|
|
@@ -609,6 +612,7 @@ type BasicPersonalDetailsFormTemplate = Template & {
|
|
|
609
612
|
name: Scalars['String']['output'];
|
|
610
613
|
org: Org;
|
|
611
614
|
paperworkSummaries: Array<PaperworkSummary>;
|
|
615
|
+
/** @deprecated Unused. */
|
|
612
616
|
templateParameters: Array<TemplateParameter>;
|
|
613
617
|
updatedAt: Scalars['DateTime']['output'];
|
|
614
618
|
};
|
|
@@ -672,6 +676,7 @@ type BasicPreEmploymentFormTemplate = Template & {
|
|
|
672
676
|
name: Scalars['String']['output'];
|
|
673
677
|
org: Org;
|
|
674
678
|
paperworkSummaries: Array<PaperworkSummary>;
|
|
679
|
+
/** @deprecated Unused. */
|
|
675
680
|
templateParameters: Array<TemplateParameter>;
|
|
676
681
|
updatedAt: Scalars['DateTime']['output'];
|
|
677
682
|
workplaceAdjustmentsRequiredPresence: Scalars['Boolean']['output'];
|
|
@@ -744,6 +749,7 @@ type BasicSuperFormTemplate = Template & {
|
|
|
744
749
|
name: Scalars['String']['output'];
|
|
745
750
|
org: Org;
|
|
746
751
|
paperworkSummaries: Array<PaperworkSummary>;
|
|
752
|
+
/** @deprecated Unused. */
|
|
747
753
|
templateParameters: Array<TemplateParameter>;
|
|
748
754
|
updatedAt: Scalars['DateTime']['output'];
|
|
749
755
|
};
|
|
@@ -810,6 +816,7 @@ type BasicTaxFormTemplate = Template & {
|
|
|
810
816
|
name: Scalars['String']['output'];
|
|
811
817
|
org: Org;
|
|
812
818
|
paperworkSummaries: Array<PaperworkSummary>;
|
|
819
|
+
/** @deprecated Unused. */
|
|
813
820
|
templateParameters: Array<TemplateParameter>;
|
|
814
821
|
updatedAt: Scalars['DateTime']['output'];
|
|
815
822
|
};
|
|
@@ -930,12 +937,45 @@ type CertificateTemplate = Template & {
|
|
|
930
937
|
org: Org;
|
|
931
938
|
paperworkSummaries: Array<PaperworkSummary>;
|
|
932
939
|
proof: CertificateProof;
|
|
940
|
+
/** @deprecated Unused. */
|
|
933
941
|
templateParameters: Array<TemplateParameter>;
|
|
934
942
|
updatedAt: Scalars['DateTime']['output'];
|
|
935
943
|
uploadLimit?: Maybe<Scalars['Int']['output']>;
|
|
936
944
|
uploadMimeTypes?: Maybe<Array<Scalars['MimeType']['output']>>;
|
|
937
945
|
verifyInstructions?: Maybe<Scalars['Markdown']['output']>;
|
|
938
946
|
};
|
|
947
|
+
type ChoiceDocumentField = DocumentField & {
|
|
948
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
949
|
+
id: Scalars['String']['output'];
|
|
950
|
+
isRequired: Scalars['Boolean']['output'];
|
|
951
|
+
label: Scalars['String']['output'];
|
|
952
|
+
options: Array<ChoiceDocumentFieldOption>;
|
|
953
|
+
responder: DocumentFieldResponder;
|
|
954
|
+
};
|
|
955
|
+
type ChoiceDocumentFieldConfigInput = {
|
|
956
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
957
|
+
id: Scalars['String']['input'];
|
|
958
|
+
isRequired: Scalars['Boolean']['input'];
|
|
959
|
+
label: Scalars['String']['input'];
|
|
960
|
+
options: Array<ChoiceDocumentFieldConfigOptionInput>;
|
|
961
|
+
responder: DocumentFieldResponder;
|
|
962
|
+
};
|
|
963
|
+
type ChoiceDocumentFieldConfigOptionInput = {
|
|
964
|
+
id: Scalars['ID']['input'];
|
|
965
|
+
value: Scalars['String']['input'];
|
|
966
|
+
};
|
|
967
|
+
type ChoiceDocumentFieldInput = {
|
|
968
|
+
id: Scalars['ID']['input'];
|
|
969
|
+
value: ChoiceDocumentFieldOptionInput;
|
|
970
|
+
};
|
|
971
|
+
type ChoiceDocumentFieldOption = {
|
|
972
|
+
id: Scalars['ID']['output'];
|
|
973
|
+
value: Scalars['String']['output'];
|
|
974
|
+
};
|
|
975
|
+
type ChoiceDocumentFieldOptionInput = {
|
|
976
|
+
id: Scalars['ID']['input'];
|
|
977
|
+
value: Scalars['String']['input'];
|
|
978
|
+
};
|
|
939
979
|
type ConnectionRemote = {
|
|
940
980
|
id: Scalars['String']['output'];
|
|
941
981
|
name: Scalars['String']['output'];
|
|
@@ -989,6 +1029,28 @@ type DataImportLine = {
|
|
|
989
1029
|
id: Scalars['ID']['output'];
|
|
990
1030
|
rawData: Scalars['String']['output'];
|
|
991
1031
|
};
|
|
1032
|
+
type DateDocumentField = DocumentField & {
|
|
1033
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1034
|
+
id: Scalars['String']['output'];
|
|
1035
|
+
isRequired: Scalars['Boolean']['output'];
|
|
1036
|
+
label: Scalars['String']['output'];
|
|
1037
|
+
prefix?: Maybe<Scalars['String']['output']>;
|
|
1038
|
+
responder: DocumentFieldResponder;
|
|
1039
|
+
suffix?: Maybe<Scalars['String']['output']>;
|
|
1040
|
+
};
|
|
1041
|
+
type DateDocumentFieldConfigInput = {
|
|
1042
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1043
|
+
id: Scalars['ID']['input'];
|
|
1044
|
+
isRequired: Scalars['Boolean']['input'];
|
|
1045
|
+
label: Scalars['String']['input'];
|
|
1046
|
+
prefix?: InputMaybe<Scalars['String']['input']>;
|
|
1047
|
+
responder: DocumentFieldResponder;
|
|
1048
|
+
suffix?: InputMaybe<Scalars['String']['input']>;
|
|
1049
|
+
};
|
|
1050
|
+
type DateDocumentFieldInput = {
|
|
1051
|
+
id: Scalars['ID']['input'];
|
|
1052
|
+
value: Scalars['Date']['input'];
|
|
1053
|
+
};
|
|
992
1054
|
type Department = {
|
|
993
1055
|
createdAt: Scalars['DateTime']['output'];
|
|
994
1056
|
id: Scalars['ID']['output'];
|
|
@@ -1041,46 +1103,32 @@ type DocumentNotificationsArgs = {
|
|
|
1041
1103
|
personId: Scalars['ID']['input'];
|
|
1042
1104
|
};
|
|
1043
1105
|
type DocumentField = {
|
|
1106
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1044
1107
|
id: Scalars['String']['output'];
|
|
1108
|
+
isRequired: Scalars['Boolean']['output'];
|
|
1045
1109
|
label: Scalars['String']['output'];
|
|
1046
|
-
|
|
1047
|
-
type: DocumentFieldType;
|
|
1110
|
+
responder: DocumentFieldResponder;
|
|
1048
1111
|
};
|
|
1049
1112
|
type DocumentFieldConfigInput = {
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1113
|
+
choice?: InputMaybe<ChoiceDocumentFieldConfigInput>;
|
|
1114
|
+
date?: InputMaybe<DateDocumentFieldConfigInput>;
|
|
1115
|
+
multiLineText?: InputMaybe<MultiLineTextDocumentFieldConfigInput>;
|
|
1116
|
+
signatureUpload?: InputMaybe<SignatureUploadDocumentFieldConfigInput>;
|
|
1117
|
+
smart?: InputMaybe<SmartDocumentFieldConfigInput>;
|
|
1118
|
+
text?: InputMaybe<TextDocumentFieldConfigInput>;
|
|
1053
1119
|
};
|
|
1054
|
-
/**
|
|
1055
|
-
* Although 'date', 'string' and 'upload' are all nullable, one of them _must_ be provided, but **no more than one**.
|
|
1056
|
-
*
|
|
1057
|
-
* If an upload file is provided, it must be a PNG image.
|
|
1058
|
-
*
|
|
1059
|
-
* This will use [OneOf](https://github.com/graphql/graphql-spec/pull/825) when it's introduced to GraphQL.
|
|
1060
|
-
*/
|
|
1061
1120
|
type DocumentFieldInput = {
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
FormSignature = "FORM_SIGNATURE",
|
|
1074
|
-
/** Filled out by the assignee. A single line of text. */
|
|
1075
|
-
FormText = "FORM_TEXT",
|
|
1076
|
-
/** @deprecated Use 'FORM_SIGNATURE' instead. */
|
|
1077
|
-
Signature = "SIGNATURE",
|
|
1078
|
-
/** Filled out by the assigner. A date. Pre-filled to the date the assigner is assigning the document. */
|
|
1079
|
-
TemplateDate = "TEMPLATE_DATE",
|
|
1080
|
-
/** Filled out by the assigner. A single line of text. */
|
|
1081
|
-
TemplateText = "TEMPLATE_TEXT",
|
|
1082
|
-
/** @deprecated Use 'FORM_TEXT' instead. */
|
|
1083
|
-
Text = "TEXT"
|
|
1121
|
+
choice?: InputMaybe<ChoiceDocumentFieldInput>;
|
|
1122
|
+
date?: InputMaybe<DateDocumentFieldInput>;
|
|
1123
|
+
multiLineText?: InputMaybe<MultiLineTextDocumentFieldInput>;
|
|
1124
|
+
signatureUpload?: InputMaybe<SignatureUploadDocumentFieldInput>;
|
|
1125
|
+
smart?: InputMaybe<SmartDocumentFieldInput>;
|
|
1126
|
+
text?: InputMaybe<TextDocumentFieldInput>;
|
|
1127
|
+
};
|
|
1128
|
+
declare enum DocumentFieldResponder {
|
|
1129
|
+
Assigner = "ASSIGNER",
|
|
1130
|
+
None = "NONE",
|
|
1131
|
+
Submitter = "SUBMITTER"
|
|
1084
1132
|
}
|
|
1085
1133
|
type DocumentTemplate = Template & {
|
|
1086
1134
|
archived: Scalars['Boolean']['output'];
|
|
@@ -1094,6 +1142,7 @@ type DocumentTemplate = Template & {
|
|
|
1094
1142
|
name: Scalars['String']['output'];
|
|
1095
1143
|
org: Org;
|
|
1096
1144
|
paperworkSummaries: Array<PaperworkSummary>;
|
|
1145
|
+
/** @deprecated Use 'fields' instead. */
|
|
1097
1146
|
templateParameters: Array<TemplateParameter>;
|
|
1098
1147
|
updatedAt: Scalars['DateTime']['output'];
|
|
1099
1148
|
/** 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. */
|
|
@@ -1704,6 +1753,7 @@ type KeypayEmployeeFormTemplate = Template & {
|
|
|
1704
1753
|
personalDetailsPresence: FieldPresence;
|
|
1705
1754
|
superPresence: FieldPresence;
|
|
1706
1755
|
taxPresence: FieldPresence;
|
|
1756
|
+
/** @deprecated Unused. */
|
|
1707
1757
|
templateParameters: Array<TemplateParameter>;
|
|
1708
1758
|
updatedAt: Scalars['DateTime']['output'];
|
|
1709
1759
|
};
|
|
@@ -1871,6 +1921,26 @@ type Media = {
|
|
|
1871
1921
|
type: Scalars['MimeType']['output'];
|
|
1872
1922
|
url: Scalars['String']['output'];
|
|
1873
1923
|
};
|
|
1924
|
+
type MultiLineTextDocumentField = DocumentField & {
|
|
1925
|
+
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
1926
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1927
|
+
id: Scalars['String']['output'];
|
|
1928
|
+
isRequired: Scalars['Boolean']['output'];
|
|
1929
|
+
label: Scalars['String']['output'];
|
|
1930
|
+
responder: DocumentFieldResponder;
|
|
1931
|
+
};
|
|
1932
|
+
type MultiLineTextDocumentFieldConfigInput = {
|
|
1933
|
+
defaultValue?: InputMaybe<Scalars['String']['input']>;
|
|
1934
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1935
|
+
id: Scalars['ID']['input'];
|
|
1936
|
+
isRequired: Scalars['Boolean']['input'];
|
|
1937
|
+
label: Scalars['String']['input'];
|
|
1938
|
+
responder: DocumentFieldResponder;
|
|
1939
|
+
};
|
|
1940
|
+
type MultiLineTextDocumentFieldInput = {
|
|
1941
|
+
id: Scalars['ID']['input'];
|
|
1942
|
+
value: Scalars['String']['input'];
|
|
1943
|
+
};
|
|
1874
1944
|
type Mutation = {
|
|
1875
1945
|
/** Accepts a login invite. Only the user associated with the login can accept the invite. */
|
|
1876
1946
|
acceptLogin: Login;
|
|
@@ -2428,10 +2498,11 @@ type MutationCreateDataImportArgs = {
|
|
|
2428
2498
|
integrationId?: InputMaybe<Scalars['ID']['input']>;
|
|
2429
2499
|
};
|
|
2430
2500
|
type MutationCreateDocumentArgs = {
|
|
2501
|
+
fields?: InputMaybe<Array<DocumentFieldInput>>;
|
|
2431
2502
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2432
2503
|
personId: Scalars['ID']['input'];
|
|
2433
2504
|
templateId: Scalars['ID']['input'];
|
|
2434
|
-
templateParameters
|
|
2505
|
+
templateParameters?: InputMaybe<Array<TemplateParameterInput>>;
|
|
2435
2506
|
};
|
|
2436
2507
|
type MutationCreateDocumentTemplateArgs = {
|
|
2437
2508
|
name: Scalars['String']['input'];
|
|
@@ -2570,7 +2641,7 @@ type MutationCreateQuestionnaireArgs = {
|
|
|
2570
2641
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2571
2642
|
ownerId: Scalars['ID']['input'];
|
|
2572
2643
|
templateId: Scalars['ID']['input'];
|
|
2573
|
-
templateParameters
|
|
2644
|
+
templateParameters?: InputMaybe<Array<TemplateParameterInput>>;
|
|
2574
2645
|
};
|
|
2575
2646
|
type MutationCreateQuestionnaireTemplateArgs = {
|
|
2576
2647
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -2639,7 +2710,7 @@ type MutationCreateStandardReviewArgs = {
|
|
|
2639
2710
|
reviewerId: Scalars['ID']['input'];
|
|
2640
2711
|
subjectId: Scalars['ID']['input'];
|
|
2641
2712
|
templateId: Scalars['ID']['input'];
|
|
2642
|
-
templateParameters
|
|
2713
|
+
templateParameters?: InputMaybe<Array<TemplateParameterInput>>;
|
|
2643
2714
|
};
|
|
2644
2715
|
type MutationCreateStandardReviewQuestionArgs = {
|
|
2645
2716
|
config: QuestionConfigInput;
|
|
@@ -2675,7 +2746,7 @@ type MutationCreateTaskArgs = {
|
|
|
2675
2746
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2676
2747
|
ownerId: Scalars['ID']['input'];
|
|
2677
2748
|
templateId: Scalars['ID']['input'];
|
|
2678
|
-
templateParameters
|
|
2749
|
+
templateParameters?: InputMaybe<Array<TemplateParameterInput>>;
|
|
2679
2750
|
};
|
|
2680
2751
|
type MutationCreateTaskTemplateArgs = {
|
|
2681
2752
|
description?: InputMaybe<Scalars['Markdown']['input']>;
|
|
@@ -4247,6 +4318,7 @@ type Question = {
|
|
|
4247
4318
|
required: Scalars['Boolean']['output'];
|
|
4248
4319
|
response?: Maybe<QuestionResponse>;
|
|
4249
4320
|
savedQuestion?: Maybe<SavedQuestion>;
|
|
4321
|
+
subject: Person;
|
|
4250
4322
|
submitted: Scalars['Boolean']['output'];
|
|
4251
4323
|
submittedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4252
4324
|
submitter?: Maybe<Person>;
|
|
@@ -4400,6 +4472,7 @@ type QuestionnaireQuestion = Question & {
|
|
|
4400
4472
|
responseInteger?: Maybe<Scalars['Int']['output']>;
|
|
4401
4473
|
responseText?: Maybe<Scalars['String']['output']>;
|
|
4402
4474
|
savedQuestion?: Maybe<SavedQuestion>;
|
|
4475
|
+
subject: Person;
|
|
4403
4476
|
submitted: Scalars['Boolean']['output'];
|
|
4404
4477
|
submittedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4405
4478
|
submitter?: Maybe<Person>;
|
|
@@ -4437,6 +4510,7 @@ type QuestionnaireTemplate = Template & {
|
|
|
4437
4510
|
org: Org;
|
|
4438
4511
|
paperworkSummaries: Array<PaperworkSummary>;
|
|
4439
4512
|
questions: Array<QuestionnaireTemplateQuestion>;
|
|
4513
|
+
/** @deprecated Unused. */
|
|
4440
4514
|
templateParameters: Array<TemplateParameter>;
|
|
4441
4515
|
updatedAt: Scalars['DateTime']['output'];
|
|
4442
4516
|
};
|
|
@@ -4475,6 +4549,7 @@ type SavedQuestion = {
|
|
|
4475
4549
|
options?: Maybe<Array<Scalars['String']['output']>>;
|
|
4476
4550
|
org: Org;
|
|
4477
4551
|
questionnaireTemplateQuestions: Array<QuestionnaireTemplateQuestion>;
|
|
4552
|
+
questions: Array<Question>;
|
|
4478
4553
|
type: QuestionType;
|
|
4479
4554
|
updatedAt: Scalars['DateTime']['output'];
|
|
4480
4555
|
};
|
|
@@ -4525,6 +4600,54 @@ type SharedCalendarEvent = {
|
|
|
4525
4600
|
owner?: Maybe<Person>;
|
|
4526
4601
|
startDate: Scalars['Date']['output'];
|
|
4527
4602
|
};
|
|
4603
|
+
type SignatureUploadDocumentField = DocumentField & {
|
|
4604
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4605
|
+
id: Scalars['String']['output'];
|
|
4606
|
+
isRequired: Scalars['Boolean']['output'];
|
|
4607
|
+
label: Scalars['String']['output'];
|
|
4608
|
+
responder: DocumentFieldResponder;
|
|
4609
|
+
};
|
|
4610
|
+
type SignatureUploadDocumentFieldConfigInput = {
|
|
4611
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4612
|
+
id: Scalars['ID']['input'];
|
|
4613
|
+
isRequired: Scalars['Boolean']['input'];
|
|
4614
|
+
label: Scalars['String']['input'];
|
|
4615
|
+
responder: DocumentFieldResponder;
|
|
4616
|
+
};
|
|
4617
|
+
type SignatureUploadDocumentFieldInput = {
|
|
4618
|
+
id: Scalars['ID']['input'];
|
|
4619
|
+
value: Scalars['Upload']['input'];
|
|
4620
|
+
};
|
|
4621
|
+
type SmartDocumentField = DocumentField & {
|
|
4622
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4623
|
+
id: Scalars['String']['output'];
|
|
4624
|
+
isRequired: Scalars['Boolean']['output'];
|
|
4625
|
+
label: Scalars['String']['output'];
|
|
4626
|
+
prefix?: Maybe<Scalars['String']['output']>;
|
|
4627
|
+
responder: DocumentFieldResponder;
|
|
4628
|
+
smartFieldType: SmartDocumentFieldType;
|
|
4629
|
+
suffix?: Maybe<Scalars['String']['output']>;
|
|
4630
|
+
};
|
|
4631
|
+
type SmartDocumentFieldConfigInput = {
|
|
4632
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4633
|
+
id: Scalars['String']['input'];
|
|
4634
|
+
isRequired: Scalars['Boolean']['input'];
|
|
4635
|
+
label: Scalars['String']['input'];
|
|
4636
|
+
prefix?: InputMaybe<Scalars['String']['input']>;
|
|
4637
|
+
responder: DocumentFieldResponder;
|
|
4638
|
+
smartFieldType: SmartDocumentFieldType;
|
|
4639
|
+
suffix?: InputMaybe<Scalars['String']['input']>;
|
|
4640
|
+
};
|
|
4641
|
+
type SmartDocumentFieldInput = {
|
|
4642
|
+
id: Scalars['ID']['input'];
|
|
4643
|
+
value: Scalars['String']['input'];
|
|
4644
|
+
};
|
|
4645
|
+
declare enum SmartDocumentFieldType {
|
|
4646
|
+
DateOfBirth = "DATE_OF_BIRTH",
|
|
4647
|
+
DisplayName = "DISPLAY_NAME",
|
|
4648
|
+
FullName = "FULL_NAME",
|
|
4649
|
+
StartDate = "START_DATE"
|
|
4650
|
+
}
|
|
4528
4651
|
type StandardReview = Assignment & {
|
|
4529
4652
|
approvals: Array<Approval>;
|
|
4530
4653
|
archived: Scalars['Boolean']['output'];
|
|
@@ -4596,6 +4719,7 @@ type StandardReviewQuestion = Question & {
|
|
|
4596
4719
|
response?: Maybe<QuestionResponse>;
|
|
4597
4720
|
review: StandardReview;
|
|
4598
4721
|
savedQuestion?: Maybe<SavedQuestion>;
|
|
4722
|
+
subject: Person;
|
|
4599
4723
|
submitted: Scalars['Boolean']['output'];
|
|
4600
4724
|
submittedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4601
4725
|
submitter?: Maybe<Person>;
|
|
@@ -4628,6 +4752,7 @@ type StandardReviewTemplate = Template & {
|
|
|
4628
4752
|
questions: Array<StandardReviewTemplateQuestion>;
|
|
4629
4753
|
reviewerInstructions?: Maybe<Scalars['Markdown']['output']>;
|
|
4630
4754
|
subjectInstructions?: Maybe<Scalars['Markdown']['output']>;
|
|
4755
|
+
/** @deprecated Unused. */
|
|
4631
4756
|
templateParameters: Array<TemplateParameter>;
|
|
4632
4757
|
updatedAt: Scalars['DateTime']['output'];
|
|
4633
4758
|
};
|
|
@@ -4719,6 +4844,7 @@ type TaskTemplate = Template & {
|
|
|
4719
4844
|
name: Scalars['String']['output'];
|
|
4720
4845
|
org: Org;
|
|
4721
4846
|
paperworkSummaries: Array<PaperworkSummary>;
|
|
4847
|
+
/** @deprecated Unused. */
|
|
4722
4848
|
templateParameters: Array<TemplateParameter>;
|
|
4723
4849
|
updatedAt: Scalars['DateTime']['output'];
|
|
4724
4850
|
};
|
|
@@ -4750,14 +4876,18 @@ type Template = {
|
|
|
4750
4876
|
name: Scalars['String']['output'];
|
|
4751
4877
|
org: Org;
|
|
4752
4878
|
paperworkSummaries: Array<PaperworkSummary>;
|
|
4879
|
+
/** @deprecated Unused. */
|
|
4753
4880
|
templateParameters: Array<TemplateParameter>;
|
|
4754
4881
|
updatedAt: Scalars['DateTime']['output'];
|
|
4755
4882
|
};
|
|
4756
4883
|
type TemplateInput = {
|
|
4884
|
+
/** Only used by document templates. */
|
|
4885
|
+
fields?: InputMaybe<Array<DocumentFieldInput>>;
|
|
4757
4886
|
/** ID of the assignment to create from this template. */
|
|
4758
4887
|
id: Scalars['ID']['input'];
|
|
4759
4888
|
templateId: Scalars['ID']['input'];
|
|
4760
|
-
|
|
4889
|
+
/** @deprecated Use 'fields' instead. */
|
|
4890
|
+
templateParameters?: InputMaybe<Array<TemplateParameterInput>>;
|
|
4761
4891
|
};
|
|
4762
4892
|
type TemplateParameter = {
|
|
4763
4893
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -4804,6 +4934,30 @@ type TemplateParameterValue = {
|
|
|
4804
4934
|
person?: Maybe<Person>;
|
|
4805
4935
|
string?: Maybe<Scalars['String']['output']>;
|
|
4806
4936
|
};
|
|
4937
|
+
type TextDocumentField = DocumentField & {
|
|
4938
|
+
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
4939
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4940
|
+
id: Scalars['String']['output'];
|
|
4941
|
+
isRequired: Scalars['Boolean']['output'];
|
|
4942
|
+
label: Scalars['String']['output'];
|
|
4943
|
+
prefix?: Maybe<Scalars['String']['output']>;
|
|
4944
|
+
responder: DocumentFieldResponder;
|
|
4945
|
+
suffix?: Maybe<Scalars['String']['output']>;
|
|
4946
|
+
};
|
|
4947
|
+
type TextDocumentFieldConfigInput = {
|
|
4948
|
+
defaultValue?: InputMaybe<Scalars['String']['input']>;
|
|
4949
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4950
|
+
id: Scalars['ID']['input'];
|
|
4951
|
+
isRequired: Scalars['Boolean']['input'];
|
|
4952
|
+
label: Scalars['String']['input'];
|
|
4953
|
+
prefix?: InputMaybe<Scalars['String']['input']>;
|
|
4954
|
+
responder: DocumentFieldResponder;
|
|
4955
|
+
suffix?: InputMaybe<Scalars['String']['input']>;
|
|
4956
|
+
};
|
|
4957
|
+
type TextDocumentFieldInput = {
|
|
4958
|
+
id: Scalars['ID']['input'];
|
|
4959
|
+
value: Scalars['String']['input'];
|
|
4960
|
+
};
|
|
4807
4961
|
type User = {
|
|
4808
4962
|
/**
|
|
4809
4963
|
* Organisations this user is eligible to join. Currently, an organisation will be included in this list if the user is not yet part of that organisation and has an account owner or account manager role in another organisation in the same account.
|
|
@@ -5330,6 +5484,7 @@ type GetPeopleQuery = {
|
|
|
5330
5484
|
personalEmail?: string | null;
|
|
5331
5485
|
personalPhone?: string | null;
|
|
5332
5486
|
profileEmail?: string | null;
|
|
5487
|
+
profilePhone?: string | null;
|
|
5333
5488
|
residencyStatus?: TaxResidencyStatus | null;
|
|
5334
5489
|
residentialAddressCity?: string | null;
|
|
5335
5490
|
residentialAddressCountry?: string | null;
|
|
@@ -5461,6 +5616,72 @@ type InitializeIntegrationMutation = {
|
|
|
5461
5616
|
id: string;
|
|
5462
5617
|
};
|
|
5463
5618
|
};
|
|
5619
|
+
type UpdatePersonMutationVariables = Exact<{
|
|
5620
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
5621
|
+
employeeCode?: InputMaybe<Scalars['String']['input']>;
|
|
5622
|
+
personId: Scalars['ID']['input'];
|
|
5623
|
+
profileEmail?: InputMaybe<Scalars['String']['input']>;
|
|
5624
|
+
profilePhone?: InputMaybe<Scalars['String']['input']>;
|
|
5625
|
+
}>;
|
|
5626
|
+
type UpdatePersonMutation = {
|
|
5627
|
+
updatePerson: {
|
|
5628
|
+
bankAccount1Allocation?: string | null;
|
|
5629
|
+
bankAccount1AllocationMethod?: AllocationMethod | null;
|
|
5630
|
+
bankAccount1Bsb?: string | null;
|
|
5631
|
+
bankAccount1Name?: string | null;
|
|
5632
|
+
bankAccount1Number?: string | null;
|
|
5633
|
+
bankAccount2Allocation?: string | null;
|
|
5634
|
+
bankAccount2AllocationMethod?: AllocationMethod | null;
|
|
5635
|
+
bankAccount2Bsb?: string | null;
|
|
5636
|
+
bankAccount2Name?: string | null;
|
|
5637
|
+
bankAccount2Number?: string | null;
|
|
5638
|
+
bankAccount3Allocation?: string | null;
|
|
5639
|
+
bankAccount3AllocationMethod?: AllocationMethod | null;
|
|
5640
|
+
bankAccount3Bsb?: string | null;
|
|
5641
|
+
bankAccount3Name?: string | null;
|
|
5642
|
+
bankAccount3Number?: string | null;
|
|
5643
|
+
bankAccount4Allocation?: string | null;
|
|
5644
|
+
bankAccount4AllocationMethod?: AllocationMethod | null;
|
|
5645
|
+
bankAccount4Bsb?: string | null;
|
|
5646
|
+
bankAccount4Name?: string | null;
|
|
5647
|
+
bankAccount4Number?: string | null;
|
|
5648
|
+
bankAccount5Allocation?: string | null;
|
|
5649
|
+
bankAccount5AllocationMethod?: AllocationMethod | null;
|
|
5650
|
+
bankAccount5Bsb?: string | null;
|
|
5651
|
+
bankAccount5Name?: string | null;
|
|
5652
|
+
bankAccount5Number?: string | null;
|
|
5653
|
+
dateOfBirth?: string | null;
|
|
5654
|
+
displayName: string;
|
|
5655
|
+
employeeCode?: string | null;
|
|
5656
|
+
endDate?: string | null;
|
|
5657
|
+
familyName?: string | null;
|
|
5658
|
+
gender?: Gender | null;
|
|
5659
|
+
givenName?: string | null;
|
|
5660
|
+
hasLoanOrStudentDebt?: boolean | null;
|
|
5661
|
+
id: string;
|
|
5662
|
+
otherGivenNames?: string | null;
|
|
5663
|
+
personalEmail?: string | null;
|
|
5664
|
+
personalPhone?: string | null;
|
|
5665
|
+
profileEmail?: string | null;
|
|
5666
|
+
profilePhone?: string | null;
|
|
5667
|
+
residencyStatus?: TaxResidencyStatus | null;
|
|
5668
|
+
residentialAddressCity?: string | null;
|
|
5669
|
+
residentialAddressCountry?: string | null;
|
|
5670
|
+
residentialAddressLine1?: string | null;
|
|
5671
|
+
residentialAddressLine2?: string | null;
|
|
5672
|
+
residentialAddressPostcode?: string | null;
|
|
5673
|
+
residentialAddressState?: string | null;
|
|
5674
|
+
startDate?: string | null;
|
|
5675
|
+
superFund1MemberName?: string | null;
|
|
5676
|
+
superFund1MemberNumber?: string | null;
|
|
5677
|
+
superFund1Nomination?: SuperFundNomination | null;
|
|
5678
|
+
superFund1Usi?: string | null;
|
|
5679
|
+
taxFileNumber?: string | null;
|
|
5680
|
+
taxFileNumberExemption?: TaxFileNumberExemption | null;
|
|
5681
|
+
taxFreeThresholdClaimed?: boolean | null;
|
|
5682
|
+
updatedAt: string;
|
|
5683
|
+
};
|
|
5684
|
+
};
|
|
5464
5685
|
type UpdatePersonConnectionMutationVariables = Exact<{
|
|
5465
5686
|
personConnectionId: Scalars['ID']['input'];
|
|
5466
5687
|
personId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -5487,4 +5708,4 @@ type UpdatePersonConnectionMutation = {
|
|
|
5487
5708
|
};
|
|
5488
5709
|
};
|
|
5489
5710
|
|
|
5490
|
-
export { type Account, type AccountAppsArgs, type AccountFeatures, type AccountFeaturesInput, AccountFlag, type ActivateIntegrationMutation, type ActivateIntegrationMutationVariables, AllocationMethod, type AnniversaryEvent, type ApiToken, type App, AppCategory, type AppConfig, type AppConfigWebhooks, AppStatus, type AppendIntegrationLogMutation, type AppendIntegrationLogMutationVariables, type Approval, ApprovalStatus, type Archivable, type Assignment, type AssignmentNotification, type AssignmentNotificationsArgs, AssignmentRelation, AssignmentStatus, AssignmentType, AuthMethod, AuthProvider, AuthState, type AuthorizeIntegrationMutation, type AuthorizeIntegrationMutationVariables, type BasicAbnForm, type BasicAbnFormNotificationsArgs, type BasicAbnFormTemplate, type BasicBankAccountForm, type BasicBankAccountFormNotificationsArgs, type BasicBankAccountFormTemplate, type BasicEmergencyContactForm, type BasicEmergencyContactFormNotificationsArgs, type BasicEmergencyContactFormTemplate, type BasicPersonalDetailsForm, type BasicPersonalDetailsFormNotificationsArgs, type BasicPersonalDetailsFormTemplate, type BasicPreEmploymentForm, type BasicPreEmploymentFormNotificationsArgs, type BasicPreEmploymentFormTemplate, type BasicSuperForm, type BasicSuperFormNotificationsArgs, type BasicSuperFormTemplate, type BasicTaxForm, type BasicTaxFormNotificationsArgs, type BasicTaxFormTemplate, type Birthday, type BirthdayEvent, type BirthdayInput, type Bundle, type BundledPerson, type BundledTemplate, type BundledTemplateInput, type Certificate, type CertificateNotificationsArgs, CertificateProof, type CertificateTemplate, type CompleteSyncMutation, type CompleteSyncMutationVariables, type ConnectionRemote, type ConnectionRemoteInput, ConnectionStatus, type CreateApiTokenMutation, type CreateApiTokenMutationVariables, type CreateDataImportMutation, type CreateDataImportMutationVariables, type CreatePersonConnectionMutation, type CreatePersonConnectionMutationVariables, type CreatePersonDataImportLineMutation, type CreatePersonDataImportLineMutationVariables, type DataExport, DataExportType, type DataImport, type DataImportLine, type DeleteApiTokenMutation, type DeleteApiTokenMutationVariables, type DeletePersonConnectionMutation, type DeletePersonConnectionMutationVariables, type Department, type Document, type DocumentField, type DocumentFieldConfigInput, type DocumentFieldInput, DocumentFieldType, type DocumentNotificationsArgs, type DocumentTemplate, type EmailNotificationSettings, type EmailNotificationSettingsInput, type Exact, ExpiryStatus, FieldPresence, type Form, type FormNotificationsArgs, FormOrderBy, FormType, Gender, type GenericIntegration, type GetApiTokensQuery, type GetApiTokensQueryVariables, type GetIntegrationQuery, type GetIntegrationQueryVariables, type GetMyAppsQuery, type GetMyAppsQueryVariables, type GetPeopleQuery, type GetPeopleQueryVariables, type GetPersonConnectionsQuery, type GetPersonConnectionsQueryVariables, type Incremental, type InitializeIntegrationMutation, type InitializeIntegrationMutationVariables, type InputMaybe, type Integration, type IntegrationConnection, type IntegrationFeatures, type IntegrationLog, type IntegrationLogInput, IntegrationStatus, type IntegrationSync, type IntegrationSyncEvent, IntegrationSyncEventType, IntegrationSyncStatus, IntegrationType, type Job, JobStatus, type KeypayBusiness, type KeypayEmployee, type KeypayEmployeeForm, type KeypayEmployeeFormNotificationsArgs, type KeypayEmployeeFormTemplate, KeypayEmployeeStatus, KeypayEmploymentType, KeypayGender, type KeypayIntegration, type KeypayLeaveEmployee, type KeypayLeaveIntegration, type LeaveBalance, type LeaveCategory, type LeaveCategoryInput, type LeaveHoursEstimate, type LeaveRequest, type LeaveRequestNotification, type LeaveRequestNotificationsArgs, LeaveRequestStatus, type Location, type Login, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Media, type Mutation, type MutationAcceptLoginArgs, type MutationActivateIntegrationArgs, type MutationActivatePersonArgs, type MutationAddPeopleToBundlesArgs, type MutationAddPeopleToTagsArgs, type MutationAppendIntegrationLogArgs, type MutationApproveAssignmentArgs, type MutationApproveKeypayLeaveLeaveRequestArgs, type MutationApproveLeaveRequestArgs, type MutationApproveXeroLeaveRequestArgs, type MutationArchiveAssignmentArgs, type MutationArchiveBundleArgs, type MutationArchiveIntegrationArgs, type MutationArchiveNotesArgs, type MutationArchiveOrgArgs, type MutationArchivePersonArgs, type MutationArchiveReviewCycleArgs, type MutationArchiveSavedQuestionArgs, type MutationArchiveStandardReviewArgs, type MutationArchiveStandardReviewTemplateArgs, type MutationArchiveTemplateArgs, type MutationAssignAssignmentsArgs, type MutationAssignBasicAbnFormArgs, type MutationAssignBasicBankAccountFormArgs, type MutationAssignBasicEmergencyContactFormArgs, type MutationAssignBasicPersonalDetailsFormArgs, type MutationAssignBasicPreEmploymentFormArgs, type MutationAssignBasicSuperFormArgs, type MutationAssignBasicTaxFormArgs, type MutationAssignCertificateArgs, type MutationAssignDocumentArgs, type MutationAssignKeypayEmployeeFormArgs, type MutationAssignQuestionnaireArgs, type MutationAssignStandardReviewArgs, type MutationAssignTaskArgs, type MutationAuthorizeIntegrationArgs, type MutationCancelLeaveRequestArgs, type MutationCompleteIntegrationSyncArgs, type MutationCompletePasswordResetArgs, type MutationConfirmEmailArgs, type MutationConfirmProfileArgs, type MutationConfirmProviderArgs, type MutationCreateAccountArgs, type MutationCreateApiTokenArgs, type MutationCreateAssignmentsArgs, type MutationCreateBasicAbnFormArgs, type MutationCreateBasicAbnFormTemplateArgs, type MutationCreateBasicBankAccountFormArgs, type MutationCreateBasicBankAccountFormTemplateArgs, type MutationCreateBasicEmergencyContactFormArgs, type MutationCreateBasicEmergencyContactFormTemplateArgs, type MutationCreateBasicPersonalDetailsFormArgs, type MutationCreateBasicPersonalDetailsFormTemplateArgs, type MutationCreateBasicPreEmploymentFormArgs, type MutationCreateBasicPreEmploymentFormTemplateArgs, type MutationCreateBasicSuperFormArgs, type MutationCreateBasicSuperFormTemplateArgs, type MutationCreateBasicTaxFormArgs, type MutationCreateBasicTaxFormTemplateArgs, type MutationCreateBundleArgs, type MutationCreateBundledPersonArgs, type MutationCreateCertificateArgs, type MutationCreateCertificateTemplateArgs, type MutationCreateDataExportArgs, type MutationCreateDataImportArgs, type MutationCreateDocumentArgs, type MutationCreateDocumentTemplateArgs, type MutationCreateIntegrationArgs, type MutationCreateIntegrationLogArgs, type MutationCreateJobArgs, type MutationCreateKeypayEmployeeFormArgs, type MutationCreateKeypayEmployeeFormTemplateArgs, type MutationCreateKeypayLeaveLeaveRequestArgs, type MutationCreateLeaveRequestArgs, type MutationCreateLocalPersonConnectionsArgs, type MutationCreateLocationArgs, type MutationCreateLoginArgs, type MutationCreateManualDataImportArgs, type MutationCreateNoteArgs, type MutationCreateOrgArgs, type MutationCreatePersonArgs, type MutationCreatePersonConnectionArgs, type MutationCreatePersonDataImportLineArgs, type MutationCreatePositionArgs, type MutationCreateQuestionnaireArgs, type MutationCreateQuestionnaireTemplateArgs, type MutationCreateReviewCycleArgs, type MutationCreateSavedQuestionArgs, type MutationCreateStandaloneCertificateArgs, type MutationCreateStandaloneDocumentArgs, type MutationCreateStandaloneQuestionnaireArgs, type MutationCreateStandaloneStandardReviewArgs, type MutationCreateStandaloneTaskArgs, type MutationCreateStandardReviewArgs, type MutationCreateStandardReviewQuestionArgs, type MutationCreateStandardReviewTemplateArgs, type MutationCreateStandardReviewTemplateQuestionArgs, type MutationCreateTagArgs, type MutationCreateTagsArgs, type MutationCreateTaskArgs, type MutationCreateTaskTemplateArgs, type MutationCreateXeroLeaveRequestArgs, type MutationDeleteApiTokenArgs, type MutationDeleteBundledPersonArgs, type MutationDeleteJobArgs, type MutationDeleteLeaveRequestArgs, type MutationDeleteLoginArgs, type MutationDeletePersonConnectionArgs, type MutationDeletePersonConnectionsArgs, type MutationDeletePositionArgs, type MutationDeleteStandardReviewQuestionArgs, type MutationDeleteStandardReviewTemplateQuestionArgs, type MutationDeleteTagArgs, type MutationDenyKeypayLeaveLeaveRequestArgs, type MutationDenyLeaveRequestArgs, type MutationDenyXeroLeaveRequestArgs, type MutationDuplicateTemplateArgs, type MutationInitializeIntegrationArgs, type MutationInvitePersonArgs, type MutationJoinOrgArgs, type MutationLogInArgs, type MutationLogInWithProviderArgs, type MutationMarkNotificationsReadArgs, type MutationMarkNotificationsUnreadArgs, type MutationPauseIntegrationArgs, type MutationProcessAssignmentArgs, type MutationProcessAssignmentsArgs, type MutationProcessLeaveRequestArgs, type MutationProcessStandardReviewArgs, type MutationReassignAssignmentArgs, type MutationReassignCertificateArgs, type MutationReassignTaskArgs, type MutationReinviteLoginArgs, type MutationRemovePeopleFromBundlesArgs, type MutationRemovePeopleFromTagsArgs, type MutationRequestApprovalsArgs, type MutationRequestPasswordResetArgs, type MutationResetXeroAuIntegrationArgs, type MutationRestoreAssignmentArgs, type MutationRestoreBundleArgs, type MutationRestoreIntegrationArgs, type MutationRestoreNotesArgs, type MutationRestorePersonArgs, type MutationRestoreReviewCycleArgs, type MutationRestoreSavedQuestionArgs, type MutationRestoreStandardReviewArgs, type MutationRestoreStandardReviewTemplateArgs, type MutationRestoreTemplateArgs, type MutationScheduleStandardReviewArgs, type MutationSetActiveLoginArgs, type MutationSignUpArgs, type MutationSubmitBasicAbnFormArgs, type MutationSubmitBasicBankAccountFormArgs, type MutationSubmitBasicEmergencyContactFormArgs, type MutationSubmitBasicPersonalDetailsFormArgs, type MutationSubmitBasicPreEmploymentFormArgs, type MutationSubmitBasicSuperFormArgs, type MutationSubmitBasicTaxFormArgs, type MutationSubmitCertificateArgs, type MutationSubmitDocumentArgs, type MutationSubmitKeypayEmployeeFormArgs, type MutationSubmitQuestionnaireArgs, type MutationSubmitStandardReviewArgs, type MutationSubmitStandardReviewQuestionArgs, type MutationSubmitTaskArgs, type MutationTerminatePersonArgs, type MutationTriggerIntegrationSyncArgs, type MutationUnmatchPersonConnectionsArgs, type MutationUnpauseIntegrationArgs, type MutationUnscheduleStandardReviewArgs, type MutationUpdateAccountArgs, type MutationUpdateAssignmentArgs, type MutationUpdateAssignmentsArgs, type MutationUpdateBasicAbnFormTemplateArgs, type MutationUpdateBasicBankAccountFormTemplateArgs, type MutationUpdateBasicEmergencyContactFormTemplateArgs, type MutationUpdateBasicPersonalDetailsFormTemplateArgs, type MutationUpdateBasicPreEmploymentFormTemplateArgs, type MutationUpdateBasicSuperFormTemplateArgs, type MutationUpdateBasicTaxFormTemplateArgs, type MutationUpdateBundleArgs, type MutationUpdateCertificateTemplateArgs, type MutationUpdateDocumentArgs, type MutationUpdateDocumentTemplateArgs, type MutationUpdateIntegrationArgs, type MutationUpdateJobArgs, type MutationUpdateKeypayEmployeeFormTemplateArgs, type MutationUpdateKeypayIntegrationArgs, type MutationUpdateKeypayLeaveIntegrationArgs, type MutationUpdateLocationArgs, type MutationUpdateNoteArgs, type MutationUpdateOnboardingAssignmentsArgs, type MutationUpdateOrgArgs, type MutationUpdatePaperworkAssignmentArgs, type MutationUpdatePersonArgs, type MutationUpdatePersonConnectionArgs, type MutationUpdatePositionArgs, type MutationUpdateQuestionnaireArgs, type MutationUpdateQuestionnaireTemplateArgs, type MutationUpdateReviewCycleArgs, type MutationUpdateSavedQuestionArgs, type MutationUpdateStandardReviewArgs, type MutationUpdateStandardReviewQuestionArgs, type MutationUpdateStandardReviewTemplateArgs, type MutationUpdateStandardReviewTemplateQuestionArgs, type MutationUpdateTagArgs, type MutationUpdateTaskArgs, type MutationUpdateTaskTemplateArgs, type MutationUpdateUserPasswordArgs, type MutationUpdateXeroAuIntegrationArgs, type Note, type Notification, NotificationType, type Org, type OrgBundlesArgs, type OrgFeatures, type OrgFeaturesInput, type OrgIntegrationsArgs, type OrgPeopleArgs, type OrgReviewCyclesArgs, type OrgSavedQuestionsArgs, type OrgTemplatesArgs, type PaperworkAssignment, type PaperworkAssignmentNotificationsArgs, type PaperworkSummary, PayPeriod, type Person, type PersonAssignmentsArgs, type PersonBankAccountsChange, type PersonBankAccountsChangeInput, type PersonCertificatesArgs, type PersonChange, type PersonConnection, type PersonConnectionLeaveHoursEstimateArgs, type PersonDataImportLine, type PersonDataTransferConfigInput, type PersonDateOfBirthChange, type PersonDateOfBirthChangeInput, type PersonDocumentsArgs, type PersonEmergencyContactsChange, type PersonEmergencyContactsChangeInput, type PersonFormsArgs, type PersonFullNameChange, type PersonFullNameChangeInput, type PersonGenderChange, type PersonGenderChangeInput, type PersonNotesArgs, type PersonNotificationsArgs, type PersonPersonalEmailChange, type PersonPersonalEmailChangeInput, type PersonPersonalPhoneChange, type PersonPersonalPhoneChangeInput, type PersonPostalAddressChange, type PersonPostalAddressChangeInput, type PersonQuestionnairesArgs, type PersonRemunerationChange, type PersonResidentialAddressChange, type PersonResidentialAddressChangeInput, type PersonReviewsArgs, PersonRole, PersonStatus, type PersonSuperFundsChange, type PersonSuperFundsChangeInput, type PersonTasksArgs, type PersonTaxDetailsChange, type PersonTaxDetailsChangeInput, type PersonTenureChange, type PersonTenureChangeInput, type Position, type Query, type QueryAccountArgs, type QueryAssignmentArgs, type QueryBasicAbnFormTemplateArgs, type QueryBasicBankAccountFormTemplateArgs, type QueryBasicEmergencyContactFormTemplateArgs, type QueryBasicPersonalDetailsFormTemplateArgs, type QueryBasicPreEmploymentFormTemplateArgs, type QueryBasicSuperFormTemplateArgs, type QueryBasicTaxFormTemplateArgs, type QueryBundleArgs, type QueryCertificateArgs, type QueryCertificateTemplateArgs, type QueryDataImportArgs, type QueryDataImportLineArgs, type QueryDocumentArgs, type QueryDocumentTemplateArgs, type QueryFormArgs, type QueryIntegrationArgs, type QueryJobArgs, type QueryKeypayEmployeeArgs, type QueryKeypayEmployeeFormTemplateArgs, type QueryKeypayLeaveEmployeeArgs, type QueryLeaveRequestArgs, type QueryNoteArgs, type QueryOrgArgs, type QueryPersonArgs, type QueryPersonConnectionArgs, type QueryQuestionnaireArgs, type QueryQuestionnaireTemplateArgs, type QueryReviewCycleArgs, type QuerySavedQuestionArgs, type QueryStandardReviewArgs, type QueryStandardReviewTemplateArgs, type QueryTaskArgs, type QueryTaskTemplateArgs, type QueryTemplateArgs, type QueryUserArgs, type Question, type QuestionConfig, type QuestionConfigInput, type QuestionLikert5Config, type QuestionLikert5ConfigInput, type QuestionLikert5Response, type QuestionLikert5ResponseInput, type QuestionMultipleChoiceConfig, type QuestionMultipleChoiceConfigInput, type QuestionMultipleChoiceOtherConfig, type QuestionMultipleChoiceOtherConfigInput, type QuestionMultipleChoiceOtherResponse, type QuestionMultipleChoiceOtherResponseInput, type QuestionMultipleChoiceResponse, type QuestionMultipleChoiceResponseInput, type QuestionResponse, type QuestionResponseInput, type QuestionTemplateInput, type QuestionTextConfig, type QuestionTextConfigInput, type QuestionTextResponse, type QuestionTextResponseInput, QuestionType, type Questionnaire, type QuestionnaireNotificationsArgs, type QuestionnaireQuestion, type QuestionnaireQuestionAnswerInput, type QuestionnaireQuestionInput, type QuestionnaireTemplate, type QuestionnaireTemplateQuestion, type ReviewCycle, type ReviewCycleReviewsArgs, ReviewRelation, type SavedQuestion, type Scalars, type Session, type SharedCalendarEvent, type StandardReview, type StandardReviewNotification, type StandardReviewNotificationsArgs, type StandardReviewQuestion, StandardReviewQuestionRespondent, type StandardReviewQuestionsArgs, StandardReviewStatus, type StandardReviewTemplate, type StandardReviewTemplateQuestion, SuperFundNomination, type Tag, TagColor, type TagInput, type Task, type TaskNotificationsArgs, type TaskTemplate, TaxEmploymentBasis, TaxFileNumberExemption, TaxResidencyStatus, type Template, type TemplateInput, type TemplateParameter, type TemplateParameterInput, type TemplateParameterInputValue, TemplateParameterType, type TemplateParameterValue, type UpdatePersonConnectionMutation, type UpdatePersonConnectionMutationVariables, type Upload, type User, type XeroAuBankAccount, type XeroAuEmployee, XeroAuEmploymentBasis, XeroAuGender, type XeroAuIntegration, XeroAuResidencyStatus, type XeroAuSuperFund, type XeroAuSuperMembership, XeroAuTfnExemptionType, type XeroLeaveEmployee, type XeroLeaveIntegration };
|
|
5711
|
+
export { type Account, type AccountAppsArgs, type AccountFeatures, type AccountFeaturesInput, AccountFlag, type ActivateIntegrationMutation, type ActivateIntegrationMutationVariables, AllocationMethod, type AnniversaryEvent, type ApiToken, type App, AppCategory, type AppConfig, type AppConfigWebhooks, AppStatus, type AppendIntegrationLogMutation, type AppendIntegrationLogMutationVariables, type Approval, ApprovalStatus, type Archivable, type Assignment, type AssignmentNotification, type AssignmentNotificationsArgs, AssignmentRelation, AssignmentStatus, AssignmentType, AuthMethod, AuthProvider, AuthState, type AuthorizeIntegrationMutation, type AuthorizeIntegrationMutationVariables, type BasicAbnForm, type BasicAbnFormNotificationsArgs, type BasicAbnFormTemplate, type BasicBankAccountForm, type BasicBankAccountFormNotificationsArgs, type BasicBankAccountFormTemplate, type BasicEmergencyContactForm, type BasicEmergencyContactFormNotificationsArgs, type BasicEmergencyContactFormTemplate, type BasicPersonalDetailsForm, type BasicPersonalDetailsFormNotificationsArgs, type BasicPersonalDetailsFormTemplate, type BasicPreEmploymentForm, type BasicPreEmploymentFormNotificationsArgs, type BasicPreEmploymentFormTemplate, type BasicSuperForm, type BasicSuperFormNotificationsArgs, type BasicSuperFormTemplate, type BasicTaxForm, type BasicTaxFormNotificationsArgs, type BasicTaxFormTemplate, type Birthday, type BirthdayEvent, type BirthdayInput, type Bundle, type BundledPerson, type BundledTemplate, type BundledTemplateInput, type Certificate, type CertificateNotificationsArgs, CertificateProof, type CertificateTemplate, type ChoiceDocumentField, type ChoiceDocumentFieldConfigInput, type ChoiceDocumentFieldConfigOptionInput, type ChoiceDocumentFieldInput, type ChoiceDocumentFieldOption, type ChoiceDocumentFieldOptionInput, type CompleteSyncMutation, type CompleteSyncMutationVariables, type ConnectionRemote, type ConnectionRemoteInput, ConnectionStatus, type CreateApiTokenMutation, type CreateApiTokenMutationVariables, type CreateDataImportMutation, type CreateDataImportMutationVariables, type CreatePersonConnectionMutation, type CreatePersonConnectionMutationVariables, type CreatePersonDataImportLineMutation, type CreatePersonDataImportLineMutationVariables, type DataExport, DataExportType, type DataImport, type DataImportLine, type DateDocumentField, type DateDocumentFieldConfigInput, type DateDocumentFieldInput, type DeleteApiTokenMutation, type DeleteApiTokenMutationVariables, type DeletePersonConnectionMutation, type DeletePersonConnectionMutationVariables, type Department, type Document, type DocumentField, type DocumentFieldConfigInput, type DocumentFieldInput, DocumentFieldResponder, type DocumentNotificationsArgs, type DocumentTemplate, type EmailNotificationSettings, type EmailNotificationSettingsInput, type Exact, ExpiryStatus, FieldPresence, type Form, type FormNotificationsArgs, FormOrderBy, FormType, Gender, type GenericIntegration, type GetApiTokensQuery, type GetApiTokensQueryVariables, type GetIntegrationQuery, type GetIntegrationQueryVariables, type GetMyAppsQuery, type GetMyAppsQueryVariables, type GetPeopleQuery, type GetPeopleQueryVariables, type GetPersonConnectionsQuery, type GetPersonConnectionsQueryVariables, type Incremental, type InitializeIntegrationMutation, type InitializeIntegrationMutationVariables, type InputMaybe, type Integration, type IntegrationConnection, type IntegrationFeatures, type IntegrationLog, type IntegrationLogInput, IntegrationStatus, type IntegrationSync, type IntegrationSyncEvent, IntegrationSyncEventType, IntegrationSyncStatus, IntegrationType, type Job, JobStatus, type KeypayBusiness, type KeypayEmployee, type KeypayEmployeeForm, type KeypayEmployeeFormNotificationsArgs, type KeypayEmployeeFormTemplate, KeypayEmployeeStatus, KeypayEmploymentType, KeypayGender, type KeypayIntegration, type KeypayLeaveEmployee, type KeypayLeaveIntegration, type LeaveBalance, type LeaveCategory, type LeaveCategoryInput, type LeaveHoursEstimate, type LeaveRequest, type LeaveRequestNotification, type LeaveRequestNotificationsArgs, LeaveRequestStatus, type Location, type Login, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Media, type MultiLineTextDocumentField, type MultiLineTextDocumentFieldConfigInput, type MultiLineTextDocumentFieldInput, type Mutation, type MutationAcceptLoginArgs, type MutationActivateIntegrationArgs, type MutationActivatePersonArgs, type MutationAddPeopleToBundlesArgs, type MutationAddPeopleToTagsArgs, type MutationAppendIntegrationLogArgs, type MutationApproveAssignmentArgs, type MutationApproveKeypayLeaveLeaveRequestArgs, type MutationApproveLeaveRequestArgs, type MutationApproveXeroLeaveRequestArgs, type MutationArchiveAssignmentArgs, type MutationArchiveBundleArgs, type MutationArchiveIntegrationArgs, type MutationArchiveNotesArgs, type MutationArchiveOrgArgs, type MutationArchivePersonArgs, type MutationArchiveReviewCycleArgs, type MutationArchiveSavedQuestionArgs, type MutationArchiveStandardReviewArgs, type MutationArchiveStandardReviewTemplateArgs, type MutationArchiveTemplateArgs, type MutationAssignAssignmentsArgs, type MutationAssignBasicAbnFormArgs, type MutationAssignBasicBankAccountFormArgs, type MutationAssignBasicEmergencyContactFormArgs, type MutationAssignBasicPersonalDetailsFormArgs, type MutationAssignBasicPreEmploymentFormArgs, type MutationAssignBasicSuperFormArgs, type MutationAssignBasicTaxFormArgs, type MutationAssignCertificateArgs, type MutationAssignDocumentArgs, type MutationAssignKeypayEmployeeFormArgs, type MutationAssignQuestionnaireArgs, type MutationAssignStandardReviewArgs, type MutationAssignTaskArgs, type MutationAuthorizeIntegrationArgs, type MutationCancelLeaveRequestArgs, type MutationCompleteIntegrationSyncArgs, type MutationCompletePasswordResetArgs, type MutationConfirmEmailArgs, type MutationConfirmProfileArgs, type MutationConfirmProviderArgs, type MutationCreateAccountArgs, type MutationCreateApiTokenArgs, type MutationCreateAssignmentsArgs, type MutationCreateBasicAbnFormArgs, type MutationCreateBasicAbnFormTemplateArgs, type MutationCreateBasicBankAccountFormArgs, type MutationCreateBasicBankAccountFormTemplateArgs, type MutationCreateBasicEmergencyContactFormArgs, type MutationCreateBasicEmergencyContactFormTemplateArgs, type MutationCreateBasicPersonalDetailsFormArgs, type MutationCreateBasicPersonalDetailsFormTemplateArgs, type MutationCreateBasicPreEmploymentFormArgs, type MutationCreateBasicPreEmploymentFormTemplateArgs, type MutationCreateBasicSuperFormArgs, type MutationCreateBasicSuperFormTemplateArgs, type MutationCreateBasicTaxFormArgs, type MutationCreateBasicTaxFormTemplateArgs, type MutationCreateBundleArgs, type MutationCreateBundledPersonArgs, type MutationCreateCertificateArgs, type MutationCreateCertificateTemplateArgs, type MutationCreateDataExportArgs, type MutationCreateDataImportArgs, type MutationCreateDocumentArgs, type MutationCreateDocumentTemplateArgs, type MutationCreateIntegrationArgs, type MutationCreateIntegrationLogArgs, type MutationCreateJobArgs, type MutationCreateKeypayEmployeeFormArgs, type MutationCreateKeypayEmployeeFormTemplateArgs, type MutationCreateKeypayLeaveLeaveRequestArgs, type MutationCreateLeaveRequestArgs, type MutationCreateLocalPersonConnectionsArgs, type MutationCreateLocationArgs, type MutationCreateLoginArgs, type MutationCreateManualDataImportArgs, type MutationCreateNoteArgs, type MutationCreateOrgArgs, type MutationCreatePersonArgs, type MutationCreatePersonConnectionArgs, type MutationCreatePersonDataImportLineArgs, type MutationCreatePositionArgs, type MutationCreateQuestionnaireArgs, type MutationCreateQuestionnaireTemplateArgs, type MutationCreateReviewCycleArgs, type MutationCreateSavedQuestionArgs, type MutationCreateStandaloneCertificateArgs, type MutationCreateStandaloneDocumentArgs, type MutationCreateStandaloneQuestionnaireArgs, type MutationCreateStandaloneStandardReviewArgs, type MutationCreateStandaloneTaskArgs, type MutationCreateStandardReviewArgs, type MutationCreateStandardReviewQuestionArgs, type MutationCreateStandardReviewTemplateArgs, type MutationCreateStandardReviewTemplateQuestionArgs, type MutationCreateTagArgs, type MutationCreateTagsArgs, type MutationCreateTaskArgs, type MutationCreateTaskTemplateArgs, type MutationCreateXeroLeaveRequestArgs, type MutationDeleteApiTokenArgs, type MutationDeleteBundledPersonArgs, type MutationDeleteJobArgs, type MutationDeleteLeaveRequestArgs, type MutationDeleteLoginArgs, type MutationDeletePersonConnectionArgs, type MutationDeletePersonConnectionsArgs, type MutationDeletePositionArgs, type MutationDeleteStandardReviewQuestionArgs, type MutationDeleteStandardReviewTemplateQuestionArgs, type MutationDeleteTagArgs, type MutationDenyKeypayLeaveLeaveRequestArgs, type MutationDenyLeaveRequestArgs, type MutationDenyXeroLeaveRequestArgs, type MutationDuplicateTemplateArgs, type MutationInitializeIntegrationArgs, type MutationInvitePersonArgs, type MutationJoinOrgArgs, type MutationLogInArgs, type MutationLogInWithProviderArgs, type MutationMarkNotificationsReadArgs, type MutationMarkNotificationsUnreadArgs, type MutationPauseIntegrationArgs, type MutationProcessAssignmentArgs, type MutationProcessAssignmentsArgs, type MutationProcessLeaveRequestArgs, type MutationProcessStandardReviewArgs, type MutationReassignAssignmentArgs, type MutationReassignCertificateArgs, type MutationReassignTaskArgs, type MutationReinviteLoginArgs, type MutationRemovePeopleFromBundlesArgs, type MutationRemovePeopleFromTagsArgs, type MutationRequestApprovalsArgs, type MutationRequestPasswordResetArgs, type MutationResetXeroAuIntegrationArgs, type MutationRestoreAssignmentArgs, type MutationRestoreBundleArgs, type MutationRestoreIntegrationArgs, type MutationRestoreNotesArgs, type MutationRestorePersonArgs, type MutationRestoreReviewCycleArgs, type MutationRestoreSavedQuestionArgs, type MutationRestoreStandardReviewArgs, type MutationRestoreStandardReviewTemplateArgs, type MutationRestoreTemplateArgs, type MutationScheduleStandardReviewArgs, type MutationSetActiveLoginArgs, type MutationSignUpArgs, type MutationSubmitBasicAbnFormArgs, type MutationSubmitBasicBankAccountFormArgs, type MutationSubmitBasicEmergencyContactFormArgs, type MutationSubmitBasicPersonalDetailsFormArgs, type MutationSubmitBasicPreEmploymentFormArgs, type MutationSubmitBasicSuperFormArgs, type MutationSubmitBasicTaxFormArgs, type MutationSubmitCertificateArgs, type MutationSubmitDocumentArgs, type MutationSubmitKeypayEmployeeFormArgs, type MutationSubmitQuestionnaireArgs, type MutationSubmitStandardReviewArgs, type MutationSubmitStandardReviewQuestionArgs, type MutationSubmitTaskArgs, type MutationTerminatePersonArgs, type MutationTriggerIntegrationSyncArgs, type MutationUnmatchPersonConnectionsArgs, type MutationUnpauseIntegrationArgs, type MutationUnscheduleStandardReviewArgs, type MutationUpdateAccountArgs, type MutationUpdateAssignmentArgs, type MutationUpdateAssignmentsArgs, type MutationUpdateBasicAbnFormTemplateArgs, type MutationUpdateBasicBankAccountFormTemplateArgs, type MutationUpdateBasicEmergencyContactFormTemplateArgs, type MutationUpdateBasicPersonalDetailsFormTemplateArgs, type MutationUpdateBasicPreEmploymentFormTemplateArgs, type MutationUpdateBasicSuperFormTemplateArgs, type MutationUpdateBasicTaxFormTemplateArgs, type MutationUpdateBundleArgs, type MutationUpdateCertificateTemplateArgs, type MutationUpdateDocumentArgs, type MutationUpdateDocumentTemplateArgs, type MutationUpdateIntegrationArgs, type MutationUpdateJobArgs, type MutationUpdateKeypayEmployeeFormTemplateArgs, type MutationUpdateKeypayIntegrationArgs, type MutationUpdateKeypayLeaveIntegrationArgs, type MutationUpdateLocationArgs, type MutationUpdateNoteArgs, type MutationUpdateOnboardingAssignmentsArgs, type MutationUpdateOrgArgs, type MutationUpdatePaperworkAssignmentArgs, type MutationUpdatePersonArgs, type MutationUpdatePersonConnectionArgs, type MutationUpdatePositionArgs, type MutationUpdateQuestionnaireArgs, type MutationUpdateQuestionnaireTemplateArgs, type MutationUpdateReviewCycleArgs, type MutationUpdateSavedQuestionArgs, type MutationUpdateStandardReviewArgs, type MutationUpdateStandardReviewQuestionArgs, type MutationUpdateStandardReviewTemplateArgs, type MutationUpdateStandardReviewTemplateQuestionArgs, type MutationUpdateTagArgs, type MutationUpdateTaskArgs, type MutationUpdateTaskTemplateArgs, type MutationUpdateUserPasswordArgs, type MutationUpdateXeroAuIntegrationArgs, type Note, type Notification, NotificationType, type Org, type OrgBundlesArgs, type OrgFeatures, type OrgFeaturesInput, type OrgIntegrationsArgs, type OrgPeopleArgs, type OrgReviewCyclesArgs, type OrgSavedQuestionsArgs, type OrgTemplatesArgs, type PaperworkAssignment, type PaperworkAssignmentNotificationsArgs, type PaperworkSummary, PayPeriod, type Person, type PersonAssignmentsArgs, type PersonBankAccountsChange, type PersonBankAccountsChangeInput, type PersonCertificatesArgs, type PersonChange, type PersonConnection, type PersonConnectionLeaveHoursEstimateArgs, type PersonDataImportLine, type PersonDataTransferConfigInput, type PersonDateOfBirthChange, type PersonDateOfBirthChangeInput, type PersonDocumentsArgs, type PersonEmergencyContactsChange, type PersonEmergencyContactsChangeInput, type PersonFormsArgs, type PersonFullNameChange, type PersonFullNameChangeInput, type PersonGenderChange, type PersonGenderChangeInput, type PersonNotesArgs, type PersonNotificationsArgs, type PersonPersonalEmailChange, type PersonPersonalEmailChangeInput, type PersonPersonalPhoneChange, type PersonPersonalPhoneChangeInput, type PersonPostalAddressChange, type PersonPostalAddressChangeInput, type PersonQuestionnairesArgs, type PersonRemunerationChange, type PersonResidentialAddressChange, type PersonResidentialAddressChangeInput, type PersonReviewsArgs, PersonRole, PersonStatus, type PersonSuperFundsChange, type PersonSuperFundsChangeInput, type PersonTasksArgs, type PersonTaxDetailsChange, type PersonTaxDetailsChangeInput, type PersonTenureChange, type PersonTenureChangeInput, type Position, type Query, type QueryAccountArgs, type QueryAssignmentArgs, type QueryBasicAbnFormTemplateArgs, type QueryBasicBankAccountFormTemplateArgs, type QueryBasicEmergencyContactFormTemplateArgs, type QueryBasicPersonalDetailsFormTemplateArgs, type QueryBasicPreEmploymentFormTemplateArgs, type QueryBasicSuperFormTemplateArgs, type QueryBasicTaxFormTemplateArgs, type QueryBundleArgs, type QueryCertificateArgs, type QueryCertificateTemplateArgs, type QueryDataImportArgs, type QueryDataImportLineArgs, type QueryDocumentArgs, type QueryDocumentTemplateArgs, type QueryFormArgs, type QueryIntegrationArgs, type QueryJobArgs, type QueryKeypayEmployeeArgs, type QueryKeypayEmployeeFormTemplateArgs, type QueryKeypayLeaveEmployeeArgs, type QueryLeaveRequestArgs, type QueryNoteArgs, type QueryOrgArgs, type QueryPersonArgs, type QueryPersonConnectionArgs, type QueryQuestionnaireArgs, type QueryQuestionnaireTemplateArgs, type QueryReviewCycleArgs, type QuerySavedQuestionArgs, type QueryStandardReviewArgs, type QueryStandardReviewTemplateArgs, type QueryTaskArgs, type QueryTaskTemplateArgs, type QueryTemplateArgs, type QueryUserArgs, type Question, type QuestionConfig, type QuestionConfigInput, type QuestionLikert5Config, type QuestionLikert5ConfigInput, type QuestionLikert5Response, type QuestionLikert5ResponseInput, type QuestionMultipleChoiceConfig, type QuestionMultipleChoiceConfigInput, type QuestionMultipleChoiceOtherConfig, type QuestionMultipleChoiceOtherConfigInput, type QuestionMultipleChoiceOtherResponse, type QuestionMultipleChoiceOtherResponseInput, type QuestionMultipleChoiceResponse, type QuestionMultipleChoiceResponseInput, type QuestionResponse, type QuestionResponseInput, type QuestionTemplateInput, type QuestionTextConfig, type QuestionTextConfigInput, type QuestionTextResponse, type QuestionTextResponseInput, QuestionType, type Questionnaire, type QuestionnaireNotificationsArgs, type QuestionnaireQuestion, type QuestionnaireQuestionAnswerInput, type QuestionnaireQuestionInput, type QuestionnaireTemplate, type QuestionnaireTemplateQuestion, type ReviewCycle, type ReviewCycleReviewsArgs, ReviewRelation, type SavedQuestion, type Scalars, type Session, type SharedCalendarEvent, type SignatureUploadDocumentField, type SignatureUploadDocumentFieldConfigInput, type SignatureUploadDocumentFieldInput, type SmartDocumentField, type SmartDocumentFieldConfigInput, type SmartDocumentFieldInput, SmartDocumentFieldType, type StandardReview, type StandardReviewNotification, type StandardReviewNotificationsArgs, type StandardReviewQuestion, StandardReviewQuestionRespondent, type StandardReviewQuestionsArgs, StandardReviewStatus, type StandardReviewTemplate, type StandardReviewTemplateQuestion, SuperFundNomination, type Tag, TagColor, type TagInput, type Task, type TaskNotificationsArgs, type TaskTemplate, TaxEmploymentBasis, TaxFileNumberExemption, TaxResidencyStatus, type Template, type TemplateInput, type TemplateParameter, type TemplateParameterInput, type TemplateParameterInputValue, TemplateParameterType, type TemplateParameterValue, type TextDocumentField, type TextDocumentFieldConfigInput, type TextDocumentFieldInput, type UpdatePersonConnectionMutation, type UpdatePersonConnectionMutationVariables, type UpdatePersonMutation, type UpdatePersonMutationVariables, type Upload, type User, type XeroAuBankAccount, type XeroAuEmployee, XeroAuEmploymentBasis, XeroAuGender, type XeroAuIntegration, XeroAuResidencyStatus, type XeroAuSuperFund, type XeroAuSuperMembership, XeroAuTfnExemptionType, type XeroLeaveEmployee, type XeroLeaveIntegration };
|
package/dist/api/_generated.js
CHANGED
|
@@ -94,17 +94,12 @@ var DataExportType = /* @__PURE__ */ ((DataExportType2) => {
|
|
|
94
94
|
DataExportType2["PeopleSummaryFull"] = "PEOPLE_SUMMARY_FULL";
|
|
95
95
|
return DataExportType2;
|
|
96
96
|
})(DataExportType || {});
|
|
97
|
-
var
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
DocumentFieldType2["TemplateDate"] = "TEMPLATE_DATE";
|
|
104
|
-
DocumentFieldType2["TemplateText"] = "TEMPLATE_TEXT";
|
|
105
|
-
DocumentFieldType2["Text"] = "TEXT";
|
|
106
|
-
return DocumentFieldType2;
|
|
107
|
-
})(DocumentFieldType || {});
|
|
97
|
+
var DocumentFieldResponder = /* @__PURE__ */ ((DocumentFieldResponder2) => {
|
|
98
|
+
DocumentFieldResponder2["Assigner"] = "ASSIGNER";
|
|
99
|
+
DocumentFieldResponder2["None"] = "NONE";
|
|
100
|
+
DocumentFieldResponder2["Submitter"] = "SUBMITTER";
|
|
101
|
+
return DocumentFieldResponder2;
|
|
102
|
+
})(DocumentFieldResponder || {});
|
|
108
103
|
var ExpiryStatus = /* @__PURE__ */ ((ExpiryStatus2) => {
|
|
109
104
|
ExpiryStatus2["Current"] = "CURRENT";
|
|
110
105
|
ExpiryStatus2["Expired"] = "EXPIRED";
|
|
@@ -247,6 +242,13 @@ var ReviewRelation = /* @__PURE__ */ ((ReviewRelation2) => {
|
|
|
247
242
|
ReviewRelation2["Subject"] = "SUBJECT";
|
|
248
243
|
return ReviewRelation2;
|
|
249
244
|
})(ReviewRelation || {});
|
|
245
|
+
var SmartDocumentFieldType = /* @__PURE__ */ ((SmartDocumentFieldType2) => {
|
|
246
|
+
SmartDocumentFieldType2["DateOfBirth"] = "DATE_OF_BIRTH";
|
|
247
|
+
SmartDocumentFieldType2["DisplayName"] = "DISPLAY_NAME";
|
|
248
|
+
SmartDocumentFieldType2["FullName"] = "FULL_NAME";
|
|
249
|
+
SmartDocumentFieldType2["StartDate"] = "START_DATE";
|
|
250
|
+
return SmartDocumentFieldType2;
|
|
251
|
+
})(SmartDocumentFieldType || {});
|
|
250
252
|
var StandardReviewQuestionRespondent = /* @__PURE__ */ ((StandardReviewQuestionRespondent2) => {
|
|
251
253
|
StandardReviewQuestionRespondent2["Reviewer"] = "REVIEWER";
|
|
252
254
|
StandardReviewQuestionRespondent2["Subject"] = "SUBJECT";
|
|
@@ -351,7 +353,7 @@ export {
|
|
|
351
353
|
CertificateProof,
|
|
352
354
|
ConnectionStatus,
|
|
353
355
|
DataExportType,
|
|
354
|
-
|
|
356
|
+
DocumentFieldResponder,
|
|
355
357
|
ExpiryStatus,
|
|
356
358
|
FieldPresence,
|
|
357
359
|
FormOrderBy,
|
|
@@ -372,6 +374,7 @@ export {
|
|
|
372
374
|
PersonStatus,
|
|
373
375
|
QuestionType,
|
|
374
376
|
ReviewRelation,
|
|
377
|
+
SmartDocumentFieldType,
|
|
375
378
|
StandardReviewQuestionRespondent,
|
|
376
379
|
StandardReviewStatus,
|
|
377
380
|
SuperFundNomination,
|