@managespace/sdk 0.1.38 → 0.1.40
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.
|
@@ -47,7 +47,7 @@ export interface GetCustomersQuery {
|
|
|
47
47
|
* @type {PluginFilterItem}
|
|
48
48
|
* @memberof GetCustomersQuery
|
|
49
49
|
*/
|
|
50
|
-
|
|
50
|
+
status?: PluginFilterItem;
|
|
51
51
|
/**
|
|
52
52
|
* Name value and operator to filter by
|
|
53
53
|
* @type {PluginFilterItem}
|
|
@@ -59,13 +59,7 @@ export interface GetCustomersQuery {
|
|
|
59
59
|
* @type {PluginFilterItem}
|
|
60
60
|
* @memberof GetCustomersQuery
|
|
61
61
|
*/
|
|
62
|
-
|
|
63
|
-
/**
|
|
64
|
-
* Balance value and operator to filter by
|
|
65
|
-
* @type {PluginFilterItem}
|
|
66
|
-
* @memberof GetCustomersQuery
|
|
67
|
-
*/
|
|
68
|
-
createdDate?: PluginFilterItem;
|
|
62
|
+
createdAt?: PluginFilterItem;
|
|
69
63
|
}
|
|
70
64
|
/**
|
|
71
65
|
* Check if a given object implements the GetCustomersQuery interface.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-customers-query.d.ts","sourceRoot":"","sources":["../../../src/generated/models/get-customers-query.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAOnE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAO7D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAQ9C;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,WAAW,CAAC,EAAE,mBAAmB,CAAC;IAClC;;;;OAIG;IACH,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB;;;;OAIG;IACH,EAAE,CAAC,EAAE,gBAAgB,CAAC;IACtB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,gBAAgB,CAAC;IAC5B;;;;OAIG;IACH,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B;;;;OAIG;IACH,IAAI,CAAC,EAAE,gBAAgB,CAAC;IACxB;;;;OAIG;IACH,
|
|
1
|
+
{"version":3,"file":"get-customers-query.d.ts","sourceRoot":"","sources":["../../../src/generated/models/get-customers-query.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAOnE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAO7D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAQ9C;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,WAAW,CAAC,EAAE,mBAAmB,CAAC;IAClC;;;;OAIG;IACH,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB;;;;OAIG;IACH,EAAE,CAAC,EAAE,gBAAgB,CAAC;IACtB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,gBAAgB,CAAC;IAC5B;;;;OAIG;IACH,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B;;;;OAIG;IACH,IAAI,CAAC,EAAE,gBAAgB,CAAC;IACxB;;;;OAIG;IACH,SAAS,CAAC,EAAE,gBAAgB,CAAC;CAChC;AAED;;GAEG;AACH,wBAAgB,2BAA2B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,iBAAiB,CAErF;AAED,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,GAAG,GAAG,iBAAiB,CAEtE;AAED,wBAAgB,8BAA8B,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,iBAAiB,CAczG;AAED,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,GAAG,GAAG,iBAAiB,CAEpE;AAED,wBAAgB,4BAA4B,CAAC,KAAK,CAAC,EAAE,iBAAiB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAexH"}
|
|
@@ -37,10 +37,9 @@ 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
|
-
'
|
|
43
|
-
'createdDate': json['createdDate'] == null ? undefined : (0, plugin_filter_item_1.PluginFilterItemFromJSON)(json['createdDate']),
|
|
42
|
+
'createdAt': json['createdAt'] == null ? undefined : (0, plugin_filter_item_1.PluginFilterItemFromJSON)(json['createdAt']),
|
|
44
43
|
};
|
|
45
44
|
}
|
|
46
45
|
exports.GetCustomersQueryFromJSONTyped = GetCustomersQueryFromJSONTyped;
|
|
@@ -57,10 +56,9 @@ function GetCustomersQueryToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
57
56
|
'sort': (0, sort_order_1.SortOrderToJSON)(value['sort']),
|
|
58
57
|
'id': (0, plugin_filter_item_1.PluginFilterItemToJSON)(value['id']),
|
|
59
58
|
'tenantId': (0, plugin_filter_item_1.PluginFilterItemToJSON)(value['tenantId']),
|
|
60
|
-
'
|
|
59
|
+
'status': (0, plugin_filter_item_1.PluginFilterItemToJSON)(value['status']),
|
|
61
60
|
'name': (0, plugin_filter_item_1.PluginFilterItemToJSON)(value['name']),
|
|
62
|
-
'
|
|
63
|
-
'createdDate': (0, plugin_filter_item_1.PluginFilterItemToJSON)(value['createdDate']),
|
|
61
|
+
'createdAt': (0, plugin_filter_item_1.PluginFilterItemToJSON)(value['createdAt']),
|
|
64
62
|
};
|
|
65
63
|
}
|
|
66
64
|
exports.GetCustomersQueryToJSONTyped = GetCustomersQueryToJSONTyped;
|
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}
|
|
@@ -82,13 +82,7 @@ export interface GetCustomersQuery {
|
|
|
82
82
|
* @type {PluginFilterItem}
|
|
83
83
|
* @memberof GetCustomersQuery
|
|
84
84
|
*/
|
|
85
|
-
|
|
86
|
-
/**
|
|
87
|
-
* Balance value and operator to filter by
|
|
88
|
-
* @type {PluginFilterItem}
|
|
89
|
-
* @memberof GetCustomersQuery
|
|
90
|
-
*/
|
|
91
|
-
createdDate?: PluginFilterItem;
|
|
85
|
+
createdAt?: PluginFilterItem;
|
|
92
86
|
}
|
|
93
87
|
|
|
94
88
|
/**
|
|
@@ -112,10 +106,9 @@ export function GetCustomersQueryFromJSONTyped(json: any, ignoreDiscriminator: b
|
|
|
112
106
|
'sort': json['sort'] == null ? undefined : SortOrderFromJSON(json['sort']),
|
|
113
107
|
'id': json['id'] == null ? undefined : PluginFilterItemFromJSON(json['id']),
|
|
114
108
|
'tenantId': json['tenantId'] == null ? undefined : PluginFilterItemFromJSON(json['tenantId']),
|
|
115
|
-
'
|
|
109
|
+
'status': json['status'] == null ? undefined : PluginFilterItemFromJSON(json['status']),
|
|
116
110
|
'name': json['name'] == null ? undefined : PluginFilterItemFromJSON(json['name']),
|
|
117
|
-
'
|
|
118
|
-
'createdDate': json['createdDate'] == null ? undefined : PluginFilterItemFromJSON(json['createdDate']),
|
|
111
|
+
'createdAt': json['createdAt'] == null ? undefined : PluginFilterItemFromJSON(json['createdAt']),
|
|
119
112
|
};
|
|
120
113
|
}
|
|
121
114
|
|
|
@@ -134,10 +127,9 @@ export function GetCustomersQueryToJSONTyped(value?: GetCustomersQuery | null, i
|
|
|
134
127
|
'sort': SortOrderToJSON(value['sort']),
|
|
135
128
|
'id': PluginFilterItemToJSON(value['id']),
|
|
136
129
|
'tenantId': PluginFilterItemToJSON(value['tenantId']),
|
|
137
|
-
'
|
|
130
|
+
'status': PluginFilterItemToJSON(value['status']),
|
|
138
131
|
'name': PluginFilterItemToJSON(value['name']),
|
|
139
|
-
'
|
|
140
|
-
'createdDate': PluginFilterItemToJSON(value['createdDate']),
|
|
132
|
+
'createdAt': PluginFilterItemToJSON(value['createdAt']),
|
|
141
133
|
};
|
|
142
134
|
}
|
|
143
135
|
|