@managespace/sdk 0.1.38 → 0.1.39
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.
|
@@ -37,7 +37,7 @@ function GetCustomersQueryFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
37
37
|
'sort': json['sort'] == null ? undefined : (0, sort_order_1.SortOrderFromJSON)(json['sort']),
|
|
38
38
|
'id': json['id'] == null ? undefined : (0, plugin_filter_item_1.PluginFilterItemFromJSON)(json['id']),
|
|
39
39
|
'tenantId': json['tenantId'] == null ? undefined : (0, plugin_filter_item_1.PluginFilterItemFromJSON)(json['tenantId']),
|
|
40
|
-
'
|
|
40
|
+
'status': json['status'] == null ? undefined : (0, plugin_filter_item_1.PluginFilterItemFromJSON)(json['status']),
|
|
41
41
|
'name': json['name'] == null ? undefined : (0, plugin_filter_item_1.PluginFilterItemFromJSON)(json['name']),
|
|
42
42
|
'balance': json['balance'] == null ? undefined : (0, plugin_filter_item_1.PluginFilterItemFromJSON)(json['balance']),
|
|
43
43
|
'createdDate': json['createdDate'] == null ? undefined : (0, plugin_filter_item_1.PluginFilterItemFromJSON)(json['createdDate']),
|
|
@@ -57,7 +57,7 @@ function GetCustomersQueryToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
57
57
|
'sort': (0, sort_order_1.SortOrderToJSON)(value['sort']),
|
|
58
58
|
'id': (0, plugin_filter_item_1.PluginFilterItemToJSON)(value['id']),
|
|
59
59
|
'tenantId': (0, plugin_filter_item_1.PluginFilterItemToJSON)(value['tenantId']),
|
|
60
|
-
'
|
|
60
|
+
'status': (0, plugin_filter_item_1.PluginFilterItemToJSON)(value['status']),
|
|
61
61
|
'name': (0, plugin_filter_item_1.PluginFilterItemToJSON)(value['name']),
|
|
62
62
|
'balance': (0, plugin_filter_item_1.PluginFilterItemToJSON)(value['balance']),
|
|
63
63
|
'createdDate': (0, plugin_filter_item_1.PluginFilterItemToJSON)(value['createdDate']),
|
package/package.json
CHANGED
|
@@ -70,7 +70,7 @@ export interface GetCustomersQuery {
|
|
|
70
70
|
* @type {PluginFilterItem}
|
|
71
71
|
* @memberof GetCustomersQuery
|
|
72
72
|
*/
|
|
73
|
-
|
|
73
|
+
status?: PluginFilterItem;
|
|
74
74
|
/**
|
|
75
75
|
* Name value and operator to filter by
|
|
76
76
|
* @type {PluginFilterItem}
|
|
@@ -112,7 +112,7 @@ export function GetCustomersQueryFromJSONTyped(json: any, ignoreDiscriminator: b
|
|
|
112
112
|
'sort': json['sort'] == null ? undefined : SortOrderFromJSON(json['sort']),
|
|
113
113
|
'id': json['id'] == null ? undefined : PluginFilterItemFromJSON(json['id']),
|
|
114
114
|
'tenantId': json['tenantId'] == null ? undefined : PluginFilterItemFromJSON(json['tenantId']),
|
|
115
|
-
'
|
|
115
|
+
'status': json['status'] == null ? undefined : PluginFilterItemFromJSON(json['status']),
|
|
116
116
|
'name': json['name'] == null ? undefined : PluginFilterItemFromJSON(json['name']),
|
|
117
117
|
'balance': json['balance'] == null ? undefined : PluginFilterItemFromJSON(json['balance']),
|
|
118
118
|
'createdDate': json['createdDate'] == null ? undefined : PluginFilterItemFromJSON(json['createdDate']),
|
|
@@ -134,7 +134,7 @@ export function GetCustomersQueryToJSONTyped(value?: GetCustomersQuery | null, i
|
|
|
134
134
|
'sort': SortOrderToJSON(value['sort']),
|
|
135
135
|
'id': PluginFilterItemToJSON(value['id']),
|
|
136
136
|
'tenantId': PluginFilterItemToJSON(value['tenantId']),
|
|
137
|
-
'
|
|
137
|
+
'status': PluginFilterItemToJSON(value['status']),
|
|
138
138
|
'name': PluginFilterItemToJSON(value['name']),
|
|
139
139
|
'balance': PluginFilterItemToJSON(value['balance']),
|
|
140
140
|
'createdDate': PluginFilterItemToJSON(value['createdDate']),
|