@gusto/embedded-react-sdk 0.38.0 → 0.40.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 +233 -0
- package/dist/assets/icons/percent-circle.svg.js +10 -0
- package/dist/assets/icons/percent-circle.svg.js.map +1 -0
- package/dist/assets/icons/plus-circle.svg.js +1 -1
- package/dist/assets/icons/plus-circle.svg.js.map +1 -1
- package/dist/components/Base/Base.js +2 -3
- package/dist/components/Base/Base.js.map +1 -1
- package/dist/components/Common/DataView/DataCards/DataCards.d.ts +5 -3
- package/dist/components/Common/DataView/DataCards/DataCards.js +59 -46
- package/dist/components/Common/DataView/DataCards/DataCards.js.map +1 -1
- package/dist/components/Common/DataView/DataCards/DataCards.module.scss.js +9 -7
- package/dist/components/Common/DataView/DataCards/DataCards.module.scss.js.map +1 -1
- package/dist/components/Common/DataView/DataTable/DataTable.d.ts +4 -2
- package/dist/components/Common/DataView/DataTable/DataTable.js +95 -76
- package/dist/components/Common/DataView/DataTable/DataTable.js.map +1 -1
- package/dist/components/Common/DataView/DataView.d.ts +4 -3
- package/dist/components/Common/DataView/DataView.js +24 -22
- package/dist/components/Common/DataView/DataView.js.map +1 -1
- package/dist/components/Common/DataView/useDataView.d.ts +33 -6
- package/dist/components/Common/DataView/useDataView.js +23 -20
- package/dist/components/Common/DataView/useDataView.js.map +1 -1
- package/dist/components/Common/DataView/useSelectionState.d.ts +5 -0
- package/dist/components/Common/DataView/useSelectionState.js +8 -0
- package/dist/components/Common/DataView/useSelectionState.js.map +1 -0
- package/dist/components/Common/DateRangeFilter/DateRangeFilter.d.ts +3 -1
- package/dist/components/Common/DateRangeFilter/DateRangeFilter.js +65 -71
- package/dist/components/Common/DateRangeFilter/DateRangeFilter.js.map +1 -1
- package/dist/components/Common/DateRangeFilter/DateRangeFilter.module.scss.js +10 -6
- package/dist/components/Common/DateRangeFilter/DateRangeFilter.module.scss.js.map +1 -1
- package/dist/components/Common/EmptyData/EmptyData.d.ts +2 -1
- package/dist/components/Common/EmptyData/EmptyData.js +15 -13
- package/dist/components/Common/EmptyData/EmptyData.js.map +1 -1
- package/dist/components/Common/EmptyData/EmptyData.module.scss.js +6 -4
- package/dist/components/Common/EmptyData/EmptyData.module.scss.js.map +1 -1
- package/dist/components/Common/Fields/hooks/useField.js.map +1 -1
- package/dist/components/Common/Fields/hooks/useStringifyGenericFieldValue.d.ts +2 -2
- package/dist/components/Common/Fields/hooks/useStringifyGenericFieldValue.js +2 -2
- package/dist/components/Common/Fields/hooks/useStringifyGenericFieldValue.js.map +1 -1
- package/dist/components/Common/SignatureForm/SignatureForm.js +4 -6
- package/dist/components/Common/SignatureForm/SignatureForm.js.map +1 -1
- package/dist/components/Common/SignatureForm/SignatureFormActions.js +10 -12
- package/dist/components/Common/SignatureForm/SignatureFormActions.js.map +1 -1
- package/dist/components/Common/SignatureForm/SignatureFormFields.js +6 -8
- package/dist/components/Common/SignatureForm/SignatureFormFields.js.map +1 -1
- package/dist/components/Common/UI/Alert/Alert.module.scss.js +12 -12
- package/dist/components/Common/UI/Box/Box.d.ts +1 -1
- package/dist/components/Common/UI/Box/Box.js +9 -8
- package/dist/components/Common/UI/Box/Box.js.map +1 -1
- package/dist/components/Common/UI/Box/Box.module.scss.js +12 -8
- package/dist/components/Common/UI/Box/Box.module.scss.js.map +1 -1
- package/dist/components/Common/UI/Box/BoxTypes.d.ts +2 -9
- package/dist/components/Common/UI/BoxHeader/BoxHeader.d.ts +2 -0
- package/dist/components/Common/UI/BoxHeader/BoxHeader.js +23 -0
- package/dist/components/Common/UI/BoxHeader/BoxHeader.js.map +1 -0
- package/dist/components/Common/UI/BoxHeader/BoxHeader.module.scss.js +8 -0
- package/dist/components/Common/UI/BoxHeader/BoxHeader.module.scss.js.map +1 -0
- package/dist/components/Common/UI/BoxHeader/BoxHeaderTypes.d.ts +10 -0
- package/dist/components/Common/UI/BoxHeader/BoxHeaderTypes.js +7 -0
- package/dist/components/Common/UI/BoxHeader/BoxHeaderTypes.js.map +1 -0
- package/dist/components/Common/UI/BoxHeader/index.d.ts +2 -0
- package/dist/components/Common/UI/Breadcrumbs/Breadcrumbs.js +1 -1
- package/dist/components/Common/UI/Button/Button.module.scss.js +2 -2
- package/dist/components/Common/UI/Checkbox/Checkbox.js +60 -49
- package/dist/components/Common/UI/Checkbox/Checkbox.js.map +1 -1
- package/dist/components/Common/UI/Checkbox/Checkbox.module.scss.js +10 -6
- package/dist/components/Common/UI/Checkbox/Checkbox.module.scss.js.map +1 -1
- package/dist/components/Common/UI/ComboBox/ComboBox.js +1 -1
- package/dist/components/Common/UI/ComboBox/ComboBox.js.map +1 -1
- package/dist/components/Common/UI/ComboBox/ComboBoxTypes.d.ts +1 -1
- package/dist/components/Common/UI/DatePicker/DatePicker.module.scss.js +6 -6
- package/dist/components/Common/UI/DateRangePicker/DateRangePicker.js +34 -36
- package/dist/components/Common/UI/DateRangePicker/DateRangePicker.js.map +1 -1
- package/dist/components/Common/UI/DateRangePicker/DateRangePicker.module.scss.js +12 -12
- package/dist/components/Common/UI/DescriptionList/DescriptionList.js +19 -12
- package/dist/components/Common/UI/DescriptionList/DescriptionList.js.map +1 -1
- package/dist/components/Common/UI/DescriptionList/DescriptionList.module.scss.js +6 -4
- package/dist/components/Common/UI/DescriptionList/DescriptionList.module.scss.js.map +1 -1
- package/dist/components/Common/UI/DescriptionList/DescriptionListTypes.d.ts +6 -1
- package/dist/components/Common/UI/DescriptionList/DescriptionListTypes.js +4 -1
- package/dist/components/Common/UI/DescriptionList/DescriptionListTypes.js.map +1 -1
- package/dist/components/Common/UI/FileInput/FileInput.js +1 -1
- package/dist/components/Common/UI/Heading/Heading.module.scss.js +15 -15
- package/dist/components/Common/UI/Input/Input.js.map +1 -1
- package/dist/components/Common/UI/Menu/Menu.module.scss.js +5 -5
- package/dist/components/Common/UI/ProgressBar/ProgressBar.js +4 -4
- package/dist/components/Common/UI/RadioGroup/RadioGroupTypes.d.ts +1 -1
- package/dist/components/Common/UI/RadioGroup/RadioGroupTypes.js.map +1 -1
- package/dist/components/Common/UI/Select/Select.js +22 -22
- package/dist/components/Common/UI/Select/Select.js.map +1 -1
- package/dist/components/Common/UI/Select/SelectTypes.d.ts +1 -1
- package/dist/components/Common/UI/Table/Table.js +12 -12
- package/dist/components/Common/UI/Table/Table.js.map +1 -1
- package/dist/components/Common/UI/Table/Table.module.scss.js +1 -1
- package/dist/components/Common/UI/Table/TableTypes.d.ts +3 -3
- package/dist/components/Common/UI/Table/TableTypes.js +3 -3
- package/dist/components/Common/UI/Table/TableTypes.js.map +1 -1
- package/dist/components/Common/UI/TextArea/TextArea.js +1 -1
- package/dist/components/Common/UI/TextArea/TextArea.js.map +1 -1
- package/dist/components/Common/UI/TextInput/TextInput.js +13 -13
- package/dist/components/Common/UI/TextInput/TextInput.js.map +1 -1
- package/dist/components/Company/AssignSignatory/AssignSignatory.js +2 -3
- package/dist/components/Company/AssignSignatory/AssignSignatory.js.map +1 -1
- package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js +6 -8
- package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js.map +1 -1
- package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js +8 -10
- package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js.map +1 -1
- package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatoryForm.js +11 -11
- package/dist/components/Company/AssignSignatory/CreateSignatory/useCreateSignatory.js +3 -5
- package/dist/components/Company/AssignSignatory/CreateSignatory/useCreateSignatory.js.map +1 -1
- package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js +6 -8
- package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js.map +1 -1
- package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatoryForm.js +1 -1
- package/dist/components/Company/AssignSignatory/InviteSignatory/useInviteSignatory.js +3 -5
- package/dist/components/Company/AssignSignatory/InviteSignatory/useInviteSignatory.js.map +1 -1
- package/dist/components/Company/AssignSignatory/TitleSelect.js +2 -3
- package/dist/components/Company/AssignSignatory/TitleSelect.js.map +1 -1
- package/dist/components/Company/AssignSignatory/useAssignSignatory.js +5 -7
- package/dist/components/Company/AssignSignatory/useAssignSignatory.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 +9 -11
- package/dist/components/Company/BankAccount/BankAccountForm/Form.js.map +1 -1
- package/dist/components/Company/BankAccount/BankAccountForm/context.js +3 -5
- package/dist/components/Company/BankAccount/BankAccountForm/context.js.map +1 -1
- package/dist/components/Company/BankAccount/BankAccountList/Actions.js +10 -12
- package/dist/components/Company/BankAccount/BankAccountList/Actions.js.map +1 -1
- package/dist/components/Company/BankAccount/BankAccountVerify/Actions.js +11 -13
- 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 +5 -7
- package/dist/components/Company/DocumentSigner/DocumentList/Actions.js.map +1 -1
- package/dist/components/Company/DocumentSigner/DocumentList/DocumentList.js +8 -9
- package/dist/components/Company/DocumentSigner/DocumentList/DocumentList.js.map +1 -1
- package/dist/components/Company/DocumentSigner/DocumentList/useDocumentList.js +3 -5
- package/dist/components/Company/DocumentSigner/DocumentList/useDocumentList.js.map +1 -1
- package/dist/components/Company/DocumentSigner/SignatureForm/SignatureForm.js +2 -3
- package/dist/components/Company/DocumentSigner/SignatureForm/SignatureForm.js.map +1 -1
- package/dist/components/Company/DocumentSigner/SignatureForm/useSignatureForm.js +3 -5
- package/dist/components/Company/DocumentSigner/SignatureForm/useSignatureForm.js.map +1 -1
- package/dist/components/Company/DocumentSigner/shared/useSignCompanyForm/fields.d.ts +9 -0
- package/dist/components/Company/DocumentSigner/shared/useSignCompanyForm/fields.js +14 -0
- package/dist/components/Company/DocumentSigner/shared/useSignCompanyForm/fields.js.map +1 -0
- package/dist/components/Company/DocumentSigner/shared/useSignCompanyForm/index.d.ts +5 -0
- package/dist/components/Company/DocumentSigner/shared/useSignCompanyForm/signCompanyFormSchema.d.ts +25 -0
- package/dist/components/Company/DocumentSigner/shared/useSignCompanyForm/signCompanyFormSchema.js +24 -0
- package/dist/components/Company/DocumentSigner/shared/useSignCompanyForm/signCompanyFormSchema.js.map +1 -0
- package/dist/components/Company/DocumentSigner/shared/useSignCompanyForm/useSignCompanyForm.d.ts +32 -0
- package/dist/components/Company/DocumentSigner/shared/useSignCompanyForm/useSignCompanyForm.js +106 -0
- package/dist/components/Company/DocumentSigner/shared/useSignCompanyForm/useSignCompanyForm.js.map +1 -0
- package/dist/components/Company/FederalTaxes/Actions.js +7 -9
- package/dist/components/Company/FederalTaxes/Actions.js.map +1 -1
- package/dist/components/Company/FederalTaxes/FederalTaxes.js +17 -18
- package/dist/components/Company/FederalTaxes/FederalTaxes.js.map +1 -1
- package/dist/components/Company/FederalTaxes/Form.js +4 -6
- package/dist/components/Company/FederalTaxes/Form.js.map +1 -1
- package/dist/components/Company/FederalTaxes/useFederalTaxes.js +8 -10
- package/dist/components/Company/FederalTaxes/useFederalTaxes.js.map +1 -1
- package/dist/components/Company/Industry/Actions.js +5 -7
- package/dist/components/Company/Industry/Actions.js.map +1 -1
- package/dist/components/Company/Industry/Context.js +6 -8
- package/dist/components/Company/Industry/Context.js.map +1 -1
- package/dist/components/Company/Industry/Edit.js +10 -12
- package/dist/components/Company/Industry/Edit.js.map +1 -1
- package/dist/components/Company/Locations/LocationForm/Actions.js +6 -8
- package/dist/components/Company/Locations/LocationForm/Actions.js.map +1 -1
- package/dist/components/Company/Locations/LocationForm/Form.js +1 -1
- package/dist/components/Company/Locations/LocationForm/LocationForm.js +3 -4
- package/dist/components/Company/Locations/LocationForm/LocationForm.js.map +1 -1
- package/dist/components/Company/Locations/LocationForm/useLocationForm.js +3 -5
- package/dist/components/Company/Locations/LocationForm/useLocationForm.js.map +1 -1
- package/dist/components/Company/Locations/LocationsList/Actions.js +6 -8
- package/dist/components/Company/Locations/LocationsList/Actions.js.map +1 -1
- package/dist/components/Company/Locations/LocationsList/List.js +8 -10
- package/dist/components/Company/Locations/LocationsList/List.js.map +1 -1
- package/dist/components/Company/Locations/LocationsList/LocationsList.js +2 -3
- package/dist/components/Company/Locations/LocationsList/LocationsList.js.map +1 -1
- package/dist/components/Company/Locations/LocationsList/useLocationsList.js +3 -5
- package/dist/components/Company/Locations/LocationsList/useLocationsList.js.map +1 -1
- package/dist/components/Company/OnboardingOverview/Completed.js +12 -14
- package/dist/components/Company/OnboardingOverview/Completed.js.map +1 -1
- package/dist/components/Company/OnboardingOverview/MissingRequirements.js +5 -7
- package/dist/components/Company/OnboardingOverview/MissingRequirements.js.map +1 -1
- package/dist/components/Company/OnboardingOverview/OnboardingOverview.js +2 -3
- package/dist/components/Company/OnboardingOverview/OnboardingOverview.js.map +1 -1
- package/dist/components/Company/OnboardingOverview/context.js +3 -5
- package/dist/components/Company/OnboardingOverview/context.js.map +1 -1
- package/dist/components/Company/PaySchedule/PaySchedule.js +70 -68
- package/dist/components/Company/PaySchedule/PaySchedule.js.map +1 -1
- package/dist/components/Company/PaySchedule/_parts/Actions.js +7 -9
- package/dist/components/Company/PaySchedule/_parts/Actions.js.map +1 -1
- package/dist/components/Company/PaySchedule/_parts/Edit.js +37 -32
- package/dist/components/Company/PaySchedule/_parts/Edit.js.map +1 -1
- package/dist/components/Company/PaySchedule/_parts/Head.js +8 -10
- package/dist/components/Company/PaySchedule/_parts/Head.js.map +1 -1
- package/dist/components/Company/PaySchedule/_parts/List.js +13 -15
- package/dist/components/Company/PaySchedule/_parts/List.js.map +1 -1
- package/dist/components/Company/PaySchedule/shared/usePayScheduleForm/fields.d.ts +23 -0
- package/dist/components/Company/PaySchedule/shared/usePayScheduleForm/fields.js +37 -0
- package/dist/components/Company/PaySchedule/shared/usePayScheduleForm/fields.js.map +1 -0
- package/dist/components/Company/PaySchedule/shared/usePayScheduleForm/index.d.ts +5 -0
- package/dist/components/Company/PaySchedule/shared/usePayScheduleForm/payScheduleSchema.d.ts +55 -0
- package/dist/components/Company/PaySchedule/shared/usePayScheduleForm/payScheduleSchema.js +54 -0
- package/dist/components/Company/PaySchedule/shared/usePayScheduleForm/payScheduleSchema.js.map +1 -0
- package/dist/components/Company/PaySchedule/shared/usePayScheduleForm/usePayScheduleForm.d.ts +33 -0
- package/dist/components/Company/PaySchedule/shared/usePayScheduleForm/usePayScheduleForm.js +184 -0
- package/dist/components/Company/PaySchedule/shared/usePayScheduleForm/usePayScheduleForm.js.map +1 -0
- package/dist/components/Company/PaySchedule/usePaySchedule.d.ts +5 -6
- package/dist/components/Company/PaySchedule/usePaySchedule.js +5 -7
- package/dist/components/Company/PaySchedule/usePaySchedule.js.map +1 -1
- package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js +5 -7
- package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js.map +1 -1
- package/dist/components/Company/StateTaxes/StateTaxesForm/StateTaxesForm.js +33 -33
- package/dist/components/Company/StateTaxes/StateTaxesForm/StateTaxesForm.js.map +1 -1
- package/dist/components/Company/StateTaxes/StateTaxesForm/context.js +3 -5
- package/dist/components/Company/StateTaxes/StateTaxesForm/context.js.map +1 -1
- package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js +6 -8
- package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js.map +1 -1
- package/dist/components/Company/StateTaxes/StateTaxesList/List.js +5 -7
- package/dist/components/Company/StateTaxes/StateTaxesList/List.js.map +1 -1
- package/dist/components/Company/StateTaxes/StateTaxesList/StateTaxesList.js +14 -14
- package/dist/components/Company/StateTaxes/StateTaxesList/StateTaxesList.js.map +1 -1
- package/dist/components/Company/StateTaxes/StateTaxesList/context.d.ts +2 -2
- package/dist/components/Company/StateTaxes/StateTaxesList/context.js +3 -5
- package/dist/components/Company/StateTaxes/StateTaxesList/context.js.map +1 -1
- package/dist/components/Company/exports/companyOnboarding.d.ts +14 -0
- package/dist/components/Company/exports/companyOnboarding.js +31 -0
- package/dist/components/Company/exports/companyOnboarding.js.map +1 -0
- package/dist/components/Contractor/Address/Address.js +3 -4
- package/dist/components/Contractor/Address/Address.js.map +1 -1
- package/dist/components/Contractor/Address/Form.js +4 -4
- package/dist/components/Contractor/Address/useAddress.js +5 -7
- package/dist/components/Contractor/Address/useAddress.js.map +1 -1
- package/dist/components/Contractor/ContractorList/index.js +19 -20
- package/dist/components/Contractor/ContractorList/index.js.map +1 -1
- package/dist/components/Contractor/NewHireReport/NewHireReport.js +2 -3
- package/dist/components/Contractor/NewHireReport/NewHireReport.js.map +1 -1
- package/dist/components/Contractor/PaymentMethod/BankAccountForm.js +5 -7
- package/dist/components/Contractor/PaymentMethod/BankAccountForm.js.map +1 -1
- package/dist/components/Contractor/PaymentMethod/PaymentMethod.js +2 -3
- package/dist/components/Contractor/PaymentMethod/PaymentMethod.js.map +1 -1
- package/dist/components/Contractor/PaymentMethod/PaymentTypeForm.js +2 -3
- package/dist/components/Contractor/PaymentMethod/PaymentTypeForm.js.map +1 -1
- package/dist/components/Contractor/Payments/CreatePayment/CreatePayment.js +135 -126
- package/dist/components/Contractor/Payments/CreatePayment/CreatePayment.js.map +1 -1
- package/dist/components/Contractor/Payments/CreatePayment/CreatePaymentPresentation.d.ts +2 -1
- package/dist/components/Contractor/Payments/CreatePayment/CreatePaymentPresentation.js +77 -76
- package/dist/components/Contractor/Payments/CreatePayment/CreatePaymentPresentation.js.map +1 -1
- package/dist/components/Contractor/Payments/CreatePayment/EditContractorPaymentPresentation.js +10 -10
- package/dist/components/Contractor/Payments/CreatePayment/FastAchSubmissionBlockerBanner.d.ts +2 -1
- package/dist/components/Contractor/Payments/CreatePayment/FastAchSubmissionBlockerBanner.js +5 -7
- package/dist/components/Contractor/Payments/CreatePayment/FastAchSubmissionBlockerBanner.js.map +1 -1
- package/dist/components/Contractor/Payments/CreatePayment/PreviewPresentation.d.ts +2 -1
- package/dist/components/Contractor/Payments/CreatePayment/PreviewPresentation.js +83 -84
- package/dist/components/Contractor/Payments/CreatePayment/PreviewPresentation.js.map +1 -1
- package/dist/components/Contractor/Payments/PaymentHistory/PaymentHistoryPresentation.js +2 -4
- package/dist/components/Contractor/Payments/PaymentHistory/PaymentHistoryPresentation.js.map +1 -1
- package/dist/components/Contractor/Payments/PaymentStatement/PaymentStatement.js +10 -10
- package/dist/components/Contractor/Payments/PaymentStatement/PaymentStatement.js.map +1 -1
- package/dist/components/Contractor/Payments/PaymentStatement/PaymentStatementPresentation.js +67 -79
- package/dist/components/Contractor/Payments/PaymentStatement/PaymentStatementPresentation.js.map +1 -1
- package/dist/components/Contractor/Payments/PaymentStatement/PaymentStatementPresentation.module.scss.js +10 -12
- package/dist/components/Contractor/Payments/PaymentStatement/PaymentStatementPresentation.module.scss.js.map +1 -1
- package/dist/components/Contractor/Payments/PaymentSummary/PaymentSummaryPresentation.js +47 -49
- package/dist/components/Contractor/Payments/PaymentSummary/PaymentSummaryPresentation.js.map +1 -1
- package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.js +63 -65
- package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.js.map +1 -1
- package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.module.scss.js +4 -4
- package/dist/components/Contractor/Profile/ContractorProfileForm.js +15 -15
- package/dist/components/Contractor/Profile/useContractorProfile.js +33 -35
- package/dist/components/Contractor/Profile/useContractorProfile.js.map +1 -1
- package/dist/components/Contractor/Submit/Submit.js +73 -51
- package/dist/components/Contractor/Submit/Submit.js.map +1 -1
- package/dist/components/Contractor/exports/contractorOnboarding.d.ts +7 -0
- package/dist/components/Contractor/exports/contractorOnboarding.js +17 -0
- package/dist/components/Contractor/exports/contractorOnboarding.js.map +1 -0
- package/dist/components/Employee/Compensation/Actions.js +5 -6
- package/dist/components/Employee/Compensation/Actions.js.map +1 -1
- package/dist/components/Employee/Compensation/Compensation.js +80 -77
- package/dist/components/Employee/Compensation/Compensation.js.map +1 -1
- package/dist/components/Employee/Compensation/Edit.js +27 -28
- package/dist/components/Employee/Compensation/Edit.js.map +1 -1
- package/dist/components/Employee/Compensation/List.js +23 -25
- package/dist/components/Employee/Compensation/List.js.map +1 -1
- package/dist/components/Employee/Compensation/shared/useCompensationForm/compensationSchema.d.ts +103 -0
- package/dist/components/Employee/Compensation/shared/useCompensationForm/compensationSchema.js +90 -0
- package/dist/components/Employee/Compensation/shared/useCompensationForm/compensationSchema.js.map +1 -0
- package/dist/components/{UNSTABLE_Hooks/hooks → Employee/Compensation/shared}/useCompensationForm/fields.d.ts +9 -9
- package/dist/components/{UNSTABLE_Hooks/hooks → Employee/Compensation/shared}/useCompensationForm/fields.js +6 -6
- package/dist/components/Employee/Compensation/shared/useCompensationForm/fields.js.map +1 -0
- package/dist/components/Employee/Compensation/shared/useCompensationForm/index.d.ts +5 -0
- package/dist/components/Employee/Compensation/shared/useCompensationForm/useCompensationForm.d.ts +43 -0
- package/dist/components/Employee/Compensation/shared/useCompensationForm/useCompensationForm.js +262 -0
- package/dist/components/Employee/Compensation/shared/useCompensationForm/useCompensationForm.js.map +1 -0
- package/dist/components/Employee/Dashboard/BasicDetailsView.d.ts +13 -0
- package/dist/components/Employee/Dashboard/BasicDetailsView.js +107 -0
- package/dist/components/Employee/Dashboard/BasicDetailsView.js.map +1 -0
- package/dist/components/Employee/Dashboard/Dashboard.d.ts +5 -0
- package/dist/components/Employee/Dashboard/Dashboard.js +146 -0
- package/dist/components/Employee/Dashboard/Dashboard.js.map +1 -0
- package/dist/components/Employee/Dashboard/DashboardComponents.d.ts +5 -0
- package/dist/components/Employee/Dashboard/DashboardComponents.js +12 -0
- package/dist/components/Employee/Dashboard/DashboardComponents.js.map +1 -0
- package/dist/components/Employee/Dashboard/DashboardFlow.d.ts +5 -0
- package/dist/components/Employee/Dashboard/DashboardFlow.js +25 -0
- package/dist/components/Employee/Dashboard/DashboardFlow.js.map +1 -0
- package/dist/components/Employee/Dashboard/DocumentsView.d.ts +7 -0
- package/dist/components/Employee/Dashboard/DocumentsView.js +48 -0
- package/dist/components/Employee/Dashboard/DocumentsView.js.map +1 -0
- package/dist/components/Employee/Dashboard/JobAndPayView.d.ts +22 -0
- package/dist/components/Employee/Dashboard/JobAndPayView.js +211 -0
- package/dist/components/Employee/Dashboard/JobAndPayView.js.map +1 -0
- package/dist/components/Employee/Dashboard/TaxesView.d.ts +13 -0
- package/dist/components/Employee/Dashboard/TaxesView.js +97 -0
- package/dist/components/Employee/Dashboard/TaxesView.js.map +1 -0
- package/dist/components/Employee/Dashboard/dashboardStateMachine.d.ts +3 -0
- package/dist/components/Employee/Dashboard/dashboardStateMachine.js +8 -0
- package/dist/components/Employee/Dashboard/dashboardStateMachine.js.map +1 -0
- package/dist/components/Employee/Dashboard/hooks/index.d.ts +9 -0
- package/dist/components/Employee/Dashboard/hooks/useEmployeeBasicDetails.d.ts +17 -0
- package/dist/components/Employee/Dashboard/hooks/useEmployeeBasicDetails.js +29 -0
- package/dist/components/Employee/Dashboard/hooks/useEmployeeBasicDetails.js.map +1 -0
- package/dist/components/Employee/Dashboard/hooks/useEmployeeCompensation.d.ts +28 -0
- package/dist/components/Employee/Dashboard/hooks/useEmployeeCompensation.js +52 -0
- package/dist/components/Employee/Dashboard/hooks/useEmployeeCompensation.js.map +1 -0
- package/dist/components/Employee/Dashboard/hooks/useEmployeeForms.d.ts +13 -0
- package/dist/components/Employee/Dashboard/hooks/useEmployeeForms.js +22 -0
- package/dist/components/Employee/Dashboard/hooks/useEmployeeForms.js.map +1 -0
- package/dist/components/Employee/Dashboard/hooks/useEmployeeTaxes.d.ts +17 -0
- package/dist/components/Employee/Dashboard/hooks/useEmployeeTaxes.js +24 -0
- package/dist/components/Employee/Dashboard/hooks/useEmployeeTaxes.js.map +1 -0
- package/dist/components/Employee/Dashboard/index.d.ts +14 -0
- package/dist/components/Employee/Deductions/DeductionsForm/ChildSupportForm.js +10 -12
- package/dist/components/Employee/Deductions/DeductionsForm/ChildSupportForm.js.map +1 -1
- package/dist/components/Employee/Deductions/DeductionsForm/CustomDeductionForm.js +17 -19
- package/dist/components/Employee/Deductions/DeductionsForm/CustomDeductionForm.js.map +1 -1
- package/dist/components/Employee/Deductions/DeductionsForm/GarnishmentForm.js +11 -13
- package/dist/components/Employee/Deductions/DeductionsForm/GarnishmentForm.js.map +1 -1
- package/dist/components/Employee/Deductions/DeductionsList/DeductionsList.js +7 -8
- package/dist/components/Employee/Deductions/DeductionsList/DeductionsList.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js +6 -8
- package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.js +5 -6
- 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/DocumentList/useDocumentList.js +3 -5
- package/dist/components/Employee/DocumentSigner/DocumentList/useDocumentList.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/EmploymentEligibility/EmploymentEligibility.js +22 -22
- package/dist/components/Employee/DocumentSigner/EmploymentEligibility/EmploymentEligibility.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/EmploymentEligibility/EmploymentEligibilityPresentation.js +24 -26
- package/dist/components/Employee/DocumentSigner/EmploymentEligibility/EmploymentEligibilityPresentation.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/I9SignatureForm/I9SignatureForm.js +9 -10
- package/dist/components/Employee/DocumentSigner/I9SignatureForm/I9SignatureForm.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js +7 -8
- package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/SignatureForm/useSignatureForm.js +3 -5
- package/dist/components/Employee/DocumentSigner/SignatureForm/useSignatureForm.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/shared/useSignEmployeeForm/fields.d.ts +53 -0
- package/dist/components/Employee/DocumentSigner/shared/useSignEmployeeForm/fields.js +164 -0
- package/dist/components/Employee/DocumentSigner/shared/useSignEmployeeForm/fields.js.map +1 -0
- package/dist/components/Employee/DocumentSigner/shared/useSignEmployeeForm/index.d.ts +5 -0
- package/dist/components/Employee/DocumentSigner/shared/useSignEmployeeForm/signEmployeeFormSchema.d.ts +150 -0
- package/dist/components/Employee/DocumentSigner/shared/useSignEmployeeForm/signEmployeeFormSchema.js +152 -0
- package/dist/components/Employee/DocumentSigner/shared/useSignEmployeeForm/signEmployeeFormSchema.js.map +1 -0
- package/dist/components/Employee/DocumentSigner/shared/useSignEmployeeForm/useSignEmployeeForm.d.ts +47 -0
- package/dist/components/Employee/DocumentSigner/shared/useSignEmployeeForm/useSignEmployeeForm.js +179 -0
- package/dist/components/Employee/DocumentSigner/shared/useSignEmployeeForm/useSignEmployeeForm.js.map +1 -0
- package/dist/components/Employee/EmployeeDocuments/EmployeeDocumentsPresentation.js +2 -4
- package/dist/components/Employee/EmployeeDocuments/EmployeeDocumentsPresentation.js.map +1 -1
- package/dist/components/Employee/FederalTaxes/Actions.js +6 -8
- package/dist/components/Employee/FederalTaxes/Actions.js.map +1 -1
- package/dist/components/Employee/FederalTaxes/FederalForm.js +10 -12
- package/dist/components/Employee/FederalTaxes/FederalForm.js.map +1 -1
- package/dist/components/Employee/FederalTaxes/useFederalTaxes.js +3 -5
- package/dist/components/Employee/FederalTaxes/useFederalTaxes.js.map +1 -1
- package/dist/components/Employee/Landing/Landing.js +14 -15
- package/dist/components/Employee/Landing/Landing.js.map +1 -1
- package/dist/components/Employee/OnboardingFlow/OnboardingFlowComponents.js +1 -1
- package/dist/components/Employee/OnboardingFlow/OnboardingFlowComponents.js.map +1 -1
- package/dist/components/Employee/OnboardingSummary/OnboardingSummary.js +7 -7
- package/dist/components/Employee/PaymentMethod/Actions.js +7 -9
- package/dist/components/Employee/PaymentMethod/Actions.js.map +1 -1
- package/dist/components/Employee/PaymentMethod/BankAccountEdit.js +5 -6
- package/dist/components/Employee/PaymentMethod/BankAccountEdit.js.map +1 -1
- package/dist/components/Employee/PaymentMethod/BankAccountsList.js +6 -7
- package/dist/components/Employee/PaymentMethod/BankAccountsList.js.map +1 -1
- package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js +6 -7
- package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js.map +1 -1
- package/dist/components/Employee/PaymentMethod/Split.js +10 -11
- package/dist/components/Employee/PaymentMethod/Split.js.map +1 -1
- package/dist/components/Employee/PaymentMethod/usePaymentMethod.js +5 -7
- package/dist/components/Employee/PaymentMethod/usePaymentMethod.js.map +1 -1
- package/dist/components/Employee/Profile/AdminProfile.d.ts +2 -0
- package/dist/components/Employee/Profile/AdminProfile.js +360 -0
- package/dist/components/Employee/Profile/AdminProfile.js.map +1 -0
- package/dist/components/Employee/Profile/AdminProfile.module.scss.js +10 -0
- package/dist/components/Employee/Profile/AdminProfile.module.scss.js.map +1 -0
- package/dist/components/Employee/Profile/EmployeeProfile.d.ts +2 -0
- package/dist/components/Employee/Profile/EmployeeProfile.js +211 -0
- package/dist/components/Employee/Profile/EmployeeProfile.js.map +1 -0
- package/dist/components/Employee/Profile/EmployeeProfile.module.scss.js +10 -0
- package/dist/components/Employee/Profile/EmployeeProfile.module.scss.js.map +1 -0
- package/dist/components/Employee/Profile/Profile.d.ts +3 -3
- package/dist/components/Employee/Profile/Profile.js +25 -261
- package/dist/components/Employee/Profile/Profile.js.map +1 -1
- package/dist/components/{UNSTABLE_Hooks/hooks → Employee/Profile/shared}/useEmployeeDetailsForm/employeeDetailsSchema.d.ts +13 -4
- package/dist/components/Employee/Profile/shared/useEmployeeDetailsForm/employeeDetailsSchema.js +51 -0
- package/dist/components/Employee/Profile/shared/useEmployeeDetailsForm/employeeDetailsSchema.js.map +1 -0
- package/dist/components/{UNSTABLE_Hooks/hooks → Employee/Profile/shared}/useEmployeeDetailsForm/fields.d.ts +8 -7
- package/dist/components/{UNSTABLE_Hooks/hooks → Employee/Profile/shared}/useEmployeeDetailsForm/fields.js +5 -5
- package/dist/components/Employee/Profile/shared/useEmployeeDetailsForm/fields.js.map +1 -0
- package/dist/components/{UNSTABLE_Hooks/hooks → Employee/Profile/shared}/useEmployeeDetailsForm/index.d.ts +1 -3
- package/dist/components/Employee/Profile/shared/useEmployeeDetailsForm/useEmployeeDetailsForm.d.ts +45 -0
- package/dist/components/Employee/Profile/shared/useEmployeeDetailsForm/useEmployeeDetailsForm.js +154 -0
- package/dist/components/Employee/Profile/shared/useEmployeeDetailsForm/useEmployeeDetailsForm.js.map +1 -0
- package/dist/components/Employee/Profile/shared/useHomeAddressForm/fields.d.ts +22 -0
- package/dist/components/Employee/Profile/shared/useHomeAddressForm/fields.js +36 -0
- package/dist/components/Employee/Profile/shared/useHomeAddressForm/fields.js.map +1 -0
- package/dist/components/Employee/Profile/shared/useHomeAddressForm/homeAddressSchema.d.ts +41 -0
- package/dist/components/Employee/Profile/shared/useHomeAddressForm/homeAddressSchema.js +32 -0
- package/dist/components/Employee/Profile/shared/useHomeAddressForm/homeAddressSchema.js.map +1 -0
- package/dist/components/Employee/Profile/shared/useHomeAddressForm/index.d.ts +5 -0
- package/dist/components/Employee/Profile/shared/useHomeAddressForm/useHomeAddressForm.d.ts +44 -0
- package/dist/components/Employee/Profile/shared/useHomeAddressForm/useHomeAddressForm.js +161 -0
- package/dist/components/Employee/Profile/shared/useHomeAddressForm/useHomeAddressForm.js.map +1 -0
- package/dist/components/{UNSTABLE_Hooks/hooks → Employee/Profile/shared}/useWorkAddressForm/fields.d.ts +3 -3
- package/dist/components/{UNSTABLE_Hooks/hooks → Employee/Profile/shared}/useWorkAddressForm/fields.js +2 -2
- package/dist/components/Employee/Profile/shared/useWorkAddressForm/fields.js.map +1 -0
- package/dist/components/{UNSTABLE_Hooks/hooks → Employee/Profile/shared}/useWorkAddressForm/index.d.ts +1 -3
- package/dist/components/Employee/Profile/shared/useWorkAddressForm/useWorkAddressForm.d.ts +46 -0
- package/dist/components/Employee/Profile/shared/useWorkAddressForm/useWorkAddressForm.js +135 -0
- package/dist/components/Employee/Profile/shared/useWorkAddressForm/useWorkAddressForm.js.map +1 -0
- package/dist/components/{UNSTABLE_Hooks/hooks → Employee/Profile/shared}/useWorkAddressForm/workAddressSchema.d.ts +6 -4
- package/dist/components/Employee/Profile/shared/useWorkAddressForm/workAddressSchema.js +23 -0
- package/dist/components/Employee/Profile/shared/useWorkAddressForm/workAddressSchema.js.map +1 -0
- package/dist/components/Employee/StateTaxes/Actions.js +8 -10
- package/dist/components/Employee/StateTaxes/Actions.js.map +1 -1
- package/dist/components/Employee/StateTaxes/useStateTaxes.js +3 -5
- package/dist/components/Employee/StateTaxes/useStateTaxes.js.map +1 -1
- package/dist/components/Employee/Taxes/Actions.js +8 -10
- package/dist/components/Employee/Taxes/Actions.js.map +1 -1
- package/dist/components/Employee/Taxes/FederalForm.js +10 -12
- package/dist/components/Employee/Taxes/FederalForm.js.map +1 -1
- package/dist/components/Employee/Taxes/useTaxes.js +3 -5
- package/dist/components/Employee/Taxes/useTaxes.js.map +1 -1
- package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployee.js +5 -5
- package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployee.js.map +1 -1
- package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployeePresentation.js +14 -16
- package/dist/components/Employee/Terminations/TerminateEmployee/TerminateEmployeePresentation.js.map +1 -1
- package/dist/components/Employee/Terminations/TerminationFlow/TerminationFlowComponents.js +12 -13
- package/dist/components/Employee/Terminations/TerminationFlow/TerminationFlowComponents.js.map +1 -1
- package/dist/components/Employee/Terminations/TerminationSummary/TerminationSummaryPresentation.js +2 -4
- package/dist/components/Employee/Terminations/TerminationSummary/TerminationSummaryPresentation.js.map +1 -1
- package/dist/components/Employee/{EmployeeList → employee-list/management}/ManagementEmployeeList.d.ts +1 -1
- package/dist/components/Employee/{EmployeeList → employee-list/management}/ManagementEmployeeList.js +7 -7
- package/dist/components/Employee/employee-list/management/ManagementEmployeeList.js.map +1 -0
- package/dist/components/Employee/{EmployeeList → employee-list/management}/ManagementEmployeeListView.d.ts +1 -1
- package/dist/components/Employee/{EmployeeList → employee-list/management}/ManagementEmployeeListView.js +18 -20
- package/dist/components/Employee/employee-list/management/ManagementEmployeeListView.js.map +1 -0
- package/dist/components/Employee/employee-list/onboarding/EmployeeList.d.ts +6 -0
- package/dist/components/Employee/{EmployeeList → employee-list/onboarding}/EmployeeList.js +7 -7
- package/dist/components/Employee/employee-list/onboarding/EmployeeList.js.map +1 -0
- package/dist/components/Employee/{EmployeeList → employee-list/onboarding}/EmployeeListView.d.ts +1 -1
- package/dist/components/Employee/employee-list/onboarding/EmployeeListView.js +130 -0
- package/dist/components/Employee/employee-list/onboarding/EmployeeListView.js.map +1 -0
- package/dist/components/Employee/employee-list/shared/index.d.ts +2 -0
- package/dist/components/Employee/{EmployeeList → employee-list/shared}/useEmployeeList.d.ts +8 -10
- package/dist/components/Employee/{EmployeeList → employee-list/shared}/useEmployeeList.js +32 -28
- package/dist/components/Employee/employee-list/shared/useEmployeeList.js.map +1 -0
- package/dist/components/Employee/exports/employeeManagement.d.ts +6 -0
- package/dist/components/Employee/exports/employeeManagement.js +15 -0
- package/dist/components/Employee/exports/employeeManagement.js.map +1 -0
- package/dist/components/Employee/exports/employeeOnboarding.d.ts +14 -0
- package/dist/components/Employee/exports/employeeOnboarding.js +31 -0
- package/dist/components/Employee/exports/employeeOnboarding.js.map +1 -0
- package/dist/components/Employee/index.d.ts +3 -2
- package/dist/components/Employee/index.js +24 -24
- package/dist/components/Flow/Flow.js +16 -18
- package/dist/components/Flow/Flow.js.map +1 -1
- package/dist/components/InformationRequests/InformationRequestForm/InformationRequestForm.js +28 -29
- package/dist/components/InformationRequests/InformationRequestForm/InformationRequestForm.js.map +1 -1
- package/dist/components/InformationRequests/InformationRequestForm/InformationRequestForm.module.scss.js +14 -14
- package/dist/components/InformationRequests/InformationRequestList/InformationRequestList.js +11 -12
- package/dist/components/InformationRequests/InformationRequestList/InformationRequestList.js.map +1 -1
- package/dist/components/InformationRequests/InformationRequests.js +3 -4
- package/dist/components/InformationRequests/InformationRequests.js.map +1 -1
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsForm/ConfirmWireDetailsForm.js +8 -9
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsForm/ConfirmWireDetailsForm.js.map +1 -1
- package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelectionPresentation.js +8 -10
- package/dist/components/Payroll/Dismissal/DismissalPayPeriodSelection/DismissalPayPeriodSelectionPresentation.js.map +1 -1
- package/dist/components/Payroll/GrossUpModal/GrossUpModal.js +12 -14
- package/dist/components/Payroll/GrossUpModal/GrossUpModal.js.map +1 -1
- package/dist/components/Payroll/OffCycleCreation/OffCycleCreation.js +74 -69
- package/dist/components/Payroll/OffCycleCreation/OffCycleCreation.js.map +1 -1
- package/dist/components/Payroll/OffCycleCreation/OffCycleCreationPresentation.js +30 -32
- package/dist/components/Payroll/OffCycleCreation/OffCycleCreationPresentation.js.map +1 -1
- package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormPresentation.js +11 -13
- package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormPresentation.js.map +1 -1
- package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormTypes.d.ts +1 -1
- package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormTypes.js +19 -19
- package/dist/components/Payroll/OffCyclePayPeriodDateForm/OffCyclePayPeriodDateFormTypes.js.map +1 -1
- package/dist/components/Payroll/OffCyclePayPeriodDateForm/useOffCyclePayPeriodDateValidation.d.ts +3 -3
- package/dist/components/Payroll/OffCyclePayPeriodDateForm/useOffCyclePayPeriodDateValidation.js +13 -13
- package/dist/components/Payroll/OffCyclePayPeriodDateForm/useOffCyclePayPeriodDateValidation.js.map +1 -1
- package/dist/components/Payroll/OffCycleReasonSelection/OffCycleReasonSelectionPresentation.js +6 -8
- package/dist/components/Payroll/OffCycleReasonSelection/OffCycleReasonSelectionPresentation.js.map +1 -1
- package/dist/components/Payroll/OffCycleTaxWithholdingModal/OffCycleTaxWithholdingModal.js +12 -14
- package/dist/components/Payroll/OffCycleTaxWithholdingModal/OffCycleTaxWithholdingModal.js.map +1 -1
- package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerAlerts.js +11 -13
- package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerAlerts.js.map +1 -1
- package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerList.js +12 -12
- package/dist/components/Payroll/PayrollBlocker/payrollHelpers.js +17 -17
- package/dist/components/Payroll/PayrollBlocker/payrollHelpers.js.map +1 -1
- package/dist/components/Payroll/PayrollConfiguration/PayrollConfigurationPresentation.d.ts +1 -1
- package/dist/components/Payroll/PayrollConfiguration/PayrollConfigurationPresentation.js.map +1 -1
- package/dist/components/Payroll/PayrollConfiguration/usePayrollConfigurationData.d.ts +2 -2
- package/dist/components/Payroll/PayrollConfiguration/usePayrollConfigurationData.js +16 -16
- 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 +28 -28
- package/dist/components/Payroll/PayrollEditEmployee/PayrollEditEmployeePresentation.js.map +1 -1
- package/dist/components/Payroll/PayrollEditEmployee/TimeOffField.js +22 -24
- package/dist/components/Payroll/PayrollEditEmployee/TimeOffField.js.map +1 -1
- package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.js +78 -79
- package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.js.map +1 -1
- package/dist/components/Payroll/PayrollList/PayrollList.js +1 -1
- package/dist/components/Payroll/PayrollList/PayrollList.js.map +1 -1
- package/dist/components/Payroll/PayrollList/PayrollListPresentation.d.ts +2 -2
- package/dist/components/Payroll/PayrollList/PayrollListPresentation.js +224 -201
- package/dist/components/Payroll/PayrollList/PayrollListPresentation.js.map +1 -1
- package/dist/components/Payroll/PayrollList/PayrollListPresentation.module.scss.js +8 -8
- package/dist/components/Payroll/PayrollOverview/PayrollOverview.js +79 -80
- package/dist/components/Payroll/PayrollOverview/PayrollOverview.js.map +1 -1
- package/dist/components/Payroll/PayrollOverview/PayrollOverviewPresentation.d.ts +2 -1
- package/dist/components/Payroll/PayrollOverview/PayrollOverviewPresentation.js +18 -18
- package/dist/components/Payroll/PayrollOverview/PayrollOverviewPresentation.js.map +1 -1
- package/dist/components/Payroll/PayrollOverview/SubmissionBlockers/FastAchSubmissionBlockerBanner.d.ts +2 -1
- package/dist/components/Payroll/PayrollOverview/SubmissionBlockers/FastAchSubmissionBlockerBanner.js +2 -4
- package/dist/components/Payroll/PayrollOverview/SubmissionBlockers/FastAchSubmissionBlockerBanner.js.map +1 -1
- package/dist/components/Payroll/PayrollReceipts/PayrollReceiptsPresentation.js +104 -117
- package/dist/components/Payroll/PayrollReceipts/PayrollReceiptsPresentation.js.map +1 -1
- package/dist/components/Payroll/PayrollReceipts/PayrollReceiptsPresentation.module.scss.js +16 -18
- package/dist/components/Payroll/PayrollReceipts/PayrollReceiptsPresentation.module.scss.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 +6 -7
- package/dist/components/Payroll/RecoveryCases/RecoveryCasesResubmit/RecoveryCasesResubmit.js.map +1 -1
- package/dist/components/Payroll/RecoveryCases/useRecoveryCaseErrorCode.js +2 -4
- package/dist/components/Payroll/RecoveryCases/useRecoveryCaseErrorCode.js.map +1 -1
- package/dist/components/Payroll/TransitionCreation/TransitionCreation.js +67 -63
- package/dist/components/Payroll/TransitionCreation/TransitionCreation.js.map +1 -1
- package/dist/components/Payroll/TransitionCreation/TransitionCreationPresentation.js +12 -14
- package/dist/components/Payroll/TransitionCreation/TransitionCreationPresentation.js.map +1 -1
- package/dist/components/Payroll/TransitionCreation/TransitionCreationTypes.d.ts +1 -1
- package/dist/components/Payroll/TransitionCreation/TransitionCreationTypes.js +5 -5
- package/dist/components/Payroll/TransitionCreation/TransitionCreationTypes.js.map +1 -1
- package/dist/components/Payroll/TransitionPayrollAlert/TransitionPayrollAlert.js +13 -13
- package/dist/components/Payroll/TransitionPayrollAlert/TransitionPayrollAlert.js.map +1 -1
- package/dist/components/Payroll/helpers.d.ts +1 -1
- package/dist/components/Payroll/helpers.js.map +1 -1
- package/dist/components/Payroll/usePreparedPayrollData.d.ts +2 -2
- package/dist/components/Payroll/usePreparedPayrollData.js +10 -12
- package/dist/components/Payroll/usePreparedPayrollData.js.map +1 -1
- package/dist/components/UNSTABLE_TimeOff/HolidaySelectionForm/HolidaySelectionForm.js +45 -42
- package/dist/components/UNSTABLE_TimeOff/HolidaySelectionForm/HolidaySelectionForm.js.map +1 -1
- package/dist/components/UNSTABLE_TimeOff/HolidaySelectionForm/HolidaySelectionFormPresentation.d.ts +2 -0
- package/dist/components/UNSTABLE_TimeOff/HolidaySelectionForm/HolidaySelectionFormPresentation.js +55 -0
- package/dist/components/UNSTABLE_TimeOff/HolidaySelectionForm/HolidaySelectionFormPresentation.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/HolidaySelectionForm/HolidaySelectionFormTypes.d.ts +25 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyList.d.ts +2 -2
- package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyList.js +100 -43
- package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyList.js.map +1 -1
- package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyListPresentation.d.ts +2 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyListPresentation.js +124 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyListPresentation.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyListPresentation.module.scss.js +8 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyListPresentation.module.scss.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyList/PolicyListTypes.d.ts +19 -0
- package/dist/components/UNSTABLE_TimeOff/PolicySettings/PolicySettings.module.scss.js +18 -0
- package/dist/components/UNSTABLE_TimeOff/PolicySettings/PolicySettings.module.scss.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/PolicySettings/PolicySettingsPresentation.d.ts +2 -0
- package/dist/components/UNSTABLE_TimeOff/PolicySettings/PolicySettingsPresentation.js +166 -0
- package/dist/components/UNSTABLE_TimeOff/PolicySettings/PolicySettingsPresentation.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/PolicySettings/PolicySettingsTypes.d.ts +18 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyTypeSelector/PolicyTypeSelector.d.ts +3 -1
- package/dist/components/UNSTABLE_TimeOff/PolicyTypeSelector/PolicyTypeSelector.js +25 -55
- package/dist/components/UNSTABLE_TimeOff/PolicyTypeSelector/PolicyTypeSelector.js.map +1 -1
- package/dist/components/UNSTABLE_TimeOff/PolicyTypeSelector/PolicyTypeSelectorPresentation.d.ts +2 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyTypeSelector/PolicyTypeSelectorPresentation.js +66 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyTypeSelector/PolicyTypeSelectorPresentation.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/PolicyTypeSelector/PolicyTypeSelectorTypes.d.ts +6 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlowComponents.d.ts +1 -1
- package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlowComponents.js +71 -66
- package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/TimeOffFlowComponents.js.map +1 -1
- package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/timeOffStateMachine.js +5 -5
- package/dist/components/UNSTABLE_TimeOff/TimeOffFlow/timeOffStateMachine.js.map +1 -1
- package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationForm.d.ts +8 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationForm.js +71 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationForm.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationForm.module.scss.js +12 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationForm.module.scss.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationFormPresentation.d.ts +2 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationFormPresentation.js +206 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationFormPresentation.js.map +1 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationFormTypes.d.ts +20 -0
- package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/PolicyConfigurationForm/index.d.ts +6 -0
- package/dist/components/UNSTABLE_TimeOff/index.d.ts +4 -2
- package/dist/components/UNSTABLE_TimeOff/index.js +18 -16
- package/dist/components/UNSTABLE_TimeOff/index.js.map +1 -1
- package/dist/components/UNSTABLE_TimeOff/shared/EmployeeTable/EmployeeTable.d.ts +2 -0
- package/dist/components/UNSTABLE_TimeOff/{TimeOffManagement/shared → shared}/EmployeeTable/EmployeeTableTypes.d.ts +3 -3
- package/dist/components/UNSTABLE_TimeOff/shared/holidayHelpers.d.ts +30 -0
- package/dist/components/UNSTABLE_TimeOff/shared/holidayHelpers.js +97 -0
- package/dist/components/UNSTABLE_TimeOff/shared/holidayHelpers.js.map +1 -0
- package/dist/components/index.d.ts +7 -0
- package/dist/contexts/ComponentAdapter/adapters/defaultComponentAdapter.js +52 -50
- package/dist/contexts/ComponentAdapter/adapters/defaultComponentAdapter.js.map +1 -1
- package/dist/contexts/ComponentAdapter/componentAdapterTypes.d.ts +1 -0
- package/dist/contexts/ComponentAdapter/createComponentsWithDefaults.d.ts +10 -0
- package/dist/contexts/ComponentAdapter/createComponentsWithDefaults.js +28 -21
- package/dist/contexts/ComponentAdapter/createComponentsWithDefaults.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 +10 -12
- package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.js.map +1 -1
- package/dist/contexts/ObservabilityProvider/useObservability.js +6 -6
- package/dist/contexts/ObservabilityProvider/useObservability.js.map +1 -1
- package/dist/contexts/ThemeProvider/theme.d.ts +2 -0
- package/dist/contexts/ThemeProvider/theme.js +4 -2
- package/dist/contexts/ThemeProvider/theme.js.map +1 -1
- package/dist/helpers/dateFormatting.d.ts +2 -0
- package/dist/helpers/dateFormatting.js +38 -33
- package/dist/helpers/dateFormatting.js.map +1 -1
- package/dist/helpers/formattedStrings.js +40 -33
- package/dist/helpers/formattedStrings.js.map +1 -1
- package/dist/hooks/useCompanyPaymentSpeed.d.ts +6 -0
- package/dist/hooks/useCompanyPaymentSpeed.js +19 -0
- package/dist/hooks/useCompanyPaymentSpeed.js.map +1 -0
- package/dist/i18n/I18n.js +1 -1
- package/dist/i18n/I18n.js.map +1 -1
- package/dist/i18n/en/Company.TimeOff.CreateTimeOffPolicy.json.js +9 -9
- package/dist/i18n/en/Company.TimeOff.HolidayPolicy.json.js +18 -12
- package/dist/i18n/en/Company.TimeOff.HolidayPolicy.json.js.map +1 -1
- package/dist/i18n/en/Company.TimeOff.SelectPolicyType.json.js +28 -0
- package/dist/i18n/en/Company.TimeOff.SelectPolicyType.json.js.map +1 -0
- package/dist/i18n/en/Company.TimeOff.TimeOffPolicies.json.js +32 -26
- package/dist/i18n/en/Company.TimeOff.TimeOffPolicies.json.js.map +1 -1
- package/dist/i18n/en/Contractor.Payments.CreatePayment.json.js +36 -34
- package/dist/i18n/en/Contractor.Payments.CreatePayment.json.js.map +1 -1
- package/dist/i18n/en/Contractor.Submit.json.js +16 -12
- package/dist/i18n/en/Contractor.Submit.json.js.map +1 -1
- package/dist/i18n/en/Employee.Dashboard.json.js +26 -0
- package/dist/i18n/en/Employee.Dashboard.json.js.map +1 -0
- package/dist/i18n/en/Payroll.OffCyclePayPeriodDateForm.json.js +5 -5
- package/dist/i18n/en/Payroll.PayrollHistory.json.js +2 -2
- package/dist/i18n/en/Payroll.PayrollList.json.js +15 -15
- package/dist/i18n/en/Payroll.TransitionCreation.json.js +9 -9
- package/dist/i18n/en/common.json.d.ts +4 -1
- package/dist/i18n/en/common.json.js +5 -5
- package/dist/index.d.ts +16 -0
- package/dist/index.js +102 -26
- package/dist/index.js.map +1 -1
- package/dist/partner-hook-utils/collectErrors.js.map +1 -0
- package/dist/partner-hook-utils/composeErrorHandler.d.ts +24 -0
- package/dist/partner-hook-utils/composeErrorHandler.js +30 -0
- package/dist/partner-hook-utils/composeErrorHandler.js.map +1 -0
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/FormFieldsMetadataContext.d.ts +2 -2
- package/dist/partner-hook-utils/form/FormFieldsMetadataContext.js.map +1 -0
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/FormFieldsMetadataProvider.d.ts +2 -2
- package/dist/partner-hook-utils/form/FormFieldsMetadataProvider.js.map +1 -0
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/SDKFormProvider.d.ts +2 -2
- package/dist/partner-hook-utils/form/SDKFormProvider.js.map +1 -0
- package/dist/partner-hook-utils/form/buildFormSchema.d.ts +48 -0
- package/dist/partner-hook-utils/form/buildFormSchema.js +94 -0
- package/dist/partner-hook-utils/form/buildFormSchema.js.map +1 -0
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/composeSubmitHandler.d.ts +29 -3
- package/dist/partner-hook-utils/form/composeSubmitHandler.js +40 -0
- package/dist/partner-hook-utils/form/composeSubmitHandler.js.map +1 -0
- package/dist/partner-hook-utils/form/composeSubmitHandler.test.d.ts +1 -0
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/fields/CheckboxHookField.d.ts +3 -3
- package/dist/partner-hook-utils/form/fields/CheckboxHookField.js +34 -0
- package/dist/partner-hook-utils/form/fields/CheckboxHookField.js.map +1 -0
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/fields/DatePickerHookField.d.ts +3 -3
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/fields/DatePickerHookField.js +1 -1
- package/dist/partner-hook-utils/form/fields/DatePickerHookField.js.map +1 -0
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/fields/NumberInputHookField.d.ts +3 -3
- package/dist/partner-hook-utils/form/fields/NumberInputHookField.js +40 -0
- package/dist/partner-hook-utils/form/fields/NumberInputHookField.js.map +1 -0
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/fields/RadioGroupHookField.d.ts +3 -3
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/fields/RadioGroupHookField.js +10 -12
- package/dist/partner-hook-utils/form/fields/RadioGroupHookField.js.map +1 -0
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/fields/SelectHookField.d.ts +3 -3
- package/dist/partner-hook-utils/form/fields/SelectHookField.js +40 -0
- package/dist/partner-hook-utils/form/fields/SelectHookField.js.map +1 -0
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/fields/SwitchHookField.d.ts +3 -3
- package/dist/partner-hook-utils/form/fields/SwitchHookField.js +34 -0
- package/dist/partner-hook-utils/form/fields/SwitchHookField.js.map +1 -0
- package/dist/partner-hook-utils/form/fields/TextInputHookField.d.ts +12 -0
- package/dist/partner-hook-utils/form/fields/TextInputHookField.js +38 -0
- package/dist/partner-hook-utils/form/fields/TextInputHookField.js.map +1 -0
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/fields/index.d.ts +7 -7
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/getFieldWithOptions.d.ts +1 -1
- package/dist/partner-hook-utils/form/getFieldWithOptions.js.map +1 -0
- package/dist/partner-hook-utils/form/getFormSubmissionValues.js.map +1 -0
- package/dist/partner-hook-utils/form/getFormSubmissionValues.test.d.ts +1 -0
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/index.d.ts +4 -6
- package/dist/partner-hook-utils/form/preprocessors.d.ts +3 -0
- package/dist/partner-hook-utils/form/preprocessors.js +15 -0
- package/dist/partner-hook-utils/form/preprocessors.js.map +1 -0
- package/dist/partner-hook-utils/form/resolveFieldError.d.ts +4 -0
- package/dist/partner-hook-utils/form/resolveFieldError.js +14 -0
- package/dist/partner-hook-utils/form/resolveFieldError.js.map +1 -0
- package/dist/partner-hook-utils/form/useDeriveFieldsMetadata.d.ts +17 -0
- package/dist/partner-hook-utils/form/useDeriveFieldsMetadata.js +21 -0
- package/dist/partner-hook-utils/form/useDeriveFieldsMetadata.js.map +1 -0
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/useFieldErrorMessage.d.ts +1 -1
- package/dist/partner-hook-utils/form/useFieldErrorMessage.js +17 -0
- package/dist/partner-hook-utils/form/useFieldErrorMessage.js.map +1 -0
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/useHookFieldResolution.d.ts +2 -2
- package/dist/partner-hook-utils/form/useHookFieldResolution.js.map +1 -0
- package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/withOptions.d.ts +1 -1
- package/dist/partner-hook-utils/form/withOptions.js.map +1 -0
- package/dist/partner-hook-utils/index.d.ts +5 -0
- package/dist/{types/sdkHooks.d.ts → partner-hook-utils/types.d.ts} +38 -12
- package/dist/shared/constants.d.ts +11 -1
- package/dist/shared/constants.js +30 -26
- package/dist/shared/constants.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/i18next.d.ts +228 -146
- package/dist/types/sdkError.js.map +1 -1
- package/docs/reference/endpoint-inventory.json +635 -165
- package/package.json +27 -31
- package/dist/UNSTABLE_Hooks.d.ts +0 -1
- package/dist/UNSTABLE_Hooks.js +0 -53
- package/dist/UNSTABLE_Hooks.js.map +0 -1
- package/dist/components/Employee/EmployeeList/EmployeeList.d.ts +0 -7
- package/dist/components/Employee/EmployeeList/EmployeeList.js.map +0 -1
- package/dist/components/Employee/EmployeeList/EmployeeListView.js +0 -132
- package/dist/components/Employee/EmployeeList/EmployeeListView.js.map +0 -1
- package/dist/components/Employee/EmployeeList/ManagementEmployeeList.js.map +0 -1
- package/dist/components/Employee/EmployeeList/ManagementEmployeeListView.js.map +0 -1
- package/dist/components/Employee/EmployeeList/index.d.ts +0 -3
- package/dist/components/Employee/EmployeeList/useEmployeeList.js.map +0 -1
- package/dist/components/Employee/Profile/Actions.d.ts +0 -1
- package/dist/components/Employee/Profile/Actions.js +0 -15
- package/dist/components/Employee/Profile/Actions.js.map +0 -1
- package/dist/components/Employee/Profile/AdminPersonalDetails.d.ts +0 -33
- package/dist/components/Employee/Profile/AdminPersonalDetails.js +0 -60
- package/dist/components/Employee/Profile/AdminPersonalDetails.js.map +0 -1
- package/dist/components/Employee/Profile/AdminPersonalDetails.module.scss.js +0 -8
- package/dist/components/Employee/Profile/AdminPersonalDetails.module.scss.js.map +0 -1
- package/dist/components/Employee/Profile/Head.d.ts +0 -1
- package/dist/components/Employee/Profile/Head.js +0 -14
- package/dist/components/Employee/Profile/Head.js.map +0 -1
- package/dist/components/Employee/Profile/HomeAddress.d.ts +0 -31
- package/dist/components/Employee/Profile/HomeAddress.js +0 -128
- package/dist/components/Employee/Profile/HomeAddress.js.map +0 -1
- package/dist/components/Employee/Profile/PersonalDetailsInputs.d.ts +0 -49
- package/dist/components/Employee/Profile/PersonalDetailsInputs.js +0 -146
- package/dist/components/Employee/Profile/PersonalDetailsInputs.js.map +0 -1
- package/dist/components/Employee/Profile/SelfPersonalDetails.d.ts +0 -16
- package/dist/components/Employee/Profile/SelfPersonalDetails.js +0 -29
- package/dist/components/Employee/Profile/SelfPersonalDetails.js.map +0 -1
- package/dist/components/Employee/Profile/WorkAddress.d.ts +0 -1
- package/dist/components/Employee/Profile/WorkAddress.js +0 -21
- package/dist/components/Employee/Profile/WorkAddress.js.map +0 -1
- package/dist/components/Employee/Profile/WorkAddress.module.scss.js +0 -8
- package/dist/components/Employee/Profile/WorkAddress.module.scss.js.map +0 -1
- package/dist/components/Employee/Profile/getEmployeeAddressForProfile.d.ts +0 -2
- package/dist/components/Employee/Profile/getEmployeeAddressForProfile.js +0 -8
- package/dist/components/Employee/Profile/getEmployeeAddressForProfile.js.map +0 -1
- package/dist/components/Employee/Profile/useProfile.d.ts +0 -16
- package/dist/components/Employee/Profile/useProfile.js +0 -22
- package/dist/components/Employee/Profile/useProfile.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataContext.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/FormFieldsMetadataProvider.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/SDKFormProvider.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/composeFormSchema.d.ts +0 -26
- package/dist/components/UNSTABLE_Hooks/form/composeFormSchema.js +0 -24
- package/dist/components/UNSTABLE_Hooks/form/composeFormSchema.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/composeSubmitHandler.js +0 -34
- package/dist/components/UNSTABLE_Hooks/form/composeSubmitHandler.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/deriveFieldsMetadata.d.ts +0 -3
- package/dist/components/UNSTABLE_Hooks/form/deriveFieldsMetadata.js +0 -14
- package/dist/components/UNSTABLE_Hooks/form/deriveFieldsMetadata.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/fields/CheckboxHookField.js +0 -36
- package/dist/components/UNSTABLE_Hooks/form/fields/CheckboxHookField.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/fields/DatePickerHookField.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/fields/NumberInputHookField.js +0 -42
- package/dist/components/UNSTABLE_Hooks/form/fields/NumberInputHookField.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/fields/RadioGroupHookField.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/fields/SelectHookField.js +0 -42
- package/dist/components/UNSTABLE_Hooks/form/fields/SelectHookField.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/fields/SwitchHookField.js +0 -36
- package/dist/components/UNSTABLE_Hooks/form/fields/SwitchHookField.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/fields/TextInputHookField.d.ts +0 -12
- package/dist/components/UNSTABLE_Hooks/form/fields/TextInputHookField.js +0 -40
- package/dist/components/UNSTABLE_Hooks/form/fields/TextInputHookField.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/getFieldWithOptions.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/getFormSubmissionValues.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/resolveFieldError.d.ts +0 -4
- package/dist/components/UNSTABLE_Hooks/form/resolveFieldError.js +0 -13
- package/dist/components/UNSTABLE_Hooks/form/resolveFieldError.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/resolveRequiredFields.d.ts +0 -6
- package/dist/components/UNSTABLE_Hooks/form/resolveRequiredFields.js +0 -14
- package/dist/components/UNSTABLE_Hooks/form/resolveRequiredFields.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/useFieldErrorMessage.js +0 -17
- package/dist/components/UNSTABLE_Hooks/form/useFieldErrorMessage.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/useFieldsMetadata.d.ts +0 -4
- package/dist/components/UNSTABLE_Hooks/form/useFieldsMetadata.js +0 -8
- package/dist/components/UNSTABLE_Hooks/form/useFieldsMetadata.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/useHookFieldResolution.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/form/withOptions.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/CompensationForm.d.ts +0 -5
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/CompensationForm.js +0 -150
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/CompensationForm.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/compensationSchema.d.ts +0 -97
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/compensationSchema.js +0 -118
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/compensationSchema.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/fields.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/index.d.ts +0 -7
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/useCompensationForm.d.ts +0 -104
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/useCompensationForm.js +0 -259
- package/dist/components/UNSTABLE_Hooks/hooks/useCompensationForm/useCompensationForm.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/EmployeeDetailsForm.d.ts +0 -5
- package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/EmployeeDetailsForm.js +0 -113
- package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/EmployeeDetailsForm.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/employeeDetailsSchema.js +0 -45
- package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/employeeDetailsSchema.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/fields.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/useEmployeeDetailsForm.d.ts +0 -77
- package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/useEmployeeDetailsForm.js +0 -153
- package/dist/components/UNSTABLE_Hooks/hooks/useEmployeeDetailsForm/useEmployeeDetailsForm.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/WorkAddressForm.d.ts +0 -5
- package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/WorkAddressForm.js +0 -70
- package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/WorkAddressForm.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/fields.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/useWorkAddressForm.d.ts +0 -68
- package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/useWorkAddressForm.js +0 -129
- package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/useWorkAddressForm.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/workAddressSchema.js +0 -24
- package/dist/components/UNSTABLE_Hooks/hooks/useWorkAddressForm/workAddressSchema.js.map +0 -1
- package/dist/components/UNSTABLE_Hooks/index.d.ts +0 -9
- package/dist/components/UNSTABLE_TimeOff/PolicyDetailsForm/PolicyDetailsForm.d.ts +0 -6
- package/dist/components/UNSTABLE_TimeOff/PolicyDetailsForm/PolicyDetailsForm.js +0 -50
- package/dist/components/UNSTABLE_TimeOff/PolicyDetailsForm/PolicyDetailsForm.js.map +0 -1
- package/dist/components/UNSTABLE_TimeOff/TimeOffManagement/shared/EmployeeTable/EmployeeTable.d.ts +0 -2
- package/dist/helpers/collectErrors.js.map +0 -1
- package/dist/helpers/requiredIf.d.ts +0 -13
- package/dist/helpers/requiredIf.js +0 -8
- package/dist/helpers/requiredIf.js.map +0 -1
- package/dist/hooks/useErrorHandling.d.ts +0 -9
- package/dist/hooks/useErrorHandling.js +0 -12
- package/dist/hooks/useErrorHandling.js.map +0 -1
- package/dist/i18n/en/UNSTABLE.CompensationForm.json.js +0 -58
- package/dist/i18n/en/UNSTABLE.CompensationForm.json.js.map +0 -1
- package/dist/i18n/en/UNSTABLE.EmployeeDetailsForm.json.js +0 -34
- package/dist/i18n/en/UNSTABLE.EmployeeDetailsForm.json.js.map +0 -1
- package/dist/i18n/en/UNSTABLE.WorkAddressForm.json.js +0 -24
- package/dist/i18n/en/UNSTABLE.WorkAddressForm.json.js.map +0 -1
- /package/dist/components/Employee/{Profile/getEmployeeAddressForProfile.test.d.ts → Compensation/shared/useCompensationForm/compensationSchemaParity.test.d.ts} +0 -0
- /package/dist/components/UNSTABLE_TimeOff/{TimeOffManagement/shared → shared}/EmployeeTable/index.d.ts +0 -0
- /package/dist/components/{UNSTABLE_Hooks/form/composeSubmitHandler.test.d.ts → UNSTABLE_TimeOff/shared/holidayHelpers.test.d.ts} +0 -0
- /package/dist/{components/UNSTABLE_Hooks/form/deriveFieldsMetadata.test.d.ts → hooks/useCompanyPaymentSpeed.test.d.ts} +0 -0
- /package/dist/{helpers → partner-hook-utils}/collectErrors.d.ts +0 -0
- /package/dist/{helpers → partner-hook-utils}/collectErrors.js +0 -0
- /package/dist/{components/UNSTABLE_Hooks/form/getFormSubmissionValues.test.d.ts → partner-hook-utils/composeErrorHandler.test.d.ts} +0 -0
- /package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/FormFieldsMetadataContext.js +0 -0
- /package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/FormFieldsMetadataProvider.js +0 -0
- /package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/SDKFormProvider.js +0 -0
- /package/dist/{hooks/useErrorHandling.test.d.ts → partner-hook-utils/form/buildFormSchema.test.d.ts} +0 -0
- /package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/getFieldWithOptions.js +0 -0
- /package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/getFormSubmissionValues.d.ts +0 -0
- /package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/getFormSubmissionValues.js +0 -0
- /package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/useHookFieldResolution.js +0 -0
- /package/dist/{components/UNSTABLE_Hooks → partner-hook-utils}/form/withOptions.js +0 -0
|
@@ -204,6 +204,10 @@
|
|
|
204
204
|
"method": "POST",
|
|
205
205
|
"path": "/v1/companies/:companyId/pay_schedules"
|
|
206
206
|
},
|
|
207
|
+
{
|
|
208
|
+
"method": "GET",
|
|
209
|
+
"path": "/v1/companies/:companyId/pay_schedules/:payScheduleId"
|
|
210
|
+
},
|
|
207
211
|
{
|
|
208
212
|
"method": "GET",
|
|
209
213
|
"path": "/v1/companies/:companyUuid/payment_configs"
|
|
@@ -442,10 +446,6 @@
|
|
|
442
446
|
{
|
|
443
447
|
"method": "GET",
|
|
444
448
|
"path": "/v1/companies/:companyId/bank_accounts"
|
|
445
|
-
},
|
|
446
|
-
{
|
|
447
|
-
"method": "GET",
|
|
448
|
-
"path": "/v1/companies/:companyUuid/payment_configs"
|
|
449
449
|
}
|
|
450
450
|
],
|
|
451
451
|
"variables": [
|
|
@@ -537,26 +537,6 @@
|
|
|
537
537
|
"employeeId"
|
|
538
538
|
]
|
|
539
539
|
},
|
|
540
|
-
"Employee.ManagementEmployeeList": {
|
|
541
|
-
"endpoints": [
|
|
542
|
-
{
|
|
543
|
-
"method": "GET",
|
|
544
|
-
"path": "/v1/companies/:companyId/employees"
|
|
545
|
-
},
|
|
546
|
-
{
|
|
547
|
-
"method": "DELETE",
|
|
548
|
-
"path": "/v1/employees/:employeeId"
|
|
549
|
-
},
|
|
550
|
-
{
|
|
551
|
-
"method": "PUT",
|
|
552
|
-
"path": "/v1/employees/:employeeId/onboarding_status"
|
|
553
|
-
}
|
|
554
|
-
],
|
|
555
|
-
"variables": [
|
|
556
|
-
"companyId",
|
|
557
|
-
"employeeId"
|
|
558
|
-
]
|
|
559
|
-
},
|
|
560
540
|
"Employee.Deductions": {
|
|
561
541
|
"endpoints": [
|
|
562
542
|
{
|
|
@@ -600,16 +580,24 @@
|
|
|
600
580
|
"endpoints": [
|
|
601
581
|
{
|
|
602
582
|
"method": "GET",
|
|
603
|
-
"path": "/v1/
|
|
583
|
+
"path": "/v1/employees/:employeeId/work_addresses"
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"method": "GET",
|
|
587
|
+
"path": "/v1/employees/:employeeId"
|
|
604
588
|
},
|
|
605
589
|
{
|
|
606
590
|
"method": "POST",
|
|
607
591
|
"path": "/v1/companies/:companyId/employees"
|
|
608
592
|
},
|
|
609
593
|
{
|
|
610
|
-
"method": "
|
|
594
|
+
"method": "PUT",
|
|
611
595
|
"path": "/v1/employees/:employeeId"
|
|
612
596
|
},
|
|
597
|
+
{
|
|
598
|
+
"method": "PUT",
|
|
599
|
+
"path": "/v1/employees/:employeeId/onboarding_status"
|
|
600
|
+
},
|
|
613
601
|
{
|
|
614
602
|
"method": "GET",
|
|
615
603
|
"path": "/v1/employees/:employeeId/home_addresses"
|
|
@@ -622,17 +610,9 @@
|
|
|
622
610
|
"method": "PUT",
|
|
623
611
|
"path": "/v1/home_addresses/:homeAddressUuid"
|
|
624
612
|
},
|
|
625
|
-
{
|
|
626
|
-
"method": "PUT",
|
|
627
|
-
"path": "/v1/work_addresses/:workAddressUuid"
|
|
628
|
-
},
|
|
629
|
-
{
|
|
630
|
-
"method": "PUT",
|
|
631
|
-
"path": "/v1/employees/:employeeId"
|
|
632
|
-
},
|
|
633
613
|
{
|
|
634
614
|
"method": "GET",
|
|
635
|
-
"path": "/v1/
|
|
615
|
+
"path": "/v1/companies/:companyId/locations"
|
|
636
616
|
},
|
|
637
617
|
{
|
|
638
618
|
"method": "POST",
|
|
@@ -640,7 +620,7 @@
|
|
|
640
620
|
},
|
|
641
621
|
{
|
|
642
622
|
"method": "PUT",
|
|
643
|
-
"path": "/v1/
|
|
623
|
+
"path": "/v1/work_addresses/:workAddressUuid"
|
|
644
624
|
}
|
|
645
625
|
],
|
|
646
626
|
"variables": [
|
|
@@ -826,6 +806,54 @@
|
|
|
826
806
|
"employeeId"
|
|
827
807
|
]
|
|
828
808
|
},
|
|
809
|
+
"Employee.DashboardFlow": {
|
|
810
|
+
"endpoints": [
|
|
811
|
+
{
|
|
812
|
+
"method": "GET",
|
|
813
|
+
"path": "/v1/employees/:employeeId"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"method": "GET",
|
|
817
|
+
"path": "/v1/employees/:employeeId/home_addresses"
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"method": "GET",
|
|
821
|
+
"path": "/v1/employees/:employeeId/work_addresses"
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"method": "GET",
|
|
825
|
+
"path": "/v1/employees/:employeeId/payment_method"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"method": "GET",
|
|
829
|
+
"path": "/v1/employees/:employeeId/bank_accounts"
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
"method": "GET",
|
|
833
|
+
"path": "/v1/employees/:employeeId/garnishments"
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"method": "GET",
|
|
837
|
+
"path": "/v1/employees/:employeeId/pay_stubs"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"method": "GET",
|
|
841
|
+
"path": "/v1/employees/:employeeId/forms"
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"method": "GET",
|
|
845
|
+
"path": "/v1/employees/:employeeUuid/federal_taxes"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"method": "GET",
|
|
849
|
+
"path": "/v1/employees/:employeeUuid/state_taxes"
|
|
850
|
+
}
|
|
851
|
+
],
|
|
852
|
+
"variables": [
|
|
853
|
+
"employeeId",
|
|
854
|
+
"employeeUuid"
|
|
855
|
+
]
|
|
856
|
+
},
|
|
829
857
|
"Employee.EmploymentEligibility": {
|
|
830
858
|
"endpoints": [
|
|
831
859
|
{
|
|
@@ -1131,10 +1159,6 @@
|
|
|
1131
1159
|
"method": "GET",
|
|
1132
1160
|
"path": "/v1/wire_in_requests/:wireInRequestUuid"
|
|
1133
1161
|
},
|
|
1134
|
-
{
|
|
1135
|
-
"method": "GET",
|
|
1136
|
-
"path": "/v1/companies/:companyUuid/payment_configs"
|
|
1137
|
-
},
|
|
1138
1162
|
{
|
|
1139
1163
|
"method": "GET",
|
|
1140
1164
|
"path": "/v1/payrolls/:payrollId/employees/:employeeId/pay_stub"
|
|
@@ -1142,7 +1166,6 @@
|
|
|
1142
1166
|
],
|
|
1143
1167
|
"variables": [
|
|
1144
1168
|
"companyId",
|
|
1145
|
-
"companyUuid",
|
|
1146
1169
|
"employeeId",
|
|
1147
1170
|
"payrollId",
|
|
1148
1171
|
"wireInRequestUuid"
|
|
@@ -1308,180 +1331,639 @@
|
|
|
1308
1331
|
"variables": [
|
|
1309
1332
|
"companyId"
|
|
1310
1333
|
]
|
|
1311
|
-
}
|
|
1312
|
-
|
|
1313
|
-
"flows": {
|
|
1314
|
-
"Company.OnboardingFlow": {
|
|
1315
|
-
"blocks": [
|
|
1316
|
-
"Company.BankAccount",
|
|
1317
|
-
"Company.DocumentSigner",
|
|
1318
|
-
"Company.FederalTaxes",
|
|
1319
|
-
"Company.Industry",
|
|
1320
|
-
"Company.Locations",
|
|
1321
|
-
"Company.OnboardingFlow",
|
|
1322
|
-
"Company.OnboardingOverview",
|
|
1323
|
-
"Company.PaySchedule",
|
|
1324
|
-
"Company.StateTaxes",
|
|
1325
|
-
"Employee.OnboardingFlow"
|
|
1326
|
-
],
|
|
1334
|
+
},
|
|
1335
|
+
"UNSTABLE_TimeOff.PolicyList": {
|
|
1327
1336
|
"endpoints": [
|
|
1328
1337
|
{
|
|
1329
|
-
"method": "
|
|
1330
|
-
"path": "/v1/companies/:
|
|
1338
|
+
"method": "POST",
|
|
1339
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1331
1340
|
},
|
|
1332
1341
|
{
|
|
1333
|
-
"method": "
|
|
1334
|
-
"path": "/v1/companies/:
|
|
1342
|
+
"method": "GET",
|
|
1343
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1335
1344
|
},
|
|
1336
1345
|
{
|
|
1337
1346
|
"method": "PUT",
|
|
1338
|
-
"path": "/v1/
|
|
1347
|
+
"path": "/v1/time_off_policies/:timeOffPolicyUuid/deactivate"
|
|
1339
1348
|
},
|
|
1340
1349
|
{
|
|
1341
1350
|
"method": "GET",
|
|
1342
|
-
"path": "/v1/companies/:companyId/
|
|
1351
|
+
"path": "/v1/companies/:companyId/employees"
|
|
1343
1352
|
},
|
|
1344
1353
|
{
|
|
1345
1354
|
"method": "GET",
|
|
1346
|
-
"path": "/v1/companies/:companyUuid/
|
|
1355
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1347
1356
|
},
|
|
1348
1357
|
{
|
|
1349
|
-
"method": "
|
|
1350
|
-
"path": "/v1/
|
|
1358
|
+
"method": "DELETE",
|
|
1359
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1351
1360
|
},
|
|
1352
1361
|
{
|
|
1353
|
-
"method": "
|
|
1354
|
-
"path": "/v1/
|
|
1362
|
+
"method": "POST",
|
|
1363
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1364
|
+
}
|
|
1365
|
+
],
|
|
1366
|
+
"variables": [
|
|
1367
|
+
"companyId",
|
|
1368
|
+
"companyUuid",
|
|
1369
|
+
"timeOffPolicyUuid"
|
|
1370
|
+
]
|
|
1371
|
+
},
|
|
1372
|
+
"UNSTABLE_TimeOff.PolicyTypeSelector": {
|
|
1373
|
+
"endpoints": [
|
|
1374
|
+
{
|
|
1375
|
+
"method": "POST",
|
|
1376
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1355
1377
|
},
|
|
1356
1378
|
{
|
|
1357
1379
|
"method": "GET",
|
|
1358
|
-
"path": "/v1/
|
|
1380
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1359
1381
|
},
|
|
1360
1382
|
{
|
|
1361
1383
|
"method": "PUT",
|
|
1362
|
-
"path": "/v1/
|
|
1384
|
+
"path": "/v1/time_off_policies/:timeOffPolicyUuid/deactivate"
|
|
1363
1385
|
},
|
|
1364
1386
|
{
|
|
1365
1387
|
"method": "GET",
|
|
1366
|
-
"path": "/v1/companies/:companyId/
|
|
1388
|
+
"path": "/v1/companies/:companyId/employees"
|
|
1367
1389
|
},
|
|
1368
1390
|
{
|
|
1369
1391
|
"method": "GET",
|
|
1370
|
-
"path": "/v1/companies/:
|
|
1392
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1371
1393
|
},
|
|
1372
1394
|
{
|
|
1373
|
-
"method": "
|
|
1374
|
-
"path": "/v1/companies/:
|
|
1395
|
+
"method": "DELETE",
|
|
1396
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1375
1397
|
},
|
|
1376
1398
|
{
|
|
1377
|
-
"method": "
|
|
1378
|
-
"path": "/v1/
|
|
1379
|
-
}
|
|
1399
|
+
"method": "POST",
|
|
1400
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1401
|
+
}
|
|
1402
|
+
],
|
|
1403
|
+
"variables": [
|
|
1404
|
+
"companyId",
|
|
1405
|
+
"companyUuid",
|
|
1406
|
+
"timeOffPolicyUuid"
|
|
1407
|
+
]
|
|
1408
|
+
},
|
|
1409
|
+
"UNSTABLE_TimeOff.PolicyConfigurationForm": {
|
|
1410
|
+
"endpoints": [
|
|
1380
1411
|
{
|
|
1381
|
-
"method": "
|
|
1382
|
-
"path": "/v1/
|
|
1383
|
-
}
|
|
1412
|
+
"method": "POST",
|
|
1413
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1414
|
+
}
|
|
1415
|
+
],
|
|
1416
|
+
"variables": [
|
|
1417
|
+
"companyUuid"
|
|
1418
|
+
]
|
|
1419
|
+
},
|
|
1420
|
+
"UNSTABLE_TimeOff.PolicySettings": {
|
|
1421
|
+
"endpoints": [
|
|
1384
1422
|
{
|
|
1385
1423
|
"method": "POST",
|
|
1386
|
-
"path": "/v1/companies/:
|
|
1424
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1387
1425
|
},
|
|
1388
1426
|
{
|
|
1389
1427
|
"method": "GET",
|
|
1390
|
-
"path": "/v1/companies/:
|
|
1428
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1391
1429
|
},
|
|
1392
1430
|
{
|
|
1393
|
-
"method": "
|
|
1394
|
-
"path": "/v1/
|
|
1431
|
+
"method": "PUT",
|
|
1432
|
+
"path": "/v1/time_off_policies/:timeOffPolicyUuid/deactivate"
|
|
1395
1433
|
},
|
|
1396
1434
|
{
|
|
1397
1435
|
"method": "GET",
|
|
1398
|
-
"path": "/v1/companies/:companyId/
|
|
1436
|
+
"path": "/v1/companies/:companyId/employees"
|
|
1399
1437
|
},
|
|
1400
1438
|
{
|
|
1401
|
-
"method": "
|
|
1402
|
-
"path": "/v1/companies/:
|
|
1439
|
+
"method": "GET",
|
|
1440
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1403
1441
|
},
|
|
1404
1442
|
{
|
|
1405
|
-
"method": "
|
|
1406
|
-
"path": "/v1/companies/:
|
|
1443
|
+
"method": "DELETE",
|
|
1444
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1407
1445
|
},
|
|
1408
1446
|
{
|
|
1409
1447
|
"method": "POST",
|
|
1410
|
-
"path": "/v1/companies/:
|
|
1448
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1449
|
+
}
|
|
1450
|
+
],
|
|
1451
|
+
"variables": [
|
|
1452
|
+
"companyId",
|
|
1453
|
+
"companyUuid",
|
|
1454
|
+
"timeOffPolicyUuid"
|
|
1455
|
+
]
|
|
1456
|
+
},
|
|
1457
|
+
"UNSTABLE_TimeOff.PolicySettingsPresentation": {
|
|
1458
|
+
"endpoints": [
|
|
1459
|
+
{
|
|
1460
|
+
"method": "POST",
|
|
1461
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1411
1462
|
},
|
|
1412
1463
|
{
|
|
1413
1464
|
"method": "GET",
|
|
1414
|
-
"path": "/v1/companies/:companyUuid/
|
|
1465
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1415
1466
|
},
|
|
1416
1467
|
{
|
|
1417
1468
|
"method": "PUT",
|
|
1418
|
-
"path": "/v1/
|
|
1469
|
+
"path": "/v1/time_off_policies/:timeOffPolicyUuid/deactivate"
|
|
1419
1470
|
},
|
|
1420
1471
|
{
|
|
1421
1472
|
"method": "GET",
|
|
1422
|
-
"path": "/v1/companies/:
|
|
1473
|
+
"path": "/v1/companies/:companyId/employees"
|
|
1423
1474
|
},
|
|
1424
1475
|
{
|
|
1425
1476
|
"method": "GET",
|
|
1426
|
-
"path": "/v1/companies/:companyUuid/
|
|
1477
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1478
|
+
},
|
|
1479
|
+
{
|
|
1480
|
+
"method": "DELETE",
|
|
1481
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1482
|
+
},
|
|
1483
|
+
{
|
|
1484
|
+
"method": "POST",
|
|
1485
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1427
1486
|
}
|
|
1428
1487
|
],
|
|
1429
1488
|
"variables": [
|
|
1430
|
-
"bankAccountUuid",
|
|
1431
1489
|
"companyId",
|
|
1432
1490
|
"companyUuid",
|
|
1433
|
-
"
|
|
1434
|
-
"locationId",
|
|
1435
|
-
"payScheduleId",
|
|
1436
|
-
"state"
|
|
1491
|
+
"timeOffPolicyUuid"
|
|
1437
1492
|
]
|
|
1438
1493
|
},
|
|
1439
|
-
"
|
|
1440
|
-
"blocks": [
|
|
1441
|
-
"Contractor.Address",
|
|
1442
|
-
"Contractor.ContractorList",
|
|
1443
|
-
"Contractor.ContractorProfile",
|
|
1444
|
-
"Contractor.ContractorSubmit",
|
|
1445
|
-
"Contractor.NewHireReport",
|
|
1446
|
-
"Contractor.OnboardingFlow",
|
|
1447
|
-
"Contractor.PaymentMethod"
|
|
1448
|
-
],
|
|
1494
|
+
"UNSTABLE_TimeOff.AddEmployeesToPolicy": {
|
|
1449
1495
|
"endpoints": [
|
|
1450
1496
|
{
|
|
1451
|
-
"method": "
|
|
1452
|
-
"path": "/v1/
|
|
1497
|
+
"method": "POST",
|
|
1498
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1453
1499
|
},
|
|
1454
1500
|
{
|
|
1455
1501
|
"method": "GET",
|
|
1456
|
-
"path": "/v1/
|
|
1502
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1457
1503
|
},
|
|
1458
1504
|
{
|
|
1459
1505
|
"method": "PUT",
|
|
1460
|
-
"path": "/v1/
|
|
1506
|
+
"path": "/v1/time_off_policies/:timeOffPolicyUuid/deactivate"
|
|
1461
1507
|
},
|
|
1462
1508
|
{
|
|
1463
|
-
"method": "
|
|
1464
|
-
"path": "/v1/
|
|
1509
|
+
"method": "GET",
|
|
1510
|
+
"path": "/v1/companies/:companyId/employees"
|
|
1465
1511
|
},
|
|
1466
1512
|
{
|
|
1467
1513
|
"method": "GET",
|
|
1468
|
-
"path": "/v1/companies/:companyUuid/
|
|
1514
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1515
|
+
},
|
|
1516
|
+
{
|
|
1517
|
+
"method": "DELETE",
|
|
1518
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1469
1519
|
},
|
|
1470
1520
|
{
|
|
1471
1521
|
"method": "POST",
|
|
1472
|
-
"path": "/v1/companies/:companyUuid/
|
|
1522
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1523
|
+
}
|
|
1524
|
+
],
|
|
1525
|
+
"variables": [
|
|
1526
|
+
"companyId",
|
|
1527
|
+
"companyUuid",
|
|
1528
|
+
"timeOffPolicyUuid"
|
|
1529
|
+
]
|
|
1530
|
+
},
|
|
1531
|
+
"UNSTABLE_TimeOff.ViewPolicyDetails": {
|
|
1532
|
+
"endpoints": [
|
|
1533
|
+
{
|
|
1534
|
+
"method": "POST",
|
|
1535
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1473
1536
|
},
|
|
1474
1537
|
{
|
|
1475
|
-
"method": "
|
|
1476
|
-
"path": "/v1/
|
|
1538
|
+
"method": "GET",
|
|
1539
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1477
1540
|
},
|
|
1478
1541
|
{
|
|
1479
1542
|
"method": "PUT",
|
|
1480
|
-
"path": "/v1/
|
|
1543
|
+
"path": "/v1/time_off_policies/:timeOffPolicyUuid/deactivate"
|
|
1481
1544
|
},
|
|
1482
1545
|
{
|
|
1483
1546
|
"method": "GET",
|
|
1484
|
-
"path": "/v1/
|
|
1547
|
+
"path": "/v1/companies/:companyId/employees"
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
"method": "GET",
|
|
1551
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1552
|
+
},
|
|
1553
|
+
{
|
|
1554
|
+
"method": "DELETE",
|
|
1555
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1556
|
+
},
|
|
1557
|
+
{
|
|
1558
|
+
"method": "POST",
|
|
1559
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1560
|
+
}
|
|
1561
|
+
],
|
|
1562
|
+
"variables": [
|
|
1563
|
+
"companyId",
|
|
1564
|
+
"companyUuid",
|
|
1565
|
+
"timeOffPolicyUuid"
|
|
1566
|
+
]
|
|
1567
|
+
},
|
|
1568
|
+
"UNSTABLE_TimeOff.ViewPolicyEmployees": {
|
|
1569
|
+
"endpoints": [
|
|
1570
|
+
{
|
|
1571
|
+
"method": "POST",
|
|
1572
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
"method": "GET",
|
|
1576
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1577
|
+
},
|
|
1578
|
+
{
|
|
1579
|
+
"method": "PUT",
|
|
1580
|
+
"path": "/v1/time_off_policies/:timeOffPolicyUuid/deactivate"
|
|
1581
|
+
},
|
|
1582
|
+
{
|
|
1583
|
+
"method": "GET",
|
|
1584
|
+
"path": "/v1/companies/:companyId/employees"
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
"method": "GET",
|
|
1588
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1589
|
+
},
|
|
1590
|
+
{
|
|
1591
|
+
"method": "DELETE",
|
|
1592
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"method": "POST",
|
|
1596
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1597
|
+
}
|
|
1598
|
+
],
|
|
1599
|
+
"variables": [
|
|
1600
|
+
"companyId",
|
|
1601
|
+
"companyUuid",
|
|
1602
|
+
"timeOffPolicyUuid"
|
|
1603
|
+
]
|
|
1604
|
+
},
|
|
1605
|
+
"UNSTABLE_TimeOff.HolidaySelectionForm": {
|
|
1606
|
+
"endpoints": [
|
|
1607
|
+
{
|
|
1608
|
+
"method": "POST",
|
|
1609
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1610
|
+
},
|
|
1611
|
+
{
|
|
1612
|
+
"method": "GET",
|
|
1613
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1614
|
+
},
|
|
1615
|
+
{
|
|
1616
|
+
"method": "PUT",
|
|
1617
|
+
"path": "/v1/time_off_policies/:timeOffPolicyUuid/deactivate"
|
|
1618
|
+
},
|
|
1619
|
+
{
|
|
1620
|
+
"method": "GET",
|
|
1621
|
+
"path": "/v1/companies/:companyId/employees"
|
|
1622
|
+
},
|
|
1623
|
+
{
|
|
1624
|
+
"method": "GET",
|
|
1625
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1626
|
+
},
|
|
1627
|
+
{
|
|
1628
|
+
"method": "DELETE",
|
|
1629
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1630
|
+
},
|
|
1631
|
+
{
|
|
1632
|
+
"method": "POST",
|
|
1633
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1634
|
+
}
|
|
1635
|
+
],
|
|
1636
|
+
"variables": [
|
|
1637
|
+
"companyId",
|
|
1638
|
+
"companyUuid",
|
|
1639
|
+
"timeOffPolicyUuid"
|
|
1640
|
+
]
|
|
1641
|
+
},
|
|
1642
|
+
"UNSTABLE_TimeOff.AddEmployeesHoliday": {
|
|
1643
|
+
"endpoints": [
|
|
1644
|
+
{
|
|
1645
|
+
"method": "POST",
|
|
1646
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1647
|
+
},
|
|
1648
|
+
{
|
|
1649
|
+
"method": "GET",
|
|
1650
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1651
|
+
},
|
|
1652
|
+
{
|
|
1653
|
+
"method": "PUT",
|
|
1654
|
+
"path": "/v1/time_off_policies/:timeOffPolicyUuid/deactivate"
|
|
1655
|
+
},
|
|
1656
|
+
{
|
|
1657
|
+
"method": "GET",
|
|
1658
|
+
"path": "/v1/companies/:companyId/employees"
|
|
1659
|
+
},
|
|
1660
|
+
{
|
|
1661
|
+
"method": "GET",
|
|
1662
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1663
|
+
},
|
|
1664
|
+
{
|
|
1665
|
+
"method": "DELETE",
|
|
1666
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
"method": "POST",
|
|
1670
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1671
|
+
}
|
|
1672
|
+
],
|
|
1673
|
+
"variables": [
|
|
1674
|
+
"companyId",
|
|
1675
|
+
"companyUuid",
|
|
1676
|
+
"timeOffPolicyUuid"
|
|
1677
|
+
]
|
|
1678
|
+
},
|
|
1679
|
+
"UNSTABLE_TimeOff.ViewHolidayEmployees": {
|
|
1680
|
+
"endpoints": [
|
|
1681
|
+
{
|
|
1682
|
+
"method": "POST",
|
|
1683
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1684
|
+
},
|
|
1685
|
+
{
|
|
1686
|
+
"method": "GET",
|
|
1687
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1688
|
+
},
|
|
1689
|
+
{
|
|
1690
|
+
"method": "PUT",
|
|
1691
|
+
"path": "/v1/time_off_policies/:timeOffPolicyUuid/deactivate"
|
|
1692
|
+
},
|
|
1693
|
+
{
|
|
1694
|
+
"method": "GET",
|
|
1695
|
+
"path": "/v1/companies/:companyId/employees"
|
|
1696
|
+
},
|
|
1697
|
+
{
|
|
1698
|
+
"method": "GET",
|
|
1699
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1700
|
+
},
|
|
1701
|
+
{
|
|
1702
|
+
"method": "DELETE",
|
|
1703
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1704
|
+
},
|
|
1705
|
+
{
|
|
1706
|
+
"method": "POST",
|
|
1707
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1708
|
+
}
|
|
1709
|
+
],
|
|
1710
|
+
"variables": [
|
|
1711
|
+
"companyId",
|
|
1712
|
+
"companyUuid",
|
|
1713
|
+
"timeOffPolicyUuid"
|
|
1714
|
+
]
|
|
1715
|
+
},
|
|
1716
|
+
"UNSTABLE_TimeOff.ViewHolidaySchedule": {
|
|
1717
|
+
"endpoints": [
|
|
1718
|
+
{
|
|
1719
|
+
"method": "POST",
|
|
1720
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1721
|
+
},
|
|
1722
|
+
{
|
|
1723
|
+
"method": "GET",
|
|
1724
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1725
|
+
},
|
|
1726
|
+
{
|
|
1727
|
+
"method": "PUT",
|
|
1728
|
+
"path": "/v1/time_off_policies/:timeOffPolicyUuid/deactivate"
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
"method": "GET",
|
|
1732
|
+
"path": "/v1/companies/:companyId/employees"
|
|
1733
|
+
},
|
|
1734
|
+
{
|
|
1735
|
+
"method": "GET",
|
|
1736
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
"method": "DELETE",
|
|
1740
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
"method": "POST",
|
|
1744
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1745
|
+
}
|
|
1746
|
+
],
|
|
1747
|
+
"variables": [
|
|
1748
|
+
"companyId",
|
|
1749
|
+
"companyUuid",
|
|
1750
|
+
"timeOffPolicyUuid"
|
|
1751
|
+
]
|
|
1752
|
+
},
|
|
1753
|
+
"UNSTABLE_TimeOff.TimeOffFlow": {
|
|
1754
|
+
"endpoints": [
|
|
1755
|
+
{
|
|
1756
|
+
"method": "POST",
|
|
1757
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1758
|
+
},
|
|
1759
|
+
{
|
|
1760
|
+
"method": "GET",
|
|
1761
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1762
|
+
},
|
|
1763
|
+
{
|
|
1764
|
+
"method": "PUT",
|
|
1765
|
+
"path": "/v1/time_off_policies/:timeOffPolicyUuid/deactivate"
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
"method": "GET",
|
|
1769
|
+
"path": "/v1/companies/:companyId/employees"
|
|
1770
|
+
},
|
|
1771
|
+
{
|
|
1772
|
+
"method": "GET",
|
|
1773
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"method": "DELETE",
|
|
1777
|
+
"path": "/v1/companies/:companyUuid/holiday_pay_policy"
|
|
1778
|
+
},
|
|
1779
|
+
{
|
|
1780
|
+
"method": "POST",
|
|
1781
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
1782
|
+
}
|
|
1783
|
+
],
|
|
1784
|
+
"variables": [
|
|
1785
|
+
"companyId",
|
|
1786
|
+
"companyUuid",
|
|
1787
|
+
"timeOffPolicyUuid"
|
|
1788
|
+
]
|
|
1789
|
+
}
|
|
1790
|
+
},
|
|
1791
|
+
"flows": {
|
|
1792
|
+
"Company.OnboardingFlow": {
|
|
1793
|
+
"blocks": [
|
|
1794
|
+
"Company.BankAccount",
|
|
1795
|
+
"Company.DocumentSigner",
|
|
1796
|
+
"Company.FederalTaxes",
|
|
1797
|
+
"Company.Industry",
|
|
1798
|
+
"Company.Locations",
|
|
1799
|
+
"Company.OnboardingFlow",
|
|
1800
|
+
"Company.OnboardingOverview",
|
|
1801
|
+
"Company.PaySchedule",
|
|
1802
|
+
"Company.StateTaxes",
|
|
1803
|
+
"Employee.OnboardingFlow"
|
|
1804
|
+
],
|
|
1805
|
+
"endpoints": [
|
|
1806
|
+
{
|
|
1807
|
+
"method": "GET",
|
|
1808
|
+
"path": "/v1/companies/:companyId/bank_accounts"
|
|
1809
|
+
},
|
|
1810
|
+
{
|
|
1811
|
+
"method": "POST",
|
|
1812
|
+
"path": "/v1/companies/:companyId/bank_accounts"
|
|
1813
|
+
},
|
|
1814
|
+
{
|
|
1815
|
+
"method": "PUT",
|
|
1816
|
+
"path": "/v1/companies/:companyId/bank_accounts/:bankAccountUuid/verify"
|
|
1817
|
+
},
|
|
1818
|
+
{
|
|
1819
|
+
"method": "GET",
|
|
1820
|
+
"path": "/v1/companies/:companyId/forms"
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
"method": "GET",
|
|
1824
|
+
"path": "/v1/companies/:companyUuid/signatories"
|
|
1825
|
+
},
|
|
1826
|
+
{
|
|
1827
|
+
"method": "GET",
|
|
1828
|
+
"path": "/v1/forms/:formId"
|
|
1829
|
+
},
|
|
1830
|
+
{
|
|
1831
|
+
"method": "PUT",
|
|
1832
|
+
"path": "/v1/forms/:formId/sign"
|
|
1833
|
+
},
|
|
1834
|
+
{
|
|
1835
|
+
"method": "GET",
|
|
1836
|
+
"path": "/v1/forms/:formId/pdf"
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
"method": "PUT",
|
|
1840
|
+
"path": "/v1/companies/:companyId/federal_tax_details"
|
|
1841
|
+
},
|
|
1842
|
+
{
|
|
1843
|
+
"method": "GET",
|
|
1844
|
+
"path": "/v1/companies/:companyId/federal_tax_details"
|
|
1845
|
+
},
|
|
1846
|
+
{
|
|
1847
|
+
"method": "GET",
|
|
1848
|
+
"path": "/v1/companies/:companyId/industry_selection"
|
|
1849
|
+
},
|
|
1850
|
+
{
|
|
1851
|
+
"method": "PUT",
|
|
1852
|
+
"path": "/v1/companies/:companyId/industry_selection"
|
|
1853
|
+
},
|
|
1854
|
+
{
|
|
1855
|
+
"method": "PUT",
|
|
1856
|
+
"path": "/v1/locations/:locationId"
|
|
1857
|
+
},
|
|
1858
|
+
{
|
|
1859
|
+
"method": "GET",
|
|
1860
|
+
"path": "/v1/locations/:locationId"
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
"method": "POST",
|
|
1864
|
+
"path": "/v1/companies/:companyId/locations"
|
|
1865
|
+
},
|
|
1866
|
+
{
|
|
1867
|
+
"method": "GET",
|
|
1868
|
+
"path": "/v1/companies/:companyId/locations"
|
|
1869
|
+
},
|
|
1870
|
+
{
|
|
1871
|
+
"method": "GET",
|
|
1872
|
+
"path": "/v1/companies/:companyUuid/onboarding_status"
|
|
1873
|
+
},
|
|
1874
|
+
{
|
|
1875
|
+
"method": "GET",
|
|
1876
|
+
"path": "/v1/companies/:companyId/pay_schedules/preview"
|
|
1877
|
+
},
|
|
1878
|
+
{
|
|
1879
|
+
"method": "PUT",
|
|
1880
|
+
"path": "/v1/companies/:companyId/pay_schedules/:payScheduleId"
|
|
1881
|
+
},
|
|
1882
|
+
{
|
|
1883
|
+
"method": "GET",
|
|
1884
|
+
"path": "/v1/companies/:companyId/pay_schedules"
|
|
1885
|
+
},
|
|
1886
|
+
{
|
|
1887
|
+
"method": "POST",
|
|
1888
|
+
"path": "/v1/companies/:companyId/pay_schedules"
|
|
1889
|
+
},
|
|
1890
|
+
{
|
|
1891
|
+
"method": "GET",
|
|
1892
|
+
"path": "/v1/companies/:companyId/pay_schedules/:payScheduleId"
|
|
1893
|
+
},
|
|
1894
|
+
{
|
|
1895
|
+
"method": "GET",
|
|
1896
|
+
"path": "/v1/companies/:companyUuid/payment_configs"
|
|
1897
|
+
},
|
|
1898
|
+
{
|
|
1899
|
+
"method": "PUT",
|
|
1900
|
+
"path": "/v1/companies/:companyUuid/tax_requirements/:state"
|
|
1901
|
+
},
|
|
1902
|
+
{
|
|
1903
|
+
"method": "GET",
|
|
1904
|
+
"path": "/v1/companies/:companyUuid/tax_requirements/:state"
|
|
1905
|
+
},
|
|
1906
|
+
{
|
|
1907
|
+
"method": "GET",
|
|
1908
|
+
"path": "/v1/companies/:companyUuid/tax_requirements"
|
|
1909
|
+
}
|
|
1910
|
+
],
|
|
1911
|
+
"variables": [
|
|
1912
|
+
"bankAccountUuid",
|
|
1913
|
+
"companyId",
|
|
1914
|
+
"companyUuid",
|
|
1915
|
+
"formId",
|
|
1916
|
+
"locationId",
|
|
1917
|
+
"payScheduleId",
|
|
1918
|
+
"state"
|
|
1919
|
+
]
|
|
1920
|
+
},
|
|
1921
|
+
"Contractor.OnboardingFlow": {
|
|
1922
|
+
"blocks": [
|
|
1923
|
+
"Contractor.Address",
|
|
1924
|
+
"Contractor.ContractorList",
|
|
1925
|
+
"Contractor.ContractorProfile",
|
|
1926
|
+
"Contractor.ContractorSubmit",
|
|
1927
|
+
"Contractor.NewHireReport",
|
|
1928
|
+
"Contractor.OnboardingFlow",
|
|
1929
|
+
"Contractor.PaymentMethod"
|
|
1930
|
+
],
|
|
1931
|
+
"endpoints": [
|
|
1932
|
+
{
|
|
1933
|
+
"method": "GET",
|
|
1934
|
+
"path": "/v1/contractors/:contractorUuid"
|
|
1935
|
+
},
|
|
1936
|
+
{
|
|
1937
|
+
"method": "GET",
|
|
1938
|
+
"path": "/v1/contractors/:contractorUuid/address"
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
"method": "PUT",
|
|
1942
|
+
"path": "/v1/contractors/:contractorUuid/address"
|
|
1943
|
+
},
|
|
1944
|
+
{
|
|
1945
|
+
"method": "DELETE",
|
|
1946
|
+
"path": "/v1/contractors/:contractorUuid"
|
|
1947
|
+
},
|
|
1948
|
+
{
|
|
1949
|
+
"method": "GET",
|
|
1950
|
+
"path": "/v1/companies/:companyUuid/contractors"
|
|
1951
|
+
},
|
|
1952
|
+
{
|
|
1953
|
+
"method": "POST",
|
|
1954
|
+
"path": "/v1/companies/:companyUuid/contractors"
|
|
1955
|
+
},
|
|
1956
|
+
{
|
|
1957
|
+
"method": "PUT",
|
|
1958
|
+
"path": "/v1/contractors/:contractorUuid"
|
|
1959
|
+
},
|
|
1960
|
+
{
|
|
1961
|
+
"method": "PUT",
|
|
1962
|
+
"path": "/v1/contractors/:contractorUuid/onboarding_status"
|
|
1963
|
+
},
|
|
1964
|
+
{
|
|
1965
|
+
"method": "GET",
|
|
1966
|
+
"path": "/v1/contractors/:contractorUuid/onboarding_status"
|
|
1485
1967
|
},
|
|
1486
1968
|
{
|
|
1487
1969
|
"method": "GET",
|
|
@@ -1532,10 +2014,6 @@
|
|
|
1532
2014
|
"method": "GET",
|
|
1533
2015
|
"path": "/v1/companies/:companyId/bank_accounts"
|
|
1534
2016
|
},
|
|
1535
|
-
{
|
|
1536
|
-
"method": "GET",
|
|
1537
|
-
"path": "/v1/companies/:companyUuid/payment_configs"
|
|
1538
|
-
},
|
|
1539
2017
|
{
|
|
1540
2018
|
"method": "GET",
|
|
1541
2019
|
"path": "/v1/contractor_payment_groups/:contractorPaymentGroupUuid"
|
|
@@ -1688,14 +2166,14 @@
|
|
|
1688
2166
|
"method": "PUT",
|
|
1689
2167
|
"path": "/v1/employees/:employeeId/payment_method"
|
|
1690
2168
|
},
|
|
1691
|
-
{
|
|
1692
|
-
"method": "GET",
|
|
1693
|
-
"path": "/v1/companies/:companyId/locations"
|
|
1694
|
-
},
|
|
1695
2169
|
{
|
|
1696
2170
|
"method": "POST",
|
|
1697
2171
|
"path": "/v1/companies/:companyId/employees"
|
|
1698
2172
|
},
|
|
2173
|
+
{
|
|
2174
|
+
"method": "PUT",
|
|
2175
|
+
"path": "/v1/employees/:employeeId"
|
|
2176
|
+
},
|
|
1699
2177
|
{
|
|
1700
2178
|
"method": "GET",
|
|
1701
2179
|
"path": "/v1/employees/:employeeId/home_addresses"
|
|
@@ -1709,17 +2187,17 @@
|
|
|
1709
2187
|
"path": "/v1/home_addresses/:homeAddressUuid"
|
|
1710
2188
|
},
|
|
1711
2189
|
{
|
|
1712
|
-
"method": "
|
|
1713
|
-
"path": "/v1/
|
|
1714
|
-
},
|
|
1715
|
-
{
|
|
1716
|
-
"method": "PUT",
|
|
1717
|
-
"path": "/v1/employees/:employeeId"
|
|
2190
|
+
"method": "GET",
|
|
2191
|
+
"path": "/v1/companies/:companyId/locations"
|
|
1718
2192
|
},
|
|
1719
2193
|
{
|
|
1720
2194
|
"method": "POST",
|
|
1721
2195
|
"path": "/v1/employees/:employeeId/work_addresses"
|
|
1722
2196
|
},
|
|
2197
|
+
{
|
|
2198
|
+
"method": "PUT",
|
|
2199
|
+
"path": "/v1/work_addresses/:workAddressUuid"
|
|
2200
|
+
},
|
|
1723
2201
|
{
|
|
1724
2202
|
"method": "GET",
|
|
1725
2203
|
"path": "/v1/employees/:employeeUuid/state_taxes"
|
|
@@ -1824,12 +2302,20 @@
|
|
|
1824
2302
|
},
|
|
1825
2303
|
{
|
|
1826
2304
|
"method": "GET",
|
|
1827
|
-
"path": "/v1/
|
|
2305
|
+
"path": "/v1/employees/:employeeId/work_addresses"
|
|
1828
2306
|
},
|
|
1829
2307
|
{
|
|
1830
2308
|
"method": "POST",
|
|
1831
2309
|
"path": "/v1/companies/:companyId/employees"
|
|
1832
2310
|
},
|
|
2311
|
+
{
|
|
2312
|
+
"method": "PUT",
|
|
2313
|
+
"path": "/v1/employees/:employeeId"
|
|
2314
|
+
},
|
|
2315
|
+
{
|
|
2316
|
+
"method": "PUT",
|
|
2317
|
+
"path": "/v1/employees/:employeeId/onboarding_status"
|
|
2318
|
+
},
|
|
1833
2319
|
{
|
|
1834
2320
|
"method": "GET",
|
|
1835
2321
|
"path": "/v1/employees/:employeeId/home_addresses"
|
|
@@ -1842,17 +2328,9 @@
|
|
|
1842
2328
|
"method": "PUT",
|
|
1843
2329
|
"path": "/v1/home_addresses/:homeAddressUuid"
|
|
1844
2330
|
},
|
|
1845
|
-
{
|
|
1846
|
-
"method": "PUT",
|
|
1847
|
-
"path": "/v1/work_addresses/:workAddressUuid"
|
|
1848
|
-
},
|
|
1849
|
-
{
|
|
1850
|
-
"method": "PUT",
|
|
1851
|
-
"path": "/v1/employees/:employeeId"
|
|
1852
|
-
},
|
|
1853
2331
|
{
|
|
1854
2332
|
"method": "GET",
|
|
1855
|
-
"path": "/v1/
|
|
2333
|
+
"path": "/v1/companies/:companyId/locations"
|
|
1856
2334
|
},
|
|
1857
2335
|
{
|
|
1858
2336
|
"method": "POST",
|
|
@@ -1860,7 +2338,7 @@
|
|
|
1860
2338
|
},
|
|
1861
2339
|
{
|
|
1862
2340
|
"method": "PUT",
|
|
1863
|
-
"path": "/v1/
|
|
2341
|
+
"path": "/v1/work_addresses/:workAddressUuid"
|
|
1864
2342
|
},
|
|
1865
2343
|
{
|
|
1866
2344
|
"method": "GET",
|
|
@@ -2050,10 +2528,6 @@
|
|
|
2050
2528
|
"method": "GET",
|
|
2051
2529
|
"path": "/v1/wire_in_requests/:wireInRequestUuid"
|
|
2052
2530
|
},
|
|
2053
|
-
{
|
|
2054
|
-
"method": "GET",
|
|
2055
|
-
"path": "/v1/companies/:companyUuid/payment_configs"
|
|
2056
|
-
},
|
|
2057
2531
|
{
|
|
2058
2532
|
"method": "GET",
|
|
2059
2533
|
"path": "/v1/payrolls/:payrollId/employees/:employeeId/pay_stub"
|
|
@@ -2075,21 +2549,17 @@
|
|
|
2075
2549
|
},
|
|
2076
2550
|
"UNSTABLE_TimeOff.TimeOffFlow": {
|
|
2077
2551
|
"blocks": [
|
|
2078
|
-
"UNSTABLE_TimeOff.
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
"
|
|
2088
|
-
|
|
2089
|
-
"UNSTABLE_TimeOff.ViewPolicyEmployees"
|
|
2090
|
-
],
|
|
2091
|
-
"endpoints": [],
|
|
2092
|
-
"variables": []
|
|
2552
|
+
"UNSTABLE_TimeOff.PolicyConfigurationForm"
|
|
2553
|
+
],
|
|
2554
|
+
"endpoints": [
|
|
2555
|
+
{
|
|
2556
|
+
"method": "POST",
|
|
2557
|
+
"path": "/v1/companies/:companyUuid/time_off_policies"
|
|
2558
|
+
}
|
|
2559
|
+
],
|
|
2560
|
+
"variables": [
|
|
2561
|
+
"companyUuid"
|
|
2562
|
+
]
|
|
2093
2563
|
}
|
|
2094
2564
|
}
|
|
2095
2565
|
}
|