@gr4vy/sdk 1.1.12 → 1.1.13
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/README.md +4 -4
- package/docs/sdks/paymentservicedefinitions/README.md +1 -1
- package/docs/sdks/paymentservices/README.md +1 -1
- package/funcs/paymentServiceDefinitionsSession.d.ts +1 -1
- package/funcs/paymentServiceDefinitionsSession.js +1 -1
- package/funcs/paymentServicesSession.d.ts +1 -1
- package/funcs/paymentServicesSession.js +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/package.json +1 -1
- package/sdk/paymentservicedefinitions.d.ts +1 -1
- package/sdk/paymentservicedefinitions.js +1 -1
- package/sdk/paymentservices.d.ts +1 -1
- package/sdk/paymentservices.js +1 -1
- package/src/funcs/paymentServiceDefinitionsSession.ts +1 -1
- package/src/funcs/paymentServicesSession.ts +1 -1
- package/src/lib/config.ts +2 -2
- package/src/sdk/paymentservicedefinitions.ts +1 -1
- package/src/sdk/paymentservices.ts +1 -1
package/README.md
CHANGED
|
@@ -344,7 +344,7 @@ try {
|
|
|
344
344
|
|
|
345
345
|
* [list](docs/sdks/paymentservicedefinitions/README.md#list) - List payment service definitions
|
|
346
346
|
* [get](docs/sdks/paymentservicedefinitions/README.md#get) - Get a payment service definition
|
|
347
|
-
* [session](docs/sdks/paymentservicedefinitions/README.md#session) - Create a session for
|
|
347
|
+
* [session](docs/sdks/paymentservicedefinitions/README.md#session) - Create a session for a payment service definition
|
|
348
348
|
|
|
349
349
|
### [paymentServices](docs/sdks/paymentservices/README.md)
|
|
350
350
|
|
|
@@ -354,7 +354,7 @@ try {
|
|
|
354
354
|
* [update](docs/sdks/paymentservices/README.md#update) - Configure a payment service
|
|
355
355
|
* [delete](docs/sdks/paymentservices/README.md#delete) - Delete a configured payment service
|
|
356
356
|
* [verify](docs/sdks/paymentservices/README.md#verify) - Verify payment service credentials
|
|
357
|
-
* [session](docs/sdks/paymentservices/README.md#session) - Create a session for
|
|
357
|
+
* [session](docs/sdks/paymentservices/README.md#session) - Create a session for a payment service definition
|
|
358
358
|
|
|
359
359
|
### [payouts](docs/sdks/payouts/README.md)
|
|
360
360
|
|
|
@@ -976,12 +976,12 @@ To read more about standalone functions, check [FUNCTIONS.md](./FUNCTIONS.md).
|
|
|
976
976
|
- [`paymentOptionsList`](docs/sdks/paymentoptions/README.md#list) - List payment options
|
|
977
977
|
- [`paymentServiceDefinitionsGet`](docs/sdks/paymentservicedefinitions/README.md#get) - Get a payment service definition
|
|
978
978
|
- [`paymentServiceDefinitionsList`](docs/sdks/paymentservicedefinitions/README.md#list) - List payment service definitions
|
|
979
|
-
- [`paymentServiceDefinitionsSession`](docs/sdks/paymentservicedefinitions/README.md#session) - Create a session for
|
|
979
|
+
- [`paymentServiceDefinitionsSession`](docs/sdks/paymentservicedefinitions/README.md#session) - Create a session for a payment service definition
|
|
980
980
|
- [`paymentServicesCreate`](docs/sdks/paymentservices/README.md#create) - Update a configured payment service
|
|
981
981
|
- [`paymentServicesDelete`](docs/sdks/paymentservices/README.md#delete) - Delete a configured payment service
|
|
982
982
|
- [`paymentServicesGet`](docs/sdks/paymentservices/README.md#get) - Get payment service
|
|
983
983
|
- [`paymentServicesList`](docs/sdks/paymentservices/README.md#list) - List payment services
|
|
984
|
-
- [`paymentServicesSession`](docs/sdks/paymentservices/README.md#session) - Create a session for
|
|
984
|
+
- [`paymentServicesSession`](docs/sdks/paymentservices/README.md#session) - Create a session for a payment service definition
|
|
985
985
|
- [`paymentServicesUpdate`](docs/sdks/paymentservices/README.md#update) - Configure a payment service
|
|
986
986
|
- [`paymentServicesVerify`](docs/sdks/paymentservices/README.md#verify) - Verify payment service credentials
|
|
987
987
|
- [`payoutsCreate`](docs/sdks/payouts/README.md#create) - Create a payout
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
* [list](#list) - List payment service definitions
|
|
9
9
|
* [get](#get) - Get a payment service definition
|
|
10
|
-
* [session](#session) - Create a session for
|
|
10
|
+
* [session](#session) - Create a session for a payment service definition
|
|
11
11
|
|
|
12
12
|
## list
|
|
13
13
|
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
* [update](#update) - Configure a payment service
|
|
12
12
|
* [delete](#delete) - Delete a configured payment service
|
|
13
13
|
* [verify](#verify) - Verify payment service credentials
|
|
14
|
-
* [session](#session) - Create a session for
|
|
14
|
+
* [session](#session) - Create a session for a payment service definition
|
|
15
15
|
|
|
16
16
|
## list
|
|
17
17
|
|
|
@@ -9,7 +9,7 @@ import { SDKValidationError } from "../models/errors/sdkvalidationerror.js";
|
|
|
9
9
|
import { APIPromise } from "../types/async.js";
|
|
10
10
|
import { Result } from "../types/fp.js";
|
|
11
11
|
/**
|
|
12
|
-
* Create a session for
|
|
12
|
+
* Create a session for a payment service definition
|
|
13
13
|
*
|
|
14
14
|
* @remarks
|
|
15
15
|
* Creates a session for a payment service that supports sessions.
|
|
@@ -38,7 +38,7 @@ const errors = __importStar(require("../models/errors/index.js"));
|
|
|
38
38
|
const operations = __importStar(require("../models/operations/index.js"));
|
|
39
39
|
const async_js_1 = require("../types/async.js");
|
|
40
40
|
/**
|
|
41
|
-
* Create a session for
|
|
41
|
+
* Create a session for a payment service definition
|
|
42
42
|
*
|
|
43
43
|
* @remarks
|
|
44
44
|
* Creates a session for a payment service that supports sessions.
|
|
@@ -9,7 +9,7 @@ import { SDKValidationError } from "../models/errors/sdkvalidationerror.js";
|
|
|
9
9
|
import { APIPromise } from "../types/async.js";
|
|
10
10
|
import { Result } from "../types/fp.js";
|
|
11
11
|
/**
|
|
12
|
-
* Create a session for
|
|
12
|
+
* Create a session for a payment service definition
|
|
13
13
|
*
|
|
14
14
|
* @remarks
|
|
15
15
|
* Creates a session for a payment service that supports sessions.
|
|
@@ -38,7 +38,7 @@ const errors = __importStar(require("../models/errors/index.js"));
|
|
|
38
38
|
const operations = __importStar(require("../models/operations/index.js"));
|
|
39
39
|
const async_js_1 = require("../types/async.js");
|
|
40
40
|
/**
|
|
41
|
-
* Create a session for
|
|
41
|
+
* Create a session for a payment service definition
|
|
42
42
|
*
|
|
43
43
|
* @remarks
|
|
44
44
|
* Creates a session for a payment service that supports sessions.
|
package/jsr.json
CHANGED
package/lib/config.d.ts
CHANGED
|
@@ -44,8 +44,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
44
44
|
export declare const SDK_METADATA: {
|
|
45
45
|
readonly language: "typescript";
|
|
46
46
|
readonly openapiDocVersion: "1.0.0";
|
|
47
|
-
readonly sdkVersion: "1.1.
|
|
47
|
+
readonly sdkVersion: "1.1.13";
|
|
48
48
|
readonly genVersion: "2.658.3";
|
|
49
|
-
readonly userAgent: "speakeasy-sdk/typescript 1.1.
|
|
49
|
+
readonly userAgent: "speakeasy-sdk/typescript 1.1.13 2.658.3 1.0.0 @gr4vy/sdk";
|
|
50
50
|
};
|
|
51
51
|
//# sourceMappingURL=config.d.ts.map
|
package/lib/config.js
CHANGED
|
@@ -37,8 +37,8 @@ function serverURLFromOptions(options) {
|
|
|
37
37
|
exports.SDK_METADATA = {
|
|
38
38
|
language: "typescript",
|
|
39
39
|
openapiDocVersion: "1.0.0",
|
|
40
|
-
sdkVersion: "1.1.
|
|
40
|
+
sdkVersion: "1.1.13",
|
|
41
41
|
genVersion: "2.658.3",
|
|
42
|
-
userAgent: "speakeasy-sdk/typescript 1.1.
|
|
42
|
+
userAgent: "speakeasy-sdk/typescript 1.1.13 2.658.3 1.0.0 @gr4vy/sdk",
|
|
43
43
|
};
|
|
44
44
|
//# sourceMappingURL=config.js.map
|
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@ export declare class PaymentServiceDefinitions extends ClientSDK {
|
|
|
20
20
|
*/
|
|
21
21
|
get(paymentServiceDefinitionId: string, options?: RequestOptions): Promise<components.PaymentServiceDefinition>;
|
|
22
22
|
/**
|
|
23
|
-
* Create a session for
|
|
23
|
+
* Create a session for a payment service definition
|
|
24
24
|
*
|
|
25
25
|
* @remarks
|
|
26
26
|
* Creates a session for a payment service that supports sessions.
|
|
@@ -30,7 +30,7 @@ class PaymentServiceDefinitions extends sdks_js_1.ClientSDK {
|
|
|
30
30
|
return (0, fp_js_1.unwrapAsync)((0, paymentServiceDefinitionsGet_js_1.paymentServiceDefinitionsGet)(this, paymentServiceDefinitionId, options));
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
|
-
* Create a session for
|
|
33
|
+
* Create a session for a payment service definition
|
|
34
34
|
*
|
|
35
35
|
* @remarks
|
|
36
36
|
* Creates a session for a payment service that supports sessions.
|
package/sdk/paymentservices.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ export declare class PaymentServices extends ClientSDK {
|
|
|
48
48
|
*/
|
|
49
49
|
verify(verifyCredentials: components.VerifyCredentials, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise<any>;
|
|
50
50
|
/**
|
|
51
|
-
* Create a session for
|
|
51
|
+
* Create a session for a payment service definition
|
|
52
52
|
*
|
|
53
53
|
* @remarks
|
|
54
54
|
* Creates a session for a payment service that supports sessions.
|
package/sdk/paymentservices.js
CHANGED
|
@@ -70,7 +70,7 @@ class PaymentServices extends sdks_js_1.ClientSDK {
|
|
|
70
70
|
return (0, fp_js_1.unwrapAsync)((0, paymentServicesVerify_js_1.paymentServicesVerify)(this, verifyCredentials, merchantAccountId, options));
|
|
71
71
|
}
|
|
72
72
|
/**
|
|
73
|
-
* Create a session for
|
|
73
|
+
* Create a session for a payment service definition
|
|
74
74
|
*
|
|
75
75
|
* @remarks
|
|
76
76
|
* Creates a session for a payment service that supports sessions.
|
|
@@ -27,7 +27,7 @@ import { APICall, APIPromise } from "../types/async.js";
|
|
|
27
27
|
import { Result } from "../types/fp.js";
|
|
28
28
|
|
|
29
29
|
/**
|
|
30
|
-
* Create a session for
|
|
30
|
+
* Create a session for a payment service definition
|
|
31
31
|
*
|
|
32
32
|
* @remarks
|
|
33
33
|
* Creates a session for a payment service that supports sessions.
|
|
@@ -27,7 +27,7 @@ import { APICall, APIPromise } from "../types/async.js";
|
|
|
27
27
|
import { Result } from "../types/fp.js";
|
|
28
28
|
|
|
29
29
|
/**
|
|
30
|
-
* Create a session for
|
|
30
|
+
* Create a session for a payment service definition
|
|
31
31
|
*
|
|
32
32
|
* @remarks
|
|
33
33
|
* Creates a session for a payment service that supports sessions.
|
package/src/lib/config.ts
CHANGED
|
@@ -77,7 +77,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
77
77
|
export const SDK_METADATA = {
|
|
78
78
|
language: "typescript",
|
|
79
79
|
openapiDocVersion: "1.0.0",
|
|
80
|
-
sdkVersion: "1.1.
|
|
80
|
+
sdkVersion: "1.1.13",
|
|
81
81
|
genVersion: "2.658.3",
|
|
82
|
-
userAgent: "speakeasy-sdk/typescript 1.1.
|
|
82
|
+
userAgent: "speakeasy-sdk/typescript 1.1.13 2.658.3 1.0.0 @gr4vy/sdk",
|
|
83
83
|
} as const;
|
|
@@ -54,7 +54,7 @@ export class PaymentServiceDefinitions extends ClientSDK {
|
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
/**
|
|
57
|
-
* Create a session for
|
|
57
|
+
* Create a session for a payment service definition
|
|
58
58
|
*
|
|
59
59
|
* @remarks
|
|
60
60
|
* Creates a session for a payment service that supports sessions.
|
|
@@ -133,7 +133,7 @@ export class PaymentServices extends ClientSDK {
|
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
/**
|
|
136
|
-
* Create a session for
|
|
136
|
+
* Create a session for a payment service definition
|
|
137
137
|
*
|
|
138
138
|
* @remarks
|
|
139
139
|
* Creates a session for a payment service that supports sessions.
|