@gr4vy/sdk 1.9.7 → 1.9.8

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
@@ -408,7 +408,7 @@ try {
408
408
 
409
409
  #### [Transactions.Actions](docs/sdks/actions/README.md)
410
410
 
411
- * [list](docs/sdks/actions/README.md#list) - Get Flow actions for transaction
411
+ * [list](docs/sdks/actions/README.md#list) - List transaction Flow rules
412
412
 
413
413
  #### [Transactions.Events](docs/sdks/events/README.md)
414
414
 
@@ -1005,7 +1005,7 @@ To read more about standalone functions, check [FUNCTIONS.md](./FUNCTIONS.md).
1005
1005
  - [`reportsGet`](docs/sdks/reports/README.md#get) - Get a report
1006
1006
  - [`reportsList`](docs/sdks/reports/README.md#list) - List configured reports
1007
1007
  - [`reportsPut`](docs/sdks/reports/README.md#put) - Update a report
1008
- - [`transactionsActionsList`](docs/sdks/actions/README.md#list) - Get Flow actions for transaction
1008
+ - [`transactionsActionsList`](docs/sdks/actions/README.md#list) - List transaction Flow rules
1009
1009
  - [`transactionsCancel`](docs/sdks/transactions/README.md#cancel) - Cancel transaction
1010
1010
  - [`transactionsCapture`](docs/sdks/transactions/README.md#capture) - Capture transaction
1011
1011
  - [`transactionsCreate`](docs/sdks/transactions/README.md#create) - Create transaction
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "..": {
20
20
  "name": "@gr4vy/sdk",
21
- "version": "1.9.7",
21
+ "version": "1.9.8",
22
22
  "dependencies": {
23
23
  "@trust/keyto": "^1.0.1",
24
24
  "jsonwebtoken": "^9.0.3",
@@ -9,10 +9,10 @@ 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
- * Get Flow actions for transaction
12
+ * List transaction Flow rules
13
13
  *
14
14
  * @remarks
15
- * Retrieve the list of Flow actions that have been triggered for a transaction.
15
+ * Retrieve the list of Flow rule actions that have been triggered for a transaction.
16
16
  */
17
17
  export declare function transactionsActionsList(client: Gr4vyCore, transactionId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): APIPromise<Result<components.TransactionActions, errors.Error400 | errors.Error401 | errors.Error403 | errors.Error404 | errors.Error405 | errors.Error409 | errors.HTTPValidationError | errors.Error425 | errors.Error429 | errors.Error500 | errors.Error502 | errors.Error504 | Gr4vyError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError>>;
18
18
  //# sourceMappingURL=transactionsActionsList.d.ts.map
@@ -48,10 +48,10 @@ const errors = __importStar(require("../models/errors/index.js"));
48
48
  const operations = __importStar(require("../models/operations/index.js"));
49
49
  const async_js_1 = require("../types/async.js");
50
50
  /**
51
- * Get Flow actions for transaction
51
+ * List transaction Flow rules
52
52
  *
53
53
  * @remarks
54
- * Retrieve the list of Flow actions that have been triggered for a transaction.
54
+ * Retrieve the list of Flow rule actions that have been triggered for a transaction.
55
55
  */
56
56
  function transactionsActionsList(client, transactionId, merchantAccountId, options) {
57
57
  return new async_js_1.APIPromise($do(client, transactionId, merchantAccountId, options));
package/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "@gr4vy/sdk",
5
- "version": "1.9.7",
5
+ "version": "1.9.8",
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.9.7";
47
+ readonly sdkVersion: "1.9.8";
48
48
  readonly genVersion: "2.791.1";
49
- readonly userAgent: "speakeasy-sdk/typescript 1.9.7 2.791.1 1.0.0 @gr4vy/sdk";
49
+ readonly userAgent: "speakeasy-sdk/typescript 1.9.8 2.791.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.9.7",
40
+ sdkVersion: "1.9.8",
41
41
  genVersion: "2.791.1",
42
- userAgent: "speakeasy-sdk/typescript 1.9.7 2.791.1 1.0.0 @gr4vy/sdk",
42
+ userAgent: "speakeasy-sdk/typescript 1.9.8 2.791.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.9.7",
3
+ "version": "1.9.8",
4
4
  "author": "Gr4vy",
5
5
  "main": "./index.js",
6
6
  "sideEffects": false,
package/sdk/actions.d.ts CHANGED
@@ -2,10 +2,10 @@ import { ClientSDK, RequestOptions } from "../lib/sdks.js";
2
2
  import * as components from "../models/components/index.js";
3
3
  export declare class Actions extends ClientSDK {
4
4
  /**
5
- * Get Flow actions for transaction
5
+ * List transaction Flow rules
6
6
  *
7
7
  * @remarks
8
- * Retrieve the list of Flow actions that have been triggered for a transaction.
8
+ * Retrieve the list of Flow rule actions that have been triggered for a transaction.
9
9
  */
10
10
  list(transactionId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise<components.TransactionActions>;
11
11
  }
package/sdk/actions.js CHANGED
@@ -9,10 +9,10 @@ const sdks_js_1 = require("../lib/sdks.js");
9
9
  const fp_js_1 = require("../types/fp.js");
10
10
  class Actions extends sdks_js_1.ClientSDK {
11
11
  /**
12
- * Get Flow actions for transaction
12
+ * List transaction Flow rules
13
13
  *
14
14
  * @remarks
15
- * Retrieve the list of Flow actions that have been triggered for a transaction.
15
+ * Retrieve the list of Flow rule actions that have been triggered for a transaction.
16
16
  */
17
17
  async list(transactionId, merchantAccountId, options) {
18
18
  return (0, fp_js_1.unwrapAsync)((0, transactionsActionsList_js_1.transactionsActionsList)(this, transactionId, merchantAccountId, options));
@@ -27,10 +27,10 @@ import { APICall, APIPromise } from "../types/async.js";
27
27
  import { Result } from "../types/fp.js";
28
28
 
29
29
  /**
30
- * Get Flow actions for transaction
30
+ * List transaction Flow rules
31
31
  *
32
32
  * @remarks
33
- * Retrieve the list of Flow actions that have been triggered for a transaction.
33
+ * Retrieve the list of Flow rule actions that have been triggered for a transaction.
34
34
  */
35
35
  export function transactionsActionsList(
36
36
  client: Gr4vyCore,
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.9.7",
80
+ sdkVersion: "1.9.8",
81
81
  genVersion: "2.791.1",
82
- userAgent: "speakeasy-sdk/typescript 1.9.7 2.791.1 1.0.0 @gr4vy/sdk",
82
+ userAgent: "speakeasy-sdk/typescript 1.9.8 2.791.1 1.0.0 @gr4vy/sdk",
83
83
  } as const;
@@ -9,10 +9,10 @@ import { unwrapAsync } from "../types/fp.js";
9
9
 
10
10
  export class Actions extends ClientSDK {
11
11
  /**
12
- * Get Flow actions for transaction
12
+ * List transaction Flow rules
13
13
  *
14
14
  * @remarks
15
- * Retrieve the list of Flow actions that have been triggered for a transaction.
15
+ * Retrieve the list of Flow rule actions that have been triggered for a transaction.
16
16
  */
17
17
  async list(
18
18
  transactionId: string,