@forteplatforms/sdk 1.0.112 → 1.0.116
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,9 @@ 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";
|
|
110
|
+
readonly SMS_CONFIGURATION_INVALID: "SMS_CONFIGURATION_INVALID";
|
|
108
111
|
};
|
|
109
112
|
export type ForteApiExceptionErrorCodeType = typeof ForteApiExceptionErrorCodeType[keyof typeof ForteApiExceptionErrorCodeType];
|
|
110
113
|
/**
|
|
@@ -89,7 +89,10 @@ 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',
|
|
95
|
+
SMS_CONFIGURATION_INVALID: 'SMS_CONFIGURATION_INVALID'
|
|
93
96
|
};
|
|
94
97
|
/**
|
|
95
98
|
* Check if a given object implements the ForteApiException interface.
|