@accrescent/console-client-sdk-angular 0.5.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@accrescent/console-client-sdk-angular",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "OpenAPI client for @accrescent/console-client-sdk-angular",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -1595,6 +1595,23 @@ interface V1alpha1Organization {
1595
1595
  publishedAppCount?: number;
1596
1596
  }
1597
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;
1613
+ }
1614
+
1598
1615
  /**
1599
1616
  * Accrescent console API
1600
1617
  *
@@ -1622,6 +1639,29 @@ interface V1alpha1ListOrganizationsResponse {
1622
1639
  declare class OrganizationsService extends BaseService {
1623
1640
  protected httpClient: HttpClient;
1624
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>>;
1625
1665
  /**
1626
1666
  * Lists organizations.
1627
1667
  * @endpoint get /grpc/accrescent.console.v1alpha1/organizations
@@ -1935,4 +1975,4 @@ declare class ApiModule {
1935
1975
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
1936
1976
 
1937
1977
  export { APIS, ApiModule, AppDraftsService, AppEditsService, AppsService, BASE_PATH, COLLECTION_FORMATS, Configuration, OrganizationsService, ReviewsService, UsersService, V1alpha1UserRole, provideApi };
1938
- 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 };