mollie-api-typescript 1.10.1 → 1.11.0
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/commonjs/hooks/types.d.ts +1 -0
- package/dist/commonjs/hooks/types.d.ts.map +1 -1
- package/dist/commonjs/lib/config.d.ts +3 -3
- package/dist/commonjs/lib/config.js +3 -3
- package/dist/commonjs/lib/sdks.d.ts.map +1 -1
- package/dist/commonjs/lib/sdks.js +50 -16
- package/dist/commonjs/lib/sdks.js.map +1 -1
- package/dist/commonjs/models/entitypermission.d.ts +2 -2
- package/dist/commonjs/models/entitypermission.d.ts.map +1 -1
- package/dist/commonjs/models/entitypermission.js +2 -2
- package/dist/commonjs/models/entitypermission.js.map +1 -1
- package/dist/commonjs/models/listentitypermission.d.ts +1 -1
- package/dist/commonjs/models/listentitypermission.d.ts.map +1 -1
- package/dist/commonjs/models/listentitypermission.js +1 -1
- package/dist/commonjs/models/listentitypermission.js.map +1 -1
- package/dist/commonjs/models/listsubscriptionresponse.d.ts +2 -2
- package/dist/commonjs/models/listsubscriptionresponse.d.ts.map +1 -1
- package/dist/commonjs/models/listsubscriptionresponse.js +2 -2
- package/dist/commonjs/models/listsubscriptionresponse.js.map +1 -1
- package/dist/commonjs/models/operations/listpermissions.d.ts +2 -2
- package/dist/commonjs/models/operations/listpermissions.d.ts.map +1 -1
- package/dist/commonjs/models/operations/listpermissions.js +2 -2
- package/dist/commonjs/models/operations/listpermissions.js.map +1 -1
- package/dist/commonjs/models/paymentdetailswalletresponse.d.ts +1 -0
- package/dist/commonjs/models/paymentdetailswalletresponse.d.ts.map +1 -1
- package/dist/commonjs/models/paymentdetailswalletresponse.js +1 -0
- package/dist/commonjs/models/paymentdetailswalletresponse.js.map +1 -1
- package/dist/commonjs/models/subscriptionresponse.d.ts +2 -2
- package/dist/commonjs/models/subscriptionresponse.d.ts.map +1 -1
- package/dist/commonjs/models/subscriptionresponse.js +2 -2
- package/dist/commonjs/models/subscriptionresponse.js.map +1 -1
- package/dist/esm/hooks/types.d.ts +1 -0
- package/dist/esm/hooks/types.d.ts.map +1 -1
- package/dist/esm/lib/config.d.ts +3 -3
- package/dist/esm/lib/config.js +3 -3
- package/dist/esm/lib/sdks.d.ts.map +1 -1
- package/dist/esm/lib/sdks.js +50 -16
- package/dist/esm/lib/sdks.js.map +1 -1
- package/dist/esm/models/entitypermission.d.ts +2 -2
- package/dist/esm/models/entitypermission.d.ts.map +1 -1
- package/dist/esm/models/entitypermission.js +2 -2
- package/dist/esm/models/entitypermission.js.map +1 -1
- package/dist/esm/models/listentitypermission.d.ts +1 -1
- package/dist/esm/models/listentitypermission.d.ts.map +1 -1
- package/dist/esm/models/listentitypermission.js +1 -1
- package/dist/esm/models/listentitypermission.js.map +1 -1
- package/dist/esm/models/listsubscriptionresponse.d.ts +2 -2
- package/dist/esm/models/listsubscriptionresponse.d.ts.map +1 -1
- package/dist/esm/models/listsubscriptionresponse.js +2 -2
- package/dist/esm/models/listsubscriptionresponse.js.map +1 -1
- package/dist/esm/models/operations/listpermissions.d.ts +2 -2
- package/dist/esm/models/operations/listpermissions.d.ts.map +1 -1
- package/dist/esm/models/operations/listpermissions.js +2 -2
- package/dist/esm/models/operations/listpermissions.js.map +1 -1
- package/dist/esm/models/paymentdetailswalletresponse.d.ts +1 -0
- package/dist/esm/models/paymentdetailswalletresponse.d.ts.map +1 -1
- package/dist/esm/models/paymentdetailswalletresponse.js +1 -0
- package/dist/esm/models/paymentdetailswalletresponse.js.map +1 -1
- package/dist/esm/models/subscriptionresponse.d.ts +2 -2
- package/dist/esm/models/subscriptionresponse.d.ts.map +1 -1
- package/dist/esm/models/subscriptionresponse.js +2 -2
- package/dist/esm/models/subscriptionresponse.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/hooks/types.ts +1 -0
- package/src/lib/config.ts +3 -3
- package/src/lib/sdks.ts +54 -17
- package/src/models/entitypermission.ts +4 -4
- package/src/models/listentitypermission.ts +2 -2
- package/src/models/listsubscriptionresponse.ts +4 -4
- package/src/models/operations/listpermissions.ts +4 -4
- package/src/models/paymentdetailswalletresponse.ts +1 -0
- package/src/models/subscriptionresponse.ts +4 -4
|
@@ -17,11 +17,11 @@ export type EntityPermissionLinks = {
|
|
|
17
17
|
/**
|
|
18
18
|
* In v2 endpoints, URLs are commonly represented as objects with an `href` and `type` field.
|
|
19
19
|
*/
|
|
20
|
-
self
|
|
20
|
+
self: Url;
|
|
21
21
|
/**
|
|
22
22
|
* In v2 endpoints, URLs are commonly represented as objects with an `href` and `type` field.
|
|
23
23
|
*/
|
|
24
|
-
documentation
|
|
24
|
+
documentation: Url;
|
|
25
25
|
};
|
|
26
26
|
|
|
27
27
|
export type EntityPermission = {
|
|
@@ -56,8 +56,8 @@ export const EntityPermissionLinks$inboundSchema: z.ZodType<
|
|
|
56
56
|
z.ZodTypeDef,
|
|
57
57
|
unknown
|
|
58
58
|
> = z.object({
|
|
59
|
-
self: Url$inboundSchema
|
|
60
|
-
documentation: Url$inboundSchema
|
|
59
|
+
self: Url$inboundSchema,
|
|
60
|
+
documentation: Url$inboundSchema,
|
|
61
61
|
});
|
|
62
62
|
|
|
63
63
|
export function entityPermissionLinksFromJSON(
|
|
@@ -17,7 +17,7 @@ export type ListEntityPermissionLinks = {
|
|
|
17
17
|
/**
|
|
18
18
|
* In v2 endpoints, URLs are commonly represented as objects with an `href` and `type` field.
|
|
19
19
|
*/
|
|
20
|
-
self
|
|
20
|
+
self: Url;
|
|
21
21
|
};
|
|
22
22
|
|
|
23
23
|
export type ListEntityPermission = {
|
|
@@ -52,7 +52,7 @@ export const ListEntityPermissionLinks$inboundSchema: z.ZodType<
|
|
|
52
52
|
z.ZodTypeDef,
|
|
53
53
|
unknown
|
|
54
54
|
> = z.object({
|
|
55
|
-
self: Url$inboundSchema
|
|
55
|
+
self: Url$inboundSchema,
|
|
56
56
|
});
|
|
57
57
|
|
|
58
58
|
export function listEntityPermissionLinksFromJSON(
|
|
@@ -73,7 +73,7 @@ export type ListSubscriptionResponseLinks = {
|
|
|
73
73
|
/**
|
|
74
74
|
* In v2 endpoints, URLs are commonly represented as objects with an `href` and `type` field.
|
|
75
75
|
*/
|
|
76
|
-
customer:
|
|
76
|
+
customer: Url;
|
|
77
77
|
/**
|
|
78
78
|
* In v2 endpoints, URLs are commonly represented as objects with an `href` and `type` field.
|
|
79
79
|
*/
|
|
@@ -81,7 +81,7 @@ export type ListSubscriptionResponseLinks = {
|
|
|
81
81
|
/**
|
|
82
82
|
* In v2 endpoints, URLs are commonly represented as objects with an `href` and `type` field.
|
|
83
83
|
*/
|
|
84
|
-
profile:
|
|
84
|
+
profile: Url;
|
|
85
85
|
/**
|
|
86
86
|
* In v2 endpoints, URLs are commonly represented as objects with an `href` and `type` field.
|
|
87
87
|
*/
|
|
@@ -241,9 +241,9 @@ export const ListSubscriptionResponseLinks$inboundSchema: z.ZodType<
|
|
|
241
241
|
unknown
|
|
242
242
|
> = z.object({
|
|
243
243
|
self: Url$inboundSchema,
|
|
244
|
-
customer:
|
|
244
|
+
customer: Url$inboundSchema,
|
|
245
245
|
mandate: z.nullable(UrlNullable$inboundSchema).optional(),
|
|
246
|
-
profile:
|
|
246
|
+
profile: Url$inboundSchema,
|
|
247
247
|
payments: z.nullable(UrlNullable$inboundSchema).optional(),
|
|
248
248
|
});
|
|
249
249
|
|
|
@@ -31,11 +31,11 @@ export type ListPermissionsLinks = {
|
|
|
31
31
|
/**
|
|
32
32
|
* In v2 endpoints, URLs are commonly represented as objects with an `href` and `type` field.
|
|
33
33
|
*/
|
|
34
|
-
self
|
|
34
|
+
self: models.Url;
|
|
35
35
|
/**
|
|
36
36
|
* In v2 endpoints, URLs are commonly represented as objects with an `href` and `type` field.
|
|
37
37
|
*/
|
|
38
|
-
documentation
|
|
38
|
+
documentation: models.Url;
|
|
39
39
|
};
|
|
40
40
|
|
|
41
41
|
/**
|
|
@@ -110,8 +110,8 @@ export const ListPermissionsLinks$inboundSchema: z.ZodType<
|
|
|
110
110
|
z.ZodTypeDef,
|
|
111
111
|
unknown
|
|
112
112
|
> = z.object({
|
|
113
|
-
self: models.Url$inboundSchema
|
|
114
|
-
documentation: models.Url$inboundSchema
|
|
113
|
+
self: models.Url$inboundSchema,
|
|
114
|
+
documentation: models.Url$inboundSchema,
|
|
115
115
|
});
|
|
116
116
|
|
|
117
117
|
export function listPermissionsLinksFromJSON(
|
|
@@ -73,7 +73,7 @@ export type SubscriptionResponseLinks = {
|
|
|
73
73
|
/**
|
|
74
74
|
* In v2 endpoints, URLs are commonly represented as objects with an `href` and `type` field.
|
|
75
75
|
*/
|
|
76
|
-
customer:
|
|
76
|
+
customer: Url;
|
|
77
77
|
/**
|
|
78
78
|
* In v2 endpoints, URLs are commonly represented as objects with an `href` and `type` field.
|
|
79
79
|
*/
|
|
@@ -81,7 +81,7 @@ export type SubscriptionResponseLinks = {
|
|
|
81
81
|
/**
|
|
82
82
|
* In v2 endpoints, URLs are commonly represented as objects with an `href` and `type` field.
|
|
83
83
|
*/
|
|
84
|
-
profile:
|
|
84
|
+
profile: Url;
|
|
85
85
|
/**
|
|
86
86
|
* In v2 endpoints, URLs are commonly represented as objects with an `href` and `type` field.
|
|
87
87
|
*/
|
|
@@ -245,9 +245,9 @@ export const SubscriptionResponseLinks$inboundSchema: z.ZodType<
|
|
|
245
245
|
unknown
|
|
246
246
|
> = z.object({
|
|
247
247
|
self: Url$inboundSchema,
|
|
248
|
-
customer:
|
|
248
|
+
customer: Url$inboundSchema,
|
|
249
249
|
mandate: z.nullable(UrlNullable$inboundSchema).optional(),
|
|
250
|
-
profile:
|
|
250
|
+
profile: Url$inboundSchema,
|
|
251
251
|
payments: z.nullable(UrlNullable$inboundSchema).optional(),
|
|
252
252
|
documentation: Url$inboundSchema,
|
|
253
253
|
});
|