@playaos/api-client 0.6.0 → 0.7.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/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -123,6 +123,8 @@ interface ApplicationCreateResponse {
|
|
|
123
123
|
interface ApplicationTransitionPayload {
|
|
124
124
|
to: ApplicationStatus;
|
|
125
125
|
rejectionReason?: string;
|
|
126
|
+
/** When true, sends a templated email to the applicant (PLA-710). */
|
|
127
|
+
notify?: boolean;
|
|
126
128
|
}
|
|
127
129
|
interface ApplicationTransitionResponse {
|
|
128
130
|
applicationId: string;
|
package/package.json
CHANGED