Skip to content

Commit

Permalink
Export loader component (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpapillon authored Sep 18, 2024
1 parent fe9db15 commit 98aa073
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 2 additions & 4 deletions react/src/api/models/InvoiceResponseData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export interface InvoiceResponseData {
* @type {string}
* @memberof InvoiceResponseData
*/
externalId: string;
externalId?: string | null;
/**
*
* @type {string}
Expand Down Expand Up @@ -139,8 +139,6 @@ export function instanceOfInvoiceResponseData(
return false;
if (!("environmentId" in value) || value["environmentId"] === undefined)
return false;
if (!("externalId" in value) || value["externalId"] === undefined)
return false;
if (!("id" in value) || value["id"] === undefined) return false;
if (!("subtotal" in value) || value["subtotal"] === undefined) return false;
if (!("updatedAt" in value) || value["updatedAt"] === undefined) return false;
Expand Down Expand Up @@ -169,7 +167,7 @@ export function InvoiceResponseDataFromJSONTyped(
customerExternalId: json["customer_external_id"],
dueDate: json["due_date"] == null ? undefined : new Date(json["due_date"]),
environmentId: json["environment_id"],
externalId: json["external_id"],
externalId: json["external_id"] == null ? undefined : json["external_id"],
id: json["id"],
paymentMethodExternalId:
json["payment_method_external_id"] == null
Expand Down
1 change: 1 addition & 0 deletions react/src/components/ui/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export * from "./box";
export * from "./button";
export * from "./flex";
export * from "./icon";
export * from "./loader";
export * from "./modal";
export * from "./progress-bar";
export * from "./text";

0 comments on commit 98aa073

Please sign in to comment.