Skip to content

Commit

Permalink
Regenerated
Browse files Browse the repository at this point in the history
  • Loading branch information
einari committed Aug 27, 2024
1 parent 27d3b5d commit d3a9b33
Show file tree
Hide file tree
Showing 17 changed files with 28 additions and 6 deletions.
4 changes: 3 additions & 1 deletion Samples/eCommerce/Basic/Web/API/Carts/AddItem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
* **DO NOT EDIT** - This file is an automatically generated file.
*--------------------------------------------------------------------------------------------*/

/* eslint-disable sort-imports */
/* eslint-disable @typescript-eslint/no-empty-interface */
// eslint-disable-next-line header/header
import { Command, CommandValidator, CommandPropertyValidators } from '@cratis/applications/commands';
import { Command, CommandPropertyValidators, CommandValidator } from '@cratis/applications/commands';
import { useCommand, SetCommandValues, ClearCommandValues } from '@cratis/applications.react/commands';
import { Validator } from '@cratis/applications/validation';
import { Guid } from '@cratis/fundamentals';
Expand Down
1 change: 1 addition & 0 deletions Samples/eCommerce/Basic/Web/API/Carts/Cart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* **DO NOT EDIT** - This file is an automatically generated file.
*--------------------------------------------------------------------------------------------*/

/* eslint-disable sort-imports */
// eslint-disable-next-line header/header
import { field } from '@cratis/fundamentals';
import { Guid } from '@cratis/fundamentals';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* **DO NOT EDIT** - This file is an automatically generated file.
*--------------------------------------------------------------------------------------------*/

/* eslint-disable sort-imports */
// eslint-disable-next-line header/header
import { QueryFor, QueryResultWithState } from '@cratis/applications/queries';
import { useQuery, PerformQuery } from '@cratis/applications.react/queries';
Expand Down
1 change: 1 addition & 0 deletions Samples/eCommerce/Basic/Web/API/Carts/CartItem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* **DO NOT EDIT** - This file is an automatically generated file.
*--------------------------------------------------------------------------------------------*/

/* eslint-disable sort-imports */
// eslint-disable-next-line header/header
import { field } from '@cratis/fundamentals';
import { Price } from '../Price';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* **DO NOT EDIT** - This file is an automatically generated file.
*--------------------------------------------------------------------------------------------*/

/* eslint-disable sort-imports */
// eslint-disable-next-line header/header
import { ObservableQueryFor, QueryResultWithState } from '@cratis/applications/queries';
import { useObservableQuery } from '@cratis/applications.react/queries';
Expand All @@ -28,6 +29,6 @@ export class ObserveCartForCurrentUser extends ObservableQueryFor<Cart> {

static use(): [QueryResultWithState<Cart>] {
const [result] = useObservableQuery<Cart, ObserveCartForCurrentUser>(ObserveCartForCurrentUser);
return result;
return [result];
}
}
1 change: 1 addition & 0 deletions Samples/eCommerce/Basic/Web/API/Carts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* **DO NOT EDIT** - This file is an automatically generated file.
*--------------------------------------------------------------------------------------------*/

/* eslint-disable sort-imports */
// eslint-disable-next-line header/header
export * from './CartItem';
export * from './CartForCurrentUser';
Expand Down
1 change: 1 addition & 0 deletions Samples/eCommerce/Basic/Web/API/Price.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* **DO NOT EDIT** - This file is an automatically generated file.
*--------------------------------------------------------------------------------------------*/

/* eslint-disable sort-imports */
// eslint-disable-next-line header/header
import { field } from '@cratis/fundamentals';

Expand Down
4 changes: 3 additions & 1 deletion Samples/eCommerce/Basic/Web/API/Products/AddProduct.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
* **DO NOT EDIT** - This file is an automatically generated file.
*--------------------------------------------------------------------------------------------*/

/* eslint-disable sort-imports */
/* eslint-disable @typescript-eslint/no-empty-interface */
// eslint-disable-next-line header/header
import { Command, CommandValidator, CommandPropertyValidators } from '@cratis/applications/commands';
import { Command, CommandPropertyValidators, CommandValidator } from '@cratis/applications/commands';
import { useCommand, SetCommandValues, ClearCommandValues } from '@cratis/applications.react/commands';
import { Validator } from '@cratis/applications/validation';
import Handlebars from 'handlebars';
Expand Down
1 change: 1 addition & 0 deletions Samples/eCommerce/Basic/Web/API/Products/AllProducts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* **DO NOT EDIT** - This file is an automatically generated file.
*--------------------------------------------------------------------------------------------*/

/* eslint-disable sort-imports */
// eslint-disable-next-line header/header
import { QueryFor, QueryResultWithState, Sorting, SortingActions, SortingActionsForQuery, Paging } from '@cratis/applications/queries';
import { useQuery, useQueryWithPaging, PerformQuery, SetSorting, SetPage, SetPageSize } from '@cratis/applications.react/queries';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* **DO NOT EDIT** - This file is an automatically generated file.
*--------------------------------------------------------------------------------------------*/

/* eslint-disable sort-imports */
// eslint-disable-next-line header/header
import { ObservableQueryFor, QueryResultWithState, Sorting, SortingActions, SortingActionsForObservableQuery, Paging } from '@cratis/applications/queries';
import { useObservableQuery, useObservableQueryWithPaging, SetSorting, SetPage, SetPageSize } from '@cratis/applications.react/queries';
Expand Down
1 change: 1 addition & 0 deletions Samples/eCommerce/Basic/Web/API/Products/Product.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* **DO NOT EDIT** - This file is an automatically generated file.
*--------------------------------------------------------------------------------------------*/

/* eslint-disable sort-imports */
// eslint-disable-next-line header/header
import { field } from '@cratis/fundamentals';

Expand Down
4 changes: 3 additions & 1 deletion Samples/eCommerce/Basic/Web/API/Products/SetPrice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
* **DO NOT EDIT** - This file is an automatically generated file.
*--------------------------------------------------------------------------------------------*/

/* eslint-disable sort-imports */
/* eslint-disable @typescript-eslint/no-empty-interface */
// eslint-disable-next-line header/header
import { Command, CommandValidator, CommandPropertyValidators } from '@cratis/applications/commands';
import { Command, CommandPropertyValidators, CommandValidator } from '@cratis/applications/commands';
import { useCommand, SetCommandValues, ClearCommandValues } from '@cratis/applications.react/commands';
import { Validator } from '@cratis/applications/validation';
import { Price } from '../Price';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
* **DO NOT EDIT** - This file is an automatically generated file.
*--------------------------------------------------------------------------------------------*/

/* eslint-disable sort-imports */
/* eslint-disable @typescript-eslint/no-empty-interface */
// eslint-disable-next-line header/header
import { Command, CommandValidator, CommandPropertyValidators } from '@cratis/applications/commands';
import { Command, CommandPropertyValidators, CommandValidator } from '@cratis/applications/commands';
import { useCommand, SetCommandValues, ClearCommandValues } from '@cratis/applications.react/commands';
import { Validator } from '@cratis/applications/validation';
import Handlebars from 'handlebars';
Expand Down
1 change: 1 addition & 0 deletions Samples/eCommerce/Basic/Web/API/Products/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* **DO NOT EDIT** - This file is an automatically generated file.
*--------------------------------------------------------------------------------------------*/

/* eslint-disable sort-imports */
// eslint-disable-next-line header/header
export * from './Product';
export * from './SetStockForProduct';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
* **DO NOT EDIT** - This file is an automatically generated file.
*--------------------------------------------------------------------------------------------*/

/* eslint-disable sort-imports */
/* eslint-disable @typescript-eslint/no-empty-interface */
// eslint-disable-next-line header/header
import { Command, CommandValidator, CommandPropertyValidators } from '@cratis/applications/commands';
import { Command, CommandPropertyValidators, CommandValidator } from '@cratis/applications/commands';
import { useCommand, SetCommandValues, ClearCommandValues } from '@cratis/applications.react/commands';
import { Validator } from '@cratis/applications/validation';
import { Guid } from '@cratis/fundamentals';
Expand Down
1 change: 1 addition & 0 deletions Samples/eCommerce/Basic/Web/API/Users/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
* **DO NOT EDIT** - This file is an automatically generated file.
*--------------------------------------------------------------------------------------------*/

/* eslint-disable sort-imports */
// eslint-disable-next-line header/header
export * from './ChangeProfilePicture';
1 change: 1 addition & 0 deletions Samples/eCommerce/Basic/Web/API/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
* **DO NOT EDIT** - This file is an automatically generated file.
*--------------------------------------------------------------------------------------------*/

/* eslint-disable sort-imports */
// eslint-disable-next-line header/header
export * from './Price';

0 comments on commit d3a9b33

Please sign in to comment.