@delopay/sdk 0.12.0 → 0.12.1

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/index.d.cts CHANGED
@@ -1378,6 +1378,13 @@ interface ProfileCreateRequest {
1378
1378
  redirect_to_merchant_with_http_post?: boolean | null;
1379
1379
  webhook_details?: Record<string, unknown> | null;
1380
1380
  metadata?: Record<string, unknown> | null;
1381
+ /**
1382
+ * Origins permitted to embed this profile's hosted checkout in an
1383
+ * iframe. Each entry is a full origin (`scheme://host[:port]`, no
1384
+ * path). Empty/null defaults to same-origin only — strict
1385
+ * clickjacking defense.
1386
+ */
1387
+ iframe_allowed_origins?: string[] | null;
1381
1388
  }
1382
1389
  interface ProfileUpdateRequest {
1383
1390
  profile_name?: string | null;
@@ -1388,6 +1395,11 @@ interface ProfileUpdateRequest {
1388
1395
  webhook_details?: Record<string, unknown> | null;
1389
1396
  metadata?: Record<string, unknown> | null;
1390
1397
  payment_link_config?: BusinessPaymentLinkConfig | null;
1398
+ /**
1399
+ * Origins permitted to embed this profile's hosted checkout in an
1400
+ * iframe. See {@link ProfileCreateRequest.iframe_allowed_origins}.
1401
+ */
1402
+ iframe_allowed_origins?: string[] | null;
1391
1403
  }
1392
1404
  interface ProfileResponse {
1393
1405
  merchant_id: string;
@@ -1406,6 +1418,11 @@ interface ProfileResponse {
1406
1418
  payment_response_hash_key?: string | null;
1407
1419
  webhook_details?: Record<string, unknown> | null;
1408
1420
  metadata?: Record<string, unknown> | null;
1421
+ /**
1422
+ * Origins permitted to embed this profile's hosted checkout in an
1423
+ * iframe. See {@link ProfileCreateRequest.iframe_allowed_origins}.
1424
+ */
1425
+ iframe_allowed_origins?: string[] | null;
1409
1426
  [key: string]: unknown;
1410
1427
  }
1411
1428
  type BlocklistAddRequest = {
package/dist/index.d.ts CHANGED
@@ -1378,6 +1378,13 @@ interface ProfileCreateRequest {
1378
1378
  redirect_to_merchant_with_http_post?: boolean | null;
1379
1379
  webhook_details?: Record<string, unknown> | null;
1380
1380
  metadata?: Record<string, unknown> | null;
1381
+ /**
1382
+ * Origins permitted to embed this profile's hosted checkout in an
1383
+ * iframe. Each entry is a full origin (`scheme://host[:port]`, no
1384
+ * path). Empty/null defaults to same-origin only — strict
1385
+ * clickjacking defense.
1386
+ */
1387
+ iframe_allowed_origins?: string[] | null;
1381
1388
  }
1382
1389
  interface ProfileUpdateRequest {
1383
1390
  profile_name?: string | null;
@@ -1388,6 +1395,11 @@ interface ProfileUpdateRequest {
1388
1395
  webhook_details?: Record<string, unknown> | null;
1389
1396
  metadata?: Record<string, unknown> | null;
1390
1397
  payment_link_config?: BusinessPaymentLinkConfig | null;
1398
+ /**
1399
+ * Origins permitted to embed this profile's hosted checkout in an
1400
+ * iframe. See {@link ProfileCreateRequest.iframe_allowed_origins}.
1401
+ */
1402
+ iframe_allowed_origins?: string[] | null;
1391
1403
  }
1392
1404
  interface ProfileResponse {
1393
1405
  merchant_id: string;
@@ -1406,6 +1418,11 @@ interface ProfileResponse {
1406
1418
  payment_response_hash_key?: string | null;
1407
1419
  webhook_details?: Record<string, unknown> | null;
1408
1420
  metadata?: Record<string, unknown> | null;
1421
+ /**
1422
+ * Origins permitted to embed this profile's hosted checkout in an
1423
+ * iframe. See {@link ProfileCreateRequest.iframe_allowed_origins}.
1424
+ */
1425
+ iframe_allowed_origins?: string[] | null;
1409
1426
  [key: string]: unknown;
1410
1427
  }
1411
1428
  type BlocklistAddRequest = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delopay/sdk",
3
- "version": "0.12.0",
3
+ "version": "0.12.1",
4
4
  "description": "Official Delopay TypeScript SDK",
5
5
  "type": "module",
6
6
  "sideEffects": false,