@mcdylanproperenterprise/nodejs-proper-sunsoontaat-types 0.0.9 → 0.0.11

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcdylanproperenterprise/nodejs-proper-sunsoontaat-types",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "description": "",
5
5
  "main": "",
6
6
  "types": "index.d.ts",
package/types.d.ts CHANGED
@@ -29,6 +29,7 @@ export type TGetRemarkQuery = {
29
29
  limit: number;
30
30
  page: number;
31
31
  q: string;
32
+ referenceId?: string | undefined;
32
33
  };
33
34
 
34
35
  export type TGetRemarkResponse = {
@@ -154,6 +155,7 @@ export type TOrder = {
154
155
  _id: string;
155
156
  purchaseOrderNo: string;
156
157
  customerId: string;
158
+ adminId: string;
157
159
  products: string[];
158
160
  addOn: string | null;
159
161
  isOwnCollect: boolean;
@@ -163,6 +165,8 @@ export type TOrder = {
163
165
  purchaseOrderAt: Date | null;
164
166
  updatedAt: Date | null;
165
167
  createdAt: Date;
168
+ admin: TAdmin;
169
+ customer: TCustomer;
166
170
  };
167
171
 
168
172
  export type TProduct = {