@xoxno/types 1.0.197 → 1.0.199
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/cosmos-db/documents/ticketing/event-guest.doc.d.ts +1 -1
- package/dist/cosmos-db/documents/ticketing/event-guest.doc.js +1 -0
- package/dist/cosmos-db/documents/ticketing/event-profile.doc.d.ts +2 -2
- package/dist/cosmos-db/documents/ticketing/event-profile.doc.js +3 -0
- package/dist/cosmos-db/documents/ticketing/event-stage-profile.doc.d.ts +2 -2
- package/dist/cosmos-db/documents/ticketing/event-stage-profile.doc.js +2 -0
- package/dist/cosmos-db/documents/ticketing/event-ticket-profile.doc.d.ts +2 -2
- package/dist/cosmos-db/documents/ticketing/event-ticket-profile.doc.js +2 -0
- package/package.json +1 -1
|
@@ -41,8 +41,8 @@ export declare class EventProfileDoc {
|
|
|
41
41
|
seo?: EventSeoDto;
|
|
42
42
|
id: string;
|
|
43
43
|
eventPermissions?: Pick<EventUserRoleDoc, 'role' | 'permissions' | 'endTime'>;
|
|
44
|
-
pk
|
|
45
|
-
_ts
|
|
44
|
+
pk?: string;
|
|
45
|
+
_ts?: number;
|
|
46
46
|
constructor(props?: Partial<EventProfileDoc>);
|
|
47
47
|
}
|
|
48
48
|
export declare class EventStartPrice {
|
|
@@ -293,6 +293,7 @@ __decorate([
|
|
|
293
293
|
__decorate([
|
|
294
294
|
(0, swagger_1.ApiProperty)({
|
|
295
295
|
description: 'Automatically generated unique identifier for the event.',
|
|
296
|
+
required: true,
|
|
296
297
|
}),
|
|
297
298
|
__metadata("design:type", String)
|
|
298
299
|
], EventProfileDoc.prototype, "id", void 0);
|
|
@@ -310,6 +311,7 @@ __decorate([
|
|
|
310
311
|
(0, swagger_1.ApiProperty)({
|
|
311
312
|
description: 'Partition key for Cosmos DB document.',
|
|
312
313
|
type: String,
|
|
314
|
+
required: false,
|
|
313
315
|
}),
|
|
314
316
|
__metadata("design:type", String)
|
|
315
317
|
], EventProfileDoc.prototype, "pk", void 0);
|
|
@@ -317,6 +319,7 @@ __decorate([
|
|
|
317
319
|
(0, swagger_1.ApiProperty)({
|
|
318
320
|
description: 'Timestamp for document in Cosmos DB.',
|
|
319
321
|
type: 'integer',
|
|
322
|
+
required: false,
|
|
320
323
|
}),
|
|
321
324
|
__metadata("design:type", Number)
|
|
322
325
|
], EventProfileDoc.prototype, "_ts", void 0);
|
|
@@ -177,11 +177,13 @@ __decorate([
|
|
|
177
177
|
(0, swagger_1.ApiProperty)({
|
|
178
178
|
description: 'Partition key for Cosmos DB document.',
|
|
179
179
|
type: String,
|
|
180
|
+
required: false,
|
|
180
181
|
}),
|
|
181
182
|
__metadata("design:type", String)
|
|
182
183
|
], EventStageProfileDoc.prototype, "pk", void 0);
|
|
183
184
|
__decorate([
|
|
184
185
|
(0, swagger_1.ApiProperty)({
|
|
186
|
+
required: false,
|
|
185
187
|
description: 'Timestamp for document in Cosmos DB.',
|
|
186
188
|
type: 'integer',
|
|
187
189
|
}),
|
|
@@ -13,8 +13,8 @@ export declare class EventTicketProfileDoc {
|
|
|
13
13
|
soldCount: number;
|
|
14
14
|
createdAt: number;
|
|
15
15
|
id: string;
|
|
16
|
-
pk
|
|
17
|
-
_ts
|
|
16
|
+
pk?: string;
|
|
17
|
+
_ts?: number;
|
|
18
18
|
constructor(props?: Partial<EventTicketProfileDoc>);
|
|
19
19
|
}
|
|
20
20
|
declare type TicketProfileSummary_base = Pick<EventTicketProfileDoc, "description" | "profile" | "name" | "badgeColor" | "characteristics">;
|
|
@@ -148,6 +148,7 @@ __decorate([
|
|
|
148
148
|
(0, swagger_1.ApiProperty)({
|
|
149
149
|
description: 'Partition key for Cosmos DB document.',
|
|
150
150
|
type: String,
|
|
151
|
+
required: false,
|
|
151
152
|
}),
|
|
152
153
|
__metadata("design:type", String)
|
|
153
154
|
], EventTicketProfileDoc.prototype, "pk", void 0);
|
|
@@ -155,6 +156,7 @@ __decorate([
|
|
|
155
156
|
(0, swagger_1.ApiProperty)({
|
|
156
157
|
description: 'Timestamp for document in Cosmos DB.',
|
|
157
158
|
type: 'integer',
|
|
159
|
+
required: false,
|
|
158
160
|
}),
|
|
159
161
|
__metadata("design:type", Number)
|
|
160
162
|
], EventTicketProfileDoc.prototype, "_ts", void 0);
|