@dynamic-labs/sdk-api-core 0.0.1067 → 0.0.1069
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/SDKApi.cjs +62 -0
- package/src/apis/SDKApi.cjs.map +1 -1
- package/src/apis/SDKApi.d.ts +26 -1
- package/src/apis/SDKApi.js +62 -0
- package/src/apis/SDKApi.js.map +1 -1
- package/src/apis/WaasApi.cjs +1 -1
- package/src/apis/WaasApi.js +1 -1
- package/src/index.cjs +28 -0
- package/src/index.cjs.map +1 -1
- package/src/index.js +7 -0
- package/src/index.js.map +1 -1
- package/src/models/AddBusinessAccountSignerSdkRequest.cjs +7 -0
- package/src/models/AddBusinessAccountSignerSdkRequest.cjs.map +1 -1
- package/src/models/AddBusinessAccountSignerSdkRequest.d.ts +20 -0
- package/src/models/AddBusinessAccountSignerSdkRequest.js +7 -0
- package/src/models/AddBusinessAccountSignerSdkRequest.js.map +1 -1
- package/src/models/FlowFeeClaimRequest.cjs +37 -0
- package/src/models/FlowFeeClaimRequest.cjs.map +1 -0
- package/src/models/FlowFeeClaimRequest.d.ts +39 -0
- package/src/models/FlowFeeClaimRequest.js +31 -0
- package/src/models/FlowFeeClaimRequest.js.map +1 -0
- package/src/models/FlowFeeClaimResponse.cjs +35 -0
- package/src/models/FlowFeeClaimResponse.cjs.map +1 -0
- package/src/models/FlowFeeClaimResponse.d.ts +34 -0
- package/src/models/FlowFeeClaimResponse.js +29 -0
- package/src/models/FlowFeeClaimResponse.js.map +1 -0
- package/src/models/FlowFeeClaimSignature.cjs +45 -0
- package/src/models/FlowFeeClaimSignature.cjs.map +1 -0
- package/src/models/FlowFeeClaimSignature.d.ts +33 -0
- package/src/models/FlowFeeClaimSignature.js +39 -0
- package/src/models/FlowFeeClaimSignature.js.map +1 -0
- package/src/models/FlowFeeClaimStep.cjs +49 -0
- package/src/models/FlowFeeClaimStep.cjs.map +1 -0
- package/src/models/FlowFeeClaimStep.d.ts +45 -0
- package/src/models/FlowFeeClaimStep.js +43 -0
- package/src/models/FlowFeeClaimStep.js.map +1 -0
- package/src/models/FlowFeeClaimSubmitRequest.cjs +35 -0
- package/src/models/FlowFeeClaimSubmitRequest.cjs.map +1 -0
- package/src/models/FlowFeeClaimSubmitRequest.d.ts +34 -0
- package/src/models/FlowFeeClaimSubmitRequest.js +29 -0
- package/src/models/FlowFeeClaimSubmitRequest.js.map +1 -0
- package/src/models/FlowFeeClaimSubmitResponse.cjs +35 -0
- package/src/models/FlowFeeClaimSubmitResponse.cjs.map +1 -0
- package/src/models/FlowFeeClaimSubmitResponse.d.ts +33 -0
- package/src/models/FlowFeeClaimSubmitResponse.js +29 -0
- package/src/models/FlowFeeClaimSubmitResponse.js.map +1 -0
- package/src/models/InlineObject5.cjs +35 -0
- package/src/models/InlineObject5.cjs.map +1 -0
- package/src/models/InlineObject5.d.ts +33 -0
- package/src/models/InlineObject5.js +29 -0
- package/src/models/InlineObject5.js.map +1 -0
- package/src/models/index.d.ts +7 -0
|
@@ -0,0 +1,49 @@
|
|
|
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
|
+
function FlowFeeClaimStepFromJSON(json) {
|
|
19
|
+
return FlowFeeClaimStepFromJSONTyped(json);
|
|
20
|
+
}
|
|
21
|
+
function FlowFeeClaimStepFromJSONTyped(json, ignoreDiscriminator) {
|
|
22
|
+
if ((json === undefined) || (json === null)) {
|
|
23
|
+
return json;
|
|
24
|
+
}
|
|
25
|
+
return {
|
|
26
|
+
'action': json['action'],
|
|
27
|
+
'data': json['data'],
|
|
28
|
+
'id': json['id'],
|
|
29
|
+
'type': json['type'],
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
function FlowFeeClaimStepToJSON(value) {
|
|
33
|
+
if (value === undefined) {
|
|
34
|
+
return undefined;
|
|
35
|
+
}
|
|
36
|
+
if (value === null) {
|
|
37
|
+
return null;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
'action': value.action,
|
|
41
|
+
'data': value.data,
|
|
42
|
+
'id': value.id,
|
|
43
|
+
'type': value.type,
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
exports.FlowFeeClaimStepFromJSON = FlowFeeClaimStepFromJSON;
|
|
48
|
+
exports.FlowFeeClaimStepFromJSONTyped = FlowFeeClaimStepFromJSONTyped;
|
|
49
|
+
exports.FlowFeeClaimStepToJSON = FlowFeeClaimStepToJSON;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FlowFeeClaimStep.cjs","sources":["../../../../../libs/sdk-api-core/src/models/FlowFeeClaimStep.ts"],"sourcesContent":null,"names":[],"mappings":";;;;AAAA;AACA;AACA;;;;;;;;;;AAUG;AAmCG,SAAU,wBAAwB,CAAC,IAAS,EAAA;AAC9C,IAAA,OAAO,6BAA6B,CAAC,IAAW,CAAC,CAAC;AACtD,CAAC;AAEe,SAAA,6BAA6B,CAAC,IAAS,EAAE,mBAA4B,EAAA;AACjF,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC;AACxB,QAAA,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;AACpB,QAAA,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC;AAChB,QAAA,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;KACvB,CAAC;AACN,CAAC;AAEK,SAAU,sBAAsB,CAAC,KAA+B,EAAA;AAClE,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,QAAQ,EAAE,KAAK,CAAC,MAAM;QACtB,MAAM,EAAE,KAAK,CAAC,IAAI;QAClB,IAAI,EAAE,KAAK,CAAC,EAAE;QACd,MAAM,EAAE,KAAK,CAAC,IAAI;KACrB,CAAC;AACN;;;;;;"}
|
|
@@ -0,0 +1,45 @@
|
|
|
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
|
+
* A single step the recipient completes to authorize a claim, typically a request to sign an opaque payload. Steps are executed against whichever provider holds the balance; that provider is an internal detail and is not surfaced to the caller.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface FlowFeeClaimStep
|
|
16
|
+
*/
|
|
17
|
+
export interface FlowFeeClaimStep {
|
|
18
|
+
/**
|
|
19
|
+
* Human-readable description of the step
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof FlowFeeClaimStep
|
|
22
|
+
*/
|
|
23
|
+
action: string;
|
|
24
|
+
/**
|
|
25
|
+
* Opaque payload the recipient must act on (e.g. sign)
|
|
26
|
+
* @type {object}
|
|
27
|
+
* @memberof FlowFeeClaimStep
|
|
28
|
+
*/
|
|
29
|
+
data: object;
|
|
30
|
+
/**
|
|
31
|
+
* Identifier for the step, echoed back when submitting its signature
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof FlowFeeClaimStep
|
|
34
|
+
*/
|
|
35
|
+
id: string;
|
|
36
|
+
/**
|
|
37
|
+
* The type of step, such as a signature request
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof FlowFeeClaimStep
|
|
40
|
+
*/
|
|
41
|
+
type: string;
|
|
42
|
+
}
|
|
43
|
+
export declare function FlowFeeClaimStepFromJSON(json: any): FlowFeeClaimStep;
|
|
44
|
+
export declare function FlowFeeClaimStepFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowFeeClaimStep;
|
|
45
|
+
export declare function FlowFeeClaimStepToJSON(value?: FlowFeeClaimStep | null): any;
|
|
@@ -0,0 +1,43 @@
|
|
|
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
|
+
function FlowFeeClaimStepFromJSON(json) {
|
|
15
|
+
return FlowFeeClaimStepFromJSONTyped(json);
|
|
16
|
+
}
|
|
17
|
+
function FlowFeeClaimStepFromJSONTyped(json, ignoreDiscriminator) {
|
|
18
|
+
if ((json === undefined) || (json === null)) {
|
|
19
|
+
return json;
|
|
20
|
+
}
|
|
21
|
+
return {
|
|
22
|
+
'action': json['action'],
|
|
23
|
+
'data': json['data'],
|
|
24
|
+
'id': json['id'],
|
|
25
|
+
'type': json['type'],
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
function FlowFeeClaimStepToJSON(value) {
|
|
29
|
+
if (value === undefined) {
|
|
30
|
+
return undefined;
|
|
31
|
+
}
|
|
32
|
+
if (value === null) {
|
|
33
|
+
return null;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'action': value.action,
|
|
37
|
+
'data': value.data,
|
|
38
|
+
'id': value.id,
|
|
39
|
+
'type': value.type,
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export { FlowFeeClaimStepFromJSON, FlowFeeClaimStepFromJSONTyped, FlowFeeClaimStepToJSON };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FlowFeeClaimStep.js","sources":["../../../../../libs/sdk-api-core/src/models/FlowFeeClaimStep.ts"],"sourcesContent":null,"names":[],"mappings":"AAAA;AACA;AACA;;;;;;;;;;AAUG;AAmCG,SAAU,wBAAwB,CAAC,IAAS,EAAA;AAC9C,IAAA,OAAO,6BAA6B,CAAC,IAAW,CAAC,CAAC;AACtD,CAAC;AAEe,SAAA,6BAA6B,CAAC,IAAS,EAAE,mBAA4B,EAAA;AACjF,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC;AACxB,QAAA,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;AACpB,QAAA,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC;AAChB,QAAA,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;KACvB,CAAC;AACN,CAAC;AAEK,SAAU,sBAAsB,CAAC,KAA+B,EAAA;AAClE,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,QAAQ,EAAE,KAAK,CAAC,MAAM;QACtB,MAAM,EAAE,KAAK,CAAC,IAAI;QAClB,IAAI,EAAE,KAAK,CAAC,EAAE;QACd,MAAM,EAAE,KAAK,CAAC,IAAI;KACrB,CAAC;AACN;;;;"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var FlowFeeClaimSignature = require('./FlowFeeClaimSignature.cjs');
|
|
6
|
+
|
|
7
|
+
/* tslint:disable */
|
|
8
|
+
function FlowFeeClaimSubmitRequestFromJSON(json) {
|
|
9
|
+
return FlowFeeClaimSubmitRequestFromJSONTyped(json);
|
|
10
|
+
}
|
|
11
|
+
function FlowFeeClaimSubmitRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
12
|
+
if ((json === undefined) || (json === null)) {
|
|
13
|
+
return json;
|
|
14
|
+
}
|
|
15
|
+
return {
|
|
16
|
+
'requestId': json['requestId'],
|
|
17
|
+
'signatures': (json['signatures'].map(FlowFeeClaimSignature.FlowFeeClaimSignatureFromJSON)),
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
function FlowFeeClaimSubmitRequestToJSON(value) {
|
|
21
|
+
if (value === undefined) {
|
|
22
|
+
return undefined;
|
|
23
|
+
}
|
|
24
|
+
if (value === null) {
|
|
25
|
+
return null;
|
|
26
|
+
}
|
|
27
|
+
return {
|
|
28
|
+
'requestId': value.requestId,
|
|
29
|
+
'signatures': (value.signatures.map(FlowFeeClaimSignature.FlowFeeClaimSignatureToJSON)),
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
exports.FlowFeeClaimSubmitRequestFromJSON = FlowFeeClaimSubmitRequestFromJSON;
|
|
34
|
+
exports.FlowFeeClaimSubmitRequestFromJSONTyped = FlowFeeClaimSubmitRequestFromJSONTyped;
|
|
35
|
+
exports.FlowFeeClaimSubmitRequestToJSON = FlowFeeClaimSubmitRequestToJSON;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FlowFeeClaimSubmitRequest.cjs","sources":["../../../../../libs/sdk-api-core/src/models/FlowFeeClaimSubmitRequest.ts"],"sourcesContent":null,"names":["FlowFeeClaimSignatureFromJSON","FlowFeeClaimSignatureToJSON"],"mappings":";;;;;;AAAA;AA0CM,SAAU,iCAAiC,CAAC,IAAS,EAAA;AACvD,IAAA,OAAO,sCAAsC,CAAC,IAAW,CAAC,CAAC;AAC/D,CAAC;AAEe,SAAA,sCAAsC,CAAC,IAAS,EAAE,mBAA4B,EAAA;AAC1F,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC;QAC9B,YAAY,GAAI,IAAI,CAAC,YAAY,CAAgB,CAAC,GAAG,CAACA,mDAA6B,CAAC,CAAC;KACxF,CAAC;AACN,CAAC;AAEK,SAAU,+BAA+B,CAAC,KAAwC,EAAA;AACpF,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,WAAW,EAAE,KAAK,CAAC,SAAS;QAC5B,YAAY,GAAI,KAAK,CAAC,UAAyB,CAAC,GAAG,CAACC,iDAA2B,CAAC,CAAC;KACpF,CAAC;AACN;;;;;;"}
|
|
@@ -0,0 +1,34 @@
|
|
|
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 { FlowFeeClaimSignature } from './FlowFeeClaimSignature';
|
|
13
|
+
/**
|
|
14
|
+
* Submit the signatures for a previously initiated claim. The backend resolves the provider(s) from the requestId and executes the claim(s).
|
|
15
|
+
* @export
|
|
16
|
+
* @interface FlowFeeClaimSubmitRequest
|
|
17
|
+
*/
|
|
18
|
+
export interface FlowFeeClaimSubmitRequest {
|
|
19
|
+
/**
|
|
20
|
+
* The requestId returned when the claim was initiated
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof FlowFeeClaimSubmitRequest
|
|
23
|
+
*/
|
|
24
|
+
requestId: string;
|
|
25
|
+
/**
|
|
26
|
+
* One signature per step returned by the claim initiation
|
|
27
|
+
* @type {Array<FlowFeeClaimSignature>}
|
|
28
|
+
* @memberof FlowFeeClaimSubmitRequest
|
|
29
|
+
*/
|
|
30
|
+
signatures: Array<FlowFeeClaimSignature>;
|
|
31
|
+
}
|
|
32
|
+
export declare function FlowFeeClaimSubmitRequestFromJSON(json: any): FlowFeeClaimSubmitRequest;
|
|
33
|
+
export declare function FlowFeeClaimSubmitRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowFeeClaimSubmitRequest;
|
|
34
|
+
export declare function FlowFeeClaimSubmitRequestToJSON(value?: FlowFeeClaimSubmitRequest | null): any;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { FlowFeeClaimSignatureFromJSON, FlowFeeClaimSignatureToJSON } from './FlowFeeClaimSignature.js';
|
|
2
|
+
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
function FlowFeeClaimSubmitRequestFromJSON(json) {
|
|
5
|
+
return FlowFeeClaimSubmitRequestFromJSONTyped(json);
|
|
6
|
+
}
|
|
7
|
+
function FlowFeeClaimSubmitRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
8
|
+
if ((json === undefined) || (json === null)) {
|
|
9
|
+
return json;
|
|
10
|
+
}
|
|
11
|
+
return {
|
|
12
|
+
'requestId': json['requestId'],
|
|
13
|
+
'signatures': (json['signatures'].map(FlowFeeClaimSignatureFromJSON)),
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
function FlowFeeClaimSubmitRequestToJSON(value) {
|
|
17
|
+
if (value === undefined) {
|
|
18
|
+
return undefined;
|
|
19
|
+
}
|
|
20
|
+
if (value === null) {
|
|
21
|
+
return null;
|
|
22
|
+
}
|
|
23
|
+
return {
|
|
24
|
+
'requestId': value.requestId,
|
|
25
|
+
'signatures': (value.signatures.map(FlowFeeClaimSignatureToJSON)),
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export { FlowFeeClaimSubmitRequestFromJSON, FlowFeeClaimSubmitRequestFromJSONTyped, FlowFeeClaimSubmitRequestToJSON };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FlowFeeClaimSubmitRequest.js","sources":["../../../../../libs/sdk-api-core/src/models/FlowFeeClaimSubmitRequest.ts"],"sourcesContent":null,"names":[],"mappings":";;AAAA;AA0CM,SAAU,iCAAiC,CAAC,IAAS,EAAA;AACvD,IAAA,OAAO,sCAAsC,CAAC,IAAW,CAAC,CAAC;AAC/D,CAAC;AAEe,SAAA,sCAAsC,CAAC,IAAS,EAAE,mBAA4B,EAAA;AAC1F,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC;QAC9B,YAAY,GAAI,IAAI,CAAC,YAAY,CAAgB,CAAC,GAAG,CAAC,6BAA6B,CAAC,CAAC;KACxF,CAAC;AACN,CAAC;AAEK,SAAU,+BAA+B,CAAC,KAAwC,EAAA;AACpF,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,WAAW,EAAE,KAAK,CAAC,SAAS;QAC5B,YAAY,GAAI,KAAK,CAAC,UAAyB,CAAC,GAAG,CAAC,2BAA2B,CAAC,CAAC;KACpF,CAAC;AACN;;;;"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var runtime = require('../runtime.cjs');
|
|
6
|
+
|
|
7
|
+
/* tslint:disable */
|
|
8
|
+
function FlowFeeClaimSubmitResponseFromJSON(json) {
|
|
9
|
+
return FlowFeeClaimSubmitResponseFromJSONTyped(json);
|
|
10
|
+
}
|
|
11
|
+
function FlowFeeClaimSubmitResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
12
|
+
if ((json === undefined) || (json === null)) {
|
|
13
|
+
return json;
|
|
14
|
+
}
|
|
15
|
+
return {
|
|
16
|
+
'status': json['status'],
|
|
17
|
+
'txHashes': !runtime.exists(json, 'txHashes') ? undefined : json['txHashes'],
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
function FlowFeeClaimSubmitResponseToJSON(value) {
|
|
21
|
+
if (value === undefined) {
|
|
22
|
+
return undefined;
|
|
23
|
+
}
|
|
24
|
+
if (value === null) {
|
|
25
|
+
return null;
|
|
26
|
+
}
|
|
27
|
+
return {
|
|
28
|
+
'status': value.status,
|
|
29
|
+
'txHashes': value.txHashes,
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
exports.FlowFeeClaimSubmitResponseFromJSON = FlowFeeClaimSubmitResponseFromJSON;
|
|
34
|
+
exports.FlowFeeClaimSubmitResponseFromJSONTyped = FlowFeeClaimSubmitResponseFromJSONTyped;
|
|
35
|
+
exports.FlowFeeClaimSubmitResponseToJSON = FlowFeeClaimSubmitResponseToJSON;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FlowFeeClaimSubmitResponse.cjs","sources":["../../../../../libs/sdk-api-core/src/models/FlowFeeClaimSubmitResponse.ts"],"sourcesContent":null,"names":["exists"],"mappings":";;;;;;AAAA;AAmCM,SAAU,kCAAkC,CAAC,IAAS,EAAA;AACxD,IAAA,OAAO,uCAAuC,CAAC,IAAW,CAAC,CAAC;AAChE,CAAC;AAEe,SAAA,uCAAuC,CAAC,IAAS,EAAE,mBAA4B,EAAA;AAC3F,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC;AACxB,QAAA,UAAU,EAAE,CAACA,cAAM,CAAC,IAAI,EAAE,UAAU,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC;KACvE,CAAC;AACN,CAAC;AAEK,SAAU,gCAAgC,CAAC,KAAyC,EAAA;AACtF,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,QAAQ,EAAE,KAAK,CAAC,MAAM;QACtB,UAAU,EAAE,KAAK,CAAC,QAAQ;KAC7B,CAAC;AACN;;;;;;"}
|
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
* Result of submitting a fee claim.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface FlowFeeClaimSubmitResponse
|
|
16
|
+
*/
|
|
17
|
+
export interface FlowFeeClaimSubmitResponse {
|
|
18
|
+
/**
|
|
19
|
+
* Status of the submitted claim
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof FlowFeeClaimSubmitResponse
|
|
22
|
+
*/
|
|
23
|
+
status: string;
|
|
24
|
+
/**
|
|
25
|
+
* On-chain transaction hashes for any claims that settled on-chain
|
|
26
|
+
* @type {Array<string>}
|
|
27
|
+
* @memberof FlowFeeClaimSubmitResponse
|
|
28
|
+
*/
|
|
29
|
+
txHashes?: Array<string>;
|
|
30
|
+
}
|
|
31
|
+
export declare function FlowFeeClaimSubmitResponseFromJSON(json: any): FlowFeeClaimSubmitResponse;
|
|
32
|
+
export declare function FlowFeeClaimSubmitResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowFeeClaimSubmitResponse;
|
|
33
|
+
export declare function FlowFeeClaimSubmitResponseToJSON(value?: FlowFeeClaimSubmitResponse | null): any;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { exists } from '../runtime.js';
|
|
2
|
+
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
function FlowFeeClaimSubmitResponseFromJSON(json) {
|
|
5
|
+
return FlowFeeClaimSubmitResponseFromJSONTyped(json);
|
|
6
|
+
}
|
|
7
|
+
function FlowFeeClaimSubmitResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
8
|
+
if ((json === undefined) || (json === null)) {
|
|
9
|
+
return json;
|
|
10
|
+
}
|
|
11
|
+
return {
|
|
12
|
+
'status': json['status'],
|
|
13
|
+
'txHashes': !exists(json, 'txHashes') ? undefined : json['txHashes'],
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
function FlowFeeClaimSubmitResponseToJSON(value) {
|
|
17
|
+
if (value === undefined) {
|
|
18
|
+
return undefined;
|
|
19
|
+
}
|
|
20
|
+
if (value === null) {
|
|
21
|
+
return null;
|
|
22
|
+
}
|
|
23
|
+
return {
|
|
24
|
+
'status': value.status,
|
|
25
|
+
'txHashes': value.txHashes,
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export { FlowFeeClaimSubmitResponseFromJSON, FlowFeeClaimSubmitResponseFromJSONTyped, FlowFeeClaimSubmitResponseToJSON };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FlowFeeClaimSubmitResponse.js","sources":["../../../../../libs/sdk-api-core/src/models/FlowFeeClaimSubmitResponse.ts"],"sourcesContent":null,"names":[],"mappings":";;AAAA;AAmCM,SAAU,kCAAkC,CAAC,IAAS,EAAA;AACxD,IAAA,OAAO,uCAAuC,CAAC,IAAW,CAAC,CAAC;AAChE,CAAC;AAEe,SAAA,uCAAuC,CAAC,IAAS,EAAE,mBAA4B,EAAA;AAC3F,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC;AACxB,QAAA,UAAU,EAAE,CAAC,MAAM,CAAC,IAAI,EAAE,UAAU,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC;KACvE,CAAC;AACN,CAAC;AAEK,SAAU,gCAAgC,CAAC,KAAyC,EAAA;AACtF,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,QAAQ,EAAE,KAAK,CAAC,MAAM;QACtB,UAAU,EAAE,KAAK,CAAC,QAAQ;KAC7B,CAAC;AACN;;;;"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var runtime = require('../runtime.cjs');
|
|
6
|
+
|
|
7
|
+
/* tslint:disable */
|
|
8
|
+
function InlineObject5FromJSON(json) {
|
|
9
|
+
return InlineObject5FromJSONTyped(json);
|
|
10
|
+
}
|
|
11
|
+
function InlineObject5FromJSONTyped(json, ignoreDiscriminator) {
|
|
12
|
+
if ((json === undefined) || (json === null)) {
|
|
13
|
+
return json;
|
|
14
|
+
}
|
|
15
|
+
return {
|
|
16
|
+
'walletId': json['walletId'],
|
|
17
|
+
'businessAccountId': !runtime.exists(json, 'businessAccountId') ? undefined : json['businessAccountId'],
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
function InlineObject5ToJSON(value) {
|
|
21
|
+
if (value === undefined) {
|
|
22
|
+
return undefined;
|
|
23
|
+
}
|
|
24
|
+
if (value === null) {
|
|
25
|
+
return null;
|
|
26
|
+
}
|
|
27
|
+
return {
|
|
28
|
+
'walletId': value.walletId,
|
|
29
|
+
'businessAccountId': value.businessAccountId,
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
exports.InlineObject5FromJSON = InlineObject5FromJSON;
|
|
34
|
+
exports.InlineObject5FromJSONTyped = InlineObject5FromJSONTyped;
|
|
35
|
+
exports.InlineObject5ToJSON = InlineObject5ToJSON;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InlineObject5.cjs","sources":["../../../../../libs/sdk-api-core/src/models/InlineObject5.ts"],"sourcesContent":null,"names":["exists"],"mappings":";;;;;;AAAA;AAmCM,SAAU,qBAAqB,CAAC,IAAS,EAAA;AAC3C,IAAA,OAAO,0BAA0B,CAAC,IAAW,CAAC,CAAC;AACnD,CAAC;AAEe,SAAA,0BAA0B,CAAC,IAAS,EAAE,mBAA4B,EAAA;AAC9E,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC;AAC5B,QAAA,mBAAmB,EAAE,CAACA,cAAM,CAAC,IAAI,EAAE,mBAAmB,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,mBAAmB,CAAC;KAClG,CAAC;AACN,CAAC;AAEK,SAAU,mBAAmB,CAAC,KAA4B,EAAA;AAC5D,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,UAAU,EAAE,KAAK,CAAC,QAAQ;QAC1B,mBAAmB,EAAE,KAAK,CAAC,iBAAiB;KAC/C,CAAC;AACN;;;;;;"}
|
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
* @interface InlineObject5
|
|
16
|
+
*/
|
|
17
|
+
export interface InlineObject5 {
|
|
18
|
+
/**
|
|
19
|
+
* The existing wallet (Wallets.id) to add.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof InlineObject5
|
|
22
|
+
*/
|
|
23
|
+
walletId: string;
|
|
24
|
+
/**
|
|
25
|
+
* Target business account. Omit to find-or-create the per-wallet business account.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof InlineObject5
|
|
28
|
+
*/
|
|
29
|
+
businessAccountId?: string;
|
|
30
|
+
}
|
|
31
|
+
export declare function InlineObject5FromJSON(json: any): InlineObject5;
|
|
32
|
+
export declare function InlineObject5FromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineObject5;
|
|
33
|
+
export declare function InlineObject5ToJSON(value?: InlineObject5 | null): any;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { exists } from '../runtime.js';
|
|
2
|
+
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
function InlineObject5FromJSON(json) {
|
|
5
|
+
return InlineObject5FromJSONTyped(json);
|
|
6
|
+
}
|
|
7
|
+
function InlineObject5FromJSONTyped(json, ignoreDiscriminator) {
|
|
8
|
+
if ((json === undefined) || (json === null)) {
|
|
9
|
+
return json;
|
|
10
|
+
}
|
|
11
|
+
return {
|
|
12
|
+
'walletId': json['walletId'],
|
|
13
|
+
'businessAccountId': !exists(json, 'businessAccountId') ? undefined : json['businessAccountId'],
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
function InlineObject5ToJSON(value) {
|
|
17
|
+
if (value === undefined) {
|
|
18
|
+
return undefined;
|
|
19
|
+
}
|
|
20
|
+
if (value === null) {
|
|
21
|
+
return null;
|
|
22
|
+
}
|
|
23
|
+
return {
|
|
24
|
+
'walletId': value.walletId,
|
|
25
|
+
'businessAccountId': value.businessAccountId,
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export { InlineObject5FromJSON, InlineObject5FromJSONTyped, InlineObject5ToJSON };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InlineObject5.js","sources":["../../../../../libs/sdk-api-core/src/models/InlineObject5.ts"],"sourcesContent":null,"names":[],"mappings":";;AAAA;AAmCM,SAAU,qBAAqB,CAAC,IAAS,EAAA;AAC3C,IAAA,OAAO,0BAA0B,CAAC,IAAW,CAAC,CAAC;AACnD,CAAC;AAEe,SAAA,0BAA0B,CAAC,IAAS,EAAE,mBAA4B,EAAA;AAC9E,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC;AAC5B,QAAA,mBAAmB,EAAE,CAAC,MAAM,CAAC,IAAI,EAAE,mBAAmB,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,mBAAmB,CAAC;KAClG,CAAC;AACN,CAAC;AAEK,SAAU,mBAAmB,CAAC,KAA4B,EAAA;AAC5D,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,UAAU,EAAE,KAAK,CAAC,QAAQ;QAC1B,mBAAmB,EAAE,KAAK,CAAC,iBAAiB;KAC/C,CAAC;AACN;;;;"}
|
package/src/models/index.d.ts
CHANGED
|
@@ -160,6 +160,12 @@ export * from './FlowExchangeSource';
|
|
|
160
160
|
export * from './FlowExecutionStateEnum';
|
|
161
161
|
export * from './FlowFailure';
|
|
162
162
|
export * from './FlowFeeBreakdown';
|
|
163
|
+
export * from './FlowFeeClaimRequest';
|
|
164
|
+
export * from './FlowFeeClaimResponse';
|
|
165
|
+
export * from './FlowFeeClaimSignature';
|
|
166
|
+
export * from './FlowFeeClaimStep';
|
|
167
|
+
export * from './FlowFeeClaimSubmitRequest';
|
|
168
|
+
export * from './FlowFeeClaimSubmitResponse';
|
|
163
169
|
export * from './FlowFeeConfig';
|
|
164
170
|
export * from './FlowGasEstimate';
|
|
165
171
|
export * from './FlowModeEnum';
|
|
@@ -207,6 +213,7 @@ export * from './InlineObject1';
|
|
|
207
213
|
export * from './InlineObject2';
|
|
208
214
|
export * from './InlineObject3';
|
|
209
215
|
export * from './InlineObject4';
|
|
216
|
+
export * from './InlineObject5';
|
|
210
217
|
export * from './InlineResponse200';
|
|
211
218
|
export * from './InlineResponse2001';
|
|
212
219
|
export * from './InlineResponse2001AllowedPrograms';
|