@equisoft/equisoft-connect-sdk-typescript 10.29.1 → 10.29.2-snapshot.20220902124130

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.
@@ -78,6 +78,7 @@ src/models/GatewaysGatewayName.ts
78
78
  src/models/GatewaysGatewayType.ts
79
79
  src/models/GatewaysGatewaysResponse.ts
80
80
  src/models/GatewaysListCredentialsResponse.ts
81
+ src/models/GroupUsersListGroupUsersResponse.ts
81
82
  src/models/HandlersOauth2AssetbookAssetBookTokenPostBody.ts
82
83
  src/models/InternalNotesAuthor.ts
83
84
  src/models/InternalNotesCreateNotePayload.ts
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Equisoft /connect API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: latest
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 GroupUsersListGroupUsersResponse
16
+ */
17
+ export interface GroupUsersListGroupUsersResponse {
18
+ /**
19
+ *
20
+ * @type {Array<any>}
21
+ * @memberof GroupUsersListGroupUsersResponse
22
+ */
23
+ users: Array<any>;
24
+ }
25
+ export declare function GroupUsersListGroupUsersResponseFromJSON(json: any): GroupUsersListGroupUsersResponse;
26
+ export declare function GroupUsersListGroupUsersResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupUsersListGroupUsersResponse;
27
+ export declare function GroupUsersListGroupUsersResponseToJSON(value?: GroupUsersListGroupUsersResponse | null): any;
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Equisoft /connect API
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: latest
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.GroupUsersListGroupUsersResponseToJSON = exports.GroupUsersListGroupUsersResponseFromJSONTyped = exports.GroupUsersListGroupUsersResponseFromJSON = void 0;
17
+ function GroupUsersListGroupUsersResponseFromJSON(json) {
18
+ return GroupUsersListGroupUsersResponseFromJSONTyped(json, false);
19
+ }
20
+ exports.GroupUsersListGroupUsersResponseFromJSON = GroupUsersListGroupUsersResponseFromJSON;
21
+ function GroupUsersListGroupUsersResponseFromJSONTyped(json, ignoreDiscriminator) {
22
+ if ((json === undefined) || (json === null)) {
23
+ return json;
24
+ }
25
+ return {
26
+ 'users': json['users'],
27
+ };
28
+ }
29
+ exports.GroupUsersListGroupUsersResponseFromJSONTyped = GroupUsersListGroupUsersResponseFromJSONTyped;
30
+ function GroupUsersListGroupUsersResponseToJSON(value) {
31
+ if (value === undefined) {
32
+ return undefined;
33
+ }
34
+ if (value === null) {
35
+ return null;
36
+ }
37
+ return {
38
+ 'users': value.users,
39
+ };
40
+ }
41
+ exports.GroupUsersListGroupUsersResponseToJSON = GroupUsersListGroupUsersResponseToJSON;
@@ -60,6 +60,7 @@ export * from './GatewaysGatewayName';
60
60
  export * from './GatewaysGatewayType';
61
61
  export * from './GatewaysGatewaysResponse';
62
62
  export * from './GatewaysListCredentialsResponse';
63
+ export * from './GroupUsersListGroupUsersResponse';
63
64
  export * from './HandlersOauth2AssetbookAssetBookTokenPostBody';
64
65
  export * from './InternalNotesAuthor';
65
66
  export * from './InternalNotesCreateNotePayload';
@@ -74,6 +74,7 @@ __exportStar(require("./GatewaysGatewayName"), exports);
74
74
  __exportStar(require("./GatewaysGatewayType"), exports);
75
75
  __exportStar(require("./GatewaysGatewaysResponse"), exports);
76
76
  __exportStar(require("./GatewaysListCredentialsResponse"), exports);
77
+ __exportStar(require("./GroupUsersListGroupUsersResponse"), exports);
77
78
  __exportStar(require("./HandlersOauth2AssetbookAssetBookTokenPostBody"), exports);
78
79
  __exportStar(require("./InternalNotesAuthor"), exports);
79
80
  __exportStar(require("./InternalNotesCreateNotePayload"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equisoft/equisoft-connect-sdk-typescript",
3
- "version": "10.29.1",
3
+ "version": "10.29.2-snapshot.20220902124130",
4
4
  "description": "OpenAPI client for @equisoft/equisoft-connect-sdk-typescript",
5
5
  "author": "OpenAPI-Generator",
6
6
  "main": "./dist/index.js",
@@ -0,0 +1,56 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Equisoft /connect API
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: latest
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 { exists, mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface GroupUsersListGroupUsersResponse
20
+ */
21
+ export interface GroupUsersListGroupUsersResponse {
22
+ /**
23
+ *
24
+ * @type {Array<any>}
25
+ * @memberof GroupUsersListGroupUsersResponse
26
+ */
27
+ users: Array<any>;
28
+ }
29
+
30
+ export function GroupUsersListGroupUsersResponseFromJSON(json: any): GroupUsersListGroupUsersResponse {
31
+ return GroupUsersListGroupUsersResponseFromJSONTyped(json, false);
32
+ }
33
+
34
+ export function GroupUsersListGroupUsersResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupUsersListGroupUsersResponse {
35
+ if ((json === undefined) || (json === null)) {
36
+ return json;
37
+ }
38
+ return {
39
+
40
+ 'users': json['users'],
41
+ };
42
+ }
43
+
44
+ export function GroupUsersListGroupUsersResponseToJSON(value?: GroupUsersListGroupUsersResponse | null): any {
45
+ if (value === undefined) {
46
+ return undefined;
47
+ }
48
+ if (value === null) {
49
+ return null;
50
+ }
51
+ return {
52
+
53
+ 'users': value.users,
54
+ };
55
+ }
56
+
@@ -62,6 +62,7 @@ export * from './GatewaysGatewayName';
62
62
  export * from './GatewaysGatewayType';
63
63
  export * from './GatewaysGatewaysResponse';
64
64
  export * from './GatewaysListCredentialsResponse';
65
+ export * from './GroupUsersListGroupUsersResponse';
65
66
  export * from './HandlersOauth2AssetbookAssetBookTokenPostBody';
66
67
  export * from './InternalNotesAuthor';
67
68
  export * from './InternalNotesCreateNotePayload';