@gscdump/contracts 0.33.9 → 0.33.10
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.
|
@@ -817,6 +817,7 @@ declare const partnerLifecycleAccountSchema: z.ZodObject<{
|
|
|
817
817
|
}, z.core.$loose>;
|
|
818
818
|
declare const partnerLifecycleSiteSchema: z.ZodObject<{
|
|
819
819
|
siteId: z.ZodString;
|
|
820
|
+
intId: z.ZodNullable<z.ZodNumber>;
|
|
820
821
|
externalSiteId: z.ZodNullable<z.ZodString>;
|
|
821
822
|
requestedUrl: z.ZodString;
|
|
822
823
|
gscPropertyUrl: z.ZodNullable<z.ZodString>;
|
|
@@ -967,6 +968,7 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
|
|
|
967
968
|
}, z.core.$loose>;
|
|
968
969
|
sites: z.ZodArray<z.ZodObject<{
|
|
969
970
|
siteId: z.ZodString;
|
|
971
|
+
intId: z.ZodNullable<z.ZodNumber>;
|
|
970
972
|
externalSiteId: z.ZodNullable<z.ZodString>;
|
|
971
973
|
requestedUrl: z.ZodString;
|
|
972
974
|
gscPropertyUrl: z.ZodNullable<z.ZodString>;
|
|
@@ -1098,6 +1100,7 @@ declare const gscdumpAvailableSiteSchema: z.ZodObject<{
|
|
|
1098
1100
|
permissionLevel: z.ZodString;
|
|
1099
1101
|
registered: z.ZodBoolean;
|
|
1100
1102
|
siteId: z.ZodOptional<z.ZodString>;
|
|
1103
|
+
intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1101
1104
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1102
1105
|
pending: "pending";
|
|
1103
1106
|
error: "error";
|
|
@@ -1130,6 +1133,7 @@ declare const gscdumpUserSiteSchema: z.ZodObject<{
|
|
|
1130
1133
|
}, z.core.$loose>;
|
|
1131
1134
|
declare const gscdumpSiteRegistrationSchema: z.ZodObject<{
|
|
1132
1135
|
siteId: z.ZodString;
|
|
1136
|
+
intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1133
1137
|
status: z.ZodEnum<{
|
|
1134
1138
|
pending: "pending";
|
|
1135
1139
|
error: "error";
|
|
@@ -2827,6 +2831,7 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2827
2831
|
permissionLevel: z.ZodString;
|
|
2828
2832
|
registered: z.ZodBoolean;
|
|
2829
2833
|
siteId: z.ZodOptional<z.ZodString>;
|
|
2834
|
+
intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2830
2835
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2831
2836
|
pending: "pending";
|
|
2832
2837
|
error: "error";
|
|
@@ -2891,6 +2896,7 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2891
2896
|
}, z.core.$loose>;
|
|
2892
2897
|
sites: z.ZodArray<z.ZodObject<{
|
|
2893
2898
|
siteId: z.ZodString;
|
|
2899
|
+
intId: z.ZodNullable<z.ZodNumber>;
|
|
2894
2900
|
externalSiteId: z.ZodNullable<z.ZodString>;
|
|
2895
2901
|
requestedUrl: z.ZodString;
|
|
2896
2902
|
gscPropertyUrl: z.ZodNullable<z.ZodString>;
|
|
@@ -3043,6 +3049,7 @@ declare const partnerControlEndpointSchemas: {
|
|
|
3043
3049
|
permissionLevel: z.ZodString;
|
|
3044
3050
|
registered: z.ZodBoolean;
|
|
3045
3051
|
siteId: z.ZodOptional<z.ZodString>;
|
|
3052
|
+
intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3046
3053
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3047
3054
|
pending: "pending";
|
|
3048
3055
|
error: "error";
|
|
@@ -3090,6 +3097,7 @@ declare const partnerControlEndpointSchemas: {
|
|
|
3090
3097
|
}, z.core.$strip>;
|
|
3091
3098
|
readonly response: z.ZodObject<{
|
|
3092
3099
|
siteId: z.ZodString;
|
|
3100
|
+
intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3093
3101
|
status: z.ZodEnum<{
|
|
3094
3102
|
pending: "pending";
|
|
3095
3103
|
error: "error";
|
|
@@ -4326,6 +4334,7 @@ declare const partnerEndpointSchemas: {
|
|
|
4326
4334
|
permissionLevel: z.ZodString;
|
|
4327
4335
|
registered: z.ZodBoolean;
|
|
4328
4336
|
siteId: z.ZodOptional<z.ZodString>;
|
|
4337
|
+
intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4329
4338
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4330
4339
|
pending: "pending";
|
|
4331
4340
|
error: "error";
|
|
@@ -4390,6 +4399,7 @@ declare const partnerEndpointSchemas: {
|
|
|
4390
4399
|
}, z.core.$loose>;
|
|
4391
4400
|
sites: z.ZodArray<z.ZodObject<{
|
|
4392
4401
|
siteId: z.ZodString;
|
|
4402
|
+
intId: z.ZodNullable<z.ZodNumber>;
|
|
4393
4403
|
externalSiteId: z.ZodNullable<z.ZodString>;
|
|
4394
4404
|
requestedUrl: z.ZodString;
|
|
4395
4405
|
gscPropertyUrl: z.ZodNullable<z.ZodString>;
|
|
@@ -4542,6 +4552,7 @@ declare const partnerEndpointSchemas: {
|
|
|
4542
4552
|
permissionLevel: z.ZodString;
|
|
4543
4553
|
registered: z.ZodBoolean;
|
|
4544
4554
|
siteId: z.ZodOptional<z.ZodString>;
|
|
4555
|
+
intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4545
4556
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4546
4557
|
pending: "pending";
|
|
4547
4558
|
error: "error";
|
|
@@ -4589,6 +4600,7 @@ declare const partnerEndpointSchemas: {
|
|
|
4589
4600
|
}, z.core.$strip>;
|
|
4590
4601
|
readonly response: z.ZodObject<{
|
|
4591
4602
|
siteId: z.ZodString;
|
|
4603
|
+
intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4592
4604
|
status: z.ZodEnum<{
|
|
4593
4605
|
pending: "pending";
|
|
4594
4606
|
error: "error";
|
package/dist/_chunks/schemas.mjs
CHANGED
|
@@ -594,6 +594,7 @@ const partnerLifecycleAccountSchema = z.object({
|
|
|
594
594
|
}).loose();
|
|
595
595
|
const partnerLifecycleSiteSchema = z.object({
|
|
596
596
|
siteId: z.string(),
|
|
597
|
+
intId: z.number().nullable(),
|
|
597
598
|
externalSiteId: z.string().nullable(),
|
|
598
599
|
requestedUrl: z.string(),
|
|
599
600
|
gscPropertyUrl: z.string().nullable(),
|
|
@@ -641,6 +642,7 @@ const gscdumpAvailableSiteSchema = z.object({
|
|
|
641
642
|
permissionLevel: z.string(),
|
|
642
643
|
registered: z.boolean(),
|
|
643
644
|
siteId: z.string().optional(),
|
|
645
|
+
intId: z.number().nullable().optional(),
|
|
644
646
|
syncStatus: z.enum([
|
|
645
647
|
"pending",
|
|
646
648
|
"syncing",
|
|
@@ -673,6 +675,7 @@ const gscdumpUserSiteSchema = z.object({
|
|
|
673
675
|
}).loose();
|
|
674
676
|
const gscdumpSiteRegistrationSchema = z.object({
|
|
675
677
|
siteId: z.string(),
|
|
678
|
+
intId: z.number().nullable().optional(),
|
|
676
679
|
status: z.enum([
|
|
677
680
|
"idle",
|
|
678
681
|
"pending",
|
package/dist/_chunks/types.d.mts
CHANGED
|
@@ -168,6 +168,8 @@ interface PartnerLifecycleAccount {
|
|
|
168
168
|
}
|
|
169
169
|
interface PartnerLifecycleSite {
|
|
170
170
|
siteId: string;
|
|
171
|
+
/** Integer alias (`user_sites.int_id`) — the int JOIN key partners denormalize into their own catalog namespaces. Nullable only for pre-0029 unbackfilled rows. */
|
|
172
|
+
intId: number | null;
|
|
171
173
|
externalSiteId: string | null;
|
|
172
174
|
requestedUrl: string;
|
|
173
175
|
gscPropertyUrl: string | null;
|
|
@@ -704,6 +706,8 @@ interface GscdumpAvailableSite {
|
|
|
704
706
|
permissionLevel: string;
|
|
705
707
|
registered: boolean;
|
|
706
708
|
siteId?: string;
|
|
709
|
+
/** Integer alias (`user_sites.int_id`) — the int JOIN key partners denormalize into their own catalog namespaces. Present on registered sites. */
|
|
710
|
+
intId?: number | null;
|
|
707
711
|
syncStatus?: 'pending' | 'syncing' | 'synced' | 'error';
|
|
708
712
|
syncProgress?: {
|
|
709
713
|
completed: number;
|
|
@@ -717,6 +721,8 @@ interface GscdumpAvailableSite {
|
|
|
717
721
|
}
|
|
718
722
|
interface GscdumpSiteRegistration {
|
|
719
723
|
siteId: string;
|
|
724
|
+
/** Integer alias (`user_sites.int_id`) — the int JOIN key partners denormalize into their own catalog namespaces. */
|
|
725
|
+
intId?: number | null;
|
|
720
726
|
status: 'idle' | 'pending' | 'syncing' | 'synced' | 'error';
|
|
721
727
|
message?: string;
|
|
722
728
|
existing?: boolean;
|