@commercelayer/sdk 6.20.0 → 6.21.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/lib/index.d.mts CHANGED
@@ -15458,6 +15458,11 @@ interface StripeGateway extends Resource {
15458
15458
  * @example ```"US payment gateway"```
15459
15459
  */
15460
15460
  name: string;
15461
+ /**
15462
+ * The account (if any) for which the funds of the PaymentIntent are intended.
15463
+ * @example ```"xxxx-yyyy-zzzz"```
15464
+ */
15465
+ connected_account?: string | null;
15461
15466
  /**
15462
15467
  * Indicates if the gateway will accept payment methods enabled in the Stripe dashboard.
15463
15468
  * @example ```"true"```
@@ -15498,6 +15503,11 @@ interface StripeGatewayCreate extends ResourceCreate {
15498
15503
  * @example ```"pk_live_xxxx-yyyy-zzzz"```
15499
15504
  */
15500
15505
  publishable_key?: string | null;
15506
+ /**
15507
+ * The account (if any) for which the funds of the PaymentIntent are intended.
15508
+ * @example ```"xxxx-yyyy-zzzz"```
15509
+ */
15510
+ connected_account?: string | null;
15501
15511
  /**
15502
15512
  * Indicates if the gateway will accept payment methods enabled in the Stripe dashboard.
15503
15513
  * @example ```"true"```
@@ -15510,6 +15520,11 @@ interface StripeGatewayUpdate extends ResourceUpdate {
15510
15520
  * @example ```"US payment gateway"```
15511
15521
  */
15512
15522
  name?: string | null;
15523
+ /**
15524
+ * The account (if any) for which the funds of the PaymentIntent are intended.
15525
+ * @example ```"xxxx-yyyy-zzzz"```
15526
+ */
15527
+ connected_account?: string | null;
15513
15528
  /**
15514
15529
  * Indicates if the gateway will accept payment methods enabled in the Stripe dashboard.
15515
15530
  * @example ```"true"```
@@ -15855,7 +15870,7 @@ type CommerceLayerInitConfig = SdkConfig & ResourcesInitConfig;
15855
15870
  type CommerceLayerConfig = Partial<CommerceLayerInitConfig>;
15856
15871
  declare class CommerceLayerClient {
15857
15872
  #private;
15858
- readonly openApiSchemaVersion = "7.2.0";
15873
+ readonly openApiSchemaVersion = "7.2.1";
15859
15874
  constructor(config: CommerceLayerInitConfig);
15860
15875
  get addresses(): Addresses;
15861
15876
  get adjustments(): Adjustments;
package/lib/index.d.ts CHANGED
@@ -15458,6 +15458,11 @@ interface StripeGateway extends Resource {
15458
15458
  * @example ```"US payment gateway"```
15459
15459
  */
15460
15460
  name: string;
15461
+ /**
15462
+ * The account (if any) for which the funds of the PaymentIntent are intended.
15463
+ * @example ```"xxxx-yyyy-zzzz"```
15464
+ */
15465
+ connected_account?: string | null;
15461
15466
  /**
15462
15467
  * Indicates if the gateway will accept payment methods enabled in the Stripe dashboard.
15463
15468
  * @example ```"true"```
@@ -15498,6 +15503,11 @@ interface StripeGatewayCreate extends ResourceCreate {
15498
15503
  * @example ```"pk_live_xxxx-yyyy-zzzz"```
15499
15504
  */
15500
15505
  publishable_key?: string | null;
15506
+ /**
15507
+ * The account (if any) for which the funds of the PaymentIntent are intended.
15508
+ * @example ```"xxxx-yyyy-zzzz"```
15509
+ */
15510
+ connected_account?: string | null;
15501
15511
  /**
15502
15512
  * Indicates if the gateway will accept payment methods enabled in the Stripe dashboard.
15503
15513
  * @example ```"true"```
@@ -15510,6 +15520,11 @@ interface StripeGatewayUpdate extends ResourceUpdate {
15510
15520
  * @example ```"US payment gateway"```
15511
15521
  */
15512
15522
  name?: string | null;
15523
+ /**
15524
+ * The account (if any) for which the funds of the PaymentIntent are intended.
15525
+ * @example ```"xxxx-yyyy-zzzz"```
15526
+ */
15527
+ connected_account?: string | null;
15513
15528
  /**
15514
15529
  * Indicates if the gateway will accept payment methods enabled in the Stripe dashboard.
15515
15530
  * @example ```"true"```
@@ -15855,7 +15870,7 @@ type CommerceLayerInitConfig = SdkConfig & ResourcesInitConfig;
15855
15870
  type CommerceLayerConfig = Partial<CommerceLayerInitConfig>;
15856
15871
  declare class CommerceLayerClient {
15857
15872
  #private;
15858
- readonly openApiSchemaVersion = "7.2.0";
15873
+ readonly openApiSchemaVersion = "7.2.1";
15859
15874
  constructor(config: CommerceLayerInitConfig);
15860
15875
  get addresses(): Addresses;
15861
15876
  get adjustments(): Adjustments;