conductor-node 0.1.2 → 0.1.5
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/src/BaseClient.d.ts +1 -1
- package/dist/src/BaseClient.js +1 -1
- package/dist/src/Client.d.ts +1 -1
- package/dist/src/Client.js +1 -1
- package/dist/src/{qb → qbd}/ClientQBD.d.ts +8 -11
- package/dist/src/{qb → qbd}/ClientQBD.js +1 -1
- package/dist/src/qbd/qbdTypes.d.ts +713 -0
- package/dist/src/{qb/qbXMLTypes/Account.js → qbd/qbdTypes.js} +0 -0
- package/package.json +1 -1
- package/dist/src/qb/qbXMLTypes/Account.d.ts +0 -325
- package/dist/src/qb/qbXMLTypes/Customer.d.ts +0 -226
- package/dist/src/qb/qbXMLTypes/Customer.js +0 -2
- package/dist/src/qb/qbXMLTypes/Employee.d.ts +0 -590
- package/dist/src/qb/qbXMLTypes/Employee.js +0 -2
- package/dist/src/qb/qbXMLTypes/Vendor.d.ts +0 -245
- package/dist/src/qb/qbXMLTypes/Vendor.js +0 -2
- package/dist/src/qb/qbXMLTypes/shared.d.ts +0 -109
- package/dist/src/qb/qbXMLTypes/shared.js +0 -2
|
@@ -0,0 +1,713 @@
|
|
|
1
|
+
interface ParentRef {
|
|
2
|
+
ListID?: string;
|
|
3
|
+
FullName?: string;
|
|
4
|
+
}
|
|
5
|
+
declare type AccountType = "AccountsPayable" | "AccountsReceivable" | "Bank" | "CostOfGoodsSold" | "CreditCard" | "Equity" | "Expense" | "FixedAsset" | "Income" | "LongTermLiability" | "NonPosting" | "OtherAsset" | "OtherCurrentAsset" | "OtherCurrentLiability" | "OtherExpense" | "OtherIncome";
|
|
6
|
+
interface SalesTaxCodeRef {
|
|
7
|
+
ListID?: string;
|
|
8
|
+
FullName?: string;
|
|
9
|
+
}
|
|
10
|
+
interface CurrencyRef {
|
|
11
|
+
ListID?: string;
|
|
12
|
+
FullName?: string;
|
|
13
|
+
}
|
|
14
|
+
interface AccountAdd {
|
|
15
|
+
Name: string;
|
|
16
|
+
IsActive?: boolean;
|
|
17
|
+
ParentRef?: ParentRef;
|
|
18
|
+
AccountType: AccountType;
|
|
19
|
+
AccountNumber?: string;
|
|
20
|
+
BankNumber?: string;
|
|
21
|
+
Desc?: string;
|
|
22
|
+
OpenBalance?: string;
|
|
23
|
+
OpenBalanceDate?: string;
|
|
24
|
+
SalesTaxCodeRef?: SalesTaxCodeRef;
|
|
25
|
+
TaxLineID?: number;
|
|
26
|
+
CurrencyRef?: CurrencyRef;
|
|
27
|
+
}
|
|
28
|
+
export interface AccountAddRq {
|
|
29
|
+
AccountAdd: AccountAdd;
|
|
30
|
+
IncludeRetElement?: string[] | string;
|
|
31
|
+
}
|
|
32
|
+
declare type SpecialAccountType = "AccountsPayable" | "AccountsReceivable" | "CondenseItemAdjustmentExpenses" | "CostOfGoodsSold" | "DirectDepositLiabilities" | "Estimates" | "ExchangeGainLoss" | "InventoryAssets" | "ItemReceiptAccount" | "OpeningBalanceEquity" | "PayrollExpenses" | "PayrollLiabilities" | "PettyCash" | "PurchaseOrders" | "ReconciliationDifferences" | "RetainedEarnings" | "SalesOrders" | "SalesTaxPayable" | "UncategorizedExpenses" | "UncategorizedIncome" | "UndepositedFunds";
|
|
33
|
+
interface TaxLineInfoRet {
|
|
34
|
+
TaxLineID: number;
|
|
35
|
+
TaxLineName?: string;
|
|
36
|
+
}
|
|
37
|
+
declare type CashFlowClassification = "Financing" | "Investing" | "None" | "NotApplicable" | "Operating";
|
|
38
|
+
declare type DataExtType = "AMTTYPE" | "DATETIMETYPE" | "INTTYPE" | "PERCENTTYPE" | "PRICETYPE" | "QUANTYPE" | "STR1024TYPE" | "STR255TYPE";
|
|
39
|
+
interface DataExtRet {
|
|
40
|
+
OwnerID?: string;
|
|
41
|
+
DataExtName: string;
|
|
42
|
+
DataExtType: DataExtType;
|
|
43
|
+
DataExtValue: string;
|
|
44
|
+
}
|
|
45
|
+
interface AccountRet {
|
|
46
|
+
ListID: string;
|
|
47
|
+
TimeCreated: string;
|
|
48
|
+
TimeModified: string;
|
|
49
|
+
EditSequence: string;
|
|
50
|
+
Name: string;
|
|
51
|
+
FullName: string;
|
|
52
|
+
IsActive?: boolean;
|
|
53
|
+
ParentRef?: ParentRef;
|
|
54
|
+
Sublevel: number;
|
|
55
|
+
AccountType: AccountType;
|
|
56
|
+
SpecialAccountType?: SpecialAccountType;
|
|
57
|
+
IsTaxAccount?: boolean;
|
|
58
|
+
AccountNumber?: string;
|
|
59
|
+
BankNumber?: string;
|
|
60
|
+
Desc?: string;
|
|
61
|
+
Balance?: string;
|
|
62
|
+
TotalBalance?: string;
|
|
63
|
+
SalesTaxCodeRef?: SalesTaxCodeRef;
|
|
64
|
+
TaxLineInfoRet?: TaxLineInfoRet;
|
|
65
|
+
CashFlowClassification?: CashFlowClassification;
|
|
66
|
+
CurrencyRef?: CurrencyRef;
|
|
67
|
+
DataExtRet?: DataExtRet | DataExtRet[];
|
|
68
|
+
}
|
|
69
|
+
interface ErrorRecovery {
|
|
70
|
+
ListID?: string;
|
|
71
|
+
OwnerID?: string;
|
|
72
|
+
TxnID?: string;
|
|
73
|
+
TxnNumber?: number;
|
|
74
|
+
EditSequence?: string;
|
|
75
|
+
ExternalGUID?: string;
|
|
76
|
+
}
|
|
77
|
+
export interface AccountAddRs {
|
|
78
|
+
AccountRet?: AccountRet;
|
|
79
|
+
ErrorRecovery?: ErrorRecovery;
|
|
80
|
+
}
|
|
81
|
+
/** @default: ActiveOnly */
|
|
82
|
+
declare type ActiveStatus = "ActiveOnly" | "All" | "InactiveOnly";
|
|
83
|
+
declare type MatchCriterion = "Contains" | "EndsWith" | "StartsWith";
|
|
84
|
+
interface NameFilter {
|
|
85
|
+
MatchCriterion: MatchCriterion;
|
|
86
|
+
Name: string;
|
|
87
|
+
}
|
|
88
|
+
interface NameRangeFilter {
|
|
89
|
+
FromName?: string;
|
|
90
|
+
ToName?: string;
|
|
91
|
+
}
|
|
92
|
+
interface CurrencyFilter {
|
|
93
|
+
ListID?: string[] | string;
|
|
94
|
+
FullName?: string[] | string;
|
|
95
|
+
}
|
|
96
|
+
export interface AccountQueryRq {
|
|
97
|
+
ListID?: string[] | string;
|
|
98
|
+
FullName?: string[] | string;
|
|
99
|
+
MaxReturned?: number;
|
|
100
|
+
ActiveStatus?: ActiveStatus;
|
|
101
|
+
FromModifiedDate?: string;
|
|
102
|
+
ToModifiedDate?: string;
|
|
103
|
+
NameFilter?: NameFilter;
|
|
104
|
+
NameRangeFilter?: NameRangeFilter;
|
|
105
|
+
AccountType?: AccountType[] | AccountType;
|
|
106
|
+
CurrencyFilter?: CurrencyFilter;
|
|
107
|
+
IncludeRetElement?: string[] | string;
|
|
108
|
+
OwnerID?: string[] | string;
|
|
109
|
+
}
|
|
110
|
+
export interface AccountQueryRs {
|
|
111
|
+
AccountRet?: AccountRet | AccountRet[];
|
|
112
|
+
}
|
|
113
|
+
declare type Operator = "Equal" | "GreaterThan" | "GreaterThanEqual" | "LessThan" | "LessThanEqual";
|
|
114
|
+
interface TotalBalanceFilter {
|
|
115
|
+
Operator: Operator;
|
|
116
|
+
Amount: string;
|
|
117
|
+
}
|
|
118
|
+
interface ClassFilter {
|
|
119
|
+
ListID?: string[] | string;
|
|
120
|
+
FullName?: string[] | string;
|
|
121
|
+
ListIDWithChildren?: string;
|
|
122
|
+
FullNameWithChildren?: string;
|
|
123
|
+
}
|
|
124
|
+
export interface CustomerQueryRq {
|
|
125
|
+
ListID?: string[] | string;
|
|
126
|
+
FullName?: string[] | string;
|
|
127
|
+
MaxReturned?: number;
|
|
128
|
+
ActiveStatus?: ActiveStatus;
|
|
129
|
+
FromModifiedDate?: string;
|
|
130
|
+
ToModifiedDate?: string;
|
|
131
|
+
NameFilter?: NameFilter;
|
|
132
|
+
NameRangeFilter?: NameRangeFilter;
|
|
133
|
+
TotalBalanceFilter?: TotalBalanceFilter;
|
|
134
|
+
CurrencyFilter?: CurrencyFilter;
|
|
135
|
+
ClassFilter?: ClassFilter;
|
|
136
|
+
IncludeRetElement?: string[] | string;
|
|
137
|
+
OwnerID?: string[] | string;
|
|
138
|
+
}
|
|
139
|
+
interface ClassRef {
|
|
140
|
+
ListID?: string;
|
|
141
|
+
FullName?: string;
|
|
142
|
+
}
|
|
143
|
+
interface BillAddress {
|
|
144
|
+
Addr1?: string;
|
|
145
|
+
Addr2?: string;
|
|
146
|
+
Addr3?: string;
|
|
147
|
+
Addr4?: string;
|
|
148
|
+
Addr5?: string;
|
|
149
|
+
City?: string;
|
|
150
|
+
State?: string;
|
|
151
|
+
PostalCode?: string;
|
|
152
|
+
Country?: string;
|
|
153
|
+
Note?: string;
|
|
154
|
+
}
|
|
155
|
+
interface BillAddressBlock {
|
|
156
|
+
Addr1?: string;
|
|
157
|
+
Addr2?: string;
|
|
158
|
+
Addr3?: string;
|
|
159
|
+
Addr4?: string;
|
|
160
|
+
Addr5?: string;
|
|
161
|
+
}
|
|
162
|
+
interface ShipAddress {
|
|
163
|
+
Addr1?: string;
|
|
164
|
+
Addr2?: string;
|
|
165
|
+
Addr3?: string;
|
|
166
|
+
Addr4?: string;
|
|
167
|
+
Addr5?: string;
|
|
168
|
+
City?: string;
|
|
169
|
+
State?: string;
|
|
170
|
+
PostalCode?: string;
|
|
171
|
+
Country?: string;
|
|
172
|
+
Note?: string;
|
|
173
|
+
}
|
|
174
|
+
interface ShipAddressBlock {
|
|
175
|
+
Addr1?: string;
|
|
176
|
+
Addr2?: string;
|
|
177
|
+
Addr3?: string;
|
|
178
|
+
Addr4?: string;
|
|
179
|
+
Addr5?: string;
|
|
180
|
+
}
|
|
181
|
+
interface ShipToAddress {
|
|
182
|
+
Name: string;
|
|
183
|
+
Addr1?: string;
|
|
184
|
+
Addr2?: string;
|
|
185
|
+
Addr3?: string;
|
|
186
|
+
Addr4?: string;
|
|
187
|
+
Addr5?: string;
|
|
188
|
+
City?: string;
|
|
189
|
+
State?: string;
|
|
190
|
+
PostalCode?: string;
|
|
191
|
+
Country?: string;
|
|
192
|
+
Note?: string;
|
|
193
|
+
DefaultShipTo?: boolean;
|
|
194
|
+
}
|
|
195
|
+
interface AdditionalContactRef {
|
|
196
|
+
ContactName: string;
|
|
197
|
+
ContactValue: string;
|
|
198
|
+
}
|
|
199
|
+
interface ContactsRet {
|
|
200
|
+
ListID: string;
|
|
201
|
+
TimeCreated: string;
|
|
202
|
+
TimeModified: string;
|
|
203
|
+
EditSequence: string;
|
|
204
|
+
Contact?: string;
|
|
205
|
+
Salutation?: string;
|
|
206
|
+
FirstName: string;
|
|
207
|
+
MiddleName?: string;
|
|
208
|
+
LastName?: string;
|
|
209
|
+
JobTitle?: string;
|
|
210
|
+
AdditionalContactRef?: AdditionalContactRef | AdditionalContactRef[];
|
|
211
|
+
}
|
|
212
|
+
interface CustomerTypeRef {
|
|
213
|
+
ListID?: string;
|
|
214
|
+
FullName?: string;
|
|
215
|
+
}
|
|
216
|
+
interface TermsRef {
|
|
217
|
+
ListID?: string;
|
|
218
|
+
FullName?: string;
|
|
219
|
+
}
|
|
220
|
+
interface SalesRepRef {
|
|
221
|
+
ListID?: string;
|
|
222
|
+
FullName?: string;
|
|
223
|
+
}
|
|
224
|
+
interface ItemSalesTaxRef {
|
|
225
|
+
ListID?: string;
|
|
226
|
+
FullName?: string;
|
|
227
|
+
}
|
|
228
|
+
/** @default: Canada */
|
|
229
|
+
declare type SalesTaxCountry = "Australia" | "Canada" | "UK" | "US";
|
|
230
|
+
interface PreferredPaymentMethodRef {
|
|
231
|
+
ListID?: string;
|
|
232
|
+
FullName?: string;
|
|
233
|
+
}
|
|
234
|
+
interface CreditCardInfo {
|
|
235
|
+
CreditCardNumber?: string;
|
|
236
|
+
ExpirationMonth?: number;
|
|
237
|
+
ExpirationYear?: number;
|
|
238
|
+
NameOnCard?: string;
|
|
239
|
+
CreditCardAddress?: string;
|
|
240
|
+
CreditCardPostalCode?: string;
|
|
241
|
+
}
|
|
242
|
+
/** @default: None */
|
|
243
|
+
declare type JobStatus = "Awarded" | "Closed" | "InProgress" | "None" | "NotAwarded" | "Pending";
|
|
244
|
+
interface JobTypeRef {
|
|
245
|
+
ListID?: string;
|
|
246
|
+
FullName?: string;
|
|
247
|
+
}
|
|
248
|
+
interface AdditionalNotesRet {
|
|
249
|
+
NoteID: number;
|
|
250
|
+
Date: string;
|
|
251
|
+
Note: string;
|
|
252
|
+
}
|
|
253
|
+
/** @default: None */
|
|
254
|
+
declare type PreferredDeliveryMethod = "Email" | "Fax" | "None";
|
|
255
|
+
interface PriceLevelRef {
|
|
256
|
+
ListID?: string;
|
|
257
|
+
FullName?: string;
|
|
258
|
+
}
|
|
259
|
+
interface CustomerRet {
|
|
260
|
+
ListID: string;
|
|
261
|
+
TimeCreated: string;
|
|
262
|
+
TimeModified: string;
|
|
263
|
+
EditSequence: string;
|
|
264
|
+
Name: string;
|
|
265
|
+
FullName: string;
|
|
266
|
+
IsActive?: boolean;
|
|
267
|
+
ClassRef?: ClassRef;
|
|
268
|
+
ParentRef?: ParentRef;
|
|
269
|
+
Sublevel: number;
|
|
270
|
+
CompanyName?: string;
|
|
271
|
+
Salutation?: string;
|
|
272
|
+
FirstName?: string;
|
|
273
|
+
MiddleName?: string;
|
|
274
|
+
LastName?: string;
|
|
275
|
+
JobTitle?: string;
|
|
276
|
+
BillAddress?: BillAddress;
|
|
277
|
+
BillAddressBlock?: BillAddressBlock;
|
|
278
|
+
ShipAddress?: ShipAddress;
|
|
279
|
+
ShipAddressBlock?: ShipAddressBlock;
|
|
280
|
+
ShipToAddress?: ShipToAddress | ShipToAddress[];
|
|
281
|
+
Phone?: string;
|
|
282
|
+
AltPhone?: string;
|
|
283
|
+
Fax?: string;
|
|
284
|
+
Email?: string;
|
|
285
|
+
Cc?: string;
|
|
286
|
+
Contact?: string;
|
|
287
|
+
AltContact?: string;
|
|
288
|
+
AdditionalContactRef?: AdditionalContactRef | AdditionalContactRef[];
|
|
289
|
+
ContactsRet?: ContactsRet | ContactsRet[];
|
|
290
|
+
CustomerTypeRef?: CustomerTypeRef;
|
|
291
|
+
TermsRef?: TermsRef;
|
|
292
|
+
SalesRepRef?: SalesRepRef;
|
|
293
|
+
Balance?: string;
|
|
294
|
+
TotalBalance?: string;
|
|
295
|
+
SalesTaxCodeRef?: SalesTaxCodeRef;
|
|
296
|
+
ItemSalesTaxRef?: ItemSalesTaxRef;
|
|
297
|
+
SalesTaxCountry?: SalesTaxCountry;
|
|
298
|
+
ResaleNumber?: string;
|
|
299
|
+
AccountNumber?: string;
|
|
300
|
+
CreditLimit?: string;
|
|
301
|
+
PreferredPaymentMethodRef?: PreferredPaymentMethodRef;
|
|
302
|
+
CreditCardInfo?: CreditCardInfo;
|
|
303
|
+
JobStatus?: JobStatus;
|
|
304
|
+
JobStartDate?: string;
|
|
305
|
+
JobProjectedEndDate?: string;
|
|
306
|
+
JobEndDate?: string;
|
|
307
|
+
JobDesc?: string;
|
|
308
|
+
JobTypeRef?: JobTypeRef;
|
|
309
|
+
Notes?: string;
|
|
310
|
+
AdditionalNotesRet?: AdditionalNotesRet | AdditionalNotesRet[];
|
|
311
|
+
PreferredDeliveryMethod?: PreferredDeliveryMethod;
|
|
312
|
+
PriceLevelRef?: PriceLevelRef;
|
|
313
|
+
ExternalGUID?: string;
|
|
314
|
+
TaxRegistrationNumber?: string;
|
|
315
|
+
CurrencyRef?: CurrencyRef;
|
|
316
|
+
DataExtRet?: DataExtRet | DataExtRet[];
|
|
317
|
+
}
|
|
318
|
+
export interface CustomerQueryRs {
|
|
319
|
+
CustomerRet?: CustomerRet | CustomerRet[];
|
|
320
|
+
}
|
|
321
|
+
interface SupervisorRef {
|
|
322
|
+
ListID?: string;
|
|
323
|
+
FullName?: string;
|
|
324
|
+
}
|
|
325
|
+
interface EmployeeAddress {
|
|
326
|
+
Addr1?: string;
|
|
327
|
+
Addr2?: string;
|
|
328
|
+
City?: string;
|
|
329
|
+
State?: string;
|
|
330
|
+
PostalCode?: string;
|
|
331
|
+
}
|
|
332
|
+
declare type Relation = "Brother" | "Daughter" | "Father" | "Friend" | "Mother" | "Other" | "Partner" | "Sister" | "Son" | "Spouse";
|
|
333
|
+
interface PrimaryContact {
|
|
334
|
+
ContactName: string;
|
|
335
|
+
ContactValue: string;
|
|
336
|
+
Relation?: Relation;
|
|
337
|
+
}
|
|
338
|
+
interface SecondaryContact {
|
|
339
|
+
ContactName: string;
|
|
340
|
+
ContactValue: string;
|
|
341
|
+
Relation?: Relation;
|
|
342
|
+
}
|
|
343
|
+
interface EmergencyContacts {
|
|
344
|
+
PrimaryContact?: PrimaryContact;
|
|
345
|
+
SecondaryContact?: SecondaryContact;
|
|
346
|
+
}
|
|
347
|
+
/** @default: Regular */
|
|
348
|
+
declare type EmployeeType = "Officer" | "Owner" | "Regular" | "Statutory";
|
|
349
|
+
declare type PartOrFullTime = "FullTime" | "PartTime";
|
|
350
|
+
declare type Exempt = "Exempt" | "NonExempt";
|
|
351
|
+
declare type KeyEmployee = "No" | "Yes";
|
|
352
|
+
declare type Gender = "Female" | "Male";
|
|
353
|
+
declare type USCitizen = "No" | "Yes";
|
|
354
|
+
declare type Ethnicity = "AmericianIndian" | "Asian" | "Black" | "Hawaiian" | "Hispanic" | "TwoOrMoreRaces" | "White";
|
|
355
|
+
declare type Disabled = "No" | "Yes";
|
|
356
|
+
declare type OnFile = "No" | "Yes";
|
|
357
|
+
declare type USVeteran = "No" | "Yes";
|
|
358
|
+
declare type MilitaryStatus = "Active" | "Reserve";
|
|
359
|
+
interface AdditionalNotes {
|
|
360
|
+
Note: string;
|
|
361
|
+
}
|
|
362
|
+
interface BillingRateRef {
|
|
363
|
+
ListID?: string;
|
|
364
|
+
FullName?: string;
|
|
365
|
+
}
|
|
366
|
+
declare type PayPeriod = "Biweekly" | "Daily" | "Monthly" | "Quarterly" | "Semimonthly" | "Weekly" | "Yearly";
|
|
367
|
+
interface PayrollItemWageRef {
|
|
368
|
+
ListID?: string;
|
|
369
|
+
FullName?: string;
|
|
370
|
+
}
|
|
371
|
+
interface Earnings {
|
|
372
|
+
PayrollItemWageRef: PayrollItemWageRef;
|
|
373
|
+
Rate?: string;
|
|
374
|
+
RatePercent?: string;
|
|
375
|
+
}
|
|
376
|
+
declare type UseTimeDataToCreatePaychecks = "DoNotUseTimeData" | "NotSet" | "UseTimeData";
|
|
377
|
+
declare type AccrualPeriod = "BeginningOfYear" | "EveryHourOnPaycheck" | "EveryPaycheck";
|
|
378
|
+
interface SickHours {
|
|
379
|
+
HoursAvailable?: string;
|
|
380
|
+
AccrualPeriod?: AccrualPeriod;
|
|
381
|
+
HoursAccrued?: string;
|
|
382
|
+
MaximumHours?: string;
|
|
383
|
+
IsResettingHoursEachNewYear?: boolean;
|
|
384
|
+
HoursUsed?: string;
|
|
385
|
+
AccrualStartDate?: string;
|
|
386
|
+
}
|
|
387
|
+
interface VacationHours {
|
|
388
|
+
HoursAvailable?: string;
|
|
389
|
+
AccrualPeriod?: AccrualPeriod;
|
|
390
|
+
HoursAccrued?: string;
|
|
391
|
+
MaximumHours?: string;
|
|
392
|
+
IsResettingHoursEachNewYear?: boolean;
|
|
393
|
+
HoursUsed?: string;
|
|
394
|
+
AccrualStartDate?: string;
|
|
395
|
+
}
|
|
396
|
+
interface EmployeePayrollInfo {
|
|
397
|
+
PayPeriod?: PayPeriod;
|
|
398
|
+
ClassRef?: ClassRef;
|
|
399
|
+
ClearEarnings?: boolean;
|
|
400
|
+
Earnings?: Earnings | Earnings[];
|
|
401
|
+
IsUsingTimeDataToCreatePaychecks?: boolean;
|
|
402
|
+
UseTimeDataToCreatePaychecks?: UseTimeDataToCreatePaychecks;
|
|
403
|
+
SickHours?: SickHours;
|
|
404
|
+
VacationHours?: VacationHours;
|
|
405
|
+
}
|
|
406
|
+
interface EmployeeAdd {
|
|
407
|
+
IsActive?: boolean;
|
|
408
|
+
Salutation?: string;
|
|
409
|
+
FirstName?: string;
|
|
410
|
+
MiddleName?: string;
|
|
411
|
+
LastName?: string;
|
|
412
|
+
JobTitle?: string;
|
|
413
|
+
SupervisorRef?: SupervisorRef;
|
|
414
|
+
Department?: string;
|
|
415
|
+
Description?: string;
|
|
416
|
+
TargetBonus?: string;
|
|
417
|
+
EmployeeAddress?: EmployeeAddress;
|
|
418
|
+
PrintAs?: string;
|
|
419
|
+
Phone?: string;
|
|
420
|
+
Mobile?: string;
|
|
421
|
+
Pager?: string;
|
|
422
|
+
PagerPIN?: string;
|
|
423
|
+
AltPhone?: string;
|
|
424
|
+
Fax?: string;
|
|
425
|
+
SSN?: string;
|
|
426
|
+
Email?: string;
|
|
427
|
+
AdditionalContactRef?: AdditionalContactRef | AdditionalContactRef[];
|
|
428
|
+
EmergencyContacts?: EmergencyContacts;
|
|
429
|
+
EmployeeType?: EmployeeType;
|
|
430
|
+
PartOrFullTime?: PartOrFullTime;
|
|
431
|
+
Exempt?: Exempt;
|
|
432
|
+
KeyEmployee?: KeyEmployee;
|
|
433
|
+
Gender?: Gender;
|
|
434
|
+
HiredDate?: string;
|
|
435
|
+
OriginalHireDate?: string;
|
|
436
|
+
AdjustedServiceDate?: string;
|
|
437
|
+
ReleasedDate?: string;
|
|
438
|
+
BirthDate?: string;
|
|
439
|
+
USCitizen?: USCitizen;
|
|
440
|
+
Ethnicity?: Ethnicity;
|
|
441
|
+
Disabled?: Disabled;
|
|
442
|
+
DisabilityDesc?: string;
|
|
443
|
+
OnFile?: OnFile;
|
|
444
|
+
WorkAuthExpireDate?: string;
|
|
445
|
+
USVeteran?: USVeteran;
|
|
446
|
+
MilitaryStatus?: MilitaryStatus;
|
|
447
|
+
AccountNumber?: string;
|
|
448
|
+
Notes?: string;
|
|
449
|
+
AdditionalNotes?: AdditionalNotes | AdditionalNotes[];
|
|
450
|
+
BillingRateRef?: BillingRateRef;
|
|
451
|
+
EmployeePayrollInfo?: EmployeePayrollInfo;
|
|
452
|
+
ExternalGUID?: string;
|
|
453
|
+
}
|
|
454
|
+
export interface EmployeeAddRq {
|
|
455
|
+
EmployeeAdd: EmployeeAdd;
|
|
456
|
+
IncludeRetElement?: string[] | string;
|
|
457
|
+
}
|
|
458
|
+
interface EmployeeRet {
|
|
459
|
+
ListID: string;
|
|
460
|
+
TimeCreated: string;
|
|
461
|
+
TimeModified: string;
|
|
462
|
+
EditSequence: string;
|
|
463
|
+
Name: string;
|
|
464
|
+
IsActive?: boolean;
|
|
465
|
+
Salutation?: string;
|
|
466
|
+
FirstName?: string;
|
|
467
|
+
MiddleName?: string;
|
|
468
|
+
LastName?: string;
|
|
469
|
+
JobTitle?: string;
|
|
470
|
+
SupervisorRef?: SupervisorRef;
|
|
471
|
+
Department?: string;
|
|
472
|
+
Description?: string;
|
|
473
|
+
TargetBonus?: string;
|
|
474
|
+
EmployeeAddress?: EmployeeAddress;
|
|
475
|
+
PrintAs?: string;
|
|
476
|
+
Phone?: string;
|
|
477
|
+
Mobile?: string;
|
|
478
|
+
Pager?: string;
|
|
479
|
+
PagerPIN?: string;
|
|
480
|
+
AltPhone?: string;
|
|
481
|
+
Fax?: string;
|
|
482
|
+
SSN?: string;
|
|
483
|
+
Email?: string;
|
|
484
|
+
AdditionalContactRef?: AdditionalContactRef | AdditionalContactRef[];
|
|
485
|
+
EmergencyContacts?: EmergencyContacts;
|
|
486
|
+
EmployeeType?: EmployeeType;
|
|
487
|
+
PartOrFullTime?: PartOrFullTime;
|
|
488
|
+
Exempt?: Exempt;
|
|
489
|
+
KeyEmployee?: KeyEmployee;
|
|
490
|
+
Gender?: Gender;
|
|
491
|
+
HiredDate?: string;
|
|
492
|
+
OriginalHireDate?: string;
|
|
493
|
+
AdjustedServiceDate?: string;
|
|
494
|
+
ReleasedDate?: string;
|
|
495
|
+
BirthDate?: string;
|
|
496
|
+
USCitizen?: USCitizen;
|
|
497
|
+
Ethnicity?: Ethnicity;
|
|
498
|
+
Disabled?: Disabled;
|
|
499
|
+
DisabilityDesc?: string;
|
|
500
|
+
OnFile?: OnFile;
|
|
501
|
+
WorkAuthExpireDate?: string;
|
|
502
|
+
USVeteran?: USVeteran;
|
|
503
|
+
MilitaryStatus?: MilitaryStatus;
|
|
504
|
+
AccountNumber?: string;
|
|
505
|
+
Notes?: string;
|
|
506
|
+
AdditionalNotesRet?: AdditionalNotesRet | AdditionalNotesRet[];
|
|
507
|
+
BillingRateRef?: BillingRateRef;
|
|
508
|
+
EmployeePayrollInfo?: EmployeePayrollInfo;
|
|
509
|
+
ExternalGUID?: string;
|
|
510
|
+
DataExtRet?: DataExtRet | DataExtRet[];
|
|
511
|
+
}
|
|
512
|
+
export interface EmployeeAddRs {
|
|
513
|
+
EmployeeRet?: EmployeeRet;
|
|
514
|
+
ErrorRecovery?: ErrorRecovery;
|
|
515
|
+
}
|
|
516
|
+
interface AdditionalNotesMod {
|
|
517
|
+
NoteID: number;
|
|
518
|
+
Note: string;
|
|
519
|
+
}
|
|
520
|
+
interface EmployeePayrollInfoMod {
|
|
521
|
+
PayPeriod?: PayPeriod;
|
|
522
|
+
ClassRef?: ClassRef;
|
|
523
|
+
ClearEarnings?: boolean;
|
|
524
|
+
Earnings?: Earnings | Earnings[];
|
|
525
|
+
IsUsingTimeDataToCreatePaychecks?: boolean;
|
|
526
|
+
UseTimeDataToCreatePaychecks?: UseTimeDataToCreatePaychecks;
|
|
527
|
+
SickHours?: SickHours;
|
|
528
|
+
VacationHours?: VacationHours;
|
|
529
|
+
}
|
|
530
|
+
interface EmployeeMod {
|
|
531
|
+
ListID: string;
|
|
532
|
+
EditSequence: string;
|
|
533
|
+
IsActive?: boolean;
|
|
534
|
+
Salutation?: string;
|
|
535
|
+
FirstName?: string;
|
|
536
|
+
MiddleName?: string;
|
|
537
|
+
LastName?: string;
|
|
538
|
+
JobTitle?: string;
|
|
539
|
+
SupervisorRef?: SupervisorRef;
|
|
540
|
+
Department?: string;
|
|
541
|
+
Description?: string;
|
|
542
|
+
TargetBonus?: string;
|
|
543
|
+
EmployeeAddress?: EmployeeAddress;
|
|
544
|
+
PrintAs?: string;
|
|
545
|
+
Phone?: string;
|
|
546
|
+
Mobile?: string;
|
|
547
|
+
Pager?: string;
|
|
548
|
+
PagerPIN?: string;
|
|
549
|
+
AltPhone?: string;
|
|
550
|
+
Fax?: string;
|
|
551
|
+
Email?: string;
|
|
552
|
+
AdditionalContactRef?: AdditionalContactRef | AdditionalContactRef[];
|
|
553
|
+
EmergencyContacts?: EmergencyContacts;
|
|
554
|
+
EmployeeType?: EmployeeType;
|
|
555
|
+
PartOrFullTime?: PartOrFullTime;
|
|
556
|
+
Exempt?: Exempt;
|
|
557
|
+
KeyEmployee?: KeyEmployee;
|
|
558
|
+
HiredDate?: string;
|
|
559
|
+
OriginalHireDate?: string;
|
|
560
|
+
AdjustedServiceDate?: string;
|
|
561
|
+
ReleasedDate?: string;
|
|
562
|
+
BirthDate?: string;
|
|
563
|
+
USCitizen?: USCitizen;
|
|
564
|
+
Ethnicity?: Ethnicity;
|
|
565
|
+
Disabled?: Disabled;
|
|
566
|
+
DisabilityDesc?: string;
|
|
567
|
+
OnFile?: OnFile;
|
|
568
|
+
WorkAuthExpireDate?: string;
|
|
569
|
+
USVeteran?: USVeteran;
|
|
570
|
+
MilitaryStatus?: MilitaryStatus;
|
|
571
|
+
AccountNumber?: string;
|
|
572
|
+
Notes?: string;
|
|
573
|
+
AdditionalNotesMod?: AdditionalNotesMod | AdditionalNotesMod[];
|
|
574
|
+
BillingRateRef?: BillingRateRef;
|
|
575
|
+
EmployeePayrollInfoMod?: EmployeePayrollInfoMod;
|
|
576
|
+
}
|
|
577
|
+
export interface EmployeeModRq {
|
|
578
|
+
EmployeeMod: EmployeeMod;
|
|
579
|
+
IncludeRetElement?: string[] | string;
|
|
580
|
+
}
|
|
581
|
+
export interface EmployeeModRs {
|
|
582
|
+
EmployeeRet?: EmployeeRet;
|
|
583
|
+
ErrorRecovery?: ErrorRecovery;
|
|
584
|
+
}
|
|
585
|
+
export interface EmployeeQueryRq {
|
|
586
|
+
ListID?: string[] | string;
|
|
587
|
+
FullName?: string[] | string;
|
|
588
|
+
MaxReturned?: number;
|
|
589
|
+
ActiveStatus?: ActiveStatus;
|
|
590
|
+
FromModifiedDate?: string;
|
|
591
|
+
ToModifiedDate?: string;
|
|
592
|
+
NameFilter?: NameFilter;
|
|
593
|
+
NameRangeFilter?: NameRangeFilter;
|
|
594
|
+
IncludeRetElement?: string[] | string;
|
|
595
|
+
OwnerID?: string[] | string;
|
|
596
|
+
}
|
|
597
|
+
export interface EmployeeQueryRs {
|
|
598
|
+
EmployeeRet?: EmployeeRet | EmployeeRet[];
|
|
599
|
+
}
|
|
600
|
+
export interface VendorQueryRq {
|
|
601
|
+
ListID?: string[] | string;
|
|
602
|
+
FullName?: string[] | string;
|
|
603
|
+
MaxReturned?: number;
|
|
604
|
+
ActiveStatus?: ActiveStatus;
|
|
605
|
+
FromModifiedDate?: string;
|
|
606
|
+
ToModifiedDate?: string;
|
|
607
|
+
NameFilter?: NameFilter;
|
|
608
|
+
NameRangeFilter?: NameRangeFilter;
|
|
609
|
+
TotalBalanceFilter?: TotalBalanceFilter;
|
|
610
|
+
CurrencyFilter?: CurrencyFilter;
|
|
611
|
+
ClassFilter?: ClassFilter;
|
|
612
|
+
IncludeRetElement?: string[] | string;
|
|
613
|
+
OwnerID?: string[] | string;
|
|
614
|
+
}
|
|
615
|
+
interface VendorAddress {
|
|
616
|
+
Addr1?: string;
|
|
617
|
+
Addr2?: string;
|
|
618
|
+
Addr3?: string;
|
|
619
|
+
Addr4?: string;
|
|
620
|
+
Addr5?: string;
|
|
621
|
+
City?: string;
|
|
622
|
+
State?: string;
|
|
623
|
+
PostalCode?: string;
|
|
624
|
+
Country?: string;
|
|
625
|
+
Note?: string;
|
|
626
|
+
}
|
|
627
|
+
interface VendorAddressBlock {
|
|
628
|
+
Addr1?: string;
|
|
629
|
+
Addr2?: string;
|
|
630
|
+
Addr3?: string;
|
|
631
|
+
Addr4?: string;
|
|
632
|
+
Addr5?: string;
|
|
633
|
+
}
|
|
634
|
+
interface VendorTypeRef {
|
|
635
|
+
ListID?: string;
|
|
636
|
+
FullName?: string;
|
|
637
|
+
}
|
|
638
|
+
interface SalesTaxReturnRef {
|
|
639
|
+
ListID?: string;
|
|
640
|
+
FullName?: string;
|
|
641
|
+
}
|
|
642
|
+
/** @default: Quarterly */
|
|
643
|
+
declare type ReportingPeriod = "Monthly" | "Quarterly";
|
|
644
|
+
interface TaxOnPurchasesAccountRef {
|
|
645
|
+
ListID?: string;
|
|
646
|
+
FullName?: string;
|
|
647
|
+
}
|
|
648
|
+
interface TaxOnSalesAccountRef {
|
|
649
|
+
ListID?: string;
|
|
650
|
+
FullName?: string;
|
|
651
|
+
}
|
|
652
|
+
interface PrefillAccountRef {
|
|
653
|
+
ListID?: string;
|
|
654
|
+
FullName?: string;
|
|
655
|
+
}
|
|
656
|
+
interface VendorRet {
|
|
657
|
+
ListID: string;
|
|
658
|
+
TimeCreated: string;
|
|
659
|
+
TimeModified: string;
|
|
660
|
+
EditSequence: string;
|
|
661
|
+
Name: string;
|
|
662
|
+
IsActive?: boolean;
|
|
663
|
+
ClassRef?: ClassRef;
|
|
664
|
+
IsTaxAgency?: boolean;
|
|
665
|
+
CompanyName?: string;
|
|
666
|
+
Salutation?: string;
|
|
667
|
+
FirstName?: string;
|
|
668
|
+
MiddleName?: string;
|
|
669
|
+
LastName?: string;
|
|
670
|
+
JobTitle?: string;
|
|
671
|
+
VendorAddress?: VendorAddress;
|
|
672
|
+
VendorAddressBlock?: VendorAddressBlock;
|
|
673
|
+
ShipAddress?: ShipAddress;
|
|
674
|
+
Phone?: string;
|
|
675
|
+
AltPhone?: string;
|
|
676
|
+
Fax?: string;
|
|
677
|
+
Email?: string;
|
|
678
|
+
Cc?: string;
|
|
679
|
+
Contact?: string;
|
|
680
|
+
AltContact?: string;
|
|
681
|
+
AdditionalContactRef?: AdditionalContactRef | AdditionalContactRef[];
|
|
682
|
+
ContactsRet?: ContactsRet | ContactsRet[];
|
|
683
|
+
NameOnCheck?: string;
|
|
684
|
+
AccountNumber?: string;
|
|
685
|
+
Notes?: string;
|
|
686
|
+
AdditionalNotesRet?: AdditionalNotesRet | AdditionalNotesRet[];
|
|
687
|
+
VendorTypeRef?: VendorTypeRef;
|
|
688
|
+
TermsRef?: TermsRef;
|
|
689
|
+
CreditLimit?: string;
|
|
690
|
+
VendorTaxIdent?: string;
|
|
691
|
+
IsVendorEligibleFor1099?: boolean;
|
|
692
|
+
Balance?: string;
|
|
693
|
+
BillingRateRef?: BillingRateRef;
|
|
694
|
+
ExternalGUID?: string;
|
|
695
|
+
SalesTaxCodeRef?: SalesTaxCodeRef;
|
|
696
|
+
SalesTaxCountry?: SalesTaxCountry;
|
|
697
|
+
IsSalesTaxAgency?: boolean;
|
|
698
|
+
SalesTaxReturnRef?: SalesTaxReturnRef;
|
|
699
|
+
TaxRegistrationNumber?: string;
|
|
700
|
+
ReportingPeriod?: ReportingPeriod;
|
|
701
|
+
IsTaxTrackedOnPurchases?: boolean;
|
|
702
|
+
TaxOnPurchasesAccountRef?: TaxOnPurchasesAccountRef;
|
|
703
|
+
IsTaxTrackedOnSales?: boolean;
|
|
704
|
+
TaxOnSalesAccountRef?: TaxOnSalesAccountRef;
|
|
705
|
+
IsTaxOnTax?: boolean;
|
|
706
|
+
PrefillAccountRef?: PrefillAccountRef | PrefillAccountRef[];
|
|
707
|
+
CurrencyRef?: CurrencyRef;
|
|
708
|
+
DataExtRet?: DataExtRet | DataExtRet[];
|
|
709
|
+
}
|
|
710
|
+
export interface VendorQueryRs {
|
|
711
|
+
VendorRet?: VendorRet | VendorRet[];
|
|
712
|
+
}
|
|
713
|
+
export {};
|
|
File without changes
|