@gambulls-org/gambulls-apis 3.0.147 → 3.0.149

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.
@@ -42,13 +42,13 @@ export interface ApiCmsContentIdPutRequest {
42
42
  * @type {string}
43
43
  * @memberof ApiCmsContentIdPutRequest
44
44
  */
45
- ogTitle?: string;
45
+ ogTitle?: string | null;
46
46
  /**
47
47
  *
48
48
  * @type {string}
49
49
  * @memberof ApiCmsContentIdPutRequest
50
50
  */
51
- ogDescription?: string;
51
+ ogDescription?: string | null;
52
52
  /**
53
53
  *
54
54
  * @type {string}
@@ -35,10 +35,6 @@ function instanceOfApiCmsContentPostRequest(value) {
35
35
  return false;
36
36
  if (!('type' in value) || value['type'] === undefined)
37
37
  return false;
38
- if (!('ogTitle' in value) || value['ogTitle'] === undefined)
39
- return false;
40
- if (!('ogDescription' in value) || value['ogDescription'] === undefined)
41
- return false;
42
38
  if (!('content' in value) || value['content'] === undefined)
43
39
  return false;
44
40
  return true;
@@ -54,8 +50,8 @@ function ApiCmsContentPostRequestFromJSONTyped(json, ignoreDiscriminator) {
54
50
  'route': json['route'],
55
51
  'type': json['type'],
56
52
  'lang': json['lang'] == null ? undefined : json['lang'],
57
- 'ogTitle': json['ogTitle'],
58
- 'ogDescription': json['ogDescription'],
53
+ 'ogTitle': json['ogTitle'] == null ? undefined : json['ogTitle'],
54
+ 'ogDescription': json['ogDescription'] == null ? undefined : json['ogDescription'],
59
55
  'content': json['content'],
60
56
  'gameId': json['gameId'] == null ? undefined : json['gameId'],
61
57
  'providerId': json['providerId'] == null ? undefined : json['providerId'],
@@ -42,13 +42,13 @@ export interface ApiCmsContentPostRequest {
42
42
  * @type {string}
43
43
  * @memberof ApiCmsContentPostRequest
44
44
  */
45
- ogTitle: string;
45
+ ogTitle?: string;
46
46
  /**
47
47
  *
48
48
  * @type {string}
49
49
  * @memberof ApiCmsContentPostRequest
50
50
  */
51
- ogDescription: string;
51
+ ogDescription?: string;
52
52
  /**
53
53
  *
54
54
  * @type {string}
@@ -87,8 +87,6 @@ export type ApiCmsContentPostRequestTypeEnum = typeof ApiCmsContentPostRequestTy
87
87
  export function instanceOfApiCmsContentPostRequest(value: object): value is ApiCmsContentPostRequest {
88
88
  if (!('route' in value) || value['route'] === undefined) return false;
89
89
  if (!('type' in value) || value['type'] === undefined) return false;
90
- if (!('ogTitle' in value) || value['ogTitle'] === undefined) return false;
91
- if (!('ogDescription' in value) || value['ogDescription'] === undefined) return false;
92
90
  if (!('content' in value) || value['content'] === undefined) return false;
93
91
  return true;
94
92
  }
@@ -106,8 +104,8 @@ export function ApiCmsContentPostRequestFromJSONTyped(json: any, ignoreDiscrimin
106
104
  'route': json['route'],
107
105
  'type': json['type'],
108
106
  'lang': json['lang'] == null ? undefined : json['lang'],
109
- 'ogTitle': json['ogTitle'],
110
- 'ogDescription': json['ogDescription'],
107
+ 'ogTitle': json['ogTitle'] == null ? undefined : json['ogTitle'],
108
+ 'ogDescription': json['ogDescription'] == null ? undefined : json['ogDescription'],
111
109
  'content': json['content'],
112
110
  'gameId': json['gameId'] == null ? undefined : json['gameId'],
113
111
  'providerId': json['providerId'] == null ? undefined : json['providerId'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gambulls-org/gambulls-apis",
3
- "version": "3.0.147",
3
+ "version": "3.0.149",
4
4
  "main": "index.ts",
5
5
  "scripts": {
6
6
  "build": "tsc",