repzo 1.0.19 → 1.0.20

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/changelog.md CHANGED
@@ -13,6 +13,7 @@
13
13
  - add IntegrationApp @maramalshen
14
14
  - add new Action: Refund @maramalshen
15
15
  - update setStatus.error @maramalshen
16
+ - update payment.listOfAcceptedKeys @maramalshen
16
17
 
17
18
  ### Changed
18
19
 
@@ -3458,6 +3458,7 @@ export declare namespace Service {
3458
3458
  creator?: string[] | string;
3459
3459
  clients?: string[] | string;
3460
3460
  withPrintDetails?: boolean;
3461
+ "serial_number.formatted"?: string[] | string;
3461
3462
  [key: string]: any;
3462
3463
  populatedKeys?: PopulatedKeys[];
3463
3464
  };
@@ -1 +1 @@
1
- export {};
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",
@@ -3419,6 +3419,7 @@ export namespace Service {
3419
3419
  creator?: string[] | string;
3420
3420
  clients?: string[] | string;
3421
3421
  withPrintDetails?: boolean;
3422
+ "serial_number.formatted"?: string[] | string;
3422
3423
  [key: string]: any; // integration_meta.
3423
3424
  populatedKeys?: PopulatedKeys[];
3424
3425
  };
package/test.ts CHANGED
@@ -1,8 +1,8 @@
1
- import Repzo from "./src/index.js";
2
- let repzo = new Repzo("");
3
- let clients = repzo.client.find({ search: "Mecca" });
4
- console.log(clients);
5
- repzo.client.create({ name: "kf" });
6
- repzo.headers["ho"] = "faf";
7
- repzo.client.update("", {});
8
- // repzo.
1
+ import Repzo from "./src/index.js";
2
+ let repzo = new Repzo("");
3
+ let clients = repzo.client.find({ search: "Mecca" });
4
+ console.log(clients);
5
+ repzo.client.create({ name: "kf" });
6
+ repzo.headers["ho"] = "faf";
7
+ repzo.client.update("", {});
8
+ // repzo.
package/tsconfig.json CHANGED
@@ -1,17 +1,17 @@
1
- {
2
- "compilerOptions": {
3
- "outDir": "./lib",
4
- "allowJs": true,
5
- "target": "ES2020",
6
- "module": "ES2020",
7
- "esModuleInterop": true,
8
- "moduleResolution": "Node",
9
- "resolveJsonModule": true,
10
- "noImplicitThis": false,
11
- "strict": true,
12
- "declaration": true
13
- },
14
- "ts-node": { "esm": true },
15
- "include": ["src/**/*"],
16
- "exclude": ["node_modules", "test/**/*", "**/*.spec.ts"]
17
- }
1
+ {
2
+ "compilerOptions": {
3
+ "outDir": "./lib",
4
+ "allowJs": true,
5
+ "target": "ES2020",
6
+ "module": "ES2020",
7
+ "esModuleInterop": true,
8
+ "moduleResolution": "Node",
9
+ "resolveJsonModule": true,
10
+ "noImplicitThis": false,
11
+ "strict": true,
12
+ "declaration": true
13
+ },
14
+ "ts-node": { "esm": true },
15
+ "include": ["src/**/*"],
16
+ "exclude": ["node_modules", "test/**/*", "**/*.spec.ts"]
17
+ }