@authenty/authapi-types 1.0.17 → 1.0.19
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/simple-types.d.ts +11 -0
- package/dist/simple-types.js +2 -1
- package/package.json +1 -1
- package/src/simple-types.ts +11 -0
package/dist/simple-types.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import AuthApi from ".";
|
|
2
2
|
export declare const BundleType: typeof AuthApi.objects.BundleType;
|
|
3
|
+
export type BundleType = AuthApi.objects.BundleType;
|
|
3
4
|
export type Product = AuthApi.objects.Product;
|
|
4
5
|
export type ProductLevel = AuthApi.objects.ProductLevel;
|
|
5
6
|
export type Course = AuthApi.objects.Course;
|
|
@@ -14,9 +15,19 @@ export type AdminUserConfig = AuthApi.objects.AdminUserConfig;
|
|
|
14
15
|
export type LogEntry = AuthApi.objects.LogEntry;
|
|
15
16
|
export type PG_Customer = AuthApi.objects.PaymentSystem.PG_Customer;
|
|
16
17
|
export declare const PG_PurchaseLicenseStatus: typeof AuthApi.objects.PaymentSystem.PG_PurchaseLicenseStatus;
|
|
18
|
+
export type PG_PurchaseLicenseStatus = AuthApi.objects.PaymentSystem.PG_PurchaseLicenseStatus;
|
|
17
19
|
export declare const PG_PurchaseLicenseStatus_GroupActive: AuthApi.objects.PaymentSystem.PG_PurchaseLicenseStatus[];
|
|
18
20
|
export declare const PG_PurchasePaymentStatus: typeof AuthApi.objects.PaymentSystem.PG_PurchasePaymentStatus;
|
|
21
|
+
export type PG_PurchasePaymentStatus = AuthApi.objects.PaymentSystem.PG_PurchasePaymentStatus;
|
|
19
22
|
export declare const PG_PurchaseType: typeof AuthApi.objects.PaymentSystem.PG_PurchaseType;
|
|
23
|
+
export type PG_PurchaseType = AuthApi.objects.PaymentSystem.PG_PurchaseType;
|
|
20
24
|
export type PG_Purchase = AuthApi.objects.PaymentSystem.PG_Purchase;
|
|
21
25
|
export declare const PG_RecurrenceType: typeof AuthApi.objects.PaymentSystem.PG_RecurrenceType;
|
|
26
|
+
export type PG_RecurrenceType = AuthApi.objects.PaymentSystem.PG_RecurrenceType;
|
|
27
|
+
export type availableSoftware = AuthApi.auxiliarTypes.availableSoftware;
|
|
28
|
+
export declare const Privilege: typeof AuthApi.auxiliarTypes.Privilege;
|
|
29
|
+
export type Privilege = AuthApi.auxiliarTypes.Privilege;
|
|
30
|
+
export type PrivilegeTable = AuthApi.auxiliarTypes.PrivilegeTable;
|
|
31
|
+
export type CronJob = AuthApi.auxiliarTypes.CronJob;
|
|
32
|
+
export type CronjobsStatuses = AuthApi.auxiliarTypes.CronjobsStatuses;
|
|
22
33
|
export type LogFilters = AuthApi.auxiliarTypes.LogFilters;
|
package/dist/simple-types.js
CHANGED
|
@@ -4,7 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
5
5
|
};
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.PG_RecurrenceType = exports.PG_PurchaseType = exports.PG_PurchasePaymentStatus = exports.PG_PurchaseLicenseStatus_GroupActive = exports.PG_PurchaseLicenseStatus = exports.BundleType = void 0;
|
|
7
|
+
exports.Privilege = exports.PG_RecurrenceType = exports.PG_PurchaseType = exports.PG_PurchasePaymentStatus = exports.PG_PurchaseLicenseStatus_GroupActive = exports.PG_PurchaseLicenseStatus = exports.BundleType = void 0;
|
|
8
8
|
const _1 = __importDefault(require("."));
|
|
9
9
|
exports.BundleType = _1.default.objects.BundleType;
|
|
10
10
|
exports.PG_PurchaseLicenseStatus = _1.default.objects.PaymentSystem.PG_PurchaseLicenseStatus;
|
|
@@ -12,4 +12,5 @@ exports.PG_PurchaseLicenseStatus_GroupActive = _1.default.objects.PaymentSystem.
|
|
|
12
12
|
exports.PG_PurchasePaymentStatus = _1.default.objects.PaymentSystem.PG_PurchasePaymentStatus;
|
|
13
13
|
exports.PG_PurchaseType = _1.default.objects.PaymentSystem.PG_PurchaseType;
|
|
14
14
|
exports.PG_RecurrenceType = _1.default.objects.PaymentSystem.PG_RecurrenceType;
|
|
15
|
+
exports.Privilege = _1.default.auxiliarTypes.Privilege;
|
|
15
16
|
// export type PG_PurchasePaymentStatus = AuthApi.objects.PaymentSystem.PG_PurchasePaymentStatus;
|
package/package.json
CHANGED
package/src/simple-types.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
import AuthApi from ".";
|
|
5
5
|
|
|
6
6
|
export const BundleType = AuthApi.objects.BundleType;
|
|
7
|
+
export type BundleType = AuthApi.objects.BundleType;
|
|
7
8
|
export type Product = AuthApi.objects.Product;
|
|
8
9
|
export type ProductLevel = AuthApi.objects.ProductLevel;
|
|
9
10
|
export type Course = AuthApi.objects.Course;
|
|
@@ -19,12 +20,22 @@ export type LogEntry = AuthApi.objects.LogEntry;
|
|
|
19
20
|
|
|
20
21
|
export type PG_Customer = AuthApi.objects.PaymentSystem.PG_Customer;
|
|
21
22
|
export const PG_PurchaseLicenseStatus = AuthApi.objects.PaymentSystem.PG_PurchaseLicenseStatus;
|
|
23
|
+
export type PG_PurchaseLicenseStatus = AuthApi.objects.PaymentSystem.PG_PurchaseLicenseStatus;
|
|
22
24
|
export const PG_PurchaseLicenseStatus_GroupActive = AuthApi.objects.PaymentSystem.PG_PurchaseLicenseStatus_GroupActive;
|
|
23
25
|
export const PG_PurchasePaymentStatus = AuthApi.objects.PaymentSystem.PG_PurchasePaymentStatus;
|
|
26
|
+
export type PG_PurchasePaymentStatus = AuthApi.objects.PaymentSystem.PG_PurchasePaymentStatus;
|
|
24
27
|
export const PG_PurchaseType = AuthApi.objects.PaymentSystem.PG_PurchaseType;
|
|
28
|
+
export type PG_PurchaseType = AuthApi.objects.PaymentSystem.PG_PurchaseType;
|
|
25
29
|
export type PG_Purchase = AuthApi.objects.PaymentSystem.PG_Purchase;
|
|
26
30
|
export const PG_RecurrenceType = AuthApi.objects.PaymentSystem.PG_RecurrenceType;
|
|
31
|
+
export type PG_RecurrenceType = AuthApi.objects.PaymentSystem.PG_RecurrenceType;
|
|
27
32
|
|
|
33
|
+
export type availableSoftware = AuthApi.auxiliarTypes.availableSoftware;
|
|
34
|
+
export const Privilege = AuthApi.auxiliarTypes.Privilege;
|
|
35
|
+
export type Privilege = AuthApi.auxiliarTypes.Privilege;
|
|
36
|
+
export type PrivilegeTable = AuthApi.auxiliarTypes.PrivilegeTable;
|
|
37
|
+
export type CronJob = AuthApi.auxiliarTypes.CronJob;
|
|
38
|
+
export type CronjobsStatuses = AuthApi.auxiliarTypes.CronjobsStatuses;
|
|
28
39
|
export type LogFilters = AuthApi.auxiliarTypes.LogFilters;
|
|
29
40
|
|
|
30
41
|
|