@dynamic-labs/sdk-api 0.0.61 → 0.0.62
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
|
@@ -21,6 +21,12 @@ export interface UnprocessableEntity {
|
|
|
21
21
|
* @memberof UnprocessableEntity
|
|
22
22
|
*/
|
|
23
23
|
error?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UnprocessableEntity
|
|
28
|
+
*/
|
|
29
|
+
code?: string;
|
|
24
30
|
}
|
|
25
31
|
export declare function UnprocessableEntityFromJSON(json: any): UnprocessableEntity;
|
|
26
32
|
export declare function UnprocessableEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnprocessableEntity;
|
|
@@ -25,6 +25,7 @@ function UnprocessableEntityFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
25
25
|
}
|
|
26
26
|
return {
|
|
27
27
|
'error': !(0, runtime_1.exists)(json, 'error') ? undefined : json['error'],
|
|
28
|
+
'code': !(0, runtime_1.exists)(json, 'code') ? undefined : json['code'],
|
|
28
29
|
};
|
|
29
30
|
}
|
|
30
31
|
exports.UnprocessableEntityFromJSONTyped = UnprocessableEntityFromJSONTyped;
|
|
@@ -37,6 +38,7 @@ function UnprocessableEntityToJSON(value) {
|
|
|
37
38
|
}
|
|
38
39
|
return {
|
|
39
40
|
'error': value.error,
|
|
41
|
+
'code': value.code,
|
|
40
42
|
};
|
|
41
43
|
}
|
|
42
44
|
exports.UnprocessableEntityToJSON = UnprocessableEntityToJSON;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UnprocessableEntity.js","sourceRoot":"","sources":["../../../../../libs/sdk-api/src/models/UnprocessableEntity.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAEH,wCAA+C;
|
|
1
|
+
{"version":3,"file":"UnprocessableEntity.js","sourceRoot":"","sources":["../../../../../libs/sdk-api/src/models/UnprocessableEntity.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAEH,wCAA+C;AAqB/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,OAAO,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC;QAC3D,MAAM,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;KAC3D,CAAC;AACN,CAAC;AATD,4EASC;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,OAAO,EAAE,KAAK,CAAC,KAAK;QACpB,MAAM,EAAE,KAAK,CAAC,IAAI;KACrB,CAAC;AACN,CAAC;AAZD,8DAYC"}
|