Skip to content

Commit 84ce172

Browse files
committed
Update TypeScript SDK for release v1.1.0
1 parent f3607be commit 84ce172

66 files changed

Lines changed: 83 additions & 69 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@supermodeltools/sdk",
3-
"version": "0.11.16",
3+
"version": "1.1.0",
44
"description": "TypeScript SDK for the Supermodel API - code graph generation and analysis",
55
"author": "Supermodel <support@supermodel.software>",
66
"license": "UNLICENSED",

src/apis/DefaultApi.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Supermodel
55
* Code Graphing & Analysis API
66
*
7-
* The version of the OpenAPI document: 0.11.16
7+
* The version of the OpenAPI document: 1.1.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -82,6 +82,8 @@ export interface GenerateParseGraphRequest {
8282
export interface GenerateSupermodelGraphRequest {
8383
idempotencyKey: string;
8484
file: Blob;
85+
changedFiles?: string;
86+
previousDomains?: string;
8587
}
8688

8789
export interface GenerateTestCoverageMapRequest {
@@ -630,6 +632,14 @@ export class DefaultApi extends runtime.BaseAPI {
630632

631633
const queryParameters: any = {};
632634

635+
if (requestParameters['changedFiles'] != null) {
636+
queryParameters['changedFiles'] = requestParameters['changedFiles'];
637+
}
638+
639+
if (requestParameters['previousDomains'] != null) {
640+
queryParameters['previousDomains'] = requestParameters['previousDomains'];
641+
}
642+
633643
const headerParameters: runtime.HTTPHeaders = {};
634644

635645
if (requestParameters['idempotencyKey'] != null) {

src/models/AffectedEntryPoint.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Supermodel
55
* Code Graphing & Analysis API
66
*
7-
* The version of the OpenAPI document: 0.11.16
7+
* The version of the OpenAPI document: 1.1.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/models/AffectedFile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Supermodel
55
* Code Graphing & Analysis API
66
*
7-
* The version of the OpenAPI document: 0.11.16
7+
* The version of the OpenAPI document: 1.1.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/models/AffectedFunction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Supermodel
55
* Code Graphing & Analysis API
66
*
7-
* The version of the OpenAPI document: 0.11.16
7+
* The version of the OpenAPI document: 1.1.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/models/AliveCodeItem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Supermodel
55
* Code Graphing & Analysis API
66
*
7-
* The version of the OpenAPI document: 0.11.16
7+
* The version of the OpenAPI document: 1.1.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/models/BlastRadius.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Supermodel
55
* Code Graphing & Analysis API
66
*
7-
* The version of the OpenAPI document: 0.11.16
7+
* The version of the OpenAPI document: 1.1.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@ export interface BlastRadius {
2626
*/
2727
directDependents: number;
2828
/**
29-
* Number of transitive (indirect) dependents.
29+
* Number of indirect dependents (callers-of-callers, distance > 1). Does not include direct callers.
3030
* @type {number}
3131
* @memberof BlastRadius
3232
*/

src/models/CircularDependencyCycle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Supermodel
55
* Code Graphing & Analysis API
66
*
7-
* The version of the OpenAPI document: 0.11.16
7+
* The version of the OpenAPI document: 1.1.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/models/CircularDependencyMetadata.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Supermodel
55
* Code Graphing & Analysis API
66
*
7-
* The version of the OpenAPI document: 0.11.16
7+
* The version of the OpenAPI document: 1.1.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/models/CircularDependencyResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Supermodel
55
* Code Graphing & Analysis API
66
*
7-
* The version of the OpenAPI document: 0.11.16
7+
* The version of the OpenAPI document: 1.1.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

0 commit comments

Comments
 (0)