ob-bms-sdk 0.0.64 → 0.0.65
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 +73 -0
- package/dist/api/api.d.ts +73 -0
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -764,6 +764,12 @@ export interface MemberIndexInterface {
|
|
|
764
764
|
* @memberof MemberIndexInterface
|
|
765
765
|
*/
|
|
766
766
|
'redemption_authorized': boolean;
|
|
767
|
+
/**
|
|
768
|
+
*
|
|
769
|
+
* @type {Tenant}
|
|
770
|
+
* @memberof MemberIndexInterface
|
|
771
|
+
*/
|
|
772
|
+
'tenant': Tenant | null;
|
|
767
773
|
}
|
|
768
774
|
/**
|
|
769
775
|
*
|
|
@@ -1928,6 +1934,73 @@ export interface SyncResultSyncJobErrorInner {
|
|
|
1928
1934
|
*/
|
|
1929
1935
|
'type': string;
|
|
1930
1936
|
}
|
|
1937
|
+
/**
|
|
1938
|
+
*
|
|
1939
|
+
* @export
|
|
1940
|
+
* @interface Tenant
|
|
1941
|
+
*/
|
|
1942
|
+
export interface Tenant {
|
|
1943
|
+
/**
|
|
1944
|
+
*
|
|
1945
|
+
* @type {string}
|
|
1946
|
+
* @memberof Tenant
|
|
1947
|
+
*/
|
|
1948
|
+
'id'?: string;
|
|
1949
|
+
/**
|
|
1950
|
+
*
|
|
1951
|
+
* @type {string}
|
|
1952
|
+
* @memberof Tenant
|
|
1953
|
+
*/
|
|
1954
|
+
'uid'?: string;
|
|
1955
|
+
/**
|
|
1956
|
+
*
|
|
1957
|
+
* @type {string}
|
|
1958
|
+
* @memberof Tenant
|
|
1959
|
+
*/
|
|
1960
|
+
'name'?: string;
|
|
1961
|
+
/**
|
|
1962
|
+
*
|
|
1963
|
+
* @type {PrismaJsonValue}
|
|
1964
|
+
* @memberof Tenant
|
|
1965
|
+
*/
|
|
1966
|
+
'display_name'?: PrismaJsonValue | null;
|
|
1967
|
+
/**
|
|
1968
|
+
*
|
|
1969
|
+
* @type {string}
|
|
1970
|
+
* @memberof Tenant
|
|
1971
|
+
*/
|
|
1972
|
+
'email'?: string;
|
|
1973
|
+
/**
|
|
1974
|
+
*
|
|
1975
|
+
* @type {string}
|
|
1976
|
+
* @memberof Tenant
|
|
1977
|
+
*/
|
|
1978
|
+
'phone_number'?: string;
|
|
1979
|
+
/**
|
|
1980
|
+
*
|
|
1981
|
+
* @type {string}
|
|
1982
|
+
* @memberof Tenant
|
|
1983
|
+
*/
|
|
1984
|
+
'address'?: string;
|
|
1985
|
+
/**
|
|
1986
|
+
*
|
|
1987
|
+
* @type {PrismaJsonValue}
|
|
1988
|
+
* @memberof Tenant
|
|
1989
|
+
*/
|
|
1990
|
+
'metadata'?: PrismaJsonValue | null;
|
|
1991
|
+
/**
|
|
1992
|
+
*
|
|
1993
|
+
* @type {string}
|
|
1994
|
+
* @memberof Tenant
|
|
1995
|
+
*/
|
|
1996
|
+
'created_at'?: string;
|
|
1997
|
+
/**
|
|
1998
|
+
*
|
|
1999
|
+
* @type {string}
|
|
2000
|
+
* @memberof Tenant
|
|
2001
|
+
*/
|
|
2002
|
+
'updated_at'?: string;
|
|
2003
|
+
}
|
|
1931
2004
|
/**
|
|
1932
2005
|
*
|
|
1933
2006
|
* @export
|
package/dist/api/api.d.ts
CHANGED
|
@@ -762,6 +762,12 @@ export interface MemberIndexInterface {
|
|
|
762
762
|
* @memberof MemberIndexInterface
|
|
763
763
|
*/
|
|
764
764
|
'redemption_authorized': boolean;
|
|
765
|
+
/**
|
|
766
|
+
*
|
|
767
|
+
* @type {Tenant}
|
|
768
|
+
* @memberof MemberIndexInterface
|
|
769
|
+
*/
|
|
770
|
+
'tenant': Tenant | null;
|
|
765
771
|
}
|
|
766
772
|
/**
|
|
767
773
|
*
|
|
@@ -1902,6 +1908,73 @@ export interface SyncResultSyncJobErrorInner {
|
|
|
1902
1908
|
*/
|
|
1903
1909
|
'type': string;
|
|
1904
1910
|
}
|
|
1911
|
+
/**
|
|
1912
|
+
*
|
|
1913
|
+
* @export
|
|
1914
|
+
* @interface Tenant
|
|
1915
|
+
*/
|
|
1916
|
+
export interface Tenant {
|
|
1917
|
+
/**
|
|
1918
|
+
*
|
|
1919
|
+
* @type {string}
|
|
1920
|
+
* @memberof Tenant
|
|
1921
|
+
*/
|
|
1922
|
+
'id'?: string;
|
|
1923
|
+
/**
|
|
1924
|
+
*
|
|
1925
|
+
* @type {string}
|
|
1926
|
+
* @memberof Tenant
|
|
1927
|
+
*/
|
|
1928
|
+
'uid'?: string;
|
|
1929
|
+
/**
|
|
1930
|
+
*
|
|
1931
|
+
* @type {string}
|
|
1932
|
+
* @memberof Tenant
|
|
1933
|
+
*/
|
|
1934
|
+
'name'?: string;
|
|
1935
|
+
/**
|
|
1936
|
+
*
|
|
1937
|
+
* @type {PrismaJsonValue}
|
|
1938
|
+
* @memberof Tenant
|
|
1939
|
+
*/
|
|
1940
|
+
'display_name'?: PrismaJsonValue | null;
|
|
1941
|
+
/**
|
|
1942
|
+
*
|
|
1943
|
+
* @type {string}
|
|
1944
|
+
* @memberof Tenant
|
|
1945
|
+
*/
|
|
1946
|
+
'email'?: string;
|
|
1947
|
+
/**
|
|
1948
|
+
*
|
|
1949
|
+
* @type {string}
|
|
1950
|
+
* @memberof Tenant
|
|
1951
|
+
*/
|
|
1952
|
+
'phone_number'?: string;
|
|
1953
|
+
/**
|
|
1954
|
+
*
|
|
1955
|
+
* @type {string}
|
|
1956
|
+
* @memberof Tenant
|
|
1957
|
+
*/
|
|
1958
|
+
'address'?: string;
|
|
1959
|
+
/**
|
|
1960
|
+
*
|
|
1961
|
+
* @type {PrismaJsonValue}
|
|
1962
|
+
* @memberof Tenant
|
|
1963
|
+
*/
|
|
1964
|
+
'metadata'?: PrismaJsonValue | null;
|
|
1965
|
+
/**
|
|
1966
|
+
*
|
|
1967
|
+
* @type {string}
|
|
1968
|
+
* @memberof Tenant
|
|
1969
|
+
*/
|
|
1970
|
+
'created_at'?: string;
|
|
1971
|
+
/**
|
|
1972
|
+
*
|
|
1973
|
+
* @type {string}
|
|
1974
|
+
* @memberof Tenant
|
|
1975
|
+
*/
|
|
1976
|
+
'updated_at'?: string;
|
|
1977
|
+
}
|
|
1905
1978
|
/**
|
|
1906
1979
|
*
|
|
1907
1980
|
* @export
|