waldur-js-client 7.7.10-dev.0 → 7.7.10-dev.1
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 +18 -2
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -5332,6 +5332,14 @@ export type OfferingUser = {
|
|
|
5332
5332
|
* URL link for additional information or actions related to service provider comment
|
|
5333
5333
|
*/
|
|
5334
5334
|
readonly service_provider_comment_url?: string;
|
|
5335
|
+
/**
|
|
5336
|
+
* Check if the user has active consent for this offering.
|
|
5337
|
+
*/
|
|
5338
|
+
readonly has_consent?: boolean;
|
|
5339
|
+
/**
|
|
5340
|
+
* Check if the user needs to re-consent due to ToS changes.
|
|
5341
|
+
*/
|
|
5342
|
+
readonly requires_reconsent?: boolean;
|
|
5335
5343
|
};
|
|
5336
5344
|
export type OfferingUserRequest = {
|
|
5337
5345
|
user?: string;
|
|
@@ -23065,7 +23073,11 @@ export type MarketplaceOfferingUsersListData = {
|
|
|
23065
23073
|
* Created after
|
|
23066
23074
|
*/
|
|
23067
23075
|
created?: string;
|
|
23068
|
-
field?: Array<'created' | 'customer_name' | 'customer_uuid' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
23076
|
+
field?: Array<'created' | 'customer_name' | 'customer_uuid' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
23077
|
+
/**
|
|
23078
|
+
* User Has Consent
|
|
23079
|
+
*/
|
|
23080
|
+
has_consent?: boolean;
|
|
23069
23081
|
is_restricted?: boolean;
|
|
23070
23082
|
/**
|
|
23071
23083
|
* Modified after
|
|
@@ -23118,6 +23130,10 @@ export type MarketplaceOfferingUsersCountData = {
|
|
|
23118
23130
|
* Created after
|
|
23119
23131
|
*/
|
|
23120
23132
|
created?: string;
|
|
23133
|
+
/**
|
|
23134
|
+
* User Has Consent
|
|
23135
|
+
*/
|
|
23136
|
+
has_consent?: boolean;
|
|
23121
23137
|
is_restricted?: boolean;
|
|
23122
23138
|
/**
|
|
23123
23139
|
* Modified after
|
|
@@ -23195,7 +23211,7 @@ export type MarketplaceOfferingUsersRetrieveData = {
|
|
|
23195
23211
|
uuid: string;
|
|
23196
23212
|
};
|
|
23197
23213
|
query?: {
|
|
23198
|
-
field?: Array<'created' | 'customer_name' | 'customer_uuid' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
23214
|
+
field?: Array<'created' | 'customer_name' | 'customer_uuid' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
|
|
23199
23215
|
};
|
|
23200
23216
|
url: '/api/marketplace-offering-users/{uuid}/';
|
|
23201
23217
|
};
|