@wandelbots/nova-api 25.11.0-dev.2 → 25.11.0-dev.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v1/index.d.cts +1 -1
- package/dist/v1/index.d.ts +1 -1
- package/dist/v2/index.cjs +4 -4
- package/dist/v2/index.d.cts +21 -17
- package/dist/v2/index.d.ts +21 -17
- package/dist/v2/index.js +4 -4
- package/package.json +1 -1
package/dist/v1/index.d.cts
CHANGED
|
@@ -7,7 +7,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
|
7
7
|
* Wandelbots NOVA API
|
|
8
8
|
* Interact with robots in an easy and intuitive way.
|
|
9
9
|
*
|
|
10
|
-
* The version of the OpenAPI document: 1.1.0
|
|
10
|
+
* The version of the OpenAPI document: 1.1.0
|
|
11
11
|
*
|
|
12
12
|
*
|
|
13
13
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/v1/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
|
7
7
|
* Wandelbots NOVA API
|
|
8
8
|
* Interact with robots in an easy and intuitive way.
|
|
9
9
|
*
|
|
10
|
-
* The version of the OpenAPI document: 1.1.0
|
|
10
|
+
* The version of the OpenAPI document: 1.1.0
|
|
11
11
|
*
|
|
12
12
|
*
|
|
13
13
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/v2/index.cjs
CHANGED
|
@@ -3948,7 +3948,7 @@ const ProgramApiFactory = function(configuration, basePath, axios$1) {
|
|
|
3948
3948
|
*/
|
|
3949
3949
|
var ProgramApi = class extends BaseAPI {
|
|
3950
3950
|
/**
|
|
3951
|
-
* Get details of a program.
|
|
3951
|
+
* <!-- theme: danger --> > **Experimental** Get details of a program.
|
|
3952
3952
|
* @summary Get program
|
|
3953
3953
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3954
3954
|
* @param {string} program
|
|
@@ -3959,7 +3959,7 @@ var ProgramApi = class extends BaseAPI {
|
|
|
3959
3959
|
return ProgramApiFp(this.configuration).getProgram(cell, program, options).then((request) => request(this.axios, this.basePath));
|
|
3960
3960
|
}
|
|
3961
3961
|
/**
|
|
3962
|
-
* List details of all existing programs.
|
|
3962
|
+
* <!-- theme: danger --> > **Experimental** List details of all existing programs.
|
|
3963
3963
|
* @summary List programs
|
|
3964
3964
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3965
3965
|
* @param {*} [options] Override http request option.
|
|
@@ -3969,7 +3969,7 @@ var ProgramApi = class extends BaseAPI {
|
|
|
3969
3969
|
return ProgramApiFp(this.configuration).listPrograms(cell, options).then((request) => request(this.axios, this.basePath));
|
|
3970
3970
|
}
|
|
3971
3971
|
/**
|
|
3972
|
-
* This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
3972
|
+
* <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
3973
3973
|
* @summary Start the program
|
|
3974
3974
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3975
3975
|
* @param {string} program
|
|
@@ -3981,7 +3981,7 @@ var ProgramApi = class extends BaseAPI {
|
|
|
3981
3981
|
return ProgramApiFp(this.configuration).startProgram(cell, program, programStartRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3982
3982
|
}
|
|
3983
3983
|
/**
|
|
3984
|
-
* Stop a specific program run.
|
|
3984
|
+
* <!-- theme: danger --> > **Experimental** Stop a specific program run.
|
|
3985
3985
|
* @summary Stop program run
|
|
3986
3986
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3987
3987
|
* @param {string} program
|
package/dist/v2/index.d.cts
CHANGED
|
@@ -7,7 +7,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
|
7
7
|
* Wandelbots NOVA API
|
|
8
8
|
* Interact with robots in an easy and intuitive way.
|
|
9
9
|
*
|
|
10
|
-
* The version of the OpenAPI document: 2.
|
|
10
|
+
* The version of the OpenAPI document: 2.1.0 dev
|
|
11
11
|
*
|
|
12
12
|
*
|
|
13
13
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1846,6 +1846,10 @@ interface MotionGroupDescription {
|
|
|
1846
1846
|
* The DH parameters describing the motion group geometry, starting from base.
|
|
1847
1847
|
*/
|
|
1848
1848
|
'dh_parameters'?: Array<DHParameter>;
|
|
1849
|
+
/**
|
|
1850
|
+
* The serial number of the motion group, if available. If not available, the serial number of the robot controller. If not available, empty.
|
|
1851
|
+
*/
|
|
1852
|
+
'serial_number'?: string;
|
|
1849
1853
|
}
|
|
1850
1854
|
interface MotionGroupInfo {
|
|
1851
1855
|
/**
|
|
@@ -5738,7 +5742,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
5738
5742
|
*/
|
|
5739
5743
|
declare const ProgramApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5740
5744
|
/**
|
|
5741
|
-
* Get details of a program.
|
|
5745
|
+
* <!-- theme: danger --> > **Experimental** Get details of a program.
|
|
5742
5746
|
* @summary Get program
|
|
5743
5747
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5744
5748
|
* @param {string} program
|
|
@@ -5747,7 +5751,7 @@ declare const ProgramApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5747
5751
|
*/
|
|
5748
5752
|
getProgram: (cell: string, program: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5749
5753
|
/**
|
|
5750
|
-
* List details of all existing programs.
|
|
5754
|
+
* <!-- theme: danger --> > **Experimental** List details of all existing programs.
|
|
5751
5755
|
* @summary List programs
|
|
5752
5756
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5753
5757
|
* @param {*} [options] Override http request option.
|
|
@@ -5755,7 +5759,7 @@ declare const ProgramApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5755
5759
|
*/
|
|
5756
5760
|
listPrograms: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5757
5761
|
/**
|
|
5758
|
-
* This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5762
|
+
* <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5759
5763
|
* @summary Start the program
|
|
5760
5764
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5761
5765
|
* @param {string} program
|
|
@@ -5765,7 +5769,7 @@ declare const ProgramApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5765
5769
|
*/
|
|
5766
5770
|
startProgram: (cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5767
5771
|
/**
|
|
5768
|
-
* Stop a specific program run.
|
|
5772
|
+
* <!-- theme: danger --> > **Experimental** Stop a specific program run.
|
|
5769
5773
|
* @summary Stop program run
|
|
5770
5774
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5771
5775
|
* @param {string} program
|
|
@@ -5779,7 +5783,7 @@ declare const ProgramApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5779
5783
|
*/
|
|
5780
5784
|
declare const ProgramApiFp: (configuration?: Configuration) => {
|
|
5781
5785
|
/**
|
|
5782
|
-
* Get details of a program.
|
|
5786
|
+
* <!-- theme: danger --> > **Experimental** Get details of a program.
|
|
5783
5787
|
* @summary Get program
|
|
5784
5788
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5785
5789
|
* @param {string} program
|
|
@@ -5788,7 +5792,7 @@ declare const ProgramApiFp: (configuration?: Configuration) => {
|
|
|
5788
5792
|
*/
|
|
5789
5793
|
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Program>>;
|
|
5790
5794
|
/**
|
|
5791
|
-
* List details of all existing programs.
|
|
5795
|
+
* <!-- theme: danger --> > **Experimental** List details of all existing programs.
|
|
5792
5796
|
* @summary List programs
|
|
5793
5797
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5794
5798
|
* @param {*} [options] Override http request option.
|
|
@@ -5796,7 +5800,7 @@ declare const ProgramApiFp: (configuration?: Configuration) => {
|
|
|
5796
5800
|
*/
|
|
5797
5801
|
listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Program>>>;
|
|
5798
5802
|
/**
|
|
5799
|
-
* This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5803
|
+
* <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5800
5804
|
* @summary Start the program
|
|
5801
5805
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5802
5806
|
* @param {string} program
|
|
@@ -5806,7 +5810,7 @@ declare const ProgramApiFp: (configuration?: Configuration) => {
|
|
|
5806
5810
|
*/
|
|
5807
5811
|
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProgramRun>>;
|
|
5808
5812
|
/**
|
|
5809
|
-
* Stop a specific program run.
|
|
5813
|
+
* <!-- theme: danger --> > **Experimental** Stop a specific program run.
|
|
5810
5814
|
* @summary Stop program run
|
|
5811
5815
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5812
5816
|
* @param {string} program
|
|
@@ -5820,7 +5824,7 @@ declare const ProgramApiFp: (configuration?: Configuration) => {
|
|
|
5820
5824
|
*/
|
|
5821
5825
|
declare const ProgramApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5822
5826
|
/**
|
|
5823
|
-
* Get details of a program.
|
|
5827
|
+
* <!-- theme: danger --> > **Experimental** Get details of a program.
|
|
5824
5828
|
* @summary Get program
|
|
5825
5829
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5826
5830
|
* @param {string} program
|
|
@@ -5829,7 +5833,7 @@ declare const ProgramApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5829
5833
|
*/
|
|
5830
5834
|
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): AxiosPromise<Program>;
|
|
5831
5835
|
/**
|
|
5832
|
-
* List details of all existing programs.
|
|
5836
|
+
* <!-- theme: danger --> > **Experimental** List details of all existing programs.
|
|
5833
5837
|
* @summary List programs
|
|
5834
5838
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5835
5839
|
* @param {*} [options] Override http request option.
|
|
@@ -5837,7 +5841,7 @@ declare const ProgramApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5837
5841
|
*/
|
|
5838
5842
|
listPrograms(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<Program>>;
|
|
5839
5843
|
/**
|
|
5840
|
-
* This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5844
|
+
* <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5841
5845
|
* @summary Start the program
|
|
5842
5846
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5843
5847
|
* @param {string} program
|
|
@@ -5847,7 +5851,7 @@ declare const ProgramApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5847
5851
|
*/
|
|
5848
5852
|
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProgramRun>;
|
|
5849
5853
|
/**
|
|
5850
|
-
* Stop a specific program run.
|
|
5854
|
+
* <!-- theme: danger --> > **Experimental** Stop a specific program run.
|
|
5851
5855
|
* @summary Stop program run
|
|
5852
5856
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5853
5857
|
* @param {string} program
|
|
@@ -5861,7 +5865,7 @@ declare const ProgramApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5861
5865
|
*/
|
|
5862
5866
|
declare class ProgramApi extends BaseAPI {
|
|
5863
5867
|
/**
|
|
5864
|
-
* Get details of a program.
|
|
5868
|
+
* <!-- theme: danger --> > **Experimental** Get details of a program.
|
|
5865
5869
|
* @summary Get program
|
|
5866
5870
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5867
5871
|
* @param {string} program
|
|
@@ -5870,7 +5874,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
5870
5874
|
*/
|
|
5871
5875
|
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program, any>>;
|
|
5872
5876
|
/**
|
|
5873
|
-
* List details of all existing programs.
|
|
5877
|
+
* <!-- theme: danger --> > **Experimental** List details of all existing programs.
|
|
5874
5878
|
* @summary List programs
|
|
5875
5879
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5876
5880
|
* @param {*} [options] Override http request option.
|
|
@@ -5878,7 +5882,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
5878
5882
|
*/
|
|
5879
5883
|
listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program[], any>>;
|
|
5880
5884
|
/**
|
|
5881
|
-
* This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5885
|
+
* <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5882
5886
|
* @summary Start the program
|
|
5883
5887
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5884
5888
|
* @param {string} program
|
|
@@ -5888,7 +5892,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
5888
5892
|
*/
|
|
5889
5893
|
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
|
|
5890
5894
|
/**
|
|
5891
|
-
* Stop a specific program run.
|
|
5895
|
+
* <!-- theme: danger --> > **Experimental** Stop a specific program run.
|
|
5892
5896
|
* @summary Stop program run
|
|
5893
5897
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5894
5898
|
* @param {string} program
|
package/dist/v2/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
|
7
7
|
* Wandelbots NOVA API
|
|
8
8
|
* Interact with robots in an easy and intuitive way.
|
|
9
9
|
*
|
|
10
|
-
* The version of the OpenAPI document: 2.
|
|
10
|
+
* The version of the OpenAPI document: 2.1.0 dev
|
|
11
11
|
*
|
|
12
12
|
*
|
|
13
13
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1846,6 +1846,10 @@ interface MotionGroupDescription {
|
|
|
1846
1846
|
* The DH parameters describing the motion group geometry, starting from base.
|
|
1847
1847
|
*/
|
|
1848
1848
|
'dh_parameters'?: Array<DHParameter>;
|
|
1849
|
+
/**
|
|
1850
|
+
* The serial number of the motion group, if available. If not available, the serial number of the robot controller. If not available, empty.
|
|
1851
|
+
*/
|
|
1852
|
+
'serial_number'?: string;
|
|
1849
1853
|
}
|
|
1850
1854
|
interface MotionGroupInfo {
|
|
1851
1855
|
/**
|
|
@@ -5738,7 +5742,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
5738
5742
|
*/
|
|
5739
5743
|
declare const ProgramApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5740
5744
|
/**
|
|
5741
|
-
* Get details of a program.
|
|
5745
|
+
* <!-- theme: danger --> > **Experimental** Get details of a program.
|
|
5742
5746
|
* @summary Get program
|
|
5743
5747
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5744
5748
|
* @param {string} program
|
|
@@ -5747,7 +5751,7 @@ declare const ProgramApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5747
5751
|
*/
|
|
5748
5752
|
getProgram: (cell: string, program: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5749
5753
|
/**
|
|
5750
|
-
* List details of all existing programs.
|
|
5754
|
+
* <!-- theme: danger --> > **Experimental** List details of all existing programs.
|
|
5751
5755
|
* @summary List programs
|
|
5752
5756
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5753
5757
|
* @param {*} [options] Override http request option.
|
|
@@ -5755,7 +5759,7 @@ declare const ProgramApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5755
5759
|
*/
|
|
5756
5760
|
listPrograms: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5757
5761
|
/**
|
|
5758
|
-
* This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5762
|
+
* <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5759
5763
|
* @summary Start the program
|
|
5760
5764
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5761
5765
|
* @param {string} program
|
|
@@ -5765,7 +5769,7 @@ declare const ProgramApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5765
5769
|
*/
|
|
5766
5770
|
startProgram: (cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5767
5771
|
/**
|
|
5768
|
-
* Stop a specific program run.
|
|
5772
|
+
* <!-- theme: danger --> > **Experimental** Stop a specific program run.
|
|
5769
5773
|
* @summary Stop program run
|
|
5770
5774
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5771
5775
|
* @param {string} program
|
|
@@ -5779,7 +5783,7 @@ declare const ProgramApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5779
5783
|
*/
|
|
5780
5784
|
declare const ProgramApiFp: (configuration?: Configuration) => {
|
|
5781
5785
|
/**
|
|
5782
|
-
* Get details of a program.
|
|
5786
|
+
* <!-- theme: danger --> > **Experimental** Get details of a program.
|
|
5783
5787
|
* @summary Get program
|
|
5784
5788
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5785
5789
|
* @param {string} program
|
|
@@ -5788,7 +5792,7 @@ declare const ProgramApiFp: (configuration?: Configuration) => {
|
|
|
5788
5792
|
*/
|
|
5789
5793
|
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Program>>;
|
|
5790
5794
|
/**
|
|
5791
|
-
* List details of all existing programs.
|
|
5795
|
+
* <!-- theme: danger --> > **Experimental** List details of all existing programs.
|
|
5792
5796
|
* @summary List programs
|
|
5793
5797
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5794
5798
|
* @param {*} [options] Override http request option.
|
|
@@ -5796,7 +5800,7 @@ declare const ProgramApiFp: (configuration?: Configuration) => {
|
|
|
5796
5800
|
*/
|
|
5797
5801
|
listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Program>>>;
|
|
5798
5802
|
/**
|
|
5799
|
-
* This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5803
|
+
* <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5800
5804
|
* @summary Start the program
|
|
5801
5805
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5802
5806
|
* @param {string} program
|
|
@@ -5806,7 +5810,7 @@ declare const ProgramApiFp: (configuration?: Configuration) => {
|
|
|
5806
5810
|
*/
|
|
5807
5811
|
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProgramRun>>;
|
|
5808
5812
|
/**
|
|
5809
|
-
* Stop a specific program run.
|
|
5813
|
+
* <!-- theme: danger --> > **Experimental** Stop a specific program run.
|
|
5810
5814
|
* @summary Stop program run
|
|
5811
5815
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5812
5816
|
* @param {string} program
|
|
@@ -5820,7 +5824,7 @@ declare const ProgramApiFp: (configuration?: Configuration) => {
|
|
|
5820
5824
|
*/
|
|
5821
5825
|
declare const ProgramApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5822
5826
|
/**
|
|
5823
|
-
* Get details of a program.
|
|
5827
|
+
* <!-- theme: danger --> > **Experimental** Get details of a program.
|
|
5824
5828
|
* @summary Get program
|
|
5825
5829
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5826
5830
|
* @param {string} program
|
|
@@ -5829,7 +5833,7 @@ declare const ProgramApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5829
5833
|
*/
|
|
5830
5834
|
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): AxiosPromise<Program>;
|
|
5831
5835
|
/**
|
|
5832
|
-
* List details of all existing programs.
|
|
5836
|
+
* <!-- theme: danger --> > **Experimental** List details of all existing programs.
|
|
5833
5837
|
* @summary List programs
|
|
5834
5838
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5835
5839
|
* @param {*} [options] Override http request option.
|
|
@@ -5837,7 +5841,7 @@ declare const ProgramApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5837
5841
|
*/
|
|
5838
5842
|
listPrograms(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<Program>>;
|
|
5839
5843
|
/**
|
|
5840
|
-
* This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5844
|
+
* <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5841
5845
|
* @summary Start the program
|
|
5842
5846
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5843
5847
|
* @param {string} program
|
|
@@ -5847,7 +5851,7 @@ declare const ProgramApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5847
5851
|
*/
|
|
5848
5852
|
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProgramRun>;
|
|
5849
5853
|
/**
|
|
5850
|
-
* Stop a specific program run.
|
|
5854
|
+
* <!-- theme: danger --> > **Experimental** Stop a specific program run.
|
|
5851
5855
|
* @summary Stop program run
|
|
5852
5856
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5853
5857
|
* @param {string} program
|
|
@@ -5861,7 +5865,7 @@ declare const ProgramApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5861
5865
|
*/
|
|
5862
5866
|
declare class ProgramApi extends BaseAPI {
|
|
5863
5867
|
/**
|
|
5864
|
-
* Get details of a program.
|
|
5868
|
+
* <!-- theme: danger --> > **Experimental** Get details of a program.
|
|
5865
5869
|
* @summary Get program
|
|
5866
5870
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5867
5871
|
* @param {string} program
|
|
@@ -5870,7 +5874,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
5870
5874
|
*/
|
|
5871
5875
|
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program, any>>;
|
|
5872
5876
|
/**
|
|
5873
|
-
* List details of all existing programs.
|
|
5877
|
+
* <!-- theme: danger --> > **Experimental** List details of all existing programs.
|
|
5874
5878
|
* @summary List programs
|
|
5875
5879
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5876
5880
|
* @param {*} [options] Override http request option.
|
|
@@ -5878,7 +5882,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
5878
5882
|
*/
|
|
5879
5883
|
listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program[], any>>;
|
|
5880
5884
|
/**
|
|
5881
|
-
* This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5885
|
+
* <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
5882
5886
|
* @summary Start the program
|
|
5883
5887
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5884
5888
|
* @param {string} program
|
|
@@ -5888,7 +5892,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
5888
5892
|
*/
|
|
5889
5893
|
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
|
|
5890
5894
|
/**
|
|
5891
|
-
* Stop a specific program run.
|
|
5895
|
+
* <!-- theme: danger --> > **Experimental** Stop a specific program run.
|
|
5892
5896
|
* @summary Stop program run
|
|
5893
5897
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5894
5898
|
* @param {string} program
|
package/dist/v2/index.js
CHANGED
|
@@ -3946,7 +3946,7 @@ const ProgramApiFactory = function(configuration, basePath, axios) {
|
|
|
3946
3946
|
*/
|
|
3947
3947
|
var ProgramApi = class extends BaseAPI {
|
|
3948
3948
|
/**
|
|
3949
|
-
* Get details of a program.
|
|
3949
|
+
* <!-- theme: danger --> > **Experimental** Get details of a program.
|
|
3950
3950
|
* @summary Get program
|
|
3951
3951
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3952
3952
|
* @param {string} program
|
|
@@ -3957,7 +3957,7 @@ var ProgramApi = class extends BaseAPI {
|
|
|
3957
3957
|
return ProgramApiFp(this.configuration).getProgram(cell, program, options).then((request) => request(this.axios, this.basePath));
|
|
3958
3958
|
}
|
|
3959
3959
|
/**
|
|
3960
|
-
* List details of all existing programs.
|
|
3960
|
+
* <!-- theme: danger --> > **Experimental** List details of all existing programs.
|
|
3961
3961
|
* @summary List programs
|
|
3962
3962
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3963
3963
|
* @param {*} [options] Override http request option.
|
|
@@ -3967,7 +3967,7 @@ var ProgramApi = class extends BaseAPI {
|
|
|
3967
3967
|
return ProgramApiFp(this.configuration).listPrograms(cell, options).then((request) => request(this.axios, this.basePath));
|
|
3968
3968
|
}
|
|
3969
3969
|
/**
|
|
3970
|
-
* This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
3970
|
+
* <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
3971
3971
|
* @summary Start the program
|
|
3972
3972
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3973
3973
|
* @param {string} program
|
|
@@ -3979,7 +3979,7 @@ var ProgramApi = class extends BaseAPI {
|
|
|
3979
3979
|
return ProgramApiFp(this.configuration).startProgram(cell, program, programStartRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3980
3980
|
}
|
|
3981
3981
|
/**
|
|
3982
|
-
* Stop a specific program run.
|
|
3982
|
+
* <!-- theme: danger --> > **Experimental** Stop a specific program run.
|
|
3983
3983
|
* @summary Stop program run
|
|
3984
3984
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3985
3985
|
* @param {string} program
|