waldur-js-client 7.7.9 → 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.
@@ -3202,7 +3202,7 @@ export type InvoiceStatsOffering = {
3202
3202
  export type Issue = {
3203
3203
  readonly url: string;
3204
3204
  readonly uuid: string;
3205
- type: IssueTypeEnum;
3205
+ type: string;
3206
3206
  readonly key: string;
3207
3207
  readonly backend_id: string | null;
3208
3208
  readonly backend_name: string | null;
@@ -3253,7 +3253,7 @@ export type IssueReference = {
3253
3253
  readonly uuid?: string;
3254
3254
  };
3255
3255
  export type IssueRequest = {
3256
- type: IssueTypeEnum;
3256
+ type: string;
3257
3257
  remote_id?: string | null;
3258
3258
  summary: string;
3259
3259
  description?: string;
@@ -3290,7 +3290,7 @@ export type IssueStatusRequest = {
3290
3290
  type?: IssueStatusTypeEnum;
3291
3291
  };
3292
3292
  export type IssueStatusTypeEnum = 0 | 1;
3293
- export type IssueTypeEnum = unknown;
3293
+ export type IssueTypeEnum = 'INFORMATIONAL' | 'SERVICE_REQUEST' | 'CHANGE_REQUEST' | 'INCIDENT';
3294
3294
  export type JiraChangelog = {
3295
3295
  items: Array<unknown>;
3296
3296
  };
@@ -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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.7.9",
3
+ "version": "7.7.10-dev.1",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",