@deliverart/sdk-js-order 2.4.8 → 2.4.9
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/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/package.json +9 -9
package/dist/index.d.cts
CHANGED
|
@@ -7655,11 +7655,13 @@ declare const payOrderInputSchema: z.ZodObject<{
|
|
|
7655
7655
|
}, z.core.$strip>;
|
|
7656
7656
|
type PayOrderInput = z.infer<typeof payOrderInputSchema>;
|
|
7657
7657
|
declare const payOrderResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7658
|
+
id: z.ZodString;
|
|
7658
7659
|
amount: z.ZodString;
|
|
7659
7660
|
method: z.ZodLiteral<"stripe">;
|
|
7660
7661
|
sessionUrl: z.ZodString;
|
|
7661
7662
|
expiresAt: z.ZodString;
|
|
7662
7663
|
}, z.core.$strip>, z.ZodObject<{
|
|
7664
|
+
id: z.ZodString;
|
|
7663
7665
|
amount: z.ZodString;
|
|
7664
7666
|
method: z.ZodLiteral<"bank_transfer">;
|
|
7665
7667
|
iban: z.ZodString;
|
|
@@ -7670,9 +7672,11 @@ declare const payOrderResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7670
7672
|
currency: z.ZodString;
|
|
7671
7673
|
description: z.ZodString;
|
|
7672
7674
|
}, z.core.$strip>, z.ZodObject<{
|
|
7675
|
+
id: z.ZodString;
|
|
7673
7676
|
amount: z.ZodString;
|
|
7674
7677
|
method: z.ZodLiteral<"cash">;
|
|
7675
7678
|
}, z.core.$strip>, z.ZodObject<{
|
|
7679
|
+
id: z.ZodString;
|
|
7676
7680
|
amount: z.ZodString;
|
|
7677
7681
|
method: z.ZodLiteral<"credit_card">;
|
|
7678
7682
|
}, z.core.$strip>]>;
|
|
@@ -7690,11 +7694,13 @@ declare class PayOrder extends AbstractApiRequest<typeof payOrderInputSchema, ty
|
|
|
7690
7694
|
}>;
|
|
7691
7695
|
}, z.core.$strip>;
|
|
7692
7696
|
readonly outputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7697
|
+
id: z.ZodString;
|
|
7693
7698
|
amount: z.ZodString;
|
|
7694
7699
|
method: z.ZodLiteral<"stripe">;
|
|
7695
7700
|
sessionUrl: z.ZodString;
|
|
7696
7701
|
expiresAt: z.ZodString;
|
|
7697
7702
|
}, z.core.$strip>, z.ZodObject<{
|
|
7703
|
+
id: z.ZodString;
|
|
7698
7704
|
amount: z.ZodString;
|
|
7699
7705
|
method: z.ZodLiteral<"bank_transfer">;
|
|
7700
7706
|
iban: z.ZodString;
|
|
@@ -7705,9 +7711,11 @@ declare class PayOrder extends AbstractApiRequest<typeof payOrderInputSchema, ty
|
|
|
7705
7711
|
currency: z.ZodString;
|
|
7706
7712
|
description: z.ZodString;
|
|
7707
7713
|
}, z.core.$strip>, z.ZodObject<{
|
|
7714
|
+
id: z.ZodString;
|
|
7708
7715
|
amount: z.ZodString;
|
|
7709
7716
|
method: z.ZodLiteral<"cash">;
|
|
7710
7717
|
}, z.core.$strip>, z.ZodObject<{
|
|
7718
|
+
id: z.ZodString;
|
|
7711
7719
|
amount: z.ZodString;
|
|
7712
7720
|
method: z.ZodLiteral<"credit_card">;
|
|
7713
7721
|
}, z.core.$strip>]>;
|
package/dist/index.d.ts
CHANGED
|
@@ -7655,11 +7655,13 @@ declare const payOrderInputSchema: z.ZodObject<{
|
|
|
7655
7655
|
}, z.core.$strip>;
|
|
7656
7656
|
type PayOrderInput = z.infer<typeof payOrderInputSchema>;
|
|
7657
7657
|
declare const payOrderResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7658
|
+
id: z.ZodString;
|
|
7658
7659
|
amount: z.ZodString;
|
|
7659
7660
|
method: z.ZodLiteral<"stripe">;
|
|
7660
7661
|
sessionUrl: z.ZodString;
|
|
7661
7662
|
expiresAt: z.ZodString;
|
|
7662
7663
|
}, z.core.$strip>, z.ZodObject<{
|
|
7664
|
+
id: z.ZodString;
|
|
7663
7665
|
amount: z.ZodString;
|
|
7664
7666
|
method: z.ZodLiteral<"bank_transfer">;
|
|
7665
7667
|
iban: z.ZodString;
|
|
@@ -7670,9 +7672,11 @@ declare const payOrderResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7670
7672
|
currency: z.ZodString;
|
|
7671
7673
|
description: z.ZodString;
|
|
7672
7674
|
}, z.core.$strip>, z.ZodObject<{
|
|
7675
|
+
id: z.ZodString;
|
|
7673
7676
|
amount: z.ZodString;
|
|
7674
7677
|
method: z.ZodLiteral<"cash">;
|
|
7675
7678
|
}, z.core.$strip>, z.ZodObject<{
|
|
7679
|
+
id: z.ZodString;
|
|
7676
7680
|
amount: z.ZodString;
|
|
7677
7681
|
method: z.ZodLiteral<"credit_card">;
|
|
7678
7682
|
}, z.core.$strip>]>;
|
|
@@ -7690,11 +7694,13 @@ declare class PayOrder extends AbstractApiRequest<typeof payOrderInputSchema, ty
|
|
|
7690
7694
|
}>;
|
|
7691
7695
|
}, z.core.$strip>;
|
|
7692
7696
|
readonly outputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7697
|
+
id: z.ZodString;
|
|
7693
7698
|
amount: z.ZodString;
|
|
7694
7699
|
method: z.ZodLiteral<"stripe">;
|
|
7695
7700
|
sessionUrl: z.ZodString;
|
|
7696
7701
|
expiresAt: z.ZodString;
|
|
7697
7702
|
}, z.core.$strip>, z.ZodObject<{
|
|
7703
|
+
id: z.ZodString;
|
|
7698
7704
|
amount: z.ZodString;
|
|
7699
7705
|
method: z.ZodLiteral<"bank_transfer">;
|
|
7700
7706
|
iban: z.ZodString;
|
|
@@ -7705,9 +7711,11 @@ declare class PayOrder extends AbstractApiRequest<typeof payOrderInputSchema, ty
|
|
|
7705
7711
|
currency: z.ZodString;
|
|
7706
7712
|
description: z.ZodString;
|
|
7707
7713
|
}, z.core.$strip>, z.ZodObject<{
|
|
7714
|
+
id: z.ZodString;
|
|
7708
7715
|
amount: z.ZodString;
|
|
7709
7716
|
method: z.ZodLiteral<"cash">;
|
|
7710
7717
|
}, z.core.$strip>, z.ZodObject<{
|
|
7718
|
+
id: z.ZodString;
|
|
7711
7719
|
amount: z.ZodString;
|
|
7712
7720
|
method: z.ZodLiteral<"credit_card">;
|
|
7713
7721
|
}, z.core.$strip>]>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deliverart/sdk-js-order",
|
|
3
3
|
"description": "Deliverart JavaScript SDK for Order Management",
|
|
4
|
-
"version": "2.4.
|
|
4
|
+
"version": "2.4.9",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
"dist"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@deliverart/sdk-js-
|
|
22
|
-
"@deliverart/sdk-js-
|
|
23
|
-
"@deliverart/sdk-js-global-types": "2.4.
|
|
24
|
-
"@deliverart/sdk-js-payment": "2.4.
|
|
25
|
-
"@deliverart/sdk-js-menu": "2.4.
|
|
26
|
-
"@deliverart/sdk-js-point-of-sale": "2.4.
|
|
27
|
-
"@deliverart/sdk-js-sales-mode": "2.4.
|
|
28
|
-
"@deliverart/sdk-js-user": "2.4.
|
|
21
|
+
"@deliverart/sdk-js-core": "2.4.9",
|
|
22
|
+
"@deliverart/sdk-js-customer": "2.4.9",
|
|
23
|
+
"@deliverart/sdk-js-global-types": "2.4.9",
|
|
24
|
+
"@deliverart/sdk-js-payment": "2.4.9",
|
|
25
|
+
"@deliverart/sdk-js-menu": "2.4.9",
|
|
26
|
+
"@deliverart/sdk-js-point-of-sale": "2.4.9",
|
|
27
|
+
"@deliverart/sdk-js-sales-mode": "2.4.9",
|
|
28
|
+
"@deliverart/sdk-js-user": "2.4.9"
|
|
29
29
|
},
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public"
|