waldur-js-client 7.7.10-dev.8 → 7.8.1-dev.0
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 +33 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1948,6 +1948,9 @@ export type CourseAccount = {
|
|
|
1948
1948
|
project: string;
|
|
1949
1949
|
readonly project_uuid: string;
|
|
1950
1950
|
readonly project_name: string;
|
|
1951
|
+
readonly project_slug: string;
|
|
1952
|
+
readonly project_start_date: string;
|
|
1953
|
+
readonly project_end_date: string;
|
|
1951
1954
|
readonly user_uuid: string;
|
|
1952
1955
|
readonly username: string;
|
|
1953
1956
|
readonly customer_uuid: string;
|
|
@@ -21630,6 +21633,12 @@ export type MarketplaceCourseAccountsListData = {
|
|
|
21630
21633
|
path?: never;
|
|
21631
21634
|
query?: {
|
|
21632
21635
|
email?: string;
|
|
21636
|
+
/**
|
|
21637
|
+
* Ordering
|
|
21638
|
+
*
|
|
21639
|
+
*
|
|
21640
|
+
*/
|
|
21641
|
+
o?: Array<'-created' | '-email' | '-modified' | '-project_end_date' | '-project_name' | '-project_start_date' | '-state' | '-username' | 'created' | 'email' | 'modified' | 'project_end_date' | 'project_name' | 'project_start_date' | 'state' | 'username'>;
|
|
21633
21642
|
/**
|
|
21634
21643
|
* A page number within the paginated result set.
|
|
21635
21644
|
*/
|
|
@@ -21638,6 +21647,10 @@ export type MarketplaceCourseAccountsListData = {
|
|
|
21638
21647
|
* Number of results to return per page.
|
|
21639
21648
|
*/
|
|
21640
21649
|
page_size?: number;
|
|
21650
|
+
project_end_date_after?: string;
|
|
21651
|
+
project_end_date_before?: string;
|
|
21652
|
+
project_start_date_after?: string;
|
|
21653
|
+
project_start_date_before?: string;
|
|
21641
21654
|
project_uuid?: string;
|
|
21642
21655
|
state?: Array<'Closed' | 'Erred' | 'OK'>;
|
|
21643
21656
|
username?: string;
|
|
@@ -21653,6 +21666,12 @@ export type MarketplaceCourseAccountsCountData = {
|
|
|
21653
21666
|
path?: never;
|
|
21654
21667
|
query?: {
|
|
21655
21668
|
email?: string;
|
|
21669
|
+
/**
|
|
21670
|
+
* Ordering
|
|
21671
|
+
*
|
|
21672
|
+
*
|
|
21673
|
+
*/
|
|
21674
|
+
o?: Array<'-created' | '-email' | '-modified' | '-project_end_date' | '-project_name' | '-project_start_date' | '-state' | '-username' | 'created' | 'email' | 'modified' | 'project_end_date' | 'project_name' | 'project_start_date' | 'state' | 'username'>;
|
|
21656
21675
|
/**
|
|
21657
21676
|
* A page number within the paginated result set.
|
|
21658
21677
|
*/
|
|
@@ -21661,6 +21680,10 @@ export type MarketplaceCourseAccountsCountData = {
|
|
|
21661
21680
|
* Number of results to return per page.
|
|
21662
21681
|
*/
|
|
21663
21682
|
page_size?: number;
|
|
21683
|
+
project_end_date_after?: string;
|
|
21684
|
+
project_end_date_before?: string;
|
|
21685
|
+
project_start_date_after?: string;
|
|
21686
|
+
project_start_date_before?: string;
|
|
21664
21687
|
project_uuid?: string;
|
|
21665
21688
|
state?: Array<'Closed' | 'Erred' | 'OK'>;
|
|
21666
21689
|
username?: string;
|
|
@@ -27968,6 +27991,12 @@ export type MarketplaceServiceProvidersCourseAccountsListData = {
|
|
|
27968
27991
|
};
|
|
27969
27992
|
query?: {
|
|
27970
27993
|
email?: string;
|
|
27994
|
+
/**
|
|
27995
|
+
* Ordering
|
|
27996
|
+
*
|
|
27997
|
+
*
|
|
27998
|
+
*/
|
|
27999
|
+
o?: Array<'-created' | '-email' | '-modified' | '-project_end_date' | '-project_name' | '-project_start_date' | '-state' | '-username' | 'created' | 'email' | 'modified' | 'project_end_date' | 'project_name' | 'project_start_date' | 'state' | 'username'>;
|
|
27971
28000
|
/**
|
|
27972
28001
|
* A page number within the paginated result set.
|
|
27973
28002
|
*/
|
|
@@ -27976,6 +28005,10 @@ export type MarketplaceServiceProvidersCourseAccountsListData = {
|
|
|
27976
28005
|
* Number of results to return per page.
|
|
27977
28006
|
*/
|
|
27978
28007
|
page_size?: number;
|
|
28008
|
+
project_end_date_after?: string;
|
|
28009
|
+
project_end_date_before?: string;
|
|
28010
|
+
project_start_date_after?: string;
|
|
28011
|
+
project_start_date_before?: string;
|
|
27979
28012
|
project_uuid?: string;
|
|
27980
28013
|
state?: Array<'Closed' | 'Erred' | 'OK'>;
|
|
27981
28014
|
username?: string;
|