@airweave/sdk 0.1.11 → 0.1.12

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.
Files changed (58) hide show
  1. package/Client.d.ts +3 -2
  2. package/Client.js +1 -1
  3. package/README.md +1 -1
  4. package/api/resources/apiKeys/client/Client.d.ts +3 -2
  5. package/api/resources/apiKeys/client/Client.js +14 -9
  6. package/api/resources/chat/client/Client.d.ts +3 -2
  7. package/api/resources/chat/client/Client.js +26 -17
  8. package/api/resources/connections/client/Client.d.ts +3 -2
  9. package/api/resources/connections/client/Client.js +38 -25
  10. package/api/resources/destinations/client/Client.d.ts +3 -2
  11. package/api/resources/destinations/client/Client.js +8 -5
  12. package/api/resources/embeddingModels/client/Client.d.ts +3 -2
  13. package/api/resources/embeddingModels/client/Client.js +8 -5
  14. package/api/resources/health/client/Client.d.ts +3 -2
  15. package/api/resources/health/client/Client.js +5 -3
  16. package/api/resources/sources/client/Client.d.ts +3 -2
  17. package/api/resources/sources/client/Client.js +8 -5
  18. package/api/resources/sync/client/Client.d.ts +3 -2
  19. package/api/resources/sync/client/Client.js +26 -17
  20. package/api/resources/users/client/Client.d.ts +3 -2
  21. package/api/resources/users/client/Client.js +5 -3
  22. package/api/resources/whiteLabels/client/Client.d.ts +3 -2
  23. package/api/resources/whiteLabels/client/Client.js +26 -17
  24. package/dist/Client.d.ts +3 -2
  25. package/dist/Client.js +1 -1
  26. package/dist/api/resources/apiKeys/client/Client.d.ts +3 -2
  27. package/dist/api/resources/apiKeys/client/Client.js +14 -9
  28. package/dist/api/resources/chat/client/Client.d.ts +3 -2
  29. package/dist/api/resources/chat/client/Client.js +26 -17
  30. package/dist/api/resources/connections/client/Client.d.ts +3 -2
  31. package/dist/api/resources/connections/client/Client.js +38 -25
  32. package/dist/api/resources/destinations/client/Client.d.ts +3 -2
  33. package/dist/api/resources/destinations/client/Client.js +8 -5
  34. package/dist/api/resources/embeddingModels/client/Client.d.ts +3 -2
  35. package/dist/api/resources/embeddingModels/client/Client.js +8 -5
  36. package/dist/api/resources/health/client/Client.d.ts +3 -2
  37. package/dist/api/resources/health/client/Client.js +5 -3
  38. package/dist/api/resources/sources/client/Client.d.ts +3 -2
  39. package/dist/api/resources/sources/client/Client.js +8 -5
  40. package/dist/api/resources/sync/client/Client.d.ts +3 -2
  41. package/dist/api/resources/sync/client/Client.js +26 -17
  42. package/dist/api/resources/users/client/Client.d.ts +3 -2
  43. package/dist/api/resources/users/client/Client.js +5 -3
  44. package/dist/api/resources/whiteLabels/client/Client.d.ts +3 -2
  45. package/dist/api/resources/whiteLabels/client/Client.js +26 -17
  46. package/dist/environments.d.ts +8 -0
  47. package/dist/environments.js +10 -0
  48. package/dist/index.d.ts +1 -0
  49. package/dist/index.js +3 -1
  50. package/dist/version.d.ts +1 -1
  51. package/dist/version.js +1 -1
  52. package/environments.d.ts +8 -0
  53. package/environments.js +10 -0
  54. package/index.d.ts +1 -0
  55. package/index.js +3 -1
  56. package/package.json +1 -1
  57. package/version.d.ts +1 -1
  58. package/version.js +1 -1
@@ -49,13 +49,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
49
49
  };
50
50
  Object.defineProperty(exports, "__esModule", { value: true });
51
51
  exports.WhiteLabels = void 0;
52
+ const environments = __importStar(require("../../../../environments"));
52
53
  const core = __importStar(require("../../../../core"));
53
54
  const AirweaveSDK = __importStar(require("../../../index"));
54
55
  const url_join_1 = __importDefault(require("url-join"));
55
56
  const serializers = __importStar(require("../../../../serialization/index"));
56
57
  const errors = __importStar(require("../../../../errors/index"));
57
58
  class WhiteLabels {
58
- constructor(_options) {
59
+ constructor(_options = {}) {
59
60
  this._options = _options;
60
61
  }
61
62
  /**
@@ -70,12 +71,13 @@ class WhiteLabels {
70
71
  */
71
72
  listWhiteLabels(requestOptions) {
72
73
  return __awaiter(this, void 0, void 0, function* () {
74
+ var _a;
73
75
  const _response = yield core.fetcher({
74
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), "white_labels/list"),
76
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, "white_labels/list"),
75
77
  method: "GET",
76
78
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
77
79
  ? yield core.Supplier.get(this._options.apiKey)
78
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
80
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
79
81
  contentType: "application/json",
80
82
  requestType: "json",
81
83
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -140,12 +142,13 @@ class WhiteLabels {
140
142
  */
141
143
  createWhiteLabel(request, requestOptions) {
142
144
  return __awaiter(this, void 0, void 0, function* () {
145
+ var _a;
143
146
  const _response = yield core.fetcher({
144
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), "white_labels/"),
147
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, "white_labels/"),
145
148
  method: "POST",
146
149
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
147
150
  ? yield core.Supplier.get(this._options.apiKey)
148
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
151
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
149
152
  contentType: "application/json",
150
153
  requestType: "json",
151
154
  body: serializers.WhiteLabelCreate.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -205,12 +208,13 @@ class WhiteLabels {
205
208
  */
206
209
  getWhiteLabel(whiteLabelId, requestOptions) {
207
210
  return __awaiter(this, void 0, void 0, function* () {
211
+ var _a;
208
212
  const _response = yield core.fetcher({
209
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), `white_labels/${encodeURIComponent(whiteLabelId)}`),
213
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, `white_labels/${encodeURIComponent(whiteLabelId)}`),
210
214
  method: "GET",
211
215
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
212
216
  ? yield core.Supplier.get(this._options.apiKey)
213
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
217
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
214
218
  contentType: "application/json",
215
219
  requestType: "json",
216
220
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -270,12 +274,13 @@ class WhiteLabels {
270
274
  */
271
275
  updateWhiteLabel(whiteLabelId_1) {
272
276
  return __awaiter(this, arguments, void 0, function* (whiteLabelId, request = {}, requestOptions) {
277
+ var _a;
273
278
  const _response = yield core.fetcher({
274
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), `white_labels/${encodeURIComponent(whiteLabelId)}`),
279
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, `white_labels/${encodeURIComponent(whiteLabelId)}`),
275
280
  method: "PUT",
276
281
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
277
282
  ? yield core.Supplier.get(this._options.apiKey)
278
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
283
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
279
284
  contentType: "application/json",
280
285
  requestType: "json",
281
286
  body: serializers.WhiteLabelUpdate.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -335,12 +340,13 @@ class WhiteLabels {
335
340
  */
336
341
  deleteWhiteLabel(whiteLabelId, requestOptions) {
337
342
  return __awaiter(this, void 0, void 0, function* () {
343
+ var _a;
338
344
  const _response = yield core.fetcher({
339
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), `white_labels/${encodeURIComponent(whiteLabelId)}`),
345
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, `white_labels/${encodeURIComponent(whiteLabelId)}`),
340
346
  method: "DELETE",
341
347
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
342
348
  ? yield core.Supplier.get(this._options.apiKey)
343
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
349
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
344
350
  contentType: "application/json",
345
351
  requestType: "json",
346
352
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -399,12 +405,13 @@ class WhiteLabels {
399
405
  */
400
406
  getWhiteLabelOauth2AuthUrl(whiteLabelId, requestOptions) {
401
407
  return __awaiter(this, void 0, void 0, function* () {
408
+ var _a;
402
409
  const _response = yield core.fetcher({
403
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), `white_labels/${encodeURIComponent(whiteLabelId)}/oauth2/auth_url`),
410
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, `white_labels/${encodeURIComponent(whiteLabelId)}/oauth2/auth_url`),
404
411
  method: "GET",
405
412
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
406
413
  ? yield core.Supplier.get(this._options.apiKey)
407
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
414
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
408
415
  contentType: "application/json",
409
416
  requestType: "json",
410
417
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -464,12 +471,13 @@ class WhiteLabels {
464
471
  */
465
472
  exchangeWhiteLabelOauth2Code(whiteLabelId, request, requestOptions) {
466
473
  return __awaiter(this, void 0, void 0, function* () {
474
+ var _a;
467
475
  const _response = yield core.fetcher({
468
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), `white_labels/${encodeURIComponent(whiteLabelId)}/oauth2/code`),
476
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, `white_labels/${encodeURIComponent(whiteLabelId)}/oauth2/code`),
469
477
  method: "POST",
470
478
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
471
479
  ? yield core.Supplier.get(this._options.apiKey)
472
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
480
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
473
481
  contentType: "application/json",
474
482
  requestType: "json",
475
483
  body: serializers.whiteLabels.exchangeWhiteLabelOauth2Code.Request.jsonOrThrow(request, {
@@ -531,12 +539,13 @@ class WhiteLabels {
531
539
  */
532
540
  listWhiteLabelSyncs(whiteLabelId, requestOptions) {
533
541
  return __awaiter(this, void 0, void 0, function* () {
542
+ var _a;
534
543
  const _response = yield core.fetcher({
535
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), `white_labels/${encodeURIComponent(whiteLabelId)}/syncs`),
544
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, `white_labels/${encodeURIComponent(whiteLabelId)}/syncs`),
536
545
  method: "GET",
537
546
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
538
547
  ? yield core.Supplier.get(this._options.apiKey)
539
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
548
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
540
549
  contentType: "application/json",
541
550
  requestType: "json",
542
551
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
package/dist/Client.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
+ import * as environments from "./environments";
4
5
  import * as core from "./core";
5
6
  import { Health } from "./api/resources/health/client/Client";
6
7
  import { ApiKeys } from "./api/resources/apiKeys/client/Client";
@@ -14,7 +15,7 @@ import { WhiteLabels } from "./api/resources/whiteLabels/client/Client";
14
15
  import { Chat } from "./api/resources/chat/client/Client";
15
16
  export declare namespace AirweaveSDKClient {
16
17
  interface Options {
17
- environment: core.Supplier<string>;
18
+ environment?: core.Supplier<environments.AirweaveSDKEnvironment | string>;
18
19
  /** Override the x-api-key header */
19
20
  apiKey?: core.Supplier<string | undefined>;
20
21
  }
@@ -43,7 +44,7 @@ export declare class AirweaveSDKClient {
43
44
  protected _sync: Sync | undefined;
44
45
  protected _whiteLabels: WhiteLabels | undefined;
45
46
  protected _chat: Chat | undefined;
46
- constructor(_options: AirweaveSDKClient.Options);
47
+ constructor(_options?: AirweaveSDKClient.Options);
47
48
  get health(): Health;
48
49
  get apiKeys(): ApiKeys;
49
50
  get users(): Users;
package/dist/Client.js CHANGED
@@ -15,7 +15,7 @@ const Client_8 = require("./api/resources/sync/client/Client");
15
15
  const Client_9 = require("./api/resources/whiteLabels/client/Client");
16
16
  const Client_10 = require("./api/resources/chat/client/Client");
17
17
  class AirweaveSDKClient {
18
- constructor(_options) {
18
+ constructor(_options = {}) {
19
19
  this._options = _options;
20
20
  }
21
21
  get health() {
@@ -1,11 +1,12 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
+ import * as environments from "../../../../environments";
4
5
  import * as core from "../../../../core";
5
6
  import * as AirweaveSDK from "../../../index";
6
7
  export declare namespace ApiKeys {
7
8
  interface Options {
8
- environment: core.Supplier<string>;
9
+ environment?: core.Supplier<environments.AirweaveSDKEnvironment | string>;
9
10
  /** Override the x-api-key header */
10
11
  apiKey?: core.Supplier<string | undefined>;
11
12
  }
@@ -24,7 +25,7 @@ export declare namespace ApiKeys {
24
25
  }
25
26
  export declare class ApiKeys {
26
27
  protected readonly _options: ApiKeys.Options;
27
- constructor(_options: ApiKeys.Options);
28
+ constructor(_options?: ApiKeys.Options);
28
29
  /**
29
30
  * Retrieve all API keys for the current user.
30
31
  *
@@ -49,13 +49,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
49
49
  };
50
50
  Object.defineProperty(exports, "__esModule", { value: true });
51
51
  exports.ApiKeys = void 0;
52
+ const environments = __importStar(require("../../../../environments"));
52
53
  const core = __importStar(require("../../../../core"));
53
54
  const AirweaveSDK = __importStar(require("../../../index"));
54
55
  const url_join_1 = __importDefault(require("url-join"));
55
56
  const serializers = __importStar(require("../../../../serialization/index"));
56
57
  const errors = __importStar(require("../../../../errors/index"));
57
58
  class ApiKeys {
58
- constructor(_options) {
59
+ constructor(_options = {}) {
59
60
  this._options = _options;
60
61
  }
61
62
  /**
@@ -82,6 +83,7 @@ class ApiKeys {
82
83
  */
83
84
  readApiKeys() {
84
85
  return __awaiter(this, arguments, void 0, function* (request = {}, requestOptions) {
86
+ var _a;
85
87
  const { skip, limit } = request;
86
88
  const _queryParams = {};
87
89
  if (skip != null) {
@@ -91,11 +93,11 @@ class ApiKeys {
91
93
  _queryParams["limit"] = limit.toString();
92
94
  }
93
95
  const _response = yield core.fetcher({
94
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), "api_keys/"),
96
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, "api_keys/"),
95
97
  method: "GET",
96
98
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
97
99
  ? yield core.Supplier.get(this._options.apiKey)
98
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
100
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
99
101
  contentType: "application/json",
100
102
  queryParameters: _queryParams,
101
103
  requestType: "json",
@@ -168,12 +170,13 @@ class ApiKeys {
168
170
  */
169
171
  createApiKey() {
170
172
  return __awaiter(this, arguments, void 0, function* (request = {}, requestOptions) {
173
+ var _a;
171
174
  const _response = yield core.fetcher({
172
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), "api_keys/"),
175
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, "api_keys/"),
173
176
  method: "POST",
174
177
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
175
178
  ? yield core.Supplier.get(this._options.apiKey)
176
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
179
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
177
180
  contentType: "application/json",
178
181
  requestType: "json",
179
182
  body: serializers.ApiKeyCreate.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -249,15 +252,16 @@ class ApiKeys {
249
252
  */
250
253
  deleteApiKey(request, requestOptions) {
251
254
  return __awaiter(this, void 0, void 0, function* () {
255
+ var _a;
252
256
  const { id } = request;
253
257
  const _queryParams = {};
254
258
  _queryParams["id"] = id;
255
259
  const _response = yield core.fetcher({
256
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), "api_keys/"),
260
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, "api_keys/"),
257
261
  method: "DELETE",
258
262
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
259
263
  ? yield core.Supplier.get(this._options.apiKey)
260
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
264
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
261
265
  contentType: "application/json",
262
266
  queryParameters: _queryParams,
263
267
  requestType: "json",
@@ -331,12 +335,13 @@ class ApiKeys {
331
335
  */
332
336
  readApiKey(id, requestOptions) {
333
337
  return __awaiter(this, void 0, void 0, function* () {
338
+ var _a;
334
339
  const _response = yield core.fetcher({
335
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), `api_keys/${encodeURIComponent(id)}`),
340
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, `api_keys/${encodeURIComponent(id)}`),
336
341
  method: "GET",
337
342
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
338
343
  ? yield core.Supplier.get(this._options.apiKey)
339
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
344
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
340
345
  contentType: "application/json",
341
346
  requestType: "json",
342
347
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -1,11 +1,12 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
+ import * as environments from "../../../../environments";
4
5
  import * as core from "../../../../core";
5
6
  import * as AirweaveSDK from "../../../index";
6
7
  export declare namespace Chat {
7
8
  interface Options {
8
- environment: core.Supplier<string>;
9
+ environment?: core.Supplier<environments.AirweaveSDKEnvironment | string>;
9
10
  /** Override the x-api-key header */
10
11
  apiKey?: core.Supplier<string | undefined>;
11
12
  }
@@ -24,7 +25,7 @@ export declare namespace Chat {
24
25
  }
25
26
  export declare class Chat {
26
27
  protected readonly _options: Chat.Options;
27
- constructor(_options: Chat.Options);
28
+ constructor(_options?: Chat.Options);
28
29
  /**
29
30
  * Check if the OpenAI API key is set for the current user.
30
31
  *
@@ -49,13 +49,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
49
49
  };
50
50
  Object.defineProperty(exports, "__esModule", { value: true });
51
51
  exports.Chat = void 0;
52
+ const environments = __importStar(require("../../../../environments"));
52
53
  const core = __importStar(require("../../../../core"));
53
54
  const AirweaveSDK = __importStar(require("../../../index"));
54
55
  const url_join_1 = __importDefault(require("url-join"));
55
56
  const serializers = __importStar(require("../../../../serialization/index"));
56
57
  const errors = __importStar(require("../../../../errors/index"));
57
58
  class Chat {
58
- constructor(_options) {
59
+ constructor(_options = {}) {
59
60
  this._options = _options;
60
61
  }
61
62
  /**
@@ -73,12 +74,13 @@ class Chat {
73
74
  */
74
75
  openaiKeySet(requestOptions) {
75
76
  return __awaiter(this, void 0, void 0, function* () {
77
+ var _a;
76
78
  const _response = yield core.fetcher({
77
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), "chat/openai_key_set"),
79
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, "chat/openai_key_set"),
78
80
  method: "GET",
79
81
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
80
82
  ? yield core.Supplier.get(this._options.apiKey)
81
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
83
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
82
84
  contentType: "application/json",
83
85
  requestType: "json",
84
86
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -137,6 +139,7 @@ class Chat {
137
139
  */
138
140
  listChats() {
139
141
  return __awaiter(this, arguments, void 0, function* (request = {}, requestOptions) {
142
+ var _a;
140
143
  const { skip, limit } = request;
141
144
  const _queryParams = {};
142
145
  if (skip != null) {
@@ -146,11 +149,11 @@ class Chat {
146
149
  _queryParams["limit"] = limit.toString();
147
150
  }
148
151
  const _response = yield core.fetcher({
149
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), "chat/"),
152
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, "chat/"),
150
153
  method: "GET",
151
154
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
152
155
  ? yield core.Supplier.get(this._options.apiKey)
153
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
156
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
154
157
  contentType: "application/json",
155
158
  queryParameters: _queryParams,
156
159
  requestType: "json",
@@ -213,12 +216,13 @@ class Chat {
213
216
  */
214
217
  createChat(request, requestOptions) {
215
218
  return __awaiter(this, void 0, void 0, function* () {
219
+ var _a;
216
220
  const _response = yield core.fetcher({
217
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), "chat/"),
221
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, "chat/"),
218
222
  method: "POST",
219
223
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
220
224
  ? yield core.Supplier.get(this._options.apiKey)
221
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
225
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
222
226
  contentType: "application/json",
223
227
  requestType: "json",
224
228
  body: serializers.ChatCreate.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -278,12 +282,13 @@ class Chat {
278
282
  */
279
283
  getChat(chatId, requestOptions) {
280
284
  return __awaiter(this, void 0, void 0, function* () {
285
+ var _a;
281
286
  const _response = yield core.fetcher({
282
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), `chat/${encodeURIComponent(chatId)}`),
287
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, `chat/${encodeURIComponent(chatId)}`),
283
288
  method: "GET",
284
289
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
285
290
  ? yield core.Supplier.get(this._options.apiKey)
286
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
291
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
287
292
  contentType: "application/json",
288
293
  requestType: "json",
289
294
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -343,12 +348,13 @@ class Chat {
343
348
  */
344
349
  updateChat(chatId_1) {
345
350
  return __awaiter(this, arguments, void 0, function* (chatId, request = {}, requestOptions) {
351
+ var _a;
346
352
  const _response = yield core.fetcher({
347
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), `chat/${encodeURIComponent(chatId)}`),
353
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, `chat/${encodeURIComponent(chatId)}`),
348
354
  method: "PUT",
349
355
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
350
356
  ? yield core.Supplier.get(this._options.apiKey)
351
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
357
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
352
358
  contentType: "application/json",
353
359
  requestType: "json",
354
360
  body: serializers.ChatUpdate.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -408,12 +414,13 @@ class Chat {
408
414
  */
409
415
  deleteChat(chatId, requestOptions) {
410
416
  return __awaiter(this, void 0, void 0, function* () {
417
+ var _a;
411
418
  const _response = yield core.fetcher({
412
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), `chat/${encodeURIComponent(chatId)}`),
419
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, `chat/${encodeURIComponent(chatId)}`),
413
420
  method: "DELETE",
414
421
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
415
422
  ? yield core.Supplier.get(this._options.apiKey)
416
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
423
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
417
424
  contentType: "application/json",
418
425
  requestType: "json",
419
426
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -470,12 +477,13 @@ class Chat {
470
477
  */
471
478
  sendMessage(chatId, request, requestOptions) {
472
479
  return __awaiter(this, void 0, void 0, function* () {
480
+ var _a;
473
481
  const _response = yield core.fetcher({
474
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), `chat/${encodeURIComponent(chatId)}/message`),
482
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, `chat/${encodeURIComponent(chatId)}/message`),
475
483
  method: "POST",
476
484
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
477
485
  ? yield core.Supplier.get(this._options.apiKey)
478
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
486
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
479
487
  contentType: "application/json",
480
488
  requestType: "json",
481
489
  body: serializers.ChatMessageCreate.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -535,12 +543,13 @@ class Chat {
535
543
  */
536
544
  streamChatResponse(chatId, requestOptions) {
537
545
  return __awaiter(this, void 0, void 0, function* () {
546
+ var _a;
538
547
  const _response = yield core.fetcher({
539
- url: (0, url_join_1.default)(yield core.Supplier.get(this._options.environment), `chat/${encodeURIComponent(chatId)}/stream`),
548
+ url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.AirweaveSDKEnvironment.Production, `chat/${encodeURIComponent(chatId)}/stream`),
540
549
  method: "GET",
541
550
  headers: Object.assign({ "x-api-key": (yield core.Supplier.get(this._options.apiKey)) != null
542
551
  ? yield core.Supplier.get(this._options.apiKey)
543
- : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.11", "User-Agent": "@airweave/sdk/0.1.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
552
+ : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airweave/sdk", "X-Fern-SDK-Version": "0.1.12", "User-Agent": "@airweave/sdk/0.1.12", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
544
553
  contentType: "application/json",
545
554
  requestType: "json",
546
555
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -1,11 +1,12 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
+ import * as environments from "../../../../environments";
4
5
  import * as core from "../../../../core";
5
6
  import * as AirweaveSDK from "../../../index";
6
7
  export declare namespace Connections {
7
8
  interface Options {
8
- environment: core.Supplier<string>;
9
+ environment?: core.Supplier<environments.AirweaveSDKEnvironment | string>;
9
10
  /** Override the x-api-key header */
10
11
  apiKey?: core.Supplier<string | undefined>;
11
12
  }
@@ -24,7 +25,7 @@ export declare namespace Connections {
24
25
  }
25
26
  export declare class Connections {
26
27
  protected readonly _options: Connections.Options;
27
- constructor(_options: Connections.Options);
28
+ constructor(_options?: Connections.Options);
28
29
  /**
29
30
  * Get a specific connection.
30
31
  *