Skip to content

Commit

Permalink
refactor: clean up verbiage in other plain client docs
Browse files Browse the repository at this point in the history
  • Loading branch information
t-col committed Sep 20, 2023
1 parent dcca72e commit a783e51
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions lib/plain/entities/app-action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { OptionalDefaults } from '../wrappers/wrap'

export type AppActionPlainClientAPI = {
/**
* Fetches the given App Action.
* Fetches the App Action
* @param params entity IDs to identify the App Action
* @returns the App Action
* @throws if the request fails, or the App Action is not found
Expand Down Expand Up @@ -57,7 +57,7 @@ export type AppActionPlainClientAPI = {
params: OptionalDefaults<GetAppActionsForEnvParams & QueryParams>
): Promise<CollectionProp<AppActionProps>>
/**
* Deletes the given App Action
* Deletes the App Action
* @param params entity IDs to identify the App Action to delete
* @returns void
* @throws if the request fails, or the App Action is not found
Expand Down
4 changes: 2 additions & 2 deletions lib/plain/entities/app-bundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { OptionalDefaults } from '../wrappers/wrap'

export type AppBundlePlainClientAPI = {
/**
* Fetches the given App Bundle
* Fetches the App Bundle
* @param params entity IDs to identify the App Bundle
* @returns the App Bundle
* @throws if the request fails, or the App Bundle is not found
Expand Down Expand Up @@ -39,7 +39,7 @@ export type AppBundlePlainClientAPI = {
params: OptionalDefaults<GetAppDefinitionParams & QueryParams>
): Promise<CollectionProp<AppBundleProps>>
/**
* Deletes the given App Bundle
* Deletes the App Bundle
* @param params entity IDs to identify the App Bundle
* @throws if the request fails, or the App Bundle is not found
* @example
Expand Down
6 changes: 3 additions & 3 deletions lib/plain/entities/app-details.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { OptionalDefaults } from '../wrappers/wrap'

export type AppDetailsPlainClientAPI = {
/**
* Upserts an App Detail
* Creates or updates an App Detail
* @param params entity IDs to identify the App Definition or App Details
* @param payload the App Detail upsert
* @returns the updated App Detail and its metadata
Expand All @@ -31,7 +31,7 @@ export type AppDetailsPlainClientAPI = {
payload: CreateAppDetailsProps
): Promise<AppDetailsProps>
/**
* Fetches the requested App Detail
* Fetches the App Detail
* @param params entity IDs to identify the App Detail
* @returns the App Detail
* @throws if the request fails, or the App Detail is not found
Expand All @@ -45,7 +45,7 @@ export type AppDetailsPlainClientAPI = {
*/
get(params: OptionalDefaults<GetAppDefinitionParams>): Promise<AppDetailsProps>
/**
* Fetches the given App Detail
* Fetches the App Detail
* @param params entity IDs to identify the App Detail
* @throws if the request fails, or the App Detail is not found
* @example
Expand Down
6 changes: 3 additions & 3 deletions lib/plain/entities/app-upload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { OptionalDefaults } from '../wrappers/wrap'

export type AppUploadPlainClientAPI = {
/**
* Fetches the given App Upload
* Fetches the App Upload
* @param params entity IDs to identify the App Upload
* @returns the App Upload
* @throws if the request fails, or the App Upload is not found
Expand All @@ -19,7 +19,7 @@ export type AppUploadPlainClientAPI = {
*/
get(params: OptionalDefaults<GetAppUploadParams>): Promise<AppUploadProps>
/**
* Deletes the given App Upload
* Deletes the App Upload
* @param params entity IDs to identify the App Upload
* @throws if the request fails, or the App Upload is not found
* @example
Expand All @@ -33,7 +33,7 @@ export type AppUploadPlainClientAPI = {
delete(params: OptionalDefaults<GetAppUploadParams>): Promise<void>
/**
* Creates an App Upload
* @param params entity IDs to identify the Organization to create the App Upload in
* @param params entity IDs to identify the Organization to upload the App to
* @param payload the App Upload
* @returns the App Upload
* @throws if the request fails, or the Organization is not found
Expand Down

0 comments on commit a783e51

Please sign in to comment.