@rlvt/entity-manager-openapi-client 1.0.42 → 1.0.45
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/build/api.d.ts +5 -0
- package/build/definitions.d.ts +11 -2
- package/build/definitions.js +11 -2
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -307,6 +307,7 @@ export default class {
|
|
|
307
307
|
utm_campaign?: string | undefined;
|
|
308
308
|
utm_source?: string | undefined;
|
|
309
309
|
utm_medium?: string | undefined;
|
|
310
|
+
utm_term?: string | undefined;
|
|
310
311
|
};
|
|
311
312
|
}[];
|
|
312
313
|
sso?: {
|
|
@@ -597,6 +598,7 @@ export default class {
|
|
|
597
598
|
utm_campaign?: string | undefined;
|
|
598
599
|
utm_source?: string | undefined;
|
|
599
600
|
utm_medium?: string | undefined;
|
|
601
|
+
utm_term?: string | undefined;
|
|
600
602
|
};
|
|
601
603
|
}[];
|
|
602
604
|
sso?: {
|
|
@@ -818,6 +820,7 @@ export default class {
|
|
|
818
820
|
utm_campaign?: string | undefined;
|
|
819
821
|
utm_source?: string | undefined;
|
|
820
822
|
utm_medium?: string | undefined;
|
|
823
|
+
utm_term?: string | undefined;
|
|
821
824
|
};
|
|
822
825
|
}[] | undefined;
|
|
823
826
|
meta?: {
|
|
@@ -902,6 +905,7 @@ export default class {
|
|
|
902
905
|
utm_campaign?: string | undefined;
|
|
903
906
|
utm_source?: string | undefined;
|
|
904
907
|
utm_medium?: string | undefined;
|
|
908
|
+
utm_term?: string | undefined;
|
|
905
909
|
};
|
|
906
910
|
}[];
|
|
907
911
|
sso?: {
|
|
@@ -1698,6 +1702,7 @@ export default class {
|
|
|
1698
1702
|
utm_campaign?: string | undefined;
|
|
1699
1703
|
utm_source?: string | undefined;
|
|
1700
1704
|
utm_medium?: string | undefined;
|
|
1705
|
+
utm_term?: string | undefined;
|
|
1701
1706
|
};
|
|
1702
1707
|
}[];
|
|
1703
1708
|
sso?: {
|
package/build/definitions.d.ts
CHANGED
|
@@ -88,17 +88,18 @@ export declare type CompanyPasswordSecurityPolicy = {
|
|
|
88
88
|
export declare type CompanySecurityPolicy = {
|
|
89
89
|
password: CompanyPasswordSecurityPolicy;
|
|
90
90
|
};
|
|
91
|
-
export declare type
|
|
91
|
+
export declare type _rlvt_u_string_or_undefined_rlvt_m_string_or_undefined_utm_campaign_string_or_undefined_utm_source_string_or_undefined_utm_medium_string_or_undefined_utm_term_string_or_undefined__ = {
|
|
92
92
|
"rlvt-u"?: string;
|
|
93
93
|
"rlvt-m"?: string;
|
|
94
94
|
utm_campaign?: string;
|
|
95
95
|
utm_source?: string;
|
|
96
96
|
utm_medium?: string;
|
|
97
|
+
utm_term?: string;
|
|
97
98
|
};
|
|
98
99
|
export declare type VariableProfile = {
|
|
99
100
|
id: string;
|
|
100
101
|
name: string;
|
|
101
|
-
variables:
|
|
102
|
+
variables: _rlvt_u_string_or_undefined_rlvt_m_string_or_undefined_utm_campaign_string_or_undefined_utm_source_string_or_undefined_utm_medium_string_or_undefined_utm_term_string_or_undefined__;
|
|
102
103
|
};
|
|
103
104
|
export declare type AnyValue = unknown | null;
|
|
104
105
|
export declare type IdpMetadata = {
|
|
@@ -346,4 +347,12 @@ export declare type Partial_Pick_SerializedUser_email_or_companyId_or_roleId_or_
|
|
|
346
347
|
readonly createdAt?: (Date) & readonlyP;
|
|
347
348
|
readonly updatedAt?: (Date) & readonlyP;
|
|
348
349
|
};
|
|
350
|
+
export declare enum Variables {
|
|
351
|
+
"RLVT-U" = "rlvt-u",
|
|
352
|
+
"RLVT-M" = "rlvt-m",
|
|
353
|
+
UTM_CAMPAIGN = "utm_campaign",
|
|
354
|
+
UTM_SOURCE = "utm_source",
|
|
355
|
+
UTM_MEDIUM = "utm_medium",
|
|
356
|
+
UTM_TERM = "utm_term"
|
|
357
|
+
}
|
|
349
358
|
export {};
|
package/build/definitions.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.InvitationState = exports.Providers = void 0;
|
|
5
|
+
exports.Variables = exports.InvitationState = exports.Providers = void 0;
|
|
6
6
|
var Providers;
|
|
7
7
|
(function (Providers) {
|
|
8
8
|
Providers["GOOGLE"] = "google";
|
|
@@ -14,4 +14,13 @@ var InvitationState;
|
|
|
14
14
|
InvitationState["USED"] = "used";
|
|
15
15
|
InvitationState["CANCELED"] = "canceled";
|
|
16
16
|
})(InvitationState = exports.InvitationState || (exports.InvitationState = {}));
|
|
17
|
-
|
|
17
|
+
var Variables;
|
|
18
|
+
(function (Variables) {
|
|
19
|
+
Variables["RLVT-U"] = "rlvt-u";
|
|
20
|
+
Variables["RLVT-M"] = "rlvt-m";
|
|
21
|
+
Variables["UTM_CAMPAIGN"] = "utm_campaign";
|
|
22
|
+
Variables["UTM_SOURCE"] = "utm_source";
|
|
23
|
+
Variables["UTM_MEDIUM"] = "utm_medium";
|
|
24
|
+
Variables["UTM_TERM"] = "utm_term";
|
|
25
|
+
})(Variables = exports.Variables || (exports.Variables = {}));
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBa0NwQixJQUFZLFNBR1g7QUFIRCxXQUFZLFNBQVM7SUFDakIsOEJBQWlCLENBQUE7SUFDakIsZ0NBQW1CLENBQUE7QUFDdkIsQ0FBQyxFQUhXLFNBQVMsR0FBVCxpQkFBUyxLQUFULGlCQUFTLFFBR3BCO0FBd1JELElBQVksZUFJWDtBQUpELFdBQVksZUFBZTtJQUN2QixzQ0FBbUIsQ0FBQTtJQUNuQixnQ0FBYSxDQUFBO0lBQ2Isd0NBQXFCLENBQUE7QUFDekIsQ0FBQyxFQUpXLGVBQWUsR0FBZix1QkFBZSxLQUFmLHVCQUFlLFFBSTFCO0FBK0NELElBQVksU0FPWDtBQVBELFdBQVksU0FBUztJQUNqQiw4QkFBbUIsQ0FBQTtJQUNuQiw4QkFBbUIsQ0FBQTtJQUNuQiwwQ0FBNkIsQ0FBQTtJQUM3QixzQ0FBeUIsQ0FBQTtJQUN6QixzQ0FBeUIsQ0FBQTtJQUN6QixrQ0FBcUIsQ0FBQTtBQUN6QixDQUFDLEVBUFcsU0FBUyxHQUFULGlCQUFTLEtBQVQsaUJBQVMsUUFPcEIifQ==
|
package/package.json
CHANGED