@supernova-studio/model 0.47.29 → 0.47.30

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
@@ -97298,10 +97298,12 @@ declare const ExportJobContext: z.ZodObject<{
97298
97298
  apiUrl: z.ZodString;
97299
97299
  accessToken: z.ZodString;
97300
97300
  designSystemId: z.ZodString;
97301
+ designSystemName: z.ZodString;
97301
97302
  exporterId: z.ZodString;
97302
97303
  versionId: z.ZodString;
97303
97304
  brandId: z.ZodOptional<z.ZodString>;
97304
97305
  themeId: z.ZodOptional<z.ZodString>;
97306
+ exporterName: z.ZodString;
97305
97307
  exporterPackageUrl: z.ZodString;
97306
97308
  exporterPropertyValues: z.ZodArray<z.ZodObject<{
97307
97309
  key: z.ZodString;
@@ -98119,10 +98121,12 @@ declare const ExportJobContext: z.ZodObject<{
98119
98121
  }>>;
98120
98122
  }, "strip", z.ZodTypeAny, {
98121
98123
  designSystemId: string;
98124
+ designSystemName: string;
98122
98125
  accessToken: string;
98123
98126
  versionId: string;
98124
98127
  exporterId: string;
98125
98128
  apiUrl: string;
98129
+ exporterName: string;
98126
98130
  exporterPackageUrl: string;
98127
98131
  exporterPropertyValues: {
98128
98132
  value: string | number | boolean | {
@@ -98235,10 +98239,12 @@ declare const ExportJobContext: z.ZodObject<{
98235
98239
  themeId?: string | undefined;
98236
98240
  }, {
98237
98241
  designSystemId: string;
98242
+ designSystemName: string;
98238
98243
  accessToken: string;
98239
98244
  versionId: string;
98240
98245
  exporterId: string;
98241
98246
  apiUrl: string;
98247
+ exporterName: string;
98242
98248
  exporterPackageUrl: string;
98243
98249
  exporterPropertyValues: {
98244
98250
  value: string | number | boolean | {
@@ -98733,16 +98739,22 @@ declare const ExportJobS3DestinationResult: z.ZodObject<{
98733
98739
  urlPrefix: z.ZodOptional<z.ZodString>;
98734
98740
  path: z.ZodString;
98735
98741
  files: z.ZodArray<z.ZodString, "many">;
98742
+ url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
98743
+ urls: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string[], z.ZodTypeDef, string[]>>>, string[] | undefined, string[] | null | undefined>;
98736
98744
  }, "strip", z.ZodTypeAny, {
98737
98745
  path: string;
98738
98746
  files: string[];
98739
98747
  bucket: string;
98748
+ url?: string | undefined;
98740
98749
  urlPrefix?: string | undefined;
98750
+ urls?: string[] | undefined;
98741
98751
  }, {
98742
98752
  path: string;
98743
98753
  files: string[];
98744
98754
  bucket: string;
98755
+ url?: string | null | undefined;
98745
98756
  urlPrefix?: string | undefined;
98757
+ urls?: string[] | null | undefined;
98746
98758
  }>;
98747
98759
  type ExportJobS3DestinationResult = z.infer<typeof ExportJobS3DestinationResult>;
98748
98760
  declare const ExportJobDocsDestinationResult: z.ZodObject<{
@@ -98759,22 +98771,30 @@ declare const ExportJobResult: z.ZodObject<{
98759
98771
  path: string;
98760
98772
  files: string[];
98761
98773
  bucket: string;
98774
+ url?: string | undefined;
98762
98775
  urlPrefix?: string | undefined;
98776
+ urls?: string[] | undefined;
98763
98777
  }, z.ZodTypeDef, {
98764
98778
  path: string;
98765
98779
  files: string[];
98766
98780
  bucket: string;
98781
+ url?: string | null | undefined;
98767
98782
  urlPrefix?: string | undefined;
98783
+ urls?: string[] | null | undefined;
98768
98784
  }>>>, {
98769
98785
  path: string;
98770
98786
  files: string[];
98771
98787
  bucket: string;
98788
+ url?: string | undefined;
98772
98789
  urlPrefix?: string | undefined;
98790
+ urls?: string[] | undefined;
98773
98791
  } | undefined, {
98774
98792
  path: string;
98775
98793
  files: string[];
98776
98794
  bucket: string;
98795
+ url?: string | null | undefined;
98777
98796
  urlPrefix?: string | undefined;
98797
+ urls?: string[] | null | undefined;
98778
98798
  } | null | undefined>;
98779
98799
  github: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
98780
98800
  pullRequestUrl: string;
@@ -98866,7 +98886,9 @@ declare const ExportJobResult: z.ZodObject<{
98866
98886
  path: string;
98867
98887
  files: string[];
98868
98888
  bucket: string;
98889
+ url?: string | undefined;
98869
98890
  urlPrefix?: string | undefined;
98891
+ urls?: string[] | undefined;
98870
98892
  } | undefined;
98871
98893
  sndocs?: {
98872
98894
  url: string;
@@ -98895,7 +98917,9 @@ declare const ExportJobResult: z.ZodObject<{
98895
98917
  path: string;
98896
98918
  files: string[];
98897
98919
  bucket: string;
98920
+ url?: string | null | undefined;
98898
98921
  urlPrefix?: string | undefined;
98922
+ urls?: string[] | null | undefined;
98899
98923
  } | null | undefined;
98900
98924
  sndocs?: {
98901
98925
  url: string;
@@ -99036,22 +99060,30 @@ declare const ExportJob: z.ZodObject<{
99036
99060
  path: string;
99037
99061
  files: string[];
99038
99062
  bucket: string;
99063
+ url?: string | undefined;
99039
99064
  urlPrefix?: string | undefined;
99065
+ urls?: string[] | undefined;
99040
99066
  }, z.ZodTypeDef, {
99041
99067
  path: string;
99042
99068
  files: string[];
99043
99069
  bucket: string;
99070
+ url?: string | null | undefined;
99044
99071
  urlPrefix?: string | undefined;
99072
+ urls?: string[] | null | undefined;
99045
99073
  }>>>, {
99046
99074
  path: string;
99047
99075
  files: string[];
99048
99076
  bucket: string;
99077
+ url?: string | undefined;
99049
99078
  urlPrefix?: string | undefined;
99079
+ urls?: string[] | undefined;
99050
99080
  } | undefined, {
99051
99081
  path: string;
99052
99082
  files: string[];
99053
99083
  bucket: string;
99084
+ url?: string | null | undefined;
99054
99085
  urlPrefix?: string | undefined;
99086
+ urls?: string[] | null | undefined;
99055
99087
  } | null | undefined>;
99056
99088
  github: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
99057
99089
  pullRequestUrl: string;
@@ -99143,7 +99175,9 @@ declare const ExportJob: z.ZodObject<{
99143
99175
  path: string;
99144
99176
  files: string[];
99145
99177
  bucket: string;
99178
+ url?: string | undefined;
99146
99179
  urlPrefix?: string | undefined;
99180
+ urls?: string[] | undefined;
99147
99181
  } | undefined;
99148
99182
  sndocs?: {
99149
99183
  url: string;
@@ -99172,7 +99206,9 @@ declare const ExportJob: z.ZodObject<{
99172
99206
  path: string;
99173
99207
  files: string[];
99174
99208
  bucket: string;
99209
+ url?: string | null | undefined;
99175
99210
  urlPrefix?: string | undefined;
99211
+ urls?: string[] | null | undefined;
99176
99212
  } | null | undefined;
99177
99213
  sndocs?: {
99178
99214
  url: string;
@@ -99260,7 +99296,9 @@ declare const ExportJob: z.ZodObject<{
99260
99296
  path: string;
99261
99297
  files: string[];
99262
99298
  bucket: string;
99299
+ url?: string | undefined;
99263
99300
  urlPrefix?: string | undefined;
99301
+ urls?: string[] | undefined;
99264
99302
  } | undefined;
99265
99303
  sndocs?: {
99266
99304
  url: string;
@@ -99347,7 +99385,9 @@ declare const ExportJob: z.ZodObject<{
99347
99385
  path: string;
99348
99386
  files: string[];
99349
99387
  bucket: string;
99388
+ url?: string | null | undefined;
99350
99389
  urlPrefix?: string | undefined;
99390
+ urls?: string[] | null | undefined;
99351
99391
  } | null | undefined;
99352
99392
  sndocs?: {
99353
99393
  url: string;
@@ -101286,7 +101326,7 @@ type ExtendedIntegration = Omit<Integration, "type"> & {
101286
101326
  type: ExtendedIntegrationType;
101287
101327
  integrationDesignSystems?: IntegrationDesignSystem[];
101288
101328
  };
101289
- declare const IntegrationToken: z.ZodEffects<z.ZodEffects<z.ZodObject<{
101329
+ declare const IntegrationToken: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodObject<{
101290
101330
  access_token: z.ZodString;
101291
101331
  refresh_token: z.ZodOptional<z.ZodString>;
101292
101332
  expires_in: z.ZodUnion<[z.ZodOptional<z.ZodNumber>, z.ZodOptional<z.ZodString>]>;
@@ -101336,6 +101376,26 @@ declare const IntegrationToken: z.ZodEffects<z.ZodEffects<z.ZodObject<{
101336
101376
  token_azure_collection_name?: string | undefined;
101337
101377
  token_bitbucket_username?: string | undefined;
101338
101378
  custom_url?: string | undefined;
101379
+ }>, {
101380
+ access_token: string;
101381
+ refresh_token?: string | undefined;
101382
+ expires_in?: string | number | undefined;
101383
+ token_type?: string | undefined;
101384
+ token_name?: string | undefined;
101385
+ token_azure_organization_name?: string | undefined;
101386
+ token_azure_collection_name?: string | undefined;
101387
+ token_bitbucket_username?: string | undefined;
101388
+ custom_url?: string | undefined;
101389
+ }, {
101390
+ access_token: string;
101391
+ refresh_token?: string | undefined;
101392
+ expires_in?: string | number | undefined;
101393
+ token_type?: string | undefined;
101394
+ token_name?: string | undefined;
101395
+ token_azure_organization_name?: string | undefined;
101396
+ token_azure_collection_name?: string | undefined;
101397
+ token_bitbucket_username?: string | undefined;
101398
+ custom_url?: string | undefined;
101339
101399
  }>, {
101340
101400
  accessToken: string;
101341
101401
  refreshToken: string | undefined;
package/dist/index.d.ts CHANGED
@@ -97298,10 +97298,12 @@ declare const ExportJobContext: z.ZodObject<{
97298
97298
  apiUrl: z.ZodString;
97299
97299
  accessToken: z.ZodString;
97300
97300
  designSystemId: z.ZodString;
97301
+ designSystemName: z.ZodString;
97301
97302
  exporterId: z.ZodString;
97302
97303
  versionId: z.ZodString;
97303
97304
  brandId: z.ZodOptional<z.ZodString>;
97304
97305
  themeId: z.ZodOptional<z.ZodString>;
97306
+ exporterName: z.ZodString;
97305
97307
  exporterPackageUrl: z.ZodString;
97306
97308
  exporterPropertyValues: z.ZodArray<z.ZodObject<{
97307
97309
  key: z.ZodString;
@@ -98119,10 +98121,12 @@ declare const ExportJobContext: z.ZodObject<{
98119
98121
  }>>;
98120
98122
  }, "strip", z.ZodTypeAny, {
98121
98123
  designSystemId: string;
98124
+ designSystemName: string;
98122
98125
  accessToken: string;
98123
98126
  versionId: string;
98124
98127
  exporterId: string;
98125
98128
  apiUrl: string;
98129
+ exporterName: string;
98126
98130
  exporterPackageUrl: string;
98127
98131
  exporterPropertyValues: {
98128
98132
  value: string | number | boolean | {
@@ -98235,10 +98239,12 @@ declare const ExportJobContext: z.ZodObject<{
98235
98239
  themeId?: string | undefined;
98236
98240
  }, {
98237
98241
  designSystemId: string;
98242
+ designSystemName: string;
98238
98243
  accessToken: string;
98239
98244
  versionId: string;
98240
98245
  exporterId: string;
98241
98246
  apiUrl: string;
98247
+ exporterName: string;
98242
98248
  exporterPackageUrl: string;
98243
98249
  exporterPropertyValues: {
98244
98250
  value: string | number | boolean | {
@@ -98733,16 +98739,22 @@ declare const ExportJobS3DestinationResult: z.ZodObject<{
98733
98739
  urlPrefix: z.ZodOptional<z.ZodString>;
98734
98740
  path: z.ZodString;
98735
98741
  files: z.ZodArray<z.ZodString, "many">;
98742
+ url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
98743
+ urls: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string[], z.ZodTypeDef, string[]>>>, string[] | undefined, string[] | null | undefined>;
98736
98744
  }, "strip", z.ZodTypeAny, {
98737
98745
  path: string;
98738
98746
  files: string[];
98739
98747
  bucket: string;
98748
+ url?: string | undefined;
98740
98749
  urlPrefix?: string | undefined;
98750
+ urls?: string[] | undefined;
98741
98751
  }, {
98742
98752
  path: string;
98743
98753
  files: string[];
98744
98754
  bucket: string;
98755
+ url?: string | null | undefined;
98745
98756
  urlPrefix?: string | undefined;
98757
+ urls?: string[] | null | undefined;
98746
98758
  }>;
98747
98759
  type ExportJobS3DestinationResult = z.infer<typeof ExportJobS3DestinationResult>;
98748
98760
  declare const ExportJobDocsDestinationResult: z.ZodObject<{
@@ -98759,22 +98771,30 @@ declare const ExportJobResult: z.ZodObject<{
98759
98771
  path: string;
98760
98772
  files: string[];
98761
98773
  bucket: string;
98774
+ url?: string | undefined;
98762
98775
  urlPrefix?: string | undefined;
98776
+ urls?: string[] | undefined;
98763
98777
  }, z.ZodTypeDef, {
98764
98778
  path: string;
98765
98779
  files: string[];
98766
98780
  bucket: string;
98781
+ url?: string | null | undefined;
98767
98782
  urlPrefix?: string | undefined;
98783
+ urls?: string[] | null | undefined;
98768
98784
  }>>>, {
98769
98785
  path: string;
98770
98786
  files: string[];
98771
98787
  bucket: string;
98788
+ url?: string | undefined;
98772
98789
  urlPrefix?: string | undefined;
98790
+ urls?: string[] | undefined;
98773
98791
  } | undefined, {
98774
98792
  path: string;
98775
98793
  files: string[];
98776
98794
  bucket: string;
98795
+ url?: string | null | undefined;
98777
98796
  urlPrefix?: string | undefined;
98797
+ urls?: string[] | null | undefined;
98778
98798
  } | null | undefined>;
98779
98799
  github: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
98780
98800
  pullRequestUrl: string;
@@ -98866,7 +98886,9 @@ declare const ExportJobResult: z.ZodObject<{
98866
98886
  path: string;
98867
98887
  files: string[];
98868
98888
  bucket: string;
98889
+ url?: string | undefined;
98869
98890
  urlPrefix?: string | undefined;
98891
+ urls?: string[] | undefined;
98870
98892
  } | undefined;
98871
98893
  sndocs?: {
98872
98894
  url: string;
@@ -98895,7 +98917,9 @@ declare const ExportJobResult: z.ZodObject<{
98895
98917
  path: string;
98896
98918
  files: string[];
98897
98919
  bucket: string;
98920
+ url?: string | null | undefined;
98898
98921
  urlPrefix?: string | undefined;
98922
+ urls?: string[] | null | undefined;
98899
98923
  } | null | undefined;
98900
98924
  sndocs?: {
98901
98925
  url: string;
@@ -99036,22 +99060,30 @@ declare const ExportJob: z.ZodObject<{
99036
99060
  path: string;
99037
99061
  files: string[];
99038
99062
  bucket: string;
99063
+ url?: string | undefined;
99039
99064
  urlPrefix?: string | undefined;
99065
+ urls?: string[] | undefined;
99040
99066
  }, z.ZodTypeDef, {
99041
99067
  path: string;
99042
99068
  files: string[];
99043
99069
  bucket: string;
99070
+ url?: string | null | undefined;
99044
99071
  urlPrefix?: string | undefined;
99072
+ urls?: string[] | null | undefined;
99045
99073
  }>>>, {
99046
99074
  path: string;
99047
99075
  files: string[];
99048
99076
  bucket: string;
99077
+ url?: string | undefined;
99049
99078
  urlPrefix?: string | undefined;
99079
+ urls?: string[] | undefined;
99050
99080
  } | undefined, {
99051
99081
  path: string;
99052
99082
  files: string[];
99053
99083
  bucket: string;
99084
+ url?: string | null | undefined;
99054
99085
  urlPrefix?: string | undefined;
99086
+ urls?: string[] | null | undefined;
99055
99087
  } | null | undefined>;
99056
99088
  github: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
99057
99089
  pullRequestUrl: string;
@@ -99143,7 +99175,9 @@ declare const ExportJob: z.ZodObject<{
99143
99175
  path: string;
99144
99176
  files: string[];
99145
99177
  bucket: string;
99178
+ url?: string | undefined;
99146
99179
  urlPrefix?: string | undefined;
99180
+ urls?: string[] | undefined;
99147
99181
  } | undefined;
99148
99182
  sndocs?: {
99149
99183
  url: string;
@@ -99172,7 +99206,9 @@ declare const ExportJob: z.ZodObject<{
99172
99206
  path: string;
99173
99207
  files: string[];
99174
99208
  bucket: string;
99209
+ url?: string | null | undefined;
99175
99210
  urlPrefix?: string | undefined;
99211
+ urls?: string[] | null | undefined;
99176
99212
  } | null | undefined;
99177
99213
  sndocs?: {
99178
99214
  url: string;
@@ -99260,7 +99296,9 @@ declare const ExportJob: z.ZodObject<{
99260
99296
  path: string;
99261
99297
  files: string[];
99262
99298
  bucket: string;
99299
+ url?: string | undefined;
99263
99300
  urlPrefix?: string | undefined;
99301
+ urls?: string[] | undefined;
99264
99302
  } | undefined;
99265
99303
  sndocs?: {
99266
99304
  url: string;
@@ -99347,7 +99385,9 @@ declare const ExportJob: z.ZodObject<{
99347
99385
  path: string;
99348
99386
  files: string[];
99349
99387
  bucket: string;
99388
+ url?: string | null | undefined;
99350
99389
  urlPrefix?: string | undefined;
99390
+ urls?: string[] | null | undefined;
99351
99391
  } | null | undefined;
99352
99392
  sndocs?: {
99353
99393
  url: string;
@@ -101286,7 +101326,7 @@ type ExtendedIntegration = Omit<Integration, "type"> & {
101286
101326
  type: ExtendedIntegrationType;
101287
101327
  integrationDesignSystems?: IntegrationDesignSystem[];
101288
101328
  };
101289
- declare const IntegrationToken: z.ZodEffects<z.ZodEffects<z.ZodObject<{
101329
+ declare const IntegrationToken: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodObject<{
101290
101330
  access_token: z.ZodString;
101291
101331
  refresh_token: z.ZodOptional<z.ZodString>;
101292
101332
  expires_in: z.ZodUnion<[z.ZodOptional<z.ZodNumber>, z.ZodOptional<z.ZodString>]>;
@@ -101336,6 +101376,26 @@ declare const IntegrationToken: z.ZodEffects<z.ZodEffects<z.ZodObject<{
101336
101376
  token_azure_collection_name?: string | undefined;
101337
101377
  token_bitbucket_username?: string | undefined;
101338
101378
  custom_url?: string | undefined;
101379
+ }>, {
101380
+ access_token: string;
101381
+ refresh_token?: string | undefined;
101382
+ expires_in?: string | number | undefined;
101383
+ token_type?: string | undefined;
101384
+ token_name?: string | undefined;
101385
+ token_azure_organization_name?: string | undefined;
101386
+ token_azure_collection_name?: string | undefined;
101387
+ token_bitbucket_username?: string | undefined;
101388
+ custom_url?: string | undefined;
101389
+ }, {
101390
+ access_token: string;
101391
+ refresh_token?: string | undefined;
101392
+ expires_in?: string | number | undefined;
101393
+ token_type?: string | undefined;
101394
+ token_name?: string | undefined;
101395
+ token_azure_organization_name?: string | undefined;
101396
+ token_azure_collection_name?: string | undefined;
101397
+ token_bitbucket_username?: string | undefined;
101398
+ custom_url?: string | undefined;
101339
101399
  }>, {
101340
101400
  accessToken: string;
101341
101401
  refreshToken: string | undefined;