@openscreen/internal-sdk 1.4.0 → 1.4.1
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 +31 -0
- package/typings/sdk.d.ts.map +1 -1
package/package.json
CHANGED
package/typings/sdk.d.ts
CHANGED
|
@@ -736,6 +736,21 @@ export interface Asset {
|
|
|
736
736
|
staticQrCodeCount: number;
|
|
737
737
|
thumbnails?: Array<any> | null;
|
|
738
738
|
}
|
|
739
|
+
export interface AssetByAssetTypeNameAssetName {
|
|
740
|
+
_prefix?: string;
|
|
741
|
+
accountId: string;
|
|
742
|
+
appAccountId?: string | null;
|
|
743
|
+
assetId: string;
|
|
744
|
+
assetName: string;
|
|
745
|
+
assetTypeId?: string | null;
|
|
746
|
+
assetTypeName: string;
|
|
747
|
+
batchId?: string | null;
|
|
748
|
+
created?: string | Date | number | null;
|
|
749
|
+
locationId?: string | null;
|
|
750
|
+
modified?: string | Date | number | null;
|
|
751
|
+
projectId: string;
|
|
752
|
+
timestamp: string | Date | number;
|
|
753
|
+
}
|
|
739
754
|
export interface AssetByNumberCustomAttribute {
|
|
740
755
|
_prefix?: string;
|
|
741
756
|
accountId: string;
|
|
@@ -764,6 +779,22 @@ export interface AssetByStateAssetTypeName {
|
|
|
764
779
|
state?: string;
|
|
765
780
|
timestamp: string | Date | number;
|
|
766
781
|
}
|
|
782
|
+
export interface AssetByStateAssetTypeNameAssetName {
|
|
783
|
+
_prefix?: string;
|
|
784
|
+
accountId: string;
|
|
785
|
+
appAccountId?: string | null;
|
|
786
|
+
assetId: string;
|
|
787
|
+
assetName: string;
|
|
788
|
+
assetTypeId?: string | null;
|
|
789
|
+
assetTypeName: string;
|
|
790
|
+
batchId?: string | null;
|
|
791
|
+
created?: string | Date | number | null;
|
|
792
|
+
locationId?: string | null;
|
|
793
|
+
modified?: string | Date | number | null;
|
|
794
|
+
projectId: string;
|
|
795
|
+
state?: string;
|
|
796
|
+
timestamp: string | Date | number;
|
|
797
|
+
}
|
|
767
798
|
export interface AssetByStateName {
|
|
768
799
|
_prefix?: string;
|
|
769
800
|
accountId: string;
|