@dynamic-labs/sdk-api 0.0.205 → 0.0.207

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.
Files changed (65) hide show
  1. package/package.json +1 -1
  2. package/src/apis/AllowlistsApi.cjs +3 -1
  3. package/src/apis/AllowlistsApi.js +3 -1
  4. package/src/apis/AnalyticsApi.cjs +3 -1
  5. package/src/apis/AnalyticsApi.js +3 -1
  6. package/src/apis/ChainalysisApi.cjs +3 -1
  7. package/src/apis/ChainalysisApi.js +3 -1
  8. package/src/apis/ChainsApi.cjs +3 -1
  9. package/src/apis/ChainsApi.js +3 -1
  10. package/src/apis/EnvironmentsApi.cjs +3 -1
  11. package/src/apis/EnvironmentsApi.js +3 -1
  12. package/src/apis/ExportsApi.cjs +170 -0
  13. package/src/apis/ExportsApi.d.ts +63 -0
  14. package/src/apis/ExportsApi.js +166 -0
  15. package/src/apis/GatesApi.cjs +3 -1
  16. package/src/apis/GatesApi.js +3 -1
  17. package/src/apis/InvitesApi.cjs +3 -1
  18. package/src/apis/InvitesApi.js +3 -1
  19. package/src/apis/MembersApi.cjs +3 -1
  20. package/src/apis/MembersApi.js +3 -1
  21. package/src/apis/OrganizationsApi.cjs +3 -1
  22. package/src/apis/OrganizationsApi.js +3 -1
  23. package/src/apis/OriginsApi.cjs +3 -1
  24. package/src/apis/OriginsApi.js +3 -1
  25. package/src/apis/ProjectsApi.cjs +3 -1
  26. package/src/apis/ProjectsApi.js +3 -1
  27. package/src/apis/SDKApi.cjs +3 -1
  28. package/src/apis/SDKApi.js +3 -1
  29. package/src/apis/SessionsApi.cjs +3 -1
  30. package/src/apis/SessionsApi.js +3 -1
  31. package/src/apis/SettingsApi.cjs +3 -1
  32. package/src/apis/SettingsApi.js +3 -1
  33. package/src/apis/TokensApi.cjs +3 -1
  34. package/src/apis/TokensApi.js +3 -1
  35. package/src/apis/UsersApi.cjs +3 -1
  36. package/src/apis/UsersApi.js +3 -1
  37. package/src/apis/VisitsApi.cjs +3 -1
  38. package/src/apis/VisitsApi.js +3 -1
  39. package/src/apis/WalletsApi.cjs +3 -1
  40. package/src/apis/WalletsApi.js +3 -1
  41. package/src/apis/index.d.ts +1 -0
  42. package/src/index.cjs +34 -0
  43. package/src/index.js +7 -0
  44. package/src/models/Export.cjs +50 -0
  45. package/src/models/Export.d.ts +72 -0
  46. package/src/models/Export.js +44 -0
  47. package/src/models/ExportCreateRequest.cjs +40 -0
  48. package/src/models/ExportCreateRequest.d.ts +42 -0
  49. package/src/models/ExportCreateRequest.js +34 -0
  50. package/src/models/ExportCreateRequestFilter.cjs +34 -0
  51. package/src/models/ExportCreateRequestFilter.d.ts +28 -0
  52. package/src/models/ExportCreateRequestFilter.js +28 -0
  53. package/src/models/ExportFormatEnum.cjs +39 -0
  54. package/src/models/ExportFormatEnum.d.ts +22 -0
  55. package/src/models/ExportFormatEnum.js +33 -0
  56. package/src/models/ExportModelEnum.cjs +39 -0
  57. package/src/models/ExportModelEnum.d.ts +22 -0
  58. package/src/models/ExportModelEnum.js +33 -0
  59. package/src/models/ExportsResponse.cjs +34 -0
  60. package/src/models/ExportsResponse.d.ts +28 -0
  61. package/src/models/ExportsResponse.js +28 -0
  62. package/src/models/SubscriptionAdvancedScopeEnum.cjs +1 -0
  63. package/src/models/SubscriptionAdvancedScopeEnum.d.ts +2 -1
  64. package/src/models/SubscriptionAdvancedScopeEnum.js +1 -0
  65. package/src/models/index.d.ts +6 -0
@@ -0,0 +1,72 @@
1
+ /**
2
+ * Dashboard API
3
+ * Dashboard 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
+ import { ExportCreateRequestFilter } from './ExportCreateRequestFilter';
13
+ import { ExportFormatEnum } from './ExportFormatEnum';
14
+ import { ExportModelEnum } from './ExportModelEnum';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface Export
19
+ */
20
+ export interface Export {
21
+ /**
22
+ *
23
+ * @type {string}
24
+ * @memberof Export
25
+ */
26
+ id: string;
27
+ /**
28
+ *
29
+ * @type {ExportFormatEnum}
30
+ * @memberof Export
31
+ */
32
+ format: ExportFormatEnum;
33
+ /**
34
+ *
35
+ * @type {ExportModelEnum}
36
+ * @memberof Export
37
+ */
38
+ model: ExportModelEnum;
39
+ /**
40
+ *
41
+ * @type {ExportCreateRequestFilter}
42
+ * @memberof Export
43
+ */
44
+ filter: ExportCreateRequestFilter;
45
+ /**
46
+ *
47
+ * @type {Date}
48
+ * @memberof Export
49
+ */
50
+ createdAt: Date;
51
+ /**
52
+ *
53
+ * @type {Date}
54
+ * @memberof Export
55
+ */
56
+ startedAt?: Date | null;
57
+ /**
58
+ *
59
+ * @type {Date}
60
+ * @memberof Export
61
+ */
62
+ completedAt?: Date | null;
63
+ /**
64
+ * When defined, this is the error message and stack trace received when attempting to process the export.
65
+ * @type {string}
66
+ * @memberof Export
67
+ */
68
+ error?: string;
69
+ }
70
+ export declare function ExportFromJSON(json: any): Export;
71
+ export declare function ExportFromJSONTyped(json: any, ignoreDiscriminator: boolean): Export;
72
+ export declare function ExportToJSON(value?: Export | null): any;
@@ -0,0 +1,44 @@
1
+ import { exists } from '../runtime.js';
2
+ import { ExportCreateRequestFilterFromJSON, ExportCreateRequestFilterToJSON } from './ExportCreateRequestFilter.js';
3
+ import { ExportFormatEnumFromJSON, ExportFormatEnumToJSON } from './ExportFormatEnum.js';
4
+ import { ExportModelEnumFromJSON, ExportModelEnumToJSON } from './ExportModelEnum.js';
5
+
6
+ /* tslint:disable */
7
+ function ExportFromJSON(json) {
8
+ return ExportFromJSONTyped(json);
9
+ }
10
+ function ExportFromJSONTyped(json, ignoreDiscriminator) {
11
+ if ((json === undefined) || (json === null)) {
12
+ return json;
13
+ }
14
+ return {
15
+ 'id': json['id'],
16
+ 'format': ExportFormatEnumFromJSON(json['format']),
17
+ 'model': ExportModelEnumFromJSON(json['model']),
18
+ 'filter': ExportCreateRequestFilterFromJSON(json['filter']),
19
+ 'createdAt': (new Date(json['createdAt'])),
20
+ 'startedAt': !exists(json, 'startedAt') ? undefined : (json['startedAt'] === null ? null : new Date(json['startedAt'])),
21
+ 'completedAt': !exists(json, 'completedAt') ? undefined : (json['completedAt'] === null ? null : new Date(json['completedAt'])),
22
+ 'error': !exists(json, 'error') ? undefined : json['error'],
23
+ };
24
+ }
25
+ function ExportToJSON(value) {
26
+ if (value === undefined) {
27
+ return undefined;
28
+ }
29
+ if (value === null) {
30
+ return null;
31
+ }
32
+ return {
33
+ 'id': value.id,
34
+ 'format': ExportFormatEnumToJSON(value.format),
35
+ 'model': ExportModelEnumToJSON(value.model),
36
+ 'filter': ExportCreateRequestFilterToJSON(value.filter),
37
+ 'createdAt': (value.createdAt.toISOString()),
38
+ 'startedAt': value.startedAt === undefined ? undefined : (value.startedAt === null ? null : value.startedAt.toISOString()),
39
+ 'completedAt': value.completedAt === undefined ? undefined : (value.completedAt === null ? null : value.completedAt.toISOString()),
40
+ 'error': value.error,
41
+ };
42
+ }
43
+
44
+ export { ExportFromJSON, ExportFromJSONTyped, ExportToJSON };
@@ -0,0 +1,40 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var runtime = require('../runtime.cjs');
6
+ var ExportCreateRequestFilter = require('./ExportCreateRequestFilter.cjs');
7
+ var ExportFormatEnum = require('./ExportFormatEnum.cjs');
8
+ var ExportModelEnum = require('./ExportModelEnum.cjs');
9
+
10
+ /* tslint:disable */
11
+ function ExportCreateRequestFromJSON(json) {
12
+ return ExportCreateRequestFromJSONTyped(json);
13
+ }
14
+ function ExportCreateRequestFromJSONTyped(json, ignoreDiscriminator) {
15
+ if ((json === undefined) || (json === null)) {
16
+ return json;
17
+ }
18
+ return {
19
+ 'format': ExportFormatEnum.ExportFormatEnumFromJSON(json['format']),
20
+ 'model': ExportModelEnum.ExportModelEnumFromJSON(json['model']),
21
+ 'filter': !runtime.exists(json, 'filter') ? undefined : ExportCreateRequestFilter.ExportCreateRequestFilterFromJSON(json['filter']),
22
+ };
23
+ }
24
+ function ExportCreateRequestToJSON(value) {
25
+ if (value === undefined) {
26
+ return undefined;
27
+ }
28
+ if (value === null) {
29
+ return null;
30
+ }
31
+ return {
32
+ 'format': ExportFormatEnum.ExportFormatEnumToJSON(value.format),
33
+ 'model': ExportModelEnum.ExportModelEnumToJSON(value.model),
34
+ 'filter': ExportCreateRequestFilter.ExportCreateRequestFilterToJSON(value.filter),
35
+ };
36
+ }
37
+
38
+ exports.ExportCreateRequestFromJSON = ExportCreateRequestFromJSON;
39
+ exports.ExportCreateRequestFromJSONTyped = ExportCreateRequestFromJSONTyped;
40
+ exports.ExportCreateRequestToJSON = ExportCreateRequestToJSON;
@@ -0,0 +1,42 @@
1
+ /**
2
+ * Dashboard API
3
+ * Dashboard 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
+ import { ExportCreateRequestFilter } from './ExportCreateRequestFilter';
13
+ import { ExportFormatEnum } from './ExportFormatEnum';
14
+ import { ExportModelEnum } from './ExportModelEnum';
15
+ /**
16
+ * Request body to create a new export.
17
+ * @export
18
+ * @interface ExportCreateRequest
19
+ */
20
+ export interface ExportCreateRequest {
21
+ /**
22
+ *
23
+ * @type {ExportFormatEnum}
24
+ * @memberof ExportCreateRequest
25
+ */
26
+ format: ExportFormatEnum;
27
+ /**
28
+ *
29
+ * @type {ExportModelEnum}
30
+ * @memberof ExportCreateRequest
31
+ */
32
+ model: ExportModelEnum;
33
+ /**
34
+ *
35
+ * @type {ExportCreateRequestFilter}
36
+ * @memberof ExportCreateRequest
37
+ */
38
+ filter?: ExportCreateRequestFilter;
39
+ }
40
+ export declare function ExportCreateRequestFromJSON(json: any): ExportCreateRequest;
41
+ export declare function ExportCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExportCreateRequest;
42
+ export declare function ExportCreateRequestToJSON(value?: ExportCreateRequest | null): any;
@@ -0,0 +1,34 @@
1
+ import { exists } from '../runtime.js';
2
+ import { ExportCreateRequestFilterFromJSON, ExportCreateRequestFilterToJSON } from './ExportCreateRequestFilter.js';
3
+ import { ExportFormatEnumFromJSON, ExportFormatEnumToJSON } from './ExportFormatEnum.js';
4
+ import { ExportModelEnumFromJSON, ExportModelEnumToJSON } from './ExportModelEnum.js';
5
+
6
+ /* tslint:disable */
7
+ function ExportCreateRequestFromJSON(json) {
8
+ return ExportCreateRequestFromJSONTyped(json);
9
+ }
10
+ function ExportCreateRequestFromJSONTyped(json, ignoreDiscriminator) {
11
+ if ((json === undefined) || (json === null)) {
12
+ return json;
13
+ }
14
+ return {
15
+ 'format': ExportFormatEnumFromJSON(json['format']),
16
+ 'model': ExportModelEnumFromJSON(json['model']),
17
+ 'filter': !exists(json, 'filter') ? undefined : ExportCreateRequestFilterFromJSON(json['filter']),
18
+ };
19
+ }
20
+ function ExportCreateRequestToJSON(value) {
21
+ if (value === undefined) {
22
+ return undefined;
23
+ }
24
+ if (value === null) {
25
+ return null;
26
+ }
27
+ return {
28
+ 'format': ExportFormatEnumToJSON(value.format),
29
+ 'model': ExportModelEnumToJSON(value.model),
30
+ 'filter': ExportCreateRequestFilterToJSON(value.filter),
31
+ };
32
+ }
33
+
34
+ export { ExportCreateRequestFromJSON, ExportCreateRequestFromJSONTyped, ExportCreateRequestToJSON };
@@ -0,0 +1,34 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var runtime = require('../runtime.cjs');
6
+ var UserSearchFilterParams = require('./UserSearchFilterParams.cjs');
7
+
8
+ /* tslint:disable */
9
+ function ExportCreateRequestFilterFromJSON(json) {
10
+ return ExportCreateRequestFilterFromJSONTyped(json);
11
+ }
12
+ function ExportCreateRequestFilterFromJSONTyped(json, ignoreDiscriminator) {
13
+ if ((json === undefined) || (json === null)) {
14
+ return json;
15
+ }
16
+ return {
17
+ 'users': !runtime.exists(json, 'users') ? undefined : UserSearchFilterParams.UserSearchFilterParamsFromJSON(json['users']),
18
+ };
19
+ }
20
+ function ExportCreateRequestFilterToJSON(value) {
21
+ if (value === undefined) {
22
+ return undefined;
23
+ }
24
+ if (value === null) {
25
+ return null;
26
+ }
27
+ return {
28
+ 'users': UserSearchFilterParams.UserSearchFilterParamsToJSON(value.users),
29
+ };
30
+ }
31
+
32
+ exports.ExportCreateRequestFilterFromJSON = ExportCreateRequestFilterFromJSON;
33
+ exports.ExportCreateRequestFilterFromJSONTyped = ExportCreateRequestFilterFromJSONTyped;
34
+ exports.ExportCreateRequestFilterToJSON = ExportCreateRequestFilterToJSON;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * Dashboard API
3
+ * Dashboard 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
+ import { UserSearchFilterParams } from './UserSearchFilterParams';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ExportCreateRequestFilter
17
+ */
18
+ export interface ExportCreateRequestFilter {
19
+ /**
20
+ *
21
+ * @type {UserSearchFilterParams}
22
+ * @memberof ExportCreateRequestFilter
23
+ */
24
+ users?: UserSearchFilterParams;
25
+ }
26
+ export declare function ExportCreateRequestFilterFromJSON(json: any): ExportCreateRequestFilter;
27
+ export declare function ExportCreateRequestFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExportCreateRequestFilter;
28
+ export declare function ExportCreateRequestFilterToJSON(value?: ExportCreateRequestFilter | null): any;
@@ -0,0 +1,28 @@
1
+ import { exists } from '../runtime.js';
2
+ import { UserSearchFilterParamsFromJSON, UserSearchFilterParamsToJSON } from './UserSearchFilterParams.js';
3
+
4
+ /* tslint:disable */
5
+ function ExportCreateRequestFilterFromJSON(json) {
6
+ return ExportCreateRequestFilterFromJSONTyped(json);
7
+ }
8
+ function ExportCreateRequestFilterFromJSONTyped(json, ignoreDiscriminator) {
9
+ if ((json === undefined) || (json === null)) {
10
+ return json;
11
+ }
12
+ return {
13
+ 'users': !exists(json, 'users') ? undefined : UserSearchFilterParamsFromJSON(json['users']),
14
+ };
15
+ }
16
+ function ExportCreateRequestFilterToJSON(value) {
17
+ if (value === undefined) {
18
+ return undefined;
19
+ }
20
+ if (value === null) {
21
+ return null;
22
+ }
23
+ return {
24
+ 'users': UserSearchFilterParamsToJSON(value.users),
25
+ };
26
+ }
27
+
28
+ export { ExportCreateRequestFilterFromJSON, ExportCreateRequestFilterFromJSONTyped, ExportCreateRequestFilterToJSON };
@@ -0,0 +1,39 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ /* tslint:disable */
6
+ /* eslint-disable */
7
+ /**
8
+ * Dashboard API
9
+ * Dashboard API documentation
10
+ *
11
+ * The version of the OpenAPI document: 1.0.0
12
+ *
13
+ *
14
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
15
+ * https://openapi-generator.tech
16
+ * Do not edit the class manually.
17
+ */
18
+ /**
19
+ *
20
+ * @export
21
+ * @enum {string}
22
+ */
23
+ exports.ExportFormatEnum = void 0;
24
+ (function (ExportFormatEnum) {
25
+ ExportFormatEnum["Csv"] = "csv";
26
+ })(exports.ExportFormatEnum || (exports.ExportFormatEnum = {}));
27
+ function ExportFormatEnumFromJSON(json) {
28
+ return ExportFormatEnumFromJSONTyped(json);
29
+ }
30
+ function ExportFormatEnumFromJSONTyped(json, ignoreDiscriminator) {
31
+ return json;
32
+ }
33
+ function ExportFormatEnumToJSON(value) {
34
+ return value;
35
+ }
36
+
37
+ exports.ExportFormatEnumFromJSON = ExportFormatEnumFromJSON;
38
+ exports.ExportFormatEnumFromJSONTyped = ExportFormatEnumFromJSONTyped;
39
+ exports.ExportFormatEnumToJSON = ExportFormatEnumToJSON;
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Dashboard API
3
+ * Dashboard 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
+ * @enum {string}
16
+ */
17
+ export declare enum ExportFormatEnum {
18
+ Csv = "csv"
19
+ }
20
+ export declare function ExportFormatEnumFromJSON(json: any): ExportFormatEnum;
21
+ export declare function ExportFormatEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExportFormatEnum;
22
+ export declare function ExportFormatEnumToJSON(value?: ExportFormatEnum | null): any;
@@ -0,0 +1,33 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Dashboard API
5
+ * Dashboard 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
+ * @export
17
+ * @enum {string}
18
+ */
19
+ var ExportFormatEnum;
20
+ (function (ExportFormatEnum) {
21
+ ExportFormatEnum["Csv"] = "csv";
22
+ })(ExportFormatEnum || (ExportFormatEnum = {}));
23
+ function ExportFormatEnumFromJSON(json) {
24
+ return ExportFormatEnumFromJSONTyped(json);
25
+ }
26
+ function ExportFormatEnumFromJSONTyped(json, ignoreDiscriminator) {
27
+ return json;
28
+ }
29
+ function ExportFormatEnumToJSON(value) {
30
+ return value;
31
+ }
32
+
33
+ export { ExportFormatEnum, ExportFormatEnumFromJSON, ExportFormatEnumFromJSONTyped, ExportFormatEnumToJSON };
@@ -0,0 +1,39 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ /* tslint:disable */
6
+ /* eslint-disable */
7
+ /**
8
+ * Dashboard API
9
+ * Dashboard API documentation
10
+ *
11
+ * The version of the OpenAPI document: 1.0.0
12
+ *
13
+ *
14
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
15
+ * https://openapi-generator.tech
16
+ * Do not edit the class manually.
17
+ */
18
+ /**
19
+ *
20
+ * @export
21
+ * @enum {string}
22
+ */
23
+ exports.ExportModelEnum = void 0;
24
+ (function (ExportModelEnum) {
25
+ ExportModelEnum["Users"] = "users";
26
+ })(exports.ExportModelEnum || (exports.ExportModelEnum = {}));
27
+ function ExportModelEnumFromJSON(json) {
28
+ return ExportModelEnumFromJSONTyped(json);
29
+ }
30
+ function ExportModelEnumFromJSONTyped(json, ignoreDiscriminator) {
31
+ return json;
32
+ }
33
+ function ExportModelEnumToJSON(value) {
34
+ return value;
35
+ }
36
+
37
+ exports.ExportModelEnumFromJSON = ExportModelEnumFromJSON;
38
+ exports.ExportModelEnumFromJSONTyped = ExportModelEnumFromJSONTyped;
39
+ exports.ExportModelEnumToJSON = ExportModelEnumToJSON;
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Dashboard API
3
+ * Dashboard 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
+ * @enum {string}
16
+ */
17
+ export declare enum ExportModelEnum {
18
+ Users = "users"
19
+ }
20
+ export declare function ExportModelEnumFromJSON(json: any): ExportModelEnum;
21
+ export declare function ExportModelEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExportModelEnum;
22
+ export declare function ExportModelEnumToJSON(value?: ExportModelEnum | null): any;
@@ -0,0 +1,33 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Dashboard API
5
+ * Dashboard 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
+ * @export
17
+ * @enum {string}
18
+ */
19
+ var ExportModelEnum;
20
+ (function (ExportModelEnum) {
21
+ ExportModelEnum["Users"] = "users";
22
+ })(ExportModelEnum || (ExportModelEnum = {}));
23
+ function ExportModelEnumFromJSON(json) {
24
+ return ExportModelEnumFromJSONTyped(json);
25
+ }
26
+ function ExportModelEnumFromJSONTyped(json, ignoreDiscriminator) {
27
+ return json;
28
+ }
29
+ function ExportModelEnumToJSON(value) {
30
+ return value;
31
+ }
32
+
33
+ export { ExportModelEnum, ExportModelEnumFromJSON, ExportModelEnumFromJSONTyped, ExportModelEnumToJSON };
@@ -0,0 +1,34 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var runtime = require('../runtime.cjs');
6
+ var Export = require('./Export.cjs');
7
+
8
+ /* tslint:disable */
9
+ function ExportsResponseFromJSON(json) {
10
+ return ExportsResponseFromJSONTyped(json);
11
+ }
12
+ function ExportsResponseFromJSONTyped(json, ignoreDiscriminator) {
13
+ if ((json === undefined) || (json === null)) {
14
+ return json;
15
+ }
16
+ return {
17
+ 'exports': !runtime.exists(json, 'exports') ? undefined : (json['exports'].map(Export.ExportFromJSON)),
18
+ };
19
+ }
20
+ function ExportsResponseToJSON(value) {
21
+ if (value === undefined) {
22
+ return undefined;
23
+ }
24
+ if (value === null) {
25
+ return null;
26
+ }
27
+ return {
28
+ 'exports': value.exports === undefined ? undefined : (value.exports.map(Export.ExportToJSON)),
29
+ };
30
+ }
31
+
32
+ exports.ExportsResponseFromJSON = ExportsResponseFromJSON;
33
+ exports.ExportsResponseFromJSONTyped = ExportsResponseFromJSONTyped;
34
+ exports.ExportsResponseToJSON = ExportsResponseToJSON;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * Dashboard API
3
+ * Dashboard 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
+ import { Export } from './Export';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ExportsResponse
17
+ */
18
+ export interface ExportsResponse {
19
+ /**
20
+ *
21
+ * @type {Array<Export>}
22
+ * @memberof ExportsResponse
23
+ */
24
+ exports?: Array<Export>;
25
+ }
26
+ export declare function ExportsResponseFromJSON(json: any): ExportsResponse;
27
+ export declare function ExportsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExportsResponse;
28
+ export declare function ExportsResponseToJSON(value?: ExportsResponse | null): any;
@@ -0,0 +1,28 @@
1
+ import { exists } from '../runtime.js';
2
+ import { ExportFromJSON, ExportToJSON } from './Export.js';
3
+
4
+ /* tslint:disable */
5
+ function ExportsResponseFromJSON(json) {
6
+ return ExportsResponseFromJSONTyped(json);
7
+ }
8
+ function ExportsResponseFromJSONTyped(json, ignoreDiscriminator) {
9
+ if ((json === undefined) || (json === null)) {
10
+ return json;
11
+ }
12
+ return {
13
+ 'exports': !exists(json, 'exports') ? undefined : (json['exports'].map(ExportFromJSON)),
14
+ };
15
+ }
16
+ function ExportsResponseToJSON(value) {
17
+ if (value === undefined) {
18
+ return undefined;
19
+ }
20
+ if (value === null) {
21
+ return null;
22
+ }
23
+ return {
24
+ 'exports': value.exports === undefined ? undefined : (value.exports.map(ExportToJSON)),
25
+ };
26
+ }
27
+
28
+ export { ExportsResponseFromJSON, ExportsResponseFromJSONTyped, ExportsResponseToJSON };
@@ -32,6 +32,7 @@ exports.SubscriptionAdvancedScopeEnum = void 0;
32
32
  SubscriptionAdvancedScopeEnum["AnalyticsVisits"] = "analytics_visits";
33
33
  SubscriptionAdvancedScopeEnum["Captcha"] = "captcha";
34
34
  SubscriptionAdvancedScopeEnum["SigninWithEmail"] = "signin_with_email";
35
+ SubscriptionAdvancedScopeEnum["Gating"] = "gating";
35
36
  })(exports.SubscriptionAdvancedScopeEnum || (exports.SubscriptionAdvancedScopeEnum = {}));
36
37
  function SubscriptionAdvancedScopeEnumFromJSON(json) {
37
38
  return SubscriptionAdvancedScopeEnumFromJSONTyped(json);
@@ -24,7 +24,8 @@ export declare enum SubscriptionAdvancedScopeEnum {
24
24
  AnalyticsUsers = "analytics_users",
25
25
  AnalyticsVisits = "analytics_visits",
26
26
  Captcha = "captcha",
27
- SigninWithEmail = "signin_with_email"
27
+ SigninWithEmail = "signin_with_email",
28
+ Gating = "gating"
28
29
  }
29
30
  export declare function SubscriptionAdvancedScopeEnumFromJSON(json: any): SubscriptionAdvancedScopeEnum;
30
31
  export declare function SubscriptionAdvancedScopeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionAdvancedScopeEnum;
@@ -28,6 +28,7 @@ var SubscriptionAdvancedScopeEnum;
28
28
  SubscriptionAdvancedScopeEnum["AnalyticsVisits"] = "analytics_visits";
29
29
  SubscriptionAdvancedScopeEnum["Captcha"] = "captcha";
30
30
  SubscriptionAdvancedScopeEnum["SigninWithEmail"] = "signin_with_email";
31
+ SubscriptionAdvancedScopeEnum["Gating"] = "gating";
31
32
  })(SubscriptionAdvancedScopeEnum || (SubscriptionAdvancedScopeEnum = {}));
32
33
  function SubscriptionAdvancedScopeEnumFromJSON(json) {
33
34
  return SubscriptionAdvancedScopeEnumFromJSONTyped(json);
@@ -30,6 +30,12 @@ export * from './EnvironmentVisitorsResponseUsers';
30
30
  export * from './EnvironmentsResponse';
31
31
  export * from './EnvironmentsResponseEnvironments';
32
32
  export * from './ErrorMessageWithCode';
33
+ export * from './Export';
34
+ export * from './ExportCreateRequest';
35
+ export * from './ExportCreateRequestFilter';
36
+ export * from './ExportFormatEnum';
37
+ export * from './ExportModelEnum';
38
+ export * from './ExportsResponse';
33
39
  export * from './Forbidden';
34
40
  export * from './ForbiddenErrorPayload';
35
41
  export * from './ForbiddenWithErrorAndPayload';