@authenty/authapi-types 1.0.21 → 1.0.22
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.ts +10 -0
- package/package.json +1 -1
- package/src/index.ts +8 -0
package/dist/index.d.ts
CHANGED
|
@@ -663,6 +663,16 @@ export declare namespace AuthApi {
|
|
|
663
663
|
msg?: string;
|
|
664
664
|
};
|
|
665
665
|
}
|
|
666
|
+
namespace admin {
|
|
667
|
+
namespace purchases {
|
|
668
|
+
namespace search {
|
|
669
|
+
type POST = {
|
|
670
|
+
purchases: objects.Purchase[];
|
|
671
|
+
pagination: auxiliarTypes.PaginationInfo;
|
|
672
|
+
};
|
|
673
|
+
}
|
|
674
|
+
}
|
|
675
|
+
}
|
|
666
676
|
}
|
|
667
677
|
/**
|
|
668
678
|
* Configuração do Client
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -679,6 +679,14 @@ export namespace AuthApi {
|
|
|
679
679
|
export namespace report {
|
|
680
680
|
export type POST = { msg?: string };
|
|
681
681
|
}
|
|
682
|
+
|
|
683
|
+
export namespace admin {
|
|
684
|
+
export namespace purchases {
|
|
685
|
+
export namespace search {
|
|
686
|
+
export type POST = {purchases: objects.Purchase[], pagination: auxiliarTypes.PaginationInfo}
|
|
687
|
+
}
|
|
688
|
+
}
|
|
689
|
+
}
|
|
682
690
|
}
|
|
683
691
|
|
|
684
692
|
/**
|