@equisoft/account-service-sdk-typescript 10.4.1-snapshot.20251127212154 → 10.4.1-snapshot.20251201203938
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.
|
@@ -635,6 +635,9 @@ class OrganizationApi extends runtime.BaseAPI {
|
|
|
635
635
|
if (requestParameters['query'] != null) {
|
|
636
636
|
queryParameters['query'] = requestParameters['query'];
|
|
637
637
|
}
|
|
638
|
+
if (requestParameters['withServiceProfile'] != null) {
|
|
639
|
+
queryParameters['withServiceProfile'] = requestParameters['withServiceProfile'];
|
|
640
|
+
}
|
|
638
641
|
if (requestParameters['withServiceProfileFor'] != null) {
|
|
639
642
|
queryParameters['withServiceProfileFor'] = requestParameters['withServiceProfileFor'];
|
|
640
643
|
}
|
|
@@ -632,6 +632,9 @@ export class OrganizationApi extends runtime.BaseAPI {
|
|
|
632
632
|
if (requestParameters['query'] != null) {
|
|
633
633
|
queryParameters['query'] = requestParameters['query'];
|
|
634
634
|
}
|
|
635
|
+
if (requestParameters['withServiceProfile'] != null) {
|
|
636
|
+
queryParameters['withServiceProfile'] = requestParameters['withServiceProfile'];
|
|
637
|
+
}
|
|
635
638
|
if (requestParameters['withServiceProfileFor'] != null) {
|
|
636
639
|
queryParameters['withServiceProfileFor'] = requestParameters['withServiceProfileFor'];
|
|
637
640
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equisoft/account-service-sdk-typescript",
|
|
3
|
-
"version": "10.4.1-snapshot.
|
|
3
|
+
"version": "10.4.1-snapshot.20251201203938",
|
|
4
4
|
"description": "OpenAPI client for @equisoft/account-service-sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator",
|
|
6
6
|
"repository": {
|
|
@@ -157,6 +157,7 @@ export interface ListOrganizationRequest {
|
|
|
157
157
|
pageToken?: string;
|
|
158
158
|
parent?: string;
|
|
159
159
|
query?: string;
|
|
160
|
+
withServiceProfile?: string;
|
|
160
161
|
withServiceProfileFor?: string;
|
|
161
162
|
}
|
|
162
163
|
|
|
@@ -994,6 +995,10 @@ export class OrganizationApi extends runtime.BaseAPI {
|
|
|
994
995
|
queryParameters['query'] = requestParameters['query'];
|
|
995
996
|
}
|
|
996
997
|
|
|
998
|
+
if (requestParameters['withServiceProfile'] != null) {
|
|
999
|
+
queryParameters['withServiceProfile'] = requestParameters['withServiceProfile'];
|
|
1000
|
+
}
|
|
1001
|
+
|
|
997
1002
|
if (requestParameters['withServiceProfileFor'] != null) {
|
|
998
1003
|
queryParameters['withServiceProfileFor'] = requestParameters['withServiceProfileFor'];
|
|
999
1004
|
}
|