@ourskyai/platform-api 1.3.3197 → 1.3.3442
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 +2 -2
- package/api.ts +159 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +110 -1
- package/dist/api.js +75 -2
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +110 -1
- package/dist/esm/api.js +74 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @ourskyai/platform-api@1.3.
|
|
1
|
+
## @ourskyai/platform-api@1.3.3442
|
|
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/platform-api@1.3.
|
|
39
|
+
npm install @ourskyai/platform-api@1.3.3442 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -940,6 +940,27 @@ export interface V1GetOrCreateOpticalTubeRequest {
|
|
|
940
940
|
}
|
|
941
941
|
|
|
942
942
|
|
|
943
|
+
/**
|
|
944
|
+
*
|
|
945
|
+
* @export
|
|
946
|
+
* @interface V1GetPlateSolveCatalogDiffRequest
|
|
947
|
+
*/
|
|
948
|
+
export interface V1GetPlateSolveCatalogDiffRequest {
|
|
949
|
+
/**
|
|
950
|
+
*
|
|
951
|
+
* @type {V1PlateSolveCatalogIdentifier}
|
|
952
|
+
* @memberof V1GetPlateSolveCatalogDiffRequest
|
|
953
|
+
*/
|
|
954
|
+
'identifier': V1PlateSolveCatalogIdentifier;
|
|
955
|
+
/**
|
|
956
|
+
*
|
|
957
|
+
* @type {Array<V1PlateSolveCatalogFile>}
|
|
958
|
+
* @memberof V1GetPlateSolveCatalogDiffRequest
|
|
959
|
+
*/
|
|
960
|
+
'existingFiles': Array<V1PlateSolveCatalogFile>;
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
|
|
943
964
|
/**
|
|
944
965
|
*
|
|
945
966
|
* @export
|
|
@@ -1647,6 +1668,58 @@ export interface V1OpticalTube {
|
|
|
1647
1668
|
*/
|
|
1648
1669
|
'apertureMm': number;
|
|
1649
1670
|
}
|
|
1671
|
+
/**
|
|
1672
|
+
*
|
|
1673
|
+
* @export
|
|
1674
|
+
* @interface V1PlateSolveCatalogFile
|
|
1675
|
+
*/
|
|
1676
|
+
export interface V1PlateSolveCatalogFile {
|
|
1677
|
+
/**
|
|
1678
|
+
*
|
|
1679
|
+
* @type {string}
|
|
1680
|
+
* @memberof V1PlateSolveCatalogFile
|
|
1681
|
+
*/
|
|
1682
|
+
'name': string;
|
|
1683
|
+
/**
|
|
1684
|
+
*
|
|
1685
|
+
* @type {string}
|
|
1686
|
+
* @memberof V1PlateSolveCatalogFile
|
|
1687
|
+
*/
|
|
1688
|
+
'base64Sha256Checksum': string;
|
|
1689
|
+
}
|
|
1690
|
+
/**
|
|
1691
|
+
*
|
|
1692
|
+
* @export
|
|
1693
|
+
* @interface V1PlateSolveCatalogFileDownload
|
|
1694
|
+
*/
|
|
1695
|
+
export interface V1PlateSolveCatalogFileDownload {
|
|
1696
|
+
/**
|
|
1697
|
+
*
|
|
1698
|
+
* @type {string}
|
|
1699
|
+
* @memberof V1PlateSolveCatalogFileDownload
|
|
1700
|
+
*/
|
|
1701
|
+
'name': string;
|
|
1702
|
+
/**
|
|
1703
|
+
*
|
|
1704
|
+
* @type {string}
|
|
1705
|
+
* @memberof V1PlateSolveCatalogFileDownload
|
|
1706
|
+
*/
|
|
1707
|
+
'url': string;
|
|
1708
|
+
}
|
|
1709
|
+
/**
|
|
1710
|
+
*
|
|
1711
|
+
* @export
|
|
1712
|
+
* @enum {string}
|
|
1713
|
+
*/
|
|
1714
|
+
|
|
1715
|
+
export const V1PlateSolveCatalogIdentifier = {
|
|
1716
|
+
TWO_MASS_4100: 'TWO_MASS_4100',
|
|
1717
|
+
TWO_MASS_LITE: 'TWO_MASS_LITE'
|
|
1718
|
+
} as const;
|
|
1719
|
+
|
|
1720
|
+
export type V1PlateSolveCatalogIdentifier = typeof V1PlateSolveCatalogIdentifier[keyof typeof V1PlateSolveCatalogIdentifier];
|
|
1721
|
+
|
|
1722
|
+
|
|
1650
1723
|
/**
|
|
1651
1724
|
*
|
|
1652
1725
|
* @export
|
|
@@ -3112,6 +3185,47 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3112
3185
|
options: localVarRequestOptions,
|
|
3113
3186
|
};
|
|
3114
3187
|
},
|
|
3188
|
+
/**
|
|
3189
|
+
* Get a diff of plate solve catalog files.
|
|
3190
|
+
* @param {V1GetPlateSolveCatalogDiffRequest} v1GetPlateSolveCatalogDiffRequest
|
|
3191
|
+
* @param {*} [options] Override http request option.
|
|
3192
|
+
* @throws {RequiredError}
|
|
3193
|
+
*/
|
|
3194
|
+
v1GetPlateSolveCatalogDiff: async (v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3195
|
+
// verify required parameter 'v1GetPlateSolveCatalogDiffRequest' is not null or undefined
|
|
3196
|
+
assertParamExists('v1GetPlateSolveCatalogDiff', 'v1GetPlateSolveCatalogDiffRequest', v1GetPlateSolveCatalogDiffRequest)
|
|
3197
|
+
const localVarPath = `/v1/plate-solve-catalog-diff`;
|
|
3198
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3199
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3200
|
+
let baseOptions;
|
|
3201
|
+
if (configuration) {
|
|
3202
|
+
baseOptions = configuration.baseOptions;
|
|
3203
|
+
}
|
|
3204
|
+
|
|
3205
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
3206
|
+
const localVarHeaderParameter = {} as any;
|
|
3207
|
+
const localVarQueryParameter = {} as any;
|
|
3208
|
+
|
|
3209
|
+
// authentication Roles required
|
|
3210
|
+
|
|
3211
|
+
// authentication BearerToken required
|
|
3212
|
+
// http bearer authentication required
|
|
3213
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3214
|
+
|
|
3215
|
+
|
|
3216
|
+
|
|
3217
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3218
|
+
|
|
3219
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3220
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3221
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3222
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1GetPlateSolveCatalogDiffRequest, localVarRequestOptions, configuration)
|
|
3223
|
+
|
|
3224
|
+
return {
|
|
3225
|
+
url: toPathString(localVarUrlObj),
|
|
3226
|
+
options: localVarRequestOptions,
|
|
3227
|
+
};
|
|
3228
|
+
},
|
|
3115
3229
|
/**
|
|
3116
3230
|
* Match mount.
|
|
3117
3231
|
* @param {string} [model]
|
|
@@ -3580,6 +3694,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3580
3694
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetOrCreateOpticalTube(v1GetOrCreateOpticalTubeRequest, options);
|
|
3581
3695
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3582
3696
|
},
|
|
3697
|
+
/**
|
|
3698
|
+
* Get a diff of plate solve catalog files.
|
|
3699
|
+
* @param {V1GetPlateSolveCatalogDiffRequest} v1GetPlateSolveCatalogDiffRequest
|
|
3700
|
+
* @param {*} [options] Override http request option.
|
|
3701
|
+
* @throws {RequiredError}
|
|
3702
|
+
*/
|
|
3703
|
+
async v1GetPlateSolveCatalogDiff(v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>> {
|
|
3704
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetPlateSolveCatalogDiff(v1GetPlateSolveCatalogDiffRequest, options);
|
|
3705
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3706
|
+
},
|
|
3583
3707
|
/**
|
|
3584
3708
|
* Match mount.
|
|
3585
3709
|
* @param {string} [model]
|
|
@@ -3855,6 +3979,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3855
3979
|
v1GetOrCreateOpticalTube(requestParameters: DefaultApiV1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<V1OpticalTube> {
|
|
3856
3980
|
return localVarFp.v1GetOrCreateOpticalTube(requestParameters.v1GetOrCreateOpticalTubeRequest, options).then((request) => request(axios, basePath));
|
|
3857
3981
|
},
|
|
3982
|
+
/**
|
|
3983
|
+
* Get a diff of plate solve catalog files.
|
|
3984
|
+
* @param {DefaultApiV1GetPlateSolveCatalogDiffRequest} requestParameters Request parameters.
|
|
3985
|
+
* @param {*} [options] Override http request option.
|
|
3986
|
+
* @throws {RequiredError}
|
|
3987
|
+
*/
|
|
3988
|
+
v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1PlateSolveCatalogFileDownload>> {
|
|
3989
|
+
return localVarFp.v1GetPlateSolveCatalogDiff(requestParameters.v1GetPlateSolveCatalogDiffRequest, options).then((request) => request(axios, basePath));
|
|
3990
|
+
},
|
|
3858
3991
|
/**
|
|
3859
3992
|
* Match mount.
|
|
3860
3993
|
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
|
@@ -4253,6 +4386,20 @@ export interface DefaultApiV1GetOrCreateOpticalTubeRequest {
|
|
|
4253
4386
|
readonly v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest
|
|
4254
4387
|
}
|
|
4255
4388
|
|
|
4389
|
+
/**
|
|
4390
|
+
* Request parameters for v1GetPlateSolveCatalogDiff operation in DefaultApi.
|
|
4391
|
+
* @export
|
|
4392
|
+
* @interface DefaultApiV1GetPlateSolveCatalogDiffRequest
|
|
4393
|
+
*/
|
|
4394
|
+
export interface DefaultApiV1GetPlateSolveCatalogDiffRequest {
|
|
4395
|
+
/**
|
|
4396
|
+
*
|
|
4397
|
+
* @type {V1GetPlateSolveCatalogDiffRequest}
|
|
4398
|
+
* @memberof DefaultApiV1GetPlateSolveCatalogDiff
|
|
4399
|
+
*/
|
|
4400
|
+
readonly v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest
|
|
4401
|
+
}
|
|
4402
|
+
|
|
4256
4403
|
/**
|
|
4257
4404
|
* Request parameters for v1MountMatch operation in DefaultApi.
|
|
4258
4405
|
* @export
|
|
@@ -4605,6 +4752,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
4605
4752
|
return DefaultApiFp(this.configuration).v1GetOrCreateOpticalTube(requestParameters.v1GetOrCreateOpticalTubeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4606
4753
|
}
|
|
4607
4754
|
|
|
4755
|
+
/**
|
|
4756
|
+
* Get a diff of plate solve catalog files.
|
|
4757
|
+
* @param {DefaultApiV1GetPlateSolveCatalogDiffRequest} requestParameters Request parameters.
|
|
4758
|
+
* @param {*} [options] Override http request option.
|
|
4759
|
+
* @throws {RequiredError}
|
|
4760
|
+
* @memberof DefaultApi
|
|
4761
|
+
*/
|
|
4762
|
+
public v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig) {
|
|
4763
|
+
return DefaultApiFp(this.configuration).v1GetPlateSolveCatalogDiff(requestParameters.v1GetPlateSolveCatalogDiffRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4764
|
+
}
|
|
4765
|
+
|
|
4608
4766
|
/**
|
|
4609
4767
|
* Match mount.
|
|
4610
4768
|
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
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 Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
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 Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
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 Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -880,6 +880,25 @@ export interface V1GetOrCreateOpticalTubeRequest {
|
|
|
880
880
|
*/
|
|
881
881
|
'type'?: OpticalTubeType;
|
|
882
882
|
}
|
|
883
|
+
/**
|
|
884
|
+
*
|
|
885
|
+
* @export
|
|
886
|
+
* @interface V1GetPlateSolveCatalogDiffRequest
|
|
887
|
+
*/
|
|
888
|
+
export interface V1GetPlateSolveCatalogDiffRequest {
|
|
889
|
+
/**
|
|
890
|
+
*
|
|
891
|
+
* @type {V1PlateSolveCatalogIdentifier}
|
|
892
|
+
* @memberof V1GetPlateSolveCatalogDiffRequest
|
|
893
|
+
*/
|
|
894
|
+
'identifier': V1PlateSolveCatalogIdentifier;
|
|
895
|
+
/**
|
|
896
|
+
*
|
|
897
|
+
* @type {Array<V1PlateSolveCatalogFile>}
|
|
898
|
+
* @memberof V1GetPlateSolveCatalogDiffRequest
|
|
899
|
+
*/
|
|
900
|
+
'existingFiles': Array<V1PlateSolveCatalogFile>;
|
|
901
|
+
}
|
|
883
902
|
/**
|
|
884
903
|
*
|
|
885
904
|
* @export
|
|
@@ -1569,6 +1588,54 @@ export interface V1OpticalTube {
|
|
|
1569
1588
|
*/
|
|
1570
1589
|
'apertureMm': number;
|
|
1571
1590
|
}
|
|
1591
|
+
/**
|
|
1592
|
+
*
|
|
1593
|
+
* @export
|
|
1594
|
+
* @interface V1PlateSolveCatalogFile
|
|
1595
|
+
*/
|
|
1596
|
+
export interface V1PlateSolveCatalogFile {
|
|
1597
|
+
/**
|
|
1598
|
+
*
|
|
1599
|
+
* @type {string}
|
|
1600
|
+
* @memberof V1PlateSolveCatalogFile
|
|
1601
|
+
*/
|
|
1602
|
+
'name': string;
|
|
1603
|
+
/**
|
|
1604
|
+
*
|
|
1605
|
+
* @type {string}
|
|
1606
|
+
* @memberof V1PlateSolveCatalogFile
|
|
1607
|
+
*/
|
|
1608
|
+
'base64Sha256Checksum': string;
|
|
1609
|
+
}
|
|
1610
|
+
/**
|
|
1611
|
+
*
|
|
1612
|
+
* @export
|
|
1613
|
+
* @interface V1PlateSolveCatalogFileDownload
|
|
1614
|
+
*/
|
|
1615
|
+
export interface V1PlateSolveCatalogFileDownload {
|
|
1616
|
+
/**
|
|
1617
|
+
*
|
|
1618
|
+
* @type {string}
|
|
1619
|
+
* @memberof V1PlateSolveCatalogFileDownload
|
|
1620
|
+
*/
|
|
1621
|
+
'name': string;
|
|
1622
|
+
/**
|
|
1623
|
+
*
|
|
1624
|
+
* @type {string}
|
|
1625
|
+
* @memberof V1PlateSolveCatalogFileDownload
|
|
1626
|
+
*/
|
|
1627
|
+
'url': string;
|
|
1628
|
+
}
|
|
1629
|
+
/**
|
|
1630
|
+
*
|
|
1631
|
+
* @export
|
|
1632
|
+
* @enum {string}
|
|
1633
|
+
*/
|
|
1634
|
+
export declare const V1PlateSolveCatalogIdentifier: {
|
|
1635
|
+
readonly TWO_MASS_4100: "TWO_MASS_4100";
|
|
1636
|
+
readonly TWO_MASS_LITE: "TWO_MASS_LITE";
|
|
1637
|
+
};
|
|
1638
|
+
export type V1PlateSolveCatalogIdentifier = typeof V1PlateSolveCatalogIdentifier[keyof typeof V1PlateSolveCatalogIdentifier];
|
|
1572
1639
|
/**
|
|
1573
1640
|
*
|
|
1574
1641
|
* @export
|
|
@@ -2184,6 +2251,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2184
2251
|
* @throws {RequiredError}
|
|
2185
2252
|
*/
|
|
2186
2253
|
v1GetOrCreateOpticalTube: (v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2254
|
+
/**
|
|
2255
|
+
* Get a diff of plate solve catalog files.
|
|
2256
|
+
* @param {V1GetPlateSolveCatalogDiffRequest} v1GetPlateSolveCatalogDiffRequest
|
|
2257
|
+
* @param {*} [options] Override http request option.
|
|
2258
|
+
* @throws {RequiredError}
|
|
2259
|
+
*/
|
|
2260
|
+
v1GetPlateSolveCatalogDiff: (v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2187
2261
|
/**
|
|
2188
2262
|
* Match mount.
|
|
2189
2263
|
* @param {string} [model]
|
|
@@ -2400,6 +2474,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2400
2474
|
* @throws {RequiredError}
|
|
2401
2475
|
*/
|
|
2402
2476
|
v1GetOrCreateOpticalTube(v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OpticalTube>>;
|
|
2477
|
+
/**
|
|
2478
|
+
* Get a diff of plate solve catalog files.
|
|
2479
|
+
* @param {V1GetPlateSolveCatalogDiffRequest} v1GetPlateSolveCatalogDiffRequest
|
|
2480
|
+
* @param {*} [options] Override http request option.
|
|
2481
|
+
* @throws {RequiredError}
|
|
2482
|
+
*/
|
|
2483
|
+
v1GetPlateSolveCatalogDiff(v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>>;
|
|
2403
2484
|
/**
|
|
2404
2485
|
* Match mount.
|
|
2405
2486
|
* @param {string} [model]
|
|
@@ -2608,6 +2689,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2608
2689
|
* @throws {RequiredError}
|
|
2609
2690
|
*/
|
|
2610
2691
|
v1GetOrCreateOpticalTube(requestParameters: DefaultApiV1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<V1OpticalTube>;
|
|
2692
|
+
/**
|
|
2693
|
+
* Get a diff of plate solve catalog files.
|
|
2694
|
+
* @param {DefaultApiV1GetPlateSolveCatalogDiffRequest} requestParameters Request parameters.
|
|
2695
|
+
* @param {*} [options] Override http request option.
|
|
2696
|
+
* @throws {RequiredError}
|
|
2697
|
+
*/
|
|
2698
|
+
v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>;
|
|
2611
2699
|
/**
|
|
2612
2700
|
* Match mount.
|
|
2613
2701
|
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
|
@@ -2965,6 +3053,19 @@ export interface DefaultApiV1GetOrCreateOpticalTubeRequest {
|
|
|
2965
3053
|
*/
|
|
2966
3054
|
readonly v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest;
|
|
2967
3055
|
}
|
|
3056
|
+
/**
|
|
3057
|
+
* Request parameters for v1GetPlateSolveCatalogDiff operation in DefaultApi.
|
|
3058
|
+
* @export
|
|
3059
|
+
* @interface DefaultApiV1GetPlateSolveCatalogDiffRequest
|
|
3060
|
+
*/
|
|
3061
|
+
export interface DefaultApiV1GetPlateSolveCatalogDiffRequest {
|
|
3062
|
+
/**
|
|
3063
|
+
*
|
|
3064
|
+
* @type {V1GetPlateSolveCatalogDiffRequest}
|
|
3065
|
+
* @memberof DefaultApiV1GetPlateSolveCatalogDiff
|
|
3066
|
+
*/
|
|
3067
|
+
readonly v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest;
|
|
3068
|
+
}
|
|
2968
3069
|
/**
|
|
2969
3070
|
* Request parameters for v1MountMatch operation in DefaultApi.
|
|
2970
3071
|
* @export
|
|
@@ -3238,6 +3339,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3238
3339
|
* @memberof DefaultApi
|
|
3239
3340
|
*/
|
|
3240
3341
|
v1GetOrCreateOpticalTube(requestParameters: DefaultApiV1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OpticalTube, any>>;
|
|
3342
|
+
/**
|
|
3343
|
+
* Get a diff of plate solve catalog files.
|
|
3344
|
+
* @param {DefaultApiV1GetPlateSolveCatalogDiffRequest} requestParameters Request parameters.
|
|
3345
|
+
* @param {*} [options] Override http request option.
|
|
3346
|
+
* @throws {RequiredError}
|
|
3347
|
+
* @memberof DefaultApi
|
|
3348
|
+
*/
|
|
3349
|
+
v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1PlateSolveCatalogFileDownload[], any>>;
|
|
3241
3350
|
/**
|
|
3242
3351
|
* Match mount.
|
|
3243
3352
|
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Platform
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
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.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.V1NodeDiagnosticType = exports.V1NodeComponentType = exports.TrackingType = exports.ShutterType = exports.OpticalTubeType = exports.NodeState = exports.MountType = exports.MetricType = exports.FilterType = exports.CameraMode = void 0;
|
|
25
|
+
exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.V1PlateSolveCatalogIdentifier = exports.V1NodeDiagnosticType = exports.V1NodeComponentType = exports.TrackingType = exports.ShutterType = exports.OpticalTubeType = exports.NodeState = exports.MountType = exports.MetricType = exports.FilterType = exports.CameraMode = void 0;
|
|
26
26
|
const axios_1 = require("axios");
|
|
27
27
|
// Some imports not used depending on template conditions
|
|
28
28
|
// @ts-ignore
|
|
@@ -161,6 +161,15 @@ exports.V1NodeDiagnosticType = {
|
|
|
161
161
|
CPU_USAGE_LAST_SECOND_PCT: 'CPU_USAGE_LAST_SECOND_PCT',
|
|
162
162
|
CPU_USAGE_LAST_MINUTE_PCT: 'CPU_USAGE_LAST_MINUTE_PCT'
|
|
163
163
|
};
|
|
164
|
+
/**
|
|
165
|
+
*
|
|
166
|
+
* @export
|
|
167
|
+
* @enum {string}
|
|
168
|
+
*/
|
|
169
|
+
exports.V1PlateSolveCatalogIdentifier = {
|
|
170
|
+
TWO_MASS_4100: 'TWO_MASS_4100',
|
|
171
|
+
TWO_MASS_LITE: 'TWO_MASS_LITE'
|
|
172
|
+
};
|
|
164
173
|
/**
|
|
165
174
|
* DefaultApi - axios parameter creator
|
|
166
175
|
* @export
|
|
@@ -983,6 +992,39 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
983
992
|
options: localVarRequestOptions,
|
|
984
993
|
};
|
|
985
994
|
}),
|
|
995
|
+
/**
|
|
996
|
+
* Get a diff of plate solve catalog files.
|
|
997
|
+
* @param {V1GetPlateSolveCatalogDiffRequest} v1GetPlateSolveCatalogDiffRequest
|
|
998
|
+
* @param {*} [options] Override http request option.
|
|
999
|
+
* @throws {RequiredError}
|
|
1000
|
+
*/
|
|
1001
|
+
v1GetPlateSolveCatalogDiff: (v1GetPlateSolveCatalogDiffRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1002
|
+
// verify required parameter 'v1GetPlateSolveCatalogDiffRequest' is not null or undefined
|
|
1003
|
+
(0, common_1.assertParamExists)('v1GetPlateSolveCatalogDiff', 'v1GetPlateSolveCatalogDiffRequest', v1GetPlateSolveCatalogDiffRequest);
|
|
1004
|
+
const localVarPath = `/v1/plate-solve-catalog-diff`;
|
|
1005
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1006
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1007
|
+
let baseOptions;
|
|
1008
|
+
if (configuration) {
|
|
1009
|
+
baseOptions = configuration.baseOptions;
|
|
1010
|
+
}
|
|
1011
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
1012
|
+
const localVarHeaderParameter = {};
|
|
1013
|
+
const localVarQueryParameter = {};
|
|
1014
|
+
// authentication Roles required
|
|
1015
|
+
// authentication BearerToken required
|
|
1016
|
+
// http bearer authentication required
|
|
1017
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
1018
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1019
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1020
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1021
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1022
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1GetPlateSolveCatalogDiffRequest, localVarRequestOptions, configuration);
|
|
1023
|
+
return {
|
|
1024
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1025
|
+
options: localVarRequestOptions,
|
|
1026
|
+
};
|
|
1027
|
+
}),
|
|
986
1028
|
/**
|
|
987
1029
|
* Match mount.
|
|
988
1030
|
* @param {string} [model]
|
|
@@ -1457,6 +1499,18 @@ const DefaultApiFp = function (configuration) {
|
|
|
1457
1499
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1458
1500
|
});
|
|
1459
1501
|
},
|
|
1502
|
+
/**
|
|
1503
|
+
* Get a diff of plate solve catalog files.
|
|
1504
|
+
* @param {V1GetPlateSolveCatalogDiffRequest} v1GetPlateSolveCatalogDiffRequest
|
|
1505
|
+
* @param {*} [options] Override http request option.
|
|
1506
|
+
* @throws {RequiredError}
|
|
1507
|
+
*/
|
|
1508
|
+
v1GetPlateSolveCatalogDiff(v1GetPlateSolveCatalogDiffRequest, options) {
|
|
1509
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1510
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetPlateSolveCatalogDiff(v1GetPlateSolveCatalogDiffRequest, options);
|
|
1511
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1512
|
+
});
|
|
1513
|
+
},
|
|
1460
1514
|
/**
|
|
1461
1515
|
* Match mount.
|
|
1462
1516
|
* @param {string} [model]
|
|
@@ -1742,6 +1796,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1742
1796
|
v1GetOrCreateOpticalTube(requestParameters, options) {
|
|
1743
1797
|
return localVarFp.v1GetOrCreateOpticalTube(requestParameters.v1GetOrCreateOpticalTubeRequest, options).then((request) => request(axios, basePath));
|
|
1744
1798
|
},
|
|
1799
|
+
/**
|
|
1800
|
+
* Get a diff of plate solve catalog files.
|
|
1801
|
+
* @param {DefaultApiV1GetPlateSolveCatalogDiffRequest} requestParameters Request parameters.
|
|
1802
|
+
* @param {*} [options] Override http request option.
|
|
1803
|
+
* @throws {RequiredError}
|
|
1804
|
+
*/
|
|
1805
|
+
v1GetPlateSolveCatalogDiff(requestParameters, options) {
|
|
1806
|
+
return localVarFp.v1GetPlateSolveCatalogDiff(requestParameters.v1GetPlateSolveCatalogDiffRequest, options).then((request) => request(axios, basePath));
|
|
1807
|
+
},
|
|
1745
1808
|
/**
|
|
1746
1809
|
* Match mount.
|
|
1747
1810
|
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
|
@@ -2034,6 +2097,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2034
2097
|
v1GetOrCreateOpticalTube(requestParameters, options) {
|
|
2035
2098
|
return (0, exports.DefaultApiFp)(this.configuration).v1GetOrCreateOpticalTube(requestParameters.v1GetOrCreateOpticalTubeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2036
2099
|
}
|
|
2100
|
+
/**
|
|
2101
|
+
* Get a diff of plate solve catalog files.
|
|
2102
|
+
* @param {DefaultApiV1GetPlateSolveCatalogDiffRequest} requestParameters Request parameters.
|
|
2103
|
+
* @param {*} [options] Override http request option.
|
|
2104
|
+
* @throws {RequiredError}
|
|
2105
|
+
* @memberof DefaultApi
|
|
2106
|
+
*/
|
|
2107
|
+
v1GetPlateSolveCatalogDiff(requestParameters, options) {
|
|
2108
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1GetPlateSolveCatalogDiff(requestParameters.v1GetPlateSolveCatalogDiffRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2109
|
+
}
|
|
2037
2110
|
/**
|
|
2038
2111
|
* Match mount.
|
|
2039
2112
|
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
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 Platform
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
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 Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
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 Platform
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Platform
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
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 Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -880,6 +880,25 @@ export interface V1GetOrCreateOpticalTubeRequest {
|
|
|
880
880
|
*/
|
|
881
881
|
'type'?: OpticalTubeType;
|
|
882
882
|
}
|
|
883
|
+
/**
|
|
884
|
+
*
|
|
885
|
+
* @export
|
|
886
|
+
* @interface V1GetPlateSolveCatalogDiffRequest
|
|
887
|
+
*/
|
|
888
|
+
export interface V1GetPlateSolveCatalogDiffRequest {
|
|
889
|
+
/**
|
|
890
|
+
*
|
|
891
|
+
* @type {V1PlateSolveCatalogIdentifier}
|
|
892
|
+
* @memberof V1GetPlateSolveCatalogDiffRequest
|
|
893
|
+
*/
|
|
894
|
+
'identifier': V1PlateSolveCatalogIdentifier;
|
|
895
|
+
/**
|
|
896
|
+
*
|
|
897
|
+
* @type {Array<V1PlateSolveCatalogFile>}
|
|
898
|
+
* @memberof V1GetPlateSolveCatalogDiffRequest
|
|
899
|
+
*/
|
|
900
|
+
'existingFiles': Array<V1PlateSolveCatalogFile>;
|
|
901
|
+
}
|
|
883
902
|
/**
|
|
884
903
|
*
|
|
885
904
|
* @export
|
|
@@ -1569,6 +1588,54 @@ export interface V1OpticalTube {
|
|
|
1569
1588
|
*/
|
|
1570
1589
|
'apertureMm': number;
|
|
1571
1590
|
}
|
|
1591
|
+
/**
|
|
1592
|
+
*
|
|
1593
|
+
* @export
|
|
1594
|
+
* @interface V1PlateSolveCatalogFile
|
|
1595
|
+
*/
|
|
1596
|
+
export interface V1PlateSolveCatalogFile {
|
|
1597
|
+
/**
|
|
1598
|
+
*
|
|
1599
|
+
* @type {string}
|
|
1600
|
+
* @memberof V1PlateSolveCatalogFile
|
|
1601
|
+
*/
|
|
1602
|
+
'name': string;
|
|
1603
|
+
/**
|
|
1604
|
+
*
|
|
1605
|
+
* @type {string}
|
|
1606
|
+
* @memberof V1PlateSolveCatalogFile
|
|
1607
|
+
*/
|
|
1608
|
+
'base64Sha256Checksum': string;
|
|
1609
|
+
}
|
|
1610
|
+
/**
|
|
1611
|
+
*
|
|
1612
|
+
* @export
|
|
1613
|
+
* @interface V1PlateSolveCatalogFileDownload
|
|
1614
|
+
*/
|
|
1615
|
+
export interface V1PlateSolveCatalogFileDownload {
|
|
1616
|
+
/**
|
|
1617
|
+
*
|
|
1618
|
+
* @type {string}
|
|
1619
|
+
* @memberof V1PlateSolveCatalogFileDownload
|
|
1620
|
+
*/
|
|
1621
|
+
'name': string;
|
|
1622
|
+
/**
|
|
1623
|
+
*
|
|
1624
|
+
* @type {string}
|
|
1625
|
+
* @memberof V1PlateSolveCatalogFileDownload
|
|
1626
|
+
*/
|
|
1627
|
+
'url': string;
|
|
1628
|
+
}
|
|
1629
|
+
/**
|
|
1630
|
+
*
|
|
1631
|
+
* @export
|
|
1632
|
+
* @enum {string}
|
|
1633
|
+
*/
|
|
1634
|
+
export declare const V1PlateSolveCatalogIdentifier: {
|
|
1635
|
+
readonly TWO_MASS_4100: "TWO_MASS_4100";
|
|
1636
|
+
readonly TWO_MASS_LITE: "TWO_MASS_LITE";
|
|
1637
|
+
};
|
|
1638
|
+
export type V1PlateSolveCatalogIdentifier = typeof V1PlateSolveCatalogIdentifier[keyof typeof V1PlateSolveCatalogIdentifier];
|
|
1572
1639
|
/**
|
|
1573
1640
|
*
|
|
1574
1641
|
* @export
|
|
@@ -2184,6 +2251,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2184
2251
|
* @throws {RequiredError}
|
|
2185
2252
|
*/
|
|
2186
2253
|
v1GetOrCreateOpticalTube: (v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2254
|
+
/**
|
|
2255
|
+
* Get a diff of plate solve catalog files.
|
|
2256
|
+
* @param {V1GetPlateSolveCatalogDiffRequest} v1GetPlateSolveCatalogDiffRequest
|
|
2257
|
+
* @param {*} [options] Override http request option.
|
|
2258
|
+
* @throws {RequiredError}
|
|
2259
|
+
*/
|
|
2260
|
+
v1GetPlateSolveCatalogDiff: (v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2187
2261
|
/**
|
|
2188
2262
|
* Match mount.
|
|
2189
2263
|
* @param {string} [model]
|
|
@@ -2400,6 +2474,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2400
2474
|
* @throws {RequiredError}
|
|
2401
2475
|
*/
|
|
2402
2476
|
v1GetOrCreateOpticalTube(v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OpticalTube>>;
|
|
2477
|
+
/**
|
|
2478
|
+
* Get a diff of plate solve catalog files.
|
|
2479
|
+
* @param {V1GetPlateSolveCatalogDiffRequest} v1GetPlateSolveCatalogDiffRequest
|
|
2480
|
+
* @param {*} [options] Override http request option.
|
|
2481
|
+
* @throws {RequiredError}
|
|
2482
|
+
*/
|
|
2483
|
+
v1GetPlateSolveCatalogDiff(v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>>;
|
|
2403
2484
|
/**
|
|
2404
2485
|
* Match mount.
|
|
2405
2486
|
* @param {string} [model]
|
|
@@ -2608,6 +2689,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2608
2689
|
* @throws {RequiredError}
|
|
2609
2690
|
*/
|
|
2610
2691
|
v1GetOrCreateOpticalTube(requestParameters: DefaultApiV1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<V1OpticalTube>;
|
|
2692
|
+
/**
|
|
2693
|
+
* Get a diff of plate solve catalog files.
|
|
2694
|
+
* @param {DefaultApiV1GetPlateSolveCatalogDiffRequest} requestParameters Request parameters.
|
|
2695
|
+
* @param {*} [options] Override http request option.
|
|
2696
|
+
* @throws {RequiredError}
|
|
2697
|
+
*/
|
|
2698
|
+
v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>;
|
|
2611
2699
|
/**
|
|
2612
2700
|
* Match mount.
|
|
2613
2701
|
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
|
@@ -2965,6 +3053,19 @@ export interface DefaultApiV1GetOrCreateOpticalTubeRequest {
|
|
|
2965
3053
|
*/
|
|
2966
3054
|
readonly v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest;
|
|
2967
3055
|
}
|
|
3056
|
+
/**
|
|
3057
|
+
* Request parameters for v1GetPlateSolveCatalogDiff operation in DefaultApi.
|
|
3058
|
+
* @export
|
|
3059
|
+
* @interface DefaultApiV1GetPlateSolveCatalogDiffRequest
|
|
3060
|
+
*/
|
|
3061
|
+
export interface DefaultApiV1GetPlateSolveCatalogDiffRequest {
|
|
3062
|
+
/**
|
|
3063
|
+
*
|
|
3064
|
+
* @type {V1GetPlateSolveCatalogDiffRequest}
|
|
3065
|
+
* @memberof DefaultApiV1GetPlateSolveCatalogDiff
|
|
3066
|
+
*/
|
|
3067
|
+
readonly v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest;
|
|
3068
|
+
}
|
|
2968
3069
|
/**
|
|
2969
3070
|
* Request parameters for v1MountMatch operation in DefaultApi.
|
|
2970
3071
|
* @export
|
|
@@ -3238,6 +3339,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3238
3339
|
* @memberof DefaultApi
|
|
3239
3340
|
*/
|
|
3240
3341
|
v1GetOrCreateOpticalTube(requestParameters: DefaultApiV1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OpticalTube, any>>;
|
|
3342
|
+
/**
|
|
3343
|
+
* Get a diff of plate solve catalog files.
|
|
3344
|
+
* @param {DefaultApiV1GetPlateSolveCatalogDiffRequest} requestParameters Request parameters.
|
|
3345
|
+
* @param {*} [options] Override http request option.
|
|
3346
|
+
* @throws {RequiredError}
|
|
3347
|
+
* @memberof DefaultApi
|
|
3348
|
+
*/
|
|
3349
|
+
v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1PlateSolveCatalogFileDownload[], any>>;
|
|
3241
3350
|
/**
|
|
3242
3351
|
* Match mount.
|
|
3243
3352
|
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -158,6 +158,15 @@ export const V1NodeDiagnosticType = {
|
|
|
158
158
|
CPU_USAGE_LAST_SECOND_PCT: 'CPU_USAGE_LAST_SECOND_PCT',
|
|
159
159
|
CPU_USAGE_LAST_MINUTE_PCT: 'CPU_USAGE_LAST_MINUTE_PCT'
|
|
160
160
|
};
|
|
161
|
+
/**
|
|
162
|
+
*
|
|
163
|
+
* @export
|
|
164
|
+
* @enum {string}
|
|
165
|
+
*/
|
|
166
|
+
export const V1PlateSolveCatalogIdentifier = {
|
|
167
|
+
TWO_MASS_4100: 'TWO_MASS_4100',
|
|
168
|
+
TWO_MASS_LITE: 'TWO_MASS_LITE'
|
|
169
|
+
};
|
|
161
170
|
/**
|
|
162
171
|
* DefaultApi - axios parameter creator
|
|
163
172
|
* @export
|
|
@@ -980,6 +989,39 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
980
989
|
options: localVarRequestOptions,
|
|
981
990
|
};
|
|
982
991
|
}),
|
|
992
|
+
/**
|
|
993
|
+
* Get a diff of plate solve catalog files.
|
|
994
|
+
* @param {V1GetPlateSolveCatalogDiffRequest} v1GetPlateSolveCatalogDiffRequest
|
|
995
|
+
* @param {*} [options] Override http request option.
|
|
996
|
+
* @throws {RequiredError}
|
|
997
|
+
*/
|
|
998
|
+
v1GetPlateSolveCatalogDiff: (v1GetPlateSolveCatalogDiffRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
999
|
+
// verify required parameter 'v1GetPlateSolveCatalogDiffRequest' is not null or undefined
|
|
1000
|
+
assertParamExists('v1GetPlateSolveCatalogDiff', 'v1GetPlateSolveCatalogDiffRequest', v1GetPlateSolveCatalogDiffRequest);
|
|
1001
|
+
const localVarPath = `/v1/plate-solve-catalog-diff`;
|
|
1002
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1003
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1004
|
+
let baseOptions;
|
|
1005
|
+
if (configuration) {
|
|
1006
|
+
baseOptions = configuration.baseOptions;
|
|
1007
|
+
}
|
|
1008
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
1009
|
+
const localVarHeaderParameter = {};
|
|
1010
|
+
const localVarQueryParameter = {};
|
|
1011
|
+
// authentication Roles required
|
|
1012
|
+
// authentication BearerToken required
|
|
1013
|
+
// http bearer authentication required
|
|
1014
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1015
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1016
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1017
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1018
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1019
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1GetPlateSolveCatalogDiffRequest, localVarRequestOptions, configuration);
|
|
1020
|
+
return {
|
|
1021
|
+
url: toPathString(localVarUrlObj),
|
|
1022
|
+
options: localVarRequestOptions,
|
|
1023
|
+
};
|
|
1024
|
+
}),
|
|
983
1025
|
/**
|
|
984
1026
|
* Match mount.
|
|
985
1027
|
* @param {string} [model]
|
|
@@ -1453,6 +1495,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1453
1495
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1454
1496
|
});
|
|
1455
1497
|
},
|
|
1498
|
+
/**
|
|
1499
|
+
* Get a diff of plate solve catalog files.
|
|
1500
|
+
* @param {V1GetPlateSolveCatalogDiffRequest} v1GetPlateSolveCatalogDiffRequest
|
|
1501
|
+
* @param {*} [options] Override http request option.
|
|
1502
|
+
* @throws {RequiredError}
|
|
1503
|
+
*/
|
|
1504
|
+
v1GetPlateSolveCatalogDiff(v1GetPlateSolveCatalogDiffRequest, options) {
|
|
1505
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1506
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetPlateSolveCatalogDiff(v1GetPlateSolveCatalogDiffRequest, options);
|
|
1507
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1508
|
+
});
|
|
1509
|
+
},
|
|
1456
1510
|
/**
|
|
1457
1511
|
* Match mount.
|
|
1458
1512
|
* @param {string} [model]
|
|
@@ -1737,6 +1791,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1737
1791
|
v1GetOrCreateOpticalTube(requestParameters, options) {
|
|
1738
1792
|
return localVarFp.v1GetOrCreateOpticalTube(requestParameters.v1GetOrCreateOpticalTubeRequest, options).then((request) => request(axios, basePath));
|
|
1739
1793
|
},
|
|
1794
|
+
/**
|
|
1795
|
+
* Get a diff of plate solve catalog files.
|
|
1796
|
+
* @param {DefaultApiV1GetPlateSolveCatalogDiffRequest} requestParameters Request parameters.
|
|
1797
|
+
* @param {*} [options] Override http request option.
|
|
1798
|
+
* @throws {RequiredError}
|
|
1799
|
+
*/
|
|
1800
|
+
v1GetPlateSolveCatalogDiff(requestParameters, options) {
|
|
1801
|
+
return localVarFp.v1GetPlateSolveCatalogDiff(requestParameters.v1GetPlateSolveCatalogDiffRequest, options).then((request) => request(axios, basePath));
|
|
1802
|
+
},
|
|
1740
1803
|
/**
|
|
1741
1804
|
* Match mount.
|
|
1742
1805
|
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
|
@@ -2028,6 +2091,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
2028
2091
|
v1GetOrCreateOpticalTube(requestParameters, options) {
|
|
2029
2092
|
return DefaultApiFp(this.configuration).v1GetOrCreateOpticalTube(requestParameters.v1GetOrCreateOpticalTubeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2030
2093
|
}
|
|
2094
|
+
/**
|
|
2095
|
+
* Get a diff of plate solve catalog files.
|
|
2096
|
+
* @param {DefaultApiV1GetPlateSolveCatalogDiffRequest} requestParameters Request parameters.
|
|
2097
|
+
* @param {*} [options] Override http request option.
|
|
2098
|
+
* @throws {RequiredError}
|
|
2099
|
+
* @memberof DefaultApi
|
|
2100
|
+
*/
|
|
2101
|
+
v1GetPlateSolveCatalogDiff(requestParameters, options) {
|
|
2102
|
+
return DefaultApiFp(this.configuration).v1GetPlateSolveCatalogDiff(requestParameters.v1GetPlateSolveCatalogDiffRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2103
|
+
}
|
|
2031
2104
|
/**
|
|
2032
2105
|
* Match mount.
|
|
2033
2106
|
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
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 Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
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 Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
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 Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
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 Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
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 Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
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 Platform
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
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 Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3442
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|