@extrahorizon/javascript-sdk 8.9.0-dev-136-24be1b9 → 8.9.0-dev-138-3022f93
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 +8 -0
- package/build/index.cjs.js +89 -89
- package/build/index.mjs +90 -90
- package/build/types/mockType.d.ts +48 -21
- package/build/types/services/auth/oidc/providers/types.d.ts +4 -0
- package/build/types/services/events/index.d.ts +1 -2
- package/build/types/services/events/types.d.ts +5 -0
- package/build/types/services/localizations/index.d.ts +1 -2
- package/build/types/services/localizations/types.d.ts +5 -0
- package/build/types/services/notifications/index.d.ts +1 -2
- package/build/types/services/notifications/types.d.ts +5 -0
- package/build/types/services/notificationsV2/index.d.ts +1 -2
- package/build/types/services/notificationsV2/types.d.ts +5 -0
- package/build/types/services/profiles/index.d.ts +1 -2
- package/build/types/services/profiles/types.d.ts +5 -0
- package/build/types/services/tasks/functions/types.d.ts +145 -1
- package/build/types/services/tasks/schedules/types.d.ts +4 -0
- package/build/types/services/tasks/types.d.ts +11 -0
- package/build/types/services/templatesV2/index.d.ts +1 -2
- package/build/types/services/templatesV2/types.d.ts +5 -0
- package/build/types/services/users/index.d.ts +2 -4
- package/build/types/services/users/types.d.ts +5 -0
- package/build/types/version.d.ts +1 -1
- package/package.json +1 -1
- package/build/types/services/events/health.d.ts +0 -9
- package/build/types/services/localizations/health.d.ts +0 -9
- package/build/types/services/notifications/health.d.ts +0 -9
- package/build/types/services/notificationsV2/health.d.ts +0 -9
- package/build/types/services/profiles/health.d.ts +0 -9
- package/build/types/services/templatesV2/health.d.ts +0 -9
- package/build/types/services/users/health.d.ts +0 -9
package/build/index.mjs
CHANGED
|
@@ -969,12 +969,23 @@ var ApiRequestErrorType;
|
|
|
969
969
|
ApiRequestErrorType["RESPONSE"] = "response";
|
|
970
970
|
})(ApiRequestErrorType || (ApiRequestErrorType = {}));
|
|
971
971
|
|
|
972
|
+
var FunctionPermissionMode;
|
|
973
|
+
(function (FunctionPermissionMode) {
|
|
974
|
+
/** To execute this function directly the user needs the EXECUTE_TASK_FUNCTION permission */
|
|
975
|
+
FunctionPermissionMode["PERMISSION_REQUIRED"] = "permissionRequired";
|
|
976
|
+
/** Every logged in user can execute this function directly */
|
|
977
|
+
FunctionPermissionMode["ALL_USERS"] = "allUsers";
|
|
978
|
+
/** The function can be executed even by unauthenticated requests */
|
|
979
|
+
FunctionPermissionMode["PUBLIC"] = "public";
|
|
980
|
+
})(FunctionPermissionMode || (FunctionPermissionMode = {}));
|
|
981
|
+
|
|
972
982
|
var TaskStatus;
|
|
973
983
|
(function (TaskStatus) {
|
|
974
984
|
TaskStatus["NEW"] = "new";
|
|
975
985
|
TaskStatus["IN_PROGRESS"] = "inProgress";
|
|
976
986
|
TaskStatus["COMPLETE"] = "complete";
|
|
977
987
|
TaskStatus["FAILED"] = "failed";
|
|
988
|
+
TaskStatus["RETRIED"] = "retried";
|
|
978
989
|
TaskStatus["CANCELED"] = "canceled";
|
|
979
990
|
})(TaskStatus || (TaskStatus = {}));
|
|
980
991
|
|
|
@@ -3434,10 +3445,13 @@ var providers = (oidcClient, httpWithAuth) => {
|
|
|
3434
3445
|
const { data } = await oidcClient.post(httpWithAuth, `/oidc/providers/${providerId}/disable`, {});
|
|
3435
3446
|
return data;
|
|
3436
3447
|
},
|
|
3437
|
-
async
|
|
3448
|
+
async remove(providerId) {
|
|
3438
3449
|
const { data } = await oidcClient.delete(httpWithAuth, `/oidc/providers/${providerId}`);
|
|
3439
3450
|
return data;
|
|
3440
3451
|
},
|
|
3452
|
+
delete(providerId) {
|
|
3453
|
+
return this.remove(providerId);
|
|
3454
|
+
},
|
|
3441
3455
|
};
|
|
3442
3456
|
};
|
|
3443
3457
|
|
|
@@ -3981,8 +3995,48 @@ var apiRequests = (client, httpAuth) => {
|
|
|
3981
3995
|
};
|
|
3982
3996
|
|
|
3983
3997
|
var functions = (client, httpAuth) => ({
|
|
3998
|
+
async find(options) {
|
|
3999
|
+
const response = await client.get(httpAuth, '/functions/', options);
|
|
4000
|
+
return response.data;
|
|
4001
|
+
},
|
|
4002
|
+
async create(body, options) {
|
|
4003
|
+
const response = await client.post(httpAuth, '/functions/', body, {
|
|
4004
|
+
...options,
|
|
4005
|
+
customKeys: ['environmentVariables'],
|
|
4006
|
+
});
|
|
4007
|
+
return response.data;
|
|
4008
|
+
},
|
|
4009
|
+
async getByName(name, options) {
|
|
4010
|
+
const response = await client.get(httpAuth, `/functions/${name}`, {
|
|
4011
|
+
...options,
|
|
4012
|
+
customResponseKeys: ['environmentVariables'],
|
|
4013
|
+
});
|
|
4014
|
+
return response.data;
|
|
4015
|
+
},
|
|
4016
|
+
async update(name, body, options) {
|
|
4017
|
+
const response = await client.put(httpAuth, `/functions/${name}`, body, {
|
|
4018
|
+
...options,
|
|
4019
|
+
customRequestKeys: ['environmentVariables'],
|
|
4020
|
+
});
|
|
4021
|
+
return response.data;
|
|
4022
|
+
},
|
|
4023
|
+
async remove(name, options) {
|
|
4024
|
+
const response = await client.delete(httpAuth, `/functions/${name}`, options);
|
|
4025
|
+
return response.data;
|
|
4026
|
+
},
|
|
4027
|
+
async enable(name, options) {
|
|
4028
|
+
const response = await client.post(httpAuth, `/functions/${name}/enable`, {}, options);
|
|
4029
|
+
return response.data;
|
|
4030
|
+
},
|
|
4031
|
+
async disable(name, options) {
|
|
4032
|
+
const response = await client.post(httpAuth, `/functions/${name}/disable`, {}, options);
|
|
4033
|
+
return response.data;
|
|
4034
|
+
},
|
|
3984
4035
|
async execute(functionName, data, options) {
|
|
3985
|
-
const response = await client.post(httpAuth, `/functions/${functionName}/execute`, { data }, {
|
|
4036
|
+
const response = await client.post(httpAuth, `/functions/${functionName}/execute`, { data }, {
|
|
4037
|
+
...options,
|
|
4038
|
+
customKeys: ['data', 'result'],
|
|
4039
|
+
});
|
|
3986
4040
|
return response.data;
|
|
3987
4041
|
},
|
|
3988
4042
|
});
|
|
@@ -4017,10 +4071,13 @@ var schedules = (client, httpAuth) => {
|
|
|
4017
4071
|
});
|
|
4018
4072
|
return data;
|
|
4019
4073
|
},
|
|
4020
|
-
async
|
|
4074
|
+
async remove(scheduleId, options) {
|
|
4021
4075
|
const { data } = await client.delete(httpAuth, `/schedules/${scheduleId}`, options);
|
|
4022
4076
|
return data;
|
|
4023
4077
|
},
|
|
4078
|
+
delete(scheduleId, options) {
|
|
4079
|
+
return this.remove(scheduleId, options);
|
|
4080
|
+
},
|
|
4024
4081
|
async find(options) {
|
|
4025
4082
|
const result = await query(options);
|
|
4026
4083
|
return addPagersFn(query, options, result);
|
|
@@ -4228,17 +4285,6 @@ var groupRoles = (client, httpWithAuth) => ({
|
|
|
4228
4285
|
},
|
|
4229
4286
|
});
|
|
4230
4287
|
|
|
4231
|
-
var health$7 = (userClient, http) => ({
|
|
4232
|
-
/**
|
|
4233
|
-
* Perform a health check
|
|
4234
|
-
* @returns {boolean} success
|
|
4235
|
-
*/
|
|
4236
|
-
async health() {
|
|
4237
|
-
const result = await userClient.get(http, '/health');
|
|
4238
|
-
return result.status === Results.Success;
|
|
4239
|
-
},
|
|
4240
|
-
});
|
|
4241
|
-
|
|
4242
4288
|
const settingsService = (client, httpWithAuth) => ({
|
|
4243
4289
|
async getVerificationSettings(options) {
|
|
4244
4290
|
const response = await client.get(httpWithAuth, '/settings/verification', options);
|
|
@@ -4421,6 +4467,10 @@ var users$1 = (userClient, httpWithAuth, http) => {
|
|
|
4421
4467
|
const { data } = await userClient.put(httpWithAuth, '/email_templates', templates);
|
|
4422
4468
|
return data;
|
|
4423
4469
|
},
|
|
4470
|
+
async health() {
|
|
4471
|
+
const result = await userClient.get(http, '/health');
|
|
4472
|
+
return result.status === 200;
|
|
4473
|
+
},
|
|
4424
4474
|
};
|
|
4425
4475
|
};
|
|
4426
4476
|
|
|
@@ -4429,7 +4479,6 @@ const usersService = (httpWithAuth, http) => {
|
|
|
4429
4479
|
basePath: USER_BASE,
|
|
4430
4480
|
transformRequestData: decamelizeRequestData,
|
|
4431
4481
|
});
|
|
4432
|
-
const healthMethods = health$7(userClient, httpWithAuth);
|
|
4433
4482
|
const usersMethods = users$1(userClient, httpWithAuth, http);
|
|
4434
4483
|
const groupRolesMethods = groupRoles(userClient, httpWithAuth);
|
|
4435
4484
|
const globalRolesMethods = globalRoles(userClient, httpWithAuth);
|
|
@@ -4437,7 +4486,6 @@ const usersService = (httpWithAuth, http) => {
|
|
|
4437
4486
|
const forgotPasswordRequestsMethods = forgotPasswordRequestsService(userClient, httpWithAuth);
|
|
4438
4487
|
const settingsMethods = settingsService(userClient, httpWithAuth);
|
|
4439
4488
|
return {
|
|
4440
|
-
...healthMethods,
|
|
4441
4489
|
...usersMethods,
|
|
4442
4490
|
groupRoles: groupRolesMethods,
|
|
4443
4491
|
globalRoles: globalRolesMethods,
|
|
@@ -4819,7 +4867,7 @@ var appStoreSubscriptions = (client, httpAuth) => ({
|
|
|
4819
4867
|
},
|
|
4820
4868
|
});
|
|
4821
4869
|
|
|
4822
|
-
var health
|
|
4870
|
+
var health = (client, httpAuth) => ({
|
|
4823
4871
|
/**
|
|
4824
4872
|
* Check if the service is available
|
|
4825
4873
|
* @returns true if service is up and running
|
|
@@ -5023,7 +5071,7 @@ const paymentsService = (httpWithAuth) => {
|
|
|
5023
5071
|
basePath: PAYMENTS_BASE,
|
|
5024
5072
|
});
|
|
5025
5073
|
return {
|
|
5026
|
-
...health
|
|
5074
|
+
...health(client, httpWithAuth),
|
|
5027
5075
|
products: products(client, httpWithAuth),
|
|
5028
5076
|
orders: orders(client, httpWithAuth),
|
|
5029
5077
|
subscriptions: subscriptions$1(client, httpWithAuth),
|
|
@@ -5045,17 +5093,6 @@ var countries = (client, httpAuth) => ({
|
|
|
5045
5093
|
},
|
|
5046
5094
|
});
|
|
5047
5095
|
|
|
5048
|
-
var health$5 = (client, http) => ({
|
|
5049
|
-
/**
|
|
5050
|
-
* Perform a health check
|
|
5051
|
-
* @returns {boolean} success
|
|
5052
|
-
*/
|
|
5053
|
-
async health() {
|
|
5054
|
-
const result = await client.get(http, '/health');
|
|
5055
|
-
return result.status === Results.Success;
|
|
5056
|
-
},
|
|
5057
|
-
});
|
|
5058
|
-
|
|
5059
5096
|
var languages = (client, httpAuth) => ({
|
|
5060
5097
|
async getLanguages(options) {
|
|
5061
5098
|
return (await client.get(httpAuth, '/languages', options)).data.data;
|
|
@@ -5089,6 +5126,10 @@ var localizations = (client, httpAuth) => ({
|
|
|
5089
5126
|
customResponseKeys: ['*'],
|
|
5090
5127
|
})).data;
|
|
5091
5128
|
},
|
|
5129
|
+
async health() {
|
|
5130
|
+
const result = await client.get(httpAuth, '/health');
|
|
5131
|
+
return result.status === 200;
|
|
5132
|
+
},
|
|
5092
5133
|
});
|
|
5093
5134
|
|
|
5094
5135
|
const localizationsService = (httpWithAuth) => {
|
|
@@ -5097,7 +5138,6 @@ const localizationsService = (httpWithAuth) => {
|
|
|
5097
5138
|
basePath: LOCALIZATIONS_BASE,
|
|
5098
5139
|
});
|
|
5099
5140
|
return {
|
|
5100
|
-
...health$5(client, httpWithAuth),
|
|
5101
5141
|
...localizations(client, httpWithAuth),
|
|
5102
5142
|
...countries(client, httpWithAuth),
|
|
5103
5143
|
...languages(client, httpWithAuth),
|
|
@@ -5122,17 +5162,6 @@ var groups = (client, httpAuth) => ({
|
|
|
5122
5162
|
},
|
|
5123
5163
|
});
|
|
5124
5164
|
|
|
5125
|
-
var health$4 = (client, httpAuth) => ({
|
|
5126
|
-
/**
|
|
5127
|
-
* Perform a health check for profiles service
|
|
5128
|
-
* @returns {boolean} success
|
|
5129
|
-
*/
|
|
5130
|
-
async health() {
|
|
5131
|
-
const result = await client.get(httpAuth, '/health');
|
|
5132
|
-
return result.status === Results.Success;
|
|
5133
|
-
},
|
|
5134
|
-
});
|
|
5135
|
-
|
|
5136
5165
|
var logs = (client, httpAuth) => {
|
|
5137
5166
|
function partialApplyFind(profileId, groupId) {
|
|
5138
5167
|
return async (options) => (await client.get(httpAuth, `/${profileId}/groups/${groupId}/logs/${(options === null || options === void 0 ? void 0 : options.rql) || ''}`, options)).data;
|
|
@@ -5203,6 +5232,10 @@ var profiles = (client, httpAuth) => ({
|
|
|
5203
5232
|
async getImpediments(options) {
|
|
5204
5233
|
return (await client.get(httpAuth, '/impediments', options)).data;
|
|
5205
5234
|
},
|
|
5235
|
+
async health() {
|
|
5236
|
+
const result = await client.get(httpAuth, '/health');
|
|
5237
|
+
return result.status === 200;
|
|
5238
|
+
},
|
|
5206
5239
|
});
|
|
5207
5240
|
|
|
5208
5241
|
const profilesService = (httpWithAuth) => {
|
|
@@ -5211,24 +5244,12 @@ const profilesService = (httpWithAuth) => {
|
|
|
5211
5244
|
basePath: PROFILES_BASE,
|
|
5212
5245
|
});
|
|
5213
5246
|
return {
|
|
5214
|
-
...health$4(client, httpWithAuth),
|
|
5215
5247
|
...profiles(client, httpWithAuth),
|
|
5216
5248
|
groups: groups(client, httpWithAuth),
|
|
5217
5249
|
logs: logs(client, httpWithAuth),
|
|
5218
5250
|
};
|
|
5219
5251
|
};
|
|
5220
5252
|
|
|
5221
|
-
var health$3 = (client, http) => ({
|
|
5222
|
-
/**
|
|
5223
|
-
* Perform a health check
|
|
5224
|
-
* @returns {boolean} success
|
|
5225
|
-
*/
|
|
5226
|
-
async health() {
|
|
5227
|
-
const result = await client.get(http, '/health');
|
|
5228
|
-
return result.status === Results.Success;
|
|
5229
|
-
},
|
|
5230
|
-
});
|
|
5231
|
-
|
|
5232
5253
|
var notifications = (client, httpAuth) => {
|
|
5233
5254
|
async function find(options) {
|
|
5234
5255
|
return (await client.get(httpAuth, `/notifications${(options === null || options === void 0 ? void 0 : options.rql) || ''}`, options)).data;
|
|
@@ -5274,6 +5295,10 @@ var notifications = (client, httpAuth) => {
|
|
|
5274
5295
|
async getTypes(options) {
|
|
5275
5296
|
return (await client.get(httpAuth, '/types', options)).data;
|
|
5276
5297
|
},
|
|
5298
|
+
async health() {
|
|
5299
|
+
const result = await client.get(httpAuth, '/health');
|
|
5300
|
+
return result.status === 200;
|
|
5301
|
+
},
|
|
5277
5302
|
};
|
|
5278
5303
|
};
|
|
5279
5304
|
|
|
@@ -5303,23 +5328,11 @@ const notificationsService = (httpWithAuth) => {
|
|
|
5303
5328
|
transformRequestData: decamelizeRequestData,
|
|
5304
5329
|
});
|
|
5305
5330
|
return {
|
|
5306
|
-
...health$3(client, httpWithAuth),
|
|
5307
5331
|
...notifications(client, httpWithAuth),
|
|
5308
5332
|
settings: settings(client, httpWithAuth),
|
|
5309
5333
|
};
|
|
5310
5334
|
};
|
|
5311
5335
|
|
|
5312
|
-
var health$2 = (client, http) => ({
|
|
5313
|
-
/**
|
|
5314
|
-
* Perform a health check
|
|
5315
|
-
* @returns {boolean} success
|
|
5316
|
-
*/
|
|
5317
|
-
async health() {
|
|
5318
|
-
const result = await client.get(http, '/health');
|
|
5319
|
-
return result.status === Results.Success;
|
|
5320
|
-
},
|
|
5321
|
-
});
|
|
5322
|
-
|
|
5323
5336
|
var notificationsV2 = (client, httpWithAuth) => {
|
|
5324
5337
|
async function find(options) {
|
|
5325
5338
|
const result = await client.get(httpWithAuth, `/${(options === null || options === void 0 ? void 0 : options.rql) || ''}`, {
|
|
@@ -5356,6 +5369,10 @@ var notificationsV2 = (client, httpWithAuth) => {
|
|
|
5356
5369
|
const rqlWithNotificationId = rqlBuilder().eq('id', notificationId).build();
|
|
5357
5370
|
return await this.findFirst({ ...options, rql: rqlWithNotificationId });
|
|
5358
5371
|
},
|
|
5372
|
+
async health() {
|
|
5373
|
+
const result = await client.get(httpWithAuth, '/health');
|
|
5374
|
+
return result.status === 200;
|
|
5375
|
+
},
|
|
5359
5376
|
};
|
|
5360
5377
|
};
|
|
5361
5378
|
|
|
@@ -5404,7 +5421,6 @@ const notificationsV2Service = (httpWithAuth) => {
|
|
|
5404
5421
|
basePath: NOTIFICATIONS_V2_BASE,
|
|
5405
5422
|
});
|
|
5406
5423
|
return {
|
|
5407
|
-
...health$2(client, httpWithAuth),
|
|
5408
5424
|
...notificationsV2(client, httpWithAuth),
|
|
5409
5425
|
userSettings: notificationV2UserSettings(client, httpWithAuth),
|
|
5410
5426
|
};
|
|
@@ -5430,16 +5446,9 @@ var events = (client, httpAuth) => ({
|
|
|
5430
5446
|
}
|
|
5431
5447
|
return (await client.post(httpAuth, '/', requestBody, requestOptions)).data;
|
|
5432
5448
|
},
|
|
5433
|
-
});
|
|
5434
|
-
|
|
5435
|
-
var health$1 = (client, http) => ({
|
|
5436
|
-
/**
|
|
5437
|
-
* Perform a health check
|
|
5438
|
-
* @returns {boolean} success
|
|
5439
|
-
*/
|
|
5440
5449
|
async health() {
|
|
5441
|
-
const result = await client.get(
|
|
5442
|
-
return result.status ===
|
|
5450
|
+
const result = await client.get(httpAuth, '/health');
|
|
5451
|
+
return result.status === 200;
|
|
5443
5452
|
},
|
|
5444
5453
|
});
|
|
5445
5454
|
|
|
@@ -5468,7 +5477,6 @@ const eventsService = (httpWithAuth) => {
|
|
|
5468
5477
|
transformRequestData: decamelizeRequestData,
|
|
5469
5478
|
});
|
|
5470
5479
|
return {
|
|
5471
|
-
...health$1(client, httpWithAuth),
|
|
5472
5480
|
...events(client, httpWithAuth),
|
|
5473
5481
|
subscriptions: subscriptions(client, httpWithAuth),
|
|
5474
5482
|
};
|
|
@@ -5500,17 +5508,6 @@ const logsService = (httpWithAuth) => {
|
|
|
5500
5508
|
};
|
|
5501
5509
|
};
|
|
5502
5510
|
|
|
5503
|
-
var health = (client, http) => ({
|
|
5504
|
-
/**
|
|
5505
|
-
* Perform a health check
|
|
5506
|
-
* @returns {boolean} success
|
|
5507
|
-
*/
|
|
5508
|
-
async health() {
|
|
5509
|
-
const result = await client.get(http, '/health');
|
|
5510
|
-
return result.status === Results.Success;
|
|
5511
|
-
},
|
|
5512
|
-
});
|
|
5513
|
-
|
|
5514
5511
|
var templatesV2 = (client, httpWithAuth) => {
|
|
5515
5512
|
async function find(options) {
|
|
5516
5513
|
const result = await client.get(httpWithAuth, `/${(options === null || options === void 0 ? void 0 : options.rql) || ''}`, {
|
|
@@ -5567,6 +5564,10 @@ var templatesV2 = (client, httpWithAuth) => {
|
|
|
5567
5564
|
const result = await find(options);
|
|
5568
5565
|
return result.data[0];
|
|
5569
5566
|
},
|
|
5567
|
+
async health() {
|
|
5568
|
+
const result = await client.get(httpWithAuth, '/health');
|
|
5569
|
+
return result.status === 200;
|
|
5570
|
+
},
|
|
5570
5571
|
};
|
|
5571
5572
|
};
|
|
5572
5573
|
|
|
@@ -5575,12 +5576,11 @@ const templatesV2Service = (httpWithAuth) => {
|
|
|
5575
5576
|
basePath: TEMPLATES_V2_BASE,
|
|
5576
5577
|
});
|
|
5577
5578
|
return {
|
|
5578
|
-
...health(client, httpWithAuth),
|
|
5579
5579
|
...templatesV2(client, httpWithAuth),
|
|
5580
5580
|
};
|
|
5581
5581
|
};
|
|
5582
5582
|
|
|
5583
|
-
const version = '8.9.0-dev-
|
|
5583
|
+
const version = '8.9.0-dev-138-3022f93';
|
|
5584
5584
|
|
|
5585
5585
|
/**
|
|
5586
5586
|
* Create ExtraHorizon client.
|
|
@@ -5760,4 +5760,4 @@ const parseStoredCredentials = (fileContent) => exhCredentialsDecoder(fileConten
|
|
|
5760
5760
|
.filter(line => line.length === 2)
|
|
5761
5761
|
.reduce((memo, [key, value]) => ({ ...memo, [key]: value }), {}));
|
|
5762
5762
|
|
|
5763
|
-
export { AccessTokenExpiredError, AccessTokenUnknownError, ActionType, ActivationRequestLimitError, ActivationRequestTimeoutError, ActivationUnknownError, AlreadyActivatedError, ApiError, ApiFunctionRequestMethod, ApiRequestErrorType, AppStoreTransactionAlreadyLinked, ApplicationNotAuthenticatedError, ApplicationType, ApplicationUnknownError, AuthenticationError, AuthorizationCodeExpiredError, AuthorizationUnknownError, BadGatewayServerError, BadRequestError, BodyFormatError, CallbackNotValidError, Comorbidities, DefaultLocalizationMissingError, DisabledForOidcUsersError, DuplicateRequestError, EmailUnknownError, EmailUsedError, EmptyBodyError, ErrorClassMap, FieldFormatError, FieldType, FileTooLargeError, FirebaseConnectionError, FirebaseInvalidPlatformDataError, ForbiddenError, ForgotPasswordRequestLimitError, ForgotPasswordRequestTimeoutError, Gender, GlobalPermissionName, IDFormatError, IllegalArgumentError, IllegalStateError, Impediments, IncorrectPinCodeError, InvalidClientError, InvalidCurrencyForProductPrice, InvalidGrantError, InvalidMfaCodeError, InvalidMfaTokenError, InvalidNonceError, InvalidPKCEError, InvalidPresenceTokenError, InvalidReceiptDataError, InvalidRequestError, InvalidTokenError, JSONSchemaType, LocalizationKeyMissingError, LockedDocumentError, LoginAttemptStatus, LoginFreezeError, LoginTimeoutError, MedicationFrequency, MedicationUnit, MfaReattemptDelayError, MfaRequiredError, MissingPKCEVerifierError, MissingRequiredFieldsError, NewMFARequiredError, NewPasswordHashUnknownError, NewPasswordPinCodeUnknownError, NoConfiguredAppStoreProduct, NoConfiguredPlayStoreProduct, NoMatchingPlayStoreLinkedSubscription, NoPermissionError, NotActivatedError, NotEnoughMfaMethodsError, NotFoundError, OAuth2ClientIdError, OAuth2ClientSecretError, OAuth2ErrorClassMap, OAuth2LoginError, OAuth2MissingClientCredentialsError, OauthKeyError, OauthSignatureError, OauthTokenError, OidcIdTokenError, OidcInvalidAuthorizationCodeError, OidcProviderResponseError, OrderSchemaStatus, PasswordError, PaymentIntentCreationSchemaPaymentMethodType, PaymentIntentCreationSchemaSetupPaymentMethodReuse, PinCodesNotEnabledError, PlayStoreTransactionAlreadyLinked, ProfileActivity, ProfileAlreadyExistsError, QueuedMailStatus, RefreshTokenExpiredError, RefreshTokenUnknownError, RemoveFieldError, RequestAbortedError, ResourceAlreadyExistsError, ResourceUnknownError, Results, ServerError, ServiceUnavailableError, StatusInUseError, StripePaymentMethodError, StripeRequestError, SubscriptionEntitlementSource, SubscriptionEntitlementStatus, SubscriptionEntitlementStatusCategory, SubscriptionEventSource, SubscriptionEventType, SupportedLanguageCodes, TaskStatus, TemplateFillingError, TemplateResolvingError, TemplateSyntaxError, TokenNotDeleteableError, TokenPermission, TooManyFailedAttemptsError, UnauthorizedClientError, UnauthorizedError, UnauthorizedTokenError, UnknownReceiptTransactionError, UnsupportedGrantError, UnsupportedGrantTypeError, UnsupportedResponseTypeError, UserNotAuthenticatedError, createClient, createOAuth1Client, createOAuth2Client, createProxyClient, findAllGeneric, findAllIterator, getMockSdkOAuth2 as getMockSdk, getMockSdkOAuth1, getMockSdkOAuth2, getMockSdkProxy, parseGlobalPermissions, parseStoredCredentials, recursiveMap, rqlBuilder, rqlParser };
|
|
5763
|
+
export { AccessTokenExpiredError, AccessTokenUnknownError, ActionType, ActivationRequestLimitError, ActivationRequestTimeoutError, ActivationUnknownError, AlreadyActivatedError, ApiError, ApiFunctionRequestMethod, ApiRequestErrorType, AppStoreTransactionAlreadyLinked, ApplicationNotAuthenticatedError, ApplicationType, ApplicationUnknownError, AuthenticationError, AuthorizationCodeExpiredError, AuthorizationUnknownError, BadGatewayServerError, BadRequestError, BodyFormatError, CallbackNotValidError, Comorbidities, DefaultLocalizationMissingError, DisabledForOidcUsersError, DuplicateRequestError, EmailUnknownError, EmailUsedError, EmptyBodyError, ErrorClassMap, FieldFormatError, FieldType, FileTooLargeError, FirebaseConnectionError, FirebaseInvalidPlatformDataError, ForbiddenError, ForgotPasswordRequestLimitError, ForgotPasswordRequestTimeoutError, FunctionPermissionMode, Gender, GlobalPermissionName, IDFormatError, IllegalArgumentError, IllegalStateError, Impediments, IncorrectPinCodeError, InvalidClientError, InvalidCurrencyForProductPrice, InvalidGrantError, InvalidMfaCodeError, InvalidMfaTokenError, InvalidNonceError, InvalidPKCEError, InvalidPresenceTokenError, InvalidReceiptDataError, InvalidRequestError, InvalidTokenError, JSONSchemaType, LocalizationKeyMissingError, LockedDocumentError, LoginAttemptStatus, LoginFreezeError, LoginTimeoutError, MedicationFrequency, MedicationUnit, MfaReattemptDelayError, MfaRequiredError, MissingPKCEVerifierError, MissingRequiredFieldsError, NewMFARequiredError, NewPasswordHashUnknownError, NewPasswordPinCodeUnknownError, NoConfiguredAppStoreProduct, NoConfiguredPlayStoreProduct, NoMatchingPlayStoreLinkedSubscription, NoPermissionError, NotActivatedError, NotEnoughMfaMethodsError, NotFoundError, OAuth2ClientIdError, OAuth2ClientSecretError, OAuth2ErrorClassMap, OAuth2LoginError, OAuth2MissingClientCredentialsError, OauthKeyError, OauthSignatureError, OauthTokenError, OidcIdTokenError, OidcInvalidAuthorizationCodeError, OidcProviderResponseError, OrderSchemaStatus, PasswordError, PaymentIntentCreationSchemaPaymentMethodType, PaymentIntentCreationSchemaSetupPaymentMethodReuse, PinCodesNotEnabledError, PlayStoreTransactionAlreadyLinked, ProfileActivity, ProfileAlreadyExistsError, QueuedMailStatus, RefreshTokenExpiredError, RefreshTokenUnknownError, RemoveFieldError, RequestAbortedError, ResourceAlreadyExistsError, ResourceUnknownError, Results, ServerError, ServiceUnavailableError, StatusInUseError, StripePaymentMethodError, StripeRequestError, SubscriptionEntitlementSource, SubscriptionEntitlementStatus, SubscriptionEntitlementStatusCategory, SubscriptionEventSource, SubscriptionEventType, SupportedLanguageCodes, TaskStatus, TemplateFillingError, TemplateResolvingError, TemplateSyntaxError, TokenNotDeleteableError, TokenPermission, TooManyFailedAttemptsError, UnauthorizedClientError, UnauthorizedError, UnauthorizedTokenError, UnknownReceiptTransactionError, UnsupportedGrantError, UnsupportedGrantTypeError, UnsupportedResponseTypeError, UserNotAuthenticatedError, createClient, createOAuth1Client, createOAuth2Client, createProxyClient, findAllGeneric, findAllIterator, getMockSdkOAuth2 as getMockSdk, getMockSdkOAuth1, getMockSdkOAuth2, getMockSdkProxy, parseGlobalPermissions, parseStoredCredentials, recursiveMap, rqlBuilder, rqlParser };
|