@lcdp/api-react-rest-client 2.6.3-develop.8377349029 → 2.6.3
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/package.json
CHANGED
|
@@ -26,15 +26,8 @@ export interface ThirdPartyLinkCreationParameters {
|
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof ThirdPartyLinkCreationParameters
|
|
28
28
|
*/
|
|
29
|
-
slug:
|
|
29
|
+
slug: string;
|
|
30
30
|
}
|
|
31
31
|
export declare function ThirdPartyLinkCreationParametersFromJSON(json: any): ThirdPartyLinkCreationParameters;
|
|
32
32
|
export declare function ThirdPartyLinkCreationParametersFromJSONTyped(json: any, ignoreDiscriminator: boolean): ThirdPartyLinkCreationParameters;
|
|
33
33
|
export declare function ThirdPartyLinkCreationParametersToJSON(value?: ThirdPartyLinkCreationParameters | null): any;
|
|
34
|
-
/**
|
|
35
|
-
* @export
|
|
36
|
-
* @enum {string}
|
|
37
|
-
*/
|
|
38
|
-
export declare enum ThirdPartyLinkCreationParametersSlugEnum {
|
|
39
|
-
BADGESSTATISTICSDASHBOARD = "BADGES_STATISTICS_DASHBOARD"
|
|
40
|
-
}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.
|
|
16
|
+
exports.ThirdPartyLinkCreationParametersToJSON = exports.ThirdPartyLinkCreationParametersFromJSONTyped = exports.ThirdPartyLinkCreationParametersFromJSON = void 0;
|
|
17
17
|
function ThirdPartyLinkCreationParametersFromJSON(json) {
|
|
18
18
|
return ThirdPartyLinkCreationParametersFromJSONTyped(json, false);
|
|
19
19
|
}
|
|
@@ -41,11 +41,3 @@ function ThirdPartyLinkCreationParametersToJSON(value) {
|
|
|
41
41
|
};
|
|
42
42
|
}
|
|
43
43
|
exports.ThirdPartyLinkCreationParametersToJSON = ThirdPartyLinkCreationParametersToJSON;
|
|
44
|
-
/**
|
|
45
|
-
* @export
|
|
46
|
-
* @enum {string}
|
|
47
|
-
*/
|
|
48
|
-
var ThirdPartyLinkCreationParametersSlugEnum;
|
|
49
|
-
(function (ThirdPartyLinkCreationParametersSlugEnum) {
|
|
50
|
-
ThirdPartyLinkCreationParametersSlugEnum["BADGESSTATISTICSDASHBOARD"] = "BADGES_STATISTICS_DASHBOARD";
|
|
51
|
-
})(ThirdPartyLinkCreationParametersSlugEnum = exports.ThirdPartyLinkCreationParametersSlugEnum || (exports.ThirdPartyLinkCreationParametersSlugEnum = {}));
|