@creator.co/creatorco-kysely-types 1.0.72 → 1.0.74
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/index.d.ts +19 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -57,6 +57,9 @@ export type ArchivedSocialPost = {
|
|
|
57
57
|
title: string | null;
|
|
58
58
|
description: string | null;
|
|
59
59
|
url: string | null;
|
|
60
|
+
/**
|
|
61
|
+
* @deprecated This is here so we have some external identifier to quickly search by
|
|
62
|
+
*/
|
|
60
63
|
urlPath: string | null;
|
|
61
64
|
format: string | null;
|
|
62
65
|
type: string | null;
|
|
@@ -187,7 +190,13 @@ export type Campaign = {
|
|
|
187
190
|
minPaidAmount: number | null;
|
|
188
191
|
maxPaidAmount: number | null;
|
|
189
192
|
paymentType: string | null;
|
|
193
|
+
/**
|
|
194
|
+
* @deprecated redundant
|
|
195
|
+
*/
|
|
190
196
|
monthlyActivatedGoal: number | null;
|
|
197
|
+
/**
|
|
198
|
+
* @deprecated redundant
|
|
199
|
+
*/
|
|
191
200
|
expectedOptIns: number | null;
|
|
192
201
|
goalActivations: number | null;
|
|
193
202
|
goalOptIns: number | null;
|
|
@@ -327,6 +336,9 @@ export type CreatorProfile = {
|
|
|
327
336
|
country: string | null;
|
|
328
337
|
region: string | null;
|
|
329
338
|
birthDate: Timestamp | null;
|
|
339
|
+
/**
|
|
340
|
+
* @deprecated
|
|
341
|
+
*/
|
|
330
342
|
interests: Json | null;
|
|
331
343
|
gender: string | null;
|
|
332
344
|
shippingAddress1: string | null;
|
|
@@ -455,6 +467,9 @@ export type InstagramProfile = {
|
|
|
455
467
|
hasGuides: boolean | null;
|
|
456
468
|
hasChannel: boolean | null;
|
|
457
469
|
totalIgtvVideos: number | null;
|
|
470
|
+
/**
|
|
471
|
+
* @deprecated
|
|
472
|
+
*/
|
|
458
473
|
profilePicUrlHd: string | null;
|
|
459
474
|
lastStoriesUpdate: Timestamp | null;
|
|
460
475
|
extraData: Json | null;
|
|
@@ -484,6 +499,7 @@ export type Message = {
|
|
|
484
499
|
messageSid: string | null;
|
|
485
500
|
userId: number | null;
|
|
486
501
|
chatId: number;
|
|
502
|
+
fileId: string | null;
|
|
487
503
|
};
|
|
488
504
|
export type MessageTemplate = {
|
|
489
505
|
id: GeneratedAlways<number>;
|
|
@@ -508,6 +524,9 @@ export type OptIn = {
|
|
|
508
524
|
seen: Generated<boolean>;
|
|
509
525
|
instructions: string | null;
|
|
510
526
|
paymentAmount: number | null;
|
|
527
|
+
/**
|
|
528
|
+
* @deprecated join with TrolleyPayment for actual status
|
|
529
|
+
*/
|
|
511
530
|
paymentStatus: Generated<string>;
|
|
512
531
|
extraData: Generated<Json>;
|
|
513
532
|
favoritedDate: Timestamp | null;
|