@forteplatforms/sdk 1.0.279 → 1.0.288

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.
@@ -395,6 +395,7 @@ export interface ListRequestInvocationLogsRequest {
395
395
  minTime?: Date;
396
396
  maxTime?: Date;
397
397
  statusCode?: number;
398
+ statusClass?: string;
398
399
  requestPath?: string;
399
400
  requestMethod?: string;
400
401
  requestPathId?: string;
@@ -4120,6 +4120,9 @@ var ProjectsServerApi = /** @class */ (function (_super) {
4120
4120
  if (requestParameters['statusCode'] != null) {
4121
4121
  queryParameters['statusCode'] = requestParameters['statusCode'];
4122
4122
  }
4123
+ if (requestParameters['statusClass'] != null) {
4124
+ queryParameters['statusClass'] = requestParameters['statusClass'];
4125
+ }
4123
4126
  if (requestParameters['requestPath'] != null) {
4124
4127
  queryParameters['requestPath'] = requestParameters['requestPath'];
4125
4128
  }
@@ -234,6 +234,10 @@ export declare const ForteApiExceptionErrorCodeType: {
234
234
  readonly MFA_FIRST_FACTOR_CONTACT_REQUIRED: "MFA_FIRST_FACTOR_CONTACT_REQUIRED";
235
235
  readonly MFA_TARGET_CONTACT_INVALID: "MFA_TARGET_CONTACT_INVALID";
236
236
  readonly OTP_LOGIN_DISABLED_UNDER_MFA: "OTP_LOGIN_DISABLED_UNDER_MFA";
237
+ readonly CRM_COMPANY_NOT_FOUND: "CRM_COMPANY_NOT_FOUND";
238
+ readonly CRM_SEQUENCE_NOT_FOUND: "CRM_SEQUENCE_NOT_FOUND";
239
+ readonly CRM_SEQUENCE_MEMBER_NOT_FOUND: "CRM_SEQUENCE_MEMBER_NOT_FOUND";
240
+ readonly CRM_SEQUENCE_MEMBER_MISSING_CONTACT: "CRM_SEQUENCE_MEMBER_MISSING_CONTACT";
237
241
  };
238
242
  export type ForteApiExceptionErrorCodeType = typeof ForteApiExceptionErrorCodeType[keyof typeof ForteApiExceptionErrorCodeType];
239
243
  /**
@@ -218,7 +218,11 @@ exports.ForteApiExceptionErrorCodeType = {
218
218
  MFA_FIRST_FACTOR_CONTACT_NOT_ALLOWED: 'MFA_FIRST_FACTOR_CONTACT_NOT_ALLOWED',
219
219
  MFA_FIRST_FACTOR_CONTACT_REQUIRED: 'MFA_FIRST_FACTOR_CONTACT_REQUIRED',
220
220
  MFA_TARGET_CONTACT_INVALID: 'MFA_TARGET_CONTACT_INVALID',
221
- OTP_LOGIN_DISABLED_UNDER_MFA: 'OTP_LOGIN_DISABLED_UNDER_MFA'
221
+ OTP_LOGIN_DISABLED_UNDER_MFA: 'OTP_LOGIN_DISABLED_UNDER_MFA',
222
+ CRM_COMPANY_NOT_FOUND: 'CRM_COMPANY_NOT_FOUND',
223
+ CRM_SEQUENCE_NOT_FOUND: 'CRM_SEQUENCE_NOT_FOUND',
224
+ CRM_SEQUENCE_MEMBER_NOT_FOUND: 'CRM_SEQUENCE_MEMBER_NOT_FOUND',
225
+ CRM_SEQUENCE_MEMBER_MISSING_CONTACT: 'CRM_SEQUENCE_MEMBER_MISSING_CONTACT'
222
226
  };
223
227
  /**
224
228
  * Check if a given object implements the ForteApiException interface.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forteplatforms/sdk",
3
- "version": "1.0.279",
3
+ "version": "1.0.288",
4
4
  "description": "Official TypeScript SDK for Forte Platforms",
5
5
  "author": "Forte Platforms <support@forteplatforms.com>",
6
6
  "repository": {