conductor-node 0.0.12 → 0.0.15
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/{Client.d.ts → src/Client.d.ts} +0 -0
- package/dist/{Client.js → src/Client.js} +0 -1
- package/dist/{qb → src/qb}/ClientQBD.d.ts +4 -1
- package/dist/{qb → src/qb}/ClientQBD.js +0 -1
- package/dist/{qb → src/qb}/qbXMLTypes/Account.d.ts +0 -0
- package/dist/{qb → src/qb}/qbXMLTypes/Account.js +0 -1
- package/dist/{qb → src/qb}/qbXMLTypes/Customer.d.ts +0 -0
- package/dist/{qb → src/qb}/qbXMLTypes/Customer.js +0 -1
- package/dist/{qb → src/qb}/qbXMLTypes/Employee.d.ts +0 -0
- package/dist/{qb → src/qb}/qbXMLTypes/Employee.js +0 -1
- package/dist/{qb → src/qb}/qbXMLTypes/Vendor.d.ts +0 -0
- package/dist/{qb → src/qb}/qbXMLTypes/Vendor.js +0 -1
- package/dist/{qb → src/qb}/qbXMLTypes/shared.d.ts +0 -0
- package/dist/{qb → src/qb}/qbXMLTypes/shared.js +0 -1
- package/package.json +6 -3
- package/dist/Client.js.map +0 -1
- package/dist/qb/ClientQBD.js.map +0 -1
- package/dist/qb/qbXMLTypes/Account.js.map +0 -1
- package/dist/qb/qbXMLTypes/Customer.js.map +0 -1
- package/dist/qb/qbXMLTypes/Employee.js.map +0 -1
- package/dist/qb/qbXMLTypes/Vendor.js.map +0 -1
- package/dist/qb/qbXMLTypes/shared.js.map +0 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
- package/src/Client.ts +0 -17
- package/src/qb/ClientQBD.ts +0 -228
- package/src/qb/qbXMLTypes/Account.ts +0 -309
- package/src/qb/qbXMLTypes/Customer.ts +0 -193
- package/src/qb/qbXMLTypes/Employee.ts +0 -501
- package/src/qb/qbXMLTypes/Vendor.ts +0 -192
- package/src/qb/qbXMLTypes/shared.ts +0 -143
- package/tsconfig.json +0 -19
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Filters according to the object’s `Name`.
|
|
3
|
-
*/
|
|
4
|
-
export interface NameFilter {
|
|
5
|
-
/**
|
|
6
|
-
* The criterion to match.
|
|
7
|
-
*/
|
|
8
|
-
MatchCriterion: MatchCriterion;
|
|
9
|
-
/**
|
|
10
|
-
* The string to match.
|
|
11
|
-
*/
|
|
12
|
-
Name: string;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
type MatchCriterion = "Contains" | "EndsWith" | "StartsWith";
|
|
16
|
-
|
|
17
|
-
export interface NameRangeFilter {
|
|
18
|
-
/**
|
|
19
|
-
* The first name or item in the search range. If `FromName` is omitted, the
|
|
20
|
-
* range will begin with first name on the list.
|
|
21
|
-
*/
|
|
22
|
-
FromName?: string;
|
|
23
|
-
/**
|
|
24
|
-
* The final name or item in the search range. If `ToName` is omitted, the
|
|
25
|
-
* range will end with last name on the list.
|
|
26
|
-
*/
|
|
27
|
-
ToName?: string;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
// Default is `ActiveOnly`
|
|
31
|
-
export type ActiveStatus = "ActiveOnly" | "All" | "InactiveOnly";
|
|
32
|
-
|
|
33
|
-
export interface DataExtRet {
|
|
34
|
-
OwnerID?: string;
|
|
35
|
-
DataExtName: string;
|
|
36
|
-
DataExtType: DataExtType;
|
|
37
|
-
DataExtValue: string;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
type DataExtType =
|
|
41
|
-
| "AMTTYPE"
|
|
42
|
-
| "Date"
|
|
43
|
-
| "number"
|
|
44
|
-
| "PERCENTTYPE"
|
|
45
|
-
| "PRICETYPE"
|
|
46
|
-
| "QUANTYPE"
|
|
47
|
-
| "STR255TYPE"
|
|
48
|
-
| "STR1024TYPE";
|
|
49
|
-
|
|
50
|
-
export interface CurrencyFilter {
|
|
51
|
-
ListID?: string;
|
|
52
|
-
FullName?: string;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
export interface ClassRef {
|
|
56
|
-
ListID?: string;
|
|
57
|
-
FullName?: string;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
export interface AdditionalContactRef {
|
|
61
|
-
ContactName: string;
|
|
62
|
-
ContactValue: string;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
export interface AdditionalNotesRet {
|
|
66
|
-
NoteID: number;
|
|
67
|
-
Date: Date;
|
|
68
|
-
Note: string;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
export interface BillingRateRef {
|
|
72
|
-
ListID?: string;
|
|
73
|
-
FullName?: string;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
export interface SalesTaxCodeRef {
|
|
77
|
-
ListID?: string;
|
|
78
|
-
FullName?: string;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
export interface CurrencyRef {
|
|
82
|
-
ListID?: string;
|
|
83
|
-
FullName?: string;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
export interface TotalBalanceFilter {
|
|
87
|
-
Operator: Operator;
|
|
88
|
-
Amount: string;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
type Operator =
|
|
92
|
-
| "Equal"
|
|
93
|
-
| "GreaterThan"
|
|
94
|
-
| "GreaterThanEqual"
|
|
95
|
-
| "LessThan"
|
|
96
|
-
| "LessThanEqual";
|
|
97
|
-
|
|
98
|
-
export interface ClassFilter {
|
|
99
|
-
ListID?: string;
|
|
100
|
-
FullName?: string;
|
|
101
|
-
ListIDWithChildren?: string;
|
|
102
|
-
FullNameWithChildren?: string;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
export interface ParentRef {
|
|
106
|
-
ListID?: string;
|
|
107
|
-
FullName?: string;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
export interface ShipAddress {
|
|
111
|
-
Addr1?: string;
|
|
112
|
-
Addr2?: string;
|
|
113
|
-
Addr3?: string;
|
|
114
|
-
Addr4?: string;
|
|
115
|
-
Addr5?: string;
|
|
116
|
-
City?: string;
|
|
117
|
-
State?: string;
|
|
118
|
-
PostalCode?: string;
|
|
119
|
-
Country?: string;
|
|
120
|
-
Note?: string;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
export interface ContactsRet {
|
|
124
|
-
ListID: string;
|
|
125
|
-
TimeCreated: Date;
|
|
126
|
-
TimeModified: Date;
|
|
127
|
-
EditSequence: string;
|
|
128
|
-
Contact?: string;
|
|
129
|
-
Salutation?: string;
|
|
130
|
-
FirstName?: string;
|
|
131
|
-
MiddleName?: string;
|
|
132
|
-
LastName?: string;
|
|
133
|
-
JobTitle?: string;
|
|
134
|
-
AdditionalContactRef?: AdditionalContactRef;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
export interface TermsRef {
|
|
138
|
-
ListID?: string;
|
|
139
|
-
FullName?: string;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
// Default is Canada
|
|
143
|
-
export type SalesTaxCountry = "Australia" | "Canada" | "UK" | "US";
|
package/tsconfig.json
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "../../tsconfig.json",
|
|
3
|
-
// All settings below are required for publishing to npm.
|
|
4
|
-
"compilerOptions": {
|
|
5
|
-
// Overriding root config.
|
|
6
|
-
"noEmit": false,
|
|
7
|
-
// Output the `.d.ts` files for TypeScript to use with the transpiled
|
|
8
|
-
// JavaScript files.
|
|
9
|
-
"declaration": true,
|
|
10
|
-
"outDir": "./dist",
|
|
11
|
-
// Redefine `paths` to be relative to this package to enable `tsc-alias` to
|
|
12
|
-
// replace the alias paths with relative paths after transpilation.
|
|
13
|
-
"baseUrl": "./",
|
|
14
|
-
"paths": {
|
|
15
|
-
"@conductor/client/*": ["./src/*"]
|
|
16
|
-
},
|
|
17
|
-
"sourceMap": true
|
|
18
|
-
}
|
|
19
|
-
}
|