@accrescent/console-client-sdk-angular 0.2.0 → 0.4.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@accrescent/console-client-sdk-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "OpenAPI client for @accrescent/console-client-sdk-angular",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
@@ -13,17 +13,17 @@
|
|
|
13
13
|
],
|
|
14
14
|
"license": "Apache-2.0",
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"@angular/core": "^
|
|
16
|
+
"@angular/core": "^21.0.0",
|
|
17
17
|
"rxjs": "^7.4.0"
|
|
18
18
|
},
|
|
19
19
|
"module": "fesm2022/accrescent-console-client-sdk-angular.mjs",
|
|
20
|
-
"typings": "
|
|
20
|
+
"typings": "types/accrescent-console-client-sdk-angular.d.ts",
|
|
21
21
|
"exports": {
|
|
22
22
|
"./package.json": {
|
|
23
23
|
"default": "./package.json"
|
|
24
24
|
},
|
|
25
25
|
".": {
|
|
26
|
-
"types": "./
|
|
26
|
+
"types": "./types/accrescent-console-client-sdk-angular.d.ts",
|
|
27
27
|
"default": "./fesm2022/accrescent-console-client-sdk-angular.mjs"
|
|
28
28
|
}
|
|
29
29
|
},
|
|
@@ -1617,24 +1617,23 @@ declare class OrganizationsService extends BaseService {
|
|
|
1617
1617
|
/**
|
|
1618
1618
|
* Lists organizations.
|
|
1619
1619
|
* @endpoint get /grpc/accrescent.console.v1alpha1/organizations
|
|
1620
|
-
* @param userId The user to list organizations for. The response will contain the organizations this user is a member of.
|
|
1621
1620
|
* @param pageSize The maximum number of organizations to return in the response. If unspecified, defaults to 50. All requests with a higher page size will be capped to 50.
|
|
1622
1621
|
* @param pageToken An opaque page continuation token returned in a previous ListOrganizationsResponse. If unspecified, the first page is returned.
|
|
1623
1622
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1624
1623
|
* @param reportProgress flag to report request and response progress.
|
|
1625
1624
|
* @param options additional options
|
|
1626
1625
|
*/
|
|
1627
|
-
organizationServiceListOrganizations(
|
|
1626
|
+
organizationServiceListOrganizations(pageSize?: number, pageToken?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1628
1627
|
httpHeaderAccept?: 'application/json';
|
|
1629
1628
|
context?: HttpContext;
|
|
1630
1629
|
transferCache?: boolean;
|
|
1631
1630
|
}): Observable<V1alpha1ListOrganizationsResponse>;
|
|
1632
|
-
organizationServiceListOrganizations(
|
|
1631
|
+
organizationServiceListOrganizations(pageSize?: number, pageToken?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1633
1632
|
httpHeaderAccept?: 'application/json';
|
|
1634
1633
|
context?: HttpContext;
|
|
1635
1634
|
transferCache?: boolean;
|
|
1636
1635
|
}): Observable<HttpResponse<V1alpha1ListOrganizationsResponse>>;
|
|
1637
|
-
organizationServiceListOrganizations(
|
|
1636
|
+
organizationServiceListOrganizations(pageSize?: number, pageToken?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1638
1637
|
httpHeaderAccept?: 'application/json';
|
|
1639
1638
|
context?: HttpContext;
|
|
1640
1639
|
transferCache?: boolean;
|