@digital8/security-registers-backend-ts-sdk 0.0.839 → 0.0.840
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/README.md +2 -2
- package/dist/models/LicencesListAllRequest.d.ts +6 -0
- package/dist/models/LicencesListAllRequest.js +2 -0
- package/dist/models/LicencesListRequest.d.ts +6 -0
- package/dist/models/LicencesListRequest.js +2 -0
- package/package.json +1 -1
- package/src/models/LicencesListAllRequest.ts +8 -0
- package/src/models/LicencesListRequest.ts +8 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @digital8/security-registers-backend-ts-sdk@0.0.
|
|
1
|
+
## @digital8/security-registers-backend-ts-sdk@0.0.840
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @digital8/security-registers-backend-ts-sdk@0.0.
|
|
39
|
+
npm install @digital8/security-registers-backend-ts-sdk@0.0.840 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -69,6 +69,12 @@ export interface LicencesListAllRequest {
|
|
|
69
69
|
* @memberof LicencesListAllRequest
|
|
70
70
|
*/
|
|
71
71
|
hasMutualRecognitionStatus?: Array<string>;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {boolean}
|
|
75
|
+
* @memberof LicencesListAllRequest
|
|
76
|
+
*/
|
|
77
|
+
currentOnly?: boolean;
|
|
72
78
|
}
|
|
73
79
|
/**
|
|
74
80
|
* @export
|
|
@@ -63,6 +63,7 @@ function LicencesListAllRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
63
63
|
'state': json['state'] == null ? undefined : json['state'],
|
|
64
64
|
'mutualRecognitionStatus': json['mutual_recognition_status'] == null ? undefined : json['mutual_recognition_status'],
|
|
65
65
|
'hasMutualRecognitionStatus': json['has_mutual_recognition_status'] == null ? undefined : json['has_mutual_recognition_status'],
|
|
66
|
+
'currentOnly': json['current_only'] == null ? undefined : json['current_only'],
|
|
66
67
|
};
|
|
67
68
|
}
|
|
68
69
|
function LicencesListAllRequestToJSON(json) {
|
|
@@ -83,5 +84,6 @@ function LicencesListAllRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
|
83
84
|
'state': value['state'],
|
|
84
85
|
'mutual_recognition_status': value['mutualRecognitionStatus'],
|
|
85
86
|
'has_mutual_recognition_status': value['hasMutualRecognitionStatus'],
|
|
87
|
+
'current_only': value['currentOnly'],
|
|
86
88
|
};
|
|
87
89
|
}
|
|
@@ -67,6 +67,7 @@ function LicencesListRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
67
67
|
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
68
68
|
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
69
69
|
'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
|
|
70
|
+
'currentOnly': json['current_only'] == null ? undefined : json['current_only'],
|
|
70
71
|
};
|
|
71
72
|
}
|
|
72
73
|
function LicencesListRequestToJSON(json) {
|
|
@@ -91,5 +92,6 @@ function LicencesListRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
|
91
92
|
'related_id': value['relatedId'],
|
|
92
93
|
'related_type': value['relatedType'],
|
|
93
94
|
'includes_relations': value['includesRelations'],
|
|
95
|
+
'current_only': value['currentOnly'],
|
|
94
96
|
};
|
|
95
97
|
}
|
package/package.json
CHANGED
|
@@ -73,6 +73,12 @@ export interface LicencesListAllRequest {
|
|
|
73
73
|
* @memberof LicencesListAllRequest
|
|
74
74
|
*/
|
|
75
75
|
hasMutualRecognitionStatus?: Array<string>;
|
|
76
|
+
/**
|
|
77
|
+
*
|
|
78
|
+
* @type {boolean}
|
|
79
|
+
* @memberof LicencesListAllRequest
|
|
80
|
+
*/
|
|
81
|
+
currentOnly?: boolean;
|
|
76
82
|
}
|
|
77
83
|
|
|
78
84
|
|
|
@@ -130,6 +136,7 @@ export function LicencesListAllRequestFromJSONTyped(json: any, ignoreDiscriminat
|
|
|
130
136
|
'state': json['state'] == null ? undefined : json['state'],
|
|
131
137
|
'mutualRecognitionStatus': json['mutual_recognition_status'] == null ? undefined : json['mutual_recognition_status'],
|
|
132
138
|
'hasMutualRecognitionStatus': json['has_mutual_recognition_status'] == null ? undefined : json['has_mutual_recognition_status'],
|
|
139
|
+
'currentOnly': json['current_only'] == null ? undefined : json['current_only'],
|
|
133
140
|
};
|
|
134
141
|
}
|
|
135
142
|
|
|
@@ -153,6 +160,7 @@ export function LicencesListAllRequestToJSONTyped(value?: LicencesListAllRequest
|
|
|
153
160
|
'state': value['state'],
|
|
154
161
|
'mutual_recognition_status': value['mutualRecognitionStatus'],
|
|
155
162
|
'has_mutual_recognition_status': value['hasMutualRecognitionStatus'],
|
|
163
|
+
'current_only': value['currentOnly'],
|
|
156
164
|
};
|
|
157
165
|
}
|
|
158
166
|
|
|
@@ -97,6 +97,12 @@ export interface LicencesListRequest {
|
|
|
97
97
|
* @memberof LicencesListRequest
|
|
98
98
|
*/
|
|
99
99
|
includesRelations?: boolean;
|
|
100
|
+
/**
|
|
101
|
+
*
|
|
102
|
+
* @type {boolean}
|
|
103
|
+
* @memberof LicencesListRequest
|
|
104
|
+
*/
|
|
105
|
+
currentOnly?: boolean;
|
|
100
106
|
}
|
|
101
107
|
|
|
102
108
|
|
|
@@ -158,6 +164,7 @@ export function LicencesListRequestFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
158
164
|
'relatedId': json['related_id'] == null ? undefined : json['related_id'],
|
|
159
165
|
'relatedType': json['related_type'] == null ? undefined : json['related_type'],
|
|
160
166
|
'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
|
|
167
|
+
'currentOnly': json['current_only'] == null ? undefined : json['current_only'],
|
|
161
168
|
};
|
|
162
169
|
}
|
|
163
170
|
|
|
@@ -185,6 +192,7 @@ export function LicencesListRequestToJSONTyped(value?: LicencesListRequest | nul
|
|
|
185
192
|
'related_id': value['relatedId'],
|
|
186
193
|
'related_type': value['relatedType'],
|
|
187
194
|
'includes_relations': value['includesRelations'],
|
|
195
|
+
'current_only': value['currentOnly'],
|
|
188
196
|
};
|
|
189
197
|
}
|
|
190
198
|
|