@plyaz/types 1.13.16 → 1.13.17
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/api/endpoints/infobip/types.d.ts +1 -1
- package/dist/api/errors/types.d.ts +1 -1
- package/dist/api/index.cjs +158 -100
- package/dist/api/index.cjs.map +1 -1
- package/dist/api/index.js +60 -2
- package/dist/api/index.js.map +1 -1
- package/dist/db/database.types.d.ts +1 -1
- package/dist/db/features-config.types.d.ts +2 -2
- package/dist/db/index.cjs.map +1 -1
- package/dist/db/index.js.map +1 -1
- package/dist/db/replica.types.d.ts +2 -2
- package/dist/errors/index.cjs +158 -100
- package/dist/errors/index.cjs.map +1 -1
- package/dist/errors/index.js +60 -2
- package/dist/errors/index.js.map +1 -1
- package/dist/errors/types.d.ts +5 -3
- package/dist/http/constants.d.ts +265 -0
- package/dist/index.cjs +558 -100
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +459 -2
- package/dist/index.js.map +1 -1
- package/dist/locale/types.d.ts +109 -0
- package/dist/notifications/enums.d.ts +0 -1
- package/dist/notifications/index.cjs.map +1 -1
- package/dist/notifications/index.js.map +1 -1
- package/dist/payments/base-error/types.d.ts +1 -1
- package/dist/payments/gateways/provider/types.d.ts +1 -1
- package/dist/payments/gateways/routings/types.d.ts +1 -1
- package/dist/payments/provider/adapter/types.d.ts +1 -1
- package/dist/payments/provider/core/types.d.ts +1 -1
- package/dist/payments/provider/payment-provider/types.d.ts +1 -1
- package/dist/payments/transaction/types.d.ts +1 -1
- package/package.json +1 -2
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
*
|
|
9
9
|
* All types are generated from official Infobip OpenAPI specifications.
|
|
10
10
|
*/
|
|
11
|
-
import type { HTTP_STATUS } from '
|
|
11
|
+
import type { HTTP_STATUS } from '../../../http/constants';
|
|
12
12
|
import type { operations as EmailOperations, components as EmailComponents } from './generated/email.generated';
|
|
13
13
|
/**
|
|
14
14
|
* Standard Infobip API error response structure
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
import type { ResponseError } from 'fetchff';
|
|
10
10
|
import type { ErrorDetail, BasePackageErrorOptions, INTERNAL_STATUS_CODES, PackageErrorLike } from '../../errors';
|
|
11
11
|
import type { ApiClientInstance } from '..';
|
|
12
|
-
import type { HTTP_STATUS } from '
|
|
12
|
+
import type { HTTP_STATUS } from '../../http/constants';
|
|
13
13
|
/**
|
|
14
14
|
* ===== Type Aliases =====
|
|
15
15
|
* Re-exported from centralized location for backwards compatibility
|