@bisondesk/core-sdk 1.0.464 → 1.0.465
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/lib/types/opportunities.d.ts +5 -4
- package/lib/types/opportunities.d.ts.map +1 -1
- package/lib/types/opportunities.js +2 -1
- package/lib/types/opportunities.js.map +1 -1
- package/lib/types/quotes.d.ts +17 -0
- package/lib/types/quotes.d.ts.map +1 -1
- package/lib/types/quotes.js.map +1 -1
- package/lib/types/settings.d.ts +2 -1
- package/lib/types/settings.d.ts.map +1 -1
- package/lib/types/settings.js.map +1 -1
- package/lib/types/tenants.d.ts +1 -0
- package/lib/types/tenants.d.ts.map +1 -1
- package/lib/types/tenants.js.map +1 -1
- package/lib/types/vehicles.d.ts +1 -22
- package/lib/types/vehicles.d.ts.map +1 -1
- package/lib/types/vehicles.js +0 -4
- package/lib/types/vehicles.js.map +1 -1
- package/package.json +1 -1
- package/src/types/opportunities.ts +4 -3
- package/src/types/quotes.ts +24 -0
- package/src/types/settings.ts +2 -1
- package/src/types/tenants.ts +1 -0
- package/src/types/vehicles.ts +0 -24
- package/tsconfig.tsbuildinfo +1 -1
- package/lib/types/remarks.d.ts +0 -27
- package/lib/types/remarks.d.ts.map +0 -1
- package/lib/types/remarks.js +0 -2
- package/lib/types/remarks.js.map +0 -1
- package/src/types/remarks.ts +0 -33
package/lib/types/remarks.d.ts
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
export type PurchaseRemarksData = {
|
|
2
|
-
estimatedAmount: string;
|
|
3
|
-
estimatedPaidAt: string;
|
|
4
|
-
paidAmount?: string;
|
|
5
|
-
paidAt?: string;
|
|
6
|
-
notes?: string;
|
|
7
|
-
};
|
|
8
|
-
export type SaleRemarksData = {
|
|
9
|
-
opportunityId: string;
|
|
10
|
-
estimatedAmount: string;
|
|
11
|
-
estimatedPaidAt: string;
|
|
12
|
-
paidAmount?: string;
|
|
13
|
-
paidAt?: string;
|
|
14
|
-
notes?: string;
|
|
15
|
-
};
|
|
16
|
-
type BaseRemarks = {
|
|
17
|
-
vehicleId: string;
|
|
18
|
-
purchase?: PurchaseRemarksData;
|
|
19
|
-
sales: SaleRemarksData[];
|
|
20
|
-
};
|
|
21
|
-
export type NewRemarks = BaseRemarks;
|
|
22
|
-
export type Remarks = BaseRemarks & {
|
|
23
|
-
modifiedAt: string;
|
|
24
|
-
modifiedBy: string;
|
|
25
|
-
};
|
|
26
|
-
export {};
|
|
27
|
-
//# sourceMappingURL=remarks.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"remarks.d.ts","sourceRoot":"/","sources":["types/remarks.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,mBAAmB,GAAG;IAChC,eAAe,EAAE,MAAM,CAAC;IACxB,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B,aAAa,EAAE,MAAM,CAAC;IAEtB,eAAe,EAAE,MAAM,CAAC;IACxB,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,KAAK,WAAW,GAAG;IACjB,SAAS,EAAE,MAAM,CAAC;IAElB,QAAQ,CAAC,EAAE,mBAAmB,CAAC;IAC/B,KAAK,EAAE,eAAe,EAAE,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG,WAAW,CAAC;AAErC,MAAM,MAAM,OAAO,GAAG,WAAW,GAAG;IAClC,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC"}
|
package/lib/types/remarks.js
DELETED
package/lib/types/remarks.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"remarks.js","sourceRoot":"/","sources":["types/remarks.ts"],"names":[],"mappings":"","sourcesContent":["export type PurchaseRemarksData = {\n estimatedAmount: string;\n estimatedPaidAt: string;\n paidAmount?: string;\n paidAt?: string;\n\n notes?: string;\n};\n\nexport type SaleRemarksData = {\n opportunityId: string;\n\n estimatedAmount: string;\n estimatedPaidAt: string;\n paidAmount?: string;\n paidAt?: string;\n\n notes?: string;\n};\n\ntype BaseRemarks = {\n vehicleId: string;\n\n purchase?: PurchaseRemarksData;\n sales: SaleRemarksData[];\n};\n\nexport type NewRemarks = BaseRemarks;\n\nexport type Remarks = BaseRemarks & {\n modifiedAt: string;\n modifiedBy: string;\n};\n"]}
|
package/src/types/remarks.ts
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
export type PurchaseRemarksData = {
|
|
2
|
-
estimatedAmount: string;
|
|
3
|
-
estimatedPaidAt: string;
|
|
4
|
-
paidAmount?: string;
|
|
5
|
-
paidAt?: string;
|
|
6
|
-
|
|
7
|
-
notes?: string;
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
export type SaleRemarksData = {
|
|
11
|
-
opportunityId: string;
|
|
12
|
-
|
|
13
|
-
estimatedAmount: string;
|
|
14
|
-
estimatedPaidAt: string;
|
|
15
|
-
paidAmount?: string;
|
|
16
|
-
paidAt?: string;
|
|
17
|
-
|
|
18
|
-
notes?: string;
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
type BaseRemarks = {
|
|
22
|
-
vehicleId: string;
|
|
23
|
-
|
|
24
|
-
purchase?: PurchaseRemarksData;
|
|
25
|
-
sales: SaleRemarksData[];
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
export type NewRemarks = BaseRemarks;
|
|
29
|
-
|
|
30
|
-
export type Remarks = BaseRemarks & {
|
|
31
|
-
modifiedAt: string;
|
|
32
|
-
modifiedBy: string;
|
|
33
|
-
};
|