@managespace/sdk 0.1.135 → 0.1.136

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@managespace/sdk",
3
- "version": "0.1.135",
3
+ "version": "0.1.136",
4
4
  "scripts": {
5
5
  "dev": "tsc -w --preserveWatchOutput",
6
6
  "build": "tsc",
@@ -1,39 +0,0 @@
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
- *
14
- * @export
15
- * @interface SubscriptionDeletion
16
- */
17
- export interface SubscriptionDeletion {
18
- /**
19
- * ID of the deleted subscription
20
- * @type {string}
21
- * @memberof SubscriptionDeletion
22
- */
23
- id: string;
24
- /**
25
- * Success message
26
- * @type {string}
27
- * @memberof SubscriptionDeletion
28
- */
29
- message: string;
30
- }
31
- /**
32
- * Check if a given object implements the SubscriptionDeletion interface.
33
- */
34
- export declare function instanceOfSubscriptionDeletion(value: object): value is SubscriptionDeletion;
35
- export declare function SubscriptionDeletionFromJSON(json: any): SubscriptionDeletion;
36
- export declare function SubscriptionDeletionFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionDeletion;
37
- export declare function SubscriptionDeletionToJSON(json: any): SubscriptionDeletion;
38
- export declare function SubscriptionDeletionToJSONTyped(value?: SubscriptionDeletion | null, ignoreDiscriminator?: boolean): any;
39
- //# sourceMappingURL=subscription-deletion.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"subscription-deletion.d.ts","sourceRoot":"","sources":["../../../src/generated/models/subscription-deletion.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;;;OAIG;IACH,OAAO,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,wBAAgB,8BAA8B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,oBAAoB,CAI3F;AAED,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,GAAG,GAAG,oBAAoB,CAE5E;AAED,wBAAgB,iCAAiC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,oBAAoB,CAS/G;AAED,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,GAAG,GAAG,oBAAoB,CAE1E;AAED,wBAAgB,+BAA+B,CAAC,KAAK,CAAC,EAAE,oBAAoB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAU9H"}
@@ -1,55 +0,0 @@
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.SubscriptionDeletionToJSONTyped = exports.SubscriptionDeletionToJSON = exports.SubscriptionDeletionFromJSONTyped = exports.SubscriptionDeletionFromJSON = exports.instanceOfSubscriptionDeletion = void 0;
17
- /**
18
- * Check if a given object implements the SubscriptionDeletion interface.
19
- */
20
- function instanceOfSubscriptionDeletion(value) {
21
- if (!('id' in value) || value['id'] === undefined)
22
- return false;
23
- if (!('message' in value) || value['message'] === undefined)
24
- return false;
25
- return true;
26
- }
27
- exports.instanceOfSubscriptionDeletion = instanceOfSubscriptionDeletion;
28
- function SubscriptionDeletionFromJSON(json) {
29
- return SubscriptionDeletionFromJSONTyped(json, false);
30
- }
31
- exports.SubscriptionDeletionFromJSON = SubscriptionDeletionFromJSON;
32
- function SubscriptionDeletionFromJSONTyped(json, ignoreDiscriminator) {
33
- if (json == null) {
34
- return json;
35
- }
36
- return {
37
- 'id': json['id'],
38
- 'message': json['message'],
39
- };
40
- }
41
- exports.SubscriptionDeletionFromJSONTyped = SubscriptionDeletionFromJSONTyped;
42
- function SubscriptionDeletionToJSON(json) {
43
- return SubscriptionDeletionToJSONTyped(json, false);
44
- }
45
- exports.SubscriptionDeletionToJSON = SubscriptionDeletionToJSON;
46
- function SubscriptionDeletionToJSONTyped(value, ignoreDiscriminator = false) {
47
- if (value == null) {
48
- return value;
49
- }
50
- return {
51
- 'id': value['id'],
52
- 'message': value['message'],
53
- };
54
- }
55
- exports.SubscriptionDeletionToJSONTyped = SubscriptionDeletionToJSONTyped;
@@ -1,75 +0,0 @@
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
- import { mapValues } from '../runtime';
16
- /**
17
- *
18
- * @export
19
- * @interface SubscriptionDeletion
20
- */
21
- export interface SubscriptionDeletion {
22
- /**
23
- * ID of the deleted subscription
24
- * @type {string}
25
- * @memberof SubscriptionDeletion
26
- */
27
- id: string;
28
- /**
29
- * Success message
30
- * @type {string}
31
- * @memberof SubscriptionDeletion
32
- */
33
- message: string;
34
- }
35
-
36
- /**
37
- * Check if a given object implements the SubscriptionDeletion interface.
38
- */
39
- export function instanceOfSubscriptionDeletion(value: object): value is SubscriptionDeletion {
40
- if (!('id' in value) || value['id'] === undefined) return false;
41
- if (!('message' in value) || value['message'] === undefined) return false;
42
- return true;
43
- }
44
-
45
- export function SubscriptionDeletionFromJSON(json: any): SubscriptionDeletion {
46
- return SubscriptionDeletionFromJSONTyped(json, false);
47
- }
48
-
49
- export function SubscriptionDeletionFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionDeletion {
50
- if (json == null) {
51
- return json;
52
- }
53
- return {
54
-
55
- 'id': json['id'],
56
- 'message': json['message'],
57
- };
58
- }
59
-
60
- export function SubscriptionDeletionToJSON(json: any): SubscriptionDeletion {
61
- return SubscriptionDeletionToJSONTyped(json, false);
62
- }
63
-
64
- export function SubscriptionDeletionToJSONTyped(value?: SubscriptionDeletion | null, ignoreDiscriminator: boolean = false): any {
65
- if (value == null) {
66
- return value;
67
- }
68
-
69
- return {
70
-
71
- 'id': value['id'],
72
- 'message': value['message'],
73
- };
74
- }
75
-