From 19e3867d47d0a1664164ad0da49e52f4c8f7de7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Van=C4=9Bk?= Date: Thu, 25 Sep 2025 13:30:12 +0200 Subject: [PATCH 1/4] =?UTF-8?q?=F0=9F=A4=96=20Merge=20PR=20#73748=20[invit?= =?UTF-8?q?y-api]=20receiveAddress=20in=20quotes=20request=20by=20@FreeWal?= =?UTF-8?q?l?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- types/invity-api/index.d.ts | 1 + types/invity-api/invity-api-tests.ts | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/types/invity-api/index.d.ts b/types/invity-api/index.d.ts index d06e407d17e27a..a62659c7fa95c7 100644 --- a/types/invity-api/index.d.ts +++ b/types/invity-api/index.d.ts @@ -360,6 +360,7 @@ export interface ExchangeTradeQuoteRequest { send: CryptoId; // bitcoin receive: CryptoId; // litecoin sendStringAmount?: string | undefined; // "0.01" + receiveAddress?: string; // user's address where they'll receive exchanged crypto dex?: "enable" | "exclusively" | undefined; // 'enable' means add dex offers, 'exclusively' means only dex offers } diff --git a/types/invity-api/invity-api-tests.ts b/types/invity-api/invity-api-tests.ts index e58bdc39592205..62f2318943c0fa 100644 --- a/types/invity-api/invity-api-tests.ts +++ b/types/invity-api/invity-api-tests.ts @@ -2,6 +2,7 @@ import { BuyProviderInfo, BuyTrade, ConfirmExchangeTradeRequest, + ExchangeTradeQuoteRequest, CreateTradeSignatureRequestExchange, CreateTradeSignatureRequestSell, CryptoId, @@ -154,9 +155,16 @@ const exchangeSignatureRequest: CreateTradeSignatureRequestExchange = { receiveSlip44: 2, }; -const exchangeTradeQuoteRequest: ConfirmExchangeTradeRequest = { +const exchangeTradeRequest: ConfirmExchangeTradeRequest = { trade: et, receiveAddress: "receiveAddress", refundAddress: "refundAddress", approvalFlow: true, }; + +const exchangeTradeQuoteRequest: ExchangeTradeQuoteRequest = { + send: "bitcoin" as CryptoId, + receive: "ethereum" as CryptoId, + sendStringAmount: "0.1", + receiveAddress: "receiveAddress", +}; From 3a1fb086b953904335de4fb86783256eee24114d Mon Sep 17 00:00:00 2001 From: TypeScript Bot Date: Thu, 25 Sep 2025 11:30:49 +0000 Subject: [PATCH 2/4] =?UTF-8?q?=F0=9F=A4=96=20dprint=20fmt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- types/invity-api/invity-api-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/invity-api/invity-api-tests.ts b/types/invity-api/invity-api-tests.ts index 62f2318943c0fa..f4120ea8f502ec 100644 --- a/types/invity-api/invity-api-tests.ts +++ b/types/invity-api/invity-api-tests.ts @@ -2,12 +2,12 @@ import { BuyProviderInfo, BuyTrade, ConfirmExchangeTradeRequest, - ExchangeTradeQuoteRequest, CreateTradeSignatureRequestExchange, CreateTradeSignatureRequestSell, CryptoId, ExchangeProviderInfo, ExchangeTrade, + ExchangeTradeQuoteRequest, ExchangeTradeSigned, InfoResponse, SellFiatTrade, From beef193d0255bd7fa20fe0c65a9a7ed66ae3554c Mon Sep 17 00:00:00 2001 From: Jaissica Date: Thu, 25 Sep 2025 12:17:42 -0400 Subject: [PATCH 3/4] =?UTF-8?q?=F0=9F=A4=96=20Merge=20PR=20#73647=20Add=20?= =?UTF-8?q?tests=20and=20definition=20for=20use=20method=20by=20@jaissica1?= =?UTF-8?q?2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jaissica Hora --- types/mparticle__web-sdk/index.d.ts | 6 ++++++ types/mparticle__web-sdk/test/mparticle__web-sdk-tests.ts | 2 ++ 2 files changed, 8 insertions(+) diff --git a/types/mparticle__web-sdk/index.d.ts b/types/mparticle__web-sdk/index.d.ts index a599c4a2b8f3c5..06e4acc6c70f60 100644 --- a/types/mparticle__web-sdk/index.d.ts +++ b/types/mparticle__web-sdk/index.d.ts @@ -362,6 +362,10 @@ interface SelectPlacements { (options: RoktSelectPlacementsOptions): Promise; } +interface Use { + (name: string): Promise; +} + interface HashAttributes { (attributes: RoktPartnerAttributes): Promise>; } @@ -556,6 +560,7 @@ export namespace Rokt { const selectPlacements: SelectPlacements; const hashAttributes: HashAttributes; const setExtensionData: SetExtensionData; + const use: Use; } export interface IdentifyRequest { @@ -817,6 +822,7 @@ declare class mParticleInstance { selectPlacements: SelectPlacements; hashAttributes: HashAttributes; setExtensionData: SetExtensionData; + use: Use; }; PromotionType: { Unknown: PromotionType.Unknown; diff --git a/types/mparticle__web-sdk/test/mparticle__web-sdk-tests.ts b/types/mparticle__web-sdk/test/mparticle__web-sdk-tests.ts index b8e08f6bc89d96..f87acaeff77346 100644 --- a/types/mparticle__web-sdk/test/mparticle__web-sdk-tests.ts +++ b/types/mparticle__web-sdk/test/mparticle__web-sdk-tests.ts @@ -226,6 +226,8 @@ mParticle.Rokt.setExtensionData({ }, }); +mParticle.Rokt.use("test-extension-name"); + mParticle.ready(() => { console.log("hi"); }); From bc685e16eb9e0c33df331e571993dd814aea9e20 Mon Sep 17 00:00:00 2001 From: Jens Oliver Meiert Date: Thu, 25 Sep 2025 20:40:37 +0200 Subject: [PATCH 4/4] =?UTF-8?q?=F0=9F=A4=96=20Merge=20PR=20#73685=20chore(?= =?UTF-8?q?html-minifier-next):=20point=20to=20repo=20for=20better=20overv?= =?UTF-8?q?iew=20by=20@j9t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jens Oliver Meiert --- types/html-minifier-next/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/html-minifier-next/package.json b/types/html-minifier-next/package.json index ddade733158a96..d603ae84722b4d 100644 --- a/types/html-minifier-next/package.json +++ b/types/html-minifier-next/package.json @@ -5,7 +5,7 @@ "type": "module", "minimumTypeScriptVersion": "5.3", "projects": [ - "https://j9t.github.io/html-minifier-next" + "https://github.com/j9t/html-minifier-next" ], "owners": [ {