@dynamic-labs/sdk-api 0.0.183 → 0.0.184
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,13 +26,13 @@ export interface OrganizationRequest {
|
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof OrganizationRequest
|
|
28
28
|
*/
|
|
29
|
-
description
|
|
29
|
+
description?: string;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof OrganizationRequest
|
|
34
34
|
*/
|
|
35
|
-
websiteUrl
|
|
35
|
+
websiteUrl?: string;
|
|
36
36
|
}
|
|
37
37
|
export declare function OrganizationRequestFromJSON(json: any): OrganizationRequest;
|
|
38
38
|
export declare function OrganizationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationRequest;
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.OrganizationRequestToJSON = exports.OrganizationRequestFromJSONTyped = exports.OrganizationRequestFromJSON = void 0;
|
|
17
|
+
const runtime_1 = require("../runtime");
|
|
17
18
|
function OrganizationRequestFromJSON(json) {
|
|
18
19
|
return OrganizationRequestFromJSONTyped(json, false);
|
|
19
20
|
}
|
|
@@ -24,8 +25,8 @@ function OrganizationRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
24
25
|
}
|
|
25
26
|
return {
|
|
26
27
|
'name': json['name'],
|
|
27
|
-
'description': json['description'],
|
|
28
|
-
'websiteUrl': json['websiteUrl'],
|
|
28
|
+
'description': !(0, runtime_1.exists)(json, 'description') ? undefined : json['description'],
|
|
29
|
+
'websiteUrl': !(0, runtime_1.exists)(json, 'websiteUrl') ? undefined : json['websiteUrl'],
|
|
29
30
|
};
|
|
30
31
|
}
|
|
31
32
|
exports.OrganizationRequestFromJSONTyped = OrganizationRequestFromJSONTyped;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OrganizationRequest.js","sourceRoot":"","sources":["../../../../../libs/sdk-api/src/models/OrganizationRequest.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;
|
|
1
|
+
{"version":3,"file":"OrganizationRequest.js","sourceRoot":"","sources":["../../../../../libs/sdk-api/src/models/OrganizationRequest.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAEH,wCAA+C;AA2B/C,SAAgB,2BAA2B,CAAC,IAAS;IACjD,OAAO,gCAAgC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACzD,CAAC;AAFD,kEAEC;AAED,SAAgB,gCAAgC,CAAC,IAAS,EAAE,mBAA4B;IACpF,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE;QACzC,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;QACpB,aAAa,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,aAAa,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC;QAC7E,YAAY,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC;KAC7E,CAAC;AACN,CAAC;AAVD,4EAUC;AAED,SAAgB,yBAAyB,CAAC,KAAkC;IACxE,IAAI,KAAK,KAAK,SAAS,EAAE;QACrB,OAAO,SAAS,CAAC;KACpB;IACD,IAAI,KAAK,KAAK,IAAI,EAAE;QAChB,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,MAAM,EAAE,KAAK,CAAC,IAAI;QAClB,aAAa,EAAE,KAAK,CAAC,WAAW;QAChC,YAAY,EAAE,KAAK,CAAC,UAAU;KACjC,CAAC;AACN,CAAC;AAbD,8DAaC"}
|