@dereekb/nestjs 12.3.5 → 12.3.7
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/mailgun/package.json +1 -1
- package/openai/package.json +1 -1
- package/package.json +1 -1
- package/stripe/package.json +1 -1
- package/typeform/LICENSE +21 -0
- package/typeform/package.json +9 -0
- package/typeform/src/lib/typeform.type.d.ts +9 -8
- package/typeform/src/lib/webhook/index.d.ts +1 -0
- package/typeform/src/lib/webhook/index.js +1 -0
- package/typeform/src/lib/webhook/index.js.map +1 -1
- package/vapiai/package.json +1 -1
- package/typeform/jest.config.d.ts +0 -0
- package/typeform/jest.config.js +0 -10
- package/typeform/jest.config.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [12.3.7](https://github.com/dereekb/dbx-components/compare/v12.3.6-dev...v12.3.7) (2025-08-14)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## [12.3.6](https://github.com/dereekb/dbx-components/compare/v12.3.5-dev...v12.3.6) (2025-08-13)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
5
13
|
## [12.3.5](https://github.com/dereekb/dbx-components/compare/v12.3.4-dev...v12.3.5) (2025-08-12)
|
|
6
14
|
|
|
7
15
|
|
package/mailgun/package.json
CHANGED
package/openai/package.json
CHANGED
package/package.json
CHANGED
package/stripe/package.json
CHANGED
package/typeform/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Hapier Creative LLC.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -35,15 +35,16 @@ export type TypeformFormName = string;
|
|
|
35
35
|
*/
|
|
36
36
|
export type TypeformFormResponseToken = string;
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* A record containing hidden data that was added to the form response.
|
|
39
|
+
*
|
|
40
|
+
* The data differs depending on the form's configuration.
|
|
41
|
+
*
|
|
42
|
+
* The type has utm fields added for convenience.
|
|
39
43
|
*/
|
|
40
|
-
export interface TypeformFormHiddenMetadata {
|
|
41
|
-
readonly
|
|
42
|
-
readonly
|
|
43
|
-
readonly
|
|
44
|
-
readonly utm_campaign: string;
|
|
45
|
-
readonly utm_medium: string;
|
|
46
|
-
readonly utm_source: string;
|
|
44
|
+
export interface TypeformFormHiddenMetadata extends Partial<Record<string, any>> {
|
|
45
|
+
readonly utm_campaign?: string;
|
|
46
|
+
readonly utm_medium?: string;
|
|
47
|
+
readonly utm_source?: string;
|
|
47
48
|
}
|
|
48
49
|
export interface TypeformFormResponseDefinition extends MaybeSo<TypeformResponse['definition']> {
|
|
49
50
|
readonly id: TypeformFormId;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./webhook.typeform"), exports);
|
|
4
5
|
tslib_1.__exportStar(require("./webhook.typeform.type"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./webhook.typeform.config"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./webhook.typeform.controller"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../packages/nestjs/typeform/src/lib/webhook/index.ts"],"names":[],"mappings":";;;AAAA,kEAAwC;AACxC,oEAA0C;AAC1C,wEAA8C;AAC9C,oEAA0C;AAC1C,qEAA2C;AAC3C,oEAA0C"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../packages/nestjs/typeform/src/lib/webhook/index.ts"],"names":[],"mappings":";;;AAAA,6DAAmC;AACnC,kEAAwC;AACxC,oEAA0C;AAC1C,wEAA8C;AAC9C,oEAA0C;AAC1C,qEAA2C;AAC3C,oEAA0C"}
|
package/vapiai/package.json
CHANGED
|
File without changes
|
package/typeform/jest.config.js
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
global.appTestType = 'nestjs';
|
|
4
|
-
global.testFolderRootPath = '<rootDir>/../../..';
|
|
5
|
-
module.exports = {
|
|
6
|
-
displayName: 'nestjs-typeform',
|
|
7
|
-
preset: '../../../jest.preset.ts',
|
|
8
|
-
coverageDirectory: '../../../coverage/packages/nestjs/typeform'
|
|
9
|
-
};
|
|
10
|
-
//# sourceMappingURL=jest.config.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"jest.config.js","sourceRoot":"","sources":["../../../../packages/nestjs/typeform/jest.config.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACnB,MAAc,CAAC,WAAW,GAAG,QAAQ,CAAC;AACtC,MAAc,CAAC,kBAAkB,GAAG,oBAAoB,CAAC;AAE1D,MAAM,CAAC,OAAO,GAAG;IACf,WAAW,EAAE,iBAAiB;IAC9B,MAAM,EAAE,yBAAyB;IACjC,iBAAiB,EAAE,4CAA4C;CAChE,CAAC"}
|