repzo 1.0.58 → 1.0.59

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.
@@ -5067,6 +5067,7 @@ export declare namespace Service {
5067
5067
  note?: string;
5068
5068
  currency: string;
5069
5069
  transaction_type: RefundType;
5070
+ transaction_processed: boolean;
5070
5071
  check?: Check;
5071
5072
  LinkedTxn?: {
5072
5073
  Txn_serial_number: SerialNumber;
@@ -5087,6 +5088,10 @@ export declare namespace Service {
5087
5088
  balance: number;
5088
5089
  payments: PaymentData[];
5089
5090
  };
5091
+ client_geo_location?: {
5092
+ lat: number;
5093
+ lng: number;
5094
+ };
5090
5095
  createdAt: string;
5091
5096
  updatedAt: string;
5092
5097
  __v: number;
@@ -5097,6 +5102,11 @@ export declare namespace Service {
5097
5102
  client_name: string;
5098
5103
  time?: number;
5099
5104
  serial_number?: SerialNumber;
5105
+ transaction_processed: boolean;
5106
+ client_geo_location?: {
5107
+ lat: number;
5108
+ lng: number;
5109
+ };
5100
5110
  route?: string;
5101
5111
  paytime: string;
5102
5112
  note?: string;
@@ -5135,9 +5145,11 @@ export declare namespace Service {
5135
5145
  original_amount: number;
5136
5146
  refund: number;
5137
5147
  };
5148
+ teams?: string[] | Team.TeamSchema[];
5149
+ route?: string | Route.RouteSchema;
5138
5150
  };
5139
5151
  type RefundType = "check" | "cash";
5140
- type PopulatedKeys = "custom_status";
5152
+ type PopulatedKeys = "custom_status" | "teams" | "route";
5141
5153
  type RefundStatus = "consumed" | "unconsumed" | "partially_consumed";
5142
5154
  export namespace Find {
5143
5155
  type Params = DefaultPaginationQueryParams & {
@@ -5150,6 +5162,7 @@ export declare namespace Service {
5150
5162
  transaction_type?: RefundType | RefundType[];
5151
5163
  creator?: string[] | string;
5152
5164
  clients?: string[] | string;
5165
+ from_updatedAt?: number;
5153
5166
  withPrintDetails?: boolean;
5154
5167
  [key: string]: any;
5155
5168
  populatedKeys?: PopulatedKeys[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.58",
3
+ "version": "1.0.59",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",
@@ -5073,6 +5073,7 @@ export namespace Service {
5073
5073
  note?: string;
5074
5074
  currency: string;
5075
5075
  transaction_type: RefundType;
5076
+ transaction_processed: boolean;
5076
5077
  check?: Check;
5077
5078
  LinkedTxn?: {
5078
5079
  Txn_serial_number: SerialNumber;
@@ -5091,6 +5092,10 @@ export namespace Service {
5091
5092
  balance: number;
5092
5093
  payments: PaymentData[];
5093
5094
  };
5095
+ client_geo_location?: {
5096
+ lat: number;
5097
+ lng: number;
5098
+ };
5094
5099
  createdAt: string;
5095
5100
  updatedAt: string;
5096
5101
  __v: number;
@@ -5101,6 +5106,11 @@ export namespace Service {
5101
5106
  client_name: string;
5102
5107
  time?: number;
5103
5108
  serial_number?: SerialNumber;
5109
+ transaction_processed: boolean;
5110
+ client_geo_location?: {
5111
+ lat: number;
5112
+ lng: number;
5113
+ };
5104
5114
  route?: string;
5105
5115
  paytime: string;
5106
5116
  note?: string;
@@ -5134,9 +5144,11 @@ export namespace Service {
5134
5144
  original_amount: number;
5135
5145
  refund: number;
5136
5146
  };
5147
+ teams?: string[] | Team.TeamSchema[];
5148
+ route?: string | Route.RouteSchema;
5137
5149
  };
5138
5150
  type RefundType = "check" | "cash";
5139
- type PopulatedKeys = "custom_status";
5151
+ type PopulatedKeys = "custom_status" | "teams" | "route";
5140
5152
  type RefundStatus = "consumed" | "unconsumed" | "partially_consumed";
5141
5153
  export namespace Find {
5142
5154
  export type Params = DefaultPaginationQueryParams & {
@@ -5149,6 +5161,7 @@ export namespace Service {
5149
5161
  transaction_type?: RefundType | RefundType[];
5150
5162
  creator?: string[] | string;
5151
5163
  clients?: string[] | string;
5164
+ from_updatedAt?: number;
5152
5165
  withPrintDetails?: boolean;
5153
5166
  [key: string]: any; // integration_meta.
5154
5167
  populatedKeys?: PopulatedKeys[];