waldur-api-client 7.7.0__py3-none-any.whl → 7.7.2__py3-none-any.whl

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.

Potentially problematic release.


This version of waldur-api-client might be problematic. Click here for more details.

Files changed (83) hide show
  1. waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_create.py +8 -4
  2. waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_destroy.py +4 -2
  3. waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_list.py +4 -4
  4. waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_partial_update.py +8 -4
  5. waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_retrieve.py +8 -4
  6. waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_update.py +8 -4
  7. waldur_api_client/api/marketplace_checklists/marketplace_checklists_questions_list.py +31 -32
  8. waldur_api_client/api/marketplace_checklists/marketplace_checklists_retrieve.py +15 -14
  9. waldur_api_client/api/marketplace_checklists_admin/__init__.py +1 -0
  10. waldur_api_client/api/marketplace_checklists_admin/marketplace_checklists_admin_checklist_questions.py +187 -0
  11. waldur_api_client/api/marketplace_checklists_admin/marketplace_checklists_admin_create.py +150 -0
  12. waldur_api_client/api/marketplace_checklists_admin/marketplace_checklists_admin_destroy.py +89 -0
  13. waldur_api_client/api/marketplace_checklists_admin/marketplace_checklists_admin_list.py +173 -0
  14. waldur_api_client/api/marketplace_checklists_admin/marketplace_checklists_admin_partial_update.py +164 -0
  15. waldur_api_client/api/marketplace_checklists_admin/marketplace_checklists_admin_retrieve.py +142 -0
  16. waldur_api_client/api/marketplace_checklists_admin/marketplace_checklists_admin_update.py +164 -0
  17. waldur_api_client/api/marketplace_checklists_admin_question_dependencies/__init__.py +1 -0
  18. waldur_api_client/api/marketplace_checklists_admin_question_dependencies/marketplace_checklists_admin_question_dependencies_create.py +150 -0
  19. waldur_api_client/api/marketplace_checklists_admin_question_dependencies/marketplace_checklists_admin_question_dependencies_destroy.py +89 -0
  20. waldur_api_client/api/marketplace_checklists_admin_question_dependencies/marketplace_checklists_admin_question_dependencies_list.py +212 -0
  21. waldur_api_client/api/marketplace_checklists_admin_question_dependencies/marketplace_checklists_admin_question_dependencies_partial_update.py +164 -0
  22. waldur_api_client/api/marketplace_checklists_admin_question_dependencies/marketplace_checklists_admin_question_dependencies_retrieve.py +142 -0
  23. waldur_api_client/api/marketplace_checklists_admin_question_dependencies/marketplace_checklists_admin_question_dependencies_update.py +164 -0
  24. waldur_api_client/api/marketplace_checklists_admin_question_options/__init__.py +1 -0
  25. waldur_api_client/api/marketplace_checklists_admin_question_options/marketplace_checklists_admin_question_options_create.py +150 -0
  26. waldur_api_client/api/marketplace_checklists_admin_question_options/marketplace_checklists_admin_question_options_destroy.py +89 -0
  27. waldur_api_client/api/marketplace_checklists_admin_question_options/marketplace_checklists_admin_question_options_list.py +194 -0
  28. waldur_api_client/api/marketplace_checklists_admin_question_options/marketplace_checklists_admin_question_options_partial_update.py +164 -0
  29. waldur_api_client/api/marketplace_checklists_admin_question_options/marketplace_checklists_admin_question_options_retrieve.py +142 -0
  30. waldur_api_client/api/marketplace_checklists_admin_question_options/marketplace_checklists_admin_question_options_update.py +164 -0
  31. waldur_api_client/api/marketplace_checklists_admin_questions/__init__.py +1 -0
  32. waldur_api_client/api/marketplace_checklists_admin_questions/marketplace_checklists_admin_questions_create.py +148 -0
  33. waldur_api_client/api/marketplace_checklists_admin_questions/marketplace_checklists_admin_questions_destroy.py +89 -0
  34. waldur_api_client/api/marketplace_checklists_admin_questions/marketplace_checklists_admin_questions_list.py +192 -0
  35. waldur_api_client/api/marketplace_checklists_admin_questions/marketplace_checklists_admin_questions_partial_update.py +162 -0
  36. waldur_api_client/api/marketplace_checklists_admin_questions/marketplace_checklists_admin_questions_retrieve.py +140 -0
  37. waldur_api_client/api/marketplace_checklists_admin_questions/marketplace_checklists_admin_questions_update.py +162 -0
  38. waldur_api_client/models/__init__.py +36 -2
  39. waldur_api_client/models/answer_list.py +8 -19
  40. waldur_api_client/models/answer_submit.py +7 -13
  41. waldur_api_client/models/answer_submit_request.py +7 -13
  42. waldur_api_client/models/booking_resource.py +18 -0
  43. waldur_api_client/models/booking_resources_list_field_item.py +2 -0
  44. waldur_api_client/models/booking_resources_retrieve_field_item.py +2 -0
  45. waldur_api_client/models/call_resource_template.py +23 -1
  46. waldur_api_client/models/checklist.py +8 -0
  47. waldur_api_client/models/checklist_admin.py +127 -0
  48. waldur_api_client/models/checklist_type_enum.py +10 -0
  49. waldur_api_client/models/create_checklist.py +131 -0
  50. waldur_api_client/models/create_checklist_request.py +90 -0
  51. waldur_api_client/models/group_invitation.py +16 -5
  52. waldur_api_client/models/group_invitation_request.py +16 -5
  53. waldur_api_client/models/marketplace_provider_resources_details_retrieve_field_item.py +2 -0
  54. waldur_api_client/models/marketplace_provider_resources_list_field_item.py +2 -0
  55. waldur_api_client/models/marketplace_provider_resources_retrieve_field_item.py +2 -0
  56. waldur_api_client/models/marketplace_resources_details_retrieve_field_item.py +2 -0
  57. waldur_api_client/models/marketplace_resources_list_field_item.py +2 -0
  58. waldur_api_client/models/marketplace_resources_retrieve_field_item.py +2 -0
  59. waldur_api_client/models/open_stack_floating_ip.py +21 -0
  60. waldur_api_client/models/open_stack_port.py +15 -4
  61. waldur_api_client/models/open_stack_router.py +15 -4
  62. waldur_api_client/models/openstack_floating_ips_list_field_item.py +1 -0
  63. waldur_api_client/models/openstack_floating_ips_retrieve_field_item.py +1 -0
  64. waldur_api_client/models/operator_enum.py +12 -0
  65. waldur_api_client/models/patched_create_checklist_request.py +96 -0
  66. waldur_api_client/models/patched_question_admin_request.py +208 -0
  67. waldur_api_client/models/patched_question_dependency_request.py +94 -0
  68. waldur_api_client/models/patched_question_options_admin_request.py +68 -0
  69. waldur_api_client/models/{checklist_question.py → question.py} +29 -16
  70. waldur_api_client/models/question_admin.py +260 -0
  71. waldur_api_client/models/question_admin_request.py +210 -0
  72. waldur_api_client/models/question_dependency.py +127 -0
  73. waldur_api_client/models/question_dependency_request.py +94 -0
  74. waldur_api_client/models/question_options.py +79 -0
  75. waldur_api_client/models/question_options_admin.py +103 -0
  76. waldur_api_client/models/question_options_admin_request.py +78 -0
  77. waldur_api_client/models/question_type_enum.py +15 -0
  78. waldur_api_client/models/resource.py +18 -0
  79. waldur_api_client/models/rule.py +46 -6
  80. {waldur_api_client-7.7.0.dist-info → waldur_api_client-7.7.2.dist-info}/METADATA +1 -1
  81. {waldur_api_client-7.7.0.dist-info → waldur_api_client-7.7.2.dist-info}/RECORD +83 -37
  82. {waldur_api_client-7.7.0.dist-info → waldur_api_client-7.7.2.dist-info}/LICENSE +0 -0
  83. {waldur_api_client-7.7.0.dist-info → waldur_api_client-7.7.2.dist-info}/WHEEL +0 -0
@@ -0,0 +1,79 @@
1
+ from collections.abc import Mapping
2
+ from typing import Any, TypeVar, Union
3
+ from uuid import UUID
4
+
5
+ from attrs import define as _attrs_define
6
+ from attrs import field as _attrs_field
7
+
8
+ from ..types import UNSET, Unset
9
+
10
+ T = TypeVar("T", bound="QuestionOptions")
11
+
12
+
13
+ @_attrs_define
14
+ class QuestionOptions:
15
+ """
16
+ Attributes:
17
+ uuid (UUID):
18
+ label (str):
19
+ order (Union[Unset, int]):
20
+ """
21
+
22
+ uuid: UUID
23
+ label: str
24
+ order: Union[Unset, int] = UNSET
25
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
26
+
27
+ def to_dict(self) -> dict[str, Any]:
28
+ uuid = str(self.uuid)
29
+
30
+ label = self.label
31
+
32
+ order = self.order
33
+
34
+ field_dict: dict[str, Any] = {}
35
+ field_dict.update(self.additional_properties)
36
+ field_dict.update(
37
+ {
38
+ "uuid": uuid,
39
+ "label": label,
40
+ }
41
+ )
42
+ if order is not UNSET:
43
+ field_dict["order"] = order
44
+
45
+ return field_dict
46
+
47
+ @classmethod
48
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
49
+ d = dict(src_dict)
50
+ uuid = UUID(d.pop("uuid"))
51
+
52
+ label = d.pop("label")
53
+
54
+ order = d.pop("order", UNSET)
55
+
56
+ question_options = cls(
57
+ uuid=uuid,
58
+ label=label,
59
+ order=order,
60
+ )
61
+
62
+ question_options.additional_properties = d
63
+ return question_options
64
+
65
+ @property
66
+ def additional_keys(self) -> list[str]:
67
+ return list(self.additional_properties.keys())
68
+
69
+ def __getitem__(self, key: str) -> Any:
70
+ return self.additional_properties[key]
71
+
72
+ def __setitem__(self, key: str, value: Any) -> None:
73
+ self.additional_properties[key] = value
74
+
75
+ def __delitem__(self, key: str) -> None:
76
+ del self.additional_properties[key]
77
+
78
+ def __contains__(self, key: str) -> bool:
79
+ return key in self.additional_properties
@@ -0,0 +1,103 @@
1
+ from collections.abc import Mapping
2
+ from typing import Any, TypeVar, Union
3
+ from uuid import UUID
4
+
5
+ from attrs import define as _attrs_define
6
+ from attrs import field as _attrs_field
7
+
8
+ from ..types import UNSET, Unset
9
+
10
+ T = TypeVar("T", bound="QuestionOptionsAdmin")
11
+
12
+
13
+ @_attrs_define
14
+ class QuestionOptionsAdmin:
15
+ """
16
+ Attributes:
17
+ uuid (UUID):
18
+ label (str):
19
+ url (str):
20
+ question (str):
21
+ question_uuid (UUID):
22
+ order (Union[Unset, int]):
23
+ """
24
+
25
+ uuid: UUID
26
+ label: str
27
+ url: str
28
+ question: str
29
+ question_uuid: UUID
30
+ order: Union[Unset, int] = UNSET
31
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
32
+
33
+ def to_dict(self) -> dict[str, Any]:
34
+ uuid = str(self.uuid)
35
+
36
+ label = self.label
37
+
38
+ url = self.url
39
+
40
+ question = self.question
41
+
42
+ question_uuid = str(self.question_uuid)
43
+
44
+ order = self.order
45
+
46
+ field_dict: dict[str, Any] = {}
47
+ field_dict.update(self.additional_properties)
48
+ field_dict.update(
49
+ {
50
+ "uuid": uuid,
51
+ "label": label,
52
+ "url": url,
53
+ "question": question,
54
+ "question_uuid": question_uuid,
55
+ }
56
+ )
57
+ if order is not UNSET:
58
+ field_dict["order"] = order
59
+
60
+ return field_dict
61
+
62
+ @classmethod
63
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
64
+ d = dict(src_dict)
65
+ uuid = UUID(d.pop("uuid"))
66
+
67
+ label = d.pop("label")
68
+
69
+ url = d.pop("url")
70
+
71
+ question = d.pop("question")
72
+
73
+ question_uuid = UUID(d.pop("question_uuid"))
74
+
75
+ order = d.pop("order", UNSET)
76
+
77
+ question_options_admin = cls(
78
+ uuid=uuid,
79
+ label=label,
80
+ url=url,
81
+ question=question,
82
+ question_uuid=question_uuid,
83
+ order=order,
84
+ )
85
+
86
+ question_options_admin.additional_properties = d
87
+ return question_options_admin
88
+
89
+ @property
90
+ def additional_keys(self) -> list[str]:
91
+ return list(self.additional_properties.keys())
92
+
93
+ def __getitem__(self, key: str) -> Any:
94
+ return self.additional_properties[key]
95
+
96
+ def __setitem__(self, key: str, value: Any) -> None:
97
+ self.additional_properties[key] = value
98
+
99
+ def __delitem__(self, key: str) -> None:
100
+ del self.additional_properties[key]
101
+
102
+ def __contains__(self, key: str) -> bool:
103
+ return key in self.additional_properties
@@ -0,0 +1,78 @@
1
+ from collections.abc import Mapping
2
+ from typing import Any, TypeVar, Union
3
+
4
+ from attrs import define as _attrs_define
5
+ from attrs import field as _attrs_field
6
+
7
+ from ..types import UNSET, Unset
8
+
9
+ T = TypeVar("T", bound="QuestionOptionsAdminRequest")
10
+
11
+
12
+ @_attrs_define
13
+ class QuestionOptionsAdminRequest:
14
+ """
15
+ Attributes:
16
+ label (str):
17
+ question (str):
18
+ order (Union[Unset, int]):
19
+ """
20
+
21
+ label: str
22
+ question: str
23
+ order: Union[Unset, int] = UNSET
24
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
25
+
26
+ def to_dict(self) -> dict[str, Any]:
27
+ label = self.label
28
+
29
+ question = self.question
30
+
31
+ order = self.order
32
+
33
+ field_dict: dict[str, Any] = {}
34
+ field_dict.update(self.additional_properties)
35
+ field_dict.update(
36
+ {
37
+ "label": label,
38
+ "question": question,
39
+ }
40
+ )
41
+ if order is not UNSET:
42
+ field_dict["order"] = order
43
+
44
+ return field_dict
45
+
46
+ @classmethod
47
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
48
+ d = dict(src_dict)
49
+ label = d.pop("label")
50
+
51
+ question = d.pop("question")
52
+
53
+ order = d.pop("order", UNSET)
54
+
55
+ question_options_admin_request = cls(
56
+ label=label,
57
+ question=question,
58
+ order=order,
59
+ )
60
+
61
+ question_options_admin_request.additional_properties = d
62
+ return question_options_admin_request
63
+
64
+ @property
65
+ def additional_keys(self) -> list[str]:
66
+ return list(self.additional_properties.keys())
67
+
68
+ def __getitem__(self, key: str) -> Any:
69
+ return self.additional_properties[key]
70
+
71
+ def __setitem__(self, key: str, value: Any) -> None:
72
+ self.additional_properties[key] = value
73
+
74
+ def __delitem__(self, key: str) -> None:
75
+ del self.additional_properties[key]
76
+
77
+ def __contains__(self, key: str) -> bool:
78
+ return key in self.additional_properties
@@ -0,0 +1,15 @@
1
+ from enum import Enum
2
+
3
+
4
+ class QuestionTypeEnum(str, Enum):
5
+ BOOLEAN = "boolean"
6
+ DATE = "date"
7
+ FILE = "file"
8
+ MULTI_SELECT = "multi_select"
9
+ NUMBER = "number"
10
+ SINGLE_SELECT = "single_select"
11
+ TEXT_AREA = "text_area"
12
+ TEXT_INPUT = "text_input"
13
+
14
+ def __str__(self) -> str:
15
+ return str(self.value)
@@ -73,8 +73,10 @@ class Resource:
73
73
  project_end_date_requested_by (Union[Unset, str]):
74
74
  customer_uuid (Union[Unset, UUID]):
75
75
  customer_name (Union[Unset, str]):
76
+ offering_slug (Union[Unset, str]):
76
77
  parent_offering_uuid (Union[Unset, UUID]):
77
78
  parent_offering_name (Union[Unset, str]):
79
+ parent_offering_slug (Union[Unset, str]):
78
80
  parent_uuid (Union[Unset, UUID]):
79
81
  parent_name (Union[Unset, str]):
80
82
  backend_metadata (Union[Unset, BackendMetadata]):
@@ -149,8 +151,10 @@ class Resource:
149
151
  project_end_date_requested_by: Union[Unset, str] = UNSET
150
152
  customer_uuid: Union[Unset, UUID] = UNSET
151
153
  customer_name: Union[Unset, str] = UNSET
154
+ offering_slug: Union[Unset, str] = UNSET
152
155
  parent_offering_uuid: Union[Unset, UUID] = UNSET
153
156
  parent_offering_name: Union[Unset, str] = UNSET
157
+ parent_offering_slug: Union[Unset, str] = UNSET
154
158
  parent_uuid: Union[Unset, UUID] = UNSET
155
159
  parent_name: Union[Unset, str] = UNSET
156
160
  backend_metadata: Union[Unset, "BackendMetadata"] = UNSET
@@ -327,12 +331,16 @@ class Resource:
327
331
 
328
332
  customer_name = self.customer_name
329
333
 
334
+ offering_slug = self.offering_slug
335
+
330
336
  parent_offering_uuid: Union[Unset, str] = UNSET
331
337
  if not isinstance(self.parent_offering_uuid, Unset):
332
338
  parent_offering_uuid = str(self.parent_offering_uuid)
333
339
 
334
340
  parent_offering_name = self.parent_offering_name
335
341
 
342
+ parent_offering_slug = self.parent_offering_slug
343
+
336
344
  parent_uuid: Union[Unset, str] = UNSET
337
345
  if not isinstance(self.parent_uuid, Unset):
338
346
  parent_uuid = str(self.parent_uuid)
@@ -530,10 +538,14 @@ class Resource:
530
538
  field_dict["customer_uuid"] = customer_uuid
531
539
  if customer_name is not UNSET:
532
540
  field_dict["customer_name"] = customer_name
541
+ if offering_slug is not UNSET:
542
+ field_dict["offering_slug"] = offering_slug
533
543
  if parent_offering_uuid is not UNSET:
534
544
  field_dict["parent_offering_uuid"] = parent_offering_uuid
535
545
  if parent_offering_name is not UNSET:
536
546
  field_dict["parent_offering_name"] = parent_offering_name
547
+ if parent_offering_slug is not UNSET:
548
+ field_dict["parent_offering_slug"] = parent_offering_slug
537
549
  if parent_uuid is not UNSET:
538
550
  field_dict["parent_uuid"] = parent_uuid
539
551
  if parent_name is not UNSET:
@@ -827,6 +839,8 @@ class Resource:
827
839
 
828
840
  customer_name = d.pop("customer_name", UNSET)
829
841
 
842
+ offering_slug = d.pop("offering_slug", UNSET)
843
+
830
844
  _parent_offering_uuid = d.pop("parent_offering_uuid", UNSET)
831
845
  parent_offering_uuid: Union[Unset, UUID]
832
846
  if isinstance(_parent_offering_uuid, Unset):
@@ -836,6 +850,8 @@ class Resource:
836
850
 
837
851
  parent_offering_name = d.pop("parent_offering_name", UNSET)
838
852
 
853
+ parent_offering_slug = d.pop("parent_offering_slug", UNSET)
854
+
839
855
  _parent_uuid = d.pop("parent_uuid", UNSET)
840
856
  parent_uuid: Union[Unset, UUID]
841
857
  if isinstance(_parent_uuid, Unset):
@@ -1041,8 +1057,10 @@ class Resource:
1041
1057
  project_end_date_requested_by=project_end_date_requested_by,
1042
1058
  customer_uuid=customer_uuid,
1043
1059
  customer_name=customer_name,
1060
+ offering_slug=offering_slug,
1044
1061
  parent_offering_uuid=parent_offering_uuid,
1045
1062
  parent_offering_name=parent_offering_name,
1063
+ parent_offering_slug=parent_offering_slug,
1046
1064
  parent_uuid=parent_uuid,
1047
1065
  parent_name=parent_name,
1048
1066
  backend_metadata=backend_metadata,
@@ -25,8 +25,13 @@ class Rule:
25
25
  customer (str):
26
26
  customer_name (str):
27
27
  customer_uuid (str):
28
- project_role_dispay_name (str):
28
+ project_role_display_name (str):
29
29
  project_role_description (str):
30
+ plan_name (str):
31
+ offering_name (str):
32
+ offering_uuid (UUID):
33
+ category_title (str):
34
+ category_url (str):
30
35
  user_affiliations (Union[Unset, list[str]]):
31
36
  user_email_patterns (Union[Unset, list[str]]):
32
37
  project_role (Union[None, Unset, str]):
@@ -41,8 +46,13 @@ class Rule:
41
46
  customer: str
42
47
  customer_name: str
43
48
  customer_uuid: str
44
- project_role_dispay_name: str
49
+ project_role_display_name: str
45
50
  project_role_description: str
51
+ plan_name: str
52
+ offering_name: str
53
+ offering_uuid: UUID
54
+ category_title: str
55
+ category_url: str
46
56
  user_affiliations: Union[Unset, list[str]] = UNSET
47
57
  user_email_patterns: Union[Unset, list[str]] = UNSET
48
58
  project_role: Union[None, Unset, str] = UNSET
@@ -64,10 +74,20 @@ class Rule:
64
74
 
65
75
  customer_uuid = self.customer_uuid
66
76
 
67
- project_role_dispay_name = self.project_role_dispay_name
77
+ project_role_display_name = self.project_role_display_name
68
78
 
69
79
  project_role_description = self.project_role_description
70
80
 
81
+ plan_name = self.plan_name
82
+
83
+ offering_name = self.offering_name
84
+
85
+ offering_uuid = str(self.offering_uuid)
86
+
87
+ category_title = self.category_title
88
+
89
+ category_url = self.category_url
90
+
71
91
  user_affiliations: Union[Unset, list[str]] = UNSET
72
92
  if not isinstance(self.user_affiliations, Unset):
73
93
  user_affiliations = self.user_affiliations
@@ -106,8 +126,13 @@ class Rule:
106
126
  "customer": customer,
107
127
  "customer_name": customer_name,
108
128
  "customer_uuid": customer_uuid,
109
- "project_role_dispay_name": project_role_dispay_name,
129
+ "project_role_display_name": project_role_display_name,
110
130
  "project_role_description": project_role_description,
131
+ "plan_name": plan_name,
132
+ "offering_name": offering_name,
133
+ "offering_uuid": offering_uuid,
134
+ "category_title": category_title,
135
+ "category_url": category_url,
111
136
  }
112
137
  )
113
138
  if user_affiliations is not UNSET:
@@ -143,10 +168,20 @@ class Rule:
143
168
 
144
169
  customer_uuid = d.pop("customer_uuid")
145
170
 
146
- project_role_dispay_name = d.pop("project_role_dispay_name")
171
+ project_role_display_name = d.pop("project_role_display_name")
147
172
 
148
173
  project_role_description = d.pop("project_role_description")
149
174
 
175
+ plan_name = d.pop("plan_name")
176
+
177
+ offering_name = d.pop("offering_name")
178
+
179
+ offering_uuid = UUID(d.pop("offering_uuid"))
180
+
181
+ category_title = d.pop("category_title")
182
+
183
+ category_url = d.pop("category_url")
184
+
150
185
  user_affiliations = cast(list[str], d.pop("user_affiliations", UNSET))
151
186
 
152
187
  user_email_patterns = cast(list[str], d.pop("user_email_patterns", UNSET))
@@ -190,8 +225,13 @@ class Rule:
190
225
  customer=customer,
191
226
  customer_name=customer_name,
192
227
  customer_uuid=customer_uuid,
193
- project_role_dispay_name=project_role_dispay_name,
228
+ project_role_display_name=project_role_display_name,
194
229
  project_role_description=project_role_description,
230
+ plan_name=plan_name,
231
+ offering_name=offering_name,
232
+ offering_uuid=offering_uuid,
233
+ category_title=category_title,
234
+ category_url=category_url,
195
235
  user_affiliations=user_affiliations,
196
236
  user_email_patterns=user_email_patterns,
197
237
  project_role=project_role,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: waldur-api-client
3
- Version: 7.7.0
3
+ Version: 7.7.2
4
4
  Summary: A client library for accessing Waldur API
5
5
  License: MIT
6
6
  Author: OpenNode Team