@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
|
@@ -106,6 +106,13 @@ export interface OrgDataClientOptions extends ExecuteOrgDataActionOptions {
|
|
|
106
106
|
* auth challenge flow automatically.
|
|
107
107
|
*/
|
|
108
108
|
handlers?: GuestToHostHandlers;
|
|
109
|
+
/**
|
|
110
|
+
* Extra headers added to every `/api/rpc` request the internal
|
|
111
|
+
* `T3nClient` makes. Mirrors `T3nClientConfig.headers` — needed when
|
|
112
|
+
* the node sits behind an edge policy that gates `/api/rpc` on a
|
|
113
|
+
* header (e.g. the staging Cloud Armor bypass token).
|
|
114
|
+
*/
|
|
115
|
+
headers?: Record<string, string>;
|
|
109
116
|
}
|
|
110
117
|
/**
|
|
111
118
|
* Client for session-authenticated org-data contract execution.
|