@timardex/cluemart-shared 1.0.52 → 1.0.54
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/formFields/index.d.mts +1 -1
- package/dist/formFields/index.d.ts +1 -1
- package/dist/{global-BQGczJrr.d.ts → global-Dcn-sOaP.d.ts} +2 -0
- package/dist/{global-CLUyvAvC.d.mts → global-UPLCZDGq.d.mts} +2 -0
- package/dist/graphql/index.cjs +10 -0
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +1 -1
- package/dist/graphql/index.d.ts +1 -1
- package/dist/graphql/index.mjs +10 -0
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.d.mts +1 -1
- package/dist/hooks/index.d.ts +1 -1
- package/dist/index.cjs +10 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/utils/index.d.mts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -196,12 +196,14 @@ type RelationLog = {
|
|
|
196
196
|
resourceId: string;
|
|
197
197
|
resourceName: string;
|
|
198
198
|
resourceType: EnumResourceType;
|
|
199
|
+
siteType: SiteType | null;
|
|
199
200
|
startDate: string;
|
|
200
201
|
toStatus: EnumInviteStatus;
|
|
201
202
|
};
|
|
202
203
|
};
|
|
203
204
|
type RelationDate = {
|
|
204
205
|
lastUpdateBy: string;
|
|
206
|
+
siteType: SiteType | null;
|
|
205
207
|
startDate: string;
|
|
206
208
|
status: EnumInviteStatus;
|
|
207
209
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -196,12 +196,14 @@ type RelationLog = {
|
|
|
196
196
|
resourceId: string;
|
|
197
197
|
resourceName: string;
|
|
198
198
|
resourceType: EnumResourceType;
|
|
199
|
+
siteType: SiteType | null;
|
|
199
200
|
startDate: string;
|
|
200
201
|
toStatus: EnumInviteStatus;
|
|
201
202
|
};
|
|
202
203
|
};
|
|
203
204
|
type RelationDate = {
|
|
204
205
|
lastUpdateBy: string;
|
|
206
|
+
siteType: SiteType | null;
|
|
205
207
|
startDate: string;
|
|
206
208
|
status: EnumInviteStatus;
|
|
207
209
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -2295,6 +2295,11 @@ var RELATION_UPDATE_BY_FRAGMENT = gql10`
|
|
|
2295
2295
|
resourceName
|
|
2296
2296
|
resourceType
|
|
2297
2297
|
startDate
|
|
2298
|
+
siteType {
|
|
2299
|
+
label
|
|
2300
|
+
price
|
|
2301
|
+
stallCapacity
|
|
2302
|
+
}
|
|
2298
2303
|
toStatus
|
|
2299
2304
|
}
|
|
2300
2305
|
`;
|
|
@@ -2312,6 +2317,11 @@ var RELATION_DATES_FRAGMENT = gql10`
|
|
|
2312
2317
|
fragment RelationDates on RelationDateType {
|
|
2313
2318
|
lastUpdateBy
|
|
2314
2319
|
startDate
|
|
2320
|
+
siteType {
|
|
2321
|
+
label
|
|
2322
|
+
price
|
|
2323
|
+
stallCapacity
|
|
2324
|
+
}
|
|
2315
2325
|
status
|
|
2316
2326
|
}
|
|
2317
2327
|
`;
|