ob-bms-sdk 0.0.12 → 0.0.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/api/api.ts +5 -5
- package/dist/api/api.d.ts +5 -5
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -78,7 +78,7 @@ export interface CreateVisitorBody {
|
|
|
78
78
|
* @type {string}
|
|
79
79
|
* @memberof CreateVisitorBody
|
|
80
80
|
*/
|
|
81
|
-
'profile_image_url': string;
|
|
81
|
+
'profile_image_url': string | null;
|
|
82
82
|
/**
|
|
83
83
|
*
|
|
84
84
|
* @type {string}
|
|
@@ -133,7 +133,7 @@ export interface CreateVisitorResponse {
|
|
|
133
133
|
* @type {string}
|
|
134
134
|
* @memberof CreateVisitorResponse
|
|
135
135
|
*/
|
|
136
|
-
'profile_image_url': string;
|
|
136
|
+
'profile_image_url': string | null;
|
|
137
137
|
/**
|
|
138
138
|
*
|
|
139
139
|
* @type {string}
|
|
@@ -601,7 +601,7 @@ export interface ShowVisitorResponse {
|
|
|
601
601
|
* @type {string}
|
|
602
602
|
* @memberof ShowVisitorResponse
|
|
603
603
|
*/
|
|
604
|
-
'profile_image_url': string;
|
|
604
|
+
'profile_image_url': string | null;
|
|
605
605
|
/**
|
|
606
606
|
*
|
|
607
607
|
* @type {string}
|
|
@@ -796,7 +796,7 @@ export interface WrappedResponseCreateVisitorResponseData {
|
|
|
796
796
|
* @type {string}
|
|
797
797
|
* @memberof WrappedResponseCreateVisitorResponseData
|
|
798
798
|
*/
|
|
799
|
-
'profile_image_url': string;
|
|
799
|
+
'profile_image_url': string | null;
|
|
800
800
|
/**
|
|
801
801
|
*
|
|
802
802
|
* @type {string}
|
|
@@ -964,7 +964,7 @@ export interface WrappedResponseShowVisitorResponseData {
|
|
|
964
964
|
* @type {string}
|
|
965
965
|
* @memberof WrappedResponseShowVisitorResponseData
|
|
966
966
|
*/
|
|
967
|
-
'profile_image_url': string;
|
|
967
|
+
'profile_image_url': string | null;
|
|
968
968
|
/**
|
|
969
969
|
*
|
|
970
970
|
* @type {string}
|
package/dist/api/api.d.ts
CHANGED
|
@@ -68,7 +68,7 @@ export interface CreateVisitorBody {
|
|
|
68
68
|
* @type {string}
|
|
69
69
|
* @memberof CreateVisitorBody
|
|
70
70
|
*/
|
|
71
|
-
'profile_image_url': string;
|
|
71
|
+
'profile_image_url': string | null;
|
|
72
72
|
/**
|
|
73
73
|
*
|
|
74
74
|
* @type {string}
|
|
@@ -123,7 +123,7 @@ export interface CreateVisitorResponse {
|
|
|
123
123
|
* @type {string}
|
|
124
124
|
* @memberof CreateVisitorResponse
|
|
125
125
|
*/
|
|
126
|
-
'profile_image_url': string;
|
|
126
|
+
'profile_image_url': string | null;
|
|
127
127
|
/**
|
|
128
128
|
*
|
|
129
129
|
* @type {string}
|
|
@@ -593,7 +593,7 @@ export interface ShowVisitorResponse {
|
|
|
593
593
|
* @type {string}
|
|
594
594
|
* @memberof ShowVisitorResponse
|
|
595
595
|
*/
|
|
596
|
-
'profile_image_url': string;
|
|
596
|
+
'profile_image_url': string | null;
|
|
597
597
|
/**
|
|
598
598
|
*
|
|
599
599
|
* @type {string}
|
|
@@ -788,7 +788,7 @@ export interface WrappedResponseCreateVisitorResponseData {
|
|
|
788
788
|
* @type {string}
|
|
789
789
|
* @memberof WrappedResponseCreateVisitorResponseData
|
|
790
790
|
*/
|
|
791
|
-
'profile_image_url': string;
|
|
791
|
+
'profile_image_url': string | null;
|
|
792
792
|
/**
|
|
793
793
|
*
|
|
794
794
|
* @type {string}
|
|
@@ -956,7 +956,7 @@ export interface WrappedResponseShowVisitorResponseData {
|
|
|
956
956
|
* @type {string}
|
|
957
957
|
* @memberof WrappedResponseShowVisitorResponseData
|
|
958
958
|
*/
|
|
959
|
-
'profile_image_url': string;
|
|
959
|
+
'profile_image_url': string | null;
|
|
960
960
|
/**
|
|
961
961
|
*
|
|
962
962
|
* @type {string}
|