@matochmat/api-client 2.0.0-next.22 → 2.0.0-next.24
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.cjs.js +1 -6
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.esm.js +1 -6
- package/dist/index.esm.js.map +1 -1
- package/dist/v2/restaurant.d.ts +42 -5
- package/dist/v2/upload.d.ts +4 -0
- package/dist/v3/restaurantUploadConnection.d.ts +11 -0
- package/package.json +3 -2
- package/dist/v2/bonusStamp.d.ts +0 -21
- package/dist/v2/cityUploadGrouping.d.ts +0 -3
- package/dist/v2/customerQuoteUploadGrouping.d.ts +0 -3
- package/dist/v2/favorite.d.ts +0 -21
- package/dist/v2/restaurantFunctionalityType.d.ts +0 -25
- package/dist/v2/restaurantFunctionalityVisitibilityType.d.ts +0 -4
- package/dist/v2/restaurantUploadGrouping.d.ts +0 -7
- package/dist/v2/showcaseLocation.d.ts +0 -26
- package/dist/v2/showcaseUploadGrouping.d.ts +0 -3
- package/dist/v2/showcaseUserRoleConnection.d.ts +0 -30
- package/dist/v2/uploadGrouping.d.ts +0 -11
- package/dist/v3/bonusStamp.d.ts +0 -5
- package/dist/v3/favorite.d.ts +0 -5
package/dist/v2/favorite.d.ts
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
*
|
|
3
|
-
*/
|
|
4
|
-
export type ApiV2RestaurantFunctionalityType = {
|
|
5
|
-
/**
|
|
6
|
-
* String representation of when the entity was created.
|
|
7
|
-
*/
|
|
8
|
-
created: string;
|
|
9
|
-
/**
|
|
10
|
-
* Unique ID for the entity.
|
|
11
|
-
*/
|
|
12
|
-
id: number;
|
|
13
|
-
/**
|
|
14
|
-
* String representation of the last time the entity was updated.
|
|
15
|
-
*/
|
|
16
|
-
lastUpdated: string;
|
|
17
|
-
/**
|
|
18
|
-
* ID of the functionality visibility type for the functionality.
|
|
19
|
-
*/
|
|
20
|
-
restaurantFunctionalityVisibilityTypeId: 1 | 2 | 3 | 4;
|
|
21
|
-
/**
|
|
22
|
-
* Restaurant ID the functionality relates to.
|
|
23
|
-
*/
|
|
24
|
-
restaurantId: number;
|
|
25
|
-
};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { ApiV2RestaurantUploadConnectionType } from '../v2/restaurantUploadConnection';
|
|
2
|
-
import type { ApiV2UploadGroupingType } from '../v2/uploadGrouping';
|
|
3
|
-
export type ApiV2RestaurantUploadGroupingType = ApiV2UploadGroupingType<ApiV2RestaurantUploadConnectionType>;
|
|
4
|
-
/**
|
|
5
|
-
* API endpoint slug.
|
|
6
|
-
*/
|
|
7
|
-
export declare const apiV2RestaurantUploadGroupingApiEndpointSlug = "restaurant-upload-groupings";
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import type { ApiV2BaseResponseType } from '../v2/baseResponse';
|
|
2
|
-
/**
|
|
3
|
-
* Type for the individual array items in v2 of the API for the showcase locations endpoint.
|
|
4
|
-
*/
|
|
5
|
-
export type ApiV2ShowcaseLocationType = {
|
|
6
|
-
/**
|
|
7
|
-
* City ID for the location.
|
|
8
|
-
*/
|
|
9
|
-
cityId: number;
|
|
10
|
-
/**
|
|
11
|
-
* Entity ID for the location.
|
|
12
|
-
*/
|
|
13
|
-
entityId: number;
|
|
14
|
-
/**
|
|
15
|
-
* Timestamp for when the entity was last updated.
|
|
16
|
-
*/
|
|
17
|
-
lastUpdated: string;
|
|
18
|
-
};
|
|
19
|
-
/**
|
|
20
|
-
* The API response type for showcase locations.
|
|
21
|
-
*/
|
|
22
|
-
export type ApiV2ShowcaseLocationResponseType = ApiV2BaseResponseType<ApiV2ShowcaseLocationType[], number>;
|
|
23
|
-
/**
|
|
24
|
-
* API endpoint slug.
|
|
25
|
-
*/
|
|
26
|
-
export declare const apiV2ShowcaseLocationApiEndpointSlug = "showcase-location-lists";
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import type { ApiV2BaseResponseType } from '../v2/baseResponse';
|
|
2
|
-
/**
|
|
3
|
-
* Type for the individual array items in v2 of the API for the showcase user role connections endpoint.
|
|
4
|
-
*/
|
|
5
|
-
export type ApiV2ShowcaseUserRoleConnectionType = {
|
|
6
|
-
/**
|
|
7
|
-
* String representation of when the entity relation was created.
|
|
8
|
-
*/
|
|
9
|
-
created: string;
|
|
10
|
-
/**
|
|
11
|
-
* String representation of when the entity relation was last updated.
|
|
12
|
-
*/
|
|
13
|
-
lastUpdated: string;
|
|
14
|
-
/**
|
|
15
|
-
* Showcase ID (first entity).
|
|
16
|
-
*/
|
|
17
|
-
showcaseId: number;
|
|
18
|
-
/**
|
|
19
|
-
* User role ID (second entity).
|
|
20
|
-
*/
|
|
21
|
-
userRoleId: number;
|
|
22
|
-
};
|
|
23
|
-
/**
|
|
24
|
-
* The API response type for showcase user role connections.
|
|
25
|
-
*/
|
|
26
|
-
export type ApiV2ShowcaseUserRoleConnectionResponseType = ApiV2BaseResponseType<ApiV2ShowcaseUserRoleConnectionType[], number>;
|
|
27
|
-
/**
|
|
28
|
-
* API endpoint slug.
|
|
29
|
-
*/
|
|
30
|
-
export declare const apiV2ShowcaseUserRoleConnectionApiEndpointSlug = "showcase-user-role-connections";
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { ApiV2UploadType } from '../v2/upload';
|
|
2
|
-
export type ApiV2UploadGroupingType<T> = {
|
|
3
|
-
/**
|
|
4
|
-
* Upload instance. This represents the actual uploaded file.
|
|
5
|
-
*/
|
|
6
|
-
upload: ApiV2UploadType;
|
|
7
|
-
/**
|
|
8
|
-
* Upload connection. This is the relation entity between the uploaded file and another entity.
|
|
9
|
-
*/
|
|
10
|
-
uploadConnection: T;
|
|
11
|
-
};
|
package/dist/v3/bonusStamp.d.ts
DELETED