@matochmat/api-client 2.0.0-next.12 → 2.0.0-next.13

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/dist/index.d.ts CHANGED
@@ -92,6 +92,7 @@ export * from './v3/customerQuote';
92
92
  export * from './v3/customerQuoteUploadConnection';
93
93
  export * from './v3/deliveryInfo';
94
94
  export * from './v3/dinnerFunctionality';
95
+ export * from './v3/dinnerFunctionalityType';
95
96
  export * from './v3/displaySolutionV1Configuration';
96
97
  export * from './v3/dynamicContent';
97
98
  export * from './v3/emailTemplate';
@@ -0,0 +1,10 @@
1
+ import type { ApiV2DinnerFunctionalityTypeType } from '../v2/dinnerFunctionalityType';
2
+ import type { ApiV3BaseResponseType } from '../v3/baseResponse';
3
+ /**
4
+ * Type for the individual array items in v3 of the API for the dinner functionality type endpoint.
5
+ */
6
+ export type ApiV3DinnerFunctionalityTypeType = ApiV2DinnerFunctionalityTypeType;
7
+ /**
8
+ * The API response type for dinner functionality type items.
9
+ */
10
+ export type ApiV3DinnerFunctionalityTypeResponseType = ApiV3BaseResponseType<ApiV3DinnerFunctionalityTypeType[], number>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@matochmat/api-client",
3
3
  "description": "API types and helper functionality for the Mat och Mat API.",
4
- "version": "2.0.0-next.12",
4
+ "version": "2.0.0-next.13",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
7
7
  "types": "dist/index.d.ts",