@gr4vy/sdk 2.0.29 → 2.0.30
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/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: "2.0.
|
|
47
|
+
readonly sdkVersion: "2.0.30";
|
|
48
48
|
readonly genVersion: "2.881.4";
|
|
49
|
-
readonly userAgent: "speakeasy-sdk/typescript 2.0.
|
|
49
|
+
readonly userAgent: "speakeasy-sdk/typescript 2.0.30 2.881.4 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: "2.0.
|
|
40
|
+
sdkVersion: "2.0.30",
|
|
41
41
|
genVersion: "2.881.4",
|
|
42
|
-
userAgent: "speakeasy-sdk/typescript 2.0.
|
|
42
|
+
userAgent: "speakeasy-sdk/typescript 2.0.30 2.881.4 1.0.0 @gr4vy/sdk",
|
|
43
43
|
};
|
|
44
44
|
//# sourceMappingURL=config.js.map
|
|
@@ -9,11 +9,11 @@ export type PaymentMethodUpdate = {
|
|
|
9
9
|
*/
|
|
10
10
|
expirationDate?: string | null | undefined;
|
|
11
11
|
/**
|
|
12
|
-
* A scheme transaction identifier to associate with this payment method.
|
|
12
|
+
* A scheme transaction identifier to associate with this payment method. Explicitly setting this field to `null` will also clear `scheme_transaction_id_scheme` as a side-effect. When setting a new value and `scheme_transaction_id_scheme` is both omitted from the payload and previously unset,`scheme_transaction_id_scheme` will be populated from the payment method's existing `scheme`.
|
|
13
13
|
*/
|
|
14
14
|
schemeTransactionId?: string | null | undefined;
|
|
15
15
|
/**
|
|
16
|
-
* The scheme associated with scheme_transaction_id
|
|
16
|
+
* The scheme associated with `scheme_transaction_id`. Only applies to card payments. When setting a new value for `scheme_transaction_id`, if `scheme_transaction_id_scheme`is both omitted from the payload and previously unset, `scheme_transaction_id_scheme` will be populated from the payment method's existing `scheme`.
|
|
17
17
|
*/
|
|
18
18
|
schemeTransactionIdScheme?: CardScheme | null | undefined;
|
|
19
19
|
};
|
package/package.json
CHANGED
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: "2.0.
|
|
80
|
+
sdkVersion: "2.0.30",
|
|
81
81
|
genVersion: "2.881.4",
|
|
82
|
-
userAgent: "speakeasy-sdk/typescript 2.0.
|
|
82
|
+
userAgent: "speakeasy-sdk/typescript 2.0.30 2.881.4 1.0.0 @gr4vy/sdk",
|
|
83
83
|
} as const;
|
|
@@ -15,11 +15,11 @@ export type PaymentMethodUpdate = {
|
|
|
15
15
|
*/
|
|
16
16
|
expirationDate?: string | null | undefined;
|
|
17
17
|
/**
|
|
18
|
-
* A scheme transaction identifier to associate with this payment method.
|
|
18
|
+
* A scheme transaction identifier to associate with this payment method. Explicitly setting this field to `null` will also clear `scheme_transaction_id_scheme` as a side-effect. When setting a new value and `scheme_transaction_id_scheme` is both omitted from the payload and previously unset,`scheme_transaction_id_scheme` will be populated from the payment method's existing `scheme`.
|
|
19
19
|
*/
|
|
20
20
|
schemeTransactionId?: string | null | undefined;
|
|
21
21
|
/**
|
|
22
|
-
* The scheme associated with scheme_transaction_id
|
|
22
|
+
* The scheme associated with `scheme_transaction_id`. Only applies to card payments. When setting a new value for `scheme_transaction_id`, if `scheme_transaction_id_scheme`is both omitted from the payload and previously unset, `scheme_transaction_id_scheme` will be populated from the payment method's existing `scheme`.
|
|
23
23
|
*/
|
|
24
24
|
schemeTransactionIdScheme?: CardScheme | null | undefined;
|
|
25
25
|
};
|