waldur-js-client 8.0.6-dev.15 → 8.0.6-dev.16
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/types.gen.d.ts +6 -5
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -4708,7 +4708,7 @@ export type CourseAccount = {
|
|
|
4708
4708
|
readonly username: string;
|
|
4709
4709
|
readonly customer_uuid: string;
|
|
4710
4710
|
readonly customer_name: string;
|
|
4711
|
-
state:
|
|
4711
|
+
state: CourseAccountStateEnum;
|
|
4712
4712
|
email?: string;
|
|
4713
4713
|
description?: string;
|
|
4714
4714
|
readonly error_message: string;
|
|
@@ -4723,6 +4723,7 @@ export type CourseAccountRequest = {
|
|
|
4723
4723
|
email?: string;
|
|
4724
4724
|
description?: string;
|
|
4725
4725
|
};
|
|
4726
|
+
export type CourseAccountStateEnum = 'OK' | 'Closed' | 'Erred' | 'Pending';
|
|
4726
4727
|
export type CourseAccountsBulkCreateRequest = {
|
|
4727
4728
|
course_accounts: Array<CourseAccountCreateNestedRequest>;
|
|
4728
4729
|
project: string;
|
|
@@ -40899,7 +40900,7 @@ export type MarketplaceCourseAccountsListData = {
|
|
|
40899
40900
|
*
|
|
40900
40901
|
*
|
|
40901
40902
|
*/
|
|
40902
|
-
state?: Array<
|
|
40903
|
+
state?: Array<CourseAccountStateEnum>;
|
|
40903
40904
|
/**
|
|
40904
40905
|
* Username
|
|
40905
40906
|
*/
|
|
@@ -40958,7 +40959,7 @@ export type MarketplaceCourseAccountsCountData = {
|
|
|
40958
40959
|
*
|
|
40959
40960
|
*
|
|
40960
40961
|
*/
|
|
40961
|
-
state?: Array<
|
|
40962
|
+
state?: Array<CourseAccountStateEnum>;
|
|
40962
40963
|
/**
|
|
40963
40964
|
* Username
|
|
40964
40965
|
*/
|
|
@@ -41056,7 +41057,7 @@ export type MarketplaceCourseAccountsCreateBulkData = {
|
|
|
41056
41057
|
*
|
|
41057
41058
|
*
|
|
41058
41059
|
*/
|
|
41059
|
-
state?: Array<
|
|
41060
|
+
state?: Array<CourseAccountStateEnum>;
|
|
41060
41061
|
/**
|
|
41061
41062
|
* Username
|
|
41062
41063
|
*/
|
|
@@ -50975,7 +50976,7 @@ export type MarketplaceServiceProvidersCourseAccountsListData = {
|
|
|
50975
50976
|
*
|
|
50976
50977
|
*
|
|
50977
50978
|
*/
|
|
50978
|
-
state?: Array<
|
|
50979
|
+
state?: Array<CourseAccountStateEnum>;
|
|
50979
50980
|
/**
|
|
50980
50981
|
* Username
|
|
50981
50982
|
*/
|