@terminal3/t3n-sdk 3.2.0 → 3.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/index.d.ts +7 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/src/client/org-data.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2439,6 +2439,13 @@ interface OrgDataClientOptions extends ExecuteOrgDataActionOptions {
|
|
|
2439
2439
|
* auth challenge flow automatically.
|
|
2440
2440
|
*/
|
|
2441
2441
|
handlers?: GuestToHostHandlers;
|
|
2442
|
+
/**
|
|
2443
|
+
* Extra headers added to every `/api/rpc` request the internal
|
|
2444
|
+
* `T3nClient` makes. Mirrors `T3nClientConfig.headers` — needed when
|
|
2445
|
+
* the node sits behind an edge policy that gates `/api/rpc` on a
|
|
2446
|
+
* header (e.g. the staging Cloud Armor bypass token).
|
|
2447
|
+
*/
|
|
2448
|
+
headers?: Record<string, string>;
|
|
2442
2449
|
}
|
|
2443
2450
|
/**
|
|
2444
2451
|
* Client for session-authenticated org-data contract execution.
|