@wandelbots/nova-api 25.10.0-rc.1 → 25.10.0-rc.3
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 +178 -178
- package/dist/v1/index.d.ts +178 -178
- package/dist/v2/index.cjs +4 -4
- package/dist/v2/index.d.cts +148 -148
- package/dist/v2/index.d.ts +148 -148
- package/dist/v2/index.js +4 -4
- package/package.json +1 -1
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
|