@yuno-payments/sdk-web-types 5.1.0 → 5.3.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/dist/global.d.ts CHANGED
@@ -474,6 +474,7 @@ type CookieConfig = {
474
474
  type CookiesConfig = Record<CookieKey, CookieConfig>;
475
475
  type InitializeOptions = {
476
476
  cookies: CookiesConfig | undefined;
477
+ sdkType?: string;
477
478
  };
478
479
 
479
480
  type Status = 'FAIL' | 'REJECT' | 'SUCCEEDED' | 'PROCESSING' | 'READY';
@@ -868,6 +869,11 @@ interface YunoConfig {
868
869
  type: LoadingType;
869
870
  }): void;
870
871
  deviceFingerprints?: ExternalProviderId[];
872
+ paymentListConfig?: {
873
+ scrollContainerSelector?: string;
874
+ visibleTriggerOffsetPx?: number;
875
+ bottomOffsetPx?: number;
876
+ };
871
877
  }
872
878
  type StartCheckoutArgs = Omit<YunoConfig, "yunoEnrollmentStatus" | "customerSession" | "publicApiKey" | "card"> & {
873
879
  card?: CardConfig & {
package/dist/index.d.ts CHANGED
@@ -474,6 +474,7 @@ type CookieConfig = {
474
474
  type CookiesConfig = Record<CookieKey, CookieConfig>;
475
475
  type InitializeOptions = {
476
476
  cookies: CookiesConfig | undefined;
477
+ sdkType?: string;
477
478
  };
478
479
 
479
480
  type Status = 'FAIL' | 'REJECT' | 'SUCCEEDED' | 'PROCESSING' | 'READY';
@@ -868,6 +869,11 @@ interface YunoConfig {
868
869
  type: LoadingType;
869
870
  }): void;
870
871
  deviceFingerprints?: ExternalProviderId[];
872
+ paymentListConfig?: {
873
+ scrollContainerSelector?: string;
874
+ visibleTriggerOffsetPx?: number;
875
+ bottomOffsetPx?: number;
876
+ };
871
877
  }
872
878
  type StartCheckoutArgs = Omit<YunoConfig, "yunoEnrollmentStatus" | "customerSession" | "publicApiKey" | "card"> & {
873
879
  card?: CardConfig & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuno-payments/sdk-web-types",
3
- "version": "5.1.0",
3
+ "version": "5.3.0",
4
4
  "types": "dist/index.d.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {