@dynamic-labs/sdk-api 0.0.263 → 0.0.264
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 +1 -1
- package/src/apis/AllowlistsApi.cjs +2 -0
- package/src/apis/AllowlistsApi.js +2 -0
- package/src/apis/AnalyticsApi.cjs +2 -0
- package/src/apis/AnalyticsApi.js +2 -0
- package/src/apis/ChainalysisApi.cjs +2 -0
- package/src/apis/ChainalysisApi.js +2 -0
- package/src/apis/ChainsApi.cjs +2 -0
- package/src/apis/ChainsApi.js +2 -0
- package/src/apis/EnvironmentsApi.cjs +2 -0
- package/src/apis/EnvironmentsApi.js +2 -0
- package/src/apis/ExportsApi.cjs +2 -0
- package/src/apis/ExportsApi.js +2 -0
- package/src/apis/GatesApi.cjs +2 -0
- package/src/apis/GatesApi.js +2 -0
- package/src/apis/InvitesApi.cjs +2 -0
- package/src/apis/InvitesApi.js +2 -0
- package/src/apis/MembersApi.cjs +2 -0
- package/src/apis/MembersApi.js +2 -0
- package/src/apis/OrganizationsApi.cjs +2 -0
- package/src/apis/OrganizationsApi.js +2 -0
- package/src/apis/OriginsApi.cjs +2 -0
- package/src/apis/OriginsApi.js +2 -0
- package/src/apis/ProjectsApi.cjs +2 -0
- package/src/apis/ProjectsApi.js +2 -0
- package/src/apis/SDKApi.cjs +2 -0
- package/src/apis/SDKApi.js +2 -0
- package/src/apis/SDKViewsApi.cjs +140 -0
- package/src/apis/SDKViewsApi.d.ts +54 -0
- package/src/apis/SDKViewsApi.js +136 -0
- package/src/apis/SessionsApi.cjs +2 -0
- package/src/apis/SessionsApi.js +2 -0
- package/src/apis/SettingsApi.cjs +2 -0
- package/src/apis/SettingsApi.js +2 -0
- package/src/apis/TokensApi.cjs +2 -0
- package/src/apis/TokensApi.js +2 -0
- package/src/apis/UsersApi.cjs +2 -0
- package/src/apis/UsersApi.js +2 -0
- package/src/apis/VisitsApi.cjs +2 -0
- package/src/apis/VisitsApi.js +2 -0
- package/src/apis/WalletsApi.cjs +2 -0
- package/src/apis/WalletsApi.js +2 -0
- package/src/apis/index.d.ts +1 -0
- package/src/index.cjs +34 -0
- package/src/index.js +7 -0
- package/src/models/SdkView.cjs +37 -0
- package/src/models/SdkView.d.ts +35 -0
- package/src/models/SdkView.js +31 -0
- package/src/models/SdkViewSection.cjs +40 -0
- package/src/models/SdkViewSection.d.ts +46 -0
- package/src/models/SdkViewSection.js +34 -0
- package/src/models/SdkViewSectionType.cjs +42 -0
- package/src/models/SdkViewSectionType.d.ts +25 -0
- package/src/models/SdkViewSectionType.js +36 -0
- package/src/models/SdkViewType.cjs +39 -0
- package/src/models/SdkViewType.d.ts +22 -0
- package/src/models/SdkViewType.js +33 -0
- package/src/models/SdkViewUpdateRequest.cjs +34 -0
- package/src/models/SdkViewUpdateRequest.d.ts +28 -0
- package/src/models/SdkViewUpdateRequest.js +28 -0
- package/src/models/SdkViewsResponse.cjs +34 -0
- package/src/models/SdkViewsResponse.d.ts +28 -0
- package/src/models/SdkViewsResponse.js +28 -0
- package/src/models/index.d.ts +6 -0
|
@@ -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 { SdkViewSection } from './SdkViewSection';
|
|
13
|
+
/**
|
|
14
|
+
* Request body to update the sdk view for an environment.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface SdkViewUpdateRequest
|
|
17
|
+
*/
|
|
18
|
+
export interface SdkViewUpdateRequest {
|
|
19
|
+
/**
|
|
20
|
+
* The sections which will be used create the view in the sdk. The sections will be displayed in the order that they appear in the array.
|
|
21
|
+
* @type {Array<SdkViewSection>}
|
|
22
|
+
* @memberof SdkViewUpdateRequest
|
|
23
|
+
*/
|
|
24
|
+
sections?: Array<SdkViewSection>;
|
|
25
|
+
}
|
|
26
|
+
export declare function SdkViewUpdateRequestFromJSON(json: any): SdkViewUpdateRequest;
|
|
27
|
+
export declare function SdkViewUpdateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SdkViewUpdateRequest;
|
|
28
|
+
export declare function SdkViewUpdateRequestToJSON(value?: SdkViewUpdateRequest | null): any;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { exists } from '../runtime.js';
|
|
2
|
+
import { SdkViewSectionFromJSON, SdkViewSectionToJSON } from './SdkViewSection.js';
|
|
3
|
+
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
function SdkViewUpdateRequestFromJSON(json) {
|
|
6
|
+
return SdkViewUpdateRequestFromJSONTyped(json);
|
|
7
|
+
}
|
|
8
|
+
function SdkViewUpdateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
9
|
+
if ((json === undefined) || (json === null)) {
|
|
10
|
+
return json;
|
|
11
|
+
}
|
|
12
|
+
return {
|
|
13
|
+
'sections': !exists(json, 'sections') ? undefined : (json['sections'].map(SdkViewSectionFromJSON)),
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
function SdkViewUpdateRequestToJSON(value) {
|
|
17
|
+
if (value === undefined) {
|
|
18
|
+
return undefined;
|
|
19
|
+
}
|
|
20
|
+
if (value === null) {
|
|
21
|
+
return null;
|
|
22
|
+
}
|
|
23
|
+
return {
|
|
24
|
+
'sections': value.sections === undefined ? undefined : (value.sections.map(SdkViewSectionToJSON)),
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export { SdkViewUpdateRequestFromJSON, SdkViewUpdateRequestFromJSONTyped, SdkViewUpdateRequestToJSON };
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var runtime = require('../runtime.cjs');
|
|
6
|
+
var SdkView = require('./SdkView.cjs');
|
|
7
|
+
|
|
8
|
+
/* tslint:disable */
|
|
9
|
+
function SdkViewsResponseFromJSON(json) {
|
|
10
|
+
return SdkViewsResponseFromJSONTyped(json);
|
|
11
|
+
}
|
|
12
|
+
function SdkViewsResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
13
|
+
if ((json === undefined) || (json === null)) {
|
|
14
|
+
return json;
|
|
15
|
+
}
|
|
16
|
+
return {
|
|
17
|
+
'sdkViews': !runtime.exists(json, 'sdkViews') ? undefined : (json['sdkViews'].map(SdkView.SdkViewFromJSON)),
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
function SdkViewsResponseToJSON(value) {
|
|
21
|
+
if (value === undefined) {
|
|
22
|
+
return undefined;
|
|
23
|
+
}
|
|
24
|
+
if (value === null) {
|
|
25
|
+
return null;
|
|
26
|
+
}
|
|
27
|
+
return {
|
|
28
|
+
'sdkViews': value.sdkViews === undefined ? undefined : (value.sdkViews.map(SdkView.SdkViewToJSON)),
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
exports.SdkViewsResponseFromJSON = SdkViewsResponseFromJSON;
|
|
33
|
+
exports.SdkViewsResponseFromJSONTyped = SdkViewsResponseFromJSONTyped;
|
|
34
|
+
exports.SdkViewsResponseToJSON = SdkViewsResponseToJSON;
|
|
@@ -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 { SdkView } from './SdkView';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface SdkViewsResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface SdkViewsResponse {
|
|
19
|
+
/**
|
|
20
|
+
* Configs used to create the views in the sdk.
|
|
21
|
+
* @type {Array<SdkView>}
|
|
22
|
+
* @memberof SdkViewsResponse
|
|
23
|
+
*/
|
|
24
|
+
sdkViews?: Array<SdkView>;
|
|
25
|
+
}
|
|
26
|
+
export declare function SdkViewsResponseFromJSON(json: any): SdkViewsResponse;
|
|
27
|
+
export declare function SdkViewsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SdkViewsResponse;
|
|
28
|
+
export declare function SdkViewsResponseToJSON(value?: SdkViewsResponse | null): any;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { exists } from '../runtime.js';
|
|
2
|
+
import { SdkViewFromJSON, SdkViewToJSON } from './SdkView.js';
|
|
3
|
+
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
function SdkViewsResponseFromJSON(json) {
|
|
6
|
+
return SdkViewsResponseFromJSONTyped(json);
|
|
7
|
+
}
|
|
8
|
+
function SdkViewsResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
9
|
+
if ((json === undefined) || (json === null)) {
|
|
10
|
+
return json;
|
|
11
|
+
}
|
|
12
|
+
return {
|
|
13
|
+
'sdkViews': !exists(json, 'sdkViews') ? undefined : (json['sdkViews'].map(SdkViewFromJSON)),
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
function SdkViewsResponseToJSON(value) {
|
|
17
|
+
if (value === undefined) {
|
|
18
|
+
return undefined;
|
|
19
|
+
}
|
|
20
|
+
if (value === null) {
|
|
21
|
+
return null;
|
|
22
|
+
}
|
|
23
|
+
return {
|
|
24
|
+
'sdkViews': value.sdkViews === undefined ? undefined : (value.sdkViews.map(SdkViewToJSON)),
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export { SdkViewsResponseFromJSON, SdkViewsResponseFromJSONTyped, SdkViewsResponseToJSON };
|
package/src/models/index.d.ts
CHANGED
|
@@ -130,6 +130,12 @@ export * from './PublishEventsEvents';
|
|
|
130
130
|
export * from './RoleEnum';
|
|
131
131
|
export * from './SdkSettingsRequest';
|
|
132
132
|
export * from './SdkUser';
|
|
133
|
+
export * from './SdkView';
|
|
134
|
+
export * from './SdkViewSection';
|
|
135
|
+
export * from './SdkViewSectionType';
|
|
136
|
+
export * from './SdkViewType';
|
|
137
|
+
export * from './SdkViewUpdateRequest';
|
|
138
|
+
export * from './SdkViewsResponse';
|
|
133
139
|
export * from './Session';
|
|
134
140
|
export * from './SocialSignInProvider';
|
|
135
141
|
export * from './SocialSignInProviderEnum';
|