@accrescent/console-client-sdk-angular 0.3.0 → 0.5.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
|
@@ -1585,6 +1585,14 @@ interface V1alpha1Organization {
|
|
|
1585
1585
|
* The organization\'s unique ID.
|
|
1586
1586
|
*/
|
|
1587
1587
|
id: string;
|
|
1588
|
+
/**
|
|
1589
|
+
* The maximum number of published apps allowed to exist under this organization.
|
|
1590
|
+
*/
|
|
1591
|
+
publishedAppLimit?: number;
|
|
1592
|
+
/**
|
|
1593
|
+
* The current number of published apps in this organization.
|
|
1594
|
+
*/
|
|
1595
|
+
publishedAppCount?: number;
|
|
1588
1596
|
}
|
|
1589
1597
|
|
|
1590
1598
|
/**
|
|
@@ -1617,24 +1625,23 @@ declare class OrganizationsService extends BaseService {
|
|
|
1617
1625
|
/**
|
|
1618
1626
|
* Lists organizations.
|
|
1619
1627
|
* @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
1628
|
* @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
1629
|
* @param pageToken An opaque page continuation token returned in a previous ListOrganizationsResponse. If unspecified, the first page is returned.
|
|
1623
1630
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1624
1631
|
* @param reportProgress flag to report request and response progress.
|
|
1625
1632
|
* @param options additional options
|
|
1626
1633
|
*/
|
|
1627
|
-
organizationServiceListOrganizations(
|
|
1634
|
+
organizationServiceListOrganizations(pageSize?: number, pageToken?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1628
1635
|
httpHeaderAccept?: 'application/json';
|
|
1629
1636
|
context?: HttpContext;
|
|
1630
1637
|
transferCache?: boolean;
|
|
1631
1638
|
}): Observable<V1alpha1ListOrganizationsResponse>;
|
|
1632
|
-
organizationServiceListOrganizations(
|
|
1639
|
+
organizationServiceListOrganizations(pageSize?: number, pageToken?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1633
1640
|
httpHeaderAccept?: 'application/json';
|
|
1634
1641
|
context?: HttpContext;
|
|
1635
1642
|
transferCache?: boolean;
|
|
1636
1643
|
}): Observable<HttpResponse<V1alpha1ListOrganizationsResponse>>;
|
|
1637
|
-
organizationServiceListOrganizations(
|
|
1644
|
+
organizationServiceListOrganizations(pageSize?: number, pageToken?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1638
1645
|
httpHeaderAccept?: 'application/json';
|
|
1639
1646
|
context?: HttpContext;
|
|
1640
1647
|
transferCache?: boolean;
|