@seamapi/types 1.585.0 → 1.586.0
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/connect.cjs +48 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +62 -0
- package/dist/index.cjs +48 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +54 -0
- package/lib/seam/connect/openapi.js +48 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +48 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.d.cts
CHANGED
|
@@ -92409,6 +92409,19 @@ declare const _default: {
|
|
|
92409
92409
|
required: string[];
|
|
92410
92410
|
type: string;
|
|
92411
92411
|
};
|
|
92412
|
+
user_identity_name_updated: {
|
|
92413
|
+
properties: {
|
|
92414
|
+
config: {
|
|
92415
|
+
$ref: string;
|
|
92416
|
+
};
|
|
92417
|
+
rule: {
|
|
92418
|
+
enum: string[];
|
|
92419
|
+
type: string;
|
|
92420
|
+
};
|
|
92421
|
+
};
|
|
92422
|
+
required: string[];
|
|
92423
|
+
type: string;
|
|
92424
|
+
};
|
|
92412
92425
|
};
|
|
92413
92426
|
type: string;
|
|
92414
92427
|
};
|
|
@@ -92529,6 +92542,19 @@ declare const _default: {
|
|
|
92529
92542
|
required: string[];
|
|
92530
92543
|
type: string;
|
|
92531
92544
|
};
|
|
92545
|
+
user_identity_name_updated: {
|
|
92546
|
+
properties: {
|
|
92547
|
+
config: {
|
|
92548
|
+
$ref: string;
|
|
92549
|
+
};
|
|
92550
|
+
rule: {
|
|
92551
|
+
enum: string[];
|
|
92552
|
+
type: string;
|
|
92553
|
+
};
|
|
92554
|
+
};
|
|
92555
|
+
required: string[];
|
|
92556
|
+
type: string;
|
|
92557
|
+
};
|
|
92532
92558
|
};
|
|
92533
92559
|
type: string;
|
|
92534
92560
|
};
|
|
@@ -92654,6 +92680,20 @@ declare const _default: {
|
|
|
92654
92680
|
required: string[];
|
|
92655
92681
|
type: string;
|
|
92656
92682
|
};
|
|
92683
|
+
user_identity_name_updated: {
|
|
92684
|
+
properties: {
|
|
92685
|
+
config: {
|
|
92686
|
+
properties: {};
|
|
92687
|
+
type: string;
|
|
92688
|
+
};
|
|
92689
|
+
rule: {
|
|
92690
|
+
enum: string[];
|
|
92691
|
+
type: string;
|
|
92692
|
+
};
|
|
92693
|
+
};
|
|
92694
|
+
required: string[];
|
|
92695
|
+
type: string;
|
|
92696
|
+
};
|
|
92657
92697
|
};
|
|
92658
92698
|
type: string;
|
|
92659
92699
|
};
|
|
@@ -92789,6 +92829,20 @@ declare const _default: {
|
|
|
92789
92829
|
required: string[];
|
|
92790
92830
|
type: string;
|
|
92791
92831
|
};
|
|
92832
|
+
user_identity_name_updated: {
|
|
92833
|
+
properties: {
|
|
92834
|
+
config: {
|
|
92835
|
+
properties: {};
|
|
92836
|
+
type: string;
|
|
92837
|
+
};
|
|
92838
|
+
rule: {
|
|
92839
|
+
enum: string[];
|
|
92840
|
+
type: string;
|
|
92841
|
+
};
|
|
92842
|
+
};
|
|
92843
|
+
required: string[];
|
|
92844
|
+
type: string;
|
|
92845
|
+
};
|
|
92792
92846
|
};
|
|
92793
92847
|
type: string;
|
|
92794
92848
|
};
|
|
@@ -163016,6 +163070,10 @@ type Routes = {
|
|
|
163016
163070
|
rule: 'space_name_updated';
|
|
163017
163071
|
config?: {} | undefined;
|
|
163018
163072
|
} | undefined;
|
|
163073
|
+
user_identity_name_updated?: {
|
|
163074
|
+
rule: 'user_identity_name_updated';
|
|
163075
|
+
config?: {} | undefined;
|
|
163076
|
+
} | undefined;
|
|
163019
163077
|
} | undefined;
|
|
163020
163078
|
};
|
|
163021
163079
|
};
|
|
@@ -163045,6 +163103,10 @@ type Routes = {
|
|
|
163045
163103
|
rule: 'space_name_updated';
|
|
163046
163104
|
config?: {} | undefined;
|
|
163047
163105
|
} | undefined;
|
|
163106
|
+
user_identity_name_updated?: {
|
|
163107
|
+
rule: 'user_identity_name_updated';
|
|
163108
|
+
config?: {} | undefined;
|
|
163109
|
+
} | undefined;
|
|
163048
163110
|
} | undefined;
|
|
163049
163111
|
};
|
|
163050
163112
|
commonParams: {};
|
package/dist/index.cjs
CHANGED
|
@@ -52135,6 +52135,19 @@ var openapi_default = {
|
|
|
52135
52135
|
},
|
|
52136
52136
|
required: ["rule"],
|
|
52137
52137
|
type: "object"
|
|
52138
|
+
},
|
|
52139
|
+
user_identity_name_updated: {
|
|
52140
|
+
properties: {
|
|
52141
|
+
config: {
|
|
52142
|
+
$ref: "#/components/schemas/access_code"
|
|
52143
|
+
},
|
|
52144
|
+
rule: {
|
|
52145
|
+
enum: ["user_identity_name_updated"],
|
|
52146
|
+
type: "string"
|
|
52147
|
+
}
|
|
52148
|
+
},
|
|
52149
|
+
required: ["rule"],
|
|
52150
|
+
type: "object"
|
|
52138
52151
|
}
|
|
52139
52152
|
},
|
|
52140
52153
|
type: "object"
|
|
@@ -52248,6 +52261,19 @@ var openapi_default = {
|
|
|
52248
52261
|
},
|
|
52249
52262
|
required: ["rule"],
|
|
52250
52263
|
type: "object"
|
|
52264
|
+
},
|
|
52265
|
+
user_identity_name_updated: {
|
|
52266
|
+
properties: {
|
|
52267
|
+
config: {
|
|
52268
|
+
$ref: "#/components/schemas/access_code"
|
|
52269
|
+
},
|
|
52270
|
+
rule: {
|
|
52271
|
+
enum: ["user_identity_name_updated"],
|
|
52272
|
+
type: "string"
|
|
52273
|
+
}
|
|
52274
|
+
},
|
|
52275
|
+
required: ["rule"],
|
|
52276
|
+
type: "object"
|
|
52251
52277
|
}
|
|
52252
52278
|
},
|
|
52253
52279
|
type: "object"
|
|
@@ -52357,6 +52383,17 @@ var openapi_default = {
|
|
|
52357
52383
|
},
|
|
52358
52384
|
required: ["rule"],
|
|
52359
52385
|
type: "object"
|
|
52386
|
+
},
|
|
52387
|
+
user_identity_name_updated: {
|
|
52388
|
+
properties: {
|
|
52389
|
+
config: { properties: {}, type: "object" },
|
|
52390
|
+
rule: {
|
|
52391
|
+
enum: ["user_identity_name_updated"],
|
|
52392
|
+
type: "string"
|
|
52393
|
+
}
|
|
52394
|
+
},
|
|
52395
|
+
required: ["rule"],
|
|
52396
|
+
type: "object"
|
|
52360
52397
|
}
|
|
52361
52398
|
},
|
|
52362
52399
|
type: "object"
|
|
@@ -52474,6 +52511,17 @@ var openapi_default = {
|
|
|
52474
52511
|
},
|
|
52475
52512
|
required: ["rule"],
|
|
52476
52513
|
type: "object"
|
|
52514
|
+
},
|
|
52515
|
+
user_identity_name_updated: {
|
|
52516
|
+
properties: {
|
|
52517
|
+
config: { properties: {}, type: "object" },
|
|
52518
|
+
rule: {
|
|
52519
|
+
enum: ["user_identity_name_updated"],
|
|
52520
|
+
type: "string"
|
|
52521
|
+
}
|
|
52522
|
+
},
|
|
52523
|
+
required: ["rule"],
|
|
52524
|
+
type: "object"
|
|
52477
52525
|
}
|
|
52478
52526
|
},
|
|
52479
52527
|
type: "object"
|