@puzzlin/models 0.7.0 → 0.7.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/dist/auth/index.d.ts +0 -1
- package/dist/auth/index.d.ts.map +1 -1
- package/dist/auth/index.js +0 -1
- package/dist/auth/index.js.map +1 -1
- package/dist/auth/inputs/send-link-to-update-password.input.d.ts +1 -0
- package/dist/auth/inputs/send-link-to-update-password.input.d.ts.map +1 -1
- package/dist/auth/inputs/send-link-to-update-password.input.js +7 -2
- package/dist/auth/inputs/send-link-to-update-password.input.js.map +1 -1
- package/dist/eeg-recordings/inputs/send-eeg-recording-claim-request.input.d.ts +1 -0
- package/dist/eeg-recordings/inputs/send-eeg-recording-claim-request.input.d.ts.map +1 -1
- package/dist/eeg-recordings/inputs/send-eeg-recording-claim-request.input.js +7 -2
- package/dist/eeg-recordings/inputs/send-eeg-recording-claim-request.input.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -5
- package/dist/auth/utils/constants.d.ts +0 -3
- package/dist/auth/utils/constants.d.ts.map +0 -1
- package/dist/auth/utils/constants.js +0 -6
- package/dist/auth/utils/constants.js.map +0 -1
- package/dist/auth/utils/index.d.ts +0 -2
- package/dist/auth/utils/index.d.ts.map +0 -1
- package/dist/auth/utils/index.js +0 -18
- package/dist/auth/utils/index.js.map +0 -1
package/dist/auth/index.d.ts
CHANGED
package/dist/auth/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/auth/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/auth/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC"}
|
package/dist/auth/index.js
CHANGED
|
@@ -18,5 +18,4 @@ __exportStar(require("./inputs"), exports);
|
|
|
18
18
|
__exportStar(require("./objects"), exports);
|
|
19
19
|
__exportStar(require("./payloads"), exports);
|
|
20
20
|
__exportStar(require("./types"), exports);
|
|
21
|
-
__exportStar(require("./utils"), exports);
|
|
22
21
|
//# sourceMappingURL=index.js.map
|
package/dist/auth/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/auth/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,4CAA0B;AAC1B,6CAA2B;AAC3B,0CAAwB
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/auth/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,4CAA0B;AAC1B,6CAA2B;AAC3B,0CAAwB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"send-link-to-update-password.input.d.ts","sourceRoot":"","sources":["../../../src/auth/inputs/send-link-to-update-password.input.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"send-link-to-update-password.input.d.ts","sourceRoot":"","sources":["../../../src/auth/inputs/send-link-to-update-password.input.ts"],"names":[],"mappings":"AAGA,qBACa,6BAA6B;IAExC,KAAK,EAAE,MAAM,CAAC;IAKd,WAAW,EAAE,GAAG,CAAC;IAKjB,eAAe,EAAE,MAAM,CAAC;CACzB"}
|
|
@@ -10,7 +10,6 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.SendLinkToUpdatePasswordInput = void 0;
|
|
13
|
-
const utils_1 = require("../utils");
|
|
14
13
|
const graphql_1 = require("@nestjs/graphql");
|
|
15
14
|
const graphql_scalars_1 = require("graphql-scalars");
|
|
16
15
|
let SendLinkToUpdatePasswordInput = exports.SendLinkToUpdatePasswordInput = class SendLinkToUpdatePasswordInput {
|
|
@@ -21,10 +20,16 @@ __decorate([
|
|
|
21
20
|
], SendLinkToUpdatePasswordInput.prototype, "email", void 0);
|
|
22
21
|
__decorate([
|
|
23
22
|
(0, graphql_1.Field)(() => graphql_scalars_1.URLResolver, {
|
|
24
|
-
description:
|
|
23
|
+
description: 'URL to redirect to for updating a user password.',
|
|
25
24
|
}),
|
|
26
25
|
__metadata("design:type", URL)
|
|
27
26
|
], SendLinkToUpdatePasswordInput.prototype, "redirectUrl", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, graphql_1.Field)(() => String, {
|
|
29
|
+
description: 'Query param key to inject a token into.',
|
|
30
|
+
}),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], SendLinkToUpdatePasswordInput.prototype, "tokenQueryParam", void 0);
|
|
28
33
|
exports.SendLinkToUpdatePasswordInput = SendLinkToUpdatePasswordInput = __decorate([
|
|
29
34
|
(0, graphql_1.InputType)()
|
|
30
35
|
], SendLinkToUpdatePasswordInput);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"send-link-to-update-password.input.js","sourceRoot":"","sources":["../../../src/auth/inputs/send-link-to-update-password.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"send-link-to-update-password.input.js","sourceRoot":"","sources":["../../../src/auth/inputs/send-link-to-update-password.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAmD;AACnD,qDAAoE;AAG7D,IAAM,6BAA6B,2CAAnC,MAAM,6BAA6B;CAazC,CAAA;AAXC;IADC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,sCAAoB,CAAC;;4DACpB;AAKd;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,6BAAW,EAAE;QACxB,WAAW,EAAE,kDAAkD;KAChE,CAAC;8BACW,GAAG;kEAAC;AAKjB;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE;QACnB,WAAW,EAAE,yCAAyC;KACvD,CAAC;;sEACsB;wCAZb,6BAA6B;IADzC,IAAA,mBAAS,GAAE;GACC,6BAA6B,CAazC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ClaimEegRecordingInput } from './claim-eeg-recording.input';
|
|
2
2
|
export declare class SendEegRecordingClaimRequestInput extends ClaimEegRecordingInput {
|
|
3
3
|
redirectUrl: URL;
|
|
4
|
+
tokenQueryParam: string;
|
|
4
5
|
}
|
|
5
6
|
//# sourceMappingURL=send-eeg-recording-claim-request.input.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"send-eeg-recording-claim-request.input.d.ts","sourceRoot":"","sources":["../../../src/eeg-recordings/inputs/send-eeg-recording-claim-request.input.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;
|
|
1
|
+
{"version":3,"file":"send-eeg-recording-claim-request.input.d.ts","sourceRoot":"","sources":["../../../src/eeg-recordings/inputs/send-eeg-recording-claim-request.input.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAIrE,qBACa,iCAAkC,SAAQ,sBAAsB;IAI3E,WAAW,EAAE,GAAG,CAAC;IAKjB,eAAe,EAAE,MAAM,CAAC;CACzB"}
|
|
@@ -11,17 +11,22 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.SendEegRecordingClaimRequestInput = void 0;
|
|
13
13
|
const claim_eeg_recording_input_1 = require("./claim-eeg-recording.input");
|
|
14
|
-
const auth_1 = require("../../auth");
|
|
15
14
|
const graphql_1 = require("@nestjs/graphql");
|
|
16
15
|
const graphql_scalars_1 = require("graphql-scalars");
|
|
17
16
|
let SendEegRecordingClaimRequestInput = exports.SendEegRecordingClaimRequestInput = class SendEegRecordingClaimRequestInput extends claim_eeg_recording_input_1.ClaimEegRecordingInput {
|
|
18
17
|
};
|
|
19
18
|
__decorate([
|
|
20
19
|
(0, graphql_1.Field)(() => graphql_scalars_1.URLResolver, {
|
|
21
|
-
description:
|
|
20
|
+
description: 'URL to redirect to for claiming a recording.',
|
|
22
21
|
}),
|
|
23
22
|
__metadata("design:type", URL)
|
|
24
23
|
], SendEegRecordingClaimRequestInput.prototype, "redirectUrl", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, graphql_1.Field)(() => String, {
|
|
26
|
+
description: 'Query param key to inject a token.',
|
|
27
|
+
}),
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], SendEegRecordingClaimRequestInput.prototype, "tokenQueryParam", void 0);
|
|
25
30
|
exports.SendEegRecordingClaimRequestInput = SendEegRecordingClaimRequestInput = __decorate([
|
|
26
31
|
(0, graphql_1.InputType)()
|
|
27
32
|
], SendEegRecordingClaimRequestInput);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"send-eeg-recording-claim-request.input.js","sourceRoot":"","sources":["../../../src/eeg-recordings/inputs/send-eeg-recording-claim-request.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2EAAqE;AACrE,
|
|
1
|
+
{"version":3,"file":"send-eeg-recording-claim-request.input.js","sourceRoot":"","sources":["../../../src/eeg-recordings/inputs/send-eeg-recording-claim-request.input.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2EAAqE;AACrE,6CAAmD;AACnD,qDAA8C;AAGvC,IAAM,iCAAiC,+CAAvC,MAAM,iCAAkC,SAAQ,kDAAsB;CAU5E,CAAA;AANC;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,6BAAW,EAAE;QACxB,WAAW,EAAE,8CAA8C;KAC5D,CAAC;8BACW,GAAG;sEAAC;AAKjB;IAHC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE;QACnB,WAAW,EAAE,oCAAoC;KAClD,CAAC;;0EACsB;4CATb,iCAAiC;IAD7C,IAAA,mBAAS,GAAE;GACC,iCAAiC,CAU7C"}
|