Skip to content

Commit 0df398e

Browse files
authored
feat(types) - update opeanpi types (#942)
* feat(types) - update opeanpi types * fix types
1 parent f73379f commit 0df398e

3 files changed

Lines changed: 2740 additions & 73 deletions

File tree

src/client/index.ts

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ export {
5454
getIndexLeavePoliciesDetails,
5555
getIndexLeavePoliciesSummary,
5656
getIndexOffboarding,
57+
getIndexPayItems,
5758
getIndexPayrollCalendar,
5859
getIndexPayrollRun,
5960
getIndexPayslip,
@@ -91,7 +92,9 @@ export {
9192
getShowEmployeeDocument,
9293
getShowEmployment,
9394
getShowEmploymentCustomFieldValue,
95+
getShowEmploymentEngagementAgreementDetails,
9496
getShowEmploymentOnboardingSteps,
97+
getShowEngagementAgreementDetailsCountry,
9598
getShowExpense,
9699
getShowFile,
97100
getShowFormCountry,
@@ -141,6 +144,7 @@ export {
141144
patchUpdateWorkAuthorizationRequest,
142145
patchUpdateWorkAuthorizationRequest2,
143146
postApproveCancellationRequest,
147+
postApproveRiskReserveProofOfPayment,
144148
postApproveTimesheet,
145149
postAutomatableContractAmendment,
146150
postBulkCreatePayItems,
@@ -195,11 +199,13 @@ export {
195199
postReportErrorsTelemetry,
196200
postSendBackTimesheet,
197201
postSignContractDocument,
202+
postSubmitRiskReserveProofOfPayment,
198203
postTerminateContractorOfRecordEmploymentSubscription,
199204
postTokenOAuth2Token,
200205
postTriggerWebhookCallback,
201206
postUpdateBenefitRenewalRequest,
202207
postUpdateCancelOnboarding,
208+
postUpdateEmploymentEngagementAgreementDetails,
203209
postUploadEmployeeFileFile,
204210
postVerifyIdentityVerification,
205211
putApproveContractAmendment,
@@ -385,6 +391,7 @@ export type {
385391
CreateProbationExtensionParams,
386392
CreateRecurringIncentiveParams,
387393
CreateRiskReserveParams,
394+
CreateRiskReserveProofOfPaymentParams,
388395
CreateSingleSelectCustomFieldDefinitionParams,
389396
CreateSsoConfigurationParams,
390397
CreateSsoConfigurationResponse,
@@ -466,6 +473,8 @@ export type {
466473
EmploymentCustomFieldValueJsonValue,
467474
EmploymentCustomFieldValueResponse,
468475
EmploymentDocument,
476+
EmploymentEngagementAgreementDetailsParams,
477+
EmploymentEngagementAgreementDetailsResponse,
469478
EmploymentFederalTaxesParams,
470479
EmploymentFullParams,
471480
EmploymentId,
@@ -481,6 +490,8 @@ export type {
481490
EmploymentStatus,
482491
EmploymentTermType,
483492
EmploymentUpdateParams,
493+
EngagementAgreementDetailsParamsDeu,
494+
EngagementAgreementDetailsResponse,
484495
ErrorResponse,
485496
Expense,
486497
ExpenseCategoryNode,
@@ -728,6 +739,11 @@ export type {
728739
GetIndexOffboardingErrors,
729740
GetIndexOffboardingResponse,
730741
GetIndexOffboardingResponses,
742+
GetIndexPayItemsData,
743+
GetIndexPayItemsError,
744+
GetIndexPayItemsErrors,
745+
GetIndexPayItemsResponse,
746+
GetIndexPayItemsResponses,
731747
GetIndexPayrollCalendarData,
732748
GetIndexPayrollCalendarError,
733749
GetIndexPayrollCalendarErrors,
@@ -909,6 +925,11 @@ export type {
909925
GetShowEmploymentCustomFieldValueResponse,
910926
GetShowEmploymentCustomFieldValueResponses,
911927
GetShowEmploymentData,
928+
GetShowEmploymentEngagementAgreementDetailsData,
929+
GetShowEmploymentEngagementAgreementDetailsError,
930+
GetShowEmploymentEngagementAgreementDetailsErrors,
931+
GetShowEmploymentEngagementAgreementDetailsResponse,
932+
GetShowEmploymentEngagementAgreementDetailsResponses,
912933
GetShowEmploymentError,
913934
GetShowEmploymentErrors,
914935
GetShowEmploymentOnboardingStepsData,
@@ -918,6 +939,11 @@ export type {
918939
GetShowEmploymentOnboardingStepsResponses,
919940
GetShowEmploymentResponse,
920941
GetShowEmploymentResponses,
942+
GetShowEngagementAgreementDetailsCountryData,
943+
GetShowEngagementAgreementDetailsCountryError,
944+
GetShowEngagementAgreementDetailsCountryErrors,
945+
GetShowEngagementAgreementDetailsCountryResponse,
946+
GetShowEngagementAgreementDetailsCountryResponses,
921947
GetShowExpenseData,
922948
GetShowExpenseError,
923949
GetShowExpenseErrors,
@@ -1097,6 +1123,7 @@ export type {
10971123
ListLeavePoliciesDetailsResponse,
10981124
ListLeavePoliciesSummaryResponse,
10991125
ListOffboardingResponse,
1126+
ListPayItemsResponse,
11001127
ListPayrollRunResponse,
11011128
ListPayslipsResponse,
11021129
ListPricingPlanPartnerTemplatesResponse,
@@ -1298,6 +1325,11 @@ export type {
12981325
PostApproveCancellationRequestErrors,
12991326
PostApproveCancellationRequestResponse,
13001327
PostApproveCancellationRequestResponses,
1328+
PostApproveRiskReserveProofOfPaymentData,
1329+
PostApproveRiskReserveProofOfPaymentError,
1330+
PostApproveRiskReserveProofOfPaymentErrors,
1331+
PostApproveRiskReserveProofOfPaymentResponse,
1332+
PostApproveRiskReserveProofOfPaymentResponses,
13011333
PostApproveTimesheetData,
13021334
PostApproveTimesheetError,
13031335
PostApproveTimesheetErrors,
@@ -1566,6 +1598,11 @@ export type {
15661598
PostSignContractDocumentErrors,
15671599
PostSignContractDocumentResponse,
15681600
PostSignContractDocumentResponses,
1601+
PostSubmitRiskReserveProofOfPaymentData,
1602+
PostSubmitRiskReserveProofOfPaymentError,
1603+
PostSubmitRiskReserveProofOfPaymentErrors,
1604+
PostSubmitRiskReserveProofOfPaymentResponse,
1605+
PostSubmitRiskReserveProofOfPaymentResponses,
15691606
PostTerminateContractorOfRecordEmploymentSubscriptionData,
15701607
PostTerminateContractorOfRecordEmploymentSubscriptionError,
15711608
PostTerminateContractorOfRecordEmploymentSubscriptionErrors,
@@ -1591,6 +1628,11 @@ export type {
15911628
PostUpdateCancelOnboardingErrors,
15921629
PostUpdateCancelOnboardingResponse,
15931630
PostUpdateCancelOnboardingResponses,
1631+
PostUpdateEmploymentEngagementAgreementDetailsData,
1632+
PostUpdateEmploymentEngagementAgreementDetailsError,
1633+
PostUpdateEmploymentEngagementAgreementDetailsErrors,
1634+
PostUpdateEmploymentEngagementAgreementDetailsResponse,
1635+
PostUpdateEmploymentEngagementAgreementDetailsResponses,
15941636
PostUploadEmployeeFileFileData,
15951637
PostUploadEmployeeFileFileError,
15961638
PostUploadEmployeeFileFileErrors,
@@ -1681,6 +1723,7 @@ export type {
16811723
ResignationOrTerminationOffboarding,
16821724
ResignationResponse,
16831725
ResourceErrorResponse,
1726+
RiskReserveProofOfPaymentResponse,
16841727
SalaryDecreaseDetails,
16851728
ScheduleId,
16861729
SdkErrorPayload,

0 commit comments

Comments
 (0)