repzo 1.0.38 → 1.0.39

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.
@@ -447,7 +447,7 @@ export declare namespace Service {
447
447
  channel?: string;
448
448
  isChain?: boolean;
449
449
  chain?: string;
450
- teams?: string[];
450
+ teams?: string[] | Team.TeamSchema[];
451
451
  payment_type: "cash" | "credit";
452
452
  integration_meta?: {
453
453
  [key: string]: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.38",
3
+ "version": "1.0.39",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",
@@ -449,7 +449,7 @@ export namespace Service {
449
449
  channel?: string;
450
450
  isChain?: boolean;
451
451
  chain?: string;
452
- teams?: string[];
452
+ teams?: string[] | Team.TeamSchema[];
453
453
  payment_type: "cash" | "credit";
454
454
  integration_meta?: { [key: string]: any };
455
455
  integrated_client_balance?: number;