repzo 1.0.48 → 1.0.50

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.48",
3
+ "version": "1.0.50",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",
@@ -2307,6 +2307,7 @@ export namespace Service {
2307
2307
  disabled?: boolean;
2308
2308
  integration_meta?: { [key: string]: any };
2309
2309
  company_namespace: string[];
2310
+ teams?: string[];
2310
2311
  createdAt: string;
2311
2312
  updatedAt: string;
2312
2313
  __v: number;
@@ -2316,6 +2317,7 @@ export namespace Service {
2316
2317
  type?: "van" | "main";
2317
2318
  code?: string;
2318
2319
  disabled?: boolean;
2320
+ teams?: string[];
2319
2321
  integration_meta?: { [key: string]: any };
2320
2322
  company_namespace?: string[];
2321
2323
  }
@@ -2850,6 +2852,7 @@ export namespace Service {
2850
2852
  is_default?: boolean;
2851
2853
  color?: string[] | string;
2852
2854
  disabled?: boolean;
2855
+ from_updatedAt?: number;
2853
2856
  [key: string]: any; // integration_meta.
2854
2857
  };
2855
2858
  export interface Result extends DefaultPaginationResult {
@@ -4110,6 +4113,7 @@ export namespace Service {
4110
4113
  discounted_price: number;
4111
4114
  tax_amount: number;
4112
4115
  tax_total: number;
4116
+ class: string;
4113
4117
  discount_value: number;
4114
4118
  gross_value?: number;
4115
4119
  line_total?: number;
@@ -4190,6 +4194,7 @@ export namespace Service {
4190
4194
  lineTotalAfterDeduction?: number;
4191
4195
  company_namespace?: string[];
4192
4196
  note?: string;
4197
+ class: string;
4193
4198
  return_reason?: string | ReturnReason.Schema;
4194
4199
  }[];
4195
4200
  integration_meta?: { [key: string]: any };