@@ -76,6 +76,9 @@ class Attributes {
7676 . admin , "attributes" ) ,
7777 method : "GET" ,
7878 headers : {
79+ "Tenant-ID" : ( yield core . Supplier . get ( this . _options . tenantId ) ) != null
80+ ? yield core . Supplier . get ( this . _options . tenantId )
81+ : undefined ,
7982 "X-API-KEY" : yield core . Supplier . get ( this . _options . apiKey ) ,
8083 "X-Fern-Language" : "JavaScript" ,
8184 } ,
@@ -154,6 +157,9 @@ class Attributes {
154157 . admin , "attributes" ) ,
155158 method : "POST" ,
156159 headers : {
160+ "Tenant-ID" : ( yield core . Supplier . get ( this . _options . tenantId ) ) != null
161+ ? yield core . Supplier . get ( this . _options . tenantId )
162+ : undefined ,
157163 "X-API-KEY" : yield core . Supplier . get ( this . _options . apiKey ) ,
158164 "X-Fern-Language" : "JavaScript" ,
159165 } ,
@@ -234,6 +240,9 @@ class Attributes {
234240 . admin , "attributes" ) ,
235241 method : "DELETE" ,
236242 headers : {
243+ "Tenant-ID" : ( yield core . Supplier . get ( this . _options . tenantId ) ) != null
244+ ? yield core . Supplier . get ( this . _options . tenantId )
245+ : undefined ,
237246 "X-API-KEY" : yield core . Supplier . get ( this . _options . apiKey ) ,
238247 "X-Fern-Language" : "JavaScript" ,
239248 } ,
@@ -313,6 +322,9 @@ class Attributes {
313322 . admin , "attributes" ) ,
314323 method : "PATCH" ,
315324 headers : {
325+ "Tenant-ID" : ( yield core . Supplier . get ( this . _options . tenantId ) ) != null
326+ ? yield core . Supplier . get ( this . _options . tenantId )
327+ : undefined ,
316328 "X-API-KEY" : yield core . Supplier . get ( this . _options . apiKey ) ,
317329 "X-Fern-Language" : "JavaScript" ,
318330 } ,
@@ -387,6 +399,9 @@ class Attributes {
387399 . admin , `attributes/${ id } ` ) ,
388400 method : "GET" ,
389401 headers : {
402+ "Tenant-ID" : ( yield core . Supplier . get ( this . _options . tenantId ) ) != null
403+ ? yield core . Supplier . get ( this . _options . tenantId )
404+ : undefined ,
390405 "X-API-KEY" : yield core . Supplier . get ( this . _options . apiKey ) ,
391406 "X-Fern-Language" : "JavaScript" ,
392407 } ,
0 commit comments