@fonoster/sdk 0.6.1 → 0.6.2
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/README.md +2301 -169
- package/dist/node/Acls.d.ts +150 -0
- package/dist/node/Acls.js +227 -0
- package/dist/node/Agents.d.ts +163 -0
- package/dist/node/Agents.js +211 -0
- package/dist/node/ApiKeys.d.ts +120 -0
- package/dist/node/ApiKeys.js +178 -0
- package/dist/node/Applications.d.ts +31 -27
- package/dist/node/Applications.js +30 -26
- package/dist/node/Calls.d.ts +109 -0
- package/dist/node/Calls.js +165 -0
- package/dist/node/Credentials.d.ts +148 -0
- package/dist/node/Credentials.js +194 -0
- package/dist/node/Domains.d.ts +152 -0
- package/dist/node/Domains.js +198 -0
- package/dist/node/Numbers.d.ts +152 -0
- package/dist/node/Numbers.js +198 -0
- package/dist/node/Secrets.d.ts +144 -0
- package/dist/node/Secrets.js +190 -0
- package/dist/node/Trunks.d.ts +181 -0
- package/dist/node/Trunks.js +275 -0
- package/dist/node/Users.d.ts +132 -0
- package/dist/node/Users.js +169 -0
- package/dist/node/Workspaces.d.ts +195 -0
- package/dist/node/Workspaces.js +265 -0
- package/dist/node/client/AbstractClient.d.ts +16 -2
- package/dist/node/client/AbstractClient.js +0 -1
- package/dist/node/client/Client.d.ts +8 -0
- package/dist/node/client/Client.js +48 -0
- package/dist/node/client/types/AclsClient.d.ts +10 -0
- package/dist/node/client/types/AgentsClient.d.ts +10 -0
- package/dist/node/client/types/AgentsClient.js +2 -0
- package/dist/node/client/types/ApplicationsClient.d.ts +10 -0
- package/dist/node/client/types/ApplicationsClient.js +2 -0
- package/dist/node/client/types/CallsClient.d.ts +8 -0
- package/dist/node/client/types/CallsClient.js +2 -0
- package/dist/node/client/types/CredentialsClient.d.ts +10 -0
- package/dist/node/client/types/CredentialsClient.js +2 -0
- package/dist/node/client/types/DomainsClient.d.ts +10 -0
- package/dist/node/client/types/DomainsClient.js +2 -0
- package/dist/node/client/types/FonosterClient.d.ts +27 -0
- package/dist/node/client/types/FonosterClient.js +2 -0
- package/dist/node/client/types/IdentityClient.d.ts +24 -0
- package/dist/node/client/types/IdentityClient.js +2 -0
- package/dist/node/client/types/NumbersClient.d.ts +10 -0
- package/dist/node/client/types/NumbersClient.js +2 -0
- package/dist/node/client/types/SecretsClient.d.ts +10 -0
- package/dist/node/client/types/SecretsClient.js +2 -0
- package/dist/node/client/types/TrunksClient.d.ts +10 -0
- package/dist/node/client/types/TrunksClient.js +2 -0
- package/dist/node/client/types/common.d.ts +4 -0
- package/dist/node/client/types/common.js +2 -0
- package/dist/node/client/types/index.d.ts +6 -0
- package/dist/node/client/types/index.js +40 -0
- package/dist/node/generated/node/identity_pb.js +9 -9
- package/dist/node/generated/node/trunks_grpc_pb.js +8 -8
- package/dist/node/generated/node/trunks_pb.js +25 -25
- package/dist/node/generated/web/TrunksServiceClientPb.ts +5 -5
- package/dist/node/generated/web/identity_pb.d.ts +5 -5
- package/dist/node/generated/web/identity_pb.js +9 -9
- package/dist/node/generated/web/trunks_pb.d.ts +9 -9
- package/dist/node/generated/web/trunks_pb.js +25 -25
- package/dist/node/node.d.ts +11 -0
- package/dist/node/node.js +11 -0
- package/dist/node/tsconfig.node.tsbuildinfo +1 -1
- package/dist/web/fonoster.min.js +1 -1
- package/dist/web/index.esm.js +1 -1
- package/package.json +3 -3
- package/dist/node/client/types.d.ts +0 -26
- /package/dist/node/client/{types.js → types/AclsClient.js} +0 -0
|
@@ -1834,7 +1834,7 @@ proto.fonoster.identity.v1beta2.ListWorkspacesResponse.prototype.toObject = func
|
|
|
1834
1834
|
*/
|
|
1835
1835
|
proto.fonoster.identity.v1beta2.ListWorkspacesResponse.toObject = function(includeInstance, msg) {
|
|
1836
1836
|
var f, obj = {
|
|
1837
|
-
|
|
1837
|
+
itemsList: jspb.Message.toObjectList(msg.getItemsList(),
|
|
1838
1838
|
proto.fonoster.identity.v1beta2.Workspace.toObject, includeInstance),
|
|
1839
1839
|
nextPageToken: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
1840
1840
|
};
|
|
@@ -1876,7 +1876,7 @@ proto.fonoster.identity.v1beta2.ListWorkspacesResponse.deserializeBinaryFromRead
|
|
|
1876
1876
|
case 1:
|
|
1877
1877
|
var value = new proto.fonoster.identity.v1beta2.Workspace;
|
|
1878
1878
|
reader.readMessage(value,proto.fonoster.identity.v1beta2.Workspace.deserializeBinaryFromReader);
|
|
1879
|
-
msg.
|
|
1879
|
+
msg.addItems(value);
|
|
1880
1880
|
break;
|
|
1881
1881
|
case 2:
|
|
1882
1882
|
var value = /** @type {string} */ (reader.readString());
|
|
@@ -1911,7 +1911,7 @@ proto.fonoster.identity.v1beta2.ListWorkspacesResponse.prototype.serializeBinary
|
|
|
1911
1911
|
*/
|
|
1912
1912
|
proto.fonoster.identity.v1beta2.ListWorkspacesResponse.serializeBinaryToWriter = function(message, writer) {
|
|
1913
1913
|
var f = undefined;
|
|
1914
|
-
f = message.
|
|
1914
|
+
f = message.getItemsList();
|
|
1915
1915
|
if (f.length > 0) {
|
|
1916
1916
|
writer.writeRepeatedMessage(
|
|
1917
1917
|
1,
|
|
@@ -1930,10 +1930,10 @@ proto.fonoster.identity.v1beta2.ListWorkspacesResponse.serializeBinaryToWriter =
|
|
|
1930
1930
|
|
|
1931
1931
|
|
|
1932
1932
|
/**
|
|
1933
|
-
* repeated Workspace
|
|
1933
|
+
* repeated Workspace items = 1;
|
|
1934
1934
|
* @return {!Array<!proto.fonoster.identity.v1beta2.Workspace>}
|
|
1935
1935
|
*/
|
|
1936
|
-
proto.fonoster.identity.v1beta2.ListWorkspacesResponse.prototype.
|
|
1936
|
+
proto.fonoster.identity.v1beta2.ListWorkspacesResponse.prototype.getItemsList = function() {
|
|
1937
1937
|
return /** @type{!Array<!proto.fonoster.identity.v1beta2.Workspace>} */ (
|
|
1938
1938
|
jspb.Message.getRepeatedWrapperField(this, proto.fonoster.identity.v1beta2.Workspace, 1));
|
|
1939
1939
|
};
|
|
@@ -1943,7 +1943,7 @@ proto.fonoster.identity.v1beta2.ListWorkspacesResponse.prototype.getWorkspacesLi
|
|
|
1943
1943
|
* @param {!Array<!proto.fonoster.identity.v1beta2.Workspace>} value
|
|
1944
1944
|
* @return {!proto.fonoster.identity.v1beta2.ListWorkspacesResponse} returns this
|
|
1945
1945
|
*/
|
|
1946
|
-
proto.fonoster.identity.v1beta2.ListWorkspacesResponse.prototype.
|
|
1946
|
+
proto.fonoster.identity.v1beta2.ListWorkspacesResponse.prototype.setItemsList = function(value) {
|
|
1947
1947
|
return jspb.Message.setRepeatedWrapperField(this, 1, value);
|
|
1948
1948
|
};
|
|
1949
1949
|
|
|
@@ -1953,7 +1953,7 @@ proto.fonoster.identity.v1beta2.ListWorkspacesResponse.prototype.setWorkspacesLi
|
|
|
1953
1953
|
* @param {number=} opt_index
|
|
1954
1954
|
* @return {!proto.fonoster.identity.v1beta2.Workspace}
|
|
1955
1955
|
*/
|
|
1956
|
-
proto.fonoster.identity.v1beta2.ListWorkspacesResponse.prototype.
|
|
1956
|
+
proto.fonoster.identity.v1beta2.ListWorkspacesResponse.prototype.addItems = function(opt_value, opt_index) {
|
|
1957
1957
|
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.fonoster.identity.v1beta2.Workspace, opt_index);
|
|
1958
1958
|
};
|
|
1959
1959
|
|
|
@@ -1962,8 +1962,8 @@ proto.fonoster.identity.v1beta2.ListWorkspacesResponse.prototype.addWorkspaces =
|
|
|
1962
1962
|
* Clears the list making it empty but non-null.
|
|
1963
1963
|
* @return {!proto.fonoster.identity.v1beta2.ListWorkspacesResponse} returns this
|
|
1964
1964
|
*/
|
|
1965
|
-
proto.fonoster.identity.v1beta2.ListWorkspacesResponse.prototype.
|
|
1966
|
-
return this.
|
|
1965
|
+
proto.fonoster.identity.v1beta2.ListWorkspacesResponse.prototype.clearItemsList = function() {
|
|
1966
|
+
return this.setItemsList([]);
|
|
1967
1967
|
};
|
|
1968
1968
|
|
|
1969
1969
|
|
|
@@ -290,22 +290,22 @@ export namespace DeleteTrunkResponse {
|
|
|
290
290
|
}
|
|
291
291
|
}
|
|
292
292
|
|
|
293
|
-
export class
|
|
293
|
+
export class ListTrunksRequest extends jspb.Message {
|
|
294
294
|
getPageSize(): number;
|
|
295
|
-
setPageSize(value: number):
|
|
295
|
+
setPageSize(value: number): ListTrunksRequest;
|
|
296
296
|
|
|
297
297
|
getPageToken(): string;
|
|
298
|
-
setPageToken(value: string):
|
|
298
|
+
setPageToken(value: string): ListTrunksRequest;
|
|
299
299
|
|
|
300
300
|
serializeBinary(): Uint8Array;
|
|
301
|
-
toObject(includeInstance?: boolean):
|
|
302
|
-
static toObject(includeInstance: boolean, msg:
|
|
303
|
-
static serializeBinaryToWriter(message:
|
|
304
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
305
|
-
static deserializeBinaryFromReader(message:
|
|
301
|
+
toObject(includeInstance?: boolean): ListTrunksRequest.AsObject;
|
|
302
|
+
static toObject(includeInstance: boolean, msg: ListTrunksRequest): ListTrunksRequest.AsObject;
|
|
303
|
+
static serializeBinaryToWriter(message: ListTrunksRequest, writer: jspb.BinaryWriter): void;
|
|
304
|
+
static deserializeBinary(bytes: Uint8Array): ListTrunksRequest;
|
|
305
|
+
static deserializeBinaryFromReader(message: ListTrunksRequest, reader: jspb.BinaryReader): ListTrunksRequest;
|
|
306
306
|
}
|
|
307
307
|
|
|
308
|
-
export namespace
|
|
308
|
+
export namespace ListTrunksRequest {
|
|
309
309
|
export type AsObject = {
|
|
310
310
|
pageSize: number,
|
|
311
311
|
pageToken: string,
|
|
@@ -24,7 +24,7 @@ goog.exportSymbol('proto.fonoster.trunks.v1beta2.CreateTrunkResponse', null, glo
|
|
|
24
24
|
goog.exportSymbol('proto.fonoster.trunks.v1beta2.DeleteTrunkRequest', null, global);
|
|
25
25
|
goog.exportSymbol('proto.fonoster.trunks.v1beta2.DeleteTrunkResponse', null, global);
|
|
26
26
|
goog.exportSymbol('proto.fonoster.trunks.v1beta2.GetTrunkRequest', null, global);
|
|
27
|
-
goog.exportSymbol('proto.fonoster.trunks.v1beta2.
|
|
27
|
+
goog.exportSymbol('proto.fonoster.trunks.v1beta2.ListTrunksRequest', null, global);
|
|
28
28
|
goog.exportSymbol('proto.fonoster.trunks.v1beta2.ListTrunksResponse', null, global);
|
|
29
29
|
goog.exportSymbol('proto.fonoster.trunks.v1beta2.Trunk', null, global);
|
|
30
30
|
goog.exportSymbol('proto.fonoster.trunks.v1beta2.TrunkURI', null, global);
|
|
@@ -229,16 +229,16 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
229
229
|
* @extends {jspb.Message}
|
|
230
230
|
* @constructor
|
|
231
231
|
*/
|
|
232
|
-
proto.fonoster.trunks.v1beta2.
|
|
232
|
+
proto.fonoster.trunks.v1beta2.ListTrunksRequest = function(opt_data) {
|
|
233
233
|
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
234
234
|
};
|
|
235
|
-
goog.inherits(proto.fonoster.trunks.v1beta2.
|
|
235
|
+
goog.inherits(proto.fonoster.trunks.v1beta2.ListTrunksRequest, jspb.Message);
|
|
236
236
|
if (goog.DEBUG && !COMPILED) {
|
|
237
237
|
/**
|
|
238
238
|
* @public
|
|
239
239
|
* @override
|
|
240
240
|
*/
|
|
241
|
-
proto.fonoster.trunks.v1beta2.
|
|
241
|
+
proto.fonoster.trunks.v1beta2.ListTrunksRequest.displayName = 'proto.fonoster.trunks.v1beta2.ListTrunksRequest';
|
|
242
242
|
}
|
|
243
243
|
/**
|
|
244
244
|
* Generated by JsPbCodeGenerator.
|
|
@@ -2440,8 +2440,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
|
2440
2440
|
* http://goto/soy-param-migration
|
|
2441
2441
|
* @return {!Object}
|
|
2442
2442
|
*/
|
|
2443
|
-
proto.fonoster.trunks.v1beta2.
|
|
2444
|
-
return proto.fonoster.trunks.v1beta2.
|
|
2443
|
+
proto.fonoster.trunks.v1beta2.ListTrunksRequest.prototype.toObject = function(opt_includeInstance) {
|
|
2444
|
+
return proto.fonoster.trunks.v1beta2.ListTrunksRequest.toObject(opt_includeInstance, this);
|
|
2445
2445
|
};
|
|
2446
2446
|
|
|
2447
2447
|
|
|
@@ -2450,11 +2450,11 @@ proto.fonoster.trunks.v1beta2.ListTrunkRequest.prototype.toObject = function(opt
|
|
|
2450
2450
|
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
2451
2451
|
* the JSPB instance for transitional soy proto support:
|
|
2452
2452
|
* http://goto/soy-param-migration
|
|
2453
|
-
* @param {!proto.fonoster.trunks.v1beta2.
|
|
2453
|
+
* @param {!proto.fonoster.trunks.v1beta2.ListTrunksRequest} msg The msg instance to transform.
|
|
2454
2454
|
* @return {!Object}
|
|
2455
2455
|
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
2456
2456
|
*/
|
|
2457
|
-
proto.fonoster.trunks.v1beta2.
|
|
2457
|
+
proto.fonoster.trunks.v1beta2.ListTrunksRequest.toObject = function(includeInstance, msg) {
|
|
2458
2458
|
var f, obj = {
|
|
2459
2459
|
pageSize: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
2460
2460
|
pageToken: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
@@ -2471,23 +2471,23 @@ proto.fonoster.trunks.v1beta2.ListTrunkRequest.toObject = function(includeInstan
|
|
|
2471
2471
|
/**
|
|
2472
2472
|
* Deserializes binary data (in protobuf wire format).
|
|
2473
2473
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
2474
|
-
* @return {!proto.fonoster.trunks.v1beta2.
|
|
2474
|
+
* @return {!proto.fonoster.trunks.v1beta2.ListTrunksRequest}
|
|
2475
2475
|
*/
|
|
2476
|
-
proto.fonoster.trunks.v1beta2.
|
|
2476
|
+
proto.fonoster.trunks.v1beta2.ListTrunksRequest.deserializeBinary = function(bytes) {
|
|
2477
2477
|
var reader = new jspb.BinaryReader(bytes);
|
|
2478
|
-
var msg = new proto.fonoster.trunks.v1beta2.
|
|
2479
|
-
return proto.fonoster.trunks.v1beta2.
|
|
2478
|
+
var msg = new proto.fonoster.trunks.v1beta2.ListTrunksRequest;
|
|
2479
|
+
return proto.fonoster.trunks.v1beta2.ListTrunksRequest.deserializeBinaryFromReader(msg, reader);
|
|
2480
2480
|
};
|
|
2481
2481
|
|
|
2482
2482
|
|
|
2483
2483
|
/**
|
|
2484
2484
|
* Deserializes binary data (in protobuf wire format) from the
|
|
2485
2485
|
* given reader into the given message object.
|
|
2486
|
-
* @param {!proto.fonoster.trunks.v1beta2.
|
|
2486
|
+
* @param {!proto.fonoster.trunks.v1beta2.ListTrunksRequest} msg The message object to deserialize into.
|
|
2487
2487
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
2488
|
-
* @return {!proto.fonoster.trunks.v1beta2.
|
|
2488
|
+
* @return {!proto.fonoster.trunks.v1beta2.ListTrunksRequest}
|
|
2489
2489
|
*/
|
|
2490
|
-
proto.fonoster.trunks.v1beta2.
|
|
2490
|
+
proto.fonoster.trunks.v1beta2.ListTrunksRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
2491
2491
|
while (reader.nextField()) {
|
|
2492
2492
|
if (reader.isEndGroup()) {
|
|
2493
2493
|
break;
|
|
@@ -2515,9 +2515,9 @@ proto.fonoster.trunks.v1beta2.ListTrunkRequest.deserializeBinaryFromReader = fun
|
|
|
2515
2515
|
* Serializes the message to binary data (in protobuf wire format).
|
|
2516
2516
|
* @return {!Uint8Array}
|
|
2517
2517
|
*/
|
|
2518
|
-
proto.fonoster.trunks.v1beta2.
|
|
2518
|
+
proto.fonoster.trunks.v1beta2.ListTrunksRequest.prototype.serializeBinary = function() {
|
|
2519
2519
|
var writer = new jspb.BinaryWriter();
|
|
2520
|
-
proto.fonoster.trunks.v1beta2.
|
|
2520
|
+
proto.fonoster.trunks.v1beta2.ListTrunksRequest.serializeBinaryToWriter(this, writer);
|
|
2521
2521
|
return writer.getResultBuffer();
|
|
2522
2522
|
};
|
|
2523
2523
|
|
|
@@ -2525,11 +2525,11 @@ proto.fonoster.trunks.v1beta2.ListTrunkRequest.prototype.serializeBinary = funct
|
|
|
2525
2525
|
/**
|
|
2526
2526
|
* Serializes the given message to binary data (in protobuf wire
|
|
2527
2527
|
* format), writing to the given BinaryWriter.
|
|
2528
|
-
* @param {!proto.fonoster.trunks.v1beta2.
|
|
2528
|
+
* @param {!proto.fonoster.trunks.v1beta2.ListTrunksRequest} message
|
|
2529
2529
|
* @param {!jspb.BinaryWriter} writer
|
|
2530
2530
|
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
2531
2531
|
*/
|
|
2532
|
-
proto.fonoster.trunks.v1beta2.
|
|
2532
|
+
proto.fonoster.trunks.v1beta2.ListTrunksRequest.serializeBinaryToWriter = function(message, writer) {
|
|
2533
2533
|
var f = undefined;
|
|
2534
2534
|
f = message.getPageSize();
|
|
2535
2535
|
if (f !== 0) {
|
|
@@ -2552,16 +2552,16 @@ proto.fonoster.trunks.v1beta2.ListTrunkRequest.serializeBinaryToWriter = functio
|
|
|
2552
2552
|
* optional int32 page_size = 1;
|
|
2553
2553
|
* @return {number}
|
|
2554
2554
|
*/
|
|
2555
|
-
proto.fonoster.trunks.v1beta2.
|
|
2555
|
+
proto.fonoster.trunks.v1beta2.ListTrunksRequest.prototype.getPageSize = function() {
|
|
2556
2556
|
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
2557
2557
|
};
|
|
2558
2558
|
|
|
2559
2559
|
|
|
2560
2560
|
/**
|
|
2561
2561
|
* @param {number} value
|
|
2562
|
-
* @return {!proto.fonoster.trunks.v1beta2.
|
|
2562
|
+
* @return {!proto.fonoster.trunks.v1beta2.ListTrunksRequest} returns this
|
|
2563
2563
|
*/
|
|
2564
|
-
proto.fonoster.trunks.v1beta2.
|
|
2564
|
+
proto.fonoster.trunks.v1beta2.ListTrunksRequest.prototype.setPageSize = function(value) {
|
|
2565
2565
|
return jspb.Message.setProto3IntField(this, 1, value);
|
|
2566
2566
|
};
|
|
2567
2567
|
|
|
@@ -2570,16 +2570,16 @@ proto.fonoster.trunks.v1beta2.ListTrunkRequest.prototype.setPageSize = function(
|
|
|
2570
2570
|
* optional string page_token = 2;
|
|
2571
2571
|
* @return {string}
|
|
2572
2572
|
*/
|
|
2573
|
-
proto.fonoster.trunks.v1beta2.
|
|
2573
|
+
proto.fonoster.trunks.v1beta2.ListTrunksRequest.prototype.getPageToken = function() {
|
|
2574
2574
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
2575
2575
|
};
|
|
2576
2576
|
|
|
2577
2577
|
|
|
2578
2578
|
/**
|
|
2579
2579
|
* @param {string} value
|
|
2580
|
-
* @return {!proto.fonoster.trunks.v1beta2.
|
|
2580
|
+
* @return {!proto.fonoster.trunks.v1beta2.ListTrunksRequest} returns this
|
|
2581
2581
|
*/
|
|
2582
|
-
proto.fonoster.trunks.v1beta2.
|
|
2582
|
+
proto.fonoster.trunks.v1beta2.ListTrunksRequest.prototype.setPageToken = function(value) {
|
|
2583
2583
|
return jspb.Message.setProto3StringField(this, 2, value);
|
|
2584
2584
|
};
|
|
2585
2585
|
|
package/dist/node/node.d.ts
CHANGED
|
@@ -1,2 +1,13 @@
|
|
|
1
1
|
export * from "./client/Client";
|
|
2
2
|
export * from "./Applications";
|
|
3
|
+
export * from "./Calls";
|
|
4
|
+
export * from "./ApiKeys";
|
|
5
|
+
export * from "./Users";
|
|
6
|
+
export * from "./Secrets";
|
|
7
|
+
export * from "./Agents";
|
|
8
|
+
export * from "./Domains";
|
|
9
|
+
export * from "./Trunks";
|
|
10
|
+
export * from "./Credentials";
|
|
11
|
+
export * from "./Acls";
|
|
12
|
+
export * from "./Numbers";
|
|
13
|
+
export * from "./Workspaces";
|
package/dist/node/node.js
CHANGED
|
@@ -34,3 +34,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
34
34
|
*/
|
|
35
35
|
__exportStar(require("./client/Client"), exports);
|
|
36
36
|
__exportStar(require("./Applications"), exports);
|
|
37
|
+
__exportStar(require("./Calls"), exports);
|
|
38
|
+
__exportStar(require("./ApiKeys"), exports);
|
|
39
|
+
__exportStar(require("./Users"), exports);
|
|
40
|
+
__exportStar(require("./Secrets"), exports);
|
|
41
|
+
__exportStar(require("./Agents"), exports);
|
|
42
|
+
__exportStar(require("./Domains"), exports);
|
|
43
|
+
__exportStar(require("./Trunks"), exports);
|
|
44
|
+
__exportStar(require("./Credentials"), exports);
|
|
45
|
+
__exportStar(require("./Acls"), exports);
|
|
46
|
+
__exportStar(require("./Numbers"), exports);
|
|
47
|
+
__exportStar(require("./Workspaces"), exports);
|