honeyhive 1.0.19 → 1.0.21

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 (220) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/index.js +20 -0
  3. package/dist/internal/utils/contenttype.d.ts +1 -0
  4. package/dist/internal/utils/contenttype.js +33 -0
  5. package/dist/internal/utils/headers.d.ts +4 -0
  6. package/dist/internal/utils/headers.js +92 -0
  7. package/dist/internal/utils/index.d.ts +8 -0
  8. package/dist/internal/utils/index.js +27 -0
  9. package/dist/internal/utils/pathparams.d.ts +2 -0
  10. package/dist/internal/utils/pathparams.js +53 -0
  11. package/dist/internal/utils/queryparams.d.ts +2 -0
  12. package/dist/internal/utils/queryparams.js +182 -0
  13. package/dist/internal/utils/requestbody.d.ts +2 -0
  14. package/dist/internal/utils/requestbody.js +328 -0
  15. package/dist/internal/utils/retries.d.ts +20 -0
  16. package/dist/internal/utils/retries.js +250 -0
  17. package/dist/internal/utils/security.d.ts +5 -0
  18. package/dist/internal/utils/security.js +196 -0
  19. package/dist/internal/utils/utils.d.ts +37 -0
  20. package/dist/internal/utils/utils.js +368 -0
  21. package/dist/models/components/configuration.d.ts +44 -0
  22. package/dist/models/components/configuration.js +94 -0
  23. package/dist/models/components/createdatapointrequest.d.ts +31 -0
  24. package/dist/models/components/createdatapointrequest.js +75 -0
  25. package/dist/models/components/createdatasetrequest.d.ts +50 -0
  26. package/dist/models/components/createdatasetrequest.js +101 -0
  27. package/dist/models/components/createeventrequest.d.ts +87 -0
  28. package/dist/models/components/createeventrequest.js +144 -0
  29. package/dist/models/components/createmodelevent.d.ts +71 -0
  30. package/dist/models/components/createmodelevent.js +125 -0
  31. package/dist/models/components/createprojectrequest.d.ts +5 -0
  32. package/dist/models/components/createprojectrequest.js +50 -0
  33. package/dist/models/components/createrunrequest.d.ts +42 -0
  34. package/dist/models/components/createrunrequest.js +88 -0
  35. package/dist/models/components/createrunresponse.d.ts +6 -0
  36. package/dist/models/components/createrunresponse.js +52 -0
  37. package/dist/models/components/createtoolrequest.d.ts +18 -0
  38. package/dist/models/components/createtoolrequest.js +70 -0
  39. package/dist/models/components/datapoint.d.ts +41 -0
  40. package/dist/models/components/datapoint.js +118 -0
  41. package/dist/models/components/dataset.d.ts +58 -0
  42. package/dist/models/components/dataset.js +119 -0
  43. package/dist/models/components/datasetupdate.d.ts +27 -0
  44. package/dist/models/components/datasetupdate.js +70 -0
  45. package/dist/models/components/deleterunresponse.d.ts +5 -0
  46. package/dist/models/components/deleterunresponse.js +50 -0
  47. package/dist/models/components/evaluationrun.d.ts +50 -0
  48. package/dist/models/components/evaluationrun.js +116 -0
  49. package/dist/models/components/event.d.ts +88 -0
  50. package/dist/models/components/event.js +145 -0
  51. package/dist/models/components/eventfilter.d.ts +38 -0
  52. package/dist/models/components/eventfilter.js +81 -0
  53. package/dist/models/components/getrunresponse.d.ts +5 -0
  54. package/dist/models/components/getrunresponse.js +47 -0
  55. package/dist/models/components/getrunsresponse.d.ts +5 -0
  56. package/dist/models/components/getrunsresponse.js +47 -0
  57. package/dist/models/components/index.d.ts +31 -0
  58. package/dist/models/components/index.js +50 -0
  59. package/dist/models/components/metric.d.ts +86 -0
  60. package/dist/models/components/metric.js +155 -0
  61. package/dist/models/components/metricedit.d.ts +91 -0
  62. package/dist/models/components/metricedit.js +160 -0
  63. package/dist/models/components/postconfigurationrequest.d.ts +29 -0
  64. package/dist/models/components/postconfigurationrequest.js +76 -0
  65. package/dist/models/components/project.d.ts +6 -0
  66. package/dist/models/components/project.js +55 -0
  67. package/dist/models/components/putconfigurationrequest.d.ts +40 -0
  68. package/dist/models/components/putconfigurationrequest.js +89 -0
  69. package/dist/models/components/security.d.ts +4 -0
  70. package/dist/models/components/security.js +45 -0
  71. package/dist/models/components/sessionstartrequest.d.ts +67 -0
  72. package/dist/models/components/sessionstartrequest.js +120 -0
  73. package/dist/models/components/tool.d.ts +19 -0
  74. package/dist/models/components/tool.js +75 -0
  75. package/dist/models/components/updatedatapointrequest.d.ts +27 -0
  76. package/dist/models/components/updatedatapointrequest.js +70 -0
  77. package/dist/models/components/updateprojectrequest.d.ts +6 -0
  78. package/dist/models/components/updateprojectrequest.js +55 -0
  79. package/dist/models/components/updaterunrequest.d.ts +32 -0
  80. package/dist/models/components/updaterunrequest.js +80 -0
  81. package/dist/models/components/updaterunresponse.d.ts +11 -0
  82. package/dist/models/components/updaterunresponse.js +50 -0
  83. package/dist/models/components/updatetoolrequest.d.ts +7 -0
  84. package/dist/models/components/updatetoolrequest.js +60 -0
  85. package/dist/models/errors/createeventbatch.d.ts +14 -0
  86. package/dist/models/errors/createeventbatch.js +70 -0
  87. package/dist/models/errors/createmodeleventbatch.d.ts +14 -0
  88. package/dist/models/errors/createmodeleventbatch.js +70 -0
  89. package/dist/models/errors/index.d.ts +3 -0
  90. package/dist/models/errors/index.js +22 -0
  91. package/dist/models/errors/sdkerror.d.ts +7 -0
  92. package/dist/models/errors/sdkerror.js +40 -0
  93. package/dist/models/operations/adddatapoints.d.ts +68 -0
  94. package/dist/models/operations/adddatapoints.js +143 -0
  95. package/dist/models/operations/createconfiguration.d.ts +16 -0
  96. package/dist/models/operations/createconfiguration.js +51 -0
  97. package/dist/models/operations/createdatapoint.d.ts +29 -0
  98. package/dist/models/operations/createdatapoint.js +86 -0
  99. package/dist/models/operations/createdataset.d.ts +33 -0
  100. package/dist/models/operations/createdataset.js +91 -0
  101. package/dist/models/operations/createevent.d.ts +31 -0
  102. package/dist/models/operations/createevent.js +115 -0
  103. package/dist/models/operations/createeventbatch.d.ts +36 -0
  104. package/dist/models/operations/createeventbatch.js +125 -0
  105. package/dist/models/operations/createmetric.d.ts +16 -0
  106. package/dist/models/operations/createmetric.js +51 -0
  107. package/dist/models/operations/createmodelevent.d.ts +31 -0
  108. package/dist/models/operations/createmodelevent.js +115 -0
  109. package/dist/models/operations/createmodeleventbatch.d.ts +31 -0
  110. package/dist/models/operations/createmodeleventbatch.js +115 -0
  111. package/dist/models/operations/createproject.d.ts +21 -0
  112. package/dist/models/operations/createproject.js +79 -0
  113. package/dist/models/operations/createrun.d.ts +21 -0
  114. package/dist/models/operations/createrun.js +79 -0
  115. package/dist/models/operations/createtool.d.ts +29 -0
  116. package/dist/models/operations/createtool.js +86 -0
  117. package/dist/models/operations/deleteconfiguration.d.ts +22 -0
  118. package/dist/models/operations/deleteconfiguration.js +63 -0
  119. package/dist/models/operations/deletedatapoint.d.ts +32 -0
  120. package/dist/models/operations/deletedatapoint.js +84 -0
  121. package/dist/models/operations/deletedataset.d.ts +22 -0
  122. package/dist/models/operations/deletedataset.js +63 -0
  123. package/dist/models/operations/deletemetric.d.ts +19 -0
  124. package/dist/models/operations/deletemetric.js +63 -0
  125. package/dist/models/operations/deleteproject.d.ts +19 -0
  126. package/dist/models/operations/deleteproject.js +63 -0
  127. package/dist/models/operations/deleterun.d.ts +24 -0
  128. package/dist/models/operations/deleterun.js +91 -0
  129. package/dist/models/operations/deletetool.d.ts +19 -0
  130. package/dist/models/operations/deletetool.js +63 -0
  131. package/dist/models/operations/getconfigurations.d.ts +43 -0
  132. package/dist/models/operations/getconfigurations.js +108 -0
  133. package/dist/models/operations/getdatapoint.d.ts +33 -0
  134. package/dist/models/operations/getdatapoint.js +109 -0
  135. package/dist/models/operations/getdatapoints.d.ts +41 -0
  136. package/dist/models/operations/getdatapoints.js +117 -0
  137. package/dist/models/operations/getdatasets.d.ts +48 -0
  138. package/dist/models/operations/getdatasets.js +125 -0
  139. package/dist/models/operations/getevents.d.ts +57 -0
  140. package/dist/models/operations/getevents.js +155 -0
  141. package/dist/models/operations/getmetrics.d.ts +27 -0
  142. package/dist/models/operations/getmetrics.js +91 -0
  143. package/dist/models/operations/getprojects.d.ts +24 -0
  144. package/dist/models/operations/getprojects.js +91 -0
  145. package/dist/models/operations/getrun.d.ts +24 -0
  146. package/dist/models/operations/getrun.js +91 -0
  147. package/dist/models/operations/getruns.d.ts +24 -0
  148. package/dist/models/operations/getruns.js +91 -0
  149. package/dist/models/operations/getsession.d.ts +24 -0
  150. package/dist/models/operations/getsession.js +91 -0
  151. package/dist/models/operations/gettools.d.ts +21 -0
  152. package/dist/models/operations/gettools.js +79 -0
  153. package/dist/models/operations/index.d.ts +39 -0
  154. package/dist/models/operations/index.js +58 -0
  155. package/dist/models/operations/startsession.d.ts +30 -0
  156. package/dist/models/operations/startsession.js +110 -0
  157. package/dist/models/operations/updateconfiguration.d.ts +24 -0
  158. package/dist/models/operations/updateconfiguration.js +91 -0
  159. package/dist/models/operations/updatedatapoint.d.ts +24 -0
  160. package/dist/models/operations/updatedatapoint.js +91 -0
  161. package/dist/models/operations/updatedataset.d.ts +16 -0
  162. package/dist/models/operations/updatedataset.js +51 -0
  163. package/dist/models/operations/updateevent.d.ts +26 -0
  164. package/dist/models/operations/updateevent.js +100 -0
  165. package/dist/models/operations/updatemetric.d.ts +16 -0
  166. package/dist/models/operations/updatemetric.js +51 -0
  167. package/dist/models/operations/updateproject.d.ts +16 -0
  168. package/dist/models/operations/updateproject.js +51 -0
  169. package/dist/models/operations/updaterun.d.ts +25 -0
  170. package/dist/models/operations/updaterun.js +95 -0
  171. package/dist/models/operations/updatetool.d.ts +16 -0
  172. package/dist/models/operations/updatetool.js +51 -0
  173. package/dist/sdk/configurations.d.ts +24 -0
  174. package/dist/sdk/configurations.js +356 -0
  175. package/dist/sdk/datapoints.d.ts +28 -0
  176. package/dist/sdk/datapoints.js +430 -0
  177. package/dist/sdk/datasets.d.ts +28 -0
  178. package/dist/sdk/datasets.js +435 -0
  179. package/dist/sdk/events.d.ts +43 -0
  180. package/dist/sdk/events.js +567 -0
  181. package/dist/sdk/index.d.ts +2 -0
  182. package/dist/sdk/index.js +21 -0
  183. package/dist/sdk/metrics.d.ts +36 -0
  184. package/dist/sdk/metrics.js +366 -0
  185. package/dist/sdk/projects.d.ts +24 -0
  186. package/dist/sdk/projects.js +361 -0
  187. package/dist/sdk/runs.d.ts +28 -0
  188. package/dist/sdk/runs.js +439 -0
  189. package/dist/sdk/sdk.d.ts +64 -0
  190. package/dist/sdk/sdk.js +90 -0
  191. package/dist/sdk/session.d.ts +15 -0
  192. package/dist/sdk/session.js +237 -0
  193. package/dist/sdk/telemetry.d.ts +21 -0
  194. package/dist/sdk/telemetry.js +243 -0
  195. package/dist/sdk/tools.d.ts +24 -0
  196. package/dist/sdk/tools.js +357 -0
  197. package/dist/sdk/tracer.d.ts +26 -0
  198. package/dist/sdk/tracer.js +308 -0
  199. package/dist/types/index.d.ts +1 -0
  200. package/dist/types/index.js +20 -0
  201. package/dist/types/rfcdate.d.ts +9 -0
  202. package/dist/types/rfcdate.js +59 -0
  203. package/funcs/runsCreateRun.d.ts.map +1 -1
  204. package/funcs/runsCreateRun.js +2 -1
  205. package/funcs/runsCreateRun.js.map +1 -1
  206. package/funcs/runsUpdateRun.d.ts +1 -1
  207. package/funcs/runsUpdateRun.d.ts.map +1 -1
  208. package/funcs/runsUpdateRun.js +2 -2
  209. package/funcs/runsUpdateRun.js.map +1 -1
  210. package/package.json +4 -3
  211. package/sdk/evaluation.d.ts +7 -1
  212. package/sdk/evaluation.d.ts.map +1 -1
  213. package/sdk/evaluation.js +52 -5
  214. package/sdk/evaluation.js.map +1 -1
  215. package/sdk/runs.d.ts +1 -1
  216. package/sdk/runs.d.ts.map +1 -1
  217. package/sdk/runs.js +2 -2
  218. package/sdk/runs.js.map +1 -1
  219. package/src/sdk/evaluation.ts +38 -8
  220. package/tests/openai_test.ts +72 -0
@@ -0,0 +1,95 @@
1
+ "use strict";
2
+ /*
3
+ * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
4
+ */
5
+ var __extends = (this && this.__extends) || (function () {
6
+ var extendStatics = function (d, b) {
7
+ extendStatics = Object.setPrototypeOf ||
8
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
9
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
10
+ return extendStatics(d, b);
11
+ };
12
+ return function (d, b) {
13
+ if (typeof b !== "function" && b !== null)
14
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
15
+ extendStatics(d, b);
16
+ function __() { this.constructor = d; }
17
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
18
+ };
19
+ })();
20
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ var desc = Object.getOwnPropertyDescriptor(m, k);
23
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
24
+ desc = { enumerable: true, get: function() { return m[k]; } };
25
+ }
26
+ Object.defineProperty(o, k2, desc);
27
+ }) : (function(o, m, k, k2) {
28
+ if (k2 === undefined) k2 = k;
29
+ o[k2] = m[k];
30
+ }));
31
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
32
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
33
+ }) : function(o, v) {
34
+ o["default"] = v;
35
+ });
36
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
37
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
38
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
39
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
40
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
41
+ };
42
+ var __importStar = (this && this.__importStar) || function (mod) {
43
+ if (mod && mod.__esModule) return mod;
44
+ var result = {};
45
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
46
+ __setModuleDefault(result, mod);
47
+ return result;
48
+ };
49
+ var __metadata = (this && this.__metadata) || function (k, v) {
50
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
51
+ };
52
+ Object.defineProperty(exports, "__esModule", { value: true });
53
+ exports.UpdateRunResponse = exports.UpdateRunRequest = void 0;
54
+ var utils_1 = require("../../internal/utils");
55
+ var components = __importStar(require("../../models/components"));
56
+ var UpdateRunRequest = /** @class */ (function (_super) {
57
+ __extends(UpdateRunRequest, _super);
58
+ function UpdateRunRequest() {
59
+ return _super !== null && _super.apply(this, arguments) || this;
60
+ }
61
+ __decorate([
62
+ (0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=run_id" }),
63
+ __metadata("design:type", String)
64
+ ], UpdateRunRequest.prototype, "runId", void 0);
65
+ __decorate([
66
+ (0, utils_1.SpeakeasyMetadata)({ data: "request, media_type=application/json" }),
67
+ __metadata("design:type", components.UpdateRunRequest)
68
+ ], UpdateRunRequest.prototype, "updateRunRequest", void 0);
69
+ return UpdateRunRequest;
70
+ }(utils_1.SpeakeasyBase));
71
+ exports.UpdateRunRequest = UpdateRunRequest;
72
+ var UpdateRunResponse = /** @class */ (function (_super) {
73
+ __extends(UpdateRunResponse, _super);
74
+ function UpdateRunResponse() {
75
+ return _super !== null && _super.apply(this, arguments) || this;
76
+ }
77
+ __decorate([
78
+ (0, utils_1.SpeakeasyMetadata)(),
79
+ __metadata("design:type", String)
80
+ ], UpdateRunResponse.prototype, "contentType", void 0);
81
+ __decorate([
82
+ (0, utils_1.SpeakeasyMetadata)(),
83
+ __metadata("design:type", Number)
84
+ ], UpdateRunResponse.prototype, "statusCode", void 0);
85
+ __decorate([
86
+ (0, utils_1.SpeakeasyMetadata)(),
87
+ __metadata("design:type", Object)
88
+ ], UpdateRunResponse.prototype, "rawResponse", void 0);
89
+ __decorate([
90
+ (0, utils_1.SpeakeasyMetadata)(),
91
+ __metadata("design:type", components.UpdateRunResponse)
92
+ ], UpdateRunResponse.prototype, "updateRunResponse", void 0);
93
+ return UpdateRunResponse;
94
+ }(utils_1.SpeakeasyBase));
95
+ exports.UpdateRunResponse = UpdateRunResponse;
@@ -0,0 +1,16 @@
1
+ import { SpeakeasyBase } from "../../internal/utils";
2
+ import { AxiosResponse } from "axios";
3
+ export declare class UpdateToolResponse extends SpeakeasyBase {
4
+ /**
5
+ * HTTP response content type for this operation
6
+ */
7
+ contentType: string;
8
+ /**
9
+ * HTTP response status code for this operation
10
+ */
11
+ statusCode: number;
12
+ /**
13
+ * Raw HTTP response; suitable for custom response parsing
14
+ */
15
+ rawResponse: AxiosResponse;
16
+ }
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ /*
3
+ * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
4
+ */
5
+ var __extends = (this && this.__extends) || (function () {
6
+ var extendStatics = function (d, b) {
7
+ extendStatics = Object.setPrototypeOf ||
8
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
9
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
10
+ return extendStatics(d, b);
11
+ };
12
+ return function (d, b) {
13
+ if (typeof b !== "function" && b !== null)
14
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
15
+ extendStatics(d, b);
16
+ function __() { this.constructor = d; }
17
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
18
+ };
19
+ })();
20
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
21
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
22
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
23
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
24
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
25
+ };
26
+ var __metadata = (this && this.__metadata) || function (k, v) {
27
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
28
+ };
29
+ Object.defineProperty(exports, "__esModule", { value: true });
30
+ exports.UpdateToolResponse = void 0;
31
+ var utils_1 = require("../../internal/utils");
32
+ var UpdateToolResponse = /** @class */ (function (_super) {
33
+ __extends(UpdateToolResponse, _super);
34
+ function UpdateToolResponse() {
35
+ return _super !== null && _super.apply(this, arguments) || this;
36
+ }
37
+ __decorate([
38
+ (0, utils_1.SpeakeasyMetadata)(),
39
+ __metadata("design:type", String)
40
+ ], UpdateToolResponse.prototype, "contentType", void 0);
41
+ __decorate([
42
+ (0, utils_1.SpeakeasyMetadata)(),
43
+ __metadata("design:type", Number)
44
+ ], UpdateToolResponse.prototype, "statusCode", void 0);
45
+ __decorate([
46
+ (0, utils_1.SpeakeasyMetadata)(),
47
+ __metadata("design:type", Object)
48
+ ], UpdateToolResponse.prototype, "rawResponse", void 0);
49
+ return UpdateToolResponse;
50
+ }(utils_1.SpeakeasyBase));
51
+ exports.UpdateToolResponse = UpdateToolResponse;
@@ -0,0 +1,24 @@
1
+ import * as components from "../models/components";
2
+ import * as operations from "../models/operations";
3
+ import { SDKConfiguration } from "./sdk";
4
+ import { AxiosRequestConfig } from "axios";
5
+ export declare class Configurations {
6
+ private sdkConfiguration;
7
+ constructor(sdkConfig: SDKConfiguration);
8
+ /**
9
+ * Retrieve a list of configurations
10
+ */
11
+ getConfigurations(project: string, env?: operations.Env, name?: string, config?: AxiosRequestConfig): Promise<operations.GetConfigurationsResponse>;
12
+ /**
13
+ * Create a new configuration
14
+ */
15
+ createConfiguration(req: components.PostConfigurationRequest, config?: AxiosRequestConfig): Promise<operations.CreateConfigurationResponse>;
16
+ /**
17
+ * Update an existing configuration
18
+ */
19
+ updateConfiguration(id: string, putConfigurationRequest: components.PutConfigurationRequest, config?: AxiosRequestConfig): Promise<operations.UpdateConfigurationResponse>;
20
+ /**
21
+ * Delete a configuration
22
+ */
23
+ deleteConfiguration(id: string, config?: AxiosRequestConfig): Promise<operations.DeleteConfigurationResponse>;
24
+ }
@@ -0,0 +1,356 @@
1
+ "use strict";
2
+ /*
3
+ * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
4
+ */
5
+ var __assign = (this && this.__assign) || function () {
6
+ __assign = Object.assign || function(t) {
7
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
8
+ s = arguments[i];
9
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
10
+ t[p] = s[p];
11
+ }
12
+ return t;
13
+ };
14
+ return __assign.apply(this, arguments);
15
+ };
16
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
17
+ if (k2 === undefined) k2 = k;
18
+ var desc = Object.getOwnPropertyDescriptor(m, k);
19
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
20
+ desc = { enumerable: true, get: function() { return m[k]; } };
21
+ }
22
+ Object.defineProperty(o, k2, desc);
23
+ }) : (function(o, m, k, k2) {
24
+ if (k2 === undefined) k2 = k;
25
+ o[k2] = m[k];
26
+ }));
27
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
28
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
29
+ }) : function(o, v) {
30
+ o["default"] = v;
31
+ });
32
+ var __importStar = (this && this.__importStar) || function (mod) {
33
+ if (mod && mod.__esModule) return mod;
34
+ var result = {};
35
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
36
+ __setModuleDefault(result, mod);
37
+ return result;
38
+ };
39
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
40
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
41
+ return new (P || (P = Promise))(function (resolve, reject) {
42
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
43
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
44
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
45
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
46
+ });
47
+ };
48
+ var __generator = (this && this.__generator) || function (thisArg, body) {
49
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
50
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
51
+ function verb(n) { return function (v) { return step([n, v]); }; }
52
+ function step(op) {
53
+ if (f) throw new TypeError("Generator is already executing.");
54
+ while (g && (g = 0, op[0] && (_ = 0)), _) try {
55
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
56
+ if (y = 0, t) op = [op[0] & 2, t.value];
57
+ switch (op[0]) {
58
+ case 0: case 1: t = op; break;
59
+ case 4: _.label++; return { value: op[1], done: false };
60
+ case 5: _.label++; y = op[1]; op = [0]; continue;
61
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
62
+ default:
63
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
64
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
65
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
66
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
67
+ if (t[2]) _.ops.pop();
68
+ _.trys.pop(); continue;
69
+ }
70
+ op = body.call(thisArg, _);
71
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
72
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
73
+ }
74
+ };
75
+ var __read = (this && this.__read) || function (o, n) {
76
+ var m = typeof Symbol === "function" && o[Symbol.iterator];
77
+ if (!m) return o;
78
+ var i = m.call(o), r, ar = [], e;
79
+ try {
80
+ while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
81
+ }
82
+ catch (error) { e = { error: error }; }
83
+ finally {
84
+ try {
85
+ if (r && !r.done && (m = i["return"])) m.call(i);
86
+ }
87
+ finally { if (e) throw e.error; }
88
+ }
89
+ return ar;
90
+ };
91
+ Object.defineProperty(exports, "__esModule", { value: true });
92
+ exports.Configurations = void 0;
93
+ var utils = __importStar(require("../internal/utils"));
94
+ var components = __importStar(require("../models/components"));
95
+ var errors = __importStar(require("../models/errors"));
96
+ var operations = __importStar(require("../models/operations"));
97
+ var Configurations = /** @class */ (function () {
98
+ function Configurations(sdkConfig) {
99
+ this.sdkConfiguration = sdkConfig;
100
+ }
101
+ /**
102
+ * Retrieve a list of configurations
103
+ */
104
+ Configurations.prototype.getConfigurations = function (project, env, name, config) {
105
+ var _a, _b;
106
+ return __awaiter(this, void 0, void 0, function () {
107
+ var req, baseURL, operationUrl, client, globalSecurity, properties, headers, queryParams, httpRes, responseContentType, res, decodedRes, resFieldDepth;
108
+ return __generator(this, function (_c) {
109
+ switch (_c.label) {
110
+ case 0:
111
+ req = new operations.GetConfigurationsRequest({
112
+ project: project,
113
+ env: env,
114
+ name: name,
115
+ });
116
+ baseURL = utils.templateUrl(this.sdkConfiguration.serverURL, this.sdkConfiguration.serverDefaults);
117
+ operationUrl = baseURL.replace(/\/$/, "") + "/configurations";
118
+ client = this.sdkConfiguration.defaultClient;
119
+ globalSecurity = this.sdkConfiguration.security;
120
+ if (!(typeof globalSecurity === "function")) return [3 /*break*/, 2];
121
+ return [4 /*yield*/, globalSecurity()];
122
+ case 1:
123
+ globalSecurity = _c.sent();
124
+ _c.label = 2;
125
+ case 2:
126
+ if (!(globalSecurity instanceof utils.SpeakeasyBase)) {
127
+ globalSecurity = new components.Security(globalSecurity);
128
+ }
129
+ properties = utils.parseSecurityProperties(globalSecurity);
130
+ headers = __assign(__assign({}, config === null || config === void 0 ? void 0 : config.headers), properties.headers);
131
+ queryParams = utils.serializeQueryParams(req);
132
+ headers["Accept"] = "application/json";
133
+ headers["user-agent"] = this.sdkConfiguration.userAgent;
134
+ return [4 /*yield*/, client.request(__assign({ validateStatus: function () { return true; }, url: operationUrl + queryParams, method: "get", headers: headers, responseType: "arraybuffer" }, config))];
135
+ case 3:
136
+ httpRes = _c.sent();
137
+ responseContentType = (_b = (_a = httpRes === null || httpRes === void 0 ? void 0 : httpRes.headers) === null || _a === void 0 ? void 0 : _a["content-type"]) !== null && _b !== void 0 ? _b : "";
138
+ if ((httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) == null) {
139
+ throw new Error("status code not found in response: ".concat(httpRes));
140
+ }
141
+ res = new operations.GetConfigurationsResponse({
142
+ statusCode: httpRes.status,
143
+ contentType: responseContentType,
144
+ rawResponse: httpRes,
145
+ });
146
+ decodedRes = new TextDecoder().decode(httpRes === null || httpRes === void 0 ? void 0 : httpRes.data);
147
+ switch (true) {
148
+ case (httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) == 200:
149
+ if (utils.matchContentType(responseContentType, "application/json")) {
150
+ res.configurations = [];
151
+ resFieldDepth = utils.getResFieldDepth(res);
152
+ res.configurations = utils.objectToClass(JSON.parse(decodedRes), components.Configuration, resFieldDepth);
153
+ }
154
+ else {
155
+ throw new errors.SDKError("unknown content-type received: " + responseContentType, httpRes.status, decodedRes, httpRes);
156
+ }
157
+ break;
158
+ case ((httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) >= 400 && (httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) < 500) ||
159
+ ((httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) >= 500 && (httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) < 600):
160
+ throw new errors.SDKError("API error occurred", httpRes.status, decodedRes, httpRes);
161
+ }
162
+ return [2 /*return*/, res];
163
+ }
164
+ });
165
+ });
166
+ };
167
+ /**
168
+ * Create a new configuration
169
+ */
170
+ Configurations.prototype.createConfiguration = function (req, config) {
171
+ var _a, _b;
172
+ return __awaiter(this, void 0, void 0, function () {
173
+ var baseURL, operationUrl, _c, reqBodyHeaders, reqBody, client, globalSecurity, properties, headers, httpRes, responseContentType, res;
174
+ var _d;
175
+ return __generator(this, function (_e) {
176
+ switch (_e.label) {
177
+ case 0:
178
+ if (!(req instanceof utils.SpeakeasyBase)) {
179
+ req = new components.PostConfigurationRequest(req);
180
+ }
181
+ baseURL = utils.templateUrl(this.sdkConfiguration.serverURL, this.sdkConfiguration.serverDefaults);
182
+ operationUrl = baseURL.replace(/\/$/, "") + "/configurations";
183
+ _c = __read([{}, null], 2), reqBodyHeaders = _c[0], reqBody = _c[1];
184
+ try {
185
+ _d = __read(utils.serializeRequestBody(req, "request", "json"), 2), reqBodyHeaders = _d[0], reqBody = _d[1];
186
+ }
187
+ catch (e) {
188
+ if (e instanceof Error) {
189
+ throw new Error("Error serializing request body, cause: ".concat(e.message));
190
+ }
191
+ }
192
+ client = this.sdkConfiguration.defaultClient;
193
+ globalSecurity = this.sdkConfiguration.security;
194
+ if (!(typeof globalSecurity === "function")) return [3 /*break*/, 2];
195
+ return [4 /*yield*/, globalSecurity()];
196
+ case 1:
197
+ globalSecurity = _e.sent();
198
+ _e.label = 2;
199
+ case 2:
200
+ if (!(globalSecurity instanceof utils.SpeakeasyBase)) {
201
+ globalSecurity = new components.Security(globalSecurity);
202
+ }
203
+ properties = utils.parseSecurityProperties(globalSecurity);
204
+ headers = __assign(__assign(__assign({}, reqBodyHeaders), config === null || config === void 0 ? void 0 : config.headers), properties.headers);
205
+ if (reqBody == null)
206
+ throw new Error("request body is required");
207
+ headers["Accept"] = "*/*";
208
+ headers["user-agent"] = this.sdkConfiguration.userAgent;
209
+ return [4 /*yield*/, client.request(__assign({ validateStatus: function () { return true; }, url: operationUrl, method: "post", headers: headers, responseType: "arraybuffer", data: reqBody }, config))];
210
+ case 3:
211
+ httpRes = _e.sent();
212
+ responseContentType = (_b = (_a = httpRes === null || httpRes === void 0 ? void 0 : httpRes.headers) === null || _a === void 0 ? void 0 : _a["content-type"]) !== null && _b !== void 0 ? _b : "";
213
+ if ((httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) == null) {
214
+ throw new Error("status code not found in response: ".concat(httpRes));
215
+ }
216
+ res = new operations.CreateConfigurationResponse({
217
+ statusCode: httpRes.status,
218
+ contentType: responseContentType,
219
+ rawResponse: httpRes,
220
+ });
221
+ switch (true) {
222
+ case (httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) == 200:
223
+ break;
224
+ case ((httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) >= 400 && (httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) < 500) ||
225
+ ((httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) >= 500 && (httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) < 600):
226
+ throw new errors.SDKError("API error occurred", httpRes.status, httpRes === null || httpRes === void 0 ? void 0 : httpRes.data, httpRes);
227
+ }
228
+ return [2 /*return*/, res];
229
+ }
230
+ });
231
+ });
232
+ };
233
+ /**
234
+ * Update an existing configuration
235
+ */
236
+ Configurations.prototype.updateConfiguration = function (id, putConfigurationRequest, config) {
237
+ var _a, _b;
238
+ return __awaiter(this, void 0, void 0, function () {
239
+ var req, baseURL, operationUrl, _c, reqBodyHeaders, reqBody, client, globalSecurity, properties, headers, httpRes, responseContentType, res;
240
+ var _d;
241
+ return __generator(this, function (_e) {
242
+ switch (_e.label) {
243
+ case 0:
244
+ req = new operations.UpdateConfigurationRequest({
245
+ id: id,
246
+ putConfigurationRequest: putConfigurationRequest,
247
+ });
248
+ baseURL = utils.templateUrl(this.sdkConfiguration.serverURL, this.sdkConfiguration.serverDefaults);
249
+ operationUrl = utils.generateURL(baseURL, "/configurations/{id}", req);
250
+ _c = __read([{}, null], 2), reqBodyHeaders = _c[0], reqBody = _c[1];
251
+ try {
252
+ _d = __read(utils.serializeRequestBody(req, "putConfigurationRequest", "json"), 2), reqBodyHeaders = _d[0], reqBody = _d[1];
253
+ }
254
+ catch (e) {
255
+ if (e instanceof Error) {
256
+ throw new Error("Error serializing request body, cause: ".concat(e.message));
257
+ }
258
+ }
259
+ client = this.sdkConfiguration.defaultClient;
260
+ globalSecurity = this.sdkConfiguration.security;
261
+ if (!(typeof globalSecurity === "function")) return [3 /*break*/, 2];
262
+ return [4 /*yield*/, globalSecurity()];
263
+ case 1:
264
+ globalSecurity = _e.sent();
265
+ _e.label = 2;
266
+ case 2:
267
+ if (!(globalSecurity instanceof utils.SpeakeasyBase)) {
268
+ globalSecurity = new components.Security(globalSecurity);
269
+ }
270
+ properties = utils.parseSecurityProperties(globalSecurity);
271
+ headers = __assign(__assign(__assign({}, reqBodyHeaders), config === null || config === void 0 ? void 0 : config.headers), properties.headers);
272
+ if (reqBody == null)
273
+ throw new Error("request body is required");
274
+ headers["Accept"] = "*/*";
275
+ headers["user-agent"] = this.sdkConfiguration.userAgent;
276
+ return [4 /*yield*/, client.request(__assign({ validateStatus: function () { return true; }, url: operationUrl, method: "put", headers: headers, responseType: "arraybuffer", data: reqBody }, config))];
277
+ case 3:
278
+ httpRes = _e.sent();
279
+ responseContentType = (_b = (_a = httpRes === null || httpRes === void 0 ? void 0 : httpRes.headers) === null || _a === void 0 ? void 0 : _a["content-type"]) !== null && _b !== void 0 ? _b : "";
280
+ if ((httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) == null) {
281
+ throw new Error("status code not found in response: ".concat(httpRes));
282
+ }
283
+ res = new operations.UpdateConfigurationResponse({
284
+ statusCode: httpRes.status,
285
+ contentType: responseContentType,
286
+ rawResponse: httpRes,
287
+ });
288
+ switch (true) {
289
+ case (httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) == 200:
290
+ break;
291
+ case ((httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) >= 400 && (httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) < 500) ||
292
+ ((httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) >= 500 && (httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) < 600):
293
+ throw new errors.SDKError("API error occurred", httpRes.status, httpRes === null || httpRes === void 0 ? void 0 : httpRes.data, httpRes);
294
+ }
295
+ return [2 /*return*/, res];
296
+ }
297
+ });
298
+ });
299
+ };
300
+ /**
301
+ * Delete a configuration
302
+ */
303
+ Configurations.prototype.deleteConfiguration = function (id, config) {
304
+ var _a, _b;
305
+ return __awaiter(this, void 0, void 0, function () {
306
+ var req, baseURL, operationUrl, client, globalSecurity, properties, headers, httpRes, responseContentType, res;
307
+ return __generator(this, function (_c) {
308
+ switch (_c.label) {
309
+ case 0:
310
+ req = new operations.DeleteConfigurationRequest({
311
+ id: id,
312
+ });
313
+ baseURL = utils.templateUrl(this.sdkConfiguration.serverURL, this.sdkConfiguration.serverDefaults);
314
+ operationUrl = utils.generateURL(baseURL, "/configurations/{id}", req);
315
+ client = this.sdkConfiguration.defaultClient;
316
+ globalSecurity = this.sdkConfiguration.security;
317
+ if (!(typeof globalSecurity === "function")) return [3 /*break*/, 2];
318
+ return [4 /*yield*/, globalSecurity()];
319
+ case 1:
320
+ globalSecurity = _c.sent();
321
+ _c.label = 2;
322
+ case 2:
323
+ if (!(globalSecurity instanceof utils.SpeakeasyBase)) {
324
+ globalSecurity = new components.Security(globalSecurity);
325
+ }
326
+ properties = utils.parseSecurityProperties(globalSecurity);
327
+ headers = __assign(__assign({}, config === null || config === void 0 ? void 0 : config.headers), properties.headers);
328
+ headers["Accept"] = "*/*";
329
+ headers["user-agent"] = this.sdkConfiguration.userAgent;
330
+ return [4 /*yield*/, client.request(__assign({ validateStatus: function () { return true; }, url: operationUrl, method: "delete", headers: headers, responseType: "arraybuffer" }, config))];
331
+ case 3:
332
+ httpRes = _c.sent();
333
+ responseContentType = (_b = (_a = httpRes === null || httpRes === void 0 ? void 0 : httpRes.headers) === null || _a === void 0 ? void 0 : _a["content-type"]) !== null && _b !== void 0 ? _b : "";
334
+ if ((httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) == null) {
335
+ throw new Error("status code not found in response: ".concat(httpRes));
336
+ }
337
+ res = new operations.DeleteConfigurationResponse({
338
+ statusCode: httpRes.status,
339
+ contentType: responseContentType,
340
+ rawResponse: httpRes,
341
+ });
342
+ switch (true) {
343
+ case (httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) == 200:
344
+ break;
345
+ case ((httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) >= 400 && (httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) < 500) ||
346
+ ((httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) >= 500 && (httpRes === null || httpRes === void 0 ? void 0 : httpRes.status) < 600):
347
+ throw new errors.SDKError("API error occurred", httpRes.status, httpRes === null || httpRes === void 0 ? void 0 : httpRes.data, httpRes);
348
+ }
349
+ return [2 /*return*/, res];
350
+ }
351
+ });
352
+ });
353
+ };
354
+ return Configurations;
355
+ }());
356
+ exports.Configurations = Configurations;
@@ -0,0 +1,28 @@
1
+ import * as components from "../models/components";
2
+ import * as operations from "../models/operations";
3
+ import { SDKConfiguration } from "./sdk";
4
+ import { AxiosRequestConfig } from "axios";
5
+ export declare class Datapoints {
6
+ private sdkConfiguration;
7
+ constructor(sdkConfig: SDKConfiguration);
8
+ /**
9
+ * Retrieve a list of datapoints
10
+ */
11
+ getDatapoints(project: string, datapointIds?: string[], datasetName?: string, config?: AxiosRequestConfig): Promise<operations.GetDatapointsResponse>;
12
+ /**
13
+ * Create a new datapoint
14
+ */
15
+ createDatapoint(req: components.CreateDatapointRequest, config?: AxiosRequestConfig): Promise<operations.CreateDatapointResponse>;
16
+ /**
17
+ * Retrieve a specific datapoint
18
+ */
19
+ getDatapoint(id: string, config?: AxiosRequestConfig): Promise<operations.GetDatapointResponse>;
20
+ /**
21
+ * Update a specific datapoint
22
+ */
23
+ updateDatapoint(id: string, updateDatapointRequest: components.UpdateDatapointRequest, config?: AxiosRequestConfig): Promise<operations.UpdateDatapointResponse>;
24
+ /**
25
+ * Delete a specific datapoint
26
+ */
27
+ deleteDatapoint(id: string, config?: AxiosRequestConfig): Promise<operations.DeleteDatapointResponse>;
28
+ }