@ourskyai/sda-api 1.3.2765 → 1.3.2816

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/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.2765
7
+ * The version of the OpenAPI document: 1.3.2816
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -631,6 +631,40 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
631
631
  options: localVarRequestOptions,
632
632
  };
633
633
  }),
634
+ /**
635
+ * Get observation features.
636
+ * @param {string} imageId
637
+ * @param {*} [options] Override http request option.
638
+ * @throws {RequiredError}
639
+ */
640
+ v1GetObservationFeatures: (imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
641
+ // verify required parameter 'imageId' is not null or undefined
642
+ assertParamExists('v1GetObservationFeatures', 'imageId', imageId);
643
+ const localVarPath = `/v1/observation-features`;
644
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
645
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
646
+ let baseOptions;
647
+ if (configuration) {
648
+ baseOptions = configuration.baseOptions;
649
+ }
650
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
651
+ const localVarHeaderParameter = {};
652
+ const localVarQueryParameter = {};
653
+ // authentication Roles required
654
+ // authentication BearerToken required
655
+ // http bearer authentication required
656
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
657
+ if (imageId !== undefined) {
658
+ localVarQueryParameter['imageId'] = imageId;
659
+ }
660
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
661
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
662
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
663
+ return {
664
+ url: toPathString(localVarUrlObj),
665
+ options: localVarRequestOptions,
666
+ };
667
+ }),
634
668
  /**
635
669
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
636
670
  * @param {string} [targetId]
@@ -669,6 +703,48 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
669
703
  options: localVarRequestOptions,
670
704
  };
671
705
  }),
706
+ /**
707
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId` or by a specific `searchInstructionId`. By default `before` is set to the current time and returns 20 results with `observationTime` less than `before`. To paginate through responses, pass the earliest timestamp in the previous response as the `before` parameter. When searching by `searchInstructionId`, a `before` timestamp is not required.
708
+ * @param {string} [targetId]
709
+ * @param {string} [before]
710
+ * @param {string} [searchInstructionId]
711
+ * @param {*} [options] Override http request option.
712
+ * @throws {RequiredError}
713
+ */
714
+ v1GetObservationStatuses: (targetId, before, searchInstructionId, options = {}) => __awaiter(this, void 0, void 0, function* () {
715
+ const localVarPath = `/v1/observation-statuses`;
716
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
717
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
718
+ let baseOptions;
719
+ if (configuration) {
720
+ baseOptions = configuration.baseOptions;
721
+ }
722
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
723
+ const localVarHeaderParameter = {};
724
+ const localVarQueryParameter = {};
725
+ // authentication Roles required
726
+ // authentication BearerToken required
727
+ // http bearer authentication required
728
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
729
+ if (targetId !== undefined) {
730
+ localVarQueryParameter['targetId'] = targetId;
731
+ }
732
+ if (before !== undefined) {
733
+ localVarQueryParameter['before'] = (before instanceof Date) ?
734
+ before.toISOString() :
735
+ before;
736
+ }
737
+ if (searchInstructionId !== undefined) {
738
+ localVarQueryParameter['searchInstructionId'] = searchInstructionId;
739
+ }
740
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
741
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
742
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
743
+ return {
744
+ url: toPathString(localVarUrlObj),
745
+ options: localVarRequestOptions,
746
+ };
747
+ }),
672
748
  /**
673
749
  * Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
674
750
  * @param {*} [options] Override http request option.
@@ -1129,6 +1205,18 @@ export const DefaultApiFp = function (configuration) {
1129
1205
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1130
1206
  });
1131
1207
  },
1208
+ /**
1209
+ * Get observation features.
1210
+ * @param {string} imageId
1211
+ * @param {*} [options] Override http request option.
1212
+ * @throws {RequiredError}
1213
+ */
1214
+ v1GetObservationFeatures(imageId, options) {
1215
+ return __awaiter(this, void 0, void 0, function* () {
1216
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetObservationFeatures(imageId, options);
1217
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1218
+ });
1219
+ },
1132
1220
  /**
1133
1221
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
1134
1222
  * @param {string} [targetId]
@@ -1142,6 +1230,20 @@ export const DefaultApiFp = function (configuration) {
1142
1230
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1143
1231
  });
1144
1232
  },
1233
+ /**
1234
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId` or by a specific `searchInstructionId`. By default `before` is set to the current time and returns 20 results with `observationTime` less than `before`. To paginate through responses, pass the earliest timestamp in the previous response as the `before` parameter. When searching by `searchInstructionId`, a `before` timestamp is not required.
1235
+ * @param {string} [targetId]
1236
+ * @param {string} [before]
1237
+ * @param {string} [searchInstructionId]
1238
+ * @param {*} [options] Override http request option.
1239
+ * @throws {RequiredError}
1240
+ */
1241
+ v1GetObservationStatuses(targetId, before, searchInstructionId, options) {
1242
+ return __awaiter(this, void 0, void 0, function* () {
1243
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, options);
1244
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1245
+ });
1246
+ },
1145
1247
  /**
1146
1248
  * Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
1147
1249
  * @param {*} [options] Override http request option.
@@ -1382,6 +1484,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
1382
1484
  v1GetNodeProperties(requestParameters, options) {
1383
1485
  return localVarFp.v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(axios, basePath));
1384
1486
  },
1487
+ /**
1488
+ * Get observation features.
1489
+ * @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
1490
+ * @param {*} [options] Override http request option.
1491
+ * @throws {RequiredError}
1492
+ */
1493
+ v1GetObservationFeatures(requestParameters, options) {
1494
+ return localVarFp.v1GetObservationFeatures(requestParameters.imageId, options).then((request) => request(axios, basePath));
1495
+ },
1385
1496
  /**
1386
1497
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
1387
1498
  * @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
@@ -1391,6 +1502,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
1391
1502
  v1GetObservationSequenceResults(requestParameters = {}, options) {
1392
1503
  return localVarFp.v1GetObservationSequenceResults(requestParameters.targetId, requestParameters.after, options).then((request) => request(axios, basePath));
1393
1504
  },
1505
+ /**
1506
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId` or by a specific `searchInstructionId`. By default `before` is set to the current time and returns 20 results with `observationTime` less than `before`. To paginate through responses, pass the earliest timestamp in the previous response as the `before` parameter. When searching by `searchInstructionId`, a `before` timestamp is not required.
1507
+ * @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
1508
+ * @param {*} [options] Override http request option.
1509
+ * @throws {RequiredError}
1510
+ */
1511
+ v1GetObservationStatuses(requestParameters = {}, options) {
1512
+ return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, options).then((request) => request(axios, basePath));
1513
+ },
1394
1514
  /**
1395
1515
  * Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
1396
1516
  * @param {*} [options] Override http request option.
@@ -1619,6 +1739,16 @@ export class DefaultApi extends BaseAPI {
1619
1739
  v1GetNodeProperties(requestParameters, options) {
1620
1740
  return DefaultApiFp(this.configuration).v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
1621
1741
  }
1742
+ /**
1743
+ * Get observation features.
1744
+ * @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
1745
+ * @param {*} [options] Override http request option.
1746
+ * @throws {RequiredError}
1747
+ * @memberof DefaultApi
1748
+ */
1749
+ v1GetObservationFeatures(requestParameters, options) {
1750
+ return DefaultApiFp(this.configuration).v1GetObservationFeatures(requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
1751
+ }
1622
1752
  /**
1623
1753
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
1624
1754
  * @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
@@ -1629,6 +1759,16 @@ export class DefaultApi extends BaseAPI {
1629
1759
  v1GetObservationSequenceResults(requestParameters = {}, options) {
1630
1760
  return DefaultApiFp(this.configuration).v1GetObservationSequenceResults(requestParameters.targetId, requestParameters.after, options).then((request) => request(this.axios, this.basePath));
1631
1761
  }
1762
+ /**
1763
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId` or by a specific `searchInstructionId`. By default `before` is set to the current time and returns 20 results with `observationTime` less than `before`. To paginate through responses, pass the earliest timestamp in the previous response as the `before` parameter. When searching by `searchInstructionId`, a `before` timestamp is not required.
1764
+ * @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
1765
+ * @param {*} [options] Override http request option.
1766
+ * @throws {RequiredError}
1767
+ * @memberof DefaultApi
1768
+ */
1769
+ v1GetObservationStatuses(requestParameters = {}, options) {
1770
+ return DefaultApiFp(this.configuration).v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, options).then((request) => request(this.axios, this.basePath));
1771
+ }
1632
1772
  /**
1633
1773
  * Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
1634
1774
  * @param {*} [options] Override http request option.
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2765
5
+ * The version of the OpenAPI document: 1.3.2816
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.2765
7
+ * The version of the OpenAPI document: 1.3.2816
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2765
5
+ * The version of the OpenAPI document: 1.3.2816
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.2765
7
+ * The version of the OpenAPI document: 1.3.2816
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2765
5
+ * The version of the OpenAPI document: 1.3.2816
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.2765
7
+ * The version of the OpenAPI document: 1.3.2816
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2765
5
+ * The version of the OpenAPI document: 1.3.2816
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.2765
7
+ * The version of the OpenAPI document: 1.3.2816
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2765
5
+ * The version of the OpenAPI document: 1.3.2816
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * OurSky SDA
6
6
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.2765
8
+ * The version of the OpenAPI document: 1.3.2816
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.2765
7
+ * The version of the OpenAPI document: 1.3.2816
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ourskyai/sda-api",
3
- "version": "1.3.2765",
3
+ "version": "1.3.2816",
4
4
  "description": "OpenAPI client for @ourskyai/sda-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {