@forge/events 0.5.2 → 0.6.0-next.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 +18 -0
- package/out/__test__/invocationError.test.d.ts +2 -0
- package/out/__test__/invocationError.test.d.ts.map +1 -0
- package/out/__test__/invocationError.test.js +21 -0
- package/out/__test__/retryOptions.test.d.ts +2 -0
- package/out/__test__/retryOptions.test.d.ts.map +1 -0
- package/out/__test__/retryOptions.test.js +14 -0
- package/out/index.d.ts +3 -0
- package/out/index.d.ts.map +1 -1
- package/out/index.js +6 -0
- package/out/invocationError.d.ts +7 -0
- package/out/invocationError.d.ts.map +1 -0
- package/out/invocationError.js +12 -0
- package/out/invocationErrorCode.d.ts +9 -0
- package/out/invocationErrorCode.d.ts.map +1 -0
- package/out/invocationErrorCode.js +12 -0
- package/out/queueResponse.d.ts +5 -1
- package/out/queueResponse.d.ts.map +1 -1
- package/out/queueResponse.js +9 -3
- package/out/retryOptions.d.ts +9 -0
- package/out/retryOptions.d.ts.map +1 -0
- package/out/retryOptions.js +20 -0
- package/package.json +2 -2
- package/src/__test__/invocationError.test.ts +23 -0
- package/src/__test__/retryOptions.test.ts +14 -0
- package/src/index.ts +3 -0
- package/src/invocationError.ts +8 -0
- package/src/invocationErrorCode.ts +8 -0
- package/src/queueResponse.ts +8 -2
- package/src/retryOptions.ts +26 -0
- package/tsconfig.tsbuildinfo +239 -217
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @forge/events
|
|
2
2
|
|
|
3
|
+
## 0.6.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0859c971: Allow app developers to return InvocationError on error from lambda function
|
|
8
|
+
|
|
9
|
+
## 0.5.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- @forge/api@2.6.1
|
|
14
|
+
|
|
15
|
+
## 0.5.3-next.0
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- @forge/api@2.6.1-next.0
|
|
20
|
+
|
|
3
21
|
## 0.5.2
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"invocationError.test.d.ts","sourceRoot":"","sources":["../../src/__test__/invocationError.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const retryOptions_1 = require("../retryOptions");
|
|
4
|
+
const invocationError_1 = require("../invocationError");
|
|
5
|
+
const invocationErrorCode_1 = require("../invocationErrorCode");
|
|
6
|
+
describe('InvocationError tests', () => {
|
|
7
|
+
const defaultRetryOption = new retryOptions_1.RetryOptions();
|
|
8
|
+
let target = new invocationError_1.InvocationError();
|
|
9
|
+
it('Populate invocationError with default retryOptions and expect default retry option', async () => {
|
|
10
|
+
expect(target.retryOptions.retryAfter).toEqual(defaultRetryOption.retryAfter);
|
|
11
|
+
expect(target.retryOptions.retryReason).toEqual(invocationErrorCode_1.InvocationErrorCode.FUNCTION_RETRY_REQUEST);
|
|
12
|
+
expect(target.hasOwnProperty('_retry')).toBe(true);
|
|
13
|
+
});
|
|
14
|
+
it('Populate InvocationError with custom RetryOptions and expect the custom value to set.', () => {
|
|
15
|
+
defaultRetryOption.retryAfter = 10;
|
|
16
|
+
defaultRetryOption.retryReason = invocationErrorCode_1.InvocationErrorCode.FUNCTION_OUT_OF_MEMORY;
|
|
17
|
+
target = new invocationError_1.InvocationError(defaultRetryOption);
|
|
18
|
+
expect(target.retryOptions).toEqual(defaultRetryOption);
|
|
19
|
+
expect(target.hasOwnProperty('_retry')).toBe(true);
|
|
20
|
+
});
|
|
21
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"retryOptions.test.d.ts","sourceRoot":"","sources":["../../src/__test__/retryOptions.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const retryOptions_1 = require("../retryOptions");
|
|
4
|
+
describe('RetryOptions tests', () => {
|
|
5
|
+
const target = new retryOptions_1.RetryOptions();
|
|
6
|
+
it.each([
|
|
7
|
+
[retryOptions_1.RetryOptions.MIN_RETRY_AFTER, retryOptions_1.RetryOptions.MIN_RETRY_AFTER],
|
|
8
|
+
[retryOptions_1.RetryOptions.MIN_RETRY_AFTER - 1, retryOptions_1.RetryOptions.MIN_RETRY_AFTER],
|
|
9
|
+
[retryOptions_1.RetryOptions.MIN_RETRY_AFTER + 1, retryOptions_1.RetryOptions.MIN_RETRY_AFTER + 1]
|
|
10
|
+
])('try to set retryAfter to %p, expect retryAfter to be %p', (value, result) => {
|
|
11
|
+
target.retryAfter = value;
|
|
12
|
+
expect(target.retryAfter).toEqual(result);
|
|
13
|
+
});
|
|
14
|
+
});
|
package/out/index.d.ts
CHANGED
|
@@ -2,4 +2,7 @@ export { Queue } from './queue';
|
|
|
2
2
|
export { InvalidQueueNameError, TooManyEventsError, PayloadTooBigError, NoEventsToPushError, RateLimitError, PartialSuccessError, InternalServerError, JobDoesNotExistError, InvalidPushSettingsError, InvocationLimitReachedError } from './errors';
|
|
3
3
|
export { JobProgress } from './jobProgress';
|
|
4
4
|
export { QueueResponse } from './queueResponse';
|
|
5
|
+
export { InvocationError } from './invocationError';
|
|
6
|
+
export { InvocationErrorCode } from './invocationErrorCode';
|
|
7
|
+
export { RetryOptions } from './retryOptions';
|
|
5
8
|
//# sourceMappingURL=index.d.ts.map
|
package/out/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EACL,qBAAqB,EACrB,kBAAkB,EAClB,kBAAkB,EAClB,mBAAmB,EACnB,cAAc,EACd,mBAAmB,EACnB,mBAAmB,EACnB,oBAAoB,EACpB,wBAAwB,EACxB,2BAA2B,EAC5B,MAAM,UAAU,CAAC;AAClB,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EACL,qBAAqB,EACrB,kBAAkB,EAClB,kBAAkB,EAClB,mBAAmB,EACnB,cAAc,EACd,mBAAmB,EACnB,mBAAmB,EACnB,oBAAoB,EACpB,wBAAwB,EACxB,2BAA2B,EAC5B,MAAM,UAAU,CAAC;AAClB,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC"}
|
package/out/index.js
CHANGED
|
@@ -17,3 +17,9 @@ var jobProgress_1 = require("./jobProgress");
|
|
|
17
17
|
Object.defineProperty(exports, "JobProgress", { enumerable: true, get: function () { return jobProgress_1.JobProgress; } });
|
|
18
18
|
var queueResponse_1 = require("./queueResponse");
|
|
19
19
|
Object.defineProperty(exports, "QueueResponse", { enumerable: true, get: function () { return queueResponse_1.QueueResponse; } });
|
|
20
|
+
var invocationError_1 = require("./invocationError");
|
|
21
|
+
Object.defineProperty(exports, "InvocationError", { enumerable: true, get: function () { return invocationError_1.InvocationError; } });
|
|
22
|
+
var invocationErrorCode_1 = require("./invocationErrorCode");
|
|
23
|
+
Object.defineProperty(exports, "InvocationErrorCode", { enumerable: true, get: function () { return invocationErrorCode_1.InvocationErrorCode; } });
|
|
24
|
+
var retryOptions_1 = require("./retryOptions");
|
|
25
|
+
Object.defineProperty(exports, "RetryOptions", { enumerable: true, get: function () { return retryOptions_1.RetryOptions; } });
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { RetryOptions } from './retryOptions';
|
|
2
|
+
import { Response } from './queueResponse';
|
|
3
|
+
export declare class InvocationError extends Response {
|
|
4
|
+
retryOptions: RetryOptions;
|
|
5
|
+
constructor(retryOptions?: RetryOptions);
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=invocationError.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"invocationError.d.ts","sourceRoot":"","sources":["../src/invocationError.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAE3C,qBAAa,eAAgB,SAAQ,QAAQ;IACxB,YAAY,EAAE,YAAY;gBAA1B,YAAY,GAAE,YAAiC;CAGnE"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InvocationError = void 0;
|
|
4
|
+
const retryOptions_1 = require("./retryOptions");
|
|
5
|
+
const queueResponse_1 = require("./queueResponse");
|
|
6
|
+
class InvocationError extends queueResponse_1.Response {
|
|
7
|
+
constructor(retryOptions = new retryOptions_1.RetryOptions()) {
|
|
8
|
+
super(true);
|
|
9
|
+
this.retryOptions = retryOptions;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.InvocationError = InvocationError;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare enum InvocationErrorCode {
|
|
2
|
+
FUNCTION_OUT_OF_MEMORY = 0,
|
|
3
|
+
FUNCTION_TIME_OUT = 1,
|
|
4
|
+
FUNCTION_PLATFORM_UNKNOWN_ERROR = 2,
|
|
5
|
+
FUNCTION_PLATFORM_RATE_LIMITED = 3,
|
|
6
|
+
FUNCTION_UPSTREAM_RATE_LIMITED = 4,
|
|
7
|
+
FUNCTION_RETRY_REQUEST = 5
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=invocationErrorCode.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"invocationErrorCode.d.ts","sourceRoot":"","sources":["../src/invocationErrorCode.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB;IAC7B,sBAAsB,IAAA;IACtB,iBAAiB,IAAA;IACjB,+BAA+B,IAAA;IAC/B,8BAA8B,IAAA;IAC9B,8BAA8B,IAAA;IAC9B,sBAAsB,IAAA;CACvB"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InvocationErrorCode = void 0;
|
|
4
|
+
var InvocationErrorCode;
|
|
5
|
+
(function (InvocationErrorCode) {
|
|
6
|
+
InvocationErrorCode[InvocationErrorCode["FUNCTION_OUT_OF_MEMORY"] = 0] = "FUNCTION_OUT_OF_MEMORY";
|
|
7
|
+
InvocationErrorCode[InvocationErrorCode["FUNCTION_TIME_OUT"] = 1] = "FUNCTION_TIME_OUT";
|
|
8
|
+
InvocationErrorCode[InvocationErrorCode["FUNCTION_PLATFORM_UNKNOWN_ERROR"] = 2] = "FUNCTION_PLATFORM_UNKNOWN_ERROR";
|
|
9
|
+
InvocationErrorCode[InvocationErrorCode["FUNCTION_PLATFORM_RATE_LIMITED"] = 3] = "FUNCTION_PLATFORM_RATE_LIMITED";
|
|
10
|
+
InvocationErrorCode[InvocationErrorCode["FUNCTION_UPSTREAM_RATE_LIMITED"] = 4] = "FUNCTION_UPSTREAM_RATE_LIMITED";
|
|
11
|
+
InvocationErrorCode[InvocationErrorCode["FUNCTION_RETRY_REQUEST"] = 5] = "FUNCTION_RETRY_REQUEST";
|
|
12
|
+
})(InvocationErrorCode = exports.InvocationErrorCode || (exports.InvocationErrorCode = {}));
|
package/out/queueResponse.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
export declare class
|
|
1
|
+
export declare class Response {
|
|
2
2
|
protected _retry: boolean;
|
|
3
|
+
constructor(_retry: boolean);
|
|
4
|
+
}
|
|
5
|
+
export declare class QueueResponse extends Response {
|
|
6
|
+
constructor();
|
|
3
7
|
retry(): void;
|
|
4
8
|
}
|
|
5
9
|
//# sourceMappingURL=queueResponse.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"queueResponse.d.ts","sourceRoot":"","sources":["../src/queueResponse.ts"],"names":[],"mappings":"AAAA,qBAAa,
|
|
1
|
+
{"version":3,"file":"queueResponse.d.ts","sourceRoot":"","sources":["../src/queueResponse.ts"],"names":[],"mappings":"AAAA,qBAAa,QAAQ;IACP,SAAS,CAAC,MAAM,EAAE,OAAO;gBAAf,MAAM,EAAE,OAAO;CACtC;AAED,qBAAa,aAAc,SAAQ,QAAQ;;IAKzC,KAAK,IAAI,IAAI;CAGd"}
|
package/out/queueResponse.js
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.QueueResponse = void 0;
|
|
4
|
-
class
|
|
3
|
+
exports.QueueResponse = exports.Response = void 0;
|
|
4
|
+
class Response {
|
|
5
|
+
constructor(_retry) {
|
|
6
|
+
this._retry = _retry;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
exports.Response = Response;
|
|
10
|
+
class QueueResponse extends Response {
|
|
5
11
|
constructor() {
|
|
6
|
-
|
|
12
|
+
super(false);
|
|
7
13
|
}
|
|
8
14
|
retry() {
|
|
9
15
|
this._retry = true;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { InvocationErrorCode } from './invocationErrorCode';
|
|
2
|
+
export declare class RetryOptions {
|
|
3
|
+
static readonly MIN_RETRY_AFTER = 1;
|
|
4
|
+
private _retryAfter;
|
|
5
|
+
retryReason: InvocationErrorCode;
|
|
6
|
+
set retryAfter(valueInSeconds: number);
|
|
7
|
+
get retryAfter(): number;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=retryOptions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"retryOptions.d.ts","sourceRoot":"","sources":["../src/retryOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAE5D,qBAAa,YAAY;IACvB,MAAM,CAAC,QAAQ,CAAC,eAAe,KAAK;IAEpC,OAAO,CAAC,WAAW,CAAgC;IAE5C,WAAW,EAAE,mBAAmB,CAA8C;IAMrF,IAAI,UAAU,CAAC,cAAc,EAAE,MAAM,EAIpC;IAKD,IAAI,UAAU,IAAI,MAAM,CAEvB;CACF"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RetryOptions = void 0;
|
|
4
|
+
const invocationErrorCode_1 = require("./invocationErrorCode");
|
|
5
|
+
class RetryOptions {
|
|
6
|
+
constructor() {
|
|
7
|
+
this._retryAfter = RetryOptions.MIN_RETRY_AFTER;
|
|
8
|
+
this.retryReason = invocationErrorCode_1.InvocationErrorCode.FUNCTION_RETRY_REQUEST;
|
|
9
|
+
}
|
|
10
|
+
set retryAfter(valueInSeconds) {
|
|
11
|
+
if (valueInSeconds >= RetryOptions.MIN_RETRY_AFTER) {
|
|
12
|
+
this._retryAfter = valueInSeconds;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
get retryAfter() {
|
|
16
|
+
return this._retryAfter;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.RetryOptions = RetryOptions;
|
|
20
|
+
RetryOptions.MIN_RETRY_AFTER = 1;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/events",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0-next.0",
|
|
4
4
|
"description": "Forge Async Event methods",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"@types/uuid": "^3.4.7"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@forge/api": "^2.6.
|
|
19
|
+
"@forge/api": "^2.6.1",
|
|
20
20
|
"uuid": "^3.4.0"
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { RetryOptions } from '../retryOptions';
|
|
2
|
+
import { InvocationError } from '../invocationError';
|
|
3
|
+
import { InvocationErrorCode } from '../invocationErrorCode';
|
|
4
|
+
|
|
5
|
+
describe('InvocationError tests', () => {
|
|
6
|
+
const defaultRetryOption = new RetryOptions();
|
|
7
|
+
let target = new InvocationError();
|
|
8
|
+
|
|
9
|
+
it('Populate invocationError with default retryOptions and expect default retry option', async () => {
|
|
10
|
+
expect(target.retryOptions.retryAfter).toEqual(defaultRetryOption.retryAfter);
|
|
11
|
+
expect(target.retryOptions.retryReason).toEqual(InvocationErrorCode.FUNCTION_RETRY_REQUEST);
|
|
12
|
+
expect((target as any).hasOwnProperty('_retry')).toBe(true);
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
it('Populate InvocationError with custom RetryOptions and expect the custom value to set.', () => {
|
|
16
|
+
defaultRetryOption.retryAfter = 10;
|
|
17
|
+
defaultRetryOption.retryReason = InvocationErrorCode.FUNCTION_OUT_OF_MEMORY;
|
|
18
|
+
target = new InvocationError(defaultRetryOption);
|
|
19
|
+
|
|
20
|
+
expect(target.retryOptions).toEqual(defaultRetryOption);
|
|
21
|
+
expect((target as any).hasOwnProperty('_retry')).toBe(true);
|
|
22
|
+
});
|
|
23
|
+
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { RetryOptions } from '../retryOptions';
|
|
2
|
+
|
|
3
|
+
describe('RetryOptions tests', () => {
|
|
4
|
+
const target = new RetryOptions();
|
|
5
|
+
|
|
6
|
+
it.each([
|
|
7
|
+
[RetryOptions.MIN_RETRY_AFTER, RetryOptions.MIN_RETRY_AFTER],
|
|
8
|
+
[RetryOptions.MIN_RETRY_AFTER - 1, RetryOptions.MIN_RETRY_AFTER],
|
|
9
|
+
[RetryOptions.MIN_RETRY_AFTER + 1, RetryOptions.MIN_RETRY_AFTER + 1]
|
|
10
|
+
])('try to set retryAfter to %p, expect retryAfter to be %p', (value: number, result: number) => {
|
|
11
|
+
target.retryAfter = value;
|
|
12
|
+
expect(target.retryAfter).toEqual(result);
|
|
13
|
+
});
|
|
14
|
+
});
|
package/src/index.ts
CHANGED
|
@@ -13,3 +13,6 @@ export {
|
|
|
13
13
|
} from './errors';
|
|
14
14
|
export { JobProgress } from './jobProgress';
|
|
15
15
|
export { QueueResponse } from './queueResponse';
|
|
16
|
+
export { InvocationError } from './invocationError';
|
|
17
|
+
export { InvocationErrorCode } from './invocationErrorCode';
|
|
18
|
+
export { RetryOptions } from './retryOptions';
|
package/src/queueResponse.ts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
export class
|
|
2
|
-
protected _retry
|
|
1
|
+
export class Response {
|
|
2
|
+
constructor(protected _retry: boolean) {}
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
export class QueueResponse extends Response {
|
|
6
|
+
constructor() {
|
|
7
|
+
super(false);
|
|
8
|
+
}
|
|
3
9
|
|
|
4
10
|
retry(): void {
|
|
5
11
|
this._retry = true;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { InvocationErrorCode } from './invocationErrorCode';
|
|
2
|
+
|
|
3
|
+
export class RetryOptions {
|
|
4
|
+
static readonly MIN_RETRY_AFTER = 1;
|
|
5
|
+
|
|
6
|
+
private _retryAfter = RetryOptions.MIN_RETRY_AFTER;
|
|
7
|
+
|
|
8
|
+
public retryReason: InvocationErrorCode = InvocationErrorCode.FUNCTION_RETRY_REQUEST;
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Sets the retryAfter option to indicate seconds to wait before attempting a retry.
|
|
12
|
+
* @param valueInSeconds new value in seconds
|
|
13
|
+
*/
|
|
14
|
+
set retryAfter(valueInSeconds: number) {
|
|
15
|
+
if (valueInSeconds >= RetryOptions.MIN_RETRY_AFTER) {
|
|
16
|
+
this._retryAfter = valueInSeconds;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Returns value of retryAfter to indicate seconds to wait before attempting a retry.
|
|
22
|
+
*/
|
|
23
|
+
get retryAfter(): number {
|
|
24
|
+
return this._retryAfter;
|
|
25
|
+
}
|
|
26
|
+
}
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -137,23 +137,28 @@
|
|
|
137
137
|
"affectsGlobalScope": true
|
|
138
138
|
},
|
|
139
139
|
"../../node_modules/tslib/tslib.d.ts": {
|
|
140
|
-
"version": "
|
|
141
|
-
"signature": "
|
|
140
|
+
"version": "4576b4e61049f5ffd7c9e935cf88832e089265bdb15ffc35077310042cbbbeea",
|
|
141
|
+
"signature": "4576b4e61049f5ffd7c9e935cf88832e089265bdb15ffc35077310042cbbbeea",
|
|
142
|
+
"affectsGlobalScope": false
|
|
143
|
+
},
|
|
144
|
+
"../../node_modules/@types/node/assert.d.ts": {
|
|
145
|
+
"version": "0ce65cf5b36034006f2b315f379179f07bd5a6027f6538c7aed4ac5be6742fc7",
|
|
146
|
+
"signature": "0ce65cf5b36034006f2b315f379179f07bd5a6027f6538c7aed4ac5be6742fc7",
|
|
142
147
|
"affectsGlobalScope": false
|
|
143
148
|
},
|
|
144
149
|
"../../node_modules/@types/node/globals.d.ts": {
|
|
145
|
-
"version": "
|
|
146
|
-
"signature": "
|
|
150
|
+
"version": "dd83f0d6c94825b05a6dd1013ee54379ce6029711509876b969f872f815ef7ef",
|
|
151
|
+
"signature": "dd83f0d6c94825b05a6dd1013ee54379ce6029711509876b969f872f815ef7ef",
|
|
147
152
|
"affectsGlobalScope": true
|
|
148
153
|
},
|
|
149
154
|
"../../node_modules/@types/node/async_hooks.d.ts": {
|
|
150
|
-
"version": "
|
|
151
|
-
"signature": "
|
|
155
|
+
"version": "0721418a90edc5fca466672f266ab6de12cb50a9db29998fc58765481a3c82ef",
|
|
156
|
+
"signature": "0721418a90edc5fca466672f266ab6de12cb50a9db29998fc58765481a3c82ef",
|
|
152
157
|
"affectsGlobalScope": false
|
|
153
158
|
},
|
|
154
159
|
"../../node_modules/@types/node/buffer.d.ts": {
|
|
155
|
-
"version": "
|
|
156
|
-
"signature": "
|
|
160
|
+
"version": "97b39f33e966bcf9762bccdaca76c94825199f3fef153ebea9bdfd3fcd2413b6",
|
|
161
|
+
"signature": "97b39f33e966bcf9762bccdaca76c94825199f3fef153ebea9bdfd3fcd2413b6",
|
|
157
162
|
"affectsGlobalScope": false
|
|
158
163
|
},
|
|
159
164
|
"../../node_modules/@types/events/index.d.ts": {
|
|
@@ -162,188 +167,188 @@
|
|
|
162
167
|
"affectsGlobalScope": false
|
|
163
168
|
},
|
|
164
169
|
"../../node_modules/@types/node/child_process.d.ts": {
|
|
165
|
-
"version": "
|
|
166
|
-
"signature": "
|
|
170
|
+
"version": "bf0ae001d0797ccbb74b3a91d88d28022e809f47f97e1b2b44b3e343b114cc95",
|
|
171
|
+
"signature": "bf0ae001d0797ccbb74b3a91d88d28022e809f47f97e1b2b44b3e343b114cc95",
|
|
167
172
|
"affectsGlobalScope": false
|
|
168
173
|
},
|
|
169
174
|
"../../node_modules/@types/node/cluster.d.ts": {
|
|
170
|
-
"version": "
|
|
171
|
-
"signature": "
|
|
175
|
+
"version": "c41eff6b8e1f91104ae974ccd2bc37c723a462b30ca1df942b2c5b0158ef1df3",
|
|
176
|
+
"signature": "c41eff6b8e1f91104ae974ccd2bc37c723a462b30ca1df942b2c5b0158ef1df3",
|
|
172
177
|
"affectsGlobalScope": false
|
|
173
178
|
},
|
|
174
179
|
"../../node_modules/@types/node/console.d.ts": {
|
|
175
|
-
"version": "
|
|
176
|
-
"signature": "
|
|
180
|
+
"version": "2e341737e0711c12040e83047487240b1693a6774253b8142d1a0500a805b7a1",
|
|
181
|
+
"signature": "2e341737e0711c12040e83047487240b1693a6774253b8142d1a0500a805b7a1",
|
|
177
182
|
"affectsGlobalScope": false
|
|
178
183
|
},
|
|
179
184
|
"../../node_modules/@types/node/constants.d.ts": {
|
|
180
|
-
"version": "
|
|
181
|
-
"signature": "
|
|
185
|
+
"version": "e08e97c2865750e880fea09b150a702ccfa84163382daa0221f5597185a554bf",
|
|
186
|
+
"signature": "e08e97c2865750e880fea09b150a702ccfa84163382daa0221f5597185a554bf",
|
|
182
187
|
"affectsGlobalScope": false
|
|
183
188
|
},
|
|
184
189
|
"../../node_modules/@types/node/crypto.d.ts": {
|
|
185
|
-
"version": "
|
|
186
|
-
"signature": "
|
|
190
|
+
"version": "7ec6b45fc1f5f012ac226b44d0eeaf5a0e90947431ad7c6d1f244ba080b2870d",
|
|
191
|
+
"signature": "7ec6b45fc1f5f012ac226b44d0eeaf5a0e90947431ad7c6d1f244ba080b2870d",
|
|
187
192
|
"affectsGlobalScope": false
|
|
188
193
|
},
|
|
189
194
|
"../../node_modules/@types/node/dgram.d.ts": {
|
|
190
|
-
"version": "
|
|
191
|
-
"signature": "
|
|
195
|
+
"version": "4a1a19573176829708dc03efea508e7c364f6fa30098a5100bd9d93fc9cd38ee",
|
|
196
|
+
"signature": "4a1a19573176829708dc03efea508e7c364f6fa30098a5100bd9d93fc9cd38ee",
|
|
192
197
|
"affectsGlobalScope": false
|
|
193
198
|
},
|
|
194
199
|
"../../node_modules/@types/node/dns.d.ts": {
|
|
195
|
-
"version": "
|
|
196
|
-
"signature": "
|
|
200
|
+
"version": "8296198bc72e7ef2221b0e140738ce56004e8d1323cd08b0ac1a15295fe911b5",
|
|
201
|
+
"signature": "8296198bc72e7ef2221b0e140738ce56004e8d1323cd08b0ac1a15295fe911b5",
|
|
197
202
|
"affectsGlobalScope": false
|
|
198
203
|
},
|
|
199
204
|
"../../node_modules/@types/node/domain.d.ts": {
|
|
200
|
-
"version": "
|
|
201
|
-
"signature": "
|
|
205
|
+
"version": "baeda1fadac9fd31920480b85340ab9c4266a25ad08403dee8e15fd0751101fb",
|
|
206
|
+
"signature": "baeda1fadac9fd31920480b85340ab9c4266a25ad08403dee8e15fd0751101fb",
|
|
202
207
|
"affectsGlobalScope": false
|
|
203
208
|
},
|
|
204
209
|
"../../node_modules/@types/node/events.d.ts": {
|
|
205
|
-
"version": "
|
|
206
|
-
"signature": "
|
|
210
|
+
"version": "12c4e8e811f4310b0dcaa3d1f843a35dc985f78941886cad4950453ad6753959",
|
|
211
|
+
"signature": "12c4e8e811f4310b0dcaa3d1f843a35dc985f78941886cad4950453ad6753959",
|
|
207
212
|
"affectsGlobalScope": false
|
|
208
213
|
},
|
|
209
214
|
"../../node_modules/@types/node/fs.d.ts": {
|
|
210
|
-
"version": "
|
|
211
|
-
"signature": "
|
|
215
|
+
"version": "6bdede4dc73ad9816d0beeca7413ab29523f99a98441cc9fa6c614fd97fac49d",
|
|
216
|
+
"signature": "6bdede4dc73ad9816d0beeca7413ab29523f99a98441cc9fa6c614fd97fac49d",
|
|
212
217
|
"affectsGlobalScope": false
|
|
213
218
|
},
|
|
214
219
|
"../../node_modules/@types/node/http.d.ts": {
|
|
215
|
-
"version": "
|
|
216
|
-
"signature": "
|
|
220
|
+
"version": "f8cf3768524d5f6fea2c7387848801e717eb911c0e63a72eabb960adc749cf09",
|
|
221
|
+
"signature": "f8cf3768524d5f6fea2c7387848801e717eb911c0e63a72eabb960adc749cf09",
|
|
217
222
|
"affectsGlobalScope": false
|
|
218
223
|
},
|
|
219
224
|
"../../node_modules/@types/node/http2.d.ts": {
|
|
220
|
-
"version": "
|
|
221
|
-
"signature": "
|
|
225
|
+
"version": "b3e4f2772da66bac2144ca8cd63f70d211d2f970c93fcb789d03e8a046d47c93",
|
|
226
|
+
"signature": "b3e4f2772da66bac2144ca8cd63f70d211d2f970c93fcb789d03e8a046d47c93",
|
|
222
227
|
"affectsGlobalScope": false
|
|
223
228
|
},
|
|
224
229
|
"../../node_modules/@types/node/https.d.ts": {
|
|
225
|
-
"version": "
|
|
226
|
-
"signature": "
|
|
230
|
+
"version": "a3586135924c800f21f739a1da43acace1acfdba124deb0871cbd6d04d7dfd1b",
|
|
231
|
+
"signature": "a3586135924c800f21f739a1da43acace1acfdba124deb0871cbd6d04d7dfd1b",
|
|
227
232
|
"affectsGlobalScope": false
|
|
228
233
|
},
|
|
229
234
|
"../../node_modules/@types/node/inspector.d.ts": {
|
|
230
|
-
"version": "
|
|
231
|
-
"signature": "
|
|
235
|
+
"version": "f74c1fae7233cd08c72bb2dc09cb0673c53fb4c3c7903ccf0094404e3f2ba6d4",
|
|
236
|
+
"signature": "f74c1fae7233cd08c72bb2dc09cb0673c53fb4c3c7903ccf0094404e3f2ba6d4",
|
|
232
237
|
"affectsGlobalScope": false
|
|
233
238
|
},
|
|
234
239
|
"../../node_modules/@types/node/module.d.ts": {
|
|
235
|
-
"version": "
|
|
236
|
-
"signature": "
|
|
240
|
+
"version": "4ec74fe565d13fd219884cfacf903c89477cc54148887e51c5bead4dae7dc4fd",
|
|
241
|
+
"signature": "4ec74fe565d13fd219884cfacf903c89477cc54148887e51c5bead4dae7dc4fd",
|
|
237
242
|
"affectsGlobalScope": false
|
|
238
243
|
},
|
|
239
244
|
"../../node_modules/@types/node/net.d.ts": {
|
|
240
|
-
"version": "
|
|
241
|
-
"signature": "
|
|
245
|
+
"version": "f50f52f8fc2a5f8dfa594ff59a6273876b1734fe612e9f331ca9078fede3b304",
|
|
246
|
+
"signature": "f50f52f8fc2a5f8dfa594ff59a6273876b1734fe612e9f331ca9078fede3b304",
|
|
242
247
|
"affectsGlobalScope": false
|
|
243
248
|
},
|
|
244
249
|
"../../node_modules/@types/node/os.d.ts": {
|
|
245
|
-
"version": "
|
|
246
|
-
"signature": "
|
|
250
|
+
"version": "a46d8aa9e561fb135d253e1657a0cd0f6c18377676305eb0ca28e418358b229c",
|
|
251
|
+
"signature": "a46d8aa9e561fb135d253e1657a0cd0f6c18377676305eb0ca28e418358b229c",
|
|
247
252
|
"affectsGlobalScope": false
|
|
248
253
|
},
|
|
249
254
|
"../../node_modules/@types/node/path.d.ts": {
|
|
250
|
-
"version": "
|
|
251
|
-
"signature": "
|
|
255
|
+
"version": "5a168a15e7a423011b10da472ee3b6d92b27227c192cdaf1e09b30f58806856d",
|
|
256
|
+
"signature": "5a168a15e7a423011b10da472ee3b6d92b27227c192cdaf1e09b30f58806856d",
|
|
252
257
|
"affectsGlobalScope": false
|
|
253
258
|
},
|
|
254
259
|
"../../node_modules/@types/node/perf_hooks.d.ts": {
|
|
255
|
-
"version": "
|
|
256
|
-
"signature": "
|
|
260
|
+
"version": "ad107fa472d28e615af522b31653e75caad12b834b257c1a83f6c4acff2de9bf",
|
|
261
|
+
"signature": "ad107fa472d28e615af522b31653e75caad12b834b257c1a83f6c4acff2de9bf",
|
|
257
262
|
"affectsGlobalScope": false
|
|
258
263
|
},
|
|
259
264
|
"../../node_modules/@types/node/process.d.ts": {
|
|
260
|
-
"version": "
|
|
261
|
-
"signature": "
|
|
265
|
+
"version": "07cfc938dfbb5a7b5ba3c363366db93d5728b0fcad1aa08a12052a1b3b72817a",
|
|
266
|
+
"signature": "07cfc938dfbb5a7b5ba3c363366db93d5728b0fcad1aa08a12052a1b3b72817a",
|
|
262
267
|
"affectsGlobalScope": true
|
|
263
268
|
},
|
|
264
269
|
"../../node_modules/@types/node/punycode.d.ts": {
|
|
265
|
-
"version": "
|
|
266
|
-
"signature": "
|
|
270
|
+
"version": "7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6",
|
|
271
|
+
"signature": "7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6",
|
|
267
272
|
"affectsGlobalScope": false
|
|
268
273
|
},
|
|
269
274
|
"../../node_modules/@types/node/querystring.d.ts": {
|
|
270
|
-
"version": "
|
|
271
|
-
"signature": "
|
|
275
|
+
"version": "67cf04da598e6407427a17d828e9e02d8f5ae5a8466dc73d1585073b8dc29160",
|
|
276
|
+
"signature": "67cf04da598e6407427a17d828e9e02d8f5ae5a8466dc73d1585073b8dc29160",
|
|
272
277
|
"affectsGlobalScope": false
|
|
273
278
|
},
|
|
274
279
|
"../../node_modules/@types/node/readline.d.ts": {
|
|
275
|
-
"version": "
|
|
276
|
-
"signature": "
|
|
280
|
+
"version": "fa960168e0650a987d5738376a22a1969b5dff2112b9653f9f1efddf8ba7d5bb",
|
|
281
|
+
"signature": "fa960168e0650a987d5738376a22a1969b5dff2112b9653f9f1efddf8ba7d5bb",
|
|
277
282
|
"affectsGlobalScope": false
|
|
278
283
|
},
|
|
279
284
|
"../../node_modules/@types/node/repl.d.ts": {
|
|
280
|
-
"version": "
|
|
281
|
-
"signature": "
|
|
285
|
+
"version": "140b05c89cbd5fc75c4e9c1780d85dfb4ea73a2b11dd345f8f944afd002ad74f",
|
|
286
|
+
"signature": "140b05c89cbd5fc75c4e9c1780d85dfb4ea73a2b11dd345f8f944afd002ad74f",
|
|
282
287
|
"affectsGlobalScope": false
|
|
283
288
|
},
|
|
284
289
|
"../../node_modules/@types/node/stream.d.ts": {
|
|
285
|
-
"version": "
|
|
286
|
-
"signature": "
|
|
290
|
+
"version": "ece46d0e5702e9c269aa71b42d02c934c10d4d24545b1d8594a8115f23a9011f",
|
|
291
|
+
"signature": "ece46d0e5702e9c269aa71b42d02c934c10d4d24545b1d8594a8115f23a9011f",
|
|
287
292
|
"affectsGlobalScope": false
|
|
288
293
|
},
|
|
289
294
|
"../../node_modules/@types/node/string_decoder.d.ts": {
|
|
290
|
-
"version": "
|
|
291
|
-
"signature": "
|
|
295
|
+
"version": "5b0df2143d96172bf207ed187627e8c58b15a1a8f97bdbc2ede942b36b39fc98",
|
|
296
|
+
"signature": "5b0df2143d96172bf207ed187627e8c58b15a1a8f97bdbc2ede942b36b39fc98",
|
|
292
297
|
"affectsGlobalScope": false
|
|
293
298
|
},
|
|
294
299
|
"../../node_modules/@types/node/timers.d.ts": {
|
|
295
|
-
"version": "
|
|
296
|
-
"signature": "
|
|
300
|
+
"version": "75409a3abea76ea586c6fb7f2e9f1a7dc007140e2d4ee26ab127735c4f9154e4",
|
|
301
|
+
"signature": "75409a3abea76ea586c6fb7f2e9f1a7dc007140e2d4ee26ab127735c4f9154e4",
|
|
297
302
|
"affectsGlobalScope": false
|
|
298
303
|
},
|
|
299
304
|
"../../node_modules/@types/node/tls.d.ts": {
|
|
300
|
-
"version": "
|
|
301
|
-
"signature": "
|
|
305
|
+
"version": "8e721f0a95eb26a30228d571659d2db062213bfe066a97fff7967a0c8e1d56e4",
|
|
306
|
+
"signature": "8e721f0a95eb26a30228d571659d2db062213bfe066a97fff7967a0c8e1d56e4",
|
|
302
307
|
"affectsGlobalScope": false
|
|
303
308
|
},
|
|
304
309
|
"../../node_modules/@types/node/trace_events.d.ts": {
|
|
305
|
-
"version": "
|
|
306
|
-
"signature": "
|
|
310
|
+
"version": "7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4",
|
|
311
|
+
"signature": "7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4",
|
|
307
312
|
"affectsGlobalScope": false
|
|
308
313
|
},
|
|
309
314
|
"../../node_modules/@types/node/tty.d.ts": {
|
|
310
|
-
"version": "
|
|
311
|
-
"signature": "
|
|
315
|
+
"version": "9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5",
|
|
316
|
+
"signature": "9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5",
|
|
312
317
|
"affectsGlobalScope": false
|
|
313
318
|
},
|
|
314
319
|
"../../node_modules/@types/node/url.d.ts": {
|
|
315
|
-
"version": "
|
|
316
|
-
"signature": "
|
|
320
|
+
"version": "807bf667365224f909aed5111ac8527e8e148f37fc73c61f70c762b920fb62c7",
|
|
321
|
+
"signature": "807bf667365224f909aed5111ac8527e8e148f37fc73c61f70c762b920fb62c7",
|
|
317
322
|
"affectsGlobalScope": false
|
|
318
323
|
},
|
|
319
324
|
"../../node_modules/@types/node/util.d.ts": {
|
|
320
|
-
"version": "
|
|
321
|
-
"signature": "
|
|
325
|
+
"version": "3d87bdaed72f86b91f99401e6e04729afbb5916064778cf324b3d9b51c3a6d91",
|
|
326
|
+
"signature": "3d87bdaed72f86b91f99401e6e04729afbb5916064778cf324b3d9b51c3a6d91",
|
|
322
327
|
"affectsGlobalScope": false
|
|
323
328
|
},
|
|
324
329
|
"../../node_modules/@types/node/v8.d.ts": {
|
|
325
|
-
"version": "
|
|
326
|
-
"signature": "
|
|
330
|
+
"version": "8ca837d16a31d6d01b13328ca9e6a39e424b4bf294d3b73349dccacea51be730",
|
|
331
|
+
"signature": "8ca837d16a31d6d01b13328ca9e6a39e424b4bf294d3b73349dccacea51be730",
|
|
327
332
|
"affectsGlobalScope": false
|
|
328
333
|
},
|
|
329
334
|
"../../node_modules/@types/node/vm.d.ts": {
|
|
330
|
-
"version": "
|
|
331
|
-
"signature": "
|
|
335
|
+
"version": "a9d40247ec6c68a47effbb1d8acd8df288bcee7b6bf29c17cf4161e5ef609a0c",
|
|
336
|
+
"signature": "a9d40247ec6c68a47effbb1d8acd8df288bcee7b6bf29c17cf4161e5ef609a0c",
|
|
332
337
|
"affectsGlobalScope": false
|
|
333
338
|
},
|
|
334
|
-
"../../node_modules/@types/node/
|
|
335
|
-
"version": "
|
|
336
|
-
"signature": "
|
|
339
|
+
"../../node_modules/@types/node/wasi.d.ts": {
|
|
340
|
+
"version": "caf38c850b924a0af08a893d06f68fcae3d5a41780b50cc6df9481beeca8e9a3",
|
|
341
|
+
"signature": "caf38c850b924a0af08a893d06f68fcae3d5a41780b50cc6df9481beeca8e9a3",
|
|
337
342
|
"affectsGlobalScope": false
|
|
338
343
|
},
|
|
339
|
-
"../../node_modules/@types/node/
|
|
340
|
-
"version": "
|
|
341
|
-
"signature": "
|
|
344
|
+
"../../node_modules/@types/node/worker_threads.d.ts": {
|
|
345
|
+
"version": "7152c46a63e7f9ac7db6cd8d4dbf85d90f051a0db60e650573fae576580cbf9a",
|
|
346
|
+
"signature": "7152c46a63e7f9ac7db6cd8d4dbf85d90f051a0db60e650573fae576580cbf9a",
|
|
342
347
|
"affectsGlobalScope": false
|
|
343
348
|
},
|
|
344
|
-
"../../node_modules/@types/node/
|
|
345
|
-
"version": "
|
|
346
|
-
"signature": "
|
|
349
|
+
"../../node_modules/@types/node/zlib.d.ts": {
|
|
350
|
+
"version": "496370c58ed054e51a68517846c28a695bf84df2873556cca7fe51e297b32420",
|
|
351
|
+
"signature": "496370c58ed054e51a68517846c28a695bf84df2873556cca7fe51e297b32420",
|
|
347
352
|
"affectsGlobalScope": false
|
|
348
353
|
},
|
|
349
354
|
"../../node_modules/@types/node/globals.global.d.ts": {
|
|
@@ -351,44 +356,24 @@
|
|
|
351
356
|
"signature": "2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1",
|
|
352
357
|
"affectsGlobalScope": true
|
|
353
358
|
},
|
|
354
|
-
"../../node_modules/@types/node/wasi.d.ts": {
|
|
355
|
-
"version": "14a6a3cee450438254c004a6b4f1191ec9977186bdeda07764f2a8d90ef71117",
|
|
356
|
-
"signature": "14a6a3cee450438254c004a6b4f1191ec9977186bdeda07764f2a8d90ef71117",
|
|
357
|
-
"affectsGlobalScope": false
|
|
358
|
-
},
|
|
359
|
-
"../../node_modules/@types/node/ts3.6/base.d.ts": {
|
|
360
|
-
"version": "1ba358e9eef5efe1b8123b0e96cb3c3c3bc3d5ce32270afbf517b2573ae5b8ce",
|
|
361
|
-
"signature": "1ba358e9eef5efe1b8123b0e96cb3c3c3bc3d5ce32270afbf517b2573ae5b8ce",
|
|
362
|
-
"affectsGlobalScope": false
|
|
363
|
-
},
|
|
364
|
-
"../../node_modules/@types/node/assert.d.ts": {
|
|
365
|
-
"version": "91c9ff6555c8aeea768240f596741f06fadc86ec391f49537d9d4cd1ab6ab24f",
|
|
366
|
-
"signature": "91c9ff6555c8aeea768240f596741f06fadc86ec391f49537d9d4cd1ab6ab24f",
|
|
367
|
-
"affectsGlobalScope": false
|
|
368
|
-
},
|
|
369
|
-
"../../node_modules/@types/node/base.d.ts": {
|
|
370
|
-
"version": "d20072cb51d8baad944bedd935a25c7f10c29744e9a648d2c72c215337356077",
|
|
371
|
-
"signature": "d20072cb51d8baad944bedd935a25c7f10c29744e9a648d2c72c215337356077",
|
|
372
|
-
"affectsGlobalScope": false
|
|
373
|
-
},
|
|
374
359
|
"../../node_modules/@types/node/index.d.ts": {
|
|
375
|
-
"version": "
|
|
376
|
-
"signature": "
|
|
360
|
+
"version": "263da3252e029b3b62580b7a0c5e7bab07325a31c8af436ff60143cfda73b629",
|
|
361
|
+
"signature": "263da3252e029b3b62580b7a0c5e7bab07325a31c8af436ff60143cfda73b629",
|
|
377
362
|
"affectsGlobalScope": false
|
|
378
363
|
},
|
|
379
364
|
"../../node_modules/form-data/index.d.ts": {
|
|
380
|
-
"version": "
|
|
381
|
-
"signature": "
|
|
365
|
+
"version": "736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50",
|
|
366
|
+
"signature": "736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50",
|
|
382
367
|
"affectsGlobalScope": false
|
|
383
368
|
},
|
|
384
369
|
"../../node_modules/@types/node-fetch/externals.d.ts": {
|
|
385
|
-
"version": "
|
|
386
|
-
"signature": "
|
|
370
|
+
"version": "208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71",
|
|
371
|
+
"signature": "208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71",
|
|
387
372
|
"affectsGlobalScope": false
|
|
388
373
|
},
|
|
389
374
|
"../../node_modules/@types/node-fetch/index.d.ts": {
|
|
390
|
-
"version": "
|
|
391
|
-
"signature": "
|
|
375
|
+
"version": "062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b",
|
|
376
|
+
"signature": "062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b",
|
|
392
377
|
"affectsGlobalScope": false
|
|
393
378
|
},
|
|
394
379
|
"./src/types.ts": {
|
|
@@ -417,8 +402,8 @@
|
|
|
417
402
|
"affectsGlobalScope": false
|
|
418
403
|
},
|
|
419
404
|
"../../node_modules/@types/uuid/interfaces.d.ts": {
|
|
420
|
-
"version": "
|
|
421
|
-
"signature": "
|
|
405
|
+
"version": "4116dff2582ecc8645c3a90d26707ec6fd9ede6631f63fb65f11d42806bb47f1",
|
|
406
|
+
"signature": "4116dff2582ecc8645c3a90d26707ec6fd9ede6631f63fb65f11d42806bb47f1",
|
|
422
407
|
"affectsGlobalScope": false
|
|
423
408
|
},
|
|
424
409
|
"../../node_modules/@types/uuid/v4.d.ts": {
|
|
@@ -437,13 +422,33 @@
|
|
|
437
422
|
"affectsGlobalScope": false
|
|
438
423
|
},
|
|
439
424
|
"./src/queueResponse.ts": {
|
|
440
|
-
"version": "
|
|
441
|
-
"signature": "
|
|
425
|
+
"version": "a765beefc0958b16e701b1ba73f20bd19652502a883085aae57738b608635962",
|
|
426
|
+
"signature": "d4eda8ab17eab4c73f0e68412d76fdc7522d739bfe9ef9cb6cc5747552aee68e",
|
|
427
|
+
"affectsGlobalScope": false
|
|
428
|
+
},
|
|
429
|
+
"./src/invocationErrorCode.ts": {
|
|
430
|
+
"version": "f17aca31b8bd79fc42f9d1d1ac9fbdbe5e8a5eaad1d16168429a092a7391da88",
|
|
431
|
+
"signature": "78d45f07851c9718095e44bc845a23da73ef5c9faf0bafce4501f39f0b4cef96",
|
|
432
|
+
"affectsGlobalScope": false
|
|
433
|
+
},
|
|
434
|
+
"./src/retryOptions.ts": {
|
|
435
|
+
"version": "196ea35503fd78f4e259541bc1e104e0771e5ed58c6c063109d7fa025c30ba2f",
|
|
436
|
+
"signature": "0c043c863577fc64428a434e533664717c766333835e158a7233cae151284a08",
|
|
437
|
+
"affectsGlobalScope": false
|
|
438
|
+
},
|
|
439
|
+
"./src/invocationError.ts": {
|
|
440
|
+
"version": "78c06faf8022bd36b5579466ee349f696c531a641caccfba8fd7e4945110ca83",
|
|
441
|
+
"signature": "c5d3392f3f796b26a0bda8b4dc0bd427e1d7cbd52b2edf8df9e8e88dbfcc6311",
|
|
442
442
|
"affectsGlobalScope": false
|
|
443
443
|
},
|
|
444
444
|
"./src/index.ts": {
|
|
445
|
-
"version": "
|
|
446
|
-
"signature": "
|
|
445
|
+
"version": "fe56bfba6bfc0931a055642585af15f764fb51383d56674742f7a9036802c4f1",
|
|
446
|
+
"signature": "4068932d0dc4ea20556bf55c905aa895f42b69ea301a616fb668c0f694475a89",
|
|
447
|
+
"affectsGlobalScope": false
|
|
448
|
+
},
|
|
449
|
+
"./src/__test__/invocationError.test.ts": {
|
|
450
|
+
"version": "6e697d96c2b7439993589c615b122022bf711f8a4c62f4c01e2579cc13595f24",
|
|
451
|
+
"signature": "2828661aedf167d345a46c084fd93db1749c61793ee4b7b627276a16c91f732f",
|
|
447
452
|
"affectsGlobalScope": false
|
|
448
453
|
},
|
|
449
454
|
"./src/__test__/utils.ts": {
|
|
@@ -466,6 +471,11 @@
|
|
|
466
471
|
"signature": "7bc819d10bb62166250f5efeffe176508b3d870807ac87f9fd987e3a552a9b64",
|
|
467
472
|
"affectsGlobalScope": false
|
|
468
473
|
},
|
|
474
|
+
"./src/__test__/retryOptions.test.ts": {
|
|
475
|
+
"version": "bbbaf4c9a1497332be34be622de1b1c1b6266393f822173fc05eff9ddf714352",
|
|
476
|
+
"signature": "c06fea4edbea8d8367d828cf8d04f164a1c2f8f45265d63be53e757266c0b3f7",
|
|
477
|
+
"affectsGlobalScope": false
|
|
478
|
+
},
|
|
469
479
|
"../../node_modules/jest-diff/build/cleanupSemantic.d.ts": {
|
|
470
480
|
"version": "d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322",
|
|
471
481
|
"signature": "d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322",
|
|
@@ -502,8 +512,8 @@
|
|
|
502
512
|
"affectsGlobalScope": false
|
|
503
513
|
},
|
|
504
514
|
"../../node_modules/@types/jest/index.d.ts": {
|
|
505
|
-
"version": "
|
|
506
|
-
"signature": "
|
|
515
|
+
"version": "516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087",
|
|
516
|
+
"signature": "516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087",
|
|
507
517
|
"affectsGlobalScope": true
|
|
508
518
|
}
|
|
509
519
|
},
|
|
@@ -549,10 +559,6 @@
|
|
|
549
559
|
"../../node_modules/@types/node/url.d.ts",
|
|
550
560
|
"../../node_modules/form-data/index.d.ts"
|
|
551
561
|
],
|
|
552
|
-
"../../node_modules/@types/node/base.d.ts": [
|
|
553
|
-
"../../node_modules/@types/node/assert.d.ts",
|
|
554
|
-
"../../node_modules/@types/node/ts3.6/base.d.ts"
|
|
555
|
-
],
|
|
556
562
|
"../../node_modules/@types/node/child_process.d.ts": [
|
|
557
563
|
"../../node_modules/@types/node/events.d.ts",
|
|
558
564
|
"../../node_modules/@types/node/net.d.ts",
|
|
@@ -574,13 +580,15 @@
|
|
|
574
580
|
"../../node_modules/@types/node/domain.d.ts": [
|
|
575
581
|
"../../node_modules/@types/node/events.d.ts"
|
|
576
582
|
],
|
|
583
|
+
"../../node_modules/@types/node/events.d.ts": [
|
|
584
|
+
"../../node_modules/@types/node/events.d.ts"
|
|
585
|
+
],
|
|
577
586
|
"../../node_modules/@types/node/fs.d.ts": [
|
|
578
587
|
"../../node_modules/@types/node/events.d.ts",
|
|
579
588
|
"../../node_modules/@types/node/stream.d.ts",
|
|
580
589
|
"../../node_modules/@types/node/url.d.ts"
|
|
581
590
|
],
|
|
582
591
|
"../../node_modules/@types/node/http.d.ts": [
|
|
583
|
-
"../../node_modules/@types/node/events.d.ts",
|
|
584
592
|
"../../node_modules/@types/node/net.d.ts",
|
|
585
593
|
"../../node_modules/@types/node/stream.d.ts",
|
|
586
594
|
"../../node_modules/@types/node/url.d.ts"
|
|
@@ -595,47 +603,13 @@
|
|
|
595
603
|
"../../node_modules/@types/node/url.d.ts"
|
|
596
604
|
],
|
|
597
605
|
"../../node_modules/@types/node/https.d.ts": [
|
|
598
|
-
"../../node_modules/@types/node/events.d.ts",
|
|
599
606
|
"../../node_modules/@types/node/http.d.ts",
|
|
607
|
+
"../../node_modules/@types/node/stream.d.ts",
|
|
600
608
|
"../../node_modules/@types/node/tls.d.ts",
|
|
601
609
|
"../../node_modules/@types/node/url.d.ts"
|
|
602
610
|
],
|
|
603
611
|
"../../node_modules/@types/node/index.d.ts": [
|
|
604
|
-
"../../node_modules/@types/node/
|
|
605
|
-
],
|
|
606
|
-
"../../node_modules/@types/node/inspector.d.ts": [
|
|
607
|
-
"../../node_modules/@types/node/events.d.ts"
|
|
608
|
-
],
|
|
609
|
-
"../../node_modules/@types/node/net.d.ts": [
|
|
610
|
-
"../../node_modules/@types/node/dns.d.ts",
|
|
611
|
-
"../../node_modules/@types/node/events.d.ts",
|
|
612
|
-
"../../node_modules/@types/node/stream.d.ts"
|
|
613
|
-
],
|
|
614
|
-
"../../node_modules/@types/node/perf_hooks.d.ts": [
|
|
615
|
-
"../../node_modules/@types/node/async_hooks.d.ts"
|
|
616
|
-
],
|
|
617
|
-
"../../node_modules/@types/node/process.d.ts": [
|
|
618
|
-
"../../node_modules/@types/node/tty.d.ts"
|
|
619
|
-
],
|
|
620
|
-
"../../node_modules/@types/node/readline.d.ts": [
|
|
621
|
-
"../../node_modules/@types/node/events.d.ts",
|
|
622
|
-
"../../node_modules/@types/node/stream.d.ts"
|
|
623
|
-
],
|
|
624
|
-
"../../node_modules/@types/node/repl.d.ts": [
|
|
625
|
-
"../../node_modules/@types/node/readline.d.ts",
|
|
626
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
627
|
-
"../../node_modules/@types/node/vm.d.ts"
|
|
628
|
-
],
|
|
629
|
-
"../../node_modules/@types/node/stream.d.ts": [
|
|
630
|
-
"../../node_modules/@types/node/events.d.ts"
|
|
631
|
-
],
|
|
632
|
-
"../../node_modules/@types/node/tls.d.ts": [
|
|
633
|
-
"../../node_modules/@types/node/crypto.d.ts",
|
|
634
|
-
"../../node_modules/@types/node/dns.d.ts",
|
|
635
|
-
"../../node_modules/@types/node/net.d.ts",
|
|
636
|
-
"../../node_modules/@types/node/stream.d.ts"
|
|
637
|
-
],
|
|
638
|
-
"../../node_modules/@types/node/ts3.3/base.d.ts": [
|
|
612
|
+
"../../node_modules/@types/node/assert.d.ts",
|
|
639
613
|
"../../node_modules/@types/node/async_hooks.d.ts",
|
|
640
614
|
"../../node_modules/@types/node/buffer.d.ts",
|
|
641
615
|
"../../node_modules/@types/node/child_process.d.ts",
|
|
@@ -649,6 +623,7 @@
|
|
|
649
623
|
"../../node_modules/@types/node/events.d.ts",
|
|
650
624
|
"../../node_modules/@types/node/fs.d.ts",
|
|
651
625
|
"../../node_modules/@types/node/globals.d.ts",
|
|
626
|
+
"../../node_modules/@types/node/globals.global.d.ts",
|
|
652
627
|
"../../node_modules/@types/node/http.d.ts",
|
|
653
628
|
"../../node_modules/@types/node/http2.d.ts",
|
|
654
629
|
"../../node_modules/@types/node/https.d.ts",
|
|
@@ -673,13 +648,38 @@
|
|
|
673
648
|
"../../node_modules/@types/node/util.d.ts",
|
|
674
649
|
"../../node_modules/@types/node/v8.d.ts",
|
|
675
650
|
"../../node_modules/@types/node/vm.d.ts",
|
|
651
|
+
"../../node_modules/@types/node/wasi.d.ts",
|
|
676
652
|
"../../node_modules/@types/node/worker_threads.d.ts",
|
|
677
653
|
"../../node_modules/@types/node/zlib.d.ts"
|
|
678
654
|
],
|
|
679
|
-
"../../node_modules/@types/node/
|
|
680
|
-
"../../node_modules/@types/node/
|
|
681
|
-
|
|
682
|
-
|
|
655
|
+
"../../node_modules/@types/node/inspector.d.ts": [
|
|
656
|
+
"../../node_modules/@types/node/events.d.ts"
|
|
657
|
+
],
|
|
658
|
+
"../../node_modules/@types/node/net.d.ts": [
|
|
659
|
+
"../../node_modules/@types/node/dns.d.ts",
|
|
660
|
+
"../../node_modules/@types/node/events.d.ts",
|
|
661
|
+
"../../node_modules/@types/node/stream.d.ts"
|
|
662
|
+
],
|
|
663
|
+
"../../node_modules/@types/node/perf_hooks.d.ts": [
|
|
664
|
+
"../../node_modules/@types/node/async_hooks.d.ts"
|
|
665
|
+
],
|
|
666
|
+
"../../node_modules/@types/node/process.d.ts": [
|
|
667
|
+
"../../node_modules/@types/node/tty.d.ts"
|
|
668
|
+
],
|
|
669
|
+
"../../node_modules/@types/node/readline.d.ts": [
|
|
670
|
+
"../../node_modules/@types/node/events.d.ts"
|
|
671
|
+
],
|
|
672
|
+
"../../node_modules/@types/node/repl.d.ts": [
|
|
673
|
+
"../../node_modules/@types/node/readline.d.ts",
|
|
674
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
675
|
+
"../../node_modules/@types/node/vm.d.ts"
|
|
676
|
+
],
|
|
677
|
+
"../../node_modules/@types/node/stream.d.ts": [
|
|
678
|
+
"../../node_modules/@types/node/events.d.ts"
|
|
679
|
+
],
|
|
680
|
+
"../../node_modules/@types/node/tls.d.ts": [
|
|
681
|
+
"../../node_modules/@types/node/net.d.ts",
|
|
682
|
+
"../../node_modules/@types/node/stream.d.ts"
|
|
683
683
|
],
|
|
684
684
|
"../../node_modules/@types/node/tty.d.ts": [
|
|
685
685
|
"../../node_modules/@types/node/net.d.ts"
|
|
@@ -692,6 +692,7 @@
|
|
|
692
692
|
],
|
|
693
693
|
"../../node_modules/@types/node/worker_threads.d.ts": [
|
|
694
694
|
"../../node_modules/@types/node/events.d.ts",
|
|
695
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
695
696
|
"../../node_modules/@types/node/stream.d.ts",
|
|
696
697
|
"../../node_modules/@types/node/vm.d.ts"
|
|
697
698
|
],
|
|
@@ -723,6 +724,11 @@
|
|
|
723
724
|
"../../node_modules/pretty-format/build/index.d.ts": [
|
|
724
725
|
"../../node_modules/pretty-format/build/types.d.ts"
|
|
725
726
|
],
|
|
727
|
+
"./src/__test__/invocationError.test.ts": [
|
|
728
|
+
"./src/invocationError.ts",
|
|
729
|
+
"./src/invocationErrorCode.ts",
|
|
730
|
+
"./src/retryOptions.ts"
|
|
731
|
+
],
|
|
726
732
|
"./src/__test__/jobProgress.test.ts": [
|
|
727
733
|
"./src/__test__/utils.ts",
|
|
728
734
|
"./src/errors.ts",
|
|
@@ -737,6 +743,9 @@
|
|
|
737
743
|
"./src/__test__/queueResponse.test.ts": [
|
|
738
744
|
"./src/queueResponse.ts"
|
|
739
745
|
],
|
|
746
|
+
"./src/__test__/retryOptions.test.ts": [
|
|
747
|
+
"./src/retryOptions.ts"
|
|
748
|
+
],
|
|
740
749
|
"./src/__test__/utils.ts": [
|
|
741
750
|
"./src/types.ts"
|
|
742
751
|
],
|
|
@@ -745,9 +754,16 @@
|
|
|
745
754
|
],
|
|
746
755
|
"./src/index.ts": [
|
|
747
756
|
"./src/errors.ts",
|
|
757
|
+
"./src/invocationError.ts",
|
|
758
|
+
"./src/invocationErrorCode.ts",
|
|
748
759
|
"./src/jobProgress.ts",
|
|
749
760
|
"./src/queue.ts",
|
|
750
|
-
"./src/queueResponse.ts"
|
|
761
|
+
"./src/queueResponse.ts",
|
|
762
|
+
"./src/retryOptions.ts"
|
|
763
|
+
],
|
|
764
|
+
"./src/invocationError.ts": [
|
|
765
|
+
"./src/queueResponse.ts",
|
|
766
|
+
"./src/retryOptions.ts"
|
|
751
767
|
],
|
|
752
768
|
"./src/jobProgress.ts": [
|
|
753
769
|
"./src/queries.ts",
|
|
@@ -764,6 +780,9 @@
|
|
|
764
780
|
"./src/types.ts",
|
|
765
781
|
"./src/validators.ts"
|
|
766
782
|
],
|
|
783
|
+
"./src/retryOptions.ts": [
|
|
784
|
+
"./src/invocationErrorCode.ts"
|
|
785
|
+
],
|
|
767
786
|
"./src/types.ts": [
|
|
768
787
|
"../../node_modules/@types/node-fetch/index.d.ts"
|
|
769
788
|
],
|
|
@@ -785,10 +804,6 @@
|
|
|
785
804
|
"../../node_modules/@types/node/url.d.ts",
|
|
786
805
|
"../../node_modules/form-data/index.d.ts"
|
|
787
806
|
],
|
|
788
|
-
"../../node_modules/@types/node/base.d.ts": [
|
|
789
|
-
"../../node_modules/@types/node/assert.d.ts",
|
|
790
|
-
"../../node_modules/@types/node/ts3.6/base.d.ts"
|
|
791
|
-
],
|
|
792
807
|
"../../node_modules/@types/node/child_process.d.ts": [
|
|
793
808
|
"../../node_modules/@types/node/events.d.ts",
|
|
794
809
|
"../../node_modules/@types/node/net.d.ts",
|
|
@@ -810,13 +825,15 @@
|
|
|
810
825
|
"../../node_modules/@types/node/domain.d.ts": [
|
|
811
826
|
"../../node_modules/@types/node/events.d.ts"
|
|
812
827
|
],
|
|
828
|
+
"../../node_modules/@types/node/events.d.ts": [
|
|
829
|
+
"../../node_modules/@types/node/events.d.ts"
|
|
830
|
+
],
|
|
813
831
|
"../../node_modules/@types/node/fs.d.ts": [
|
|
814
832
|
"../../node_modules/@types/node/events.d.ts",
|
|
815
833
|
"../../node_modules/@types/node/stream.d.ts",
|
|
816
834
|
"../../node_modules/@types/node/url.d.ts"
|
|
817
835
|
],
|
|
818
836
|
"../../node_modules/@types/node/http.d.ts": [
|
|
819
|
-
"../../node_modules/@types/node/events.d.ts",
|
|
820
837
|
"../../node_modules/@types/node/net.d.ts",
|
|
821
838
|
"../../node_modules/@types/node/stream.d.ts",
|
|
822
839
|
"../../node_modules/@types/node/url.d.ts"
|
|
@@ -831,47 +848,13 @@
|
|
|
831
848
|
"../../node_modules/@types/node/url.d.ts"
|
|
832
849
|
],
|
|
833
850
|
"../../node_modules/@types/node/https.d.ts": [
|
|
834
|
-
"../../node_modules/@types/node/events.d.ts",
|
|
835
851
|
"../../node_modules/@types/node/http.d.ts",
|
|
852
|
+
"../../node_modules/@types/node/stream.d.ts",
|
|
836
853
|
"../../node_modules/@types/node/tls.d.ts",
|
|
837
854
|
"../../node_modules/@types/node/url.d.ts"
|
|
838
855
|
],
|
|
839
856
|
"../../node_modules/@types/node/index.d.ts": [
|
|
840
|
-
"../../node_modules/@types/node/
|
|
841
|
-
],
|
|
842
|
-
"../../node_modules/@types/node/inspector.d.ts": [
|
|
843
|
-
"../../node_modules/@types/node/events.d.ts"
|
|
844
|
-
],
|
|
845
|
-
"../../node_modules/@types/node/net.d.ts": [
|
|
846
|
-
"../../node_modules/@types/node/dns.d.ts",
|
|
847
|
-
"../../node_modules/@types/node/events.d.ts",
|
|
848
|
-
"../../node_modules/@types/node/stream.d.ts"
|
|
849
|
-
],
|
|
850
|
-
"../../node_modules/@types/node/perf_hooks.d.ts": [
|
|
851
|
-
"../../node_modules/@types/node/async_hooks.d.ts"
|
|
852
|
-
],
|
|
853
|
-
"../../node_modules/@types/node/process.d.ts": [
|
|
854
|
-
"../../node_modules/@types/node/tty.d.ts"
|
|
855
|
-
],
|
|
856
|
-
"../../node_modules/@types/node/readline.d.ts": [
|
|
857
|
-
"../../node_modules/@types/node/events.d.ts",
|
|
858
|
-
"../../node_modules/@types/node/stream.d.ts"
|
|
859
|
-
],
|
|
860
|
-
"../../node_modules/@types/node/repl.d.ts": [
|
|
861
|
-
"../../node_modules/@types/node/readline.d.ts",
|
|
862
|
-
"../../node_modules/@types/node/util.d.ts",
|
|
863
|
-
"../../node_modules/@types/node/vm.d.ts"
|
|
864
|
-
],
|
|
865
|
-
"../../node_modules/@types/node/stream.d.ts": [
|
|
866
|
-
"../../node_modules/@types/node/events.d.ts"
|
|
867
|
-
],
|
|
868
|
-
"../../node_modules/@types/node/tls.d.ts": [
|
|
869
|
-
"../../node_modules/@types/node/crypto.d.ts",
|
|
870
|
-
"../../node_modules/@types/node/dns.d.ts",
|
|
871
|
-
"../../node_modules/@types/node/net.d.ts",
|
|
872
|
-
"../../node_modules/@types/node/stream.d.ts"
|
|
873
|
-
],
|
|
874
|
-
"../../node_modules/@types/node/ts3.3/base.d.ts": [
|
|
857
|
+
"../../node_modules/@types/node/assert.d.ts",
|
|
875
858
|
"../../node_modules/@types/node/async_hooks.d.ts",
|
|
876
859
|
"../../node_modules/@types/node/buffer.d.ts",
|
|
877
860
|
"../../node_modules/@types/node/child_process.d.ts",
|
|
@@ -885,6 +868,7 @@
|
|
|
885
868
|
"../../node_modules/@types/node/events.d.ts",
|
|
886
869
|
"../../node_modules/@types/node/fs.d.ts",
|
|
887
870
|
"../../node_modules/@types/node/globals.d.ts",
|
|
871
|
+
"../../node_modules/@types/node/globals.global.d.ts",
|
|
888
872
|
"../../node_modules/@types/node/http.d.ts",
|
|
889
873
|
"../../node_modules/@types/node/http2.d.ts",
|
|
890
874
|
"../../node_modules/@types/node/https.d.ts",
|
|
@@ -909,13 +893,38 @@
|
|
|
909
893
|
"../../node_modules/@types/node/util.d.ts",
|
|
910
894
|
"../../node_modules/@types/node/v8.d.ts",
|
|
911
895
|
"../../node_modules/@types/node/vm.d.ts",
|
|
896
|
+
"../../node_modules/@types/node/wasi.d.ts",
|
|
912
897
|
"../../node_modules/@types/node/worker_threads.d.ts",
|
|
913
898
|
"../../node_modules/@types/node/zlib.d.ts"
|
|
914
899
|
],
|
|
915
|
-
"../../node_modules/@types/node/
|
|
916
|
-
"../../node_modules/@types/node/
|
|
917
|
-
|
|
918
|
-
|
|
900
|
+
"../../node_modules/@types/node/inspector.d.ts": [
|
|
901
|
+
"../../node_modules/@types/node/events.d.ts"
|
|
902
|
+
],
|
|
903
|
+
"../../node_modules/@types/node/net.d.ts": [
|
|
904
|
+
"../../node_modules/@types/node/dns.d.ts",
|
|
905
|
+
"../../node_modules/@types/node/events.d.ts",
|
|
906
|
+
"../../node_modules/@types/node/stream.d.ts"
|
|
907
|
+
],
|
|
908
|
+
"../../node_modules/@types/node/perf_hooks.d.ts": [
|
|
909
|
+
"../../node_modules/@types/node/async_hooks.d.ts"
|
|
910
|
+
],
|
|
911
|
+
"../../node_modules/@types/node/process.d.ts": [
|
|
912
|
+
"../../node_modules/@types/node/tty.d.ts"
|
|
913
|
+
],
|
|
914
|
+
"../../node_modules/@types/node/readline.d.ts": [
|
|
915
|
+
"../../node_modules/@types/node/events.d.ts"
|
|
916
|
+
],
|
|
917
|
+
"../../node_modules/@types/node/repl.d.ts": [
|
|
918
|
+
"../../node_modules/@types/node/readline.d.ts",
|
|
919
|
+
"../../node_modules/@types/node/util.d.ts",
|
|
920
|
+
"../../node_modules/@types/node/vm.d.ts"
|
|
921
|
+
],
|
|
922
|
+
"../../node_modules/@types/node/stream.d.ts": [
|
|
923
|
+
"../../node_modules/@types/node/events.d.ts"
|
|
924
|
+
],
|
|
925
|
+
"../../node_modules/@types/node/tls.d.ts": [
|
|
926
|
+
"../../node_modules/@types/node/net.d.ts",
|
|
927
|
+
"../../node_modules/@types/node/stream.d.ts"
|
|
919
928
|
],
|
|
920
929
|
"../../node_modules/@types/node/tty.d.ts": [
|
|
921
930
|
"../../node_modules/@types/node/net.d.ts"
|
|
@@ -928,6 +937,7 @@
|
|
|
928
937
|
],
|
|
929
938
|
"../../node_modules/@types/node/worker_threads.d.ts": [
|
|
930
939
|
"../../node_modules/@types/node/events.d.ts",
|
|
940
|
+
"../../node_modules/@types/node/fs.d.ts",
|
|
931
941
|
"../../node_modules/@types/node/stream.d.ts",
|
|
932
942
|
"../../node_modules/@types/node/vm.d.ts"
|
|
933
943
|
],
|
|
@@ -967,9 +977,16 @@
|
|
|
967
977
|
],
|
|
968
978
|
"./src/index.ts": [
|
|
969
979
|
"./src/errors.ts",
|
|
980
|
+
"./src/invocationError.ts",
|
|
981
|
+
"./src/invocationErrorCode.ts",
|
|
970
982
|
"./src/jobProgress.ts",
|
|
971
983
|
"./src/queue.ts",
|
|
972
|
-
"./src/queueResponse.ts"
|
|
984
|
+
"./src/queueResponse.ts",
|
|
985
|
+
"./src/retryOptions.ts"
|
|
986
|
+
],
|
|
987
|
+
"./src/invocationError.ts": [
|
|
988
|
+
"./src/queueResponse.ts",
|
|
989
|
+
"./src/retryOptions.ts"
|
|
973
990
|
],
|
|
974
991
|
"./src/jobProgress.ts": [
|
|
975
992
|
"./src/types.ts"
|
|
@@ -981,6 +998,9 @@
|
|
|
981
998
|
"./src/jobProgress.ts",
|
|
982
999
|
"./src/types.ts"
|
|
983
1000
|
],
|
|
1001
|
+
"./src/retryOptions.ts": [
|
|
1002
|
+
"./src/invocationErrorCode.ts"
|
|
1003
|
+
],
|
|
984
1004
|
"./src/types.ts": [
|
|
985
1005
|
"../../node_modules/@types/node-fetch/index.d.ts"
|
|
986
1006
|
],
|
|
@@ -995,7 +1015,6 @@
|
|
|
995
1015
|
"../../node_modules/@types/node-fetch/index.d.ts",
|
|
996
1016
|
"../../node_modules/@types/node/assert.d.ts",
|
|
997
1017
|
"../../node_modules/@types/node/async_hooks.d.ts",
|
|
998
|
-
"../../node_modules/@types/node/base.d.ts",
|
|
999
1018
|
"../../node_modules/@types/node/buffer.d.ts",
|
|
1000
1019
|
"../../node_modules/@types/node/child_process.d.ts",
|
|
1001
1020
|
"../../node_modules/@types/node/cluster.d.ts",
|
|
@@ -1029,8 +1048,6 @@
|
|
|
1029
1048
|
"../../node_modules/@types/node/timers.d.ts",
|
|
1030
1049
|
"../../node_modules/@types/node/tls.d.ts",
|
|
1031
1050
|
"../../node_modules/@types/node/trace_events.d.ts",
|
|
1032
|
-
"../../node_modules/@types/node/ts3.3/base.d.ts",
|
|
1033
|
-
"../../node_modules/@types/node/ts3.6/base.d.ts",
|
|
1034
1051
|
"../../node_modules/@types/node/tty.d.ts",
|
|
1035
1052
|
"../../node_modules/@types/node/url.d.ts",
|
|
1036
1053
|
"../../node_modules/@types/node/util.d.ts",
|
|
@@ -1077,20 +1094,25 @@
|
|
|
1077
1094
|
"../../node_modules/typescript/lib/lib.es2020.bigint.d.ts",
|
|
1078
1095
|
"../../node_modules/typescript/lib/lib.es5.d.ts",
|
|
1079
1096
|
"../../node_modules/typescript/lib/lib.esnext.intl.d.ts",
|
|
1097
|
+
"./src/__test__/invocationError.test.ts",
|
|
1080
1098
|
"./src/__test__/jobProgress.test.ts",
|
|
1081
1099
|
"./src/__test__/queue.test.ts",
|
|
1082
1100
|
"./src/__test__/queueResponse.test.ts",
|
|
1101
|
+
"./src/__test__/retryOptions.test.ts",
|
|
1083
1102
|
"./src/__test__/utils.ts",
|
|
1084
1103
|
"./src/errors.ts",
|
|
1085
1104
|
"./src/index.ts",
|
|
1105
|
+
"./src/invocationError.ts",
|
|
1106
|
+
"./src/invocationErrorCode.ts",
|
|
1086
1107
|
"./src/jobProgress.ts",
|
|
1087
1108
|
"./src/queries.ts",
|
|
1088
1109
|
"./src/queue.ts",
|
|
1089
1110
|
"./src/queueResponse.ts",
|
|
1111
|
+
"./src/retryOptions.ts",
|
|
1090
1112
|
"./src/text.ts",
|
|
1091
1113
|
"./src/types.ts",
|
|
1092
1114
|
"./src/validators.ts"
|
|
1093
1115
|
]
|
|
1094
1116
|
},
|
|
1095
|
-
"version": "3.9.
|
|
1117
|
+
"version": "3.9.10"
|
|
1096
1118
|
}
|