@xoxno/types 1.0.198 → 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-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
|
@@ -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);
|