How to disable the future flag warings after initializing the shopifyApi

After I initialize shopifyApi

const store={
apiSecretKey: "7*******d8", 
hostName: 'o*********.myshopify.com',
apiVersion: '2024-07',
adminApiAccessToken: 'shp**********7',
isCustomStoreApp:true,
}

const shopify=shopifyApi(store);

Get these warnings

[shopify-api/INFO] version 11.3.0, environment Node v20.14.0
[shopify-api/INFO] Future flag lineItemBilling is disabled.

Enable this flag to use the new billing API, that supports multiple line items per plan.

[shopify-api/INFO] Future flag customerAddressDefaultFix is disabled.

Enable this flag to change the CustomerAddress classes to expose a 'is_default' property instead of 'default' when fetching data.

[shopify-api/INFO] Future flag unstable_managedPricingSupport is disabled.

Enable this flag to support managed pricing, so apps can check for payments without needing a billing config. Learn more at https://shopify.dev/docs/apps/launch/billing/managed-pricing

All nice and well but they are clogging up my logs.

And increase my cost in my cloud environment.

How can I disable them?

kind regards

Erwin

future: {
    customerAddressDefaultFix: true,
    v10_lineItemBilling: false,
    lineItemBilling: true
},

You can try above settings.

it did change some what

const store={
apiSecretKey: "7*******d8", 
hostName: 'o*********.myshopify.com',
apiVersion: '2024-07',
adminApiAccessToken: 'shp**********7',
isCustomStoreApp:true,
future: {
customerAddressDefaultFix: true,
v10_lineItemBilling: false,
lineItemBilling: true
},
}

const shopify=shopifyApi(store);
 less messages

[shopify-api/INFO] version 11.3.0, environment Node v20.14.0
[shopify-api/INFO] Future flag unstable_managedPricingSupport is disabled.

Enable this flag to support managed pricing, so apps can check for payments without needing a billing config. Learn more at https://shopify.dev/docs/apps/launch/billing/managed-pricing

Apparently you can pass this in the api configuration now:

_logDisabledFutureFlags: false,