@openscreen/internal-sdk 1.8.3 → 1.8.4
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.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +1 -1
- package/typings/sdk.d.ts +4 -0
- package/typings/sdk.d.ts.map +1 -1
package/package.json
CHANGED
package/typings/sdk.d.ts
CHANGED
|
@@ -738,6 +738,7 @@ export interface App {
|
|
|
738
738
|
appPrice: number;
|
|
739
739
|
appStoreThumbnail?: string | null;
|
|
740
740
|
appWebhook?: string | null;
|
|
741
|
+
bannerImage?: string | null;
|
|
741
742
|
cardImage?: string | null;
|
|
742
743
|
categories?: Array<any> | null;
|
|
743
744
|
created?: string | Date | number | null;
|
|
@@ -2184,6 +2185,7 @@ export interface PatchApp {
|
|
|
2184
2185
|
appPrice?: number | null;
|
|
2185
2186
|
appStoreThumbnail?: string | null;
|
|
2186
2187
|
appWebhook?: string | null;
|
|
2188
|
+
bannerImage?: string | null;
|
|
2187
2189
|
cardImage?: string | null;
|
|
2188
2190
|
categories?: Array<any> | null;
|
|
2189
2191
|
created?: string | Date | number | null;
|
|
@@ -2684,6 +2686,7 @@ export interface RequestApp {
|
|
|
2684
2686
|
appPrice: number;
|
|
2685
2687
|
appStoreThumbnail?: string | null;
|
|
2686
2688
|
appWebhook?: string | null;
|
|
2689
|
+
bannerImage?: string | null;
|
|
2687
2690
|
cardImage?: string | null;
|
|
2688
2691
|
categories?: Array<any> | null;
|
|
2689
2692
|
created?: string | Date | number | null;
|
|
@@ -5759,6 +5762,7 @@ export interface SendSmsByScanIdRequestBody {
|
|
|
5759
5762
|
cellPhone?: string | null;
|
|
5760
5763
|
contactId?: string | null;
|
|
5761
5764
|
customVariables?: NestedKeyValueObject | null;
|
|
5765
|
+
sessionId?: string | null;
|
|
5762
5766
|
smsTemplateName?: string | null;
|
|
5763
5767
|
}
|
|
5764
5768
|
export interface SendSmsByScanIdResponseBody {
|