@accrescent/console-client-sdk-angular 0.4.0 → 0.6.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,31 @@ 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;
|
|
1596
|
+
}
|
|
1597
|
+
|
|
1598
|
+
/**
|
|
1599
|
+
* Accrescent console API
|
|
1600
|
+
*
|
|
1601
|
+
* Contact: contact@accrescent.app
|
|
1602
|
+
*
|
|
1603
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1604
|
+
* https://openapi-generator.tech
|
|
1605
|
+
* Do not edit the class manually.
|
|
1606
|
+
*/
|
|
1607
|
+
|
|
1608
|
+
/**
|
|
1609
|
+
* Response to getting an organization.
|
|
1610
|
+
*/
|
|
1611
|
+
interface V1alpha1GetOrganizationResponse {
|
|
1612
|
+
organization: V1alpha1Organization;
|
|
1588
1613
|
}
|
|
1589
1614
|
|
|
1590
1615
|
/**
|
|
@@ -1614,6 +1639,29 @@ interface V1alpha1ListOrganizationsResponse {
|
|
|
1614
1639
|
declare class OrganizationsService extends BaseService {
|
|
1615
1640
|
protected httpClient: HttpClient;
|
|
1616
1641
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
1642
|
+
/**
|
|
1643
|
+
* Gets an organization.
|
|
1644
|
+
* @endpoint get /grpc/accrescent.console.v1alpha1/organizations/{organizationId}
|
|
1645
|
+
* @param organizationId The ID of the organization to retrieve.
|
|
1646
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1647
|
+
* @param reportProgress flag to report request and response progress.
|
|
1648
|
+
* @param options additional options
|
|
1649
|
+
*/
|
|
1650
|
+
organizationServiceGetOrganization(organizationId: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1651
|
+
httpHeaderAccept?: 'application/json';
|
|
1652
|
+
context?: HttpContext;
|
|
1653
|
+
transferCache?: boolean;
|
|
1654
|
+
}): Observable<V1alpha1GetOrganizationResponse>;
|
|
1655
|
+
organizationServiceGetOrganization(organizationId: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1656
|
+
httpHeaderAccept?: 'application/json';
|
|
1657
|
+
context?: HttpContext;
|
|
1658
|
+
transferCache?: boolean;
|
|
1659
|
+
}): Observable<HttpResponse<V1alpha1GetOrganizationResponse>>;
|
|
1660
|
+
organizationServiceGetOrganization(organizationId: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1661
|
+
httpHeaderAccept?: 'application/json';
|
|
1662
|
+
context?: HttpContext;
|
|
1663
|
+
transferCache?: boolean;
|
|
1664
|
+
}): Observable<HttpEvent<V1alpha1GetOrganizationResponse>>;
|
|
1617
1665
|
/**
|
|
1618
1666
|
* Lists organizations.
|
|
1619
1667
|
* @endpoint get /grpc/accrescent.console.v1alpha1/organizations
|
|
@@ -1927,4 +1975,4 @@ declare class ApiModule {
|
|
|
1927
1975
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
1928
1976
|
|
|
1929
1977
|
export { APIS, ApiModule, AppDraftsService, AppEditsService, AppsService, BASE_PATH, COLLECTION_FORMATS, Configuration, OrganizationsService, ReviewsService, UsersService, V1alpha1UserRole, provideApi };
|
|
1930
|
-
export type { AppDraftServiceCreateAppDraftListingBody, AppDraftServiceUpdateAppDraftBody, AppEditServiceCreateAppEditListingBody, AppEditServiceUpdateAppEditBody, AppServiceUpdateAppBody, ConfigurationParameters, DataFormat, DataType, GoogleLongrunningOperation, Param, ParamLocation, ParamStyle, ProtobufAny, ReviewServiceCreateAppDraftReviewBody, ReviewServiceCreateAppEditReviewBody, RpcStatus, StandardDataFormat, StandardDataType, StandardParamStyle, UserServiceUpdateUserBody, V1alpha1App, V1alpha1AppDraft, V1alpha1AppEdit, V1alpha1AppPackage, V1alpha1CreateAppDraftListingIconUploadOperationResponse, V1alpha1CreateAppDraftRequest, V1alpha1CreateAppDraftResponse, V1alpha1CreateAppDraftUploadOperationResponse, V1alpha1CreateAppEditListingIconUploadOperationResponse, V1alpha1CreateAppEditResponse, V1alpha1CreateAppEditUploadOperationResponse, V1alpha1GetAppDraftDownloadInfoResponse, V1alpha1GetAppDraftListingIconDownloadInfoResponse, V1alpha1GetAppDraftResponse, V1alpha1GetAppEditDownloadInfoResponse, V1alpha1GetAppEditResponse, V1alpha1GetAppResponse, V1alpha1GetSelfResponse, V1alpha1ListAppDraftsResponse, V1alpha1ListAppEditsResponse, V1alpha1ListAppsResponse, V1alpha1ListOrganizationsResponse, V1alpha1Organization, V1alpha1PublishAppDraftResponse, V1alpha1RejectionReason, V1alpha1SubmitAppEditResponse, V1alpha1User };
|
|
1978
|
+
export type { AppDraftServiceCreateAppDraftListingBody, AppDraftServiceUpdateAppDraftBody, AppEditServiceCreateAppEditListingBody, AppEditServiceUpdateAppEditBody, AppServiceUpdateAppBody, ConfigurationParameters, DataFormat, DataType, GoogleLongrunningOperation, Param, ParamLocation, ParamStyle, ProtobufAny, ReviewServiceCreateAppDraftReviewBody, ReviewServiceCreateAppEditReviewBody, RpcStatus, StandardDataFormat, StandardDataType, StandardParamStyle, UserServiceUpdateUserBody, V1alpha1App, V1alpha1AppDraft, V1alpha1AppEdit, V1alpha1AppPackage, V1alpha1CreateAppDraftListingIconUploadOperationResponse, V1alpha1CreateAppDraftRequest, V1alpha1CreateAppDraftResponse, V1alpha1CreateAppDraftUploadOperationResponse, V1alpha1CreateAppEditListingIconUploadOperationResponse, V1alpha1CreateAppEditResponse, V1alpha1CreateAppEditUploadOperationResponse, V1alpha1GetAppDraftDownloadInfoResponse, V1alpha1GetAppDraftListingIconDownloadInfoResponse, V1alpha1GetAppDraftResponse, V1alpha1GetAppEditDownloadInfoResponse, V1alpha1GetAppEditResponse, V1alpha1GetAppResponse, V1alpha1GetOrganizationResponse, V1alpha1GetSelfResponse, V1alpha1ListAppDraftsResponse, V1alpha1ListAppEditsResponse, V1alpha1ListAppsResponse, V1alpha1ListOrganizationsResponse, V1alpha1Organization, V1alpha1PublishAppDraftResponse, V1alpha1RejectionReason, V1alpha1SubmitAppEditResponse, V1alpha1User };
|