@managespace/sdk 0.1.18 → 0.1.20

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.
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { FilterItemValue } from './filter-item-value';
13
- import type { ComparisonOperator } from './comparison-operator';
13
+ import type { FilterOperator } from './filter-operator';
14
14
  /**
15
15
  *
16
16
  * @export
@@ -18,23 +18,23 @@ import type { ComparisonOperator } from './comparison-operator';
18
18
  */
19
19
  export interface FilterItem {
20
20
  /**
21
- *
22
- * @type {ComparisonOperator}
21
+ * Field to filter by
22
+ * @type {string}
23
23
  * @memberof FilterItem
24
24
  */
25
- operator: ComparisonOperator;
25
+ field: string;
26
26
  /**
27
27
  *
28
- * @type {FilterItemValue}
28
+ * @type {FilterOperator}
29
29
  * @memberof FilterItem
30
30
  */
31
- value: FilterItemValue;
31
+ operator: FilterOperator;
32
32
  /**
33
- * Field to filter by
34
- * @type {string}
33
+ *
34
+ * @type {FilterItemValue}
35
35
  * @memberof FilterItem
36
36
  */
37
- field: string;
37
+ value: FilterItemValue;
38
38
  }
39
39
  /**
40
40
  * Check if a given object implements the FilterItem interface.
@@ -1 +1 @@
1
- {"version":3,"file":"filter-item.d.ts","sourceRoot":"","sources":["../../../src/generated/models/filter-item.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAO3D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAQhE;;;;GAIG;AACH,MAAM,WAAW,UAAU;IACvB;;;;OAIG;IACH,QAAQ,EAAE,kBAAkB,CAAC;IAC7B;;;;OAIG;IACH,KAAK,EAAE,eAAe,CAAC;IACvB;;;;OAIG;IACH,KAAK,EAAE,MAAM,CAAC;CACjB;AAID;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,UAAU,CAKvE;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,GAAG,GAAG,UAAU,CAExD;AAED,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,UAAU,CAU3F;AAED,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,GAAG,GAAG,UAAU,CAEtD;AAED,wBAAgB,qBAAqB,CAAC,KAAK,CAAC,EAAE,UAAU,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAW1G"}
1
+ {"version":3,"file":"filter-item.d.ts","sourceRoot":"","sources":["../../../src/generated/models/filter-item.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAO3D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAQxD;;;;GAIG;AACH,MAAM,WAAW,UAAU;IACvB;;;;OAIG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,QAAQ,EAAE,cAAc,CAAC;IACzB;;;;OAIG;IACH,KAAK,EAAE,eAAe,CAAC;CAC1B;AAID;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,UAAU,CAKvE;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,GAAG,GAAG,UAAU,CAExD;AAED,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,UAAU,CAU3F;AAED,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,GAAG,GAAG,UAAU,CAEtD;AAED,wBAAgB,qBAAqB,CAAC,KAAK,CAAC,EAAE,UAAU,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAW1G"}
@@ -15,17 +15,17 @@
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.FilterItemToJSONTyped = exports.FilterItemToJSON = exports.FilterItemFromJSONTyped = exports.FilterItemFromJSON = exports.instanceOfFilterItem = void 0;
17
17
  const filter_item_value_1 = require("./filter-item-value");
18
- const comparison_operator_1 = require("./comparison-operator");
18
+ const filter_operator_1 = require("./filter-operator");
19
19
  /**
20
20
  * Check if a given object implements the FilterItem interface.
21
21
  */
22
22
  function instanceOfFilterItem(value) {
23
+ if (!('field' in value) || value['field'] === undefined)
24
+ return false;
23
25
  if (!('operator' in value) || value['operator'] === undefined)
24
26
  return false;
25
27
  if (!('value' in value) || value['value'] === undefined)
26
28
  return false;
27
- if (!('field' in value) || value['field'] === undefined)
28
- return false;
29
29
  return true;
30
30
  }
31
31
  exports.instanceOfFilterItem = instanceOfFilterItem;
@@ -38,9 +38,9 @@ function FilterItemFromJSONTyped(json, ignoreDiscriminator) {
38
38
  return json;
39
39
  }
40
40
  return {
41
- 'operator': (0, comparison_operator_1.ComparisonOperatorFromJSON)(json['operator']),
42
- 'value': (0, filter_item_value_1.FilterItemValueFromJSON)(json['value']),
43
41
  'field': json['field'],
42
+ 'operator': (0, filter_operator_1.FilterOperatorFromJSON)(json['operator']),
43
+ 'value': (0, filter_item_value_1.FilterItemValueFromJSON)(json['value']),
44
44
  };
45
45
  }
46
46
  exports.FilterItemFromJSONTyped = FilterItemFromJSONTyped;
@@ -53,9 +53,9 @@ function FilterItemToJSONTyped(value, ignoreDiscriminator = false) {
53
53
  return value;
54
54
  }
55
55
  return {
56
- 'operator': (0, comparison_operator_1.ComparisonOperatorToJSON)(value['operator']),
57
- 'value': (0, filter_item_value_1.FilterItemValueToJSON)(value['value']),
58
56
  'field': value['field'],
57
+ 'operator': (0, filter_operator_1.FilterOperatorToJSON)(value['operator']),
58
+ 'value': (0, filter_item_value_1.FilterItemValueToJSON)(value['value']),
59
59
  };
60
60
  }
61
61
  exports.FilterItemToJSONTyped = FilterItemToJSONTyped;
@@ -0,0 +1,36 @@
1
+ /**
2
+ * ManageSpace API
3
+ * ManageSpace API Documentation
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * The operator to use when filtering
14
+ * @export
15
+ */
16
+ export declare const FilterOperator: {
17
+ readonly Contains: "contains";
18
+ readonly EndsWith: "endsWith";
19
+ readonly Equals: "equals";
20
+ readonly Gt: "gt";
21
+ readonly Gte: "gte";
22
+ readonly In: "in";
23
+ readonly Lt: "lt";
24
+ readonly Lte: "lte";
25
+ readonly Not: "not";
26
+ readonly NotIn: "notIn";
27
+ readonly Search: "search";
28
+ readonly StartsWith: "startsWith";
29
+ };
30
+ export type FilterOperator = typeof FilterOperator[keyof typeof FilterOperator];
31
+ export declare function instanceOfFilterOperator(value: any): boolean;
32
+ export declare function FilterOperatorFromJSON(json: any): FilterOperator;
33
+ export declare function FilterOperatorFromJSONTyped(json: any, ignoreDiscriminator: boolean): FilterOperator;
34
+ export declare function FilterOperatorToJSON(value?: FilterOperator | null): any;
35
+ export declare function FilterOperatorToJSONTyped(value: any, ignoreDiscriminator: boolean): FilterOperator;
36
+ //# sourceMappingURL=filter-operator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"filter-operator.d.ts","sourceRoot":"","sources":["../../../src/generated/models/filter-operator.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;GAGG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;CAajB,CAAC;AACX,MAAM,MAAM,cAAc,GAAG,OAAO,cAAc,CAAC,MAAM,OAAO,cAAc,CAAC,CAAC;AAGhF,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,GAAG,GAAG,OAAO,CAS5D;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,GAAG,GAAG,cAAc,CAEhE;AAED,wBAAgB,2BAA2B,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,cAAc,CAEnG;AAED,wBAAgB,oBAAoB,CAAC,KAAK,CAAC,EAAE,cAAc,GAAG,IAAI,GAAG,GAAG,CAEvE;AAED,wBAAgB,yBAAyB,CAAC,KAAK,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,cAAc,CAElG"}
@@ -0,0 +1,61 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * ManageSpace API
6
+ * ManageSpace API Documentation
7
+ *
8
+ * The version of the OpenAPI document: 1.0.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.FilterOperatorToJSONTyped = exports.FilterOperatorToJSON = exports.FilterOperatorFromJSONTyped = exports.FilterOperatorFromJSON = exports.instanceOfFilterOperator = exports.FilterOperator = void 0;
17
+ /**
18
+ * The operator to use when filtering
19
+ * @export
20
+ */
21
+ exports.FilterOperator = {
22
+ Contains: 'contains',
23
+ EndsWith: 'endsWith',
24
+ Equals: 'equals',
25
+ Gt: 'gt',
26
+ Gte: 'gte',
27
+ In: 'in',
28
+ Lt: 'lt',
29
+ Lte: 'lte',
30
+ Not: 'not',
31
+ NotIn: 'notIn',
32
+ Search: 'search',
33
+ StartsWith: 'startsWith'
34
+ };
35
+ function instanceOfFilterOperator(value) {
36
+ for (const key in exports.FilterOperator) {
37
+ if (Object.prototype.hasOwnProperty.call(exports.FilterOperator, key)) {
38
+ if (exports.FilterOperator[key] === value) {
39
+ return true;
40
+ }
41
+ }
42
+ }
43
+ return false;
44
+ }
45
+ exports.instanceOfFilterOperator = instanceOfFilterOperator;
46
+ function FilterOperatorFromJSON(json) {
47
+ return FilterOperatorFromJSONTyped(json, false);
48
+ }
49
+ exports.FilterOperatorFromJSON = FilterOperatorFromJSON;
50
+ function FilterOperatorFromJSONTyped(json, ignoreDiscriminator) {
51
+ return json;
52
+ }
53
+ exports.FilterOperatorFromJSONTyped = FilterOperatorFromJSONTyped;
54
+ function FilterOperatorToJSON(value) {
55
+ return value;
56
+ }
57
+ exports.FilterOperatorToJSON = FilterOperatorToJSON;
58
+ function FilterOperatorToJSONTyped(value, ignoreDiscriminator) {
59
+ return value;
60
+ }
61
+ exports.FilterOperatorToJSONTyped = FilterOperatorToJSONTyped;
@@ -18,7 +18,6 @@ export * from './checklist';
18
18
  export * from './checklist-recurrence-frequency';
19
19
  export * from './communication';
20
20
  export * from './communication-type';
21
- export * from './comparison-operator';
22
21
  export * from './configuration-setting';
23
22
  export * from './configuration-setting-type';
24
23
  export * from './contact';
@@ -81,6 +80,7 @@ export * from './field-type';
81
80
  export * from './file-uploaded';
82
81
  export * from './filter-item';
83
82
  export * from './filter-item-value';
83
+ export * from './filter-operator';
84
84
  export * from './get-asset-categories200-response';
85
85
  export * from './get-asset-classes200-response';
86
86
  export * from './get-asset-features200-response';
@@ -149,6 +149,7 @@ export * from './plugin-extensibility-function-instance';
149
149
  export * from './plugin-extensibility-function-metadata';
150
150
  export * from './plugin-extensibility-status';
151
151
  export * from './plugin-filter-item';
152
+ export * from './plugin-filter-operator';
152
153
  export * from './plugin-version';
153
154
  export * from './product-custom';
154
155
  export * from './project';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/generated/models/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/generated/models/index.ts"],"names":[],"mappings":"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"}
@@ -36,7 +36,6 @@ __exportStar(require("./checklist"), exports);
36
36
  __exportStar(require("./checklist-recurrence-frequency"), exports);
37
37
  __exportStar(require("./communication"), exports);
38
38
  __exportStar(require("./communication-type"), exports);
39
- __exportStar(require("./comparison-operator"), exports);
40
39
  __exportStar(require("./configuration-setting"), exports);
41
40
  __exportStar(require("./configuration-setting-type"), exports);
42
41
  __exportStar(require("./contact"), exports);
@@ -99,6 +98,7 @@ __exportStar(require("./field-type"), exports);
99
98
  __exportStar(require("./file-uploaded"), exports);
100
99
  __exportStar(require("./filter-item"), exports);
101
100
  __exportStar(require("./filter-item-value"), exports);
101
+ __exportStar(require("./filter-operator"), exports);
102
102
  __exportStar(require("./get-asset-categories200-response"), exports);
103
103
  __exportStar(require("./get-asset-classes200-response"), exports);
104
104
  __exportStar(require("./get-asset-features200-response"), exports);
@@ -167,6 +167,7 @@ __exportStar(require("./plugin-extensibility-function-instance"), exports);
167
167
  __exportStar(require("./plugin-extensibility-function-metadata"), exports);
168
168
  __exportStar(require("./plugin-extensibility-status"), exports);
169
169
  __exportStar(require("./plugin-filter-item"), exports);
170
+ __exportStar(require("./plugin-filter-operator"), exports);
170
171
  __exportStar(require("./plugin-version"), exports);
171
172
  __exportStar(require("./product-custom"), exports);
172
173
  __exportStar(require("./project"), exports);
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { FilterItemValue } from './filter-item-value';
13
- import type { ComparisonOperator } from './comparison-operator';
13
+ import type { PluginFilterOperator } from './plugin-filter-operator';
14
14
  /**
15
15
  *
16
16
  * @export
@@ -19,10 +19,10 @@ import type { ComparisonOperator } from './comparison-operator';
19
19
  export interface PluginFilterItem {
20
20
  /**
21
21
  *
22
- * @type {ComparisonOperator}
22
+ * @type {PluginFilterOperator}
23
23
  * @memberof PluginFilterItem
24
24
  */
25
- operator: ComparisonOperator;
25
+ operator: PluginFilterOperator;
26
26
  /**
27
27
  *
28
28
  * @type {FilterItemValue}
@@ -1 +1 @@
1
- {"version":3,"file":"plugin-filter-item.d.ts","sourceRoot":"","sources":["../../../src/generated/models/plugin-filter-item.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAO3D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAQhE;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,QAAQ,EAAE,kBAAkB,CAAC;IAC7B;;;;OAIG;IACH,KAAK,EAAE,eAAe,CAAC;CAC1B;AAID;;GAEG;AACH,wBAAgB,0BAA0B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,gBAAgB,CAInF;AAED,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,GAAG,GAAG,gBAAgB,CAEpE;AAED,wBAAgB,6BAA6B,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,gBAAgB,CASvG;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,GAAG,GAAG,gBAAgB,CAElE;AAED,wBAAgB,2BAA2B,CAAC,KAAK,CAAC,EAAE,gBAAgB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAUtH"}
1
+ {"version":3,"file":"plugin-filter-item.d.ts","sourceRoot":"","sources":["../../../src/generated/models/plugin-filter-item.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAO3D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAQrE;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,QAAQ,EAAE,oBAAoB,CAAC;IAC/B;;;;OAIG;IACH,KAAK,EAAE,eAAe,CAAC;CAC1B;AAID;;GAEG;AACH,wBAAgB,0BAA0B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,gBAAgB,CAInF;AAED,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,GAAG,GAAG,gBAAgB,CAEpE;AAED,wBAAgB,6BAA6B,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,gBAAgB,CASvG;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,GAAG,GAAG,gBAAgB,CAElE;AAED,wBAAgB,2BAA2B,CAAC,KAAK,CAAC,EAAE,gBAAgB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAUtH"}
@@ -15,7 +15,7 @@
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.PluginFilterItemToJSONTyped = exports.PluginFilterItemToJSON = exports.PluginFilterItemFromJSONTyped = exports.PluginFilterItemFromJSON = exports.instanceOfPluginFilterItem = void 0;
17
17
  const filter_item_value_1 = require("./filter-item-value");
18
- const comparison_operator_1 = require("./comparison-operator");
18
+ const plugin_filter_operator_1 = require("./plugin-filter-operator");
19
19
  /**
20
20
  * Check if a given object implements the PluginFilterItem interface.
21
21
  */
@@ -36,7 +36,7 @@ function PluginFilterItemFromJSONTyped(json, ignoreDiscriminator) {
36
36
  return json;
37
37
  }
38
38
  return {
39
- 'operator': (0, comparison_operator_1.ComparisonOperatorFromJSON)(json['operator']),
39
+ 'operator': (0, plugin_filter_operator_1.PluginFilterOperatorFromJSON)(json['operator']),
40
40
  'value': (0, filter_item_value_1.FilterItemValueFromJSON)(json['value']),
41
41
  };
42
42
  }
@@ -50,7 +50,7 @@ function PluginFilterItemToJSONTyped(value, ignoreDiscriminator = false) {
50
50
  return value;
51
51
  }
52
52
  return {
53
- 'operator': (0, comparison_operator_1.ComparisonOperatorToJSON)(value['operator']),
53
+ 'operator': (0, plugin_filter_operator_1.PluginFilterOperatorToJSON)(value['operator']),
54
54
  'value': (0, filter_item_value_1.FilterItemValueToJSON)(value['value']),
55
55
  };
56
56
  }
@@ -0,0 +1,27 @@
1
+ /**
2
+ * ManageSpace API
3
+ * ManageSpace API Documentation
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * The operator to use when filtering
14
+ * @export
15
+ */
16
+ export declare const PluginFilterOperator: {
17
+ readonly Equals: "equals";
18
+ readonly Gt: "gt";
19
+ readonly Lt: "lt";
20
+ };
21
+ export type PluginFilterOperator = typeof PluginFilterOperator[keyof typeof PluginFilterOperator];
22
+ export declare function instanceOfPluginFilterOperator(value: any): boolean;
23
+ export declare function PluginFilterOperatorFromJSON(json: any): PluginFilterOperator;
24
+ export declare function PluginFilterOperatorFromJSONTyped(json: any, ignoreDiscriminator: boolean): PluginFilterOperator;
25
+ export declare function PluginFilterOperatorToJSON(value?: PluginFilterOperator | null): any;
26
+ export declare function PluginFilterOperatorToJSONTyped(value: any, ignoreDiscriminator: boolean): PluginFilterOperator;
27
+ //# sourceMappingURL=plugin-filter-operator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin-filter-operator.d.ts","sourceRoot":"","sources":["../../../src/generated/models/plugin-filter-operator.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;GAGG;AACH,eAAO,MAAM,oBAAoB;;;;CAIvB,CAAC;AACX,MAAM,MAAM,oBAAoB,GAAG,OAAO,oBAAoB,CAAC,MAAM,OAAO,oBAAoB,CAAC,CAAC;AAGlG,wBAAgB,8BAA8B,CAAC,KAAK,EAAE,GAAG,GAAG,OAAO,CASlE;AAED,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,GAAG,GAAG,oBAAoB,CAE5E;AAED,wBAAgB,iCAAiC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,oBAAoB,CAE/G;AAED,wBAAgB,0BAA0B,CAAC,KAAK,CAAC,EAAE,oBAAoB,GAAG,IAAI,GAAG,GAAG,CAEnF;AAED,wBAAgB,+BAA+B,CAAC,KAAK,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,oBAAoB,CAE9G"}
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * ManageSpace API
6
+ * ManageSpace API Documentation
7
+ *
8
+ * The version of the OpenAPI document: 1.0.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.PluginFilterOperatorToJSONTyped = exports.PluginFilterOperatorToJSON = exports.PluginFilterOperatorFromJSONTyped = exports.PluginFilterOperatorFromJSON = exports.instanceOfPluginFilterOperator = exports.PluginFilterOperator = void 0;
17
+ /**
18
+ * The operator to use when filtering
19
+ * @export
20
+ */
21
+ exports.PluginFilterOperator = {
22
+ Equals: 'equals',
23
+ Gt: 'gt',
24
+ Lt: 'lt'
25
+ };
26
+ function instanceOfPluginFilterOperator(value) {
27
+ for (const key in exports.PluginFilterOperator) {
28
+ if (Object.prototype.hasOwnProperty.call(exports.PluginFilterOperator, key)) {
29
+ if (exports.PluginFilterOperator[key] === value) {
30
+ return true;
31
+ }
32
+ }
33
+ }
34
+ return false;
35
+ }
36
+ exports.instanceOfPluginFilterOperator = instanceOfPluginFilterOperator;
37
+ function PluginFilterOperatorFromJSON(json) {
38
+ return PluginFilterOperatorFromJSONTyped(json, false);
39
+ }
40
+ exports.PluginFilterOperatorFromJSON = PluginFilterOperatorFromJSON;
41
+ function PluginFilterOperatorFromJSONTyped(json, ignoreDiscriminator) {
42
+ return json;
43
+ }
44
+ exports.PluginFilterOperatorFromJSONTyped = PluginFilterOperatorFromJSONTyped;
45
+ function PluginFilterOperatorToJSON(value) {
46
+ return value;
47
+ }
48
+ exports.PluginFilterOperatorToJSON = PluginFilterOperatorToJSON;
49
+ function PluginFilterOperatorToJSONTyped(value, ignoreDiscriminator) {
50
+ return value;
51
+ }
52
+ exports.PluginFilterOperatorToJSONTyped = PluginFilterOperatorToJSONTyped;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@managespace/sdk",
3
- "version": "0.1.18",
3
+ "version": "0.1.20",
4
4
  "scripts": {
5
5
  "dev": "tsc -w --preserveWatchOutput",
6
6
  "build": "tsc",
@@ -21,7 +21,6 @@ models/checklist-recurrence-frequency.ts
21
21
  models/checklist.ts
22
22
  models/communication-type.ts
23
23
  models/communication.ts
24
- models/comparison-operator.ts
25
24
  models/configuration-setting-type.ts
26
25
  models/configuration-setting.ts
27
26
  models/contact.ts
@@ -84,6 +83,7 @@ models/field-type.ts
84
83
  models/file-uploaded.ts
85
84
  models/filter-item-value.ts
86
85
  models/filter-item.ts
86
+ models/filter-operator.ts
87
87
  models/get-asset-categories200-response.ts
88
88
  models/get-asset-classes200-response.ts
89
89
  models/get-asset-features200-response.ts
@@ -152,6 +152,7 @@ models/plugin-extensibility-function-instance.ts
152
152
  models/plugin-extensibility-function-metadata.ts
153
153
  models/plugin-extensibility-status.ts
154
154
  models/plugin-filter-item.ts
155
+ models/plugin-filter-operator.ts
155
156
  models/plugin-version.ts
156
157
  models/plugin.ts
157
158
  models/product-custom.ts
@@ -20,13 +20,13 @@ import {
20
20
  FilterItemValueToJSON,
21
21
  FilterItemValueToJSONTyped,
22
22
  } from './filter-item-value';
23
- import type { ComparisonOperator } from './comparison-operator';
23
+ import type { FilterOperator } from './filter-operator';
24
24
  import {
25
- ComparisonOperatorFromJSON,
26
- ComparisonOperatorFromJSONTyped,
27
- ComparisonOperatorToJSON,
28
- ComparisonOperatorToJSONTyped,
29
- } from './comparison-operator';
25
+ FilterOperatorFromJSON,
26
+ FilterOperatorFromJSONTyped,
27
+ FilterOperatorToJSON,
28
+ FilterOperatorToJSONTyped,
29
+ } from './filter-operator';
30
30
 
31
31
  /**
32
32
  *
@@ -35,23 +35,23 @@ import {
35
35
  */
36
36
  export interface FilterItem {
37
37
  /**
38
- *
39
- * @type {ComparisonOperator}
38
+ * Field to filter by
39
+ * @type {string}
40
40
  * @memberof FilterItem
41
41
  */
42
- operator: ComparisonOperator;
42
+ field: string;
43
43
  /**
44
44
  *
45
- * @type {FilterItemValue}
45
+ * @type {FilterOperator}
46
46
  * @memberof FilterItem
47
47
  */
48
- value: FilterItemValue;
48
+ operator: FilterOperator;
49
49
  /**
50
- * Field to filter by
51
- * @type {string}
50
+ *
51
+ * @type {FilterItemValue}
52
52
  * @memberof FilterItem
53
53
  */
54
- field: string;
54
+ value: FilterItemValue;
55
55
  }
56
56
 
57
57
 
@@ -60,9 +60,9 @@ export interface FilterItem {
60
60
  * Check if a given object implements the FilterItem interface.
61
61
  */
62
62
  export function instanceOfFilterItem(value: object): value is FilterItem {
63
+ if (!('field' in value) || value['field'] === undefined) return false;
63
64
  if (!('operator' in value) || value['operator'] === undefined) return false;
64
65
  if (!('value' in value) || value['value'] === undefined) return false;
65
- if (!('field' in value) || value['field'] === undefined) return false;
66
66
  return true;
67
67
  }
68
68
 
@@ -76,9 +76,9 @@ export function FilterItemFromJSONTyped(json: any, ignoreDiscriminator: boolean)
76
76
  }
77
77
  return {
78
78
 
79
- 'operator': ComparisonOperatorFromJSON(json['operator']),
80
- 'value': FilterItemValueFromJSON(json['value']),
81
79
  'field': json['field'],
80
+ 'operator': FilterOperatorFromJSON(json['operator']),
81
+ 'value': FilterItemValueFromJSON(json['value']),
82
82
  };
83
83
  }
84
84
 
@@ -93,9 +93,9 @@ export function FilterItemToJSONTyped(value?: FilterItem | null, ignoreDiscrimin
93
93
 
94
94
  return {
95
95
 
96
- 'operator': ComparisonOperatorToJSON(value['operator']),
97
- 'value': FilterItemValueToJSON(value['value']),
98
96
  'field': value['field'],
97
+ 'operator': FilterOperatorToJSON(value['operator']),
98
+ 'value': FilterItemValueToJSON(value['value']),
99
99
  };
100
100
  }
101
101
 
@@ -0,0 +1,63 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * ManageSpace API
5
+ * ManageSpace API Documentation
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ /**
17
+ * The operator to use when filtering
18
+ * @export
19
+ */
20
+ export const FilterOperator = {
21
+ Contains: 'contains',
22
+ EndsWith: 'endsWith',
23
+ Equals: 'equals',
24
+ Gt: 'gt',
25
+ Gte: 'gte',
26
+ In: 'in',
27
+ Lt: 'lt',
28
+ Lte: 'lte',
29
+ Not: 'not',
30
+ NotIn: 'notIn',
31
+ Search: 'search',
32
+ StartsWith: 'startsWith'
33
+ } as const;
34
+ export type FilterOperator = typeof FilterOperator[keyof typeof FilterOperator];
35
+
36
+
37
+ export function instanceOfFilterOperator(value: any): boolean {
38
+ for (const key in FilterOperator) {
39
+ if (Object.prototype.hasOwnProperty.call(FilterOperator, key)) {
40
+ if (FilterOperator[key as keyof typeof FilterOperator] === value) {
41
+ return true;
42
+ }
43
+ }
44
+ }
45
+ return false;
46
+ }
47
+
48
+ export function FilterOperatorFromJSON(json: any): FilterOperator {
49
+ return FilterOperatorFromJSONTyped(json, false);
50
+ }
51
+
52
+ export function FilterOperatorFromJSONTyped(json: any, ignoreDiscriminator: boolean): FilterOperator {
53
+ return json as FilterOperator;
54
+ }
55
+
56
+ export function FilterOperatorToJSON(value?: FilterOperator | null): any {
57
+ return value as any;
58
+ }
59
+
60
+ export function FilterOperatorToJSONTyped(value: any, ignoreDiscriminator: boolean): FilterOperator {
61
+ return value as FilterOperator;
62
+ }
63
+
@@ -20,7 +20,6 @@ export * from './checklist';
20
20
  export * from './checklist-recurrence-frequency';
21
21
  export * from './communication';
22
22
  export * from './communication-type';
23
- export * from './comparison-operator';
24
23
  export * from './configuration-setting';
25
24
  export * from './configuration-setting-type';
26
25
  export * from './contact';
@@ -83,6 +82,7 @@ export * from './field-type';
83
82
  export * from './file-uploaded';
84
83
  export * from './filter-item';
85
84
  export * from './filter-item-value';
85
+ export * from './filter-operator';
86
86
  export * from './get-asset-categories200-response';
87
87
  export * from './get-asset-classes200-response';
88
88
  export * from './get-asset-features200-response';
@@ -151,6 +151,7 @@ export * from './plugin-extensibility-function-instance';
151
151
  export * from './plugin-extensibility-function-metadata';
152
152
  export * from './plugin-extensibility-status';
153
153
  export * from './plugin-filter-item';
154
+ export * from './plugin-filter-operator';
154
155
  export * from './plugin-version';
155
156
  export * from './product-custom';
156
157
  export * from './project';
@@ -20,13 +20,13 @@ import {
20
20
  FilterItemValueToJSON,
21
21
  FilterItemValueToJSONTyped,
22
22
  } from './filter-item-value';
23
- import type { ComparisonOperator } from './comparison-operator';
23
+ import type { PluginFilterOperator } from './plugin-filter-operator';
24
24
  import {
25
- ComparisonOperatorFromJSON,
26
- ComparisonOperatorFromJSONTyped,
27
- ComparisonOperatorToJSON,
28
- ComparisonOperatorToJSONTyped,
29
- } from './comparison-operator';
25
+ PluginFilterOperatorFromJSON,
26
+ PluginFilterOperatorFromJSONTyped,
27
+ PluginFilterOperatorToJSON,
28
+ PluginFilterOperatorToJSONTyped,
29
+ } from './plugin-filter-operator';
30
30
 
31
31
  /**
32
32
  *
@@ -36,10 +36,10 @@ import {
36
36
  export interface PluginFilterItem {
37
37
  /**
38
38
  *
39
- * @type {ComparisonOperator}
39
+ * @type {PluginFilterOperator}
40
40
  * @memberof PluginFilterItem
41
41
  */
42
- operator: ComparisonOperator;
42
+ operator: PluginFilterOperator;
43
43
  /**
44
44
  *
45
45
  * @type {FilterItemValue}
@@ -69,7 +69,7 @@ export function PluginFilterItemFromJSONTyped(json: any, ignoreDiscriminator: bo
69
69
  }
70
70
  return {
71
71
 
72
- 'operator': ComparisonOperatorFromJSON(json['operator']),
72
+ 'operator': PluginFilterOperatorFromJSON(json['operator']),
73
73
  'value': FilterItemValueFromJSON(json['value']),
74
74
  };
75
75
  }
@@ -85,7 +85,7 @@ export function PluginFilterItemToJSONTyped(value?: PluginFilterItem | null, ign
85
85
 
86
86
  return {
87
87
 
88
- 'operator': ComparisonOperatorToJSON(value['operator']),
88
+ 'operator': PluginFilterOperatorToJSON(value['operator']),
89
89
  'value': FilterItemValueToJSON(value['value']),
90
90
  };
91
91
  }
@@ -0,0 +1,54 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * ManageSpace API
5
+ * ManageSpace API Documentation
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ /**
17
+ * The operator to use when filtering
18
+ * @export
19
+ */
20
+ export const PluginFilterOperator = {
21
+ Equals: 'equals',
22
+ Gt: 'gt',
23
+ Lt: 'lt'
24
+ } as const;
25
+ export type PluginFilterOperator = typeof PluginFilterOperator[keyof typeof PluginFilterOperator];
26
+
27
+
28
+ export function instanceOfPluginFilterOperator(value: any): boolean {
29
+ for (const key in PluginFilterOperator) {
30
+ if (Object.prototype.hasOwnProperty.call(PluginFilterOperator, key)) {
31
+ if (PluginFilterOperator[key as keyof typeof PluginFilterOperator] === value) {
32
+ return true;
33
+ }
34
+ }
35
+ }
36
+ return false;
37
+ }
38
+
39
+ export function PluginFilterOperatorFromJSON(json: any): PluginFilterOperator {
40
+ return PluginFilterOperatorFromJSONTyped(json, false);
41
+ }
42
+
43
+ export function PluginFilterOperatorFromJSONTyped(json: any, ignoreDiscriminator: boolean): PluginFilterOperator {
44
+ return json as PluginFilterOperator;
45
+ }
46
+
47
+ export function PluginFilterOperatorToJSON(value?: PluginFilterOperator | null): any {
48
+ return value as any;
49
+ }
50
+
51
+ export function PluginFilterOperatorToJSONTyped(value: any, ignoreDiscriminator: boolean): PluginFilterOperator {
52
+ return value as PluginFilterOperator;
53
+ }
54
+