@trinsic/api 0.3.0 → 0.4.0
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/.openapi-generator/FILES +3 -3
- package/.openapi-generator/VERSION +1 -1
- package/README.md +2 -2
- package/dist/apis/AttachmentsApi.d.ts +13 -10
- package/dist/apis/AttachmentsApi.js +7 -5
- package/dist/apis/NetworkApi.d.ts +10 -4
- package/dist/apis/NetworkApi.js +4 -0
- package/dist/apis/SessionsApi.d.ts +45 -30
- package/dist/apis/SessionsApi.js +30 -20
- package/dist/esm/apis/AttachmentsApi.d.ts +13 -10
- package/dist/esm/apis/AttachmentsApi.js +8 -6
- package/dist/esm/apis/NetworkApi.d.ts +10 -4
- package/dist/esm/apis/NetworkApi.js +4 -0
- package/dist/esm/apis/SessionsApi.d.ts +45 -30
- package/dist/esm/apis/SessionsApi.js +31 -21
- package/dist/esm/models/GetAttachmentRequest.d.ts +31 -0
- package/dist/esm/models/{ExchangeAttachmentAccessKeyRequest.js → GetAttachmentRequest.js} +6 -6
- package/dist/esm/models/GetSessionResultRequest.d.ts +31 -0
- package/dist/esm/models/{ExchangeResultsKeyRequest.js → GetSessionResultRequest.js} +6 -6
- package/dist/esm/models/GetSessionResultResponse.d.ts +39 -0
- package/dist/esm/models/{ExchangeResultsKeyResponse.js → GetSessionResultResponse.js} +6 -6
- package/dist/esm/models/index.d.ts +3 -3
- package/dist/esm/models/index.js +3 -3
- package/dist/models/GetAttachmentRequest.d.ts +31 -0
- package/dist/models/{ExchangeAttachmentAccessKeyRequest.js → GetAttachmentRequest.js} +10 -10
- package/dist/models/GetSessionResultRequest.d.ts +31 -0
- package/dist/models/{ExchangeResultsKeyRequest.js → GetSessionResultRequest.js} +10 -10
- package/dist/models/GetSessionResultResponse.d.ts +39 -0
- package/dist/models/{ExchangeResultsKeyResponse.js → GetSessionResultResponse.js} +10 -10
- package/dist/models/index.d.ts +3 -3
- package/dist/models/index.js +3 -3
- package/package.json +1 -1
- package/src/apis/AttachmentsApi.ts +18 -15
- package/src/apis/NetworkApi.ts +10 -4
- package/src/apis/SessionsApi.ts +63 -48
- package/src/models/{ExchangeAttachmentAccessKeyRequest.ts → GetAttachmentRequest.ts} +9 -9
- package/src/models/{ExchangeResultsKeyRequest.ts → GetSessionResultRequest.ts} +9 -9
- package/src/models/{ExchangeResultsKeyResponse.ts → GetSessionResultResponse.ts} +10 -10
- package/src/models/OrderDirection.ts +1 -1
- package/src/models/Session.ts +2 -0
- package/src/models/SessionFailCode.ts +1 -1
- package/src/models/SessionOrdering.ts +1 -1
- package/src/models/SessionState.ts +1 -1
- package/src/models/Verification.ts +2 -0
- package/src/models/VerificationFailCode.ts +1 -1
- package/src/models/index.ts +3 -3
- package/dist/esm/models/ExchangeAttachmentAccessKeyRequest.d.ts +0 -31
- package/dist/esm/models/ExchangeResultsKeyRequest.d.ts +0 -31
- package/dist/esm/models/ExchangeResultsKeyResponse.d.ts +0 -39
- package/dist/models/ExchangeAttachmentAccessKeyRequest.d.ts +0 -31
- package/dist/models/ExchangeResultsKeyRequest.d.ts +0 -31
- package/dist/models/ExchangeResultsKeyResponse.d.ts +0 -39
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Connect API
|
|
3
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: v1
|
|
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 type { IdentityData } from './IdentityData';
|
|
13
|
-
import type { Session } from './Session';
|
|
14
|
-
/**
|
|
15
|
-
*
|
|
16
|
-
* @export
|
|
17
|
-
* @interface ExchangeResultsKeyResponse
|
|
18
|
-
*/
|
|
19
|
-
export interface ExchangeResultsKeyResponse {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {Session}
|
|
23
|
-
* @memberof ExchangeResultsKeyResponse
|
|
24
|
-
*/
|
|
25
|
-
session: Session;
|
|
26
|
-
/**
|
|
27
|
-
*
|
|
28
|
-
* @type {IdentityData}
|
|
29
|
-
* @memberof ExchangeResultsKeyResponse
|
|
30
|
-
*/
|
|
31
|
-
identityData?: IdentityData;
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* Check if a given object implements the ExchangeResultsKeyResponse interface.
|
|
35
|
-
*/
|
|
36
|
-
export declare function instanceOfExchangeResultsKeyResponse(value: object): value is ExchangeResultsKeyResponse;
|
|
37
|
-
export declare function ExchangeResultsKeyResponseFromJSON(json: any): ExchangeResultsKeyResponse;
|
|
38
|
-
export declare function ExchangeResultsKeyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExchangeResultsKeyResponse;
|
|
39
|
-
export declare function ExchangeResultsKeyResponseToJSON(value?: ExchangeResultsKeyResponse | null): any;
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Connect API
|
|
3
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: v1
|
|
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 ExchangeAttachmentAccessKeyRequest
|
|
16
|
-
*/
|
|
17
|
-
export interface ExchangeAttachmentAccessKeyRequest {
|
|
18
|
-
/**
|
|
19
|
-
* The Attachment Access Key to exchange for the raw file contents of the related Attachment
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof ExchangeAttachmentAccessKeyRequest
|
|
22
|
-
*/
|
|
23
|
-
attachmentAccessKey: string;
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* Check if a given object implements the ExchangeAttachmentAccessKeyRequest interface.
|
|
27
|
-
*/
|
|
28
|
-
export declare function instanceOfExchangeAttachmentAccessKeyRequest(value: object): value is ExchangeAttachmentAccessKeyRequest;
|
|
29
|
-
export declare function ExchangeAttachmentAccessKeyRequestFromJSON(json: any): ExchangeAttachmentAccessKeyRequest;
|
|
30
|
-
export declare function ExchangeAttachmentAccessKeyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExchangeAttachmentAccessKeyRequest;
|
|
31
|
-
export declare function ExchangeAttachmentAccessKeyRequestToJSON(value?: ExchangeAttachmentAccessKeyRequest | null): any;
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Connect API
|
|
3
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: v1
|
|
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 ExchangeResultsKeyRequest
|
|
16
|
-
*/
|
|
17
|
-
export interface ExchangeResultsKeyRequest {
|
|
18
|
-
/**
|
|
19
|
-
* The Results Access Key to exchange
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof ExchangeResultsKeyRequest
|
|
22
|
-
*/
|
|
23
|
-
resultsAccessKey: string;
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* Check if a given object implements the ExchangeResultsKeyRequest interface.
|
|
27
|
-
*/
|
|
28
|
-
export declare function instanceOfExchangeResultsKeyRequest(value: object): value is ExchangeResultsKeyRequest;
|
|
29
|
-
export declare function ExchangeResultsKeyRequestFromJSON(json: any): ExchangeResultsKeyRequest;
|
|
30
|
-
export declare function ExchangeResultsKeyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExchangeResultsKeyRequest;
|
|
31
|
-
export declare function ExchangeResultsKeyRequestToJSON(value?: ExchangeResultsKeyRequest | null): any;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Connect API
|
|
3
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: v1
|
|
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 type { IdentityData } from './IdentityData';
|
|
13
|
-
import type { Session } from './Session';
|
|
14
|
-
/**
|
|
15
|
-
*
|
|
16
|
-
* @export
|
|
17
|
-
* @interface ExchangeResultsKeyResponse
|
|
18
|
-
*/
|
|
19
|
-
export interface ExchangeResultsKeyResponse {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {Session}
|
|
23
|
-
* @memberof ExchangeResultsKeyResponse
|
|
24
|
-
*/
|
|
25
|
-
session: Session;
|
|
26
|
-
/**
|
|
27
|
-
*
|
|
28
|
-
* @type {IdentityData}
|
|
29
|
-
* @memberof ExchangeResultsKeyResponse
|
|
30
|
-
*/
|
|
31
|
-
identityData?: IdentityData;
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* Check if a given object implements the ExchangeResultsKeyResponse interface.
|
|
35
|
-
*/
|
|
36
|
-
export declare function instanceOfExchangeResultsKeyResponse(value: object): value is ExchangeResultsKeyResponse;
|
|
37
|
-
export declare function ExchangeResultsKeyResponseFromJSON(json: any): ExchangeResultsKeyResponse;
|
|
38
|
-
export declare function ExchangeResultsKeyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExchangeResultsKeyResponse;
|
|
39
|
-
export declare function ExchangeResultsKeyResponseToJSON(value?: ExchangeResultsKeyResponse | null): any;
|