ecotransac-shared-js 1.1.61 → 1.1.62
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -646,7 +646,6 @@ type Renovation = {
|
|
|
646
646
|
};
|
|
647
647
|
type RenovationStep = 'IN_PREPARATION' | 'PROJECT_SENT_TO_PARTNER' | 'QUOTE_SENT_TO_CLIENT' | 'WORK_COMPLETED_INVOICE_SENT' | 'WORK_IN_PROGRESS' | 'WORK_PAID';
|
|
648
648
|
type RequiredFor = 'DIFFUSION' | 'MANDATE_CREATION' | 'PROFILE';
|
|
649
|
-
type Role = 'ADMIN' | 'MEMBER' | 'PARTNER';
|
|
650
649
|
type RoofType = 'FOUR_SLOPES' | 'L_SHAPE' | 'ONE_SLOPE' | 'TWO_SLOPES' | 'T_SHAPE';
|
|
651
650
|
type SearchFilters = {
|
|
652
651
|
__typename?: 'SearchFilters';
|
|
@@ -712,10 +711,11 @@ type User = {
|
|
|
712
711
|
profile?: Maybe<Profile>;
|
|
713
712
|
properties: Array<Property>;
|
|
714
713
|
renovations: Array<Renovation>;
|
|
715
|
-
role:
|
|
714
|
+
role: UserRole;
|
|
716
715
|
slug: Scalars['String']['output'];
|
|
717
716
|
stripePortalUrl?: Maybe<Scalars['String']['output']>;
|
|
718
717
|
};
|
|
718
|
+
type UserRole = 'ADMIN' | 'LIFETIME_FREE_MEMBER' | 'MEMBER' | 'PARTNER';
|
|
719
719
|
|
|
720
720
|
type Field = {
|
|
721
721
|
name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -646,7 +646,6 @@ type Renovation = {
|
|
|
646
646
|
};
|
|
647
647
|
type RenovationStep = 'IN_PREPARATION' | 'PROJECT_SENT_TO_PARTNER' | 'QUOTE_SENT_TO_CLIENT' | 'WORK_COMPLETED_INVOICE_SENT' | 'WORK_IN_PROGRESS' | 'WORK_PAID';
|
|
648
648
|
type RequiredFor = 'DIFFUSION' | 'MANDATE_CREATION' | 'PROFILE';
|
|
649
|
-
type Role = 'ADMIN' | 'MEMBER' | 'PARTNER';
|
|
650
649
|
type RoofType = 'FOUR_SLOPES' | 'L_SHAPE' | 'ONE_SLOPE' | 'TWO_SLOPES' | 'T_SHAPE';
|
|
651
650
|
type SearchFilters = {
|
|
652
651
|
__typename?: 'SearchFilters';
|
|
@@ -712,10 +711,11 @@ type User = {
|
|
|
712
711
|
profile?: Maybe<Profile>;
|
|
713
712
|
properties: Array<Property>;
|
|
714
713
|
renovations: Array<Renovation>;
|
|
715
|
-
role:
|
|
714
|
+
role: UserRole;
|
|
716
715
|
slug: Scalars['String']['output'];
|
|
717
716
|
stripePortalUrl?: Maybe<Scalars['String']['output']>;
|
|
718
717
|
};
|
|
718
|
+
type UserRole = 'ADMIN' | 'LIFETIME_FREE_MEMBER' | 'MEMBER' | 'PARTNER';
|
|
719
719
|
|
|
720
720
|
type Field = {
|
|
721
721
|
name: string;
|