@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.
@@ -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"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=remarks.js.map
@@ -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"]}
@@ -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
- };