@gusto/embedded-react-sdk 0.5.0 → 0.6.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/dist/index.d.ts CHANGED
@@ -7,6 +7,7 @@ import { default as default_2 } from 'openapi-fetch';
7
7
  import { default as default_3 } from 'react';
8
8
  import { DocumentList } from './DocumentList';
9
9
  import { DocumentListHead } from './DocumentListHead';
10
+ import { Employee as Employee_2 } from '@gusto/embedded-api/models/components/employee.js';
10
11
  import { FallbackProps } from 'react-error-boundary';
11
12
  import { FederalForm } from './FederalForm';
12
13
  import { FederalHead } from './FederalHead';
@@ -137,9 +138,11 @@ declare namespace Company {
137
138
  AssignSignatory,
138
139
  DocumentList_2 as DocumentList,
139
140
  SignatureForm_2 as SignatureForm,
140
- DocumentSigner_3 as DocumentSigner,
141
+ DocumentSignerFlow,
141
142
  OnboardingSummary_3 as OnboardingSummary,
142
- OnboardingSummaryContextual_2 as OnboardingSummaryContextual
143
+ OnboardingSummaryContextual_2 as OnboardingSummaryContextual,
144
+ LocationsFlow,
145
+ PaySchedule
143
146
  }
144
147
  }
145
148
  export { Company }
@@ -171,7 +174,12 @@ declare type CompensationContextType = {
171
174
 
172
175
  declare const CompensationContextual: () => JSX.Element;
173
176
 
174
- declare type CompensationDefaultValues = RequireAtLeastOne<Partial<Pick<Schemas['Job'], 'rate' | 'title' | 'payment_unit'>>>;
177
+ declare type CompensationDefaultValues = RequireAtLeastOne<{
178
+ rate?: Schemas['Job']['rate'];
179
+ title?: Schemas['Job']['title'];
180
+ payment_unit?: (typeof PAY_PERIODS)[keyof typeof PAY_PERIODS];
181
+ flsa_status?: Schemas['Compensation']['flsa_status'];
182
+ }>;
175
183
 
176
184
  declare type CompensationInputs = v.InferInput<typeof CompensationSchema>;
177
185
 
@@ -217,8 +225,12 @@ declare const CompensationSchema: v.IntersectSchema<[v.ObjectSchema<{
217
225
  }, undefined>], undefined>], undefined>;
218
226
 
219
227
  export declare const componentEvents: {
220
- readonly COMPANY_ADDRESSES: "company/addresses";
221
- readonly COMPANY_ADDRESSE_EDIT: "company/address/edit";
228
+ readonly PAY_SCHEDULE_CREATE: "paySchedule/create";
229
+ readonly PAY_SCHEDULE_CREATED: "paySchedule/created";
230
+ readonly PAY_SCHEDULE_UPDATE: "paySchedule/update";
231
+ readonly PAY_SCHEDULE_UPDATED: "paySchedule/updated";
232
+ readonly PAY_SCHEDULE_DELETE: "paySchedule/delete";
233
+ readonly PAY_SCHEDULE_DELETED: "paySchedule/deleted";
222
234
  readonly COMPANY_INDUSTRY: "company/industry";
223
235
  readonly COMPANY_INDUSTRY_SELECTED: "company/industry/selected";
224
236
  readonly COMPANY_FEDERAL_TAXES_UPDATED: "company/federalTaxes/updated";
@@ -235,6 +247,11 @@ export declare const componentEvents: {
235
247
  readonly COMPANY_SIGN_FORM: "company/forms/sign/signForm";
236
248
  readonly COMPANY_SIGN_FORM_DONE: "company/forms/sign/done";
237
249
  readonly COMPANY_SIGN_FORM_BACK: "company/forms/sign/back";
250
+ readonly COMPANY_LOCATION_CREATE: "company/location/add";
251
+ readonly COMPANY_LOCATION_CREATED: "company/location/add/done";
252
+ readonly COMPANY_LOCATION_EDIT: "company/location/edit";
253
+ readonly COMPANY_LOCATION_UPDATED: "company/location/edit/done";
254
+ readonly COMPANY_LOCATION_DONE: "company/location/done";
238
255
  readonly EMPLOYEE_CREATE: "employee/create";
239
256
  readonly EMPLOYEE_CREATED: "employee/created";
240
257
  readonly EMPLOYEE_UPDATE: "employee/update";
@@ -5112,8 +5129,6 @@ declare namespace DocumentSigner_2 {
5112
5129
  var SignatureForm: SignatureForm;
5113
5130
  }
5114
5131
 
5115
- declare const DocumentSigner_3: ({ companyId, signatoryId, onEvent }: DocumentSignerProps_2) => JSX.Element;
5116
-
5117
5132
  declare type DocumentSignerContextType = {
5118
5133
  employeeForms: Schemas['Form'][];
5119
5134
  isPending: boolean;
@@ -5127,15 +5142,17 @@ declare type DocumentSignerContextType = {
5127
5142
  handleSubmit: (data: SignatureFormInputs) => void;
5128
5143
  };
5129
5144
 
5130
- declare interface DocumentSignerProps extends CommonComponentInterface {
5131
- employeeId: string;
5132
- }
5145
+ declare const DocumentSignerFlow: ({ companyId, signatoryId, onEvent, }: DocumentSignerFlowProps) => JSX.Element;
5133
5146
 
5134
- declare interface DocumentSignerProps_2 extends BaseComponentInterface {
5147
+ declare interface DocumentSignerFlowProps extends BaseComponentInterface {
5135
5148
  companyId: string;
5136
5149
  signatoryId?: string;
5137
5150
  }
5138
5151
 
5152
+ declare interface DocumentSignerProps extends CommonComponentInterface {
5153
+ employeeId: string;
5154
+ }
5155
+
5139
5156
  declare namespace Employee {
5140
5157
  export {
5141
5158
  EmployeeList,
@@ -5195,7 +5212,7 @@ declare type EmployeeListContextType = {
5195
5212
  handleItemsPerPageChange: (newCount: number) => void;
5196
5213
  currentPage: number;
5197
5214
  totalPages: number;
5198
- employees: Schemas['Employee'][];
5215
+ employees: Employee_2[];
5199
5216
  };
5200
5217
 
5201
5218
  /**
@@ -5215,6 +5232,7 @@ export declare interface EmployeeOnboardingContextInterface extends FlowContextI
5215
5232
  startDate?: string;
5216
5233
  paymentMethod?: Schemas['Employee-Payment-Method'];
5217
5234
  defaultValues?: EmployeeOnboardingDefaultValues;
5235
+ isSelfOnboardingEnabled?: boolean;
5218
5236
  }
5219
5237
 
5220
5238
  declare type EmployeeOnboardingDefaultValues = RequireAtLeastOne<{
@@ -5222,11 +5240,12 @@ declare type EmployeeOnboardingDefaultValues = RequireAtLeastOne<{
5222
5240
  compensation?: CompensationDefaultValues;
5223
5241
  }>;
5224
5242
 
5225
- export declare const EmployeeOnboardingFlow: ({ companyId, onEvent, defaultValues, }: EmployeeOnboardingFlowProps) => JSX.Element;
5243
+ export declare const EmployeeOnboardingFlow: ({ companyId, onEvent, defaultValues, isSelfOnboardingEnabled, }: EmployeeOnboardingFlowProps) => JSX.Element;
5226
5244
 
5227
5245
  export declare interface EmployeeOnboardingFlowProps extends BaseComponentInterface {
5228
5246
  companyId: string;
5229
5247
  defaultValues?: RequireAtLeastOne<EmployeeOnboardingDefaultValues>;
5248
+ isSelfOnboardingEnabled?: boolean;
5230
5249
  }
5231
5250
 
5232
5251
  declare const EmployeeOnboardingStatus: {
@@ -5275,6 +5294,7 @@ declare interface GTheme {
5275
5294
  radio: GThemeRadio
5276
5295
  checkbox: GThemeCheckbox
5277
5296
  table: GThemeTable
5297
+ calendarDisplay: GThemeCalendarDisplay
5278
5298
  card: GThemeCard
5279
5299
  link: GThemeLink
5280
5300
  badge: GThemeBadge
@@ -5319,6 +5339,14 @@ declare type GThemeButtonVariant = {
5319
5339
  focusColor: ThemeColor
5320
5340
  }
5321
5341
 
5342
+ declare interface GThemeCalendarDisplay {
5343
+ primaryHighlight: string
5344
+ warningHighlight: string
5345
+ lightFont: string
5346
+ darkFont: string
5347
+ borderColor: string
5348
+ }
5349
+
5322
5350
  declare interface GThemeCard {
5323
5351
  borderColor: string
5324
5352
  dividerColor: string
@@ -5363,6 +5391,9 @@ declare interface GThemeColors {
5363
5391
  500: ThemeColor
5364
5392
  800: ThemeColor
5365
5393
  }
5394
+ orange: {
5395
+ 800: ThemeColor
5396
+ }
5366
5397
  }
5367
5398
 
5368
5399
  declare interface GThemeFocus {
@@ -5462,7 +5493,7 @@ declare interface GThemeTypography {
5462
5493
  medium: string
5463
5494
  }
5464
5495
  fontWeight: {
5465
- book: number
5496
+ regular: number
5466
5497
  medium: number
5467
5498
  }
5468
5499
  disabledTextColor: ThemeColor
@@ -6860,6 +6891,17 @@ export declare class GustoClient {
6860
6891
  readonly requires_signing?: boolean;
6861
6892
  document_content_type?: components["schemas"]["Form-Document-Content-Type-Type"];
6862
6893
  }[]>;
6894
+ getCompanyForm(form_id: string): Promise<{
6895
+ readonly uuid: string;
6896
+ readonly name?: string;
6897
+ readonly title?: string;
6898
+ readonly description?: string;
6899
+ readonly draft?: boolean;
6900
+ readonly year?: number | null;
6901
+ readonly quarter?: number | null;
6902
+ readonly requires_signing?: boolean;
6903
+ document_content_type?: components["schemas"]["Form-Document-Content-Type-Type"];
6904
+ }>;
6863
6905
  getCompanyFormPdf(form_id: string): Promise<{
6864
6906
  readonly uuid: string;
6865
6907
  document_url?: string | null;
@@ -7082,6 +7124,12 @@ export declare function Landing(): JSX.Element;
7082
7124
 
7083
7125
  declare function Landing_2(props: SummaryProps_2 & BaseComponentInterface): JSX.Element;
7084
7126
 
7127
+ declare function LocationsFlow({ companyId, onEvent }: LocationsProps): JSX.Element;
7128
+
7129
+ declare interface LocationsProps extends BaseComponentInterface {
7130
+ companyId: string;
7131
+ }
7132
+
7085
7133
  declare type MODE = 'ADD' | 'LIST' | 'INITIAL' | 'EDIT';
7086
7134
 
7087
7135
  declare type MODE_2 = 'LIST' | 'ADD_ADDITIONAL_JOB' | 'ADD_INITIAL_JOB' | 'EDIT_ADDITIONAL_JOB' | 'EDIT_INITIAL_JOB' | 'PROCEED';
@@ -19345,6 +19393,14 @@ declare interface paths {
19345
19393
  };
19346
19394
  }
19347
19395
 
19396
+ declare const PAY_PERIODS: {
19397
+ readonly HOUR: "Hour";
19398
+ readonly WEEK: "Week";
19399
+ readonly MONTH: "Month";
19400
+ readonly YEAR: "Year";
19401
+ readonly PAYCHECK: "Paycheck";
19402
+ };
19403
+
19348
19404
  export declare function PaymentMethod(): JSX.Element;
19349
19405
 
19350
19406
  declare function PaymentMethod_2(props: PaymentMethodProps & BaseComponentInterface): JSX.Element;
@@ -19455,6 +19511,23 @@ declare interface PayrollTotalsConstructor {
19455
19511
  companyDebit?: number;
19456
19512
  }
19457
19513
 
19514
+ declare const PaySchedule: {
19515
+ ({ companyId, defaultValues, ...props }: PayScheduleProps & BaseComponentInterface): JSX.Element;
19516
+ Head: () => JSX.Element;
19517
+ List: () => JSX.Element | null;
19518
+ Edit: () => JSX.Element | null;
19519
+ Actions: () => JSX.Element;
19520
+ };
19521
+
19522
+ declare type PayScheduleDefaultValues = RequireAtLeastOne<Partial<Pick<Schemas['Pay-Schedule'], 'anchor_pay_date' | 'anchor_end_of_pay_period' | 'day_1' | 'day_2' | 'custom_name' | 'auto_pilot'>> & {
19523
+ frequency: 'Every week' | 'Every other week' | 'Twice per month' | 'Monthly';
19524
+ }>;
19525
+
19526
+ declare interface PayScheduleProps extends CommonComponentInterface {
19527
+ companyId: string;
19528
+ defaultValues?: PayScheduleDefaultValues;
19529
+ }
19530
+
19458
19531
  export declare function Profile(): JSX.Element;
19459
19532
 
19460
19533
  declare function Profile_2(props: ProfileProps & BaseComponentInterface): JSX.Element;
@@ -19476,6 +19549,7 @@ declare type ProfileContextType = {
19476
19549
  isPending: boolean;
19477
19550
  isAdmin: boolean;
19478
19551
  handleCancel: () => void;
19552
+ isSelfOnboardingEnabled: boolean;
19479
19553
  };
19480
19554
 
19481
19555
  declare const ProfileContextual: () => JSX.Element;
@@ -19502,6 +19576,7 @@ declare interface ProfileProps extends CommonComponentInterface {
19502
19576
  companyId: string;
19503
19577
  defaultValues?: ProfileDefaultValues;
19504
19578
  isAdmin?: boolean;
19579
+ isSelfOnboardingEnabled?: boolean;
19505
19580
  }
19506
19581
 
19507
19582
  declare type QueryParams<Path extends keyof paths> = _QueryParams<Path> extends {
@@ -19546,7 +19621,7 @@ declare type Schemas = components_2["schemas"];
19546
19621
  /**Creating new i18next instance to avoid global clashing */
19547
19622
  export declare const SDKI18next: i18n;
19548
19623
 
19549
- declare function SignatureForm_2({ form, companyId, children, className, ...props }: SignatureFormProps & BaseComponentInterface): JSX.Element;
19624
+ declare function SignatureForm_2({ formId, companyId, children, className, ...props }: SignatureFormProps & BaseComponentInterface): JSX.Element;
19550
19625
 
19551
19626
  declare namespace SignatureForm_2 {
19552
19627
  var Head: Head;
@@ -19558,7 +19633,7 @@ declare namespace SignatureForm_2 {
19558
19633
  declare type SignatureFormInputs = v.InferInput<typeof SignatureFormSchema>;
19559
19634
 
19560
19635
  declare interface SignatureFormProps {
19561
- form: Schemas['Form'];
19636
+ formId: string;
19562
19637
  companyId: string;
19563
19638
  children?: ReactNode;
19564
19639
  className?: string;
@@ -20185,6 +20260,18 @@ effective_date?: string;
20185
20260
  deposit_schedule?: string;
20186
20261
  }, Error>;
20187
20262
 
20263
+ export declare function useGetCompanyForm(form_id: string): UseSuspenseQueryResult< {
20264
+ readonly uuid: string;
20265
+ readonly name?: string;
20266
+ readonly title?: string;
20267
+ readonly description?: string;
20268
+ readonly draft?: boolean;
20269
+ readonly year?: number | null;
20270
+ readonly quarter?: number | null;
20271
+ readonly requires_signing?: boolean;
20272
+ document_content_type?: components_3["schemas"]["Form-Document-Content-Type-Type"];
20273
+ }, Error>;
20274
+
20188
20275
  export declare function useGetCompanyFormPdf(form_id: string): UseSuspenseQueryResult< {
20189
20276
  readonly uuid: string;
20190
20277
  document_url?: string | null;
@@ -21341,10 +21428,100 @@ export interface CompanyIndustry{
21341
21428
  "placeholder":string;
21342
21429
  "submitCta":string;
21343
21430
  };
21431
+ export interface CompanyLocations{
21432
+ "locationsListTitle":string;
21433
+ "locationsListDescription":string;
21434
+ "locationListLabel":string;
21435
+ "locationListCol1":string;
21436
+ "locationListCol2":string;
21437
+ "filingAddress":string;
21438
+ "mailingAddress":string;
21439
+ "hamburgerTitle":string;
21440
+ "editCta":string;
21441
+ "emptyTableTitle":string;
21442
+ "emptyTableDescription":string;
21443
+ "addLocationCta":string;
21444
+ "addFirstLicationCta":string;
21445
+ "locationFormTitle":string;
21446
+ "locationFormDescription":string;
21447
+ "street1Label":string;
21448
+ "street2Label":string;
21449
+ "cityLabel":string;
21450
+ "stateLabel":string;
21451
+ "statePlaceholder":string;
21452
+ "zipLabel":string;
21453
+ "phoneNumberLabel":string;
21454
+ "addressTypeLabel":string;
21455
+ "mailingAddressLabel":string;
21456
+ "mailingAddressDescription":string;
21457
+ "filingAddressLabel":string;
21458
+ "filingAddressDescription":string;
21459
+ "saveCta":string;
21460
+ "cancelCta":string;
21461
+ "continueCta":string;
21462
+ "validations":{
21463
+ "street1":string;
21464
+ "city":string;
21465
+ "state":string;
21466
+ "zip":string;
21467
+ "phone":string;
21468
+ }
21469
+ };
21344
21470
  export interface CompanyPaySchedule{
21471
+ "listDescription":string;
21472
+ "listDescription2":string;
21473
+ "addAnotherPayScheduleCta":string;
21474
+ "saveAndContinueCta":string;
21475
+ "pleaseVerify":string;
21476
+ "payScheduleList":{
21477
+ "name":string;
21478
+ "actions":string;
21479
+ "active":string;
21480
+ "inactive":string;
21481
+ "edit":string;
21482
+ }
21483
+ "headings":{
21484
+ "addPaySchedule":string;
21485
+ "editPaySchedule":string;
21486
+ "pageTitle":string;
21487
+ }
21488
+ "labels":{
21489
+ "payfrequency":string;
21490
+ "frequency":string;
21491
+ "deadline":string;
21492
+ "frequencyOptions":string;
21493
+ "firstPayDate":string;
21494
+ "firstPayPeriodEndDate":string;
21495
+ "firstPayDayOfTheMonth":string;
21496
+ "lastPayDayOfTheMonth":string;
21497
+ "preview":string;
21498
+ "legend":string;
21499
+ }
21500
+ "loading":string;
21501
+ "descriptions":{
21502
+ "frequencyOptionsDescription":string;
21503
+ "anchorPayDateDescription":string;
21504
+ "anchorEndOfPayPeriodDescription":string;
21505
+ }
21506
+ "payPreview":{
21345
21507
  "payPeriod":string;
21346
21508
  "payday":string;
21347
- "runPayrollBy":string;
21509
+ "payrollDeadline":string;
21510
+ }
21511
+ "actions":{
21512
+ "cancel":string;
21513
+ "save":string;
21514
+ }
21515
+ "frequencies":{
21516
+ "everyWeek":string;
21517
+ "everyOtherWeek":string;
21518
+ "twicePerMonth":string;
21519
+ "monthly":string;
21520
+ }
21521
+ "frequencyOptions":{
21522
+ "15thAndLast":string;
21523
+ "custom":string;
21524
+ }
21348
21525
  };
21349
21526
  export interface CompanySignatureForm{
21350
21527
  "signatureFormTitle":string;
@@ -21767,6 +21944,7 @@ export interface common{
21767
21944
  }
21768
21945
  "optionalLabel":string;
21769
21946
  "errors":{
21947
+ "errorHeading":string;
21770
21948
  "globalReactError":string;
21771
21949
  "resetGlobalError":string;
21772
21950
  "unknownError":string;
@@ -21901,7 +22079,7 @@ export interface common{
21901
22079
 
21902
22080
  interface CustomTypeOptions {
21903
22081
  defaultNS: 'common';
21904
- resources: { 'Company.AddBank': CompanyAddBank, 'Company.Addresses': CompanyAddresses, 'Company.AssignSignatory': CompanyAssignSignatory, 'Company.DocumentList': CompanyDocumentList, 'Company.FederalTaxes': CompanyFederalTaxes, 'Company.Industry': CompanyIndustry, 'Company.PaySchedule': CompanyPaySchedule, 'Company.SignatureForm': CompanySignatureForm, 'Employee.BankAccount': EmployeeBankAccount, 'Employee.Compensation': EmployeeCompensation, 'Employee.Deductions': EmployeeDeductions, 'Employee.DocumentSigner': EmployeeDocumentSigner, 'Employee.EmployeeList': EmployeeEmployeeList, 'Employee.HomeAddress': EmployeeHomeAddress, 'Employee.Landing': EmployeeLanding, 'Employee.OnboardingSummary': EmployeeOnboardingSummary, 'Employee.PaySchedules': EmployeePaySchedules, 'Employee.PaymentMethod': EmployeePaymentMethod, 'Employee.Profile': EmployeeProfile, 'Employee.SplitPaycheck': EmployeeSplitPaycheck, 'Employee.StateTaxes': EmployeeStateTaxes, 'Employee.Taxes': EmployeeTaxes, 'Payroll.PayrollHistoryList': PayrollPayrollHistoryList, 'Payroll.PayrollSchedule': PayrollPayrollSchedule, 'common': common, }
22082
+ resources: { 'Company.AddBank': CompanyAddBank, 'Company.Addresses': CompanyAddresses, 'Company.AssignSignatory': CompanyAssignSignatory, 'Company.DocumentList': CompanyDocumentList, 'Company.FederalTaxes': CompanyFederalTaxes, 'Company.Industry': CompanyIndustry, 'Company.Locations': CompanyLocations, 'Company.PaySchedule': CompanyPaySchedule, 'Company.SignatureForm': CompanySignatureForm, 'Employee.BankAccount': EmployeeBankAccount, 'Employee.Compensation': EmployeeCompensation, 'Employee.Deductions': EmployeeDeductions, 'Employee.DocumentSigner': EmployeeDocumentSigner, 'Employee.EmployeeList': EmployeeEmployeeList, 'Employee.HomeAddress': EmployeeHomeAddress, 'Employee.Landing': EmployeeLanding, 'Employee.OnboardingSummary': EmployeeOnboardingSummary, 'Employee.PaySchedules': EmployeePaySchedules, 'Employee.PaymentMethod': EmployeePaymentMethod, 'Employee.Profile': EmployeeProfile, 'Employee.SplitPaycheck': EmployeeSplitPaycheck, 'Employee.StateTaxes': EmployeeStateTaxes, 'Employee.Taxes': EmployeeTaxes, 'Payroll.PayrollHistoryList': PayrollPayrollHistoryList, 'Payroll.PayrollSchedule': PayrollPayrollSchedule, 'common': common, }
21905
22083
  };
21906
22084
  }
21907
22085
  declare module 'robot3' {
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { b1 as s, b3 as o, b8 as t, b2 as u, b6 as m, b7 as n, W as p, bg as d, Y as l, b9 as y, ba as r, bb as i, bc as E, b5 as G, b4 as b, bf as C, bd as A, bh as c, bi as g, X as S, b0 as U, aB as F, az as P, ap as x, au as D, a8 as T, a7 as k, a2 as h, aL as L, aI as W, ag as f, a3 as B, aD as H, aq as O, aK as v, av as I, aj as J, be as M, aZ as R, aT as w, af as j, Z as q, a0 as K, aa as X, a_ as Y, ac as Z, a5 as _, a4 as z, _ as N, ax as Q, ak as V, aA as $, aw as ee, aN as ae, aU as se, an as oe, am as te, aH as ue, aG as me, aR as ne, aE as pe, aP as de, as as le, ar as ye, a1 as re, aX as ie, a9 as Ee, aY as Ge, aW as be, ae as Ce, ah as Ae, a$ as ce, aV as ge, bj as Se, ab as Ue, ad as Fe, a6 as Pe, ay as xe, al as De, aC as Te, aM as ke, aO as he, ao as Le, aJ as We, aS as fe, aF as Be, aQ as He, at as Oe, ai as ve } from "./index-CqZomo0U.js";
1
+ import { b2 as s, b4 as o, b9 as t, b3 as u, b7 as m, b8 as n, W as p, bh as d, Y as l, ba as y, bb as r, bc as i, bd as E, b6 as G, b5 as b, bg as C, be as A, bi as c, bj as g, X as S, b1 as F, aB as U, az as P, ap as x, au as D, a8 as k, a7 as T, a2 as h, aL as L, aI as W, ag as f, a3 as B, aD as H, aq as O, aK as v, av as I, aj as J, bf as M, aZ as R, aT as w, af as j, Z as q, a0 as K, aa as X, a_ as Y, a$ as Z, ac as _, a5 as z, a4 as N, _ as Q, ax as V, ak as $, aA as ee, aw as ae, aN as se, aU as oe, an as te, am as ue, aH as me, aG as ne, aR as pe, aE as de, aP as le, as as ye, ar as re, a1 as ie, aX as Ee, a9 as Ge, aY as be, aW as Ce, ae as Ae, ah as ce, b0 as ge, aV as Se, bk as Fe, ab as Ue, ad as Pe, a6 as xe, ay as De, al as ke, aC as Te, aM as he, aO as Le, ao as We, aJ as fe, aS as Be, aF as He, aQ as Oe, at as ve, ai as Ie } from "./index-BjyRpZDE.js";
2
2
  export {
3
3
  s as ApiError,
4
4
  o as Company,
@@ -20,13 +20,13 @@ export {
20
20
  c as ThemeContext,
21
21
  g as ThemeProvider,
22
22
  S as componentEvents,
23
- U as handleResponse,
24
- F as useAddEmployeeBankAccount,
23
+ F as handleResponse,
24
+ U as useAddEmployeeBankAccount,
25
25
  P as useAddEmployeeDeduction,
26
26
  x as useAddEmployeeHomeAddress,
27
27
  D as useAddEmployeeWorkAddress,
28
- T as useCreateCompanyBankAccount,
29
- k as useCreateCompanyLocation,
28
+ k as useCreateCompanyBankAccount,
29
+ T as useCreateCompanyLocation,
30
30
  h as useCreateEmployee,
31
31
  L as useCreateEmployeeCompensation,
32
32
  W as useCreateEmployeeJob,
@@ -44,50 +44,51 @@ export {
44
44
  q as useGetCompany,
45
45
  K as useGetCompanyAddresses,
46
46
  X as useGetCompanyFederalTaxes,
47
- Y as useGetCompanyFormPdf,
48
- Z as useGetCompanyIndustry,
49
- _ as useGetCompanyLocation,
50
- z as useGetCompanyLocations,
51
- N as useGetCompanyOnboardingStatus,
52
- Q as useGetDeduction,
53
- V as useGetEmployee,
54
- $ as useGetEmployeeBankAccounts,
55
- ee as useGetEmployeeDeductions,
56
- ae as useGetEmployeeFederalTaxes,
57
- se as useGetEmployeeFormPdf,
58
- oe as useGetEmployeeHomeAddress,
59
- te as useGetEmployeeHomeAddresses,
60
- ue as useGetEmployeeJob,
61
- me as useGetEmployeeJobs,
62
- ne as useGetEmployeeOnboardingStatus,
63
- pe as useGetEmployeePaymentMethod,
64
- de as useGetEmployeeStateTaxes,
65
- le as useGetEmployeeWorkAddress,
66
- ye as useGetEmployeeWorkAddresses,
67
- re as useGetEmployeesByCompany,
68
- ie as useGetHistoricalPayrolls,
69
- Ee as useGetMinimumWagesForLocation,
70
- Ge as useGetPayroll,
71
- be as useGetPendingPayrolls,
72
- Ce as useGetStateTaxRequirements,
73
- Ae as useInviteSignatory,
74
- ce as useSignCompanyForm,
75
- ge as useSignEmployeeForm,
76
- Se as useTheme,
47
+ Y as useGetCompanyForm,
48
+ Z as useGetCompanyFormPdf,
49
+ _ as useGetCompanyIndustry,
50
+ z as useGetCompanyLocation,
51
+ N as useGetCompanyLocations,
52
+ Q as useGetCompanyOnboardingStatus,
53
+ V as useGetDeduction,
54
+ $ as useGetEmployee,
55
+ ee as useGetEmployeeBankAccounts,
56
+ ae as useGetEmployeeDeductions,
57
+ se as useGetEmployeeFederalTaxes,
58
+ oe as useGetEmployeeFormPdf,
59
+ te as useGetEmployeeHomeAddress,
60
+ ue as useGetEmployeeHomeAddresses,
61
+ me as useGetEmployeeJob,
62
+ ne as useGetEmployeeJobs,
63
+ pe as useGetEmployeeOnboardingStatus,
64
+ de as useGetEmployeePaymentMethod,
65
+ le as useGetEmployeeStateTaxes,
66
+ ye as useGetEmployeeWorkAddress,
67
+ re as useGetEmployeeWorkAddresses,
68
+ ie as useGetEmployeesByCompany,
69
+ Ee as useGetHistoricalPayrolls,
70
+ Ge as useGetMinimumWagesForLocation,
71
+ be as useGetPayroll,
72
+ Ce as useGetPendingPayrolls,
73
+ Ae as useGetStateTaxRequirements,
74
+ ce as useInviteSignatory,
75
+ ge as useSignCompanyForm,
76
+ Se as useSignEmployeeForm,
77
+ Fe as useTheme,
77
78
  Ue as useUpdateCompanyFederalTaxes,
78
- Fe as useUpdateCompanyIndustry,
79
- Pe as useUpdateCompanyLocation,
80
- xe as useUpdateDeduction,
81
- De as useUpdateEmployee,
79
+ Pe as useUpdateCompanyIndustry,
80
+ xe as useUpdateCompanyLocation,
81
+ De as useUpdateDeduction,
82
+ ke as useUpdateEmployee,
82
83
  Te as useUpdateEmployeeBankAccount,
83
- ke as useUpdateEmployeeCompensation,
84
- he as useUpdateEmployeeFederalTaxes,
85
- Le as useUpdateEmployeeHomeAddress,
86
- We as useUpdateEmployeeJob,
87
- fe as useUpdateEmployeeOnboardingStatus,
88
- Be as useUpdateEmployeePaymentMethod,
89
- He as useUpdateEmployeeStateTaxes,
90
- Oe as useUpdateEmployeeWorkAddress,
91
- ve as useUpdateSignatory
84
+ he as useUpdateEmployeeCompensation,
85
+ Le as useUpdateEmployeeFederalTaxes,
86
+ We as useUpdateEmployeeHomeAddress,
87
+ fe as useUpdateEmployeeJob,
88
+ Be as useUpdateEmployeeOnboardingStatus,
89
+ He as useUpdateEmployeePaymentMethod,
90
+ Oe as useUpdateEmployeeStateTaxes,
91
+ ve as useUpdateEmployeeWorkAddress,
92
+ Ie as useUpdateSignatory
92
93
  };
93
94
  //# sourceMappingURL=index.js.map