@forteplatforms/sdk 1.0.112 → 1.0.114
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.
|
@@ -105,6 +105,8 @@ export declare const ForteApiExceptionErrorCodeType: {
|
|
|
105
105
|
readonly MISSING_GITHUB_BRANCH: "MISSING_GITHUB_BRANCH";
|
|
106
106
|
readonly EXTERNAL_API_ERROR: "EXTERNAL_API_ERROR";
|
|
107
107
|
readonly PAYMENTS_PROVIDER_REJECTED: "PAYMENTS_PROVIDER_REJECTED";
|
|
108
|
+
readonly EMAIL_CONFIGURATION_INVALID: "EMAIL_CONFIGURATION_INVALID";
|
|
109
|
+
readonly SES_TENANT_NOT_PROVISIONED: "SES_TENANT_NOT_PROVISIONED";
|
|
108
110
|
};
|
|
109
111
|
export type ForteApiExceptionErrorCodeType = typeof ForteApiExceptionErrorCodeType[keyof typeof ForteApiExceptionErrorCodeType];
|
|
110
112
|
/**
|
|
@@ -89,7 +89,9 @@ exports.ForteApiExceptionErrorCodeType = {
|
|
|
89
89
|
PHONE_LOGIN_NOT_ENABLED: 'PHONE_LOGIN_NOT_ENABLED',
|
|
90
90
|
MISSING_GITHUB_BRANCH: 'MISSING_GITHUB_BRANCH',
|
|
91
91
|
EXTERNAL_API_ERROR: 'EXTERNAL_API_ERROR',
|
|
92
|
-
PAYMENTS_PROVIDER_REJECTED: 'PAYMENTS_PROVIDER_REJECTED'
|
|
92
|
+
PAYMENTS_PROVIDER_REJECTED: 'PAYMENTS_PROVIDER_REJECTED',
|
|
93
|
+
EMAIL_CONFIGURATION_INVALID: 'EMAIL_CONFIGURATION_INVALID',
|
|
94
|
+
SES_TENANT_NOT_PROVISIONED: 'SES_TENANT_NOT_PROVISIONED'
|
|
93
95
|
};
|
|
94
96
|
/**
|
|
95
97
|
* Check if a given object implements the ForteApiException interface.
|