@gr4vy/sdk 1.0.4 → 1.0.5

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 CHANGED
@@ -1,6 +1,6 @@
1
- # Gr4vy Typescript SDK
1
+ # Gr4vy TypeScript SDK
2
2
 
3
- Developer-friendly & type-safe Typescript SDK specifically catered to leverage the **Gr4vy** API.
3
+ Developer-friendly & type-safe TypeScript SDK specifically catered to leverage the **Gr4vy** API.
4
4
 
5
5
  <div align="left">
6
6
  <a href="https://www.npmjs.com/package/@gr4vy/sdk"><img alt="NPM Version" src="https://img.shields.io/npm/v/%40gr4vy%2Fsdk?style=for-the-badge" /></a>
@@ -9,9 +9,7 @@ Developer-friendly & type-safe Typescript SDK specifically catered to leverage t
9
9
 
10
10
  ## Summary
11
11
 
12
- Gr4vy Typescript SDK
13
-
14
- The official Gr4vy SDK for Typescript provides a convenient way to interact with the Gr4vy API from your server-side application. This SDK allows you to seamlessly integrate Gr4vy's powerful payment orchestration capabilities, including:
12
+ The official Gr4vy SDK for TypeScript provides a convenient way to interact with the Gr4vy API from your server-side application. This SDK allows you to seamlessly integrate Gr4vy's powerful payment orchestration capabilities, including:
15
13
 
16
14
  * Creating Transactions: Initiate and process payments with various payment methods and services.
17
15
  * Managing Buyers: Store and manage buyer information securely.
@@ -26,7 +24,7 @@ This SDK is designed to simplify development, reduce boilerplate code, and help
26
24
  <!-- Start Table of Contents [toc] -->
27
25
  ## Table of Contents
28
26
  <!-- $toc-max-depth=2 -->
29
- * [Gr4vy Typescript SDK](#gr4vy-typescript-sdk)
27
+ * [Gr4vy TypeScript SDK](#gr4vy-typescript-sdk)
30
28
  * [SDK Installation](#sdk-installation)
31
29
  * [Requirements](#requirements)
32
30
  * [SDK Example Usage](#sdk-example-usage)
@@ -879,7 +877,7 @@ Gr4vy: The Gr4vy API.
879
877
  <!-- Start Table of Contents [toc] -->
880
878
  ## Table of Contents
881
879
  <!-- $toc-max-depth=2 -->
882
- * [Gr4vy Typescript SDK](#gr4vy-typescript-sdk)
880
+ * [Gr4vy TypeScript SDK](#gr4vy-typescript-sdk)
883
881
  * [SDK Installation](#sdk-installation)
884
882
  * [Requirements](#requirements)
885
883
  * [SDK Example Usage](#sdk-example-usage)
package/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "@gr4vy/sdk",
5
- "version": "1.0.4",
5
+ "version": "1.0.5",
6
6
  "exports": {
7
7
  ".": "./src/index.ts",
8
8
  "./models/errors": "./src/models/errors/index.ts",
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.0.4";
48
- readonly genVersion: "2.640.1";
49
- readonly userAgent: "speakeasy-sdk/typescript 1.0.4 2.640.1 1.0.0 @gr4vy/sdk";
47
+ readonly sdkVersion: "1.0.5";
48
+ readonly genVersion: "2.644.1";
49
+ readonly userAgent: "speakeasy-sdk/typescript 1.0.5 2.644.1 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.0.4",
41
- genVersion: "2.640.1",
42
- userAgent: "speakeasy-sdk/typescript 1.0.4 2.640.1 1.0.0 @gr4vy/sdk",
40
+ sdkVersion: "1.0.5",
41
+ genVersion: "2.644.1",
42
+ userAgent: "speakeasy-sdk/typescript 1.0.5 2.644.1 1.0.0 @gr4vy/sdk",
43
43
  };
44
44
  //# sourceMappingURL=config.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gr4vy/sdk",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "author": "Gr4vy",
5
5
  "main": "./index.js",
6
6
  "sideEffects": false,
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.0.4",
81
- genVersion: "2.640.1",
82
- userAgent: "speakeasy-sdk/typescript 1.0.4 2.640.1 1.0.0 @gr4vy/sdk",
80
+ sdkVersion: "1.0.5",
81
+ genVersion: "2.644.1",
82
+ userAgent: "speakeasy-sdk/typescript 1.0.5 2.644.1 1.0.0 @gr4vy/sdk",
83
83
  } as const;