@supernova-studio/client 0.48.6 → 0.48.8

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/index.d.mts CHANGED
@@ -7731,6 +7731,17 @@ declare const DTODocumentationLinkPreviewRequest: z.ZodObject<{
7731
7731
  }>;
7732
7732
  type DTODocumentationLinkPreviewRequest = z.infer<typeof DTODocumentationLinkPreviewRequest>;
7733
7733
 
7734
+ declare const DTOPublishDocumentationChanges: z.ZodObject<{
7735
+ pagePersistentIds: z.ZodArray<z.ZodString, "many">;
7736
+ groupPersistentIds: z.ZodArray<z.ZodString, "many">;
7737
+ }, "strip", z.ZodTypeAny, {
7738
+ pagePersistentIds: string[];
7739
+ groupPersistentIds: string[];
7740
+ }, {
7741
+ pagePersistentIds: string[];
7742
+ groupPersistentIds: string[];
7743
+ }>;
7744
+ type DTOPublishDocumentationChanges = z.infer<typeof DTOPublishDocumentationChanges>;
7734
7745
  declare const DTOPublishDocumentationRequest: z.ZodObject<{
7735
7746
  environment: z.ZodEnum<["Live", "Preview"]>;
7736
7747
  /**
@@ -7945,10 +7956,31 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
7945
7956
  }>>;
7946
7957
  documentation: z.ZodOptional<z.ZodObject<{
7947
7958
  environment: z.ZodEnum<["Live", "Preview"]>;
7959
+ changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
7960
+ pagePersistentIds: string[];
7961
+ groupPersistentIds: string[];
7962
+ }, z.ZodTypeDef, {
7963
+ pagePersistentIds: string[];
7964
+ groupPersistentIds: string[];
7965
+ }>>>, {
7966
+ pagePersistentIds: string[];
7967
+ groupPersistentIds: string[];
7968
+ } | undefined, {
7969
+ pagePersistentIds: string[];
7970
+ groupPersistentIds: string[];
7971
+ } | null | undefined>;
7948
7972
  }, "strip", z.ZodTypeAny, {
7949
7973
  environment: "Live" | "Preview";
7974
+ changes?: {
7975
+ pagePersistentIds: string[];
7976
+ groupPersistentIds: string[];
7977
+ } | undefined;
7950
7978
  }, {
7951
7979
  environment: "Live" | "Preview";
7980
+ changes?: {
7981
+ pagePersistentIds: string[];
7982
+ groupPersistentIds: string[];
7983
+ } | null | undefined;
7952
7984
  }>>;
7953
7985
  webhookUrl: z.ZodOptional<z.ZodString>;
7954
7986
  }, "strip", z.ZodTypeAny, {
@@ -7993,6 +8025,10 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
7993
8025
  } | undefined;
7994
8026
  documentation?: {
7995
8027
  environment: "Live" | "Preview";
8028
+ changes?: {
8029
+ pagePersistentIds: string[];
8030
+ groupPersistentIds: string[];
8031
+ } | undefined;
7996
8032
  } | undefined;
7997
8033
  webhookUrl?: string | undefined;
7998
8034
  }, {
@@ -8037,6 +8073,10 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
8037
8073
  } | undefined;
8038
8074
  documentation?: {
8039
8075
  environment: "Live" | "Preview";
8076
+ changes?: {
8077
+ pagePersistentIds: string[];
8078
+ groupPersistentIds: string[];
8079
+ } | null | undefined;
8040
8080
  } | undefined;
8041
8081
  webhookUrl?: string | undefined;
8042
8082
  }>;
@@ -8251,6 +8291,10 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
8251
8291
  } | undefined;
8252
8292
  documentation?: {
8253
8293
  environment: "Live" | "Preview";
8294
+ changes?: {
8295
+ pagePersistentIds: string[];
8296
+ groupPersistentIds: string[];
8297
+ } | undefined;
8254
8298
  } | undefined;
8255
8299
  webhookUrl?: string | undefined;
8256
8300
  };
@@ -8359,6 +8403,10 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
8359
8403
  } | undefined;
8360
8404
  documentation?: {
8361
8405
  environment: "Live" | "Preview";
8406
+ changes?: {
8407
+ pagePersistentIds: string[];
8408
+ groupPersistentIds: string[];
8409
+ } | null | undefined;
8362
8410
  } | undefined;
8363
8411
  webhookUrl?: string | undefined;
8364
8412
  };
@@ -8469,6 +8517,10 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
8469
8517
  } | undefined;
8470
8518
  documentation?: {
8471
8519
  environment: "Live" | "Preview";
8520
+ changes?: {
8521
+ pagePersistentIds: string[];
8522
+ groupPersistentIds: string[];
8523
+ } | undefined;
8472
8524
  } | undefined;
8473
8525
  webhookUrl?: string | undefined;
8474
8526
  };
@@ -8579,6 +8631,10 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
8579
8631
  } | undefined;
8580
8632
  documentation?: {
8581
8633
  environment: "Live" | "Preview";
8634
+ changes?: {
8635
+ pagePersistentIds: string[];
8636
+ groupPersistentIds: string[];
8637
+ } | null | undefined;
8582
8638
  } | undefined;
8583
8639
  webhookUrl?: string | undefined;
8584
8640
  };
@@ -30584,10 +30640,31 @@ declare const DTOExportJobDestinations: z.ZodObject<{
30584
30640
  }>>;
30585
30641
  documentation: z.ZodOptional<z.ZodObject<{
30586
30642
  environment: z.ZodEnum<["Live", "Preview"]>;
30643
+ changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
30644
+ pagePersistentIds: string[];
30645
+ groupPersistentIds: string[];
30646
+ }, z.ZodTypeDef, {
30647
+ pagePersistentIds: string[];
30648
+ groupPersistentIds: string[];
30649
+ }>>>, {
30650
+ pagePersistentIds: string[];
30651
+ groupPersistentIds: string[];
30652
+ } | undefined, {
30653
+ pagePersistentIds: string[];
30654
+ groupPersistentIds: string[];
30655
+ } | null | undefined>;
30587
30656
  }, "strip", z.ZodTypeAny, {
30588
30657
  environment: "Live" | "Preview";
30658
+ changes?: {
30659
+ pagePersistentIds: string[];
30660
+ groupPersistentIds: string[];
30661
+ } | undefined;
30589
30662
  }, {
30590
30663
  environment: "Live" | "Preview";
30664
+ changes?: {
30665
+ pagePersistentIds: string[];
30666
+ groupPersistentIds: string[];
30667
+ } | null | undefined;
30591
30668
  }>>;
30592
30669
  webhookUrl: z.ZodOptional<z.ZodString>;
30593
30670
  }, "strip", z.ZodTypeAny, {
@@ -30632,6 +30709,10 @@ declare const DTOExportJobDestinations: z.ZodObject<{
30632
30709
  } | undefined;
30633
30710
  documentation?: {
30634
30711
  environment: "Live" | "Preview";
30712
+ changes?: {
30713
+ pagePersistentIds: string[];
30714
+ groupPersistentIds: string[];
30715
+ } | undefined;
30635
30716
  } | undefined;
30636
30717
  webhookUrl?: string | undefined;
30637
30718
  }, {
@@ -30676,6 +30757,10 @@ declare const DTOExportJobDestinations: z.ZodObject<{
30676
30757
  } | undefined;
30677
30758
  documentation?: {
30678
30759
  environment: "Live" | "Preview";
30760
+ changes?: {
30761
+ pagePersistentIds: string[];
30762
+ groupPersistentIds: string[];
30763
+ } | null | undefined;
30679
30764
  } | undefined;
30680
30765
  webhookUrl?: string | undefined;
30681
30766
  }>;
@@ -30863,10 +30948,31 @@ declare const DTOExportJob: z.ZodObject<{
30863
30948
  }>>;
30864
30949
  documentation: z.ZodOptional<z.ZodObject<{
30865
30950
  environment: z.ZodEnum<["Live", "Preview"]>;
30951
+ changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
30952
+ pagePersistentIds: string[];
30953
+ groupPersistentIds: string[];
30954
+ }, z.ZodTypeDef, {
30955
+ pagePersistentIds: string[];
30956
+ groupPersistentIds: string[];
30957
+ }>>>, {
30958
+ pagePersistentIds: string[];
30959
+ groupPersistentIds: string[];
30960
+ } | undefined, {
30961
+ pagePersistentIds: string[];
30962
+ groupPersistentIds: string[];
30963
+ } | null | undefined>;
30866
30964
  }, "strip", z.ZodTypeAny, {
30867
30965
  environment: "Live" | "Preview";
30966
+ changes?: {
30967
+ pagePersistentIds: string[];
30968
+ groupPersistentIds: string[];
30969
+ } | undefined;
30868
30970
  }, {
30869
30971
  environment: "Live" | "Preview";
30972
+ changes?: {
30973
+ pagePersistentIds: string[];
30974
+ groupPersistentIds: string[];
30975
+ } | null | undefined;
30870
30976
  }>>;
30871
30977
  webhookUrl: z.ZodOptional<z.ZodString>;
30872
30978
  }, "strip", z.ZodTypeAny, {
@@ -30911,6 +31017,10 @@ declare const DTOExportJob: z.ZodObject<{
30911
31017
  } | undefined;
30912
31018
  documentation?: {
30913
31019
  environment: "Live" | "Preview";
31020
+ changes?: {
31021
+ pagePersistentIds: string[];
31022
+ groupPersistentIds: string[];
31023
+ } | undefined;
30914
31024
  } | undefined;
30915
31025
  webhookUrl?: string | undefined;
30916
31026
  }, {
@@ -30955,6 +31065,10 @@ declare const DTOExportJob: z.ZodObject<{
30955
31065
  } | undefined;
30956
31066
  documentation?: {
30957
31067
  environment: "Live" | "Preview";
31068
+ changes?: {
31069
+ pagePersistentIds: string[];
31070
+ groupPersistentIds: string[];
31071
+ } | null | undefined;
30958
31072
  } | undefined;
30959
31073
  webhookUrl?: string | undefined;
30960
31074
  }>;
@@ -31169,6 +31283,10 @@ declare const DTOExportJob: z.ZodObject<{
31169
31283
  } | undefined;
31170
31284
  documentation?: {
31171
31285
  environment: "Live" | "Preview";
31286
+ changes?: {
31287
+ pagePersistentIds: string[];
31288
+ groupPersistentIds: string[];
31289
+ } | undefined;
31172
31290
  } | undefined;
31173
31291
  webhookUrl?: string | undefined;
31174
31292
  };
@@ -31277,6 +31395,10 @@ declare const DTOExportJob: z.ZodObject<{
31277
31395
  } | undefined;
31278
31396
  documentation?: {
31279
31397
  environment: "Live" | "Preview";
31398
+ changes?: {
31399
+ pagePersistentIds: string[];
31400
+ groupPersistentIds: string[];
31401
+ } | null | undefined;
31280
31402
  } | undefined;
31281
31403
  webhookUrl?: string | undefined;
31282
31404
  };
@@ -31524,10 +31646,31 @@ declare const DTOExportJobResponse: z.ZodObject<{
31524
31646
  }>>;
31525
31647
  documentation: z.ZodOptional<z.ZodObject<{
31526
31648
  environment: z.ZodEnum<["Live", "Preview"]>;
31649
+ changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
31650
+ pagePersistentIds: string[];
31651
+ groupPersistentIds: string[];
31652
+ }, z.ZodTypeDef, {
31653
+ pagePersistentIds: string[];
31654
+ groupPersistentIds: string[];
31655
+ }>>>, {
31656
+ pagePersistentIds: string[];
31657
+ groupPersistentIds: string[];
31658
+ } | undefined, {
31659
+ pagePersistentIds: string[];
31660
+ groupPersistentIds: string[];
31661
+ } | null | undefined>;
31527
31662
  }, "strip", z.ZodTypeAny, {
31528
31663
  environment: "Live" | "Preview";
31664
+ changes?: {
31665
+ pagePersistentIds: string[];
31666
+ groupPersistentIds: string[];
31667
+ } | undefined;
31529
31668
  }, {
31530
31669
  environment: "Live" | "Preview";
31670
+ changes?: {
31671
+ pagePersistentIds: string[];
31672
+ groupPersistentIds: string[];
31673
+ } | null | undefined;
31531
31674
  }>>;
31532
31675
  webhookUrl: z.ZodOptional<z.ZodString>;
31533
31676
  }, "strip", z.ZodTypeAny, {
@@ -31572,6 +31715,10 @@ declare const DTOExportJobResponse: z.ZodObject<{
31572
31715
  } | undefined;
31573
31716
  documentation?: {
31574
31717
  environment: "Live" | "Preview";
31718
+ changes?: {
31719
+ pagePersistentIds: string[];
31720
+ groupPersistentIds: string[];
31721
+ } | undefined;
31575
31722
  } | undefined;
31576
31723
  webhookUrl?: string | undefined;
31577
31724
  }, {
@@ -31616,6 +31763,10 @@ declare const DTOExportJobResponse: z.ZodObject<{
31616
31763
  } | undefined;
31617
31764
  documentation?: {
31618
31765
  environment: "Live" | "Preview";
31766
+ changes?: {
31767
+ pagePersistentIds: string[];
31768
+ groupPersistentIds: string[];
31769
+ } | null | undefined;
31619
31770
  } | undefined;
31620
31771
  webhookUrl?: string | undefined;
31621
31772
  }>;
@@ -31830,6 +31981,10 @@ declare const DTOExportJobResponse: z.ZodObject<{
31830
31981
  } | undefined;
31831
31982
  documentation?: {
31832
31983
  environment: "Live" | "Preview";
31984
+ changes?: {
31985
+ pagePersistentIds: string[];
31986
+ groupPersistentIds: string[];
31987
+ } | undefined;
31833
31988
  } | undefined;
31834
31989
  webhookUrl?: string | undefined;
31835
31990
  };
@@ -31938,6 +32093,10 @@ declare const DTOExportJobResponse: z.ZodObject<{
31938
32093
  } | undefined;
31939
32094
  documentation?: {
31940
32095
  environment: "Live" | "Preview";
32096
+ changes?: {
32097
+ pagePersistentIds: string[];
32098
+ groupPersistentIds: string[];
32099
+ } | null | undefined;
31941
32100
  } | undefined;
31942
32101
  webhookUrl?: string | undefined;
31943
32102
  };
@@ -32048,6 +32207,10 @@ declare const DTOExportJobResponse: z.ZodObject<{
32048
32207
  } | undefined;
32049
32208
  documentation?: {
32050
32209
  environment: "Live" | "Preview";
32210
+ changes?: {
32211
+ pagePersistentIds: string[];
32212
+ groupPersistentIds: string[];
32213
+ } | undefined;
32051
32214
  } | undefined;
32052
32215
  webhookUrl?: string | undefined;
32053
32216
  };
@@ -32158,6 +32321,10 @@ declare const DTOExportJobResponse: z.ZodObject<{
32158
32321
  } | undefined;
32159
32322
  documentation?: {
32160
32323
  environment: "Live" | "Preview";
32324
+ changes?: {
32325
+ pagePersistentIds: string[];
32326
+ groupPersistentIds: string[];
32327
+ } | null | undefined;
32161
32328
  } | undefined;
32162
32329
  webhookUrl?: string | undefined;
32163
32330
  };
@@ -32407,10 +32574,31 @@ declare const DTOPipeline: z.ZodObject<{
32407
32574
  }>>;
32408
32575
  documentation: z.ZodOptional<z.ZodObject<{
32409
32576
  environment: z.ZodEnum<["Live", "Preview"]>;
32577
+ changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
32578
+ pagePersistentIds: string[];
32579
+ groupPersistentIds: string[];
32580
+ }, z.ZodTypeDef, {
32581
+ pagePersistentIds: string[];
32582
+ groupPersistentIds: string[];
32583
+ }>>>, {
32584
+ pagePersistentIds: string[];
32585
+ groupPersistentIds: string[];
32586
+ } | undefined, {
32587
+ pagePersistentIds: string[];
32588
+ groupPersistentIds: string[];
32589
+ } | null | undefined>;
32410
32590
  }, "strip", z.ZodTypeAny, {
32411
32591
  environment: "Live" | "Preview";
32592
+ changes?: {
32593
+ pagePersistentIds: string[];
32594
+ groupPersistentIds: string[];
32595
+ } | undefined;
32412
32596
  }, {
32413
32597
  environment: "Live" | "Preview";
32598
+ changes?: {
32599
+ pagePersistentIds: string[];
32600
+ groupPersistentIds: string[];
32601
+ } | null | undefined;
32414
32602
  }>>;
32415
32603
  webhookUrl: z.ZodOptional<z.ZodString>;
32416
32604
  }, "strip", z.ZodTypeAny, {
@@ -32455,6 +32643,10 @@ declare const DTOPipeline: z.ZodObject<{
32455
32643
  } | undefined;
32456
32644
  documentation?: {
32457
32645
  environment: "Live" | "Preview";
32646
+ changes?: {
32647
+ pagePersistentIds: string[];
32648
+ groupPersistentIds: string[];
32649
+ } | undefined;
32458
32650
  } | undefined;
32459
32651
  webhookUrl?: string | undefined;
32460
32652
  }, {
@@ -32499,6 +32691,10 @@ declare const DTOPipeline: z.ZodObject<{
32499
32691
  } | undefined;
32500
32692
  documentation?: {
32501
32693
  environment: "Live" | "Preview";
32694
+ changes?: {
32695
+ pagePersistentIds: string[];
32696
+ groupPersistentIds: string[];
32697
+ } | null | undefined;
32502
32698
  } | undefined;
32503
32699
  webhookUrl?: string | undefined;
32504
32700
  }>;
@@ -32713,6 +32909,10 @@ declare const DTOPipeline: z.ZodObject<{
32713
32909
  } | undefined;
32714
32910
  documentation?: {
32715
32911
  environment: "Live" | "Preview";
32912
+ changes?: {
32913
+ pagePersistentIds: string[];
32914
+ groupPersistentIds: string[];
32915
+ } | undefined;
32716
32916
  } | undefined;
32717
32917
  webhookUrl?: string | undefined;
32718
32918
  };
@@ -32821,6 +33021,10 @@ declare const DTOPipeline: z.ZodObject<{
32821
33021
  } | undefined;
32822
33022
  documentation?: {
32823
33023
  environment: "Live" | "Preview";
33024
+ changes?: {
33025
+ pagePersistentIds: string[];
33026
+ groupPersistentIds: string[];
33027
+ } | null | undefined;
32824
33028
  } | undefined;
32825
33029
  webhookUrl?: string | undefined;
32826
33030
  };
@@ -32886,10 +33090,31 @@ declare const DTOPipeline: z.ZodObject<{
32886
33090
  webhookUrl: z.ZodOptional<z.ZodString>;
32887
33091
  destinationSnDocs: z.ZodOptional<z.ZodObject<{
32888
33092
  environment: z.ZodEnum<["Live", "Preview"]>;
33093
+ changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
33094
+ pagePersistentIds: string[];
33095
+ groupPersistentIds: string[];
33096
+ }, z.ZodTypeDef, {
33097
+ pagePersistentIds: string[];
33098
+ groupPersistentIds: string[];
33099
+ }>>>, {
33100
+ pagePersistentIds: string[];
33101
+ groupPersistentIds: string[];
33102
+ } | undefined, {
33103
+ pagePersistentIds: string[];
33104
+ groupPersistentIds: string[];
33105
+ } | null | undefined>;
32889
33106
  }, "strip", z.ZodTypeAny, {
32890
33107
  environment: "Live" | "Preview";
33108
+ changes?: {
33109
+ pagePersistentIds: string[];
33110
+ groupPersistentIds: string[];
33111
+ } | undefined;
32891
33112
  }, {
32892
33113
  environment: "Live" | "Preview";
33114
+ changes?: {
33115
+ pagePersistentIds: string[];
33116
+ groupPersistentIds: string[];
33117
+ } | null | undefined;
32893
33118
  }>>;
32894
33119
  destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
32895
33120
  destinationGithub: z.ZodOptional<z.ZodObject<{
@@ -33062,6 +33287,10 @@ declare const DTOPipeline: z.ZodObject<{
33062
33287
  } | undefined;
33063
33288
  documentation?: {
33064
33289
  environment: "Live" | "Preview";
33290
+ changes?: {
33291
+ pagePersistentIds: string[];
33292
+ groupPersistentIds: string[];
33293
+ } | undefined;
33065
33294
  } | undefined;
33066
33295
  webhookUrl?: string | undefined;
33067
33296
  };
@@ -33129,6 +33358,10 @@ declare const DTOPipeline: z.ZodObject<{
33129
33358
  webhookUrl?: string | undefined;
33130
33359
  destinationSnDocs?: {
33131
33360
  environment: "Live" | "Preview";
33361
+ changes?: {
33362
+ pagePersistentIds: string[];
33363
+ groupPersistentIds: string[];
33364
+ } | undefined;
33132
33365
  } | undefined;
33133
33366
  destinationS3?: {} | undefined;
33134
33367
  destinationGithub?: {
@@ -33224,6 +33457,10 @@ declare const DTOPipeline: z.ZodObject<{
33224
33457
  } | undefined;
33225
33458
  documentation?: {
33226
33459
  environment: "Live" | "Preview";
33460
+ changes?: {
33461
+ pagePersistentIds: string[];
33462
+ groupPersistentIds: string[];
33463
+ } | null | undefined;
33227
33464
  } | undefined;
33228
33465
  webhookUrl?: string | undefined;
33229
33466
  };
@@ -33291,6 +33528,10 @@ declare const DTOPipeline: z.ZodObject<{
33291
33528
  webhookUrl?: string | undefined;
33292
33529
  destinationSnDocs?: {
33293
33530
  environment: "Live" | "Preview";
33531
+ changes?: {
33532
+ pagePersistentIds: string[];
33533
+ groupPersistentIds: string[];
33534
+ } | null | undefined;
33294
33535
  } | undefined;
33295
33536
  destinationS3?: {} | undefined;
33296
33537
  destinationGithub?: {
@@ -40666,10 +40907,31 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
40666
40907
  }>>>;
40667
40908
  documentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
40668
40909
  environment: z.ZodEnum<["Live", "Preview"]>;
40910
+ changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
40911
+ pagePersistentIds: string[];
40912
+ groupPersistentIds: string[];
40913
+ }, z.ZodTypeDef, {
40914
+ pagePersistentIds: string[];
40915
+ groupPersistentIds: string[];
40916
+ }>>>, {
40917
+ pagePersistentIds: string[];
40918
+ groupPersistentIds: string[];
40919
+ } | undefined, {
40920
+ pagePersistentIds: string[];
40921
+ groupPersistentIds: string[];
40922
+ } | null | undefined>;
40669
40923
  }, "strip", z.ZodTypeAny, {
40670
40924
  environment: "Live" | "Preview";
40925
+ changes?: {
40926
+ pagePersistentIds: string[];
40927
+ groupPersistentIds: string[];
40928
+ } | undefined;
40671
40929
  }, {
40672
40930
  environment: "Live" | "Preview";
40931
+ changes?: {
40932
+ pagePersistentIds: string[];
40933
+ groupPersistentIds: string[];
40934
+ } | null | undefined;
40673
40935
  }>>>;
40674
40936
  webhookUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40675
40937
  }, "strip", z.ZodTypeAny, {
@@ -40714,6 +40976,10 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
40714
40976
  } | null | undefined;
40715
40977
  documentation?: {
40716
40978
  environment: "Live" | "Preview";
40979
+ changes?: {
40980
+ pagePersistentIds: string[];
40981
+ groupPersistentIds: string[];
40982
+ } | undefined;
40717
40983
  } | null | undefined;
40718
40984
  webhookUrl?: string | null | undefined;
40719
40985
  }, {
@@ -40758,6 +41024,10 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
40758
41024
  } | null | undefined;
40759
41025
  documentation?: {
40760
41026
  environment: "Live" | "Preview";
41027
+ changes?: {
41028
+ pagePersistentIds: string[];
41029
+ groupPersistentIds: string[];
41030
+ } | null | undefined;
40761
41031
  } | null | undefined;
40762
41032
  webhookUrl?: string | null | undefined;
40763
41033
  }>;
@@ -40816,6 +41086,10 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
40816
41086
  } | null | undefined;
40817
41087
  documentation?: {
40818
41088
  environment: "Live" | "Preview";
41089
+ changes?: {
41090
+ pagePersistentIds: string[];
41091
+ groupPersistentIds: string[];
41092
+ } | undefined;
40819
41093
  } | null | undefined;
40820
41094
  webhookUrl?: string | null | undefined;
40821
41095
  };
@@ -40877,6 +41151,10 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
40877
41151
  } | null | undefined;
40878
41152
  documentation?: {
40879
41153
  environment: "Live" | "Preview";
41154
+ changes?: {
41155
+ pagePersistentIds: string[];
41156
+ groupPersistentIds: string[];
41157
+ } | null | undefined;
40880
41158
  } | null | undefined;
40881
41159
  webhookUrl?: string | null | undefined;
40882
41160
  };
@@ -41023,10 +41301,31 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
41023
41301
  }>>>;
41024
41302
  documentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
41025
41303
  environment: z.ZodEnum<["Live", "Preview"]>;
41304
+ changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
41305
+ pagePersistentIds: string[];
41306
+ groupPersistentIds: string[];
41307
+ }, z.ZodTypeDef, {
41308
+ pagePersistentIds: string[];
41309
+ groupPersistentIds: string[];
41310
+ }>>>, {
41311
+ pagePersistentIds: string[];
41312
+ groupPersistentIds: string[];
41313
+ } | undefined, {
41314
+ pagePersistentIds: string[];
41315
+ groupPersistentIds: string[];
41316
+ } | null | undefined>;
41026
41317
  }, "strip", z.ZodTypeAny, {
41027
41318
  environment: "Live" | "Preview";
41319
+ changes?: {
41320
+ pagePersistentIds: string[];
41321
+ groupPersistentIds: string[];
41322
+ } | undefined;
41028
41323
  }, {
41029
41324
  environment: "Live" | "Preview";
41325
+ changes?: {
41326
+ pagePersistentIds: string[];
41327
+ groupPersistentIds: string[];
41328
+ } | null | undefined;
41030
41329
  }>>>;
41031
41330
  webhookUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
41032
41331
  }, "strip", z.ZodTypeAny, {
@@ -41071,6 +41370,10 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
41071
41370
  } | null | undefined;
41072
41371
  documentation?: {
41073
41372
  environment: "Live" | "Preview";
41373
+ changes?: {
41374
+ pagePersistentIds: string[];
41375
+ groupPersistentIds: string[];
41376
+ } | undefined;
41074
41377
  } | null | undefined;
41075
41378
  webhookUrl?: string | null | undefined;
41076
41379
  }, {
@@ -41115,6 +41418,10 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
41115
41418
  } | null | undefined;
41116
41419
  documentation?: {
41117
41420
  environment: "Live" | "Preview";
41421
+ changes?: {
41422
+ pagePersistentIds: string[];
41423
+ groupPersistentIds: string[];
41424
+ } | null | undefined;
41118
41425
  } | null | undefined;
41119
41426
  webhookUrl?: string | null | undefined;
41120
41427
  }>;
@@ -41176,6 +41483,10 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
41176
41483
  } | null | undefined;
41177
41484
  documentation?: {
41178
41485
  environment: "Live" | "Preview";
41486
+ changes?: {
41487
+ pagePersistentIds: string[];
41488
+ groupPersistentIds: string[];
41489
+ } | undefined;
41179
41490
  } | null | undefined;
41180
41491
  webhookUrl?: string | null | undefined;
41181
41492
  };
@@ -41238,6 +41549,10 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
41238
41549
  } | null | undefined;
41239
41550
  documentation?: {
41240
41551
  environment: "Live" | "Preview";
41552
+ changes?: {
41553
+ pagePersistentIds: string[];
41554
+ groupPersistentIds: string[];
41555
+ } | null | undefined;
41241
41556
  } | null | undefined;
41242
41557
  webhookUrl?: string | null | undefined;
41243
41558
  };
@@ -44439,4 +44754,4 @@ declare class FrontendVersionRoomYDoc {
44439
44754
 
44440
44755
  declare function generatePageContentHash(content: DocumentationPageEditorModel, debug?: boolean): string;
44441
44756
 
44442
- export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
44757
+ export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };