@supernova-studio/model 1.37.1 → 1.37.3

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
@@ -12172,6 +12172,7 @@ declare const UserDump: z.ZodObject<{
12172
12172
  aiFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
12173
12173
  aiAskFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
12174
12174
  aiCustomInstruction: z.ZodOptional<z.ZodString>;
12175
+ hasOpenMeterSubject: z.ZodBoolean;
12175
12176
  }, "strip", z.ZodTypeAny, {
12176
12177
  id: string;
12177
12178
  profile: {
@@ -12226,6 +12227,7 @@ declare const UserDump: z.ZodObject<{
12226
12227
  };
12227
12228
  aiFeaturesEnabled: boolean;
12228
12229
  aiAskFeaturesEnabled: boolean;
12230
+ hasOpenMeterSubject: boolean;
12229
12231
  sso?: {
12230
12232
  providerId: string;
12231
12233
  defaultAutoInviteValue: boolean;
@@ -12319,6 +12321,7 @@ declare const UserDump: z.ZodObject<{
12319
12321
  cancelAt?: string | null | undefined;
12320
12322
  subscriptionStatusUpdatedAt?: string | null | undefined;
12321
12323
  };
12324
+ hasOpenMeterSubject: boolean;
12322
12325
  sso?: {
12323
12326
  providerId: string;
12324
12327
  defaultAutoInviteValue: boolean;
@@ -19235,6 +19238,7 @@ declare const UserDump: z.ZodObject<{
19235
19238
  };
19236
19239
  aiFeaturesEnabled: boolean;
19237
19240
  aiAskFeaturesEnabled: boolean;
19241
+ hasOpenMeterSubject: boolean;
19238
19242
  sso?: {
19239
19243
  providerId: string;
19240
19244
  defaultAutoInviteValue: boolean;
@@ -20122,6 +20126,7 @@ declare const UserDump: z.ZodObject<{
20122
20126
  cancelAt?: string | null | undefined;
20123
20127
  subscriptionStatusUpdatedAt?: string | null | undefined;
20124
20128
  };
20129
+ hasOpenMeterSubject: boolean;
20125
20130
  sso?: {
20126
20131
  providerId: string;
20127
20132
  defaultAutoInviteValue: boolean;
@@ -21015,6 +21020,7 @@ declare const UserDump: z.ZodObject<{
21015
21020
  };
21016
21021
  aiFeaturesEnabled: boolean;
21017
21022
  aiAskFeaturesEnabled: boolean;
21023
+ hasOpenMeterSubject: boolean;
21018
21024
  sso?: {
21019
21025
  providerId: string;
21020
21026
  defaultAutoInviteValue: boolean;
@@ -21944,6 +21950,7 @@ declare const UserDump: z.ZodObject<{
21944
21950
  cancelAt?: string | null | undefined;
21945
21951
  subscriptionStatusUpdatedAt?: string | null | undefined;
21946
21952
  };
21953
+ hasOpenMeterSubject: boolean;
21947
21954
  sso?: {
21948
21955
  providerId: string;
21949
21956
  defaultAutoInviteValue: boolean;
@@ -23193,6 +23200,7 @@ declare const WorkspaceDump: z.ZodObject<{
23193
23200
  aiFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
23194
23201
  aiAskFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
23195
23202
  aiCustomInstruction: z.ZodOptional<z.ZodString>;
23203
+ hasOpenMeterSubject: z.ZodBoolean;
23196
23204
  }, "strip", z.ZodTypeAny, {
23197
23205
  id: string;
23198
23206
  profile: {
@@ -23247,6 +23255,7 @@ declare const WorkspaceDump: z.ZodObject<{
23247
23255
  };
23248
23256
  aiFeaturesEnabled: boolean;
23249
23257
  aiAskFeaturesEnabled: boolean;
23258
+ hasOpenMeterSubject: boolean;
23250
23259
  sso?: {
23251
23260
  providerId: string;
23252
23261
  defaultAutoInviteValue: boolean;
@@ -23340,6 +23349,7 @@ declare const WorkspaceDump: z.ZodObject<{
23340
23349
  cancelAt?: string | null | undefined;
23341
23350
  subscriptionStatusUpdatedAt?: string | null | undefined;
23342
23351
  };
23352
+ hasOpenMeterSubject: boolean;
23343
23353
  sso?: {
23344
23354
  providerId: string;
23345
23355
  defaultAutoInviteValue: boolean;
@@ -30256,6 +30266,7 @@ declare const WorkspaceDump: z.ZodObject<{
30256
30266
  };
30257
30267
  aiFeaturesEnabled: boolean;
30258
30268
  aiAskFeaturesEnabled: boolean;
30269
+ hasOpenMeterSubject: boolean;
30259
30270
  sso?: {
30260
30271
  providerId: string;
30261
30272
  defaultAutoInviteValue: boolean;
@@ -31143,6 +31154,7 @@ declare const WorkspaceDump: z.ZodObject<{
31143
31154
  cancelAt?: string | null | undefined;
31144
31155
  subscriptionStatusUpdatedAt?: string | null | undefined;
31145
31156
  };
31157
+ hasOpenMeterSubject: boolean;
31146
31158
  sso?: {
31147
31159
  providerId: string;
31148
31160
  defaultAutoInviteValue: boolean;
@@ -42308,19 +42320,11 @@ declare function tokenAliasOrValue<I, O>(value: ZodSchema<I, ZodTypeDef, O>): z.
42308
42320
  aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
42309
42321
  } & {
42310
42322
  value: z.ZodEffects<z.ZodNullable<z.ZodOptional<ZodSchema<I, ZodTypeDef, O>>>, I | undefined, O | null | undefined>;
42311
- }>, any> extends infer T ? { [k in keyof T]: z.objectUtil.addQuestionMarks<z.baseObjectOutputType<{
42323
+ }>, any> extends infer T ? { [k in keyof T]: T[k]; } : never, z.baseObjectInputType<{
42312
42324
  aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
42313
42325
  } & {
42314
42326
  value: z.ZodEffects<z.ZodNullable<z.ZodOptional<ZodSchema<I, ZodTypeDef, O>>>, I | undefined, O | null | undefined>;
42315
- }>, any>[k]; } : never, z.baseObjectInputType<{
42316
- aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
42317
- } & {
42318
- value: z.ZodEffects<z.ZodNullable<z.ZodOptional<ZodSchema<I, ZodTypeDef, O>>>, I | undefined, O | null | undefined>;
42319
- }> extends infer T_1 ? { [k_1 in keyof T_1]: z.baseObjectInputType<{
42320
- aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
42321
- } & {
42322
- value: z.ZodEffects<z.ZodNullable<z.ZodOptional<ZodSchema<I, ZodTypeDef, O>>>, I | undefined, O | null | undefined>;
42323
- }>[k_1]; } : never>;
42327
+ }> extends infer T_1 ? { [k_1 in keyof T_1]: T_1[k_1]; } : never>;
42324
42328
 
42325
42329
  declare const BlurType: z.ZodEnum<["Layer", "Background"]>;
42326
42330
  type BlurType = z.infer<typeof BlurType>;
@@ -139293,6 +139297,7 @@ declare const Workspace: z.ZodObject<{
139293
139297
  aiFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
139294
139298
  aiAskFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
139295
139299
  aiCustomInstruction: z.ZodOptional<z.ZodString>;
139300
+ hasOpenMeterSubject: z.ZodBoolean;
139296
139301
  }, "strip", z.ZodTypeAny, {
139297
139302
  id: string;
139298
139303
  profile: {
@@ -139347,6 +139352,7 @@ declare const Workspace: z.ZodObject<{
139347
139352
  };
139348
139353
  aiFeaturesEnabled: boolean;
139349
139354
  aiAskFeaturesEnabled: boolean;
139355
+ hasOpenMeterSubject: boolean;
139350
139356
  sso?: {
139351
139357
  providerId: string;
139352
139358
  defaultAutoInviteValue: boolean;
@@ -139440,6 +139446,7 @@ declare const Workspace: z.ZodObject<{
139440
139446
  cancelAt?: string | null | undefined;
139441
139447
  subscriptionStatusUpdatedAt?: string | null | undefined;
139442
139448
  };
139449
+ hasOpenMeterSubject: boolean;
139443
139450
  sso?: {
139444
139451
  providerId: string;
139445
139452
  defaultAutoInviteValue: boolean;
@@ -139854,6 +139861,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
139854
139861
  aiFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
139855
139862
  aiAskFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
139856
139863
  aiCustomInstruction: z.ZodOptional<z.ZodString>;
139864
+ hasOpenMeterSubject: z.ZodBoolean;
139857
139865
  }, "strip", z.ZodTypeAny, {
139858
139866
  id: string;
139859
139867
  profile: {
@@ -139908,6 +139916,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
139908
139916
  };
139909
139917
  aiFeaturesEnabled: boolean;
139910
139918
  aiAskFeaturesEnabled: boolean;
139919
+ hasOpenMeterSubject: boolean;
139911
139920
  sso?: {
139912
139921
  providerId: string;
139913
139922
  defaultAutoInviteValue: boolean;
@@ -140001,6 +140010,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
140001
140010
  cancelAt?: string | null | undefined;
140002
140011
  subscriptionStatusUpdatedAt?: string | null | undefined;
140003
140012
  };
140013
+ hasOpenMeterSubject: boolean;
140004
140014
  sso?: {
140005
140015
  providerId: string;
140006
140016
  defaultAutoInviteValue: boolean;
@@ -140176,6 +140186,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
140176
140186
  };
140177
140187
  aiFeaturesEnabled: boolean;
140178
140188
  aiAskFeaturesEnabled: boolean;
140189
+ hasOpenMeterSubject: boolean;
140179
140190
  sso?: {
140180
140191
  providerId: string;
140181
140192
  defaultAutoInviteValue: boolean;
@@ -140294,6 +140305,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
140294
140305
  cancelAt?: string | null | undefined;
140295
140306
  subscriptionStatusUpdatedAt?: string | null | undefined;
140296
140307
  };
140308
+ hasOpenMeterSubject: boolean;
140297
140309
  sso?: {
140298
140310
  providerId: string;
140299
140311
  defaultAutoInviteValue: boolean;
@@ -144016,6 +144028,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144016
144028
  aiFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
144017
144029
  aiAskFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
144018
144030
  aiCustomInstruction: z.ZodOptional<z.ZodString>;
144031
+ hasOpenMeterSubject: z.ZodBoolean;
144019
144032
  }, "strip", z.ZodTypeAny, {
144020
144033
  id: string;
144021
144034
  profile: {
@@ -144070,6 +144083,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144070
144083
  };
144071
144084
  aiFeaturesEnabled: boolean;
144072
144085
  aiAskFeaturesEnabled: boolean;
144086
+ hasOpenMeterSubject: boolean;
144073
144087
  sso?: {
144074
144088
  providerId: string;
144075
144089
  defaultAutoInviteValue: boolean;
@@ -144163,6 +144177,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144163
144177
  cancelAt?: string | null | undefined;
144164
144178
  subscriptionStatusUpdatedAt?: string | null | undefined;
144165
144179
  };
144180
+ hasOpenMeterSubject: boolean;
144166
144181
  sso?: {
144167
144182
  providerId: string;
144168
144183
  defaultAutoInviteValue: boolean;
@@ -144618,6 +144633,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144618
144633
  };
144619
144634
  aiFeaturesEnabled: boolean;
144620
144635
  aiAskFeaturesEnabled: boolean;
144636
+ hasOpenMeterSubject: boolean;
144621
144637
  sso?: {
144622
144638
  providerId: string;
144623
144639
  defaultAutoInviteValue: boolean;
@@ -144784,6 +144800,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144784
144800
  cancelAt?: string | null | undefined;
144785
144801
  subscriptionStatusUpdatedAt?: string | null | undefined;
144786
144802
  };
144803
+ hasOpenMeterSubject: boolean;
144787
144804
  sso?: {
144788
144805
  providerId: string;
144789
144806
  defaultAutoInviteValue: boolean;
@@ -145293,6 +145310,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145293
145310
  aiFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
145294
145311
  aiAskFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
145295
145312
  aiCustomInstruction: z.ZodOptional<z.ZodString>;
145313
+ hasOpenMeterSubject: z.ZodBoolean;
145296
145314
  }, "strip", z.ZodTypeAny, {
145297
145315
  id: string;
145298
145316
  profile: {
@@ -145347,6 +145365,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145347
145365
  };
145348
145366
  aiFeaturesEnabled: boolean;
145349
145367
  aiAskFeaturesEnabled: boolean;
145368
+ hasOpenMeterSubject: boolean;
145350
145369
  sso?: {
145351
145370
  providerId: string;
145352
145371
  defaultAutoInviteValue: boolean;
@@ -145440,6 +145459,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145440
145459
  cancelAt?: string | null | undefined;
145441
145460
  subscriptionStatusUpdatedAt?: string | null | undefined;
145442
145461
  };
145462
+ hasOpenMeterSubject: boolean;
145443
145463
  sso?: {
145444
145464
  providerId: string;
145445
145465
  defaultAutoInviteValue: boolean;
@@ -145819,6 +145839,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145819
145839
  };
145820
145840
  aiFeaturesEnabled: boolean;
145821
145841
  aiAskFeaturesEnabled: boolean;
145842
+ hasOpenMeterSubject: boolean;
145822
145843
  sso?: {
145823
145844
  providerId: string;
145824
145845
  defaultAutoInviteValue: boolean;
@@ -145962,6 +145983,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145962
145983
  cancelAt?: string | null | undefined;
145963
145984
  subscriptionStatusUpdatedAt?: string | null | undefined;
145964
145985
  };
145986
+ hasOpenMeterSubject: boolean;
145965
145987
  sso?: {
145966
145988
  providerId: string;
145967
145989
  defaultAutoInviteValue: boolean;
package/dist/index.d.ts CHANGED
@@ -12172,6 +12172,7 @@ declare const UserDump: z.ZodObject<{
12172
12172
  aiFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
12173
12173
  aiAskFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
12174
12174
  aiCustomInstruction: z.ZodOptional<z.ZodString>;
12175
+ hasOpenMeterSubject: z.ZodBoolean;
12175
12176
  }, "strip", z.ZodTypeAny, {
12176
12177
  id: string;
12177
12178
  profile: {
@@ -12226,6 +12227,7 @@ declare const UserDump: z.ZodObject<{
12226
12227
  };
12227
12228
  aiFeaturesEnabled: boolean;
12228
12229
  aiAskFeaturesEnabled: boolean;
12230
+ hasOpenMeterSubject: boolean;
12229
12231
  sso?: {
12230
12232
  providerId: string;
12231
12233
  defaultAutoInviteValue: boolean;
@@ -12319,6 +12321,7 @@ declare const UserDump: z.ZodObject<{
12319
12321
  cancelAt?: string | null | undefined;
12320
12322
  subscriptionStatusUpdatedAt?: string | null | undefined;
12321
12323
  };
12324
+ hasOpenMeterSubject: boolean;
12322
12325
  sso?: {
12323
12326
  providerId: string;
12324
12327
  defaultAutoInviteValue: boolean;
@@ -19235,6 +19238,7 @@ declare const UserDump: z.ZodObject<{
19235
19238
  };
19236
19239
  aiFeaturesEnabled: boolean;
19237
19240
  aiAskFeaturesEnabled: boolean;
19241
+ hasOpenMeterSubject: boolean;
19238
19242
  sso?: {
19239
19243
  providerId: string;
19240
19244
  defaultAutoInviteValue: boolean;
@@ -20122,6 +20126,7 @@ declare const UserDump: z.ZodObject<{
20122
20126
  cancelAt?: string | null | undefined;
20123
20127
  subscriptionStatusUpdatedAt?: string | null | undefined;
20124
20128
  };
20129
+ hasOpenMeterSubject: boolean;
20125
20130
  sso?: {
20126
20131
  providerId: string;
20127
20132
  defaultAutoInviteValue: boolean;
@@ -21015,6 +21020,7 @@ declare const UserDump: z.ZodObject<{
21015
21020
  };
21016
21021
  aiFeaturesEnabled: boolean;
21017
21022
  aiAskFeaturesEnabled: boolean;
21023
+ hasOpenMeterSubject: boolean;
21018
21024
  sso?: {
21019
21025
  providerId: string;
21020
21026
  defaultAutoInviteValue: boolean;
@@ -21944,6 +21950,7 @@ declare const UserDump: z.ZodObject<{
21944
21950
  cancelAt?: string | null | undefined;
21945
21951
  subscriptionStatusUpdatedAt?: string | null | undefined;
21946
21952
  };
21953
+ hasOpenMeterSubject: boolean;
21947
21954
  sso?: {
21948
21955
  providerId: string;
21949
21956
  defaultAutoInviteValue: boolean;
@@ -23193,6 +23200,7 @@ declare const WorkspaceDump: z.ZodObject<{
23193
23200
  aiFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
23194
23201
  aiAskFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
23195
23202
  aiCustomInstruction: z.ZodOptional<z.ZodString>;
23203
+ hasOpenMeterSubject: z.ZodBoolean;
23196
23204
  }, "strip", z.ZodTypeAny, {
23197
23205
  id: string;
23198
23206
  profile: {
@@ -23247,6 +23255,7 @@ declare const WorkspaceDump: z.ZodObject<{
23247
23255
  };
23248
23256
  aiFeaturesEnabled: boolean;
23249
23257
  aiAskFeaturesEnabled: boolean;
23258
+ hasOpenMeterSubject: boolean;
23250
23259
  sso?: {
23251
23260
  providerId: string;
23252
23261
  defaultAutoInviteValue: boolean;
@@ -23340,6 +23349,7 @@ declare const WorkspaceDump: z.ZodObject<{
23340
23349
  cancelAt?: string | null | undefined;
23341
23350
  subscriptionStatusUpdatedAt?: string | null | undefined;
23342
23351
  };
23352
+ hasOpenMeterSubject: boolean;
23343
23353
  sso?: {
23344
23354
  providerId: string;
23345
23355
  defaultAutoInviteValue: boolean;
@@ -30256,6 +30266,7 @@ declare const WorkspaceDump: z.ZodObject<{
30256
30266
  };
30257
30267
  aiFeaturesEnabled: boolean;
30258
30268
  aiAskFeaturesEnabled: boolean;
30269
+ hasOpenMeterSubject: boolean;
30259
30270
  sso?: {
30260
30271
  providerId: string;
30261
30272
  defaultAutoInviteValue: boolean;
@@ -31143,6 +31154,7 @@ declare const WorkspaceDump: z.ZodObject<{
31143
31154
  cancelAt?: string | null | undefined;
31144
31155
  subscriptionStatusUpdatedAt?: string | null | undefined;
31145
31156
  };
31157
+ hasOpenMeterSubject: boolean;
31146
31158
  sso?: {
31147
31159
  providerId: string;
31148
31160
  defaultAutoInviteValue: boolean;
@@ -42308,19 +42320,11 @@ declare function tokenAliasOrValue<I, O>(value: ZodSchema<I, ZodTypeDef, O>): z.
42308
42320
  aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
42309
42321
  } & {
42310
42322
  value: z.ZodEffects<z.ZodNullable<z.ZodOptional<ZodSchema<I, ZodTypeDef, O>>>, I | undefined, O | null | undefined>;
42311
- }>, any> extends infer T ? { [k in keyof T]: z.objectUtil.addQuestionMarks<z.baseObjectOutputType<{
42323
+ }>, any> extends infer T ? { [k in keyof T]: T[k]; } : never, z.baseObjectInputType<{
42312
42324
  aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
42313
42325
  } & {
42314
42326
  value: z.ZodEffects<z.ZodNullable<z.ZodOptional<ZodSchema<I, ZodTypeDef, O>>>, I | undefined, O | null | undefined>;
42315
- }>, any>[k]; } : never, z.baseObjectInputType<{
42316
- aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
42317
- } & {
42318
- value: z.ZodEffects<z.ZodNullable<z.ZodOptional<ZodSchema<I, ZodTypeDef, O>>>, I | undefined, O | null | undefined>;
42319
- }> extends infer T_1 ? { [k_1 in keyof T_1]: z.baseObjectInputType<{
42320
- aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
42321
- } & {
42322
- value: z.ZodEffects<z.ZodNullable<z.ZodOptional<ZodSchema<I, ZodTypeDef, O>>>, I | undefined, O | null | undefined>;
42323
- }>[k_1]; } : never>;
42327
+ }> extends infer T_1 ? { [k_1 in keyof T_1]: T_1[k_1]; } : never>;
42324
42328
 
42325
42329
  declare const BlurType: z.ZodEnum<["Layer", "Background"]>;
42326
42330
  type BlurType = z.infer<typeof BlurType>;
@@ -139293,6 +139297,7 @@ declare const Workspace: z.ZodObject<{
139293
139297
  aiFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
139294
139298
  aiAskFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
139295
139299
  aiCustomInstruction: z.ZodOptional<z.ZodString>;
139300
+ hasOpenMeterSubject: z.ZodBoolean;
139296
139301
  }, "strip", z.ZodTypeAny, {
139297
139302
  id: string;
139298
139303
  profile: {
@@ -139347,6 +139352,7 @@ declare const Workspace: z.ZodObject<{
139347
139352
  };
139348
139353
  aiFeaturesEnabled: boolean;
139349
139354
  aiAskFeaturesEnabled: boolean;
139355
+ hasOpenMeterSubject: boolean;
139350
139356
  sso?: {
139351
139357
  providerId: string;
139352
139358
  defaultAutoInviteValue: boolean;
@@ -139440,6 +139446,7 @@ declare const Workspace: z.ZodObject<{
139440
139446
  cancelAt?: string | null | undefined;
139441
139447
  subscriptionStatusUpdatedAt?: string | null | undefined;
139442
139448
  };
139449
+ hasOpenMeterSubject: boolean;
139443
139450
  sso?: {
139444
139451
  providerId: string;
139445
139452
  defaultAutoInviteValue: boolean;
@@ -139854,6 +139861,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
139854
139861
  aiFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
139855
139862
  aiAskFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
139856
139863
  aiCustomInstruction: z.ZodOptional<z.ZodString>;
139864
+ hasOpenMeterSubject: z.ZodBoolean;
139857
139865
  }, "strip", z.ZodTypeAny, {
139858
139866
  id: string;
139859
139867
  profile: {
@@ -139908,6 +139916,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
139908
139916
  };
139909
139917
  aiFeaturesEnabled: boolean;
139910
139918
  aiAskFeaturesEnabled: boolean;
139919
+ hasOpenMeterSubject: boolean;
139911
139920
  sso?: {
139912
139921
  providerId: string;
139913
139922
  defaultAutoInviteValue: boolean;
@@ -140001,6 +140010,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
140001
140010
  cancelAt?: string | null | undefined;
140002
140011
  subscriptionStatusUpdatedAt?: string | null | undefined;
140003
140012
  };
140013
+ hasOpenMeterSubject: boolean;
140004
140014
  sso?: {
140005
140015
  providerId: string;
140006
140016
  defaultAutoInviteValue: boolean;
@@ -140176,6 +140186,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
140176
140186
  };
140177
140187
  aiFeaturesEnabled: boolean;
140178
140188
  aiAskFeaturesEnabled: boolean;
140189
+ hasOpenMeterSubject: boolean;
140179
140190
  sso?: {
140180
140191
  providerId: string;
140181
140192
  defaultAutoInviteValue: boolean;
@@ -140294,6 +140305,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
140294
140305
  cancelAt?: string | null | undefined;
140295
140306
  subscriptionStatusUpdatedAt?: string | null | undefined;
140296
140307
  };
140308
+ hasOpenMeterSubject: boolean;
140297
140309
  sso?: {
140298
140310
  providerId: string;
140299
140311
  defaultAutoInviteValue: boolean;
@@ -144016,6 +144028,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144016
144028
  aiFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
144017
144029
  aiAskFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
144018
144030
  aiCustomInstruction: z.ZodOptional<z.ZodString>;
144031
+ hasOpenMeterSubject: z.ZodBoolean;
144019
144032
  }, "strip", z.ZodTypeAny, {
144020
144033
  id: string;
144021
144034
  profile: {
@@ -144070,6 +144083,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144070
144083
  };
144071
144084
  aiFeaturesEnabled: boolean;
144072
144085
  aiAskFeaturesEnabled: boolean;
144086
+ hasOpenMeterSubject: boolean;
144073
144087
  sso?: {
144074
144088
  providerId: string;
144075
144089
  defaultAutoInviteValue: boolean;
@@ -144163,6 +144177,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144163
144177
  cancelAt?: string | null | undefined;
144164
144178
  subscriptionStatusUpdatedAt?: string | null | undefined;
144165
144179
  };
144180
+ hasOpenMeterSubject: boolean;
144166
144181
  sso?: {
144167
144182
  providerId: string;
144168
144183
  defaultAutoInviteValue: boolean;
@@ -144618,6 +144633,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144618
144633
  };
144619
144634
  aiFeaturesEnabled: boolean;
144620
144635
  aiAskFeaturesEnabled: boolean;
144636
+ hasOpenMeterSubject: boolean;
144621
144637
  sso?: {
144622
144638
  providerId: string;
144623
144639
  defaultAutoInviteValue: boolean;
@@ -144784,6 +144800,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144784
144800
  cancelAt?: string | null | undefined;
144785
144801
  subscriptionStatusUpdatedAt?: string | null | undefined;
144786
144802
  };
144803
+ hasOpenMeterSubject: boolean;
144787
144804
  sso?: {
144788
144805
  providerId: string;
144789
144806
  defaultAutoInviteValue: boolean;
@@ -145293,6 +145310,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145293
145310
  aiFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
145294
145311
  aiAskFeaturesEnabled: z.ZodDefault<z.ZodBoolean>;
145295
145312
  aiCustomInstruction: z.ZodOptional<z.ZodString>;
145313
+ hasOpenMeterSubject: z.ZodBoolean;
145296
145314
  }, "strip", z.ZodTypeAny, {
145297
145315
  id: string;
145298
145316
  profile: {
@@ -145347,6 +145365,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145347
145365
  };
145348
145366
  aiFeaturesEnabled: boolean;
145349
145367
  aiAskFeaturesEnabled: boolean;
145368
+ hasOpenMeterSubject: boolean;
145350
145369
  sso?: {
145351
145370
  providerId: string;
145352
145371
  defaultAutoInviteValue: boolean;
@@ -145440,6 +145459,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145440
145459
  cancelAt?: string | null | undefined;
145441
145460
  subscriptionStatusUpdatedAt?: string | null | undefined;
145442
145461
  };
145462
+ hasOpenMeterSubject: boolean;
145443
145463
  sso?: {
145444
145464
  providerId: string;
145445
145465
  defaultAutoInviteValue: boolean;
@@ -145819,6 +145839,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145819
145839
  };
145820
145840
  aiFeaturesEnabled: boolean;
145821
145841
  aiAskFeaturesEnabled: boolean;
145842
+ hasOpenMeterSubject: boolean;
145822
145843
  sso?: {
145823
145844
  providerId: string;
145824
145845
  defaultAutoInviteValue: boolean;
@@ -145962,6 +145983,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145962
145983
  cancelAt?: string | null | undefined;
145963
145984
  subscriptionStatusUpdatedAt?: string | null | undefined;
145964
145985
  };
145986
+ hasOpenMeterSubject: boolean;
145965
145987
  sso?: {
145966
145988
  providerId: string;
145967
145989
  defaultAutoInviteValue: boolean;
package/dist/index.js CHANGED
@@ -5003,7 +5003,8 @@ var Workspace = _zod.z.object({
5003
5003
  npmRegistrySettings: nullishToOptional(NpmRegistryConfig),
5004
5004
  aiFeaturesEnabled: _zod.z.boolean().default(false),
5005
5005
  aiAskFeaturesEnabled: _zod.z.boolean().default(false),
5006
- aiCustomInstruction: _zod.z.string().optional()
5006
+ aiCustomInstruction: _zod.z.string().optional(),
5007
+ hasOpenMeterSubject: _zod.z.boolean()
5007
5008
  });
5008
5009
  var WorkspaceWithDesignSystems = _zod.z.object({
5009
5010
  workspace: Workspace,