@ourskyai/astro-api 1.3.2437 → 1.3.2584
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 +173 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +85 -1
- package/dist/api.js +131 -1
- 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 +85 -1
- package/dist/esm/api.js +131 -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/astro-api@1.3.
|
|
1
|
+
## @ourskyai/astro-api@1.3.2584
|
|
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/astro-api@1.3.
|
|
39
|
+
npm install @ourskyai/astro-api@1.3.2584 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
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.2584
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2614,6 +2614,90 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2614
2614
|
options: localVarRequestOptions,
|
|
2615
2615
|
};
|
|
2616
2616
|
},
|
|
2617
|
+
/**
|
|
2618
|
+
* Delete an astro project with all associated assets and images.
|
|
2619
|
+
* @param {string} astroProjectId
|
|
2620
|
+
* @param {*} [options] Override http request option.
|
|
2621
|
+
* @throws {RequiredError}
|
|
2622
|
+
*/
|
|
2623
|
+
v1DeleteAstroProject: async (astroProjectId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2624
|
+
// verify required parameter 'astroProjectId' is not null or undefined
|
|
2625
|
+
assertParamExists('v1DeleteAstroProject', 'astroProjectId', astroProjectId)
|
|
2626
|
+
const localVarPath = `/v1/astro-project`;
|
|
2627
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2628
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2629
|
+
let baseOptions;
|
|
2630
|
+
if (configuration) {
|
|
2631
|
+
baseOptions = configuration.baseOptions;
|
|
2632
|
+
}
|
|
2633
|
+
|
|
2634
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
2635
|
+
const localVarHeaderParameter = {} as any;
|
|
2636
|
+
const localVarQueryParameter = {} as any;
|
|
2637
|
+
|
|
2638
|
+
// authentication Roles required
|
|
2639
|
+
|
|
2640
|
+
// authentication BearerToken required
|
|
2641
|
+
// http bearer authentication required
|
|
2642
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
2643
|
+
|
|
2644
|
+
if (astroProjectId !== undefined) {
|
|
2645
|
+
localVarQueryParameter['astroProjectId'] = astroProjectId;
|
|
2646
|
+
}
|
|
2647
|
+
|
|
2648
|
+
|
|
2649
|
+
|
|
2650
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2651
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2652
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2653
|
+
|
|
2654
|
+
return {
|
|
2655
|
+
url: toPathString(localVarUrlObj),
|
|
2656
|
+
options: localVarRequestOptions,
|
|
2657
|
+
};
|
|
2658
|
+
},
|
|
2659
|
+
/**
|
|
2660
|
+
* Delete a calibration master.
|
|
2661
|
+
* @param {string} calibrationMasterId
|
|
2662
|
+
* @param {*} [options] Override http request option.
|
|
2663
|
+
* @throws {RequiredError}
|
|
2664
|
+
*/
|
|
2665
|
+
v1DeleteCalibrationMaster: async (calibrationMasterId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2666
|
+
// verify required parameter 'calibrationMasterId' is not null or undefined
|
|
2667
|
+
assertParamExists('v1DeleteCalibrationMaster', 'calibrationMasterId', calibrationMasterId)
|
|
2668
|
+
const localVarPath = `/v1/calibration-master`;
|
|
2669
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2670
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2671
|
+
let baseOptions;
|
|
2672
|
+
if (configuration) {
|
|
2673
|
+
baseOptions = configuration.baseOptions;
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2676
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
2677
|
+
const localVarHeaderParameter = {} as any;
|
|
2678
|
+
const localVarQueryParameter = {} as any;
|
|
2679
|
+
|
|
2680
|
+
// authentication Roles required
|
|
2681
|
+
|
|
2682
|
+
// authentication BearerToken required
|
|
2683
|
+
// http bearer authentication required
|
|
2684
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
2685
|
+
|
|
2686
|
+
if (calibrationMasterId !== undefined) {
|
|
2687
|
+
localVarQueryParameter['calibrationMasterId'] = calibrationMasterId;
|
|
2688
|
+
}
|
|
2689
|
+
|
|
2690
|
+
|
|
2691
|
+
|
|
2692
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2693
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2694
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2695
|
+
|
|
2696
|
+
return {
|
|
2697
|
+
url: toPathString(localVarUrlObj),
|
|
2698
|
+
options: localVarRequestOptions,
|
|
2699
|
+
};
|
|
2700
|
+
},
|
|
2617
2701
|
/**
|
|
2618
2702
|
* Delete an image set.
|
|
2619
2703
|
* @param {string} id
|
|
@@ -3901,6 +3985,26 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3901
3985
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateNode(v1CreateNodeRequest, options);
|
|
3902
3986
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3903
3987
|
},
|
|
3988
|
+
/**
|
|
3989
|
+
* Delete an astro project with all associated assets and images.
|
|
3990
|
+
* @param {string} astroProjectId
|
|
3991
|
+
* @param {*} [options] Override http request option.
|
|
3992
|
+
* @throws {RequiredError}
|
|
3993
|
+
*/
|
|
3994
|
+
async v1DeleteAstroProject(astroProjectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
|
|
3995
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1DeleteAstroProject(astroProjectId, options);
|
|
3996
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3997
|
+
},
|
|
3998
|
+
/**
|
|
3999
|
+
* Delete a calibration master.
|
|
4000
|
+
* @param {string} calibrationMasterId
|
|
4001
|
+
* @param {*} [options] Override http request option.
|
|
4002
|
+
* @throws {RequiredError}
|
|
4003
|
+
*/
|
|
4004
|
+
async v1DeleteCalibrationMaster(calibrationMasterId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
|
|
4005
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1DeleteCalibrationMaster(calibrationMasterId, options);
|
|
4006
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4007
|
+
},
|
|
3904
4008
|
/**
|
|
3905
4009
|
* Delete an image set.
|
|
3906
4010
|
* @param {string} id
|
|
@@ -4284,6 +4388,24 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4284
4388
|
v1CreateNode(requestParameters: DefaultApiV1CreateNodeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate> {
|
|
4285
4389
|
return localVarFp.v1CreateNode(requestParameters.v1CreateNodeRequest, options).then((request) => request(axios, basePath));
|
|
4286
4390
|
},
|
|
4391
|
+
/**
|
|
4392
|
+
* Delete an astro project with all associated assets and images.
|
|
4393
|
+
* @param {DefaultApiV1DeleteAstroProjectRequest} requestParameters Request parameters.
|
|
4394
|
+
* @param {*} [options] Override http request option.
|
|
4395
|
+
* @throws {RequiredError}
|
|
4396
|
+
*/
|
|
4397
|
+
v1DeleteAstroProject(requestParameters: DefaultApiV1DeleteAstroProjectRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
4398
|
+
return localVarFp.v1DeleteAstroProject(requestParameters.astroProjectId, options).then((request) => request(axios, basePath));
|
|
4399
|
+
},
|
|
4400
|
+
/**
|
|
4401
|
+
* Delete a calibration master.
|
|
4402
|
+
* @param {DefaultApiV1DeleteCalibrationMasterRequest} requestParameters Request parameters.
|
|
4403
|
+
* @param {*} [options] Override http request option.
|
|
4404
|
+
* @throws {RequiredError}
|
|
4405
|
+
*/
|
|
4406
|
+
v1DeleteCalibrationMaster(requestParameters: DefaultApiV1DeleteCalibrationMasterRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
|
|
4407
|
+
return localVarFp.v1DeleteCalibrationMaster(requestParameters.calibrationMasterId, options).then((request) => request(axios, basePath));
|
|
4408
|
+
},
|
|
4287
4409
|
/**
|
|
4288
4410
|
* Delete an image set.
|
|
4289
4411
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -4722,6 +4844,34 @@ export interface DefaultApiV1CreateNodeRequest {
|
|
|
4722
4844
|
readonly v1CreateNodeRequest: V1CreateNodeRequest
|
|
4723
4845
|
}
|
|
4724
4846
|
|
|
4847
|
+
/**
|
|
4848
|
+
* Request parameters for v1DeleteAstroProject operation in DefaultApi.
|
|
4849
|
+
* @export
|
|
4850
|
+
* @interface DefaultApiV1DeleteAstroProjectRequest
|
|
4851
|
+
*/
|
|
4852
|
+
export interface DefaultApiV1DeleteAstroProjectRequest {
|
|
4853
|
+
/**
|
|
4854
|
+
*
|
|
4855
|
+
* @type {string}
|
|
4856
|
+
* @memberof DefaultApiV1DeleteAstroProject
|
|
4857
|
+
*/
|
|
4858
|
+
readonly astroProjectId: string
|
|
4859
|
+
}
|
|
4860
|
+
|
|
4861
|
+
/**
|
|
4862
|
+
* Request parameters for v1DeleteCalibrationMaster operation in DefaultApi.
|
|
4863
|
+
* @export
|
|
4864
|
+
* @interface DefaultApiV1DeleteCalibrationMasterRequest
|
|
4865
|
+
*/
|
|
4866
|
+
export interface DefaultApiV1DeleteCalibrationMasterRequest {
|
|
4867
|
+
/**
|
|
4868
|
+
*
|
|
4869
|
+
* @type {string}
|
|
4870
|
+
* @memberof DefaultApiV1DeleteCalibrationMaster
|
|
4871
|
+
*/
|
|
4872
|
+
readonly calibrationMasterId: string
|
|
4873
|
+
}
|
|
4874
|
+
|
|
4725
4875
|
/**
|
|
4726
4876
|
* Request parameters for v1DeleteImageSet operation in DefaultApi.
|
|
4727
4877
|
* @export
|
|
@@ -5210,6 +5360,28 @@ export class DefaultApi extends BaseAPI {
|
|
|
5210
5360
|
return DefaultApiFp(this.configuration).v1CreateNode(requestParameters.v1CreateNodeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
5211
5361
|
}
|
|
5212
5362
|
|
|
5363
|
+
/**
|
|
5364
|
+
* Delete an astro project with all associated assets and images.
|
|
5365
|
+
* @param {DefaultApiV1DeleteAstroProjectRequest} requestParameters Request parameters.
|
|
5366
|
+
* @param {*} [options] Override http request option.
|
|
5367
|
+
* @throws {RequiredError}
|
|
5368
|
+
* @memberof DefaultApi
|
|
5369
|
+
*/
|
|
5370
|
+
public v1DeleteAstroProject(requestParameters: DefaultApiV1DeleteAstroProjectRequest, options?: AxiosRequestConfig) {
|
|
5371
|
+
return DefaultApiFp(this.configuration).v1DeleteAstroProject(requestParameters.astroProjectId, options).then((request) => request(this.axios, this.basePath));
|
|
5372
|
+
}
|
|
5373
|
+
|
|
5374
|
+
/**
|
|
5375
|
+
* Delete a calibration master.
|
|
5376
|
+
* @param {DefaultApiV1DeleteCalibrationMasterRequest} requestParameters Request parameters.
|
|
5377
|
+
* @param {*} [options] Override http request option.
|
|
5378
|
+
* @throws {RequiredError}
|
|
5379
|
+
* @memberof DefaultApi
|
|
5380
|
+
*/
|
|
5381
|
+
public v1DeleteCalibrationMaster(requestParameters: DefaultApiV1DeleteCalibrationMasterRequest, options?: AxiosRequestConfig) {
|
|
5382
|
+
return DefaultApiFp(this.configuration).v1DeleteCalibrationMaster(requestParameters.calibrationMasterId, options).then((request) => request(this.axios, this.basePath));
|
|
5383
|
+
}
|
|
5384
|
+
|
|
5213
5385
|
/**
|
|
5214
5386
|
* Delete an image set.
|
|
5215
5387
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2143,6 +2143,20 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2143
2143
|
* @throws {RequiredError}
|
|
2144
2144
|
*/
|
|
2145
2145
|
v1CreateNode: (v1CreateNodeRequest: V1CreateNodeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2146
|
+
/**
|
|
2147
|
+
* Delete an astro project with all associated assets and images.
|
|
2148
|
+
* @param {string} astroProjectId
|
|
2149
|
+
* @param {*} [options] Override http request option.
|
|
2150
|
+
* @throws {RequiredError}
|
|
2151
|
+
*/
|
|
2152
|
+
v1DeleteAstroProject: (astroProjectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2153
|
+
/**
|
|
2154
|
+
* Delete a calibration master.
|
|
2155
|
+
* @param {string} calibrationMasterId
|
|
2156
|
+
* @param {*} [options] Override http request option.
|
|
2157
|
+
* @throws {RequiredError}
|
|
2158
|
+
*/
|
|
2159
|
+
v1DeleteCalibrationMaster: (calibrationMasterId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2146
2160
|
/**
|
|
2147
2161
|
* Delete an image set.
|
|
2148
2162
|
* @param {string} id
|
|
@@ -2425,6 +2439,20 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2425
2439
|
* @throws {RequiredError}
|
|
2426
2440
|
*/
|
|
2427
2441
|
v1CreateNode(v1CreateNodeRequest: V1CreateNodeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
2442
|
+
/**
|
|
2443
|
+
* Delete an astro project with all associated assets and images.
|
|
2444
|
+
* @param {string} astroProjectId
|
|
2445
|
+
* @param {*} [options] Override http request option.
|
|
2446
|
+
* @throws {RequiredError}
|
|
2447
|
+
*/
|
|
2448
|
+
v1DeleteAstroProject(astroProjectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
2449
|
+
/**
|
|
2450
|
+
* Delete a calibration master.
|
|
2451
|
+
* @param {string} calibrationMasterId
|
|
2452
|
+
* @param {*} [options] Override http request option.
|
|
2453
|
+
* @throws {RequiredError}
|
|
2454
|
+
*/
|
|
2455
|
+
v1DeleteCalibrationMaster(calibrationMasterId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
2428
2456
|
/**
|
|
2429
2457
|
* Delete an image set.
|
|
2430
2458
|
* @param {string} id
|
|
@@ -2700,6 +2728,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2700
2728
|
* @throws {RequiredError}
|
|
2701
2729
|
*/
|
|
2702
2730
|
v1CreateNode(requestParameters: DefaultApiV1CreateNodeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
2731
|
+
/**
|
|
2732
|
+
* Delete an astro project with all associated assets and images.
|
|
2733
|
+
* @param {DefaultApiV1DeleteAstroProjectRequest} requestParameters Request parameters.
|
|
2734
|
+
* @param {*} [options] Override http request option.
|
|
2735
|
+
* @throws {RequiredError}
|
|
2736
|
+
*/
|
|
2737
|
+
v1DeleteAstroProject(requestParameters: DefaultApiV1DeleteAstroProjectRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
2738
|
+
/**
|
|
2739
|
+
* Delete a calibration master.
|
|
2740
|
+
* @param {DefaultApiV1DeleteCalibrationMasterRequest} requestParameters Request parameters.
|
|
2741
|
+
* @param {*} [options] Override http request option.
|
|
2742
|
+
* @throws {RequiredError}
|
|
2743
|
+
*/
|
|
2744
|
+
v1DeleteCalibrationMaster(requestParameters: DefaultApiV1DeleteCalibrationMasterRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
2703
2745
|
/**
|
|
2704
2746
|
* Delete an image set.
|
|
2705
2747
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -3063,6 +3105,32 @@ export interface DefaultApiV1CreateNodeRequest {
|
|
|
3063
3105
|
*/
|
|
3064
3106
|
readonly v1CreateNodeRequest: V1CreateNodeRequest;
|
|
3065
3107
|
}
|
|
3108
|
+
/**
|
|
3109
|
+
* Request parameters for v1DeleteAstroProject operation in DefaultApi.
|
|
3110
|
+
* @export
|
|
3111
|
+
* @interface DefaultApiV1DeleteAstroProjectRequest
|
|
3112
|
+
*/
|
|
3113
|
+
export interface DefaultApiV1DeleteAstroProjectRequest {
|
|
3114
|
+
/**
|
|
3115
|
+
*
|
|
3116
|
+
* @type {string}
|
|
3117
|
+
* @memberof DefaultApiV1DeleteAstroProject
|
|
3118
|
+
*/
|
|
3119
|
+
readonly astroProjectId: string;
|
|
3120
|
+
}
|
|
3121
|
+
/**
|
|
3122
|
+
* Request parameters for v1DeleteCalibrationMaster operation in DefaultApi.
|
|
3123
|
+
* @export
|
|
3124
|
+
* @interface DefaultApiV1DeleteCalibrationMasterRequest
|
|
3125
|
+
*/
|
|
3126
|
+
export interface DefaultApiV1DeleteCalibrationMasterRequest {
|
|
3127
|
+
/**
|
|
3128
|
+
*
|
|
3129
|
+
* @type {string}
|
|
3130
|
+
* @memberof DefaultApiV1DeleteCalibrationMaster
|
|
3131
|
+
*/
|
|
3132
|
+
readonly calibrationMasterId: string;
|
|
3133
|
+
}
|
|
3066
3134
|
/**
|
|
3067
3135
|
* Request parameters for v1DeleteImageSet operation in DefaultApi.
|
|
3068
3136
|
* @export
|
|
@@ -3490,6 +3558,22 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3490
3558
|
* @memberof DefaultApi
|
|
3491
3559
|
*/
|
|
3492
3560
|
v1CreateNode(requestParameters: DefaultApiV1CreateNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
3561
|
+
/**
|
|
3562
|
+
* Delete an astro project with all associated assets and images.
|
|
3563
|
+
* @param {DefaultApiV1DeleteAstroProjectRequest} requestParameters Request parameters.
|
|
3564
|
+
* @param {*} [options] Override http request option.
|
|
3565
|
+
* @throws {RequiredError}
|
|
3566
|
+
* @memberof DefaultApi
|
|
3567
|
+
*/
|
|
3568
|
+
v1DeleteAstroProject(requestParameters: DefaultApiV1DeleteAstroProjectRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
3569
|
+
/**
|
|
3570
|
+
* Delete a calibration master.
|
|
3571
|
+
* @param {DefaultApiV1DeleteCalibrationMasterRequest} requestParameters Request parameters.
|
|
3572
|
+
* @param {*} [options] Override http request option.
|
|
3573
|
+
* @throws {RequiredError}
|
|
3574
|
+
* @memberof DefaultApi
|
|
3575
|
+
*/
|
|
3576
|
+
v1DeleteCalibrationMaster(requestParameters: DefaultApiV1DeleteCalibrationMasterRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
3493
3577
|
/**
|
|
3494
3578
|
* Delete an image set.
|
|
3495
3579
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Astro
|
|
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.2584
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -553,6 +553,74 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
553
553
|
options: localVarRequestOptions,
|
|
554
554
|
};
|
|
555
555
|
}),
|
|
556
|
+
/**
|
|
557
|
+
* Delete an astro project with all associated assets and images.
|
|
558
|
+
* @param {string} astroProjectId
|
|
559
|
+
* @param {*} [options] Override http request option.
|
|
560
|
+
* @throws {RequiredError}
|
|
561
|
+
*/
|
|
562
|
+
v1DeleteAstroProject: (astroProjectId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
563
|
+
// verify required parameter 'astroProjectId' is not null or undefined
|
|
564
|
+
(0, common_1.assertParamExists)('v1DeleteAstroProject', 'astroProjectId', astroProjectId);
|
|
565
|
+
const localVarPath = `/v1/astro-project`;
|
|
566
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
567
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
568
|
+
let baseOptions;
|
|
569
|
+
if (configuration) {
|
|
570
|
+
baseOptions = configuration.baseOptions;
|
|
571
|
+
}
|
|
572
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
573
|
+
const localVarHeaderParameter = {};
|
|
574
|
+
const localVarQueryParameter = {};
|
|
575
|
+
// authentication Roles required
|
|
576
|
+
// authentication BearerToken required
|
|
577
|
+
// http bearer authentication required
|
|
578
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
579
|
+
if (astroProjectId !== undefined) {
|
|
580
|
+
localVarQueryParameter['astroProjectId'] = astroProjectId;
|
|
581
|
+
}
|
|
582
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
583
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
584
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
585
|
+
return {
|
|
586
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
587
|
+
options: localVarRequestOptions,
|
|
588
|
+
};
|
|
589
|
+
}),
|
|
590
|
+
/**
|
|
591
|
+
* Delete a calibration master.
|
|
592
|
+
* @param {string} calibrationMasterId
|
|
593
|
+
* @param {*} [options] Override http request option.
|
|
594
|
+
* @throws {RequiredError}
|
|
595
|
+
*/
|
|
596
|
+
v1DeleteCalibrationMaster: (calibrationMasterId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
597
|
+
// verify required parameter 'calibrationMasterId' is not null or undefined
|
|
598
|
+
(0, common_1.assertParamExists)('v1DeleteCalibrationMaster', 'calibrationMasterId', calibrationMasterId);
|
|
599
|
+
const localVarPath = `/v1/calibration-master`;
|
|
600
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
601
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
602
|
+
let baseOptions;
|
|
603
|
+
if (configuration) {
|
|
604
|
+
baseOptions = configuration.baseOptions;
|
|
605
|
+
}
|
|
606
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
607
|
+
const localVarHeaderParameter = {};
|
|
608
|
+
const localVarQueryParameter = {};
|
|
609
|
+
// authentication Roles required
|
|
610
|
+
// authentication BearerToken required
|
|
611
|
+
// http bearer authentication required
|
|
612
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
613
|
+
if (calibrationMasterId !== undefined) {
|
|
614
|
+
localVarQueryParameter['calibrationMasterId'] = calibrationMasterId;
|
|
615
|
+
}
|
|
616
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
617
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
618
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
619
|
+
return {
|
|
620
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
621
|
+
options: localVarRequestOptions,
|
|
622
|
+
};
|
|
623
|
+
}),
|
|
556
624
|
/**
|
|
557
625
|
* Delete an image set.
|
|
558
626
|
* @param {string} id
|
|
@@ -1633,6 +1701,30 @@ const DefaultApiFp = function (configuration) {
|
|
|
1633
1701
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1634
1702
|
});
|
|
1635
1703
|
},
|
|
1704
|
+
/**
|
|
1705
|
+
* Delete an astro project with all associated assets and images.
|
|
1706
|
+
* @param {string} astroProjectId
|
|
1707
|
+
* @param {*} [options] Override http request option.
|
|
1708
|
+
* @throws {RequiredError}
|
|
1709
|
+
*/
|
|
1710
|
+
v1DeleteAstroProject(astroProjectId, options) {
|
|
1711
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1712
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1DeleteAstroProject(astroProjectId, options);
|
|
1713
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1714
|
+
});
|
|
1715
|
+
},
|
|
1716
|
+
/**
|
|
1717
|
+
* Delete a calibration master.
|
|
1718
|
+
* @param {string} calibrationMasterId
|
|
1719
|
+
* @param {*} [options] Override http request option.
|
|
1720
|
+
* @throws {RequiredError}
|
|
1721
|
+
*/
|
|
1722
|
+
v1DeleteCalibrationMaster(calibrationMasterId, options) {
|
|
1723
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1724
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1DeleteCalibrationMaster(calibrationMasterId, options);
|
|
1725
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1726
|
+
});
|
|
1727
|
+
},
|
|
1636
1728
|
/**
|
|
1637
1729
|
* Delete an image set.
|
|
1638
1730
|
* @param {string} id
|
|
@@ -2072,6 +2164,24 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2072
2164
|
v1CreateNode(requestParameters, options) {
|
|
2073
2165
|
return localVarFp.v1CreateNode(requestParameters.v1CreateNodeRequest, options).then((request) => request(axios, basePath));
|
|
2074
2166
|
},
|
|
2167
|
+
/**
|
|
2168
|
+
* Delete an astro project with all associated assets and images.
|
|
2169
|
+
* @param {DefaultApiV1DeleteAstroProjectRequest} requestParameters Request parameters.
|
|
2170
|
+
* @param {*} [options] Override http request option.
|
|
2171
|
+
* @throws {RequiredError}
|
|
2172
|
+
*/
|
|
2173
|
+
v1DeleteAstroProject(requestParameters, options) {
|
|
2174
|
+
return localVarFp.v1DeleteAstroProject(requestParameters.astroProjectId, options).then((request) => request(axios, basePath));
|
|
2175
|
+
},
|
|
2176
|
+
/**
|
|
2177
|
+
* Delete a calibration master.
|
|
2178
|
+
* @param {DefaultApiV1DeleteCalibrationMasterRequest} requestParameters Request parameters.
|
|
2179
|
+
* @param {*} [options] Override http request option.
|
|
2180
|
+
* @throws {RequiredError}
|
|
2181
|
+
*/
|
|
2182
|
+
v1DeleteCalibrationMaster(requestParameters, options) {
|
|
2183
|
+
return localVarFp.v1DeleteCalibrationMaster(requestParameters.calibrationMasterId, options).then((request) => request(axios, basePath));
|
|
2184
|
+
},
|
|
2075
2185
|
/**
|
|
2076
2186
|
* Delete an image set.
|
|
2077
2187
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -2428,6 +2538,26 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2428
2538
|
v1CreateNode(requestParameters, options) {
|
|
2429
2539
|
return (0, exports.DefaultApiFp)(this.configuration).v1CreateNode(requestParameters.v1CreateNodeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2430
2540
|
}
|
|
2541
|
+
/**
|
|
2542
|
+
* Delete an astro project with all associated assets and images.
|
|
2543
|
+
* @param {DefaultApiV1DeleteAstroProjectRequest} requestParameters Request parameters.
|
|
2544
|
+
* @param {*} [options] Override http request option.
|
|
2545
|
+
* @throws {RequiredError}
|
|
2546
|
+
* @memberof DefaultApi
|
|
2547
|
+
*/
|
|
2548
|
+
v1DeleteAstroProject(requestParameters, options) {
|
|
2549
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1DeleteAstroProject(requestParameters.astroProjectId, options).then((request) => request(this.axios, this.basePath));
|
|
2550
|
+
}
|
|
2551
|
+
/**
|
|
2552
|
+
* Delete a calibration master.
|
|
2553
|
+
* @param {DefaultApiV1DeleteCalibrationMasterRequest} requestParameters Request parameters.
|
|
2554
|
+
* @param {*} [options] Override http request option.
|
|
2555
|
+
* @throws {RequiredError}
|
|
2556
|
+
* @memberof DefaultApi
|
|
2557
|
+
*/
|
|
2558
|
+
v1DeleteCalibrationMaster(requestParameters, options) {
|
|
2559
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1DeleteCalibrationMaster(requestParameters.calibrationMasterId, options).then((request) => request(this.axios, this.basePath));
|
|
2560
|
+
}
|
|
2431
2561
|
/**
|
|
2432
2562
|
* Delete an image set.
|
|
2433
2563
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2143,6 +2143,20 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2143
2143
|
* @throws {RequiredError}
|
|
2144
2144
|
*/
|
|
2145
2145
|
v1CreateNode: (v1CreateNodeRequest: V1CreateNodeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2146
|
+
/**
|
|
2147
|
+
* Delete an astro project with all associated assets and images.
|
|
2148
|
+
* @param {string} astroProjectId
|
|
2149
|
+
* @param {*} [options] Override http request option.
|
|
2150
|
+
* @throws {RequiredError}
|
|
2151
|
+
*/
|
|
2152
|
+
v1DeleteAstroProject: (astroProjectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2153
|
+
/**
|
|
2154
|
+
* Delete a calibration master.
|
|
2155
|
+
* @param {string} calibrationMasterId
|
|
2156
|
+
* @param {*} [options] Override http request option.
|
|
2157
|
+
* @throws {RequiredError}
|
|
2158
|
+
*/
|
|
2159
|
+
v1DeleteCalibrationMaster: (calibrationMasterId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2146
2160
|
/**
|
|
2147
2161
|
* Delete an image set.
|
|
2148
2162
|
* @param {string} id
|
|
@@ -2425,6 +2439,20 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2425
2439
|
* @throws {RequiredError}
|
|
2426
2440
|
*/
|
|
2427
2441
|
v1CreateNode(v1CreateNodeRequest: V1CreateNodeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
|
|
2442
|
+
/**
|
|
2443
|
+
* Delete an astro project with all associated assets and images.
|
|
2444
|
+
* @param {string} astroProjectId
|
|
2445
|
+
* @param {*} [options] Override http request option.
|
|
2446
|
+
* @throws {RequiredError}
|
|
2447
|
+
*/
|
|
2448
|
+
v1DeleteAstroProject(astroProjectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
2449
|
+
/**
|
|
2450
|
+
* Delete a calibration master.
|
|
2451
|
+
* @param {string} calibrationMasterId
|
|
2452
|
+
* @param {*} [options] Override http request option.
|
|
2453
|
+
* @throws {RequiredError}
|
|
2454
|
+
*/
|
|
2455
|
+
v1DeleteCalibrationMaster(calibrationMasterId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
|
|
2428
2456
|
/**
|
|
2429
2457
|
* Delete an image set.
|
|
2430
2458
|
* @param {string} id
|
|
@@ -2700,6 +2728,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2700
2728
|
* @throws {RequiredError}
|
|
2701
2729
|
*/
|
|
2702
2730
|
v1CreateNode(requestParameters: DefaultApiV1CreateNodeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
|
|
2731
|
+
/**
|
|
2732
|
+
* Delete an astro project with all associated assets and images.
|
|
2733
|
+
* @param {DefaultApiV1DeleteAstroProjectRequest} requestParameters Request parameters.
|
|
2734
|
+
* @param {*} [options] Override http request option.
|
|
2735
|
+
* @throws {RequiredError}
|
|
2736
|
+
*/
|
|
2737
|
+
v1DeleteAstroProject(requestParameters: DefaultApiV1DeleteAstroProjectRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
2738
|
+
/**
|
|
2739
|
+
* Delete a calibration master.
|
|
2740
|
+
* @param {DefaultApiV1DeleteCalibrationMasterRequest} requestParameters Request parameters.
|
|
2741
|
+
* @param {*} [options] Override http request option.
|
|
2742
|
+
* @throws {RequiredError}
|
|
2743
|
+
*/
|
|
2744
|
+
v1DeleteCalibrationMaster(requestParameters: DefaultApiV1DeleteCalibrationMasterRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
|
|
2703
2745
|
/**
|
|
2704
2746
|
* Delete an image set.
|
|
2705
2747
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -3063,6 +3105,32 @@ export interface DefaultApiV1CreateNodeRequest {
|
|
|
3063
3105
|
*/
|
|
3064
3106
|
readonly v1CreateNodeRequest: V1CreateNodeRequest;
|
|
3065
3107
|
}
|
|
3108
|
+
/**
|
|
3109
|
+
* Request parameters for v1DeleteAstroProject operation in DefaultApi.
|
|
3110
|
+
* @export
|
|
3111
|
+
* @interface DefaultApiV1DeleteAstroProjectRequest
|
|
3112
|
+
*/
|
|
3113
|
+
export interface DefaultApiV1DeleteAstroProjectRequest {
|
|
3114
|
+
/**
|
|
3115
|
+
*
|
|
3116
|
+
* @type {string}
|
|
3117
|
+
* @memberof DefaultApiV1DeleteAstroProject
|
|
3118
|
+
*/
|
|
3119
|
+
readonly astroProjectId: string;
|
|
3120
|
+
}
|
|
3121
|
+
/**
|
|
3122
|
+
* Request parameters for v1DeleteCalibrationMaster operation in DefaultApi.
|
|
3123
|
+
* @export
|
|
3124
|
+
* @interface DefaultApiV1DeleteCalibrationMasterRequest
|
|
3125
|
+
*/
|
|
3126
|
+
export interface DefaultApiV1DeleteCalibrationMasterRequest {
|
|
3127
|
+
/**
|
|
3128
|
+
*
|
|
3129
|
+
* @type {string}
|
|
3130
|
+
* @memberof DefaultApiV1DeleteCalibrationMaster
|
|
3131
|
+
*/
|
|
3132
|
+
readonly calibrationMasterId: string;
|
|
3133
|
+
}
|
|
3066
3134
|
/**
|
|
3067
3135
|
* Request parameters for v1DeleteImageSet operation in DefaultApi.
|
|
3068
3136
|
* @export
|
|
@@ -3490,6 +3558,22 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3490
3558
|
* @memberof DefaultApi
|
|
3491
3559
|
*/
|
|
3492
3560
|
v1CreateNode(requestParameters: DefaultApiV1CreateNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
|
|
3561
|
+
/**
|
|
3562
|
+
* Delete an astro project with all associated assets and images.
|
|
3563
|
+
* @param {DefaultApiV1DeleteAstroProjectRequest} requestParameters Request parameters.
|
|
3564
|
+
* @param {*} [options] Override http request option.
|
|
3565
|
+
* @throws {RequiredError}
|
|
3566
|
+
* @memberof DefaultApi
|
|
3567
|
+
*/
|
|
3568
|
+
v1DeleteAstroProject(requestParameters: DefaultApiV1DeleteAstroProjectRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
3569
|
+
/**
|
|
3570
|
+
* Delete a calibration master.
|
|
3571
|
+
* @param {DefaultApiV1DeleteCalibrationMasterRequest} requestParameters Request parameters.
|
|
3572
|
+
* @param {*} [options] Override http request option.
|
|
3573
|
+
* @throws {RequiredError}
|
|
3574
|
+
* @memberof DefaultApi
|
|
3575
|
+
*/
|
|
3576
|
+
v1DeleteCalibrationMaster(requestParameters: DefaultApiV1DeleteCalibrationMasterRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
|
|
3493
3577
|
/**
|
|
3494
3578
|
* Delete an image set.
|
|
3495
3579
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
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.2584
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -550,6 +550,74 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
550
550
|
options: localVarRequestOptions,
|
|
551
551
|
};
|
|
552
552
|
}),
|
|
553
|
+
/**
|
|
554
|
+
* Delete an astro project with all associated assets and images.
|
|
555
|
+
* @param {string} astroProjectId
|
|
556
|
+
* @param {*} [options] Override http request option.
|
|
557
|
+
* @throws {RequiredError}
|
|
558
|
+
*/
|
|
559
|
+
v1DeleteAstroProject: (astroProjectId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
560
|
+
// verify required parameter 'astroProjectId' is not null or undefined
|
|
561
|
+
assertParamExists('v1DeleteAstroProject', 'astroProjectId', astroProjectId);
|
|
562
|
+
const localVarPath = `/v1/astro-project`;
|
|
563
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
564
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
565
|
+
let baseOptions;
|
|
566
|
+
if (configuration) {
|
|
567
|
+
baseOptions = configuration.baseOptions;
|
|
568
|
+
}
|
|
569
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
570
|
+
const localVarHeaderParameter = {};
|
|
571
|
+
const localVarQueryParameter = {};
|
|
572
|
+
// authentication Roles required
|
|
573
|
+
// authentication BearerToken required
|
|
574
|
+
// http bearer authentication required
|
|
575
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
576
|
+
if (astroProjectId !== undefined) {
|
|
577
|
+
localVarQueryParameter['astroProjectId'] = astroProjectId;
|
|
578
|
+
}
|
|
579
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
580
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
581
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
582
|
+
return {
|
|
583
|
+
url: toPathString(localVarUrlObj),
|
|
584
|
+
options: localVarRequestOptions,
|
|
585
|
+
};
|
|
586
|
+
}),
|
|
587
|
+
/**
|
|
588
|
+
* Delete a calibration master.
|
|
589
|
+
* @param {string} calibrationMasterId
|
|
590
|
+
* @param {*} [options] Override http request option.
|
|
591
|
+
* @throws {RequiredError}
|
|
592
|
+
*/
|
|
593
|
+
v1DeleteCalibrationMaster: (calibrationMasterId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
594
|
+
// verify required parameter 'calibrationMasterId' is not null or undefined
|
|
595
|
+
assertParamExists('v1DeleteCalibrationMaster', 'calibrationMasterId', calibrationMasterId);
|
|
596
|
+
const localVarPath = `/v1/calibration-master`;
|
|
597
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
598
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
599
|
+
let baseOptions;
|
|
600
|
+
if (configuration) {
|
|
601
|
+
baseOptions = configuration.baseOptions;
|
|
602
|
+
}
|
|
603
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
604
|
+
const localVarHeaderParameter = {};
|
|
605
|
+
const localVarQueryParameter = {};
|
|
606
|
+
// authentication Roles required
|
|
607
|
+
// authentication BearerToken required
|
|
608
|
+
// http bearer authentication required
|
|
609
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
610
|
+
if (calibrationMasterId !== undefined) {
|
|
611
|
+
localVarQueryParameter['calibrationMasterId'] = calibrationMasterId;
|
|
612
|
+
}
|
|
613
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
614
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
615
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
616
|
+
return {
|
|
617
|
+
url: toPathString(localVarUrlObj),
|
|
618
|
+
options: localVarRequestOptions,
|
|
619
|
+
};
|
|
620
|
+
}),
|
|
553
621
|
/**
|
|
554
622
|
* Delete an image set.
|
|
555
623
|
* @param {string} id
|
|
@@ -1629,6 +1697,30 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1629
1697
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1630
1698
|
});
|
|
1631
1699
|
},
|
|
1700
|
+
/**
|
|
1701
|
+
* Delete an astro project with all associated assets and images.
|
|
1702
|
+
* @param {string} astroProjectId
|
|
1703
|
+
* @param {*} [options] Override http request option.
|
|
1704
|
+
* @throws {RequiredError}
|
|
1705
|
+
*/
|
|
1706
|
+
v1DeleteAstroProject(astroProjectId, options) {
|
|
1707
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1708
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1DeleteAstroProject(astroProjectId, options);
|
|
1709
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1710
|
+
});
|
|
1711
|
+
},
|
|
1712
|
+
/**
|
|
1713
|
+
* Delete a calibration master.
|
|
1714
|
+
* @param {string} calibrationMasterId
|
|
1715
|
+
* @param {*} [options] Override http request option.
|
|
1716
|
+
* @throws {RequiredError}
|
|
1717
|
+
*/
|
|
1718
|
+
v1DeleteCalibrationMaster(calibrationMasterId, options) {
|
|
1719
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1720
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1DeleteCalibrationMaster(calibrationMasterId, options);
|
|
1721
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1722
|
+
});
|
|
1723
|
+
},
|
|
1632
1724
|
/**
|
|
1633
1725
|
* Delete an image set.
|
|
1634
1726
|
* @param {string} id
|
|
@@ -2067,6 +2159,24 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2067
2159
|
v1CreateNode(requestParameters, options) {
|
|
2068
2160
|
return localVarFp.v1CreateNode(requestParameters.v1CreateNodeRequest, options).then((request) => request(axios, basePath));
|
|
2069
2161
|
},
|
|
2162
|
+
/**
|
|
2163
|
+
* Delete an astro project with all associated assets and images.
|
|
2164
|
+
* @param {DefaultApiV1DeleteAstroProjectRequest} requestParameters Request parameters.
|
|
2165
|
+
* @param {*} [options] Override http request option.
|
|
2166
|
+
* @throws {RequiredError}
|
|
2167
|
+
*/
|
|
2168
|
+
v1DeleteAstroProject(requestParameters, options) {
|
|
2169
|
+
return localVarFp.v1DeleteAstroProject(requestParameters.astroProjectId, options).then((request) => request(axios, basePath));
|
|
2170
|
+
},
|
|
2171
|
+
/**
|
|
2172
|
+
* Delete a calibration master.
|
|
2173
|
+
* @param {DefaultApiV1DeleteCalibrationMasterRequest} requestParameters Request parameters.
|
|
2174
|
+
* @param {*} [options] Override http request option.
|
|
2175
|
+
* @throws {RequiredError}
|
|
2176
|
+
*/
|
|
2177
|
+
v1DeleteCalibrationMaster(requestParameters, options) {
|
|
2178
|
+
return localVarFp.v1DeleteCalibrationMaster(requestParameters.calibrationMasterId, options).then((request) => request(axios, basePath));
|
|
2179
|
+
},
|
|
2070
2180
|
/**
|
|
2071
2181
|
* Delete an image set.
|
|
2072
2182
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
|
@@ -2422,6 +2532,26 @@ export class DefaultApi extends BaseAPI {
|
|
|
2422
2532
|
v1CreateNode(requestParameters, options) {
|
|
2423
2533
|
return DefaultApiFp(this.configuration).v1CreateNode(requestParameters.v1CreateNodeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2424
2534
|
}
|
|
2535
|
+
/**
|
|
2536
|
+
* Delete an astro project with all associated assets and images.
|
|
2537
|
+
* @param {DefaultApiV1DeleteAstroProjectRequest} requestParameters Request parameters.
|
|
2538
|
+
* @param {*} [options] Override http request option.
|
|
2539
|
+
* @throws {RequiredError}
|
|
2540
|
+
* @memberof DefaultApi
|
|
2541
|
+
*/
|
|
2542
|
+
v1DeleteAstroProject(requestParameters, options) {
|
|
2543
|
+
return DefaultApiFp(this.configuration).v1DeleteAstroProject(requestParameters.astroProjectId, options).then((request) => request(this.axios, this.basePath));
|
|
2544
|
+
}
|
|
2545
|
+
/**
|
|
2546
|
+
* Delete a calibration master.
|
|
2547
|
+
* @param {DefaultApiV1DeleteCalibrationMasterRequest} requestParameters Request parameters.
|
|
2548
|
+
* @param {*} [options] Override http request option.
|
|
2549
|
+
* @throws {RequiredError}
|
|
2550
|
+
* @memberof DefaultApi
|
|
2551
|
+
*/
|
|
2552
|
+
v1DeleteCalibrationMaster(requestParameters, options) {
|
|
2553
|
+
return DefaultApiFp(this.configuration).v1DeleteCalibrationMaster(requestParameters.calibrationMasterId, options).then((request) => request(this.axios, this.basePath));
|
|
2554
|
+
}
|
|
2425
2555
|
/**
|
|
2426
2556
|
* Delete an image set.
|
|
2427
2557
|
* @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
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 Astro
|
|
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.2584
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|