@ourskyai/sda-api 1.3.8639 → 1.3.8815

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @ourskyai/sda-api@1.3.8639
1
+ ## @ourskyai/sda-api@1.3.8815
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @ourskyai/sda-api@1.3.8639 --save
39
+ npm install @ourskyai/sda-api@1.3.8815 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8639
7
+ * The version of the OpenAPI document: 1.3.8815
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1032,6 +1032,44 @@ export interface V1ImageMetadata {
1032
1032
  */
1033
1033
  'createdAt': string;
1034
1034
  }
1035
+ /**
1036
+ *
1037
+ * @export
1038
+ * @enum {string}
1039
+ */
1040
+
1041
+ export const V1ImageRejectionReason = {
1042
+ TARGET_NOT_FOUND: 'TARGET_NOT_FOUND',
1043
+ RATE_TARGET_NOT_FOUND: 'RATE_TARGET_NOT_FOUND',
1044
+ RATE_PLATE_SOLVE_FAILURE: 'RATE_PLATE_SOLVE_FAILURE',
1045
+ STREAK_DETECTION_FAILURE: 'STREAK_DETECTION_FAILURE',
1046
+ PLATE_SOLVE_FAILURE: 'PLATE_SOLVE_FAILURE',
1047
+ PLATE_SOLVE_NOT_ENOUGH_STARS_FAILURE: 'PLATE_SOLVE_NOT_ENOUGH_STARS_FAILURE',
1048
+ PLATE_SOLVE_NO_SOLUTION_FAILURE: 'PLATE_SOLVE_NO_SOLUTION_FAILURE',
1049
+ CROP_IMAGE_FAILURE: 'CROP_IMAGE_FAILURE',
1050
+ COSMETIC_CORRECTION_FAILURE: 'COSMETIC_CORRECTION_FAILURE',
1051
+ GRADIENT_REMOVAL_FAILURE: 'GRADIENT_REMOVAL_FAILURE',
1052
+ CATMAG_FAILURE: 'CATMAG_FAILURE',
1053
+ IMAGE_QUALITY_TOO_LOW: 'IMAGE_QUALITY_TOO_LOW',
1054
+ OBSERVATION_NOT_FOUND: 'OBSERVATION_NOT_FOUND',
1055
+ NODE_NOT_FOUND: 'NODE_NOT_FOUND',
1056
+ CAMERA_NOT_FOUND: 'CAMERA_NOT_FOUND',
1057
+ OTA_NOT_FOUND: 'OTA_NOT_FOUND',
1058
+ TLE_NOT_EXTRACTED: 'TLE_NOT_EXTRACTED',
1059
+ FAILED_TO_LOAD: 'FAILED_TO_LOAD',
1060
+ GPS_ERROR: 'GPS_ERROR',
1061
+ MUTEX_TIMEOUT: 'MUTEX_TIMEOUT',
1062
+ AWAIT_TIMEOUT: 'AWAIT_TIMEOUT',
1063
+ CATALOG_COMPARE_ERROR: 'CATALOG_COMPARE_ERROR',
1064
+ SAVE_FAILURE: 'SAVE_FAILURE',
1065
+ RATE_CATALOG_COMPARE_ERROR: 'RATE_CATALOG_COMPARE_ERROR',
1066
+ MISSING_IMG_WIDTH_HEADER: 'MISSING_IMG_WIDTH_HEADER',
1067
+ UNKNOWN_ERROR: 'UNKNOWN_ERROR'
1068
+ } as const;
1069
+
1070
+ export type V1ImageRejectionReason = typeof V1ImageRejectionReason[keyof typeof V1ImageRejectionReason];
1071
+
1072
+
1035
1073
  /**
1036
1074
  * An image set represents a contiguous set of observations of the same target captured by the same node.
1037
1075
  * @export
@@ -1269,7 +1307,15 @@ export interface V1ImageSetImage {
1269
1307
  * @memberof V1ImageSetImage
1270
1308
  */
1271
1309
  'predictedStreakLocation'?: V1PredictedStreakLocation;
1310
+ /**
1311
+ *
1312
+ * @type {V1ImageRejectionReason}
1313
+ * @memberof V1ImageSetImage
1314
+ */
1315
+ 'rejectedReason'?: V1ImageRejectionReason;
1272
1316
  }
1317
+
1318
+
1273
1319
  /**
1274
1320
  * Extracted stars that matched during plate solving
1275
1321
  * @export
package/base.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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8639
7
+ * The version of the OpenAPI document: 1.3.8815
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8639
7
+ * The version of the OpenAPI document: 1.3.8815
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8639
7
+ * The version of the OpenAPI document: 1.3.8815
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/api.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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8639
5
+ * The version of the OpenAPI document: 1.3.8815
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -967,6 +967,40 @@ export interface V1ImageMetadata {
967
967
  */
968
968
  'createdAt': string;
969
969
  }
970
+ /**
971
+ *
972
+ * @export
973
+ * @enum {string}
974
+ */
975
+ export declare const V1ImageRejectionReason: {
976
+ readonly TARGET_NOT_FOUND: "TARGET_NOT_FOUND";
977
+ readonly RATE_TARGET_NOT_FOUND: "RATE_TARGET_NOT_FOUND";
978
+ readonly RATE_PLATE_SOLVE_FAILURE: "RATE_PLATE_SOLVE_FAILURE";
979
+ readonly STREAK_DETECTION_FAILURE: "STREAK_DETECTION_FAILURE";
980
+ readonly PLATE_SOLVE_FAILURE: "PLATE_SOLVE_FAILURE";
981
+ readonly PLATE_SOLVE_NOT_ENOUGH_STARS_FAILURE: "PLATE_SOLVE_NOT_ENOUGH_STARS_FAILURE";
982
+ readonly PLATE_SOLVE_NO_SOLUTION_FAILURE: "PLATE_SOLVE_NO_SOLUTION_FAILURE";
983
+ readonly CROP_IMAGE_FAILURE: "CROP_IMAGE_FAILURE";
984
+ readonly COSMETIC_CORRECTION_FAILURE: "COSMETIC_CORRECTION_FAILURE";
985
+ readonly GRADIENT_REMOVAL_FAILURE: "GRADIENT_REMOVAL_FAILURE";
986
+ readonly CATMAG_FAILURE: "CATMAG_FAILURE";
987
+ readonly IMAGE_QUALITY_TOO_LOW: "IMAGE_QUALITY_TOO_LOW";
988
+ readonly OBSERVATION_NOT_FOUND: "OBSERVATION_NOT_FOUND";
989
+ readonly NODE_NOT_FOUND: "NODE_NOT_FOUND";
990
+ readonly CAMERA_NOT_FOUND: "CAMERA_NOT_FOUND";
991
+ readonly OTA_NOT_FOUND: "OTA_NOT_FOUND";
992
+ readonly TLE_NOT_EXTRACTED: "TLE_NOT_EXTRACTED";
993
+ readonly FAILED_TO_LOAD: "FAILED_TO_LOAD";
994
+ readonly GPS_ERROR: "GPS_ERROR";
995
+ readonly MUTEX_TIMEOUT: "MUTEX_TIMEOUT";
996
+ readonly AWAIT_TIMEOUT: "AWAIT_TIMEOUT";
997
+ readonly CATALOG_COMPARE_ERROR: "CATALOG_COMPARE_ERROR";
998
+ readonly SAVE_FAILURE: "SAVE_FAILURE";
999
+ readonly RATE_CATALOG_COMPARE_ERROR: "RATE_CATALOG_COMPARE_ERROR";
1000
+ readonly MISSING_IMG_WIDTH_HEADER: "MISSING_IMG_WIDTH_HEADER";
1001
+ readonly UNKNOWN_ERROR: "UNKNOWN_ERROR";
1002
+ };
1003
+ export type V1ImageRejectionReason = typeof V1ImageRejectionReason[keyof typeof V1ImageRejectionReason];
970
1004
  /**
971
1005
  * An image set represents a contiguous set of observations of the same target captured by the same node.
972
1006
  * @export
@@ -1202,6 +1236,12 @@ export interface V1ImageSetImage {
1202
1236
  * @memberof V1ImageSetImage
1203
1237
  */
1204
1238
  'predictedStreakLocation'?: V1PredictedStreakLocation;
1239
+ /**
1240
+ *
1241
+ * @type {V1ImageRejectionReason}
1242
+ * @memberof V1ImageSetImage
1243
+ */
1244
+ 'rejectedReason'?: V1ImageRejectionReason;
1205
1245
  }
1206
1246
  /**
1207
1247
  * Extracted stars that matched during plate solving
package/dist/api.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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.8639
8
+ * The version of the OpenAPI document: 1.3.8815
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
22
22
  });
23
23
  };
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- exports.V2GetSearchesStatusEnum = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.WebhookEvent = exports.WebhookAuthType = exports.WeatherCondition = exports.V1StateVectorReferenceFrameEnum = exports.V1SatelliteCalibrationFamily = exports.V1PlateSolveStatus = exports.V1ImageFileType = exports.V1BlackoutVolumeRequestReferenceFrameEnum = exports.TrackingType = exports.ShutterType = exports.SearchCompletedReason = exports.SatelliteTargetTrackingStatus = exports.OrbitType = exports.ObservationState = exports.MountType = exports.ImageSetType = exports.FilterType = void 0;
25
+ exports.V2GetSearchesStatusEnum = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.WebhookEvent = exports.WebhookAuthType = exports.WeatherCondition = exports.V1StateVectorReferenceFrameEnum = exports.V1SatelliteCalibrationFamily = exports.V1PlateSolveStatus = exports.V1ImageRejectionReason = exports.V1ImageFileType = exports.V1BlackoutVolumeRequestReferenceFrameEnum = exports.TrackingType = exports.ShutterType = exports.SearchCompletedReason = exports.SatelliteTargetTrackingStatus = exports.OrbitType = exports.ObservationState = exports.MountType = exports.ImageSetType = exports.FilterType = void 0;
26
26
  const axios_1 = require("axios");
27
27
  // Some imports not used depending on template conditions
28
28
  // @ts-ignore
@@ -174,6 +174,39 @@ exports.V1ImageFileType = {
174
174
  FITS: 'FITS',
175
175
  JPG: 'JPG'
176
176
  };
177
+ /**
178
+ *
179
+ * @export
180
+ * @enum {string}
181
+ */
182
+ exports.V1ImageRejectionReason = {
183
+ TARGET_NOT_FOUND: 'TARGET_NOT_FOUND',
184
+ RATE_TARGET_NOT_FOUND: 'RATE_TARGET_NOT_FOUND',
185
+ RATE_PLATE_SOLVE_FAILURE: 'RATE_PLATE_SOLVE_FAILURE',
186
+ STREAK_DETECTION_FAILURE: 'STREAK_DETECTION_FAILURE',
187
+ PLATE_SOLVE_FAILURE: 'PLATE_SOLVE_FAILURE',
188
+ PLATE_SOLVE_NOT_ENOUGH_STARS_FAILURE: 'PLATE_SOLVE_NOT_ENOUGH_STARS_FAILURE',
189
+ PLATE_SOLVE_NO_SOLUTION_FAILURE: 'PLATE_SOLVE_NO_SOLUTION_FAILURE',
190
+ CROP_IMAGE_FAILURE: 'CROP_IMAGE_FAILURE',
191
+ COSMETIC_CORRECTION_FAILURE: 'COSMETIC_CORRECTION_FAILURE',
192
+ GRADIENT_REMOVAL_FAILURE: 'GRADIENT_REMOVAL_FAILURE',
193
+ CATMAG_FAILURE: 'CATMAG_FAILURE',
194
+ IMAGE_QUALITY_TOO_LOW: 'IMAGE_QUALITY_TOO_LOW',
195
+ OBSERVATION_NOT_FOUND: 'OBSERVATION_NOT_FOUND',
196
+ NODE_NOT_FOUND: 'NODE_NOT_FOUND',
197
+ CAMERA_NOT_FOUND: 'CAMERA_NOT_FOUND',
198
+ OTA_NOT_FOUND: 'OTA_NOT_FOUND',
199
+ TLE_NOT_EXTRACTED: 'TLE_NOT_EXTRACTED',
200
+ FAILED_TO_LOAD: 'FAILED_TO_LOAD',
201
+ GPS_ERROR: 'GPS_ERROR',
202
+ MUTEX_TIMEOUT: 'MUTEX_TIMEOUT',
203
+ AWAIT_TIMEOUT: 'AWAIT_TIMEOUT',
204
+ CATALOG_COMPARE_ERROR: 'CATALOG_COMPARE_ERROR',
205
+ SAVE_FAILURE: 'SAVE_FAILURE',
206
+ RATE_CATALOG_COMPARE_ERROR: 'RATE_CATALOG_COMPARE_ERROR',
207
+ MISSING_IMG_WIDTH_HEADER: 'MISSING_IMG_WIDTH_HEADER',
208
+ UNKNOWN_ERROR: 'UNKNOWN_ERROR'
209
+ };
177
210
  /**
178
211
  *
179
212
  * @export
package/dist/base.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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8639
5
+ * The version of the OpenAPI document: 1.3.8815
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.8639
8
+ * The version of the OpenAPI document: 1.3.8815
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8639
5
+ * The version of the OpenAPI document: 1.3.8815
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.8639
8
+ * The version of the OpenAPI document: 1.3.8815
9
9
  *
10
10
  *
11
11
  * 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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8639
5
+ * The version of the OpenAPI document: 1.3.8815
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.8639
8
+ * The version of the OpenAPI document: 1.3.8815
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/api.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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8639
5
+ * The version of the OpenAPI document: 1.3.8815
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -967,6 +967,40 @@ export interface V1ImageMetadata {
967
967
  */
968
968
  'createdAt': string;
969
969
  }
970
+ /**
971
+ *
972
+ * @export
973
+ * @enum {string}
974
+ */
975
+ export declare const V1ImageRejectionReason: {
976
+ readonly TARGET_NOT_FOUND: "TARGET_NOT_FOUND";
977
+ readonly RATE_TARGET_NOT_FOUND: "RATE_TARGET_NOT_FOUND";
978
+ readonly RATE_PLATE_SOLVE_FAILURE: "RATE_PLATE_SOLVE_FAILURE";
979
+ readonly STREAK_DETECTION_FAILURE: "STREAK_DETECTION_FAILURE";
980
+ readonly PLATE_SOLVE_FAILURE: "PLATE_SOLVE_FAILURE";
981
+ readonly PLATE_SOLVE_NOT_ENOUGH_STARS_FAILURE: "PLATE_SOLVE_NOT_ENOUGH_STARS_FAILURE";
982
+ readonly PLATE_SOLVE_NO_SOLUTION_FAILURE: "PLATE_SOLVE_NO_SOLUTION_FAILURE";
983
+ readonly CROP_IMAGE_FAILURE: "CROP_IMAGE_FAILURE";
984
+ readonly COSMETIC_CORRECTION_FAILURE: "COSMETIC_CORRECTION_FAILURE";
985
+ readonly GRADIENT_REMOVAL_FAILURE: "GRADIENT_REMOVAL_FAILURE";
986
+ readonly CATMAG_FAILURE: "CATMAG_FAILURE";
987
+ readonly IMAGE_QUALITY_TOO_LOW: "IMAGE_QUALITY_TOO_LOW";
988
+ readonly OBSERVATION_NOT_FOUND: "OBSERVATION_NOT_FOUND";
989
+ readonly NODE_NOT_FOUND: "NODE_NOT_FOUND";
990
+ readonly CAMERA_NOT_FOUND: "CAMERA_NOT_FOUND";
991
+ readonly OTA_NOT_FOUND: "OTA_NOT_FOUND";
992
+ readonly TLE_NOT_EXTRACTED: "TLE_NOT_EXTRACTED";
993
+ readonly FAILED_TO_LOAD: "FAILED_TO_LOAD";
994
+ readonly GPS_ERROR: "GPS_ERROR";
995
+ readonly MUTEX_TIMEOUT: "MUTEX_TIMEOUT";
996
+ readonly AWAIT_TIMEOUT: "AWAIT_TIMEOUT";
997
+ readonly CATALOG_COMPARE_ERROR: "CATALOG_COMPARE_ERROR";
998
+ readonly SAVE_FAILURE: "SAVE_FAILURE";
999
+ readonly RATE_CATALOG_COMPARE_ERROR: "RATE_CATALOG_COMPARE_ERROR";
1000
+ readonly MISSING_IMG_WIDTH_HEADER: "MISSING_IMG_WIDTH_HEADER";
1001
+ readonly UNKNOWN_ERROR: "UNKNOWN_ERROR";
1002
+ };
1003
+ export type V1ImageRejectionReason = typeof V1ImageRejectionReason[keyof typeof V1ImageRejectionReason];
970
1004
  /**
971
1005
  * An image set represents a contiguous set of observations of the same target captured by the same node.
972
1006
  * @export
@@ -1202,6 +1236,12 @@ export interface V1ImageSetImage {
1202
1236
  * @memberof V1ImageSetImage
1203
1237
  */
1204
1238
  'predictedStreakLocation'?: V1PredictedStreakLocation;
1239
+ /**
1240
+ *
1241
+ * @type {V1ImageRejectionReason}
1242
+ * @memberof V1ImageSetImage
1243
+ */
1244
+ 'rejectedReason'?: V1ImageRejectionReason;
1205
1245
  }
1206
1246
  /**
1207
1247
  * Extracted stars that matched during plate solving
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8639
7
+ * The version of the OpenAPI document: 1.3.8815
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -171,6 +171,39 @@ export const V1ImageFileType = {
171
171
  FITS: 'FITS',
172
172
  JPG: 'JPG'
173
173
  };
174
+ /**
175
+ *
176
+ * @export
177
+ * @enum {string}
178
+ */
179
+ export const V1ImageRejectionReason = {
180
+ TARGET_NOT_FOUND: 'TARGET_NOT_FOUND',
181
+ RATE_TARGET_NOT_FOUND: 'RATE_TARGET_NOT_FOUND',
182
+ RATE_PLATE_SOLVE_FAILURE: 'RATE_PLATE_SOLVE_FAILURE',
183
+ STREAK_DETECTION_FAILURE: 'STREAK_DETECTION_FAILURE',
184
+ PLATE_SOLVE_FAILURE: 'PLATE_SOLVE_FAILURE',
185
+ PLATE_SOLVE_NOT_ENOUGH_STARS_FAILURE: 'PLATE_SOLVE_NOT_ENOUGH_STARS_FAILURE',
186
+ PLATE_SOLVE_NO_SOLUTION_FAILURE: 'PLATE_SOLVE_NO_SOLUTION_FAILURE',
187
+ CROP_IMAGE_FAILURE: 'CROP_IMAGE_FAILURE',
188
+ COSMETIC_CORRECTION_FAILURE: 'COSMETIC_CORRECTION_FAILURE',
189
+ GRADIENT_REMOVAL_FAILURE: 'GRADIENT_REMOVAL_FAILURE',
190
+ CATMAG_FAILURE: 'CATMAG_FAILURE',
191
+ IMAGE_QUALITY_TOO_LOW: 'IMAGE_QUALITY_TOO_LOW',
192
+ OBSERVATION_NOT_FOUND: 'OBSERVATION_NOT_FOUND',
193
+ NODE_NOT_FOUND: 'NODE_NOT_FOUND',
194
+ CAMERA_NOT_FOUND: 'CAMERA_NOT_FOUND',
195
+ OTA_NOT_FOUND: 'OTA_NOT_FOUND',
196
+ TLE_NOT_EXTRACTED: 'TLE_NOT_EXTRACTED',
197
+ FAILED_TO_LOAD: 'FAILED_TO_LOAD',
198
+ GPS_ERROR: 'GPS_ERROR',
199
+ MUTEX_TIMEOUT: 'MUTEX_TIMEOUT',
200
+ AWAIT_TIMEOUT: 'AWAIT_TIMEOUT',
201
+ CATALOG_COMPARE_ERROR: 'CATALOG_COMPARE_ERROR',
202
+ SAVE_FAILURE: 'SAVE_FAILURE',
203
+ RATE_CATALOG_COMPARE_ERROR: 'RATE_CATALOG_COMPARE_ERROR',
204
+ MISSING_IMG_WIDTH_HEADER: 'MISSING_IMG_WIDTH_HEADER',
205
+ UNKNOWN_ERROR: 'UNKNOWN_ERROR'
206
+ };
174
207
  /**
175
208
  *
176
209
  * @export
@@ -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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8639
5
+ * The version of the OpenAPI document: 1.3.8815
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8639
7
+ * The version of the OpenAPI document: 1.3.8815
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8639
5
+ * The version of the OpenAPI document: 1.3.8815
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8639
7
+ * The version of the OpenAPI document: 1.3.8815
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8639
5
+ * The version of the OpenAPI document: 1.3.8815
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8639
7
+ * The version of the OpenAPI document: 1.3.8815
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8639
5
+ * The version of the OpenAPI document: 1.3.8815
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8639
7
+ * The version of the OpenAPI document: 1.3.8815
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8639
5
+ * The version of the OpenAPI document: 1.3.8815
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.8639
8
+ * The version of the OpenAPI document: 1.3.8815
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8639
7
+ * The version of the OpenAPI document: 1.3.8815
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.8639",
3
+ "version": "1.3.8815",
4
4
  "description": "OpenAPI client for @ourskyai/sda-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {