@devcycle/types
Advanced tools
Comparing version 1.0.42 to 1.0.43
{ | ||
"name": "@devcycle/types", | ||
"version": "1.0.42", | ||
"version": "1.0.43", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "type": "commonjs", |
@@ -168,2 +168,5 @@ import { PublicEnvironment, PublicFeature, PublicProject, PublicVariable } from '../../config/configBody'; | ||
} | ||
export declare class DVCOptInUser { | ||
user_id: string; | ||
} | ||
export declare type SDKVariable = PublicVariable & { | ||
@@ -170,0 +173,0 @@ value: VariableValue; |
@@ -27,3 +27,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.DVCClientAPIUser = exports.DVCBucketingUser = exports.DVCAPIUser = exports.SDKTypeValues = void 0; | ||
exports.DVCOptInUser = exports.DVCClientAPIUser = exports.DVCBucketingUser = exports.DVCAPIUser = exports.SDKTypeValues = void 0; | ||
var lodash_1 = require("lodash"); | ||
@@ -324,2 +324,14 @@ var class_validator_1 = require("@nestjs/class-validator"); | ||
exports.DVCClientAPIUser = DVCClientAPIUser; | ||
var DVCOptInUser = /** @class */ (function () { | ||
function DVCOptInUser() { | ||
} | ||
__decorate([ | ||
(0, class_validator_1.IsString)(), | ||
(0, isNotBlank_1.IsNotBlank)(), | ||
(0, class_validator_1.IsNotEmpty)(), | ||
__metadata("design:type", String) | ||
], DVCOptInUser.prototype, "user_id", void 0); | ||
return DVCOptInUser; | ||
}()); | ||
exports.DVCOptInUser = DVCOptInUser; | ||
//# sourceMappingURL=clientSDKAPI.js.map |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
83610
1832