@gusto/embedded-react-sdk 0.37.0 → 0.38.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +45 -0
- package/README.md +3 -0
- package/dist/UNSTABLE_Hooks.js +2 -2
- package/dist/assets/icons/filter-funnel.svg.js +10 -0
- package/dist/assets/icons/filter-funnel.svg.js.map +1 -0
- package/dist/components/Base/createCompoundContext.js.map +1 -1
- package/dist/components/Common/DataView/DataCards/DataCards.js +42 -36
- package/dist/components/Common/DataView/DataCards/DataCards.js.map +1 -1
- package/dist/components/Common/DateRangeFilter/DateRangeFilter.d.ts +17 -0
- package/dist/components/Common/DateRangeFilter/DateRangeFilter.js +100 -0
- package/dist/components/Common/DateRangeFilter/DateRangeFilter.js.map +1 -0
- package/dist/components/Common/DateRangeFilter/DateRangeFilter.module.scss.js +10 -0
- package/dist/components/Common/DateRangeFilter/DateRangeFilter.module.scss.js.map +1 -0
- package/dist/components/Common/DetailViewLayout/DetailViewLayout.d.ts +2 -0
- package/dist/components/Common/DetailViewLayout/DetailViewLayoutTypes.d.ts +40 -0
- package/dist/components/Common/DetailViewLayout/index.d.ts +3 -0
- package/dist/components/Common/Fields/CheckboxField/CheckboxField.js +26 -24
- package/dist/components/Common/Fields/CheckboxField/CheckboxField.js.map +1 -1
- package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.d.ts +1 -1
- package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.js +32 -30
- package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.js.map +1 -1
- package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.d.ts +1 -1
- package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.js +36 -34
- package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.js.map +1 -1
- package/dist/components/Common/Fields/DatePickerField/DatePickerField.d.ts +1 -1
- package/dist/components/Common/Fields/DatePickerField/DatePickerField.js +40 -38
- package/dist/components/Common/Fields/DatePickerField/DatePickerField.js.map +1 -1
- package/dist/components/Common/Fields/FileInputField/FileInputField.js +24 -22
- package/dist/components/Common/Fields/FileInputField/FileInputField.js.map +1 -1
- package/dist/components/Common/Fields/MultiSelectComboBoxField/MultiSelectComboBoxField.js +24 -22
- package/dist/components/Common/Fields/MultiSelectComboBoxField/MultiSelectComboBoxField.js.map +1 -1
- package/dist/components/Common/Fields/NumberInputField/NumberInputField.js +27 -25
- package/dist/components/Common/Fields/NumberInputField/NumberInputField.js.map +1 -1
- package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.d.ts +1 -1
- package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.js +34 -32
- package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.js.map +1 -1
- package/dist/components/Common/Fields/SelectField/SelectField.d.ts +1 -1
- package/dist/components/Common/Fields/SelectField/SelectField.js +34 -32
- package/dist/components/Common/Fields/SelectField/SelectField.js.map +1 -1
- package/dist/components/Common/Fields/SwitchField/SwitchField.js +26 -24
- package/dist/components/Common/Fields/SwitchField/SwitchField.js.map +1 -1
- package/dist/components/Common/Fields/TextAreaField/TextAreaField.js +24 -22
- package/dist/components/Common/Fields/TextAreaField/TextAreaField.js.map +1 -1
- package/dist/components/Common/Fields/TextInputField/TextInputField.js +26 -24
- package/dist/components/Common/Fields/TextInputField/TextInputField.js.map +1 -1
- package/dist/components/Common/Fields/hooks/useField.d.ts +3 -2
- package/dist/components/Common/Fields/hooks/useField.js +37 -33
- package/dist/components/Common/Fields/hooks/useField.js.map +1 -1
- package/dist/components/Common/FlowBreadcrumbs/FlowBreadcrumbs.js +21 -20
- package/dist/components/Common/FlowBreadcrumbs/FlowBreadcrumbs.js.map +1 -1
- package/dist/components/Common/FlowBreadcrumbs/FlowBreadcrumbsTypes.d.ts +5 -0
- package/dist/components/Common/FlowBreadcrumbs/breadcrumbTransitionHelpers.d.ts +1 -1
- package/dist/components/Common/FlowBreadcrumbs/breadcrumbTransitionHelpers.js +10 -8
- package/dist/components/Common/FlowBreadcrumbs/breadcrumbTransitionHelpers.js.map +1 -1
- package/dist/components/Common/ReorderableList/ReorderableList.js.map +1 -1
- package/dist/components/Common/SignatureForm/SignatureForm.js +10 -13
- package/dist/components/Common/SignatureForm/SignatureForm.js.map +1 -1
- package/dist/components/Common/SignatureForm/SignatureFormActions.js +6 -8
- package/dist/components/Common/SignatureForm/SignatureFormActions.js.map +1 -1
- package/dist/components/Common/SignatureForm/SignatureFormFields.js +11 -14
- package/dist/components/Common/SignatureForm/SignatureFormFields.js.map +1 -1
- package/dist/components/Common/UI/Breadcrumbs/Breadcrumbs.js +17 -17
- package/dist/components/Common/UI/Breadcrumbs/Breadcrumbs.js.map +1 -1
- package/dist/components/Common/UI/Breadcrumbs/BreadcrumbsTypes.d.ts +5 -0
- package/dist/components/Common/UI/Breadcrumbs/BreadcrumbsTypes.js.map +1 -1
- package/dist/components/Common/UI/Button/Button.js +33 -29
- package/dist/components/Common/UI/Button/Button.js.map +1 -1
- package/dist/components/Common/UI/Button/Button.module.scss.js +5 -3
- package/dist/components/Common/UI/Button/Button.module.scss.js.map +1 -1
- package/dist/components/Common/UI/Button/ButtonTypes.d.ts +4 -0
- package/dist/components/Common/UI/Button/ButtonTypes.js.map +1 -1
- package/dist/components/Common/UI/DatePicker/DatePicker.d.ts +1 -1
- package/dist/components/Common/UI/DatePicker/DatePicker.js +88 -69
- package/dist/components/Common/UI/DatePicker/DatePicker.js.map +1 -1
- package/dist/components/Common/UI/DatePicker/DatePickerTypes.d.ts +13 -0
- package/dist/components/Common/UI/DateRangePicker/DateRangePicker.d.ts +2 -0
- package/dist/components/Common/UI/DateRangePicker/DateRangePicker.js +74 -0
- package/dist/components/Common/UI/DateRangePicker/DateRangePicker.js.map +1 -0
- package/dist/components/Common/UI/DateRangePicker/DateRangePicker.module.scss.js +30 -0
- package/dist/components/Common/UI/DateRangePicker/DateRangePicker.module.scss.js.map +1 -0
- package/dist/components/Common/UI/DateRangePicker/DateRangePickerTypes.d.ts +14 -0
- package/dist/components/Common/UI/DateRangePicker/index.d.ts +2 -0
- package/dist/components/Common/UI/DescriptionList/DescriptionList.module.scss.js +2 -2
- package/dist/components/Common/UI/Heading/Heading.d.ts +1 -1
- package/dist/components/Common/UI/Heading/Heading.js +11 -9
- package/dist/components/Common/UI/Heading/Heading.js.map +1 -1
- package/dist/components/Common/UI/Heading/HeadingTypes.d.ts +1 -1
- package/dist/components/Common/UI/MultiSelectComboBox/MultiSelectComboBox.js +94 -80
- package/dist/components/Common/UI/MultiSelectComboBox/MultiSelectComboBox.js.map +1 -1
- package/dist/components/Common/UI/NumberInput/NumberInput.js +1 -1
- package/dist/components/Common/UI/NumberInput/NumberInput.js.map +1 -1
- package/dist/components/Common/index.d.ts +2 -0
- package/dist/components/Company/AssignSignatory/AssignSignatory.js +7 -10
- package/dist/components/Company/AssignSignatory/AssignSignatory.js.map +1 -1
- package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js +2 -4
- package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js.map +1 -1
- package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js +2 -3
- package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js.map +1 -1
- package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.js +6 -9
- package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.js.map +1 -1
- package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatoryForm.js +11 -12
- package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatoryForm.js.map +1 -1
- package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js +2 -3
- package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js.map +1 -1
- package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.js +5 -8
- package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.js.map +1 -1
- package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatoryForm.js +12 -13
- package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatoryForm.js.map +1 -1
- package/dist/components/Company/AssignSignatory/TitleSelect.js +2 -4
- package/dist/components/Company/AssignSignatory/TitleSelect.js.map +1 -1
- package/dist/components/Company/BankAccount/BankAccountForm/Actions.js +8 -9
- package/dist/components/Company/BankAccount/BankAccountForm/Actions.js.map +1 -1
- package/dist/components/Company/BankAccount/BankAccountForm/Form.js +4 -6
- package/dist/components/Company/BankAccount/BankAccountForm/Form.js.map +1 -1
- package/dist/components/Company/BankAccount/BankAccountList/Actions.js +2 -3
- package/dist/components/Company/BankAccount/BankAccountList/Actions.js.map +1 -1
- package/dist/components/Company/BankAccount/BankAccountVerify/Actions.js +6 -7
- package/dist/components/Company/BankAccount/BankAccountVerify/Actions.js.map +1 -1
- package/dist/components/Company/BankAccount/BankAccountVerify/Form.js +4 -6
- package/dist/components/Company/BankAccount/BankAccountVerify/Form.js.map +1 -1
- package/dist/components/Company/DocumentSigner/DocumentList/Actions.js +2 -3
- package/dist/components/Company/DocumentSigner/DocumentList/Actions.js.map +1 -1
- package/dist/components/Company/DocumentSigner/DocumentList/DocumentList.js +10 -13
- package/dist/components/Company/DocumentSigner/DocumentList/DocumentList.js.map +1 -1
- package/dist/components/Company/DocumentSigner/SignatureForm/SignatureForm.js +11 -14
- package/dist/components/Company/DocumentSigner/SignatureForm/SignatureForm.js.map +1 -1
- package/dist/components/Company/FederalTaxes/Actions.js +6 -7
- package/dist/components/Company/FederalTaxes/Actions.js.map +1 -1
- package/dist/components/Company/FederalTaxes/FederalTaxes.js +12 -15
- package/dist/components/Company/FederalTaxes/FederalTaxes.js.map +1 -1
- package/dist/components/Company/FederalTaxes/Form.js +4 -4
- package/dist/components/Company/Industry/Actions.js +7 -8
- package/dist/components/Company/Industry/Actions.js.map +1 -1
- package/dist/components/Company/Industry/Edit.js +2 -4
- package/dist/components/Company/Industry/Edit.js.map +1 -1
- package/dist/components/Company/Locations/LocationForm/Actions.js +6 -7
- package/dist/components/Company/Locations/LocationForm/Actions.js.map +1 -1
- package/dist/components/Company/Locations/LocationForm/Form.js +4 -6
- package/dist/components/Company/Locations/LocationForm/Form.js.map +1 -1
- package/dist/components/Company/Locations/LocationForm/LocationForm.js +14 -17
- package/dist/components/Company/Locations/LocationForm/LocationForm.js.map +1 -1
- package/dist/components/Company/Locations/LocationsList/Actions.js +2 -3
- package/dist/components/Company/Locations/LocationsList/Actions.js.map +1 -1
- package/dist/components/Company/Locations/LocationsList/List.js +9 -9
- package/dist/components/Company/Locations/LocationsList/LocationsList.js +6 -9
- package/dist/components/Company/Locations/LocationsList/LocationsList.js.map +1 -1
- package/dist/components/Company/OnboardingOverview/Completed.js +2 -3
- package/dist/components/Company/OnboardingOverview/Completed.js.map +1 -1
- package/dist/components/Company/OnboardingOverview/MissingRequirements.js +8 -9
- package/dist/components/Company/OnboardingOverview/MissingRequirements.js.map +1 -1
- package/dist/components/Company/OnboardingOverview/OnboardingOverview.js +6 -9
- package/dist/components/Company/OnboardingOverview/OnboardingOverview.js.map +1 -1
- package/dist/components/Company/PaySchedule/PaySchedule.js +66 -65
- package/dist/components/Company/PaySchedule/PaySchedule.js.map +1 -1
- package/dist/components/Company/PaySchedule/_parts/Actions.js +18 -19
- package/dist/components/Company/PaySchedule/_parts/Actions.js.map +1 -1
- package/dist/components/Company/PaySchedule/_parts/Edit.js +40 -37
- package/dist/components/Company/PaySchedule/_parts/Edit.js.map +1 -1
- package/dist/components/Company/PaySchedule/_parts/Head.js +8 -9
- package/dist/components/Company/PaySchedule/_parts/Head.js.map +1 -1
- package/dist/components/Company/PaySchedule/_parts/List.js +8 -8
- package/dist/components/Company/PaySchedule/usePaySchedule.d.ts +2 -0
- package/dist/components/Company/PaySchedule/usePaySchedule.js.map +1 -1
- package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js +2 -3
- package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js.map +1 -1
- package/dist/components/Company/StateTaxes/StateTaxesForm/StateTaxesForm.js.map +1 -1
- package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js +2 -3
- package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js.map +1 -1
- package/dist/components/Company/StateTaxes/StateTaxesList/List.js +2 -3
- package/dist/components/Company/StateTaxes/StateTaxesList/List.js.map +1 -1
- package/dist/components/Contractor/Address/Address.js +2 -5
- package/dist/components/Contractor/Address/Address.js.map +1 -1
- package/dist/components/Contractor/Address/Form.js +2 -4
- package/dist/components/Contractor/Address/Form.js.map +1 -1
- package/dist/components/Contractor/ContractorList/index.js +33 -33
- package/dist/components/Contractor/ContractorList/index.js.map +1 -1
- package/dist/components/Contractor/PaymentMethod/BankAccountForm.js +10 -12
- package/dist/components/Contractor/PaymentMethod/BankAccountForm.js.map +1 -1
- package/dist/components/Contractor/PaymentMethod/PaymentTypeForm.js +2 -4
- package/dist/components/Contractor/PaymentMethod/PaymentTypeForm.js.map +1 -1
- package/dist/components/Contractor/Payments/CreatePayment/CreatePayment.js.map +1 -1
- package/dist/components/Contractor/Payments/CreatePayment/CreatePaymentPresentation.js +10 -10
- package/dist/components/Contractor/Payments/CreatePayment/FastAchSubmissionBlockerBanner.js +17 -18
- package/dist/components/Contractor/Payments/CreatePayment/FastAchSubmissionBlockerBanner.js.map +1 -1
- package/dist/components/Contractor/Payments/PaymentHistory/PaymentHistoryPresentation.js +15 -15
- package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.js +2 -3
- package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.js.map +1 -1
- package/dist/components/Contractor/Profile/useContractorProfile.js +42 -40
- package/dist/components/Contractor/Profile/useContractorProfile.js.map +1 -1
- package/dist/components/Contractor/Submit/Submit.d.ts +2 -2
- package/dist/components/Contractor/Submit/Submit.js +45 -46
- package/dist/components/Contractor/Submit/Submit.js.map +1 -1
- package/dist/components/Employee/Compensation/Actions.js +12 -13
- package/dist/components/Employee/Compensation/Actions.js.map +1 -1
- package/dist/components/Employee/Compensation/Compensation.js.map +1 -1
- package/dist/components/Employee/Deductions/DeductionsForm/ChildSupportForm.js +49 -44
- package/dist/components/Employee/Deductions/DeductionsForm/ChildSupportForm.js.map +1 -1
- package/dist/components/Employee/Deductions/DeductionsForm/DeductionsForm.js.map +1 -1
- package/dist/components/Employee/Deductions/DeductionsList/DeductionsList.js +12 -12
- package/dist/components/Employee/Deductions/IncludeDeductions/IncludeDeductions.js +6 -7
- package/dist/components/Employee/Deductions/IncludeDeductions/IncludeDeductions.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js +2 -3
- package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.js +8 -11
- package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/DocumentList/List.js +2 -4
- package/dist/components/Employee/DocumentSigner/DocumentList/List.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/EmploymentEligibility/EmploymentEligibilityPresentation.js +6 -6
- package/dist/components/Employee/DocumentSigner/I9SignatureForm/I9SignatureForm.js +3 -4
- package/dist/components/Employee/DocumentSigner/I9SignatureForm/I9SignatureForm.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js +9 -12
- package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js.map +1 -1
- package/dist/components/Employee/EmployeeDocuments/EmployeeDocumentsPresentation.js +6 -7
- package/dist/components/Employee/EmployeeDocuments/EmployeeDocumentsPresentation.js.map +1 -1
- package/dist/components/Employee/EmployeeList/EmployeeList.d.ts +2 -5
- package/dist/components/Employee/EmployeeList/EmployeeList.js +45 -95
- package/dist/components/Employee/EmployeeList/EmployeeList.js.map +1 -1
- package/dist/components/Employee/EmployeeList/EmployeeListView.d.ts +15 -0
- package/dist/components/Employee/EmployeeList/EmployeeListView.js +132 -0
- package/dist/components/Employee/EmployeeList/EmployeeListView.js.map +1 -0
- package/dist/components/Employee/EmployeeList/ManagementEmployeeList.d.ts +9 -0
- package/dist/components/Employee/EmployeeList/ManagementEmployeeList.js +81 -0
- package/dist/components/Employee/EmployeeList/ManagementEmployeeList.js.map +1 -0
- package/dist/components/Employee/EmployeeList/ManagementEmployeeListView.d.ts +17 -0
- package/dist/components/Employee/EmployeeList/ManagementEmployeeListView.js +195 -0
- package/dist/components/Employee/EmployeeList/ManagementEmployeeListView.js.map +1 -0
- package/dist/components/Employee/EmployeeList/index.d.ts +3 -0
- package/dist/components/Employee/EmployeeList/useEmployeeList.d.ts +36 -23
- package/dist/components/Employee/EmployeeList/useEmployeeList.js +114 -19
- package/dist/components/Employee/EmployeeList/useEmployeeList.js.map +1 -1
- package/dist/components/Employee/FederalTaxes/Actions.js +5 -6
- package/dist/components/Employee/FederalTaxes/Actions.js.map +1 -1
- package/dist/components/Employee/FederalTaxes/FederalForm.js +4 -5
- package/dist/components/Employee/FederalTaxes/FederalForm.js.map +1 -1
- package/dist/components/Employee/OnboardingFlow/OnboardingFlow.js +4 -4
- package/dist/components/Employee/OnboardingFlow/OnboardingFlow.js.map +1 -1
- package/dist/components/Employee/OnboardingFlow/OnboardingFlowComponents.d.ts +1 -0
- package/dist/components/Employee/OnboardingFlow/OnboardingFlowComponents.js +14 -8
- package/dist/components/Employee/OnboardingFlow/OnboardingFlowComponents.js.map +1 -1
- package/dist/components/Employee/OnboardingFlow/onboardingStateMachine.js +10 -11
- package/dist/components/Employee/OnboardingFlow/onboardingStateMachine.js.map +1 -1
- package/dist/components/Employee/PaymentMethod/Actions.js +5 -6
- package/dist/components/Employee/PaymentMethod/Actions.js.map +1 -1
- package/dist/components/Employee/PaymentMethod/BankAccountEdit.js +2 -4
- package/dist/components/Employee/PaymentMethod/BankAccountEdit.js.map +1 -1
- package/dist/components/Employee/PaymentMethod/BankAccountsList.js +10 -10
- package/dist/components/Employee/PaymentMethod/BankAccountsList.js.map +1 -1
- package/dist/components/Employee/PaymentMethod/PaymentMethod.js +44 -43
- package/dist/components/Employee/PaymentMethod/PaymentMethod.js.map +1 -1
- package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js +5 -7
- package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js.map +1 -1
- package/dist/components/Employee/PaymentMethod/Split.js +4 -4
- package/dist/components/Employee/PaymentMethod/usePaymentMethod.d.ts +1 -0
- package/dist/components/Employee/PaymentMethod/usePaymentMethod.js.map +1 -1
- package/dist/components/Employee/Profile/Actions.js +5 -6
- package/dist/components/Employee/Profile/Actions.js.map +1 -1
- package/dist/components/Employee/Profile/AdminPersonalDetails.js +14 -15
- package/dist/components/Employee/Profile/AdminPersonalDetails.js.map +1 -1
- package/dist/components/Employee/Profile/HomeAddress.js +8 -9
- package/dist/components/Employee/Profile/HomeAddress.js.map +1 -1
- package/dist/components/Employee/Profile/PersonalDetailsInputs.js +8 -10
- package/dist/components/Employee/Profile/PersonalDetailsInputs.js.map +1 -1
- package/dist/components/Employee/Profile/Profile.js.map +1 -1
- package/dist/components/Employee/StateTaxes/Actions.js +5 -6
- package/dist/components/Employee/StateTaxes/Actions.js.map +1 -1
- package/dist/components/Employee/Taxes/Actions.js +6 -7
- package/dist/components/Employee/Taxes/Actions.js.map +1 -1
- package/dist/components/Employee/Taxes/FederalForm.js +4 -5
- package/dist/components/Employee/Taxes/FederalForm.js.map +1 -1
- package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployee.js +48 -48
- package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployee.js.map +1 -1
- package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployeePresentation.js +6 -7
- package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployeePresentation.js.map +1 -1
- package/dist/components/Employee/Terminations/TerminationFlow/TerminationFlowComponents.d.ts +1 -0
- package/dist/components/Employee/Terminations/TerminationFlow/TerminationFlowComponents.js +38 -33
- package/dist/components/Employee/Terminations/TerminationFlow/TerminationFlowComponents.js.map +1 -1
- package/dist/components/Employee/Terminations/TerminationFlow/terminationStateMachine.d.ts +1 -0
- package/dist/components/Employee/Terminations/TerminationFlow/terminationStateMachine.js +57 -45
- package/dist/components/Employee/Terminations/TerminationFlow/terminationStateMachine.js.map +1 -1
- package/dist/components/Employee/Terminations/TerminationSummary/TerminationSummaryPresentation.js +8 -9
- package/dist/components/Employee/Terminations/TerminationSummary/TerminationSummaryPresentation.js.map +1 -1
- package/dist/components/Employee/index.d.ts +1 -0
- package/dist/components/Employee/index.js +38 -36
- package/dist/components/Employee/index.js.map +1 -1
- package/dist/components/Flow/Flow.js +6 -7
- package/dist/components/Flow/Flow.js.map +1 -1
- package/dist/components/InformationRequests/InformationRequestForm/InformationRequestForm.js +1 -2
- package/dist/components/InformationRequests/InformationRequestForm/InformationRequestForm.js.map +1 -1
- package/dist/components/InformationRequests/InformationRequestList/InformationRequestList.js +10 -11
- package/dist/components/InformationRequests/InformationRequestList/InformationRequestList.js.map +1 -1
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsBanner/ConfirmWireDetailsBanner.js.map +1 -1
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsForm/ConfirmWireDetailsForm.js +0 -1
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsForm/ConfirmWireDetailsForm.js.map +1 -1
- package/dist/components/Payroll/Dismissal/DismissalFlow.js +14 -14
- package/dist/components/Payroll/Dismissal/DismissalFlow.js.map +1 -1
- package/dist/components/Payroll/Dismissal/DismissalFlowComponents.d.ts +2 -2
- package/dist/components/Payroll/Dismissal/DismissalFlowComponents.js +21 -20
- package/dist/components/Payroll/Dismissal/DismissalFlowComponents.js.map +1 -1
- package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelection.d.ts +2 -1
- package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelection.js +57 -55
- package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelection.js.map +1 -1
- package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelectionPresentation.js +2 -3
- package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelectionPresentation.js.map +1 -1
- package/dist/components/Payroll/GrossUpModal/GrossUpModal.d.ts +1 -1
- package/dist/components/Payroll/GrossUpModal/GrossUpModal.js +83 -71
- package/dist/components/Payroll/GrossUpModal/GrossUpModal.js.map +1 -1
- package/dist/components/Payroll/GrossUpModal/GrossUpModal.module.scss.js +7 -7
- package/dist/components/Payroll/GrossUpModal/GrossUpModalTypes.d.ts +0 -1
- package/dist/components/Payroll/OffCycle/OffCycleFlow.d.ts +1 -1
- package/dist/components/Payroll/OffCycle/OffCycleFlow.js +24 -18
- package/dist/components/Payroll/OffCycle/OffCycleFlow.js.map +1 -1
- package/dist/components/Payroll/OffCycle/OffCycleFlowComponents.d.ts +2 -0
- package/dist/components/Payroll/OffCycle/OffCycleFlowComponents.js +28 -22
- package/dist/components/Payroll/OffCycle/OffCycleFlowComponents.js.map +1 -1
- package/dist/components/Payroll/OffCycleCreation/OffCycleCreation.js +56 -53
- package/dist/components/Payroll/OffCycleCreation/OffCycleCreation.js.map +1 -1
- package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormPresentation.js +17 -23
- package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormPresentation.js.map +1 -1
- package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormTypes.js +2 -2
- package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormTypes.js.map +1 -1
- package/dist/components/Payroll/OffCycleReasonSelection/OffCycleReasonSelectionPresentation.js +2 -3
- package/dist/components/Payroll/OffCycleReasonSelection/OffCycleReasonSelectionPresentation.js.map +1 -1
- package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerAlerts.js +2 -3
- package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerAlerts.js.map +1 -1
- package/dist/components/Payroll/PayrollConfiguration/PayrollConfiguration.js +194 -190
- package/dist/components/Payroll/PayrollConfiguration/PayrollConfiguration.js.map +1 -1
- package/dist/components/Payroll/PayrollConfiguration/PayrollConfigurationPresentation.js +69 -69
- package/dist/components/Payroll/PayrollConfiguration/PayrollConfigurationPresentation.js.map +1 -1
- package/dist/components/Payroll/PayrollConfiguration/usePayrollConfigurationData.d.ts +2 -1
- package/dist/components/Payroll/PayrollConfiguration/usePayrollConfigurationData.js +102 -76
- package/dist/components/Payroll/PayrollConfiguration/usePayrollConfigurationData.js.map +1 -1
- package/dist/components/Payroll/PayrollEditEmployee/PayrollEditEmployeePresentation.d.ts +1 -1
- package/dist/components/Payroll/PayrollEditEmployee/PayrollEditEmployeePresentation.js +228 -231
- package/dist/components/Payroll/PayrollEditEmployee/PayrollEditEmployeePresentation.js.map +1 -1
- package/dist/components/Payroll/PayrollEditEmployee/PayrollEditEmployeePresentation.module.scss.js +7 -7
- package/dist/components/Payroll/PayrollEditEmployee/TimeOffField.d.ts +11 -0
- package/dist/components/Payroll/PayrollEditEmployee/TimeOffField.js +60 -25
- package/dist/components/Payroll/PayrollEditEmployee/TimeOffField.js.map +1 -1
- package/dist/components/Payroll/PayrollExecutionFlow/PayrollExecutionFlow.d.ts +2 -1
- package/dist/components/Payroll/PayrollExecutionFlow/PayrollExecutionFlow.js +43 -41
- package/dist/components/Payroll/PayrollExecutionFlow/PayrollExecutionFlow.js.map +1 -1
- package/dist/components/Payroll/PayrollExecutionFlow/index.d.ts +1 -1
- package/dist/components/Payroll/PayrollExecutionFlow/payrollExecutionMachine.d.ts +1 -1
- package/dist/components/Payroll/PayrollExecutionFlow/payrollExecutionMachine.js +62 -51
- package/dist/components/Payroll/PayrollExecutionFlow/payrollExecutionMachine.js.map +1 -1
- package/dist/components/Payroll/PayrollFlow/OffCycleFlowContextual.js +13 -6
- package/dist/components/Payroll/PayrollFlow/OffCycleFlowContextual.js.map +1 -1
- package/dist/components/Payroll/PayrollFlow/PayrollExecutionFlowContextual.js +22 -20
- package/dist/components/Payroll/PayrollFlow/PayrollExecutionFlowContextual.js.map +1 -1
- package/dist/components/Payroll/PayrollFlow/PayrollFlowComponents.d.ts +1 -0
- package/dist/components/Payroll/PayrollFlow/PayrollFlowComponents.js.map +1 -1
- package/dist/components/Payroll/PayrollFlow/TransitionFlowContextual.js +35 -14
- package/dist/components/Payroll/PayrollFlow/TransitionFlowContextual.js.map +1 -1
- package/dist/components/Payroll/PayrollFlow/payrollStateMachine.js +80 -69
- package/dist/components/Payroll/PayrollFlow/payrollStateMachine.js.map +1 -1
- package/dist/components/Payroll/PayrollHistory/PayrollHistory.d.ts +0 -1
- package/dist/components/Payroll/PayrollHistory/PayrollHistory.js +59 -66
- package/dist/components/Payroll/PayrollHistory/PayrollHistory.js.map +1 -1
- package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.d.ts +5 -4
- package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.js +96 -103
- package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.js.map +1 -1
- package/dist/components/Payroll/PayrollList/PayrollList.js +98 -64
- package/dist/components/Payroll/PayrollList/PayrollList.js.map +1 -1
- package/dist/components/Payroll/PayrollList/PayrollListPresentation.d.ts +9 -1
- package/dist/components/Payroll/PayrollList/PayrollListPresentation.js +211 -132
- package/dist/components/Payroll/PayrollList/PayrollListPresentation.js.map +1 -1
- package/dist/components/Payroll/PayrollList/PayrollListPresentation.module.scss.js +8 -6
- package/dist/components/Payroll/PayrollList/PayrollListPresentation.module.scss.js.map +1 -1
- package/dist/components/Payroll/PayrollOverview/PayrollOverview.js +55 -53
- package/dist/components/Payroll/PayrollOverview/PayrollOverview.js.map +1 -1
- package/dist/components/Payroll/PayrollOverview/PayrollOverviewPresentation.js +231 -222
- package/dist/components/Payroll/PayrollOverview/PayrollOverviewPresentation.js.map +1 -1
- package/dist/components/Payroll/PayrollOverview/SubmissionBlockers/FastAchSubmissionBlockerBanner.js +7 -8
- package/dist/components/Payroll/PayrollOverview/SubmissionBlockers/FastAchSubmissionBlockerBanner.js.map +1 -1
- package/dist/components/Payroll/RecoveryCases/RecoveryCasesList/RecoveryCasesList.js +2 -3
- package/dist/components/Payroll/RecoveryCases/RecoveryCasesList/RecoveryCasesList.js.map +1 -1
- package/dist/components/Payroll/RecoveryCases/RecoveryCasesResubmit/RecoveryCasesResubmit.js +7 -8
- package/dist/components/Payroll/RecoveryCases/RecoveryCasesResubmit/RecoveryCasesResubmit.js.map +1 -1
- package/dist/components/Payroll/RecoveryCases/useRecoveryCaseErrorCode.js +2 -3
- package/dist/components/Payroll/RecoveryCases/useRecoveryCaseErrorCode.js.map +1 -1
- package/dist/components/Payroll/Transition/TransitionFlow.d.ts +1 -1
- package/dist/components/Payroll/Transition/TransitionFlow.js +29 -27
- package/dist/components/Payroll/Transition/TransitionFlow.js.map +1 -1
- package/dist/components/Payroll/Transition/TransitionFlowComponents.d.ts +1 -0
- package/dist/components/Payroll/Transition/TransitionFlowComponents.js.map +1 -1
- package/dist/components/Payroll/TransitionPayrollAlert/TransitionPayrollAlertPresentation.js +44 -55
- package/dist/components/Payroll/TransitionPayrollAlert/TransitionPayrollAlertPresentation.js.map +1 -1
- package/dist/components/Payroll/helpers.d.ts +5 -0
- package/dist/components/Payroll/helpers.js +81 -74
- package/dist/components/Payroll/helpers.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataContext.d.ts +2 -2
- package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataContext.js +6 -9
- package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataContext.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataProvider.d.ts +1 -1
- package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataProvider.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/form/SDKFormProvider.d.ts +1 -2
- package/dist/components/UNSTABLE_Hooks/form/SDKFormProvider.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/form/deriveFieldsMetadata.d.ts +2 -2
- package/dist/components/UNSTABLE_Hooks/form/deriveFieldsMetadata.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/form/fields/CheckboxHookField.d.ts +3 -2
- package/dist/components/UNSTABLE_Hooks/form/fields/CheckboxHookField.js +24 -22
- package/dist/components/UNSTABLE_Hooks/form/fields/CheckboxHookField.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/form/fields/DatePickerHookField.d.ts +3 -2
- package/dist/components/UNSTABLE_Hooks/form/fields/DatePickerHookField.js +22 -17
- package/dist/components/UNSTABLE_Hooks/form/fields/DatePickerHookField.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/form/fields/NumberInputHookField.d.ts +3 -2
- package/dist/components/UNSTABLE_Hooks/form/fields/NumberInputHookField.js +32 -30
- package/dist/components/UNSTABLE_Hooks/form/fields/NumberInputHookField.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/form/fields/RadioGroupHookField.d.ts +3 -2
- package/dist/components/UNSTABLE_Hooks/form/fields/RadioGroupHookField.js +26 -24
- package/dist/components/UNSTABLE_Hooks/form/fields/RadioGroupHookField.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/form/fields/SelectHookField.d.ts +3 -2
- package/dist/components/UNSTABLE_Hooks/form/fields/SelectHookField.js +32 -30
- package/dist/components/UNSTABLE_Hooks/form/fields/SelectHookField.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/form/fields/SwitchHookField.d.ts +3 -2
- package/dist/components/UNSTABLE_Hooks/form/fields/SwitchHookField.js +24 -22
- package/dist/components/UNSTABLE_Hooks/form/fields/SwitchHookField.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/form/fields/TextInputHookField.d.ts +3 -2
- package/dist/components/UNSTABLE_Hooks/form/fields/TextInputHookField.js +29 -27
- package/dist/components/UNSTABLE_Hooks/form/fields/TextInputHookField.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/form/getFieldWithOptions.d.ts +1 -1
- package/dist/components/UNSTABLE_Hooks/form/getFieldWithOptions.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/form/index.d.ts +3 -1
- package/dist/components/UNSTABLE_Hooks/form/resolveFieldError.d.ts +4 -0
- package/dist/components/UNSTABLE_Hooks/form/resolveFieldError.js +13 -0
- package/dist/components/UNSTABLE_Hooks/form/resolveFieldError.js.map +1 -0
- package/dist/components/UNSTABLE_Hooks/form/useFieldErrorMessage.d.ts +1 -1
- package/dist/components/UNSTABLE_Hooks/form/useFieldErrorMessage.js +6 -6
- package/dist/components/UNSTABLE_Hooks/form/useFieldErrorMessage.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/form/useFieldsMetadata.d.ts +1 -1
- package/dist/components/UNSTABLE_Hooks/form/useFieldsMetadata.js +2 -3
- package/dist/components/UNSTABLE_Hooks/form/useFieldsMetadata.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/form/useHookFieldResolution.d.ts +22 -0
- package/dist/components/UNSTABLE_Hooks/form/useHookFieldResolution.js +11 -0
- package/dist/components/UNSTABLE_Hooks/form/useHookFieldResolution.js.map +1 -0
- package/dist/components/UNSTABLE_Hooks/form/withOptions.d.ts +1 -1
- package/dist/components/UNSTABLE_Hooks/form/withOptions.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/CompensationForm.js +2 -3
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/CompensationForm.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/compensationSchema.d.ts +4 -4
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/compensationSchema.js +86 -89
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/compensationSchema.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/fields.d.ts +1 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/fields.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/useCompensationForm.d.ts +10 -10
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/useCompensationForm.js +19 -19
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/useCompensationForm.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/EmployeeDetailsForm.js +15 -16
- package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/EmployeeDetailsForm.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/fields.d.ts +1 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/fields.js +27 -27
- package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/fields.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/useEmployeeDetailsForm.d.ts +9 -9
- package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/useEmployeeDetailsForm.js +15 -15
- package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/useEmployeeDetailsForm.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/WorkAddressForm.js +14 -15
- package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/WorkAddressForm.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/fields.d.ts +1 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/fields.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/useWorkAddressForm.d.ts +5 -5
- package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/useWorkAddressForm.js +13 -13
- package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/useWorkAddressForm.js.map +1 -1
- package/dist/components/UNSTABLE_Hooks/index.d.ts +3 -3
- package/dist/components/UNSTABLE_TimeOff/AddEmployeesHoliday/AddEmployeesHoliday.d.ts +5 -0
- package/dist/components/UNSTABLE_TimeOff/AddEmployeesHoliday/AddEmployeesHoliday.js +46 -0
- package/dist/components/UNSTABLE_TimeOff/AddEmployeesHoliday/AddEmployeesHoliday.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/AddEmployeesToPolicy/AddEmployeesToPolicy.d.ts +5 -0
- package/dist/components/UNSTABLE_TimeOff/AddEmployeesToPolicy/AddEmployeesToPolicy.js +46 -0
- package/dist/components/UNSTABLE_TimeOff/AddEmployeesToPolicy/AddEmployeesToPolicy.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/HolidaySelectionForm/HolidaySelectionForm.d.ts +5 -0
- package/dist/components/UNSTABLE_TimeOff/HolidaySelectionForm/HolidaySelectionForm.js +46 -0
- package/dist/components/UNSTABLE_TimeOff/HolidaySelectionForm/HolidaySelectionForm.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyDetailsForm/PolicyDetailsForm.d.ts +6 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyDetailsForm/PolicyDetailsForm.js +50 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyDetailsForm/PolicyDetailsForm.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyList.d.ts +5 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyList.js +50 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyList.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/PolicySettings/PolicySettings.d.ts +5 -0
- package/dist/components/UNSTABLE_TimeOff/PolicySettings/PolicySettings.js +46 -0
- package/dist/components/UNSTABLE_TimeOff/PolicySettings/PolicySettings.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyTypeSelector/PolicyTypeSelector.d.ts +5 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyTypeSelector/PolicyTypeSelector.js +59 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyTypeSelector/PolicyTypeSelector.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlow.d.ts +2 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlow.js +25 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlow.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlowComponents.d.ts +29 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlowComponents.js +98 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlowComponents.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/index.d.ts +3 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/timeOffStateMachine.d.ts +14 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/timeOffStateMachine.js +290 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/timeOffStateMachine.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/shared/EmployeeTable/EmployeeTable.d.ts +2 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/shared/EmployeeTable/EmployeeTableTypes.d.ts +26 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/shared/EmployeeTable/index.d.ts +4 -0
- package/dist/components/UNSTABLE_TimeOff/ViewHolidayEmployees/ViewHolidayEmployees.d.ts +5 -0
- package/dist/components/UNSTABLE_TimeOff/ViewHolidayEmployees/ViewHolidayEmployees.js +35 -0
- package/dist/components/UNSTABLE_TimeOff/ViewHolidayEmployees/ViewHolidayEmployees.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/ViewHolidaySchedule/ViewHolidaySchedule.d.ts +5 -0
- package/dist/components/UNSTABLE_TimeOff/ViewHolidaySchedule/ViewHolidaySchedule.js +35 -0
- package/dist/components/UNSTABLE_TimeOff/ViewHolidaySchedule/ViewHolidaySchedule.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/ViewPolicyDetails/ViewPolicyDetails.d.ts +5 -0
- package/dist/components/UNSTABLE_TimeOff/ViewPolicyDetails/ViewPolicyDetails.js +35 -0
- package/dist/components/UNSTABLE_TimeOff/ViewPolicyDetails/ViewPolicyDetails.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/ViewPolicyEmployees/ViewPolicyEmployees.d.ts +5 -0
- package/dist/components/UNSTABLE_TimeOff/ViewPolicyEmployees/ViewPolicyEmployees.js +35 -0
- package/dist/components/UNSTABLE_TimeOff/ViewPolicyEmployees/ViewPolicyEmployees.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/index.d.ts +25 -0
- package/dist/components/UNSTABLE_TimeOff/index.js +27 -0
- package/dist/components/UNSTABLE_TimeOff/index.js.map +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/contexts/ComponentAdapter/adapters/defaultComponentAdapter.js +48 -46
- package/dist/contexts/ComponentAdapter/adapters/defaultComponentAdapter.js.map +1 -1
- package/dist/contexts/ComponentAdapter/useComponentContext.d.ts +2 -0
- package/dist/contexts/ComponentAdapter/useComponentContext.js.map +1 -1
- package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.js +2 -3
- package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.js.map +1 -1
- package/dist/contexts/LoadingIndicatorProvider/useLoadingIndicator.d.ts +10 -2
- package/dist/contexts/LoadingIndicatorProvider/useLoadingIndicator.js.map +1 -1
- package/dist/contexts/ThemeProvider/useTheme.js.map +1 -1
- package/dist/helpers/breadcrumbHelpers.d.ts +14 -0
- package/dist/helpers/breadcrumbHelpers.js +35 -26
- package/dist/helpers/breadcrumbHelpers.js.map +1 -1
- package/dist/{components/UNSTABLE_Hooks → helpers}/collectErrors.d.ts +1 -1
- package/dist/{components/UNSTABLE_Hooks → helpers}/collectErrors.js +1 -1
- package/dist/helpers/collectErrors.js.map +1 -0
- package/dist/hooks/useDateRangeFilter/useDateRangeFilter.d.ts +20 -0
- package/dist/hooks/useDateRangeFilter/useDateRangeFilter.js +38 -0
- package/dist/hooks/useDateRangeFilter/useDateRangeFilter.js.map +1 -0
- package/dist/hooks/useDateRangeFilter/useDateRangeFilter.test.d.ts +1 -0
- package/dist/{components/UNSTABLE_Hooks → hooks}/useErrorHandling.d.ts +2 -2
- package/dist/{components/UNSTABLE_Hooks → hooks}/useErrorHandling.js +1 -1
- package/dist/hooks/useErrorHandling.js.map +1 -0
- package/dist/hooks/useErrorHandling.test.d.ts +1 -0
- package/dist/hooks/usePagination/usePagination.d.ts +2 -0
- package/dist/hooks/usePagination/usePagination.js +32 -29
- package/dist/hooks/usePagination/usePagination.js.map +1 -1
- package/dist/i18n/I18n.js +24 -24
- package/dist/i18n/I18n.js.map +1 -1
- package/dist/i18n/en/Company.PaySchedule.json.js +6 -6
- package/dist/i18n/en/Company.TimeOff.CreateTimeOffPolicy.json.js +24 -0
- package/dist/i18n/en/Company.TimeOff.CreateTimeOffPolicy.json.js.map +1 -0
- package/dist/i18n/en/Company.TimeOff.EmployeeTable.json.js +32 -0
- package/dist/i18n/en/Company.TimeOff.EmployeeTable.json.js.map +1 -0
- package/dist/i18n/en/Company.TimeOff.HolidayPolicy.json.js +22 -0
- package/dist/i18n/en/Company.TimeOff.HolidayPolicy.json.js.map +1 -0
- package/dist/i18n/en/Company.TimeOff.TimeOffPolicies.json.js +32 -0
- package/dist/i18n/en/Company.TimeOff.TimeOffPolicies.json.js.map +1 -0
- package/dist/i18n/en/Company.TimeOff.TimeOffPolicyDetails.json.js +52 -0
- package/dist/i18n/en/Company.TimeOff.TimeOffPolicyDetails.json.js.map +1 -0
- package/dist/i18n/en/Company.TimeOff.TimeOffRequests.json.js +21 -0
- package/dist/i18n/en/Company.TimeOff.TimeOffRequests.json.js.map +1 -0
- package/dist/i18n/en/Employee.EmployeeList.json.js +22 -20
- package/dist/i18n/en/Employee.EmployeeList.json.js.map +1 -1
- package/dist/i18n/en/Employee.ManagementEmployeeList.json.js +40 -0
- package/dist/i18n/en/Employee.ManagementEmployeeList.json.js.map +1 -0
- package/dist/i18n/en/Payroll.GrossUpModal.json.js +16 -14
- package/dist/i18n/en/Payroll.GrossUpModal.json.js.map +1 -1
- package/dist/i18n/en/Payroll.OffCycle.json.js +1 -1
- package/dist/i18n/en/Payroll.OffCycleTaxWithholding.json.js +5 -5
- package/dist/i18n/en/Payroll.PayrollConfiguration.json.js +38 -34
- package/dist/i18n/en/Payroll.PayrollConfiguration.json.js.map +1 -1
- package/dist/i18n/en/Payroll.PayrollEditEmployee.json.js +29 -25
- package/dist/i18n/en/Payroll.PayrollEditEmployee.json.js.map +1 -1
- package/dist/i18n/en/Payroll.PayrollHistory.json.js +12 -12
- package/dist/i18n/en/Payroll.PayrollList.json.js +28 -20
- package/dist/i18n/en/Payroll.PayrollList.json.js.map +1 -1
- package/dist/i18n/en/Payroll.PayrollOverview.json.js +64 -58
- package/dist/i18n/en/Payroll.PayrollOverview.json.js.map +1 -1
- package/dist/i18n/en/Payroll.TransitionPayrollAlert.json.js +8 -8
- package/dist/index.js +18 -16
- package/dist/index.js.map +1 -1
- package/dist/shared/constants.d.ts +46 -0
- package/dist/shared/constants.js +99 -74
- package/dist/shared/constants.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/i18next.d.ts +495 -9
- package/dist/{components/UNSTABLE_Hooks/types.d.ts → types/sdkHooks.d.ts} +28 -2
- package/docs/reference/endpoint-inventory.json +563 -385
- package/package.json +27 -18
- package/dist/components/Employee/EmployeeList/Actions.d.ts +0 -1
- package/dist/components/Employee/EmployeeList/Actions.js +0 -16
- package/dist/components/Employee/EmployeeList/Actions.js.map +0 -1
- package/dist/components/Employee/EmployeeList/Head.d.ts +0 -1
- package/dist/components/Employee/EmployeeList/Head.js +0 -15
- package/dist/components/Employee/EmployeeList/Head.js.map +0 -1
- package/dist/components/Employee/EmployeeList/List.d.ts +0 -2
- package/dist/components/Employee/EmployeeList/List.js +0 -125
- package/dist/components/Employee/EmployeeList/List.js.map +0 -1
- package/dist/components/Employee/EmployeeList/List.module.scss.js +0 -8
- package/dist/components/Employee/EmployeeList/List.module.scss.js.map +0 -1
- package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.module.scss.js +0 -8
- package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.module.scss.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/collectErrors.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/types.d.ts +0 -27
- package/dist/components/UNSTABLE_Hooks/useErrorHandling.js.map +0 -1
- /package/dist/components/{UNSTABLE_Hooks/useErrorHandling.test.d.ts → UNSTABLE_TimeOff/TimeOffFlow/timeOffStateMachine.test.d.ts} +0 -0
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"blocks": {
|
|
3
|
+
"Company.Industry": {
|
|
4
|
+
"endpoints": [
|
|
5
|
+
{
|
|
6
|
+
"method": "GET",
|
|
7
|
+
"path": "/v1/companies/:companyId/industry_selection"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"method": "PUT",
|
|
11
|
+
"path": "/v1/companies/:companyId/industry_selection"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"variables": [
|
|
15
|
+
"companyId"
|
|
16
|
+
]
|
|
17
|
+
},
|
|
3
18
|
"Company.AssignSignatory": {
|
|
4
19
|
"endpoints": [
|
|
5
20
|
{
|
|
@@ -28,27 +43,51 @@
|
|
|
28
43
|
"signatoryUuid"
|
|
29
44
|
]
|
|
30
45
|
},
|
|
31
|
-
"Company.
|
|
46
|
+
"Company.CreateSignatory": {
|
|
32
47
|
"endpoints": [
|
|
33
48
|
{
|
|
34
49
|
"method": "GET",
|
|
35
|
-
"path": "/v1/companies/:
|
|
50
|
+
"path": "/v1/companies/:companyUuid/signatories"
|
|
36
51
|
},
|
|
37
52
|
{
|
|
38
53
|
"method": "POST",
|
|
39
|
-
"path": "/v1/companies/:
|
|
54
|
+
"path": "/v1/companies/:companyUuid/signatories"
|
|
40
55
|
},
|
|
41
56
|
{
|
|
42
57
|
"method": "PUT",
|
|
43
|
-
"path": "/v1/companies/:
|
|
58
|
+
"path": "/v1/companies/:companyUuid/signatories/:signatoryUuid"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"method": "DELETE",
|
|
62
|
+
"path": "/v1/companies/:companyUuid/signatories/:signatoryUuid"
|
|
44
63
|
}
|
|
45
64
|
],
|
|
46
65
|
"variables": [
|
|
47
|
-
"
|
|
48
|
-
"
|
|
66
|
+
"companyUuid",
|
|
67
|
+
"signatoryUuid"
|
|
49
68
|
]
|
|
50
69
|
},
|
|
51
|
-
"Company.
|
|
70
|
+
"Company.InviteSignatory": {
|
|
71
|
+
"endpoints": [
|
|
72
|
+
{
|
|
73
|
+
"method": "GET",
|
|
74
|
+
"path": "/v1/companies/:companyUuid/signatories"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"method": "POST",
|
|
78
|
+
"path": "/v1/companies/:companyUuid/signatories/invite"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"method": "DELETE",
|
|
82
|
+
"path": "/v1/companies/:companyUuid/signatories/:signatoryUuid"
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"variables": [
|
|
86
|
+
"companyUuid",
|
|
87
|
+
"signatoryUuid"
|
|
88
|
+
]
|
|
89
|
+
},
|
|
90
|
+
"Company.DocumentList": {
|
|
52
91
|
"endpoints": [
|
|
53
92
|
{
|
|
54
93
|
"method": "GET",
|
|
@@ -57,7 +96,15 @@
|
|
|
57
96
|
{
|
|
58
97
|
"method": "GET",
|
|
59
98
|
"path": "/v1/companies/:companyUuid/signatories"
|
|
60
|
-
}
|
|
99
|
+
}
|
|
100
|
+
],
|
|
101
|
+
"variables": [
|
|
102
|
+
"companyId",
|
|
103
|
+
"companyUuid"
|
|
104
|
+
]
|
|
105
|
+
},
|
|
106
|
+
"Company.SignatureForm": {
|
|
107
|
+
"endpoints": [
|
|
61
108
|
{
|
|
62
109
|
"method": "GET",
|
|
63
110
|
"path": "/v1/forms/:formId"
|
|
@@ -72,39 +119,47 @@
|
|
|
72
119
|
}
|
|
73
120
|
],
|
|
74
121
|
"variables": [
|
|
75
|
-
"companyId",
|
|
76
|
-
"companyUuid",
|
|
77
122
|
"formId"
|
|
78
123
|
]
|
|
79
124
|
},
|
|
80
|
-
"Company.
|
|
125
|
+
"Company.DocumentSigner": {
|
|
81
126
|
"endpoints": [
|
|
127
|
+
{
|
|
128
|
+
"method": "GET",
|
|
129
|
+
"path": "/v1/companies/:companyId/forms"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"method": "GET",
|
|
133
|
+
"path": "/v1/companies/:companyUuid/signatories"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"method": "GET",
|
|
137
|
+
"path": "/v1/forms/:formId"
|
|
138
|
+
},
|
|
82
139
|
{
|
|
83
140
|
"method": "PUT",
|
|
84
|
-
"path": "/v1/
|
|
141
|
+
"path": "/v1/forms/:formId/sign"
|
|
85
142
|
},
|
|
86
143
|
{
|
|
87
144
|
"method": "GET",
|
|
88
|
-
"path": "/v1/
|
|
145
|
+
"path": "/v1/forms/:formId/pdf"
|
|
89
146
|
}
|
|
90
147
|
],
|
|
91
148
|
"variables": [
|
|
92
|
-
"companyId"
|
|
149
|
+
"companyId",
|
|
150
|
+
"companyUuid",
|
|
151
|
+
"formId"
|
|
93
152
|
]
|
|
94
153
|
},
|
|
95
|
-
"Company.
|
|
154
|
+
"Company.OnboardingOverview": {
|
|
96
155
|
"endpoints": [
|
|
97
156
|
{
|
|
98
157
|
"method": "GET",
|
|
99
|
-
"path": "/v1/companies/:
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
"method": "PUT",
|
|
103
|
-
"path": "/v1/companies/:companyId/industry_selection"
|
|
158
|
+
"path": "/v1/companies/:companyUuid/onboarding_status"
|
|
104
159
|
}
|
|
105
160
|
],
|
|
106
161
|
"variables": [
|
|
107
|
-
"
|
|
162
|
+
"companyUuid"
|
|
108
163
|
]
|
|
109
164
|
},
|
|
110
165
|
"Company.Locations": {
|
|
@@ -131,17 +186,6 @@
|
|
|
131
186
|
"locationId"
|
|
132
187
|
]
|
|
133
188
|
},
|
|
134
|
-
"Company.OnboardingOverview": {
|
|
135
|
-
"endpoints": [
|
|
136
|
-
{
|
|
137
|
-
"method": "GET",
|
|
138
|
-
"path": "/v1/companies/:companyUuid/onboarding_status"
|
|
139
|
-
}
|
|
140
|
-
],
|
|
141
|
-
"variables": [
|
|
142
|
-
"companyUuid"
|
|
143
|
-
]
|
|
144
|
-
},
|
|
145
189
|
"Company.PaySchedule": {
|
|
146
190
|
"endpoints": [
|
|
147
191
|
{
|
|
@@ -159,13 +203,80 @@
|
|
|
159
203
|
{
|
|
160
204
|
"method": "POST",
|
|
161
205
|
"path": "/v1/companies/:companyId/pay_schedules"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"method": "GET",
|
|
209
|
+
"path": "/v1/companies/:companyUuid/payment_configs"
|
|
162
210
|
}
|
|
163
211
|
],
|
|
164
212
|
"variables": [
|
|
165
213
|
"companyId",
|
|
214
|
+
"companyUuid",
|
|
166
215
|
"payScheduleId"
|
|
167
216
|
]
|
|
168
217
|
},
|
|
218
|
+
"Company.FederalTaxes": {
|
|
219
|
+
"endpoints": [
|
|
220
|
+
{
|
|
221
|
+
"method": "PUT",
|
|
222
|
+
"path": "/v1/companies/:companyId/federal_tax_details"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"method": "GET",
|
|
226
|
+
"path": "/v1/companies/:companyId/federal_tax_details"
|
|
227
|
+
}
|
|
228
|
+
],
|
|
229
|
+
"variables": [
|
|
230
|
+
"companyId"
|
|
231
|
+
]
|
|
232
|
+
},
|
|
233
|
+
"Company.BankAccount": {
|
|
234
|
+
"endpoints": [
|
|
235
|
+
{
|
|
236
|
+
"method": "GET",
|
|
237
|
+
"path": "/v1/companies/:companyId/bank_accounts"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"method": "POST",
|
|
241
|
+
"path": "/v1/companies/:companyId/bank_accounts"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"method": "PUT",
|
|
245
|
+
"path": "/v1/companies/:companyId/bank_accounts/:bankAccountUuid/verify"
|
|
246
|
+
}
|
|
247
|
+
],
|
|
248
|
+
"variables": [
|
|
249
|
+
"bankAccountUuid",
|
|
250
|
+
"companyId"
|
|
251
|
+
]
|
|
252
|
+
},
|
|
253
|
+
"Company.StateTaxesList": {
|
|
254
|
+
"endpoints": [
|
|
255
|
+
{
|
|
256
|
+
"method": "GET",
|
|
257
|
+
"path": "/v1/companies/:companyUuid/tax_requirements"
|
|
258
|
+
}
|
|
259
|
+
],
|
|
260
|
+
"variables": [
|
|
261
|
+
"companyUuid"
|
|
262
|
+
]
|
|
263
|
+
},
|
|
264
|
+
"Company.StateTaxesForm": {
|
|
265
|
+
"endpoints": [
|
|
266
|
+
{
|
|
267
|
+
"method": "PUT",
|
|
268
|
+
"path": "/v1/companies/:companyUuid/tax_requirements/:state"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"method": "GET",
|
|
272
|
+
"path": "/v1/companies/:companyUuid/tax_requirements/:state"
|
|
273
|
+
}
|
|
274
|
+
],
|
|
275
|
+
"variables": [
|
|
276
|
+
"companyUuid",
|
|
277
|
+
"state"
|
|
278
|
+
]
|
|
279
|
+
},
|
|
169
280
|
"Company.StateTaxes": {
|
|
170
281
|
"endpoints": [
|
|
171
282
|
{
|
|
@@ -186,6 +297,29 @@
|
|
|
186
297
|
"state"
|
|
187
298
|
]
|
|
188
299
|
},
|
|
300
|
+
"Contractor.PaymentMethod": {
|
|
301
|
+
"endpoints": [
|
|
302
|
+
{
|
|
303
|
+
"method": "GET",
|
|
304
|
+
"path": "/v1/contractors/:contractorUuid/payment_method"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"method": "GET",
|
|
308
|
+
"path": "/v1/contractors/:contractorUuid/bank_accounts"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"method": "POST",
|
|
312
|
+
"path": "/v1/contractors/:contractorUuid/bank_accounts"
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"method": "PUT",
|
|
316
|
+
"path": "/v1/contractors/:contractorUuid/payment_method"
|
|
317
|
+
}
|
|
318
|
+
],
|
|
319
|
+
"variables": [
|
|
320
|
+
"contractorUuid"
|
|
321
|
+
]
|
|
322
|
+
},
|
|
189
323
|
"Contractor.Address": {
|
|
190
324
|
"endpoints": [
|
|
191
325
|
{
|
|
@@ -236,30 +370,62 @@
|
|
|
236
370
|
"contractorUuid"
|
|
237
371
|
]
|
|
238
372
|
},
|
|
239
|
-
"Contractor.
|
|
373
|
+
"Contractor.ContractorSubmit": {
|
|
240
374
|
"endpoints": [
|
|
375
|
+
{
|
|
376
|
+
"method": "PUT",
|
|
377
|
+
"path": "/v1/contractors/:contractorUuid/onboarding_status"
|
|
378
|
+
},
|
|
241
379
|
{
|
|
242
380
|
"method": "GET",
|
|
243
|
-
"path": "/v1/contractors/:contractorUuid/
|
|
381
|
+
"path": "/v1/contractors/:contractorUuid/onboarding_status"
|
|
244
382
|
},
|
|
245
383
|
{
|
|
246
384
|
"method": "GET",
|
|
247
|
-
"path": "/v1/contractors/:contractorUuid
|
|
385
|
+
"path": "/v1/contractors/:contractorUuid"
|
|
386
|
+
}
|
|
387
|
+
],
|
|
388
|
+
"variables": [
|
|
389
|
+
"contractorUuid"
|
|
390
|
+
]
|
|
391
|
+
},
|
|
392
|
+
"Contractor.ContractorProfile": {
|
|
393
|
+
"endpoints": [
|
|
394
|
+
{
|
|
395
|
+
"method": "GET",
|
|
396
|
+
"path": "/v1/contractors/:contractorUuid"
|
|
248
397
|
},
|
|
249
398
|
{
|
|
250
399
|
"method": "POST",
|
|
251
|
-
"path": "/v1/
|
|
400
|
+
"path": "/v1/companies/:companyUuid/contractors"
|
|
252
401
|
},
|
|
253
402
|
{
|
|
254
403
|
"method": "PUT",
|
|
255
|
-
"path": "/v1/contractors/:contractorUuid
|
|
404
|
+
"path": "/v1/contractors/:contractorUuid"
|
|
256
405
|
}
|
|
257
406
|
],
|
|
258
407
|
"variables": [
|
|
408
|
+
"companyUuid",
|
|
259
409
|
"contractorUuid"
|
|
260
410
|
]
|
|
261
411
|
},
|
|
262
|
-
"Contractor.
|
|
412
|
+
"Contractor.PaymentsList": {
|
|
413
|
+
"endpoints": [
|
|
414
|
+
{
|
|
415
|
+
"method": "GET",
|
|
416
|
+
"path": "/v1/companies/:companyId/contractor_payment_groups"
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"method": "GET",
|
|
420
|
+
"path": "/v1/companies/:companyUuid/information_requests"
|
|
421
|
+
}
|
|
422
|
+
],
|
|
423
|
+
"variables": [
|
|
424
|
+
"companyId",
|
|
425
|
+
"companyUuid"
|
|
426
|
+
]
|
|
427
|
+
},
|
|
428
|
+
"Contractor.CreatePayment": {
|
|
263
429
|
"endpoints": [
|
|
264
430
|
{
|
|
265
431
|
"method": "GET",
|
|
@@ -287,7 +453,7 @@
|
|
|
287
453
|
"companyUuid"
|
|
288
454
|
]
|
|
289
455
|
},
|
|
290
|
-
"Contractor.
|
|
456
|
+
"Contractor.PaymentHistory": {
|
|
291
457
|
"endpoints": [
|
|
292
458
|
{
|
|
293
459
|
"method": "GET",
|
|
@@ -309,7 +475,7 @@
|
|
|
309
475
|
"contractorPaymentId"
|
|
310
476
|
]
|
|
311
477
|
},
|
|
312
|
-
"Contractor.
|
|
478
|
+
"Contractor.PaymentSummary": {
|
|
313
479
|
"endpoints": [
|
|
314
480
|
{
|
|
315
481
|
"method": "GET",
|
|
@@ -321,16 +487,16 @@
|
|
|
321
487
|
},
|
|
322
488
|
{
|
|
323
489
|
"method": "GET",
|
|
324
|
-
"path": "/v1/
|
|
490
|
+
"path": "/v1/companies/:companyId/bank_accounts"
|
|
325
491
|
}
|
|
326
492
|
],
|
|
327
493
|
"variables": [
|
|
494
|
+
"companyId",
|
|
328
495
|
"companyUuid",
|
|
329
|
-
"contractorPaymentGroupUuid"
|
|
330
|
-
"contractorPaymentUuid"
|
|
496
|
+
"contractorPaymentGroupUuid"
|
|
331
497
|
]
|
|
332
498
|
},
|
|
333
|
-
"Contractor.
|
|
499
|
+
"Contractor.PaymentStatement": {
|
|
334
500
|
"endpoints": [
|
|
335
501
|
{
|
|
336
502
|
"method": "GET",
|
|
@@ -342,210 +508,193 @@
|
|
|
342
508
|
},
|
|
343
509
|
{
|
|
344
510
|
"method": "GET",
|
|
345
|
-
"path": "/v1/
|
|
511
|
+
"path": "/v1/contractor_payments/:contractorPaymentUuid/receipt"
|
|
346
512
|
}
|
|
347
513
|
],
|
|
348
514
|
"variables": [
|
|
349
|
-
"companyId",
|
|
350
515
|
"companyUuid",
|
|
351
|
-
"contractorPaymentGroupUuid"
|
|
516
|
+
"contractorPaymentGroupUuid",
|
|
517
|
+
"contractorPaymentUuid"
|
|
352
518
|
]
|
|
353
519
|
},
|
|
354
|
-
"
|
|
520
|
+
"Employee.EmployeeList": {
|
|
355
521
|
"endpoints": [
|
|
356
522
|
{
|
|
357
523
|
"method": "GET",
|
|
358
|
-
"path": "/v1/companies/:companyId/
|
|
524
|
+
"path": "/v1/companies/:companyId/employees"
|
|
359
525
|
},
|
|
360
526
|
{
|
|
361
|
-
"method": "
|
|
362
|
-
"path": "/v1/
|
|
527
|
+
"method": "DELETE",
|
|
528
|
+
"path": "/v1/employees/:employeeId"
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"method": "PUT",
|
|
532
|
+
"path": "/v1/employees/:employeeId/onboarding_status"
|
|
363
533
|
}
|
|
364
534
|
],
|
|
365
535
|
"variables": [
|
|
366
536
|
"companyId",
|
|
367
|
-
"
|
|
537
|
+
"employeeId"
|
|
368
538
|
]
|
|
369
539
|
},
|
|
370
|
-
"
|
|
540
|
+
"Employee.ManagementEmployeeList": {
|
|
371
541
|
"endpoints": [
|
|
372
542
|
{
|
|
373
543
|
"method": "GET",
|
|
374
|
-
"path": "/v1/
|
|
544
|
+
"path": "/v1/companies/:companyId/employees"
|
|
375
545
|
},
|
|
376
546
|
{
|
|
377
|
-
"method": "
|
|
378
|
-
"path": "/v1/
|
|
547
|
+
"method": "DELETE",
|
|
548
|
+
"path": "/v1/employees/:employeeId"
|
|
379
549
|
},
|
|
380
550
|
{
|
|
381
551
|
"method": "PUT",
|
|
382
|
-
"path": "/v1/
|
|
552
|
+
"path": "/v1/employees/:employeeId/onboarding_status"
|
|
383
553
|
}
|
|
384
554
|
],
|
|
385
555
|
"variables": [
|
|
386
|
-
"
|
|
387
|
-
"
|
|
556
|
+
"companyId",
|
|
557
|
+
"employeeId"
|
|
388
558
|
]
|
|
389
559
|
},
|
|
390
|
-
"
|
|
560
|
+
"Employee.Deductions": {
|
|
391
561
|
"endpoints": [
|
|
562
|
+
{
|
|
563
|
+
"method": "GET",
|
|
564
|
+
"path": "/v1/employees/:employeeId/garnishments"
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"method": "POST",
|
|
568
|
+
"path": "/v1/employees/:employeeId/garnishments"
|
|
569
|
+
},
|
|
392
570
|
{
|
|
393
571
|
"method": "PUT",
|
|
394
|
-
"path": "/v1/
|
|
572
|
+
"path": "/v1/garnishments/:garnishmentId"
|
|
395
573
|
},
|
|
396
574
|
{
|
|
397
575
|
"method": "GET",
|
|
398
|
-
"path": "/v1/
|
|
576
|
+
"path": "/v1/garnishments/child_support"
|
|
577
|
+
}
|
|
578
|
+
],
|
|
579
|
+
"variables": [
|
|
580
|
+
"employeeId",
|
|
581
|
+
"garnishmentId"
|
|
582
|
+
]
|
|
583
|
+
},
|
|
584
|
+
"Employee.OnboardingSummary": {
|
|
585
|
+
"endpoints": [
|
|
586
|
+
{
|
|
587
|
+
"method": "GET",
|
|
588
|
+
"path": "/v1/employees/:employeeId"
|
|
399
589
|
},
|
|
400
590
|
{
|
|
401
591
|
"method": "GET",
|
|
402
|
-
"path": "/v1/
|
|
592
|
+
"path": "/v1/employees/:employeeId/onboarding_status"
|
|
403
593
|
}
|
|
404
594
|
],
|
|
405
595
|
"variables": [
|
|
406
|
-
"
|
|
596
|
+
"employeeId"
|
|
407
597
|
]
|
|
408
598
|
},
|
|
409
|
-
"Employee.
|
|
599
|
+
"Employee.Profile": {
|
|
410
600
|
"endpoints": [
|
|
411
601
|
{
|
|
412
602
|
"method": "GET",
|
|
413
|
-
"path": "/v1/
|
|
603
|
+
"path": "/v1/companies/:companyId/locations"
|
|
414
604
|
},
|
|
415
605
|
{
|
|
416
606
|
"method": "POST",
|
|
417
|
-
"path": "/v1/
|
|
418
|
-
},
|
|
419
|
-
{
|
|
420
|
-
"method": "PUT",
|
|
421
|
-
"path": "/v1/jobs/:jobId"
|
|
607
|
+
"path": "/v1/companies/:companyId/employees"
|
|
422
608
|
},
|
|
423
609
|
{
|
|
424
|
-
"method": "
|
|
425
|
-
"path": "/v1/
|
|
610
|
+
"method": "GET",
|
|
611
|
+
"path": "/v1/employees/:employeeId"
|
|
426
612
|
},
|
|
427
613
|
{
|
|
428
|
-
"method": "
|
|
429
|
-
"path": "/v1/
|
|
614
|
+
"method": "GET",
|
|
615
|
+
"path": "/v1/employees/:employeeId/home_addresses"
|
|
430
616
|
},
|
|
431
617
|
{
|
|
432
|
-
"method": "
|
|
433
|
-
"path": "/v1/
|
|
618
|
+
"method": "POST",
|
|
619
|
+
"path": "/v1/employees/:employeeId/home_addresses"
|
|
434
620
|
},
|
|
435
621
|
{
|
|
436
|
-
"method": "
|
|
437
|
-
"path": "/v1/
|
|
622
|
+
"method": "PUT",
|
|
623
|
+
"path": "/v1/home_addresses/:homeAddressUuid"
|
|
438
624
|
},
|
|
439
625
|
{
|
|
440
|
-
"method": "
|
|
441
|
-
"path": "/v1/
|
|
626
|
+
"method": "PUT",
|
|
627
|
+
"path": "/v1/work_addresses/:workAddressUuid"
|
|
442
628
|
},
|
|
443
629
|
{
|
|
444
|
-
"method": "
|
|
630
|
+
"method": "PUT",
|
|
445
631
|
"path": "/v1/employees/:employeeId"
|
|
446
|
-
}
|
|
447
|
-
],
|
|
448
|
-
"variables": [
|
|
449
|
-
"companyId",
|
|
450
|
-
"compensationId",
|
|
451
|
-
"employeeId",
|
|
452
|
-
"jobId",
|
|
453
|
-
"locationUuid"
|
|
454
|
-
]
|
|
455
|
-
},
|
|
456
|
-
"Employee.Deductions": {
|
|
457
|
-
"endpoints": [
|
|
632
|
+
},
|
|
458
633
|
{
|
|
459
634
|
"method": "GET",
|
|
460
|
-
"path": "/v1/employees/:employeeId/
|
|
635
|
+
"path": "/v1/employees/:employeeId/work_addresses"
|
|
461
636
|
},
|
|
462
637
|
{
|
|
463
638
|
"method": "POST",
|
|
464
|
-
"path": "/v1/employees/:employeeId/
|
|
639
|
+
"path": "/v1/employees/:employeeId/work_addresses"
|
|
465
640
|
},
|
|
466
641
|
{
|
|
467
642
|
"method": "PUT",
|
|
468
|
-
"path": "/v1/
|
|
469
|
-
},
|
|
470
|
-
{
|
|
471
|
-
"method": "GET",
|
|
472
|
-
"path": "/v1/garnishments/child_support"
|
|
643
|
+
"path": "/v1/employees/:employeeId/onboarding_status"
|
|
473
644
|
}
|
|
474
645
|
],
|
|
475
646
|
"variables": [
|
|
647
|
+
"companyId",
|
|
476
648
|
"employeeId",
|
|
477
|
-
"
|
|
649
|
+
"homeAddressUuid",
|
|
650
|
+
"workAddressUuid"
|
|
478
651
|
]
|
|
479
652
|
},
|
|
480
|
-
"Employee.
|
|
653
|
+
"Employee.Compensation": {
|
|
481
654
|
"endpoints": [
|
|
482
655
|
{
|
|
483
656
|
"method": "GET",
|
|
484
|
-
"path": "/v1/employees/:employeeId/
|
|
485
|
-
},
|
|
486
|
-
{
|
|
487
|
-
"method": "GET",
|
|
488
|
-
"path": "/v1/employees/:employeeId"
|
|
657
|
+
"path": "/v1/employees/:employeeId/jobs"
|
|
489
658
|
},
|
|
490
659
|
{
|
|
491
|
-
"method": "
|
|
492
|
-
"path": "/v1/employees/:employeeId/
|
|
660
|
+
"method": "POST",
|
|
661
|
+
"path": "/v1/employees/:employeeId/jobs"
|
|
493
662
|
},
|
|
494
663
|
{
|
|
495
664
|
"method": "PUT",
|
|
496
|
-
"path": "/v1/
|
|
665
|
+
"path": "/v1/jobs/:jobId"
|
|
497
666
|
},
|
|
498
667
|
{
|
|
499
|
-
"method": "
|
|
500
|
-
"path": "/v1/
|
|
668
|
+
"method": "DELETE",
|
|
669
|
+
"path": "/v1/jobs/:jobId"
|
|
501
670
|
},
|
|
502
671
|
{
|
|
503
672
|
"method": "PUT",
|
|
504
|
-
"path": "/v1/
|
|
673
|
+
"path": "/v1/compensations/:compensationId"
|
|
505
674
|
},
|
|
506
675
|
{
|
|
507
676
|
"method": "GET",
|
|
508
|
-
"path": "/v1/
|
|
509
|
-
}
|
|
510
|
-
],
|
|
511
|
-
"variables": [
|
|
512
|
-
"employeeId",
|
|
513
|
-
"formId"
|
|
514
|
-
]
|
|
515
|
-
},
|
|
516
|
-
"Employee.EmployeeDocuments": {
|
|
517
|
-
"endpoints": [
|
|
677
|
+
"path": "/v1/locations/:locationUuid/minimum_wages"
|
|
678
|
+
},
|
|
518
679
|
{
|
|
519
680
|
"method": "GET",
|
|
520
|
-
"path": "/v1/employees/:employeeId"
|
|
681
|
+
"path": "/v1/employees/:employeeId/work_addresses"
|
|
521
682
|
},
|
|
522
|
-
{
|
|
523
|
-
"method": "PUT",
|
|
524
|
-
"path": "/v1/employees/:employeeId/onboarding_documents_config"
|
|
525
|
-
}
|
|
526
|
-
],
|
|
527
|
-
"variables": [
|
|
528
|
-
"employeeId"
|
|
529
|
-
]
|
|
530
|
-
},
|
|
531
|
-
"Employee.EmployeeList": {
|
|
532
|
-
"endpoints": [
|
|
533
683
|
{
|
|
534
684
|
"method": "GET",
|
|
535
|
-
"path": "/v1/companies/:companyId/
|
|
685
|
+
"path": "/v1/companies/:companyId/federal_tax_details"
|
|
536
686
|
},
|
|
537
687
|
{
|
|
538
|
-
"method": "
|
|
688
|
+
"method": "GET",
|
|
539
689
|
"path": "/v1/employees/:employeeId"
|
|
540
|
-
},
|
|
541
|
-
{
|
|
542
|
-
"method": "PUT",
|
|
543
|
-
"path": "/v1/employees/:employeeId/onboarding_status"
|
|
544
690
|
}
|
|
545
691
|
],
|
|
546
692
|
"variables": [
|
|
547
693
|
"companyId",
|
|
548
|
-
"
|
|
694
|
+
"compensationId",
|
|
695
|
+
"employeeId",
|
|
696
|
+
"jobId",
|
|
697
|
+
"locationUuid"
|
|
549
698
|
]
|
|
550
699
|
},
|
|
551
700
|
"Employee.FederalTaxes": {
|
|
@@ -563,35 +712,19 @@
|
|
|
563
712
|
"employeeUuid"
|
|
564
713
|
]
|
|
565
714
|
},
|
|
566
|
-
"Employee.
|
|
567
|
-
"endpoints": [
|
|
568
|
-
{
|
|
569
|
-
"method": "GET",
|
|
570
|
-
"path": "/v1/employees/:employeeId"
|
|
571
|
-
},
|
|
572
|
-
{
|
|
573
|
-
"method": "GET",
|
|
574
|
-
"path": "/v1/companies/:companyId"
|
|
575
|
-
}
|
|
576
|
-
],
|
|
577
|
-
"variables": [
|
|
578
|
-
"companyId",
|
|
579
|
-
"employeeId"
|
|
580
|
-
]
|
|
581
|
-
},
|
|
582
|
-
"Employee.OnboardingSummary": {
|
|
715
|
+
"Employee.StateTaxes": {
|
|
583
716
|
"endpoints": [
|
|
584
717
|
{
|
|
585
718
|
"method": "GET",
|
|
586
|
-
"path": "/v1/employees/:
|
|
719
|
+
"path": "/v1/employees/:employeeUuid/state_taxes"
|
|
587
720
|
},
|
|
588
721
|
{
|
|
589
|
-
"method": "
|
|
590
|
-
"path": "/v1/employees/:
|
|
722
|
+
"method": "PUT",
|
|
723
|
+
"path": "/v1/employees/:employeeUuid/state_taxes"
|
|
591
724
|
}
|
|
592
725
|
],
|
|
593
726
|
"variables": [
|
|
594
|
-
"
|
|
727
|
+
"employeeUuid"
|
|
595
728
|
]
|
|
596
729
|
},
|
|
597
730
|
"Employee.PaymentMethod": {
|
|
@@ -626,99 +759,89 @@
|
|
|
626
759
|
"employeeId"
|
|
627
760
|
]
|
|
628
761
|
},
|
|
629
|
-
"Employee.
|
|
762
|
+
"Employee.Landing": {
|
|
630
763
|
"endpoints": [
|
|
631
764
|
{
|
|
632
765
|
"method": "GET",
|
|
633
|
-
"path": "/v1/
|
|
766
|
+
"path": "/v1/employees/:employeeId"
|
|
634
767
|
},
|
|
635
768
|
{
|
|
636
|
-
"method": "
|
|
637
|
-
"path": "/v1/companies/:companyId
|
|
638
|
-
}
|
|
769
|
+
"method": "GET",
|
|
770
|
+
"path": "/v1/companies/:companyId"
|
|
771
|
+
}
|
|
772
|
+
],
|
|
773
|
+
"variables": [
|
|
774
|
+
"companyId",
|
|
775
|
+
"employeeId"
|
|
776
|
+
]
|
|
777
|
+
},
|
|
778
|
+
"Employee.DocumentSigner": {
|
|
779
|
+
"endpoints": [
|
|
639
780
|
{
|
|
640
781
|
"method": "GET",
|
|
641
|
-
"path": "/v1/employees/:employeeId"
|
|
782
|
+
"path": "/v1/employees/:employeeId/forms"
|
|
642
783
|
},
|
|
643
784
|
{
|
|
644
785
|
"method": "GET",
|
|
645
|
-
"path": "/v1/employees/:employeeId
|
|
786
|
+
"path": "/v1/employees/:employeeId"
|
|
646
787
|
},
|
|
647
788
|
{
|
|
648
|
-
"method": "
|
|
649
|
-
"path": "/v1/employees/:employeeId/
|
|
789
|
+
"method": "GET",
|
|
790
|
+
"path": "/v1/employees/:employeeId/i9_authorization"
|
|
650
791
|
},
|
|
651
792
|
{
|
|
652
793
|
"method": "PUT",
|
|
653
|
-
"path": "/v1/
|
|
794
|
+
"path": "/v1/employees/:employeeId/i9_authorization"
|
|
654
795
|
},
|
|
655
796
|
{
|
|
656
|
-
"method": "
|
|
657
|
-
"path": "/v1/
|
|
797
|
+
"method": "GET",
|
|
798
|
+
"path": "/v1/employees/:employeeId/forms/:formId/pdf"
|
|
658
799
|
},
|
|
659
800
|
{
|
|
660
801
|
"method": "PUT",
|
|
661
|
-
"path": "/v1/employees/:employeeId"
|
|
802
|
+
"path": "/v1/employees/:employeeId/forms/:formId/sign"
|
|
662
803
|
},
|
|
663
804
|
{
|
|
664
805
|
"method": "GET",
|
|
665
|
-
"path": "/v1/employees/:employeeId/
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
"method": "POST",
|
|
669
|
-
"path": "/v1/employees/:employeeId/work_addresses"
|
|
670
|
-
},
|
|
671
|
-
{
|
|
672
|
-
"method": "PUT",
|
|
673
|
-
"path": "/v1/employees/:employeeId/onboarding_status"
|
|
806
|
+
"path": "/v1/employees/:employeeId/forms/:formId"
|
|
674
807
|
}
|
|
675
808
|
],
|
|
676
809
|
"variables": [
|
|
677
|
-
"companyId",
|
|
678
810
|
"employeeId",
|
|
679
|
-
"
|
|
680
|
-
"workAddressUuid"
|
|
811
|
+
"formId"
|
|
681
812
|
]
|
|
682
813
|
},
|
|
683
|
-
"Employee.
|
|
814
|
+
"Employee.EmployeeDocuments": {
|
|
684
815
|
"endpoints": [
|
|
685
816
|
{
|
|
686
817
|
"method": "GET",
|
|
687
|
-
"path": "/v1/employees/:
|
|
818
|
+
"path": "/v1/employees/:employeeId"
|
|
688
819
|
},
|
|
689
820
|
{
|
|
690
821
|
"method": "PUT",
|
|
691
|
-
"path": "/v1/employees/:
|
|
822
|
+
"path": "/v1/employees/:employeeId/onboarding_documents_config"
|
|
692
823
|
}
|
|
693
824
|
],
|
|
694
825
|
"variables": [
|
|
695
|
-
"
|
|
826
|
+
"employeeId"
|
|
696
827
|
]
|
|
697
828
|
},
|
|
698
|
-
"Employee.
|
|
829
|
+
"Employee.EmploymentEligibility": {
|
|
699
830
|
"endpoints": [
|
|
700
831
|
{
|
|
701
832
|
"method": "GET",
|
|
702
|
-
"path": "/v1/employees/:
|
|
703
|
-
},
|
|
704
|
-
{
|
|
705
|
-
"method": "PUT",
|
|
706
|
-
"path": "/v1/employees/:employeeUuid/federal_taxes"
|
|
707
|
-
},
|
|
708
|
-
{
|
|
709
|
-
"method": "GET",
|
|
710
|
-
"path": "/v1/employees/:employeeUuid/state_taxes"
|
|
833
|
+
"path": "/v1/employees/:employeeId/i9_authorization"
|
|
711
834
|
},
|
|
712
835
|
{
|
|
713
836
|
"method": "PUT",
|
|
714
|
-
"path": "/v1/employees/:
|
|
837
|
+
"path": "/v1/employees/:employeeId/i9_authorization"
|
|
715
838
|
}
|
|
716
839
|
],
|
|
717
840
|
"variables": [
|
|
718
|
-
"
|
|
841
|
+
"employeeId"
|
|
719
842
|
]
|
|
720
843
|
},
|
|
721
|
-
"Employee.
|
|
844
|
+
"Employee.TerminateEmployee": {
|
|
722
845
|
"endpoints": [
|
|
723
846
|
{
|
|
724
847
|
"method": "GET",
|
|
@@ -747,131 +870,101 @@
|
|
|
747
870
|
{
|
|
748
871
|
"method": "GET",
|
|
749
872
|
"path": "/v1/companies/:companyId/payrolls"
|
|
750
|
-
},
|
|
751
|
-
{
|
|
752
|
-
"method": "DELETE",
|
|
753
|
-
"path": "/v1/employees/:employeeId/terminations"
|
|
754
|
-
},
|
|
755
|
-
{
|
|
756
|
-
"method": "GET",
|
|
757
|
-
"path": "/v1/companies/:companyId/employees"
|
|
758
|
-
},
|
|
759
|
-
{
|
|
760
|
-
"method": "PUT",
|
|
761
|
-
"path": "/v1/companies/:companyId/payrolls/:payrollId/prepare"
|
|
762
873
|
}
|
|
763
874
|
],
|
|
764
875
|
"variables": [
|
|
765
876
|
"companyId",
|
|
766
|
-
"employeeId"
|
|
767
|
-
"payrollId"
|
|
768
|
-
]
|
|
769
|
-
},
|
|
770
|
-
"InformationRequests": {
|
|
771
|
-
"endpoints": [
|
|
772
|
-
{
|
|
773
|
-
"method": "GET",
|
|
774
|
-
"path": "/v1/companies/:companyUuid/information_requests"
|
|
775
|
-
},
|
|
776
|
-
{
|
|
777
|
-
"method": "PUT",
|
|
778
|
-
"path": "/v1/information_requests/:informationRequestUuid/submit"
|
|
779
|
-
}
|
|
780
|
-
],
|
|
781
|
-
"variables": [
|
|
782
|
-
"companyUuid",
|
|
783
|
-
"informationRequestUuid"
|
|
877
|
+
"employeeId"
|
|
784
878
|
]
|
|
785
879
|
},
|
|
786
|
-
"
|
|
880
|
+
"Employee.TerminationSummary": {
|
|
787
881
|
"endpoints": [
|
|
788
882
|
{
|
|
789
883
|
"method": "GET",
|
|
790
|
-
"path": "/v1/
|
|
884
|
+
"path": "/v1/employees/:employeeId"
|
|
791
885
|
},
|
|
792
886
|
{
|
|
793
887
|
"method": "GET",
|
|
794
|
-
"path": "/v1/
|
|
888
|
+
"path": "/v1/employees/:employeeId/terminations"
|
|
795
889
|
},
|
|
796
890
|
{
|
|
797
|
-
"method": "
|
|
798
|
-
"path": "/v1/
|
|
891
|
+
"method": "DELETE",
|
|
892
|
+
"path": "/v1/employees/:employeeId/terminations"
|
|
799
893
|
},
|
|
800
894
|
{
|
|
801
895
|
"method": "GET",
|
|
802
|
-
"path": "/v1/
|
|
896
|
+
"path": "/v1/companies/:companyId/employees"
|
|
803
897
|
}
|
|
804
898
|
],
|
|
805
899
|
"variables": [
|
|
806
900
|
"companyId",
|
|
807
|
-
"
|
|
808
|
-
"wireInRequestUuid"
|
|
901
|
+
"employeeId"
|
|
809
902
|
]
|
|
810
903
|
},
|
|
811
|
-
"
|
|
904
|
+
"Employee.Taxes": {
|
|
812
905
|
"endpoints": [
|
|
813
906
|
{
|
|
814
907
|
"method": "GET",
|
|
815
|
-
"path": "/v1/
|
|
908
|
+
"path": "/v1/employees/:employeeUuid/federal_taxes"
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
"method": "PUT",
|
|
912
|
+
"path": "/v1/employees/:employeeUuid/federal_taxes"
|
|
816
913
|
},
|
|
817
914
|
{
|
|
818
915
|
"method": "GET",
|
|
819
|
-
"path": "/v1/
|
|
916
|
+
"path": "/v1/employees/:employeeUuid/state_taxes"
|
|
820
917
|
},
|
|
821
918
|
{
|
|
822
|
-
"method": "
|
|
823
|
-
"path": "/v1/
|
|
919
|
+
"method": "PUT",
|
|
920
|
+
"path": "/v1/employees/:employeeUuid/state_taxes"
|
|
824
921
|
}
|
|
825
922
|
],
|
|
826
923
|
"variables": [
|
|
827
|
-
"
|
|
828
|
-
"payrollId"
|
|
924
|
+
"employeeUuid"
|
|
829
925
|
]
|
|
830
926
|
},
|
|
831
|
-
"
|
|
927
|
+
"InformationRequests.InformationRequestsFlow": {
|
|
832
928
|
"endpoints": [
|
|
833
929
|
{
|
|
834
930
|
"method": "GET",
|
|
835
|
-
"path": "/v1/companies/:
|
|
931
|
+
"path": "/v1/companies/:companyUuid/information_requests"
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"method": "PUT",
|
|
935
|
+
"path": "/v1/information_requests/:informationRequestUuid/submit"
|
|
836
936
|
}
|
|
837
937
|
],
|
|
838
938
|
"variables": [
|
|
839
|
-
"
|
|
840
|
-
"
|
|
939
|
+
"companyUuid",
|
|
940
|
+
"informationRequestUuid"
|
|
841
941
|
]
|
|
842
942
|
},
|
|
843
|
-
"
|
|
943
|
+
"InformationRequests.InformationRequestList": {
|
|
844
944
|
"endpoints": [
|
|
845
|
-
{
|
|
846
|
-
"method": "POST",
|
|
847
|
-
"path": "/v1/companies/:companyId/payrolls"
|
|
848
|
-
},
|
|
849
945
|
{
|
|
850
946
|
"method": "GET",
|
|
851
|
-
"path": "/v1/companies/:
|
|
947
|
+
"path": "/v1/companies/:companyUuid/information_requests"
|
|
852
948
|
}
|
|
853
949
|
],
|
|
854
950
|
"variables": [
|
|
855
|
-
"
|
|
951
|
+
"companyUuid"
|
|
856
952
|
]
|
|
857
953
|
},
|
|
858
|
-
"
|
|
954
|
+
"InformationRequests.InformationRequestForm": {
|
|
859
955
|
"endpoints": [
|
|
860
956
|
{
|
|
861
957
|
"method": "GET",
|
|
862
|
-
"path": "/v1/companies/:companyUuid/
|
|
863
|
-
},
|
|
864
|
-
{
|
|
865
|
-
"method": "GET",
|
|
866
|
-
"path": "/v1/companies/:companyUuid/recovery_cases"
|
|
958
|
+
"path": "/v1/companies/:companyUuid/information_requests"
|
|
867
959
|
},
|
|
868
960
|
{
|
|
869
|
-
"method": "
|
|
870
|
-
"path": "/v1/
|
|
961
|
+
"method": "PUT",
|
|
962
|
+
"path": "/v1/information_requests/:informationRequestUuid/submit"
|
|
871
963
|
}
|
|
872
964
|
],
|
|
873
965
|
"variables": [
|
|
874
|
-
"companyUuid"
|
|
966
|
+
"companyUuid",
|
|
967
|
+
"informationRequestUuid"
|
|
875
968
|
]
|
|
876
969
|
},
|
|
877
970
|
"Payroll.PayrollConfiguration": {
|
|
@@ -907,11 +1000,16 @@
|
|
|
907
1000
|
{
|
|
908
1001
|
"method": "PUT",
|
|
909
1002
|
"path": "/v1/companies/:companyId/payrolls/:payrollId/prepare"
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"method": "GET",
|
|
1006
|
+
"path": "/v1/employees/:employeeId"
|
|
910
1007
|
}
|
|
911
1008
|
],
|
|
912
1009
|
"variables": [
|
|
913
1010
|
"companyId",
|
|
914
1011
|
"companyUuid",
|
|
1012
|
+
"employeeId",
|
|
915
1013
|
"payScheduleId",
|
|
916
1014
|
"payrollId",
|
|
917
1015
|
"payrollUuid"
|
|
@@ -988,6 +1086,10 @@
|
|
|
988
1086
|
"method": "POST",
|
|
989
1087
|
"path": "/v1/companies/:companyUuid/payrolls/skip"
|
|
990
1088
|
},
|
|
1089
|
+
{
|
|
1090
|
+
"method": "DELETE",
|
|
1091
|
+
"path": "/v1/companies/:companyId/payrolls/:payrollId"
|
|
1092
|
+
},
|
|
991
1093
|
{
|
|
992
1094
|
"method": "GET",
|
|
993
1095
|
"path": "/v1/companies/:companyUuid/payrolls/blockers"
|
|
@@ -999,7 +1101,8 @@
|
|
|
999
1101
|
],
|
|
1000
1102
|
"variables": [
|
|
1001
1103
|
"companyId",
|
|
1002
|
-
"companyUuid"
|
|
1104
|
+
"companyUuid",
|
|
1105
|
+
"payrollId"
|
|
1003
1106
|
]
|
|
1004
1107
|
},
|
|
1005
1108
|
"Payroll.PayrollOverview": {
|
|
@@ -1045,170 +1148,165 @@
|
|
|
1045
1148
|
"wireInRequestUuid"
|
|
1046
1149
|
]
|
|
1047
1150
|
},
|
|
1048
|
-
"Payroll.
|
|
1049
|
-
"endpoints": [
|
|
1050
|
-
{
|
|
1051
|
-
"method": "GET",
|
|
1052
|
-
"path": "/v1/payrolls/:payrollUuid/receipt"
|
|
1053
|
-
}
|
|
1054
|
-
],
|
|
1055
|
-
"variables": [
|
|
1056
|
-
"payrollUuid"
|
|
1057
|
-
]
|
|
1058
|
-
},
|
|
1059
|
-
"Payroll.RecoveryCases": {
|
|
1151
|
+
"Payroll.PayrollFlow": {
|
|
1060
1152
|
"endpoints": [
|
|
1061
1153
|
{
|
|
1062
1154
|
"method": "GET",
|
|
1063
|
-
"path": "/v1/companies/:
|
|
1155
|
+
"path": "/v1/companies/:companyId/payrolls/:payrollId"
|
|
1064
1156
|
},
|
|
1065
1157
|
{
|
|
1066
|
-
"method": "
|
|
1067
|
-
"path": "/v1/
|
|
1158
|
+
"method": "GET",
|
|
1159
|
+
"path": "/v1/companies/:companyId/payrolls"
|
|
1068
1160
|
}
|
|
1069
1161
|
],
|
|
1070
1162
|
"variables": [
|
|
1071
|
-
"
|
|
1072
|
-
"
|
|
1163
|
+
"companyId",
|
|
1164
|
+
"payrollId"
|
|
1073
1165
|
]
|
|
1074
1166
|
},
|
|
1075
|
-
"Payroll.
|
|
1167
|
+
"Payroll.PayrollReceipts": {
|
|
1076
1168
|
"endpoints": [
|
|
1077
1169
|
{
|
|
1078
1170
|
"method": "GET",
|
|
1079
|
-
"path": "/v1/
|
|
1171
|
+
"path": "/v1/payrolls/:payrollUuid/receipt"
|
|
1080
1172
|
}
|
|
1081
1173
|
],
|
|
1082
1174
|
"variables": [
|
|
1083
|
-
"
|
|
1084
|
-
"payrollId"
|
|
1175
|
+
"payrollUuid"
|
|
1085
1176
|
]
|
|
1086
1177
|
},
|
|
1087
|
-
"Payroll.
|
|
1178
|
+
"Payroll.ConfirmWireDetails": {
|
|
1088
1179
|
"endpoints": [
|
|
1089
1180
|
{
|
|
1090
|
-
"method": "
|
|
1181
|
+
"method": "GET",
|
|
1182
|
+
"path": "/v1/companies/:companyUuid/wire_in_requests"
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
"method": "GET",
|
|
1091
1186
|
"path": "/v1/companies/:companyId/payrolls"
|
|
1092
1187
|
},
|
|
1188
|
+
{
|
|
1189
|
+
"method": "PUT",
|
|
1190
|
+
"path": "/v1/wire_in_requests/:wireInRequestUuid"
|
|
1191
|
+
},
|
|
1093
1192
|
{
|
|
1094
1193
|
"method": "GET",
|
|
1095
|
-
"path": "/v1/
|
|
1194
|
+
"path": "/v1/wire_in_requests/:wireInRequestUuid"
|
|
1096
1195
|
}
|
|
1097
1196
|
],
|
|
1098
1197
|
"variables": [
|
|
1099
|
-
"companyId"
|
|
1198
|
+
"companyId",
|
|
1199
|
+
"companyUuid",
|
|
1200
|
+
"wireInRequestUuid"
|
|
1100
1201
|
]
|
|
1101
1202
|
},
|
|
1102
|
-
"Payroll.
|
|
1203
|
+
"Payroll.PayrollBlockerList": {
|
|
1103
1204
|
"endpoints": [
|
|
1104
1205
|
{
|
|
1105
1206
|
"method": "GET",
|
|
1106
|
-
"path": "/v1/companies/:
|
|
1207
|
+
"path": "/v1/companies/:companyUuid/payrolls/blockers"
|
|
1107
1208
|
},
|
|
1108
1209
|
{
|
|
1109
1210
|
"method": "GET",
|
|
1110
|
-
"path": "/v1/companies/:
|
|
1211
|
+
"path": "/v1/companies/:companyUuid/recovery_cases"
|
|
1111
1212
|
},
|
|
1112
1213
|
{
|
|
1113
|
-
"method": "
|
|
1114
|
-
"path": "/v1/companies/:companyUuid/
|
|
1214
|
+
"method": "GET",
|
|
1215
|
+
"path": "/v1/companies/:companyUuid/information_requests"
|
|
1115
1216
|
}
|
|
1116
1217
|
],
|
|
1117
1218
|
"variables": [
|
|
1118
|
-
"companyId",
|
|
1119
1219
|
"companyUuid"
|
|
1120
1220
|
]
|
|
1121
1221
|
},
|
|
1122
|
-
"
|
|
1222
|
+
"Payroll.RecoveryCases": {
|
|
1123
1223
|
"endpoints": [
|
|
1124
1224
|
{
|
|
1125
1225
|
"method": "GET",
|
|
1126
|
-
"path": "/v1/
|
|
1127
|
-
},
|
|
1128
|
-
{
|
|
1129
|
-
"method": "POST",
|
|
1130
|
-
"path": "/v1/employees/:employeeId/jobs"
|
|
1131
|
-
},
|
|
1132
|
-
{
|
|
1133
|
-
"method": "PUT",
|
|
1134
|
-
"path": "/v1/jobs/:jobId"
|
|
1226
|
+
"path": "/v1/companies/:companyUuid/recovery_cases"
|
|
1135
1227
|
},
|
|
1136
1228
|
{
|
|
1137
1229
|
"method": "PUT",
|
|
1138
|
-
"path": "/v1/
|
|
1139
|
-
}
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1230
|
+
"path": "/v1/recovery_cases/:recoveryCaseUuid/redebit"
|
|
1231
|
+
}
|
|
1232
|
+
],
|
|
1233
|
+
"variables": [
|
|
1234
|
+
"companyUuid",
|
|
1235
|
+
"recoveryCaseUuid"
|
|
1236
|
+
]
|
|
1237
|
+
},
|
|
1238
|
+
"Payroll.OffCycleCreation": {
|
|
1239
|
+
"endpoints": [
|
|
1144
1240
|
{
|
|
1145
|
-
"method": "
|
|
1146
|
-
"path": "/v1/
|
|
1241
|
+
"method": "POST",
|
|
1242
|
+
"path": "/v1/companies/:companyId/payrolls"
|
|
1147
1243
|
},
|
|
1148
1244
|
{
|
|
1149
1245
|
"method": "GET",
|
|
1150
|
-
"path": "/v1/employees
|
|
1151
|
-
}
|
|
1246
|
+
"path": "/v1/companies/:companyId/employees"
|
|
1247
|
+
}
|
|
1248
|
+
],
|
|
1249
|
+
"variables": [
|
|
1250
|
+
"companyId"
|
|
1251
|
+
]
|
|
1252
|
+
},
|
|
1253
|
+
"Payroll.OffCycleFlow": {
|
|
1254
|
+
"endpoints": [
|
|
1152
1255
|
{
|
|
1153
1256
|
"method": "GET",
|
|
1154
|
-
"path": "/v1/companies/:companyId/
|
|
1257
|
+
"path": "/v1/companies/:companyId/payrolls/:payrollId"
|
|
1155
1258
|
}
|
|
1156
1259
|
],
|
|
1157
1260
|
"variables": [
|
|
1158
1261
|
"companyId",
|
|
1159
|
-
"
|
|
1160
|
-
"employeeId",
|
|
1161
|
-
"jobId",
|
|
1162
|
-
"locationUuid"
|
|
1262
|
+
"payrollId"
|
|
1163
1263
|
]
|
|
1164
1264
|
},
|
|
1165
|
-
"
|
|
1265
|
+
"Payroll.DismissalFlow": {
|
|
1166
1266
|
"endpoints": [
|
|
1167
1267
|
{
|
|
1168
1268
|
"method": "GET",
|
|
1169
|
-
"path": "/v1/
|
|
1170
|
-
},
|
|
1171
|
-
{
|
|
1172
|
-
"method": "POST",
|
|
1173
|
-
"path": "/v1/companies/:companyId/employees"
|
|
1269
|
+
"path": "/v1/companies/:companyId/payrolls/:payrollId"
|
|
1174
1270
|
},
|
|
1175
1271
|
{
|
|
1176
|
-
"method": "
|
|
1177
|
-
"path": "/v1/
|
|
1272
|
+
"method": "GET",
|
|
1273
|
+
"path": "/v1/companies/:companyId/pay_periods/unprocessed_termination_pay_periods"
|
|
1178
1274
|
},
|
|
1179
1275
|
{
|
|
1180
|
-
"method": "
|
|
1181
|
-
"path": "/v1/
|
|
1276
|
+
"method": "POST",
|
|
1277
|
+
"path": "/v1/companies/:companyId/payrolls"
|
|
1182
1278
|
}
|
|
1183
1279
|
],
|
|
1184
1280
|
"variables": [
|
|
1185
1281
|
"companyId",
|
|
1186
|
-
"
|
|
1282
|
+
"payrollId"
|
|
1187
1283
|
]
|
|
1188
1284
|
},
|
|
1189
|
-
"
|
|
1285
|
+
"Payroll.TransitionFlow": {
|
|
1190
1286
|
"endpoints": [
|
|
1191
1287
|
{
|
|
1192
1288
|
"method": "GET",
|
|
1193
|
-
"path": "/v1/companies/:companyId/
|
|
1194
|
-
}
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1289
|
+
"path": "/v1/companies/:companyId/payrolls/:payrollId"
|
|
1290
|
+
}
|
|
1291
|
+
],
|
|
1292
|
+
"variables": [
|
|
1293
|
+
"companyId",
|
|
1294
|
+
"payrollId"
|
|
1295
|
+
]
|
|
1296
|
+
},
|
|
1297
|
+
"Payroll.TransitionCreation": {
|
|
1298
|
+
"endpoints": [
|
|
1199
1299
|
{
|
|
1200
1300
|
"method": "POST",
|
|
1201
|
-
"path": "/v1/
|
|
1301
|
+
"path": "/v1/companies/:companyId/payrolls"
|
|
1202
1302
|
},
|
|
1203
1303
|
{
|
|
1204
|
-
"method": "
|
|
1205
|
-
"path": "/v1/
|
|
1304
|
+
"method": "GET",
|
|
1305
|
+
"path": "/v1/companies/:companyId/pay_schedules"
|
|
1206
1306
|
}
|
|
1207
1307
|
],
|
|
1208
1308
|
"variables": [
|
|
1209
|
-
"companyId"
|
|
1210
|
-
"employeeId",
|
|
1211
|
-
"workAddressUuid"
|
|
1309
|
+
"companyId"
|
|
1212
1310
|
]
|
|
1213
1311
|
}
|
|
1214
1312
|
},
|
|
@@ -1220,9 +1318,11 @@
|
|
|
1220
1318
|
"Company.FederalTaxes",
|
|
1221
1319
|
"Company.Industry",
|
|
1222
1320
|
"Company.Locations",
|
|
1321
|
+
"Company.OnboardingFlow",
|
|
1223
1322
|
"Company.OnboardingOverview",
|
|
1224
1323
|
"Company.PaySchedule",
|
|
1225
|
-
"Company.StateTaxes"
|
|
1324
|
+
"Company.StateTaxes",
|
|
1325
|
+
"Employee.OnboardingFlow"
|
|
1226
1326
|
],
|
|
1227
1327
|
"endpoints": [
|
|
1228
1328
|
{
|
|
@@ -1309,6 +1409,10 @@
|
|
|
1309
1409
|
"method": "POST",
|
|
1310
1410
|
"path": "/v1/companies/:companyId/pay_schedules"
|
|
1311
1411
|
},
|
|
1412
|
+
{
|
|
1413
|
+
"method": "GET",
|
|
1414
|
+
"path": "/v1/companies/:companyUuid/payment_configs"
|
|
1415
|
+
},
|
|
1312
1416
|
{
|
|
1313
1417
|
"method": "PUT",
|
|
1314
1418
|
"path": "/v1/companies/:companyUuid/tax_requirements/:state"
|
|
@@ -1339,6 +1443,7 @@
|
|
|
1339
1443
|
"Contractor.ContractorProfile",
|
|
1340
1444
|
"Contractor.ContractorSubmit",
|
|
1341
1445
|
"Contractor.NewHireReport",
|
|
1446
|
+
"Contractor.OnboardingFlow",
|
|
1342
1447
|
"Contractor.PaymentMethod"
|
|
1343
1448
|
],
|
|
1344
1449
|
"endpoints": [
|
|
@@ -1402,12 +1507,13 @@
|
|
|
1402
1507
|
},
|
|
1403
1508
|
"Contractor.Payments.PaymentFlow": {
|
|
1404
1509
|
"blocks": [
|
|
1405
|
-
"Contractor.
|
|
1406
|
-
"Contractor.
|
|
1407
|
-
"Contractor.
|
|
1408
|
-
"Contractor.
|
|
1409
|
-
"Contractor.
|
|
1410
|
-
"
|
|
1510
|
+
"Contractor.CreatePayment",
|
|
1511
|
+
"Contractor.PaymentFlow",
|
|
1512
|
+
"Contractor.PaymentHistory",
|
|
1513
|
+
"Contractor.PaymentStatement",
|
|
1514
|
+
"Contractor.PaymentSummary",
|
|
1515
|
+
"Contractor.PaymentsList",
|
|
1516
|
+
"InformationRequests.InformationRequestsFlow"
|
|
1411
1517
|
],
|
|
1412
1518
|
"endpoints": [
|
|
1413
1519
|
{
|
|
@@ -1471,6 +1577,7 @@
|
|
|
1471
1577
|
"Employee.EmployeeDocuments",
|
|
1472
1578
|
"Employee.EmployeeList",
|
|
1473
1579
|
"Employee.FederalTaxes",
|
|
1580
|
+
"Employee.OnboardingFlow",
|
|
1474
1581
|
"Employee.OnboardingSummary",
|
|
1475
1582
|
"Employee.PaymentMethod",
|
|
1476
1583
|
"Employee.Profile",
|
|
@@ -1637,12 +1744,13 @@
|
|
|
1637
1744
|
},
|
|
1638
1745
|
"Employee.SelfOnboardingFlow": {
|
|
1639
1746
|
"blocks": [
|
|
1640
|
-
"Employee.
|
|
1747
|
+
"Employee.DocumentSigner",
|
|
1641
1748
|
"Employee.FederalTaxes",
|
|
1642
1749
|
"Employee.Landing",
|
|
1643
1750
|
"Employee.OnboardingSummary",
|
|
1644
1751
|
"Employee.PaymentMethod",
|
|
1645
1752
|
"Employee.Profile",
|
|
1753
|
+
"Employee.SelfOnboardingFlow",
|
|
1646
1754
|
"Employee.StateTaxes"
|
|
1647
1755
|
],
|
|
1648
1756
|
"endpoints": [
|
|
@@ -1773,63 +1881,103 @@
|
|
|
1773
1881
|
"workAddressUuid"
|
|
1774
1882
|
]
|
|
1775
1883
|
},
|
|
1776
|
-
"
|
|
1884
|
+
"Employee.Terminations.TerminationFlow": {
|
|
1777
1885
|
"blocks": [
|
|
1778
|
-
"
|
|
1886
|
+
"Employee.TerminateEmployee",
|
|
1887
|
+
"Employee.TerminationFlow",
|
|
1888
|
+
"Employee.TerminationSummary",
|
|
1889
|
+
"Payroll.DismissalFlow",
|
|
1890
|
+
"Payroll.PayrollLanding"
|
|
1779
1891
|
],
|
|
1780
1892
|
"endpoints": [
|
|
1781
1893
|
{
|
|
1782
1894
|
"method": "GET",
|
|
1783
|
-
"path": "/v1/
|
|
1895
|
+
"path": "/v1/employees/:employeeId"
|
|
1784
1896
|
},
|
|
1785
1897
|
{
|
|
1786
1898
|
"method": "GET",
|
|
1787
|
-
"path": "/v1/
|
|
1899
|
+
"path": "/v1/employees/:employeeId/terminations"
|
|
1900
|
+
},
|
|
1901
|
+
{
|
|
1902
|
+
"method": "POST",
|
|
1903
|
+
"path": "/v1/employees/:employeeId/terminations"
|
|
1788
1904
|
},
|
|
1789
1905
|
{
|
|
1790
1906
|
"method": "PUT",
|
|
1791
|
-
"path": "/v1/
|
|
1907
|
+
"path": "/v1/terminations/:employeeId"
|
|
1908
|
+
},
|
|
1909
|
+
{
|
|
1910
|
+
"method": "POST",
|
|
1911
|
+
"path": "/v1/companies/:companyId/payrolls"
|
|
1792
1912
|
},
|
|
1793
1913
|
{
|
|
1794
1914
|
"method": "GET",
|
|
1795
|
-
"path": "/v1/
|
|
1915
|
+
"path": "/v1/companies/:companyId/pay_periods/unprocessed_termination_pay_periods"
|
|
1916
|
+
},
|
|
1917
|
+
{
|
|
1918
|
+
"method": "GET",
|
|
1919
|
+
"path": "/v1/companies/:companyId/payrolls"
|
|
1920
|
+
},
|
|
1921
|
+
{
|
|
1922
|
+
"method": "DELETE",
|
|
1923
|
+
"path": "/v1/employees/:employeeId/terminations"
|
|
1924
|
+
},
|
|
1925
|
+
{
|
|
1926
|
+
"method": "GET",
|
|
1927
|
+
"path": "/v1/companies/:companyId/employees"
|
|
1928
|
+
},
|
|
1929
|
+
{
|
|
1930
|
+
"method": "GET",
|
|
1931
|
+
"path": "/v1/companies/:companyId/payrolls/:payrollId"
|
|
1932
|
+
},
|
|
1933
|
+
{
|
|
1934
|
+
"method": "GET",
|
|
1935
|
+
"path": "/v1/companies/:companyUuid/wire_in_requests"
|
|
1936
|
+
},
|
|
1937
|
+
{
|
|
1938
|
+
"method": "GET",
|
|
1939
|
+
"path": "/v1/companies/:companyUuid/payrolls/blockers"
|
|
1796
1940
|
}
|
|
1797
1941
|
],
|
|
1798
1942
|
"variables": [
|
|
1799
1943
|
"companyId",
|
|
1800
1944
|
"companyUuid",
|
|
1801
|
-
"
|
|
1945
|
+
"employeeId",
|
|
1946
|
+
"payrollId"
|
|
1947
|
+
]
|
|
1948
|
+
},
|
|
1949
|
+
"Payroll.PayrollExecutionFlow": {
|
|
1950
|
+
"blocks": [
|
|
1951
|
+
"Payroll.PayrollFlow"
|
|
1952
|
+
],
|
|
1953
|
+
"endpoints": [
|
|
1954
|
+
{
|
|
1955
|
+
"method": "GET",
|
|
1956
|
+
"path": "/v1/companies/:companyId/payrolls/:payrollId"
|
|
1957
|
+
},
|
|
1958
|
+
{
|
|
1959
|
+
"method": "GET",
|
|
1960
|
+
"path": "/v1/companies/:companyId/payrolls"
|
|
1961
|
+
}
|
|
1962
|
+
],
|
|
1963
|
+
"variables": [
|
|
1964
|
+
"companyId",
|
|
1965
|
+
"payrollId"
|
|
1802
1966
|
]
|
|
1803
1967
|
},
|
|
1804
1968
|
"Payroll.PayrollFlow": {
|
|
1805
1969
|
"blocks": [
|
|
1806
|
-
"Payroll.ConfirmWireDetails",
|
|
1807
1970
|
"Payroll.OffCycleFlow",
|
|
1808
|
-
"Payroll.
|
|
1971
|
+
"Payroll.PayrollBlockerList",
|
|
1809
1972
|
"Payroll.PayrollConfiguration",
|
|
1810
1973
|
"Payroll.PayrollEditEmployee",
|
|
1974
|
+
"Payroll.PayrollFlow",
|
|
1811
1975
|
"Payroll.PayrollLanding",
|
|
1812
1976
|
"Payroll.PayrollOverview",
|
|
1813
1977
|
"Payroll.PayrollReceipts",
|
|
1814
1978
|
"Payroll.TransitionFlow"
|
|
1815
1979
|
],
|
|
1816
1980
|
"endpoints": [
|
|
1817
|
-
{
|
|
1818
|
-
"method": "GET",
|
|
1819
|
-
"path": "/v1/companies/:companyUuid/wire_in_requests"
|
|
1820
|
-
},
|
|
1821
|
-
{
|
|
1822
|
-
"method": "GET",
|
|
1823
|
-
"path": "/v1/companies/:companyId/payrolls"
|
|
1824
|
-
},
|
|
1825
|
-
{
|
|
1826
|
-
"method": "PUT",
|
|
1827
|
-
"path": "/v1/wire_in_requests/:wireInRequestUuid"
|
|
1828
|
-
},
|
|
1829
|
-
{
|
|
1830
|
-
"method": "GET",
|
|
1831
|
-
"path": "/v1/wire_in_requests/:wireInRequestUuid"
|
|
1832
|
-
},
|
|
1833
1981
|
{
|
|
1834
1982
|
"method": "GET",
|
|
1835
1983
|
"path": "/v1/companies/:companyId/payrolls/:payrollId"
|
|
@@ -1878,6 +2026,14 @@
|
|
|
1878
2026
|
"method": "GET",
|
|
1879
2027
|
"path": "/v1/employees/:employeeId/bank_accounts"
|
|
1880
2028
|
},
|
|
2029
|
+
{
|
|
2030
|
+
"method": "GET",
|
|
2031
|
+
"path": "/v1/companies/:companyId/payrolls"
|
|
2032
|
+
},
|
|
2033
|
+
{
|
|
2034
|
+
"method": "GET",
|
|
2035
|
+
"path": "/v1/companies/:companyUuid/wire_in_requests"
|
|
2036
|
+
},
|
|
1881
2037
|
{
|
|
1882
2038
|
"method": "PUT",
|
|
1883
2039
|
"path": "/v1/companies/:companyId/payrolls/:payrollId/submit"
|
|
@@ -1890,6 +2046,10 @@
|
|
|
1890
2046
|
"method": "GET",
|
|
1891
2047
|
"path": "/v1/companies/:companyId/bank_accounts"
|
|
1892
2048
|
},
|
|
2049
|
+
{
|
|
2050
|
+
"method": "GET",
|
|
2051
|
+
"path": "/v1/wire_in_requests/:wireInRequestUuid"
|
|
2052
|
+
},
|
|
1893
2053
|
{
|
|
1894
2054
|
"method": "GET",
|
|
1895
2055
|
"path": "/v1/companies/:companyUuid/payment_configs"
|
|
@@ -1912,6 +2072,24 @@
|
|
|
1912
2072
|
"payrollUuid",
|
|
1913
2073
|
"wireInRequestUuid"
|
|
1914
2074
|
]
|
|
2075
|
+
},
|
|
2076
|
+
"UNSTABLE_TimeOff.TimeOffFlow": {
|
|
2077
|
+
"blocks": [
|
|
2078
|
+
"UNSTABLE_TimeOff.AddEmployeesHoliday",
|
|
2079
|
+
"UNSTABLE_TimeOff.AddEmployeesToPolicy",
|
|
2080
|
+
"UNSTABLE_TimeOff.HolidaySelectionForm",
|
|
2081
|
+
"UNSTABLE_TimeOff.PolicyDetailsForm",
|
|
2082
|
+
"UNSTABLE_TimeOff.PolicyList",
|
|
2083
|
+
"UNSTABLE_TimeOff.PolicySettings",
|
|
2084
|
+
"UNSTABLE_TimeOff.PolicyTypeSelector",
|
|
2085
|
+
"UNSTABLE_TimeOff.TimeOffFlow",
|
|
2086
|
+
"UNSTABLE_TimeOff.ViewHolidayEmployees",
|
|
2087
|
+
"UNSTABLE_TimeOff.ViewHolidaySchedule",
|
|
2088
|
+
"UNSTABLE_TimeOff.ViewPolicyDetails",
|
|
2089
|
+
"UNSTABLE_TimeOff.ViewPolicyEmployees"
|
|
2090
|
+
],
|
|
2091
|
+
"endpoints": [],
|
|
2092
|
+
"variables": []
|
|
1915
2093
|
}
|
|
1916
2094
|
}
|
|
1917
2095
|
}
|