@webitel/api-services 0.0.9 → 0.0.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/api-services",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "make-all": "npm run gen:api && npm version patch && npm run publish-lib",
@@ -17,15 +17,15 @@
17
17
  },
18
18
  "type": "module",
19
19
  "exports": {
20
- "gen": {
20
+ "./gen": {
21
21
  "import": "./src/gen/index.ts",
22
22
  "types": "./types/gen/index.d.ts"
23
23
  },
24
- "gen/utils": {
24
+ "./gen/utils": {
25
25
  "import": "./src/utils/gen/index.ts",
26
26
  "types": "./types/utils/gen/index.d.ts"
27
27
  },
28
- "gen/models": {
28
+ "./gen/models": {
29
29
  "import": "./src/gen/_models/index.ts",
30
30
  "types": "./types/gen/_models/index.d.ts"
31
31
  }
@@ -38,20 +38,20 @@
38
38
  "peerDependencies": {
39
39
  "axios": "^1.8.3",
40
40
  "deep-copy": "^1.4.2",
41
+ "msw": "^2.8.2",
41
42
  "deep-equal": "^2.2.3",
42
43
  "deepmerge": "^4.3.1",
43
44
  "lodash-es": "^4.17.21",
44
45
  "query-string": "^9.1.1",
46
+ "@faker-js/faker": "^9.7.0",
45
47
  "zod": "^4.0.0-beta.20250505T195954"
46
48
  },
47
49
  "devDependencies": {
48
50
  "@biomejs/biome": "1.9.4",
49
- "@faker-js/faker": "^9.7.0",
50
51
  "@tsconfig/node22": "^22.0.0",
51
52
  "@types/node": "^22.13.10",
52
53
  "globby": "^14.1.0",
53
54
  "husky": "^9.1.7",
54
- "msw": "^2.8.2",
55
55
  "orval": "^7.9.0",
56
56
  "path": "^0.12.7",
57
57
  "publint": "^0.3.9",
@@ -521,7 +521,6 @@
521
521
  - [GeneralLookup](../interfaces/_models.GeneralLookup.html)
522
522
  - [GoogleProtobufAny](../interfaces/_models.GoogleProtobufAny.html)
523
523
  - [GooglerpcStatus](../interfaces/_models.GooglerpcStatus.html)
524
- - [GoogleRpcStatus](../interfaces/_models.GoogleRpcStatus-1.html)
525
524
  - [GrpcGatewayRuntimeError](../interfaces/_models.GrpcGatewayRuntimeError.html)
526
525
  - [GrpcGatewayRuntimeStreamError](../interfaces/_models.GrpcGatewayRuntimeStreamError.html)
527
526
  - [LoggerConfig](../interfaces/_models.LoggerConfig.html)
@@ -15952,12 +15952,6 @@
15952
15952
 
15953
15953
  ***
15954
15954
 
15955
- ### GoogleRpcStatus
15956
-
15957
- > **GoogleRpcStatus**:
15958
-
15959
- ***
15960
-
15961
15955
  ### GroupsAddContactsToGroupParams
15962
15956
 
15963
15957
  > **GroupsAddContactsToGroupParams**:
@@ -4,10 +4,12 @@
4
4
  * Webitel API
5
5
  * OpenAPI spec version: 24.04.0
6
6
  */
7
- import type { GoogleProtobufAny } from './googleProtobufAny';
7
+ import type { ProtobufAny } from './protobufAny';
8
8
 
9
- export interface GoogleRpcStatus {
10
- code?: number;
11
- details?: GoogleProtobufAny[];
12
- message?: string;
9
+ export interface GooglerpcStatus {
10
+ code?: number;
11
+ details?: ProtobufAny[];
12
+ message?: string;
13
+ }
14
+ ssage?: string;
13
15
  }
@@ -1,21 +0,0 @@
1
- [@webitel/api-services](../index.html) / [\_models](../modules/_models.html) / GoogleRpcStatus
2
-
3
- # kind_interface: GoogleRpcStatus
4
-
5
- ## Properties
6
-
7
- ### code?
8
-
9
- > `optional` **code**: `number`
10
-
11
- ***
12
-
13
- ### details?
14
-
15
- > `optional` **details**: `GoogleProtobufAny[]`
16
-
17
- ***
18
-
19
- ### message?
20
-
21
- > `optional` **message**: `string`
@@ -1,13 +0,0 @@
1
- /**
2
- * Generated by orval v7.9.0 🍺
3
- * Do not edit manually.
4
- * Webitel API
5
- * OpenAPI spec version: 24.04.0
6
- */
7
- import type { ProtobufAny } from './protobufAny';
8
-
9
- export interface GooglerpcStatus {
10
- code?: number;
11
- details?: ProtobufAny[];
12
- message?: string;
13
- }
@@ -1,12 +0,0 @@
1
- /**
2
- * Generated by orval v7.9.0 🍺
3
- * Do not edit manually.
4
- * Webitel API
5
- * OpenAPI spec version: 24.04.0
6
- */
7
- import type { GoogleProtobufAny } from './googleProtobufAny';
8
- export interface GoogleRpcStatus {
9
- code?: number;
10
- details?: GoogleProtobufAny[];
11
- message?: string;
12
- }