@ourskyai/platform-api 1.3.3368 → 1.3.3445
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 +165 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +116 -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 +116 -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.3445
|
|
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.3445 --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.3445
|
|
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,64 @@ 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
|
+
* @type {string}
|
|
1711
|
+
* @memberof V1PlateSolveCatalogFileDownload
|
|
1712
|
+
*/
|
|
1713
|
+
'base64Sha256Checksum': string;
|
|
1714
|
+
}
|
|
1715
|
+
/**
|
|
1716
|
+
*
|
|
1717
|
+
* @export
|
|
1718
|
+
* @enum {string}
|
|
1719
|
+
*/
|
|
1720
|
+
|
|
1721
|
+
export const V1PlateSolveCatalogIdentifier = {
|
|
1722
|
+
TWO_MASS_4100: 'TWO_MASS_4100',
|
|
1723
|
+
TWO_MASS_LITE: 'TWO_MASS_LITE'
|
|
1724
|
+
} as const;
|
|
1725
|
+
|
|
1726
|
+
export type V1PlateSolveCatalogIdentifier = typeof V1PlateSolveCatalogIdentifier[keyof typeof V1PlateSolveCatalogIdentifier];
|
|
1727
|
+
|
|
1728
|
+
|
|
1650
1729
|
/**
|
|
1651
1730
|
*
|
|
1652
1731
|
* @export
|
|
@@ -3112,6 +3191,47 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3112
3191
|
options: localVarRequestOptions,
|
|
3113
3192
|
};
|
|
3114
3193
|
},
|
|
3194
|
+
/**
|
|
3195
|
+
* Get a diff of plate solve catalog files.
|
|
3196
|
+
* @param {V1GetPlateSolveCatalogDiffRequest} v1GetPlateSolveCatalogDiffRequest
|
|
3197
|
+
* @param {*} [options] Override http request option.
|
|
3198
|
+
* @throws {RequiredError}
|
|
3199
|
+
*/
|
|
3200
|
+
v1GetPlateSolveCatalogDiff: async (v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3201
|
+
// verify required parameter 'v1GetPlateSolveCatalogDiffRequest' is not null or undefined
|
|
3202
|
+
assertParamExists('v1GetPlateSolveCatalogDiff', 'v1GetPlateSolveCatalogDiffRequest', v1GetPlateSolveCatalogDiffRequest)
|
|
3203
|
+
const localVarPath = `/v1/plate-solve-catalog-diff`;
|
|
3204
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3205
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3206
|
+
let baseOptions;
|
|
3207
|
+
if (configuration) {
|
|
3208
|
+
baseOptions = configuration.baseOptions;
|
|
3209
|
+
}
|
|
3210
|
+
|
|
3211
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
3212
|
+
const localVarHeaderParameter = {} as any;
|
|
3213
|
+
const localVarQueryParameter = {} as any;
|
|
3214
|
+
|
|
3215
|
+
// authentication Roles required
|
|
3216
|
+
|
|
3217
|
+
// authentication BearerToken required
|
|
3218
|
+
// http bearer authentication required
|
|
3219
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3220
|
+
|
|
3221
|
+
|
|
3222
|
+
|
|
3223
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3224
|
+
|
|
3225
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3226
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3227
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3228
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1GetPlateSolveCatalogDiffRequest, localVarRequestOptions, configuration)
|
|
3229
|
+
|
|
3230
|
+
return {
|
|
3231
|
+
url: toPathString(localVarUrlObj),
|
|
3232
|
+
options: localVarRequestOptions,
|
|
3233
|
+
};
|
|
3234
|
+
},
|
|
3115
3235
|
/**
|
|
3116
3236
|
* Match mount.
|
|
3117
3237
|
* @param {string} [model]
|
|
@@ -3580,6 +3700,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3580
3700
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetOrCreateOpticalTube(v1GetOrCreateOpticalTubeRequest, options);
|
|
3581
3701
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3582
3702
|
},
|
|
3703
|
+
/**
|
|
3704
|
+
* Get a diff of plate solve catalog files.
|
|
3705
|
+
* @param {V1GetPlateSolveCatalogDiffRequest} v1GetPlateSolveCatalogDiffRequest
|
|
3706
|
+
* @param {*} [options] Override http request option.
|
|
3707
|
+
* @throws {RequiredError}
|
|
3708
|
+
*/
|
|
3709
|
+
async v1GetPlateSolveCatalogDiff(v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>> {
|
|
3710
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetPlateSolveCatalogDiff(v1GetPlateSolveCatalogDiffRequest, options);
|
|
3711
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3712
|
+
},
|
|
3583
3713
|
/**
|
|
3584
3714
|
* Match mount.
|
|
3585
3715
|
* @param {string} [model]
|
|
@@ -3855,6 +3985,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3855
3985
|
v1GetOrCreateOpticalTube(requestParameters: DefaultApiV1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<V1OpticalTube> {
|
|
3856
3986
|
return localVarFp.v1GetOrCreateOpticalTube(requestParameters.v1GetOrCreateOpticalTubeRequest, options).then((request) => request(axios, basePath));
|
|
3857
3987
|
},
|
|
3988
|
+
/**
|
|
3989
|
+
* Get a diff of plate solve catalog files.
|
|
3990
|
+
* @param {DefaultApiV1GetPlateSolveCatalogDiffRequest} requestParameters Request parameters.
|
|
3991
|
+
* @param {*} [options] Override http request option.
|
|
3992
|
+
* @throws {RequiredError}
|
|
3993
|
+
*/
|
|
3994
|
+
v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1PlateSolveCatalogFileDownload>> {
|
|
3995
|
+
return localVarFp.v1GetPlateSolveCatalogDiff(requestParameters.v1GetPlateSolveCatalogDiffRequest, options).then((request) => request(axios, basePath));
|
|
3996
|
+
},
|
|
3858
3997
|
/**
|
|
3859
3998
|
* Match mount.
|
|
3860
3999
|
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
|
@@ -4253,6 +4392,20 @@ export interface DefaultApiV1GetOrCreateOpticalTubeRequest {
|
|
|
4253
4392
|
readonly v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest
|
|
4254
4393
|
}
|
|
4255
4394
|
|
|
4395
|
+
/**
|
|
4396
|
+
* Request parameters for v1GetPlateSolveCatalogDiff operation in DefaultApi.
|
|
4397
|
+
* @export
|
|
4398
|
+
* @interface DefaultApiV1GetPlateSolveCatalogDiffRequest
|
|
4399
|
+
*/
|
|
4400
|
+
export interface DefaultApiV1GetPlateSolveCatalogDiffRequest {
|
|
4401
|
+
/**
|
|
4402
|
+
*
|
|
4403
|
+
* @type {V1GetPlateSolveCatalogDiffRequest}
|
|
4404
|
+
* @memberof DefaultApiV1GetPlateSolveCatalogDiff
|
|
4405
|
+
*/
|
|
4406
|
+
readonly v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest
|
|
4407
|
+
}
|
|
4408
|
+
|
|
4256
4409
|
/**
|
|
4257
4410
|
* Request parameters for v1MountMatch operation in DefaultApi.
|
|
4258
4411
|
* @export
|
|
@@ -4605,6 +4758,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
4605
4758
|
return DefaultApiFp(this.configuration).v1GetOrCreateOpticalTube(requestParameters.v1GetOrCreateOpticalTubeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4606
4759
|
}
|
|
4607
4760
|
|
|
4761
|
+
/**
|
|
4762
|
+
* Get a diff of plate solve catalog files.
|
|
4763
|
+
* @param {DefaultApiV1GetPlateSolveCatalogDiffRequest} requestParameters Request parameters.
|
|
4764
|
+
* @param {*} [options] Override http request option.
|
|
4765
|
+
* @throws {RequiredError}
|
|
4766
|
+
* @memberof DefaultApi
|
|
4767
|
+
*/
|
|
4768
|
+
public v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig) {
|
|
4769
|
+
return DefaultApiFp(this.configuration).v1GetPlateSolveCatalogDiff(requestParameters.v1GetPlateSolveCatalogDiffRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4770
|
+
}
|
|
4771
|
+
|
|
4608
4772
|
/**
|
|
4609
4773
|
* Match mount.
|
|
4610
4774
|
* @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.3445
|
|
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.3445
|
|
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.3445
|
|
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.3445
|
|
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,60 @@ 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
|
+
* @type {string}
|
|
1631
|
+
* @memberof V1PlateSolveCatalogFileDownload
|
|
1632
|
+
*/
|
|
1633
|
+
'base64Sha256Checksum': string;
|
|
1634
|
+
}
|
|
1635
|
+
/**
|
|
1636
|
+
*
|
|
1637
|
+
* @export
|
|
1638
|
+
* @enum {string}
|
|
1639
|
+
*/
|
|
1640
|
+
export declare const V1PlateSolveCatalogIdentifier: {
|
|
1641
|
+
readonly TWO_MASS_4100: "TWO_MASS_4100";
|
|
1642
|
+
readonly TWO_MASS_LITE: "TWO_MASS_LITE";
|
|
1643
|
+
};
|
|
1644
|
+
export type V1PlateSolveCatalogIdentifier = typeof V1PlateSolveCatalogIdentifier[keyof typeof V1PlateSolveCatalogIdentifier];
|
|
1572
1645
|
/**
|
|
1573
1646
|
*
|
|
1574
1647
|
* @export
|
|
@@ -2184,6 +2257,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2184
2257
|
* @throws {RequiredError}
|
|
2185
2258
|
*/
|
|
2186
2259
|
v1GetOrCreateOpticalTube: (v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2260
|
+
/**
|
|
2261
|
+
* Get a diff of plate solve catalog files.
|
|
2262
|
+
* @param {V1GetPlateSolveCatalogDiffRequest} v1GetPlateSolveCatalogDiffRequest
|
|
2263
|
+
* @param {*} [options] Override http request option.
|
|
2264
|
+
* @throws {RequiredError}
|
|
2265
|
+
*/
|
|
2266
|
+
v1GetPlateSolveCatalogDiff: (v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2187
2267
|
/**
|
|
2188
2268
|
* Match mount.
|
|
2189
2269
|
* @param {string} [model]
|
|
@@ -2400,6 +2480,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2400
2480
|
* @throws {RequiredError}
|
|
2401
2481
|
*/
|
|
2402
2482
|
v1GetOrCreateOpticalTube(v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OpticalTube>>;
|
|
2483
|
+
/**
|
|
2484
|
+
* Get a diff of plate solve catalog files.
|
|
2485
|
+
* @param {V1GetPlateSolveCatalogDiffRequest} v1GetPlateSolveCatalogDiffRequest
|
|
2486
|
+
* @param {*} [options] Override http request option.
|
|
2487
|
+
* @throws {RequiredError}
|
|
2488
|
+
*/
|
|
2489
|
+
v1GetPlateSolveCatalogDiff(v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>>;
|
|
2403
2490
|
/**
|
|
2404
2491
|
* Match mount.
|
|
2405
2492
|
* @param {string} [model]
|
|
@@ -2608,6 +2695,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2608
2695
|
* @throws {RequiredError}
|
|
2609
2696
|
*/
|
|
2610
2697
|
v1GetOrCreateOpticalTube(requestParameters: DefaultApiV1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<V1OpticalTube>;
|
|
2698
|
+
/**
|
|
2699
|
+
* Get a diff of plate solve catalog files.
|
|
2700
|
+
* @param {DefaultApiV1GetPlateSolveCatalogDiffRequest} requestParameters Request parameters.
|
|
2701
|
+
* @param {*} [options] Override http request option.
|
|
2702
|
+
* @throws {RequiredError}
|
|
2703
|
+
*/
|
|
2704
|
+
v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>;
|
|
2611
2705
|
/**
|
|
2612
2706
|
* Match mount.
|
|
2613
2707
|
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
|
@@ -2965,6 +3059,19 @@ export interface DefaultApiV1GetOrCreateOpticalTubeRequest {
|
|
|
2965
3059
|
*/
|
|
2966
3060
|
readonly v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest;
|
|
2967
3061
|
}
|
|
3062
|
+
/**
|
|
3063
|
+
* Request parameters for v1GetPlateSolveCatalogDiff operation in DefaultApi.
|
|
3064
|
+
* @export
|
|
3065
|
+
* @interface DefaultApiV1GetPlateSolveCatalogDiffRequest
|
|
3066
|
+
*/
|
|
3067
|
+
export interface DefaultApiV1GetPlateSolveCatalogDiffRequest {
|
|
3068
|
+
/**
|
|
3069
|
+
*
|
|
3070
|
+
* @type {V1GetPlateSolveCatalogDiffRequest}
|
|
3071
|
+
* @memberof DefaultApiV1GetPlateSolveCatalogDiff
|
|
3072
|
+
*/
|
|
3073
|
+
readonly v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest;
|
|
3074
|
+
}
|
|
2968
3075
|
/**
|
|
2969
3076
|
* Request parameters for v1MountMatch operation in DefaultApi.
|
|
2970
3077
|
* @export
|
|
@@ -3238,6 +3345,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3238
3345
|
* @memberof DefaultApi
|
|
3239
3346
|
*/
|
|
3240
3347
|
v1GetOrCreateOpticalTube(requestParameters: DefaultApiV1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OpticalTube, any>>;
|
|
3348
|
+
/**
|
|
3349
|
+
* Get a diff of plate solve catalog files.
|
|
3350
|
+
* @param {DefaultApiV1GetPlateSolveCatalogDiffRequest} requestParameters Request parameters.
|
|
3351
|
+
* @param {*} [options] Override http request option.
|
|
3352
|
+
* @throws {RequiredError}
|
|
3353
|
+
* @memberof DefaultApi
|
|
3354
|
+
*/
|
|
3355
|
+
v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1PlateSolveCatalogFileDownload[], any>>;
|
|
3241
3356
|
/**
|
|
3242
3357
|
* Match mount.
|
|
3243
3358
|
* @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.3445
|
|
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.3445
|
|
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.3445
|
|
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.3445
|
|
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.3445
|
|
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.3445
|
|
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.3445
|
|
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.3445
|
|
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,60 @@ 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
|
+
* @type {string}
|
|
1631
|
+
* @memberof V1PlateSolveCatalogFileDownload
|
|
1632
|
+
*/
|
|
1633
|
+
'base64Sha256Checksum': string;
|
|
1634
|
+
}
|
|
1635
|
+
/**
|
|
1636
|
+
*
|
|
1637
|
+
* @export
|
|
1638
|
+
* @enum {string}
|
|
1639
|
+
*/
|
|
1640
|
+
export declare const V1PlateSolveCatalogIdentifier: {
|
|
1641
|
+
readonly TWO_MASS_4100: "TWO_MASS_4100";
|
|
1642
|
+
readonly TWO_MASS_LITE: "TWO_MASS_LITE";
|
|
1643
|
+
};
|
|
1644
|
+
export type V1PlateSolveCatalogIdentifier = typeof V1PlateSolveCatalogIdentifier[keyof typeof V1PlateSolveCatalogIdentifier];
|
|
1572
1645
|
/**
|
|
1573
1646
|
*
|
|
1574
1647
|
* @export
|
|
@@ -2184,6 +2257,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2184
2257
|
* @throws {RequiredError}
|
|
2185
2258
|
*/
|
|
2186
2259
|
v1GetOrCreateOpticalTube: (v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2260
|
+
/**
|
|
2261
|
+
* Get a diff of plate solve catalog files.
|
|
2262
|
+
* @param {V1GetPlateSolveCatalogDiffRequest} v1GetPlateSolveCatalogDiffRequest
|
|
2263
|
+
* @param {*} [options] Override http request option.
|
|
2264
|
+
* @throws {RequiredError}
|
|
2265
|
+
*/
|
|
2266
|
+
v1GetPlateSolveCatalogDiff: (v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2187
2267
|
/**
|
|
2188
2268
|
* Match mount.
|
|
2189
2269
|
* @param {string} [model]
|
|
@@ -2400,6 +2480,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2400
2480
|
* @throws {RequiredError}
|
|
2401
2481
|
*/
|
|
2402
2482
|
v1GetOrCreateOpticalTube(v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1OpticalTube>>;
|
|
2483
|
+
/**
|
|
2484
|
+
* Get a diff of plate solve catalog files.
|
|
2485
|
+
* @param {V1GetPlateSolveCatalogDiffRequest} v1GetPlateSolveCatalogDiffRequest
|
|
2486
|
+
* @param {*} [options] Override http request option.
|
|
2487
|
+
* @throws {RequiredError}
|
|
2488
|
+
*/
|
|
2489
|
+
v1GetPlateSolveCatalogDiff(v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>>;
|
|
2403
2490
|
/**
|
|
2404
2491
|
* Match mount.
|
|
2405
2492
|
* @param {string} [model]
|
|
@@ -2608,6 +2695,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2608
2695
|
* @throws {RequiredError}
|
|
2609
2696
|
*/
|
|
2610
2697
|
v1GetOrCreateOpticalTube(requestParameters: DefaultApiV1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<V1OpticalTube>;
|
|
2698
|
+
/**
|
|
2699
|
+
* Get a diff of plate solve catalog files.
|
|
2700
|
+
* @param {DefaultApiV1GetPlateSolveCatalogDiffRequest} requestParameters Request parameters.
|
|
2701
|
+
* @param {*} [options] Override http request option.
|
|
2702
|
+
* @throws {RequiredError}
|
|
2703
|
+
*/
|
|
2704
|
+
v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>;
|
|
2611
2705
|
/**
|
|
2612
2706
|
* Match mount.
|
|
2613
2707
|
* @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
|
|
@@ -2965,6 +3059,19 @@ export interface DefaultApiV1GetOrCreateOpticalTubeRequest {
|
|
|
2965
3059
|
*/
|
|
2966
3060
|
readonly v1GetOrCreateOpticalTubeRequest: V1GetOrCreateOpticalTubeRequest;
|
|
2967
3061
|
}
|
|
3062
|
+
/**
|
|
3063
|
+
* Request parameters for v1GetPlateSolveCatalogDiff operation in DefaultApi.
|
|
3064
|
+
* @export
|
|
3065
|
+
* @interface DefaultApiV1GetPlateSolveCatalogDiffRequest
|
|
3066
|
+
*/
|
|
3067
|
+
export interface DefaultApiV1GetPlateSolveCatalogDiffRequest {
|
|
3068
|
+
/**
|
|
3069
|
+
*
|
|
3070
|
+
* @type {V1GetPlateSolveCatalogDiffRequest}
|
|
3071
|
+
* @memberof DefaultApiV1GetPlateSolveCatalogDiff
|
|
3072
|
+
*/
|
|
3073
|
+
readonly v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest;
|
|
3074
|
+
}
|
|
2968
3075
|
/**
|
|
2969
3076
|
* Request parameters for v1MountMatch operation in DefaultApi.
|
|
2970
3077
|
* @export
|
|
@@ -3238,6 +3345,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3238
3345
|
* @memberof DefaultApi
|
|
3239
3346
|
*/
|
|
3240
3347
|
v1GetOrCreateOpticalTube(requestParameters: DefaultApiV1GetOrCreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OpticalTube, any>>;
|
|
3348
|
+
/**
|
|
3349
|
+
* Get a diff of plate solve catalog files.
|
|
3350
|
+
* @param {DefaultApiV1GetPlateSolveCatalogDiffRequest} requestParameters Request parameters.
|
|
3351
|
+
* @param {*} [options] Override http request option.
|
|
3352
|
+
* @throws {RequiredError}
|
|
3353
|
+
* @memberof DefaultApi
|
|
3354
|
+
*/
|
|
3355
|
+
v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1PlateSolveCatalogFileDownload[], any>>;
|
|
3241
3356
|
/**
|
|
3242
3357
|
* Match mount.
|
|
3243
3358
|
* @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.3445
|
|
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.3445
|
|
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.3445
|
|
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.3445
|
|
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.3445
|
|
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.3445
|
|
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.3445
|
|
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.3445
|
|
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.3445
|
|
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.3445
|
|
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.3445
|
|
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.3445
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|