@pax2pay/client 0.3.114 → 0.3.115
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.
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { isly } from "isly";
|
|
2
|
+
import { PaymentStatus } from "./PaymentStatus";
|
|
2
3
|
import { ProviderCode } from "./ProviderCode";
|
|
3
4
|
export interface PaymentSearch {
|
|
5
|
+
fuzzySearch?: string;
|
|
6
|
+
status?: PaymentStatus[];
|
|
4
7
|
paymentId?: string[];
|
|
5
8
|
cardId?: string[];
|
|
6
9
|
merchantId?: string[];
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { isly } from "isly";
|
|
2
|
+
import { PaymentStatus } from "./PaymentStatus";
|
|
2
3
|
import { ProviderCode } from "./ProviderCode";
|
|
3
4
|
export var PaymentSearch;
|
|
4
5
|
(function (PaymentSearch) {
|
|
5
6
|
PaymentSearch.type = isly.object({
|
|
7
|
+
fuzzySearch: isly.string().optional(),
|
|
8
|
+
status: PaymentStatus.type.array().optional(),
|
|
6
9
|
paymentId: isly.string().array().optional(),
|
|
7
10
|
cardId: isly.string().array().optional(),
|
|
8
11
|
merchantId: isly.string().array().optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PaymentSearch.js","sourceRoot":"../","sources":["model/PaymentSearch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;
|
|
1
|
+
{"version":3,"file":"PaymentSearch.js","sourceRoot":"../","sources":["model/PaymentSearch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAU7C,MAAM,KAAW,aAAa,CAU7B;AAVD,WAAiB,aAAa;IAChB,kBAAI,GAAG,IAAI,CAAC,MAAM,CAAgB;QAC9C,WAAW,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACrC,MAAM,EAAE,aAAa,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;QAC7C,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;QAC3C,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;QACxC,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;QAC5C,YAAY,EAAE,YAAY,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;KAClD,CAAC,CAAA;IACW,gBAAE,GAAG,cAAA,IAAI,CAAC,EAAE,CAAA;AAC1B,CAAC,EAVgB,aAAa,KAAb,aAAa,QAU7B"}
|
package/model/PaymentSearch.ts
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { isly } from "isly"
|
|
2
|
+
import { PaymentStatus } from "./PaymentStatus"
|
|
2
3
|
import { ProviderCode } from "./ProviderCode"
|
|
3
4
|
|
|
4
5
|
export interface PaymentSearch {
|
|
6
|
+
fuzzySearch?: string
|
|
7
|
+
status?: PaymentStatus[]
|
|
5
8
|
paymentId?: string[]
|
|
6
9
|
cardId?: string[]
|
|
7
10
|
merchantId?: string[]
|
|
@@ -9,6 +12,8 @@ export interface PaymentSearch {
|
|
|
9
12
|
}
|
|
10
13
|
export namespace PaymentSearch {
|
|
11
14
|
export const type = isly.object<PaymentSearch>({
|
|
15
|
+
fuzzySearch: isly.string().optional(),
|
|
16
|
+
status: PaymentStatus.type.array().optional(),
|
|
12
17
|
paymentId: isly.string().array().optional(),
|
|
13
18
|
cardId: isly.string().array().optional(),
|
|
14
19
|
merchantId: isly.string().array().optional(),
|