@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260306085544 → 0.8.1-dev.20260318114337
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.d.mts +27 -1
- package/dist/index.d.ts +27 -1
- package/dist/index.js +809 -0
- package/dist/index.mjs +808 -0
- package/package.json +50 -5
package/dist/index.d.mts
CHANGED
|
@@ -177,4 +177,30 @@ interface FilterColumn {
|
|
|
177
177
|
}
|
|
178
178
|
declare const DataList: React.FC<DataListConfiguration<any>>;
|
|
179
179
|
|
|
180
|
-
|
|
180
|
+
interface Session {
|
|
181
|
+
cid: string;
|
|
182
|
+
contactId?: number;
|
|
183
|
+
fullName?: string;
|
|
184
|
+
truncatedPhone?: string;
|
|
185
|
+
userCurrencyCode?: string;
|
|
186
|
+
marketCode?: string;
|
|
187
|
+
oAuthToken?: string;
|
|
188
|
+
refreshToken?: string;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
interface PageBodyRendererProps {
|
|
192
|
+
rawBody?: string;
|
|
193
|
+
routeParameters?: {
|
|
194
|
+
[key: string]: any;
|
|
195
|
+
};
|
|
196
|
+
query?: {
|
|
197
|
+
[key: string]: string;
|
|
198
|
+
};
|
|
199
|
+
session: Session;
|
|
200
|
+
host: string;
|
|
201
|
+
path: string;
|
|
202
|
+
apiBaseUrl: string;
|
|
203
|
+
}
|
|
204
|
+
declare const PageBodyRenderer: React.FC<PageBodyRendererProps>;
|
|
205
|
+
|
|
206
|
+
export { type ActionResponse, DataList, InputControl, type InputControlProps, InputControlType, PageBodyRenderer, ViewControl, type ViewControlProps, ViewControlTypes };
|
package/dist/index.d.ts
CHANGED
|
@@ -177,4 +177,30 @@ interface FilterColumn {
|
|
|
177
177
|
}
|
|
178
178
|
declare const DataList: React.FC<DataListConfiguration<any>>;
|
|
179
179
|
|
|
180
|
-
|
|
180
|
+
interface Session {
|
|
181
|
+
cid: string;
|
|
182
|
+
contactId?: number;
|
|
183
|
+
fullName?: string;
|
|
184
|
+
truncatedPhone?: string;
|
|
185
|
+
userCurrencyCode?: string;
|
|
186
|
+
marketCode?: string;
|
|
187
|
+
oAuthToken?: string;
|
|
188
|
+
refreshToken?: string;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
interface PageBodyRendererProps {
|
|
192
|
+
rawBody?: string;
|
|
193
|
+
routeParameters?: {
|
|
194
|
+
[key: string]: any;
|
|
195
|
+
};
|
|
196
|
+
query?: {
|
|
197
|
+
[key: string]: string;
|
|
198
|
+
};
|
|
199
|
+
session: Session;
|
|
200
|
+
host: string;
|
|
201
|
+
path: string;
|
|
202
|
+
apiBaseUrl: string;
|
|
203
|
+
}
|
|
204
|
+
declare const PageBodyRenderer: React.FC<PageBodyRendererProps>;
|
|
205
|
+
|
|
206
|
+
export { type ActionResponse, DataList, InputControl, type InputControlProps, InputControlType, PageBodyRenderer, ViewControl, type ViewControlProps, ViewControlTypes };
|