@or-sdk/identifiers 0.26.5 → 0.27.0
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/CHANGELOG.md +9 -0
- package/dist/types/identifiers.d.ts +133 -0
- package/dist/types/identifiers.d.ts.map +1 -1
- package/dist/types/types.d.ts +14 -0
- package/dist/types/types.d.ts.map +1 -1
- package/dist/types/utils/index.d.ts +3 -0
- package/dist/types/utils/index.d.ts.map +1 -1
- package/package.json +4 -4
- package/tsconfig.types.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.27.0](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/identifiers@0.26.5...@or-sdk/identifiers@0.27.0) (2026-02-24)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **deployer:** Add methods 'fetchFlowLogsChunk' and 'fetchAllFlowLogs' to fetch flow logs ([6b70992](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/commit/6b70992ce3d1e4f308db69df700528f6eeffafcf))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [0.26.5](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/identifiers@0.26.4...@or-sdk/identifiers@0.26.5) (2026-01-15)
|
|
7
16
|
|
|
8
17
|
**Note:** Version bump only for package @or-sdk/identifiers
|
|
@@ -1,19 +1,152 @@
|
|
|
1
1
|
import { List } from '@or-sdk/base';
|
|
2
2
|
import { BuyIdentifierResponse, Identifier, IdentifierGroup, IdentifierProvider, IdentifiersConfig, IdentifierTrigger, ObtainableIdentifier, ObtainableIdentifierRequestParams, SingleIdentifier } from './types';
|
|
3
|
+
/**
|
|
4
|
+
* Identifiers SDK API. Mainly used for Identifiers Manager application(since v3)
|
|
5
|
+
* Depends on {@link SdkApi}, their configuration and initialisation
|
|
6
|
+
*
|
|
7
|
+
* @see https://gitlab.internal.onereach.io/onereach/voice/identifiers-manager
|
|
8
|
+
*/
|
|
3
9
|
export declare class Identifiers {
|
|
4
10
|
private readonly _sdkApi;
|
|
11
|
+
/**
|
|
12
|
+
* Identifiers SDK client creation. Including {@link SdkApi} dependency
|
|
13
|
+
*
|
|
14
|
+
* @param config SDK configuration {@link IdentifiersConfig}
|
|
15
|
+
* @throws TokenIsMissedError if required configuration parameter token is missed
|
|
16
|
+
* @throws SdkUrlOrDiscoveryUrlIsMissedError if one of required configuration
|
|
17
|
+
* parameter is missed : sdkUrl or discoveryUrl
|
|
18
|
+
*/
|
|
5
19
|
constructor(config: IdentifiersConfig);
|
|
20
|
+
/**
|
|
21
|
+
* Service initialisation. Including dependencies.
|
|
22
|
+
* Required to call depending on context of usage(already initialised {@link SdkApi})
|
|
23
|
+
*/
|
|
6
24
|
init(): Promise<void>;
|
|
25
|
+
/**
|
|
26
|
+
* Load list of identifiers
|
|
27
|
+
*
|
|
28
|
+
* @example
|
|
29
|
+
* ```typescript
|
|
30
|
+
* const identifierList = await identifiers.listIdentifiers();
|
|
31
|
+
* ```
|
|
32
|
+
* @async
|
|
33
|
+
* @return List<SingleIdentifier>
|
|
34
|
+
*/
|
|
7
35
|
listIdentifiers(): Promise<List<SingleIdentifier>>;
|
|
36
|
+
/**
|
|
37
|
+
* List identifier groups
|
|
38
|
+
*
|
|
39
|
+
* @example
|
|
40
|
+
* ```typescript
|
|
41
|
+
* const identifierGroupList = await identifiers.listIdentifierGroups();
|
|
42
|
+
* ```
|
|
43
|
+
* @async
|
|
44
|
+
* @return List<IdentifierGroup>
|
|
45
|
+
*
|
|
46
|
+
*/
|
|
8
47
|
listIdentifierGroups(): Promise<List<IdentifierGroup>>;
|
|
48
|
+
/**
|
|
49
|
+
* Get identifier by identifier id
|
|
50
|
+
*
|
|
51
|
+
* @example
|
|
52
|
+
* ```typescript
|
|
53
|
+
* const identifier = await identifiers.getIdentifier('identifier-id');
|
|
54
|
+
* ```
|
|
55
|
+
* @param id identifier id
|
|
56
|
+
* @async
|
|
57
|
+
* @return SingleIdentifier
|
|
58
|
+
*/
|
|
9
59
|
getIdentifier(id: Identifier['id']): Promise<SingleIdentifier>;
|
|
60
|
+
/**
|
|
61
|
+
* Get identifier group
|
|
62
|
+
*
|
|
63
|
+
* @example
|
|
64
|
+
* ```typescript
|
|
65
|
+
* const identifierGroup = await identifiers.getIdentifierGroup('identifier-group-id');
|
|
66
|
+
* ```
|
|
67
|
+
* @param id identifier id
|
|
68
|
+
* @async
|
|
69
|
+
* @return IdentifierGroup
|
|
70
|
+
*/
|
|
10
71
|
getIdentifierGroup(id: Identifier['id']): Promise<IdentifierGroup>;
|
|
72
|
+
/**
|
|
73
|
+
* List obtainable identifiers
|
|
74
|
+
*
|
|
75
|
+
* @example
|
|
76
|
+
* ```typescript
|
|
77
|
+
* const obtainableIdentifiers = await identifiers.listObtainableIdentifiers({
|
|
78
|
+
* country: 'US',
|
|
79
|
+
* type: 'local',
|
|
80
|
+
* limit: 30,
|
|
81
|
+
* pattern: 'pattern',
|
|
82
|
+
* patternType: 'starts',
|
|
83
|
+
* capabilities: ['voice','sms','mms'],
|
|
84
|
+
* });
|
|
85
|
+
* ```
|
|
86
|
+
* @param params obtainable identifiers request params {@link ObtainableIdentifierRequestParams}
|
|
87
|
+
* @async
|
|
88
|
+
* @return List<ObtainableIdentifier>
|
|
89
|
+
*/
|
|
11
90
|
listObtainableIdentifiers(params?: ObtainableIdentifierRequestParams): Promise<List<ObtainableIdentifier>>;
|
|
91
|
+
/**
|
|
92
|
+
* Remove identifiers
|
|
93
|
+
* @example
|
|
94
|
+
* ```typescript
|
|
95
|
+
* await identifiers.releaseIdentifier('identifier-id');
|
|
96
|
+
* ```
|
|
97
|
+
* @param id identifier id to remove
|
|
98
|
+
* @async
|
|
99
|
+
*/
|
|
12
100
|
releaseIdentifier(id: Identifier['id']): Promise<void>;
|
|
101
|
+
/**
|
|
102
|
+
* Buy identifiers
|
|
103
|
+
* ```typescript
|
|
104
|
+
* const identifiers = await identifiers.buyIdentifier([ { provider: 'providerName', phoneNumber: 'phoneNumber' } ]);
|
|
105
|
+
* ```
|
|
106
|
+
*/
|
|
13
107
|
buyIdentifier(identifiers: ObtainableIdentifier | ObtainableIdentifier[]): Promise<BuyIdentifierResponse>;
|
|
108
|
+
/**
|
|
109
|
+
* Create internal OneReach provider
|
|
110
|
+
*
|
|
111
|
+
* @example
|
|
112
|
+
* ```typescript
|
|
113
|
+
* await identifiers.createProvider('providerName', { settingKey: 'settingValue' });
|
|
114
|
+
* ```
|
|
115
|
+
* @async
|
|
116
|
+
* @param provider unique providers name to create
|
|
117
|
+
* @param settings provider settings {@link IdentifierProviderSettings }
|
|
118
|
+
*/
|
|
14
119
|
createProvider(provider: IdentifierProvider['name'], settings?: IdentifierProvider['settings']): Promise<void>;
|
|
120
|
+
/**
|
|
121
|
+
* List providers
|
|
122
|
+
* @example
|
|
123
|
+
* ```typescript
|
|
124
|
+
* const providers = await identifiers.listProviders();
|
|
125
|
+
* ```
|
|
126
|
+
* @async
|
|
127
|
+
* @return IdentifierProvider[]
|
|
128
|
+
*/
|
|
15
129
|
listProviders(): Promise<IdentifierProvider[]>;
|
|
130
|
+
/**
|
|
131
|
+
* Delete provider
|
|
132
|
+
* ```typescript
|
|
133
|
+
* await identifiers.deleteProvider('providerName');
|
|
134
|
+
* ```
|
|
135
|
+
* @async
|
|
136
|
+
* @param provider provider name to delete
|
|
137
|
+
*/
|
|
16
138
|
deleteProvider(provider: IdentifierProvider['name']): Promise<void>;
|
|
139
|
+
/**
|
|
140
|
+
* Load list of identifier gateway triggers by identifier list.
|
|
141
|
+
* Excludes grouped identifiers(triggered by groups)
|
|
142
|
+
* ```typescript
|
|
143
|
+
* const identifierList = await identifiers.listIdentifiers();
|
|
144
|
+
* const identifierTriggers = await identifiers.listIdentifiersTriggers(identifierList);
|
|
145
|
+
* ```
|
|
146
|
+
* @async
|
|
147
|
+
* @param identifiers identifier list to check {@link List<SingleIdentifier>}
|
|
148
|
+
* @return List<IdentifierTrigger>
|
|
149
|
+
*/
|
|
17
150
|
listIdentifiersTriggers(identifiers: List<SingleIdentifier>): Promise<List<IdentifierTrigger>>;
|
|
18
151
|
private _fetchIdentifiers;
|
|
19
152
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"identifiers.d.ts","sourceRoot":"","sources":["../../src/identifiers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAY,MAAM,cAAc,CAAC;AAI9C,OAAO,EACL,qBAAqB,EACrB,UAAU,EACV,eAAe,EACf,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EAEjB,oBAAoB,EACpB,iCAAiC,EACjC,gBAAgB,EAGjB,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"identifiers.d.ts","sourceRoot":"","sources":["../../src/identifiers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAY,MAAM,cAAc,CAAC;AAI9C,OAAO,EACL,qBAAqB,EACrB,UAAU,EACV,eAAe,EACf,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EAEjB,oBAAoB,EACpB,iCAAiC,EACjC,gBAAgB,EAGjB,MAAM,SAAS,CAAC;AAQjB;;;;;GAKG;AACH,qBAAa,WAAW;IACtB,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAS;IAEjC;;;;;;;OAOG;gBACS,MAAM,EAAE,iBAAiB;IAsBrC;;;OAGG;IACG,IAAI;IAIV;;;;;;;;;OASG;IACU,eAAe,IAAI,OAAO,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;IAM/D;;;;;;;;;;OAUG;IACU,oBAAoB,IAAI,OAAO,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;IAMnE;;;;;;;;;;OAUG;IACU,aAAa,CAAC,EAAE,EAAE,UAAU,CAAC,IAAI,CAAC,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAW3E;;;;;;;;;;OAUG;IACU,kBAAkB,CAAC,EAAE,EAAE,UAAU,CAAC,IAAI,CAAC,GAAG,OAAO,CAAC,eAAe,CAAC;IAW/E;;;;;;;;;;;;;;;;;OAiBG;IACU,yBAAyB,CACpC,MAAM,GAAE,iCAAsC,GAC7C,OAAO,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC;IAatC;;;;;;;;OAQG;IACU,iBAAiB,CAAC,EAAE,EAAE,UAAU,CAAC,IAAI,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC;IAanE;;;;;OAKG;IACU,aAAa,CACxB,WAAW,EAAE,oBAAoB,GAAG,oBAAoB,EAAE,GACzD,OAAO,CAAC,qBAAqB,CAAC;IAajC;;;;;;;;;;OAUG;IACU,cAAc,CACzB,QAAQ,EAAE,kBAAkB,CAAC,MAAM,CAAC,EACpC,QAAQ,GAAE,kBAAkB,CAAC,UAAU,CAAM,GAC5C,OAAO,CAAC,IAAI,CAAC;IAchB;;;;;;;;OAQG;IACU,aAAa,IAAI,OAAO,CAAC,kBAAkB,EAAE,CAAC;IAY3D;;;;;;;OAOG;IACU,cAAc,CAAC,QAAQ,EAAE,kBAAkB,CAAC,MAAM,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC;IAahF;;;;;;;;;;OAUG;IACU,uBAAuB,CAAC,WAAW,EAAE,IAAI,CAAC,gBAAgB,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;YAiB7F,iBAAiB;CAchC"}
|
package/dist/types/types.d.ts
CHANGED
|
@@ -1,8 +1,22 @@
|
|
|
1
1
|
import { Token } from '@or-sdk/base';
|
|
2
2
|
export type IdentifiersConfig = {
|
|
3
|
+
/**
|
|
4
|
+
* Auth token
|
|
5
|
+
* @type Token
|
|
6
|
+
*/
|
|
3
7
|
token: Token;
|
|
8
|
+
/**
|
|
9
|
+
* OneReach SDK API URL<br/>
|
|
10
|
+
* @example "https://sdkapi.qa.api.onereach.ai"
|
|
11
|
+
*/
|
|
4
12
|
sdkUrl?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Url of OneReach service discovery api
|
|
15
|
+
*/
|
|
5
16
|
discoveryUrl?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Account ID for cross-account requests (super admin only)
|
|
19
|
+
*/
|
|
6
20
|
accountId?: string;
|
|
7
21
|
};
|
|
8
22
|
export type Type = 'local' | 'tollfree' | 'mobile';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAErC,MAAM,MAAM,iBAAiB,GAAG;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @internal
|
|
3
|
+
*/
|
|
1
4
|
export { default as extractIdentifierProvidersResponse } from './extractIdentifierProvidersResponse';
|
|
2
5
|
export { default as getGroupIdentifiers } from './getGroupIdentifiers';
|
|
3
6
|
export { default as getSingleIdentifiers } from './getSingleIdentifiers';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,OAAO,IAAI,kCAAkC,EAAE,MAAM,sCAAsC,CAAC;AACrG,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AACvE,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,wBAAwB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@or-sdk/identifiers",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.27.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"test:watch": "vitest --watch"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@or-sdk/base": "^0.
|
|
25
|
-
"@or-sdk/sdk-api": "^0.
|
|
24
|
+
"@or-sdk/base": "^0.43.0",
|
|
25
|
+
"@or-sdk/sdk-api": "^0.27.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"concurrently": "9.0.1",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "ce62679c119c54ef41fd0d8f7084c563c3b21b24"
|
|
35
35
|
}
|