Skip to content

Commit

Permalink
Merge branch 'v1.3-next' into DEVEXP-607_Mailgun-authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
asein-sinch authored Oct 11, 2024
2 parents 431e3db + 93dc4e7 commit abd2a2d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/fax/src/models/v3/errors/call-error/call-error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ export interface CallError {
errorCode?: CallErrorCodeEnum;
}

export type CallErrorCodeEnum = '11' | '15' | '16' | '17' | '19' | '30' | '32' | '34' | '43' | '49';
export type CallErrorCodeEnum = '11' | '15' | '16' | '17' | '19' | '30' | '32' | '34' | '43' | '49' | string;
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ export interface DocumentConversionError {
errorCode?: DocumentConversionErrorCodeEnum;
}

export type DocumentConversionErrorCodeEnum = '4' | '54' | '55' | '57' | '69' | '122' | '128' | '129' | '130' | '133';
export type DocumentConversionErrorCodeEnum = '4' | '54' | '55' | '57' | '69' | '122'
| '128' | '129' | '130' | '133 | string';
2 changes: 1 addition & 1 deletion packages/fax/src/models/v3/errors/fax-error/fax-error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ export interface FaxError {
export type FaxErrorCodeEnum = '6' | '7' | '8' | '10' | '12' | '13' | '14' | '18'
| '20' | '21' | '22' | '25' | '26' | '28' | '29' | '31' | '38' | '40' | '41'
| '44' | '46' | '48' | '53' | '60' | '63' | '68' | '75' | '76' | '77' | '79'
| '80' | '82' | '84' | '113' | '117' | '119' | '131' | '132';
| '80' | '82' | '84' | '113' | '117' | '119' | '131' | '132' | string;

0 comments on commit abd2a2d

Please sign in to comment.