Skip to content

Commit

Permalink
chore: regen sdk to use latest api interfaces (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhamzeh authored Jan 10, 2024
2 parents c5e36d8 + f170870 commit c0700dc
Show file tree
Hide file tree
Showing 5 changed files with 473 additions and 275 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ By submitting an issue to this repository, you agree to the terms within the [Op
> A clear and concise description of what you expected to happen.
### Additional context
> Add any other context about the problem here.
> Add any other context about the problem here.
1 change: 1 addition & 0 deletions api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import { Credentials } from "./credentials";
import { assertParamExists } from "./validation";

import {
AbortedMessageResponse,
Any,
Assertion,
AssertionTupleKey,
Expand Down
27 changes: 26 additions & 1 deletion apiModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,25 @@
*/


/**
*
* @export
* @interface AbortedMessageResponse
*/
export interface AbortedMessageResponse {
/**
*
* @type {string}
* @memberof AbortedMessageResponse
*/
code?: string;
/**
*
* @type {string}
* @memberof AbortedMessageResponse
*/
message?: string;
}
/**
*
* @export
Expand Down Expand Up @@ -457,6 +476,12 @@ export interface GetStoreResponse {
* @memberof GetStoreResponse
*/
updated_at: string;
/**
*
* @type {string}
* @memberof GetStoreResponse
*/
deleted_at?: string;
}
/**
*
Expand Down Expand Up @@ -987,7 +1012,7 @@ export interface Store {
* @type {string}
* @memberof Store
*/
deleted_at: string;
deleted_at?: string;
}
/**
*
Expand Down
Loading

0 comments on commit c0700dc

Please sign in to comment.