kcommons 5.27.22 → 5.28.0
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.
|
@@ -31,6 +31,11 @@ import { INestedExtraCoreRelatedQuestionsForCompanyEntiy } from "./extraCoreRela
|
|
|
31
31
|
import { INestedCompanySpecificVendorItemVersion } from "./companySepcificVendorItems.typings";
|
|
32
32
|
import { IPaginationFilters } from "./common/paginationFilters.typings";
|
|
33
33
|
import { INestedPOASNItemJunction } from "./poAsnJunctionItems.typings";
|
|
34
|
+
export declare enum PRICING_PLANS {
|
|
35
|
+
BASIC = "BASIC",
|
|
36
|
+
GROWTH = "GROWTH",
|
|
37
|
+
ADVANCE = "ADVANCE"
|
|
38
|
+
}
|
|
34
39
|
export interface IVendorOnboardingCompaniesFilter extends IPaginationFilters {
|
|
35
40
|
vendor_id?: string;
|
|
36
41
|
}
|
|
@@ -79,6 +84,8 @@ export declare enum COMPANY_INCLUDE {
|
|
|
79
84
|
export interface ICompany extends IAddress {
|
|
80
85
|
id: string;
|
|
81
86
|
trade_name: string;
|
|
87
|
+
max_users: number;
|
|
88
|
+
selected_price_plan: PRICING_PLANS;
|
|
82
89
|
created_at: string | null;
|
|
83
90
|
updated_at: string | null;
|
|
84
91
|
is_deleted: boolean;
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.COMPANY_INCLUDE = void 0;
|
|
3
|
+
exports.COMPANY_INCLUDE = exports.PRICING_PLANS = void 0;
|
|
4
|
+
var PRICING_PLANS;
|
|
5
|
+
(function (PRICING_PLANS) {
|
|
6
|
+
PRICING_PLANS["BASIC"] = "BASIC";
|
|
7
|
+
PRICING_PLANS["GROWTH"] = "GROWTH";
|
|
8
|
+
PRICING_PLANS["ADVANCE"] = "ADVANCE";
|
|
9
|
+
})(PRICING_PLANS || (exports.PRICING_PLANS = PRICING_PLANS = {}));
|
|
4
10
|
var COMPANY_INCLUDE;
|
|
5
11
|
(function (COMPANY_INCLUDE) {
|
|
6
12
|
COMPANY_INCLUDE["associated_purchase_locations"] = "associated_purchase_locations";
|
|
@@ -88,6 +88,7 @@ export interface IRFQ {
|
|
|
88
88
|
delivery_schedule?: string | null;
|
|
89
89
|
terms_and_conditions?: string | null;
|
|
90
90
|
deleted_at?: string | null;
|
|
91
|
+
approved_at?: string | null;
|
|
91
92
|
created_at?: string | null;
|
|
92
93
|
updated_at?: string | null;
|
|
93
94
|
company?: INestedCompany | null;
|