@seamapi/types 1.89.0 → 1.91.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 +75 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +121 -2
- package/lib/seam/connect/openapi.d.ts +113 -0
- package/lib/seam/connect/openapi.js +75 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -2
- package/lib/seam/connect/unstable/models/acs/credential.d.ts +3 -0
- package/lib/seam/connect/unstable/models/acs/credential.js +1 -0
- package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +75 -0
- package/src/lib/seam/connect/route-types.ts +8 -2
- package/src/lib/seam/connect/unstable/models/acs/credential.ts +1 -0
|
@@ -804,6 +804,7 @@ export interface Routes {
|
|
|
804
804
|
workspace_id: string;
|
|
805
805
|
starts_at?: string | undefined;
|
|
806
806
|
ends_at?: string | undefined;
|
|
807
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
807
808
|
};
|
|
808
809
|
};
|
|
809
810
|
};
|
|
@@ -840,6 +841,7 @@ export interface Routes {
|
|
|
840
841
|
workspace_id: string;
|
|
841
842
|
starts_at?: string | undefined;
|
|
842
843
|
ends_at?: string | undefined;
|
|
844
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
843
845
|
};
|
|
844
846
|
};
|
|
845
847
|
};
|
|
@@ -878,6 +880,7 @@ export interface Routes {
|
|
|
878
880
|
workspace_id: string;
|
|
879
881
|
starts_at?: string | undefined;
|
|
880
882
|
ends_at?: string | undefined;
|
|
883
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
881
884
|
};
|
|
882
885
|
};
|
|
883
886
|
};
|
|
@@ -912,6 +915,7 @@ export interface Routes {
|
|
|
912
915
|
workspace_id: string;
|
|
913
916
|
starts_at?: string | undefined;
|
|
914
917
|
ends_at?: string | undefined;
|
|
918
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
915
919
|
}>;
|
|
916
920
|
};
|
|
917
921
|
};
|
|
@@ -940,6 +944,7 @@ export interface Routes {
|
|
|
940
944
|
workspace_id: string;
|
|
941
945
|
starts_at?: string | undefined;
|
|
942
946
|
ends_at?: string | undefined;
|
|
947
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
943
948
|
};
|
|
944
949
|
};
|
|
945
950
|
};
|
|
@@ -968,6 +973,7 @@ export interface Routes {
|
|
|
968
973
|
workspace_id: string;
|
|
969
974
|
starts_at?: string | undefined;
|
|
970
975
|
ends_at?: string | undefined;
|
|
976
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
971
977
|
};
|
|
972
978
|
};
|
|
973
979
|
};
|
|
@@ -2942,7 +2948,7 @@ export interface Routes {
|
|
|
2942
2948
|
};
|
|
2943
2949
|
'/health': {
|
|
2944
2950
|
route: '/health';
|
|
2945
|
-
method: 'GET';
|
|
2951
|
+
method: 'GET' | 'POST';
|
|
2946
2952
|
queryParams: {};
|
|
2947
2953
|
jsonBody: {};
|
|
2948
2954
|
commonParams: {};
|
|
@@ -2960,7 +2966,7 @@ export interface Routes {
|
|
|
2960
2966
|
};
|
|
2961
2967
|
'/health/get_health': {
|
|
2962
2968
|
route: '/health/get_health';
|
|
2963
|
-
method: 'GET';
|
|
2969
|
+
method: 'GET' | 'POST';
|
|
2964
2970
|
queryParams: {};
|
|
2965
2971
|
jsonBody: {};
|
|
2966
2972
|
commonParams: {};
|
|
@@ -16,6 +16,7 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
16
16
|
workspace_id: z.ZodString;
|
|
17
17
|
starts_at: z.ZodOptional<z.ZodString>;
|
|
18
18
|
ends_at: z.ZodOptional<z.ZodString>;
|
|
19
|
+
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
19
20
|
}, "strip", z.ZodTypeAny, {
|
|
20
21
|
workspace_id: string;
|
|
21
22
|
created_at: string;
|
|
@@ -30,6 +31,7 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
30
31
|
external_type_display_name?: string | undefined;
|
|
31
32
|
starts_at?: string | undefined;
|
|
32
33
|
ends_at?: string | undefined;
|
|
34
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
33
35
|
}, {
|
|
34
36
|
workspace_id: string;
|
|
35
37
|
created_at: string;
|
|
@@ -44,5 +46,6 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
44
46
|
external_type_display_name?: string | undefined;
|
|
45
47
|
starts_at?: string | undefined;
|
|
46
48
|
ends_at?: string | undefined;
|
|
49
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
47
50
|
}>;
|
|
48
51
|
export type AcsCredential = z.output<typeof acs_credential>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"credential.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,wEAAwE;AACxE,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC;IACjD,UAAU;IACV,kBAAkB;IAClB,gBAAgB;IAChB,iBAAiB;CAClB,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,CAAC,IAAI,CAAC;IACtD,MAAM;IACN,MAAM;IACN,YAAY;CACb,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACpC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACzC,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACpD,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACtC,aAAa,EAAE,iCAAiC;IAChD,aAAa,EAAE,4BAA4B,CAAC,QAAQ,EAAE;IACtD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"credential.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,wEAAwE;AACxE,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC;IACjD,UAAU;IACV,kBAAkB;IAClB,gBAAgB;IAChB,iBAAiB;CAClB,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,CAAC,IAAI,CAAC;IACtD,MAAM;IACN,MAAM;IACN,YAAY;CACb,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACpC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACzC,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACpD,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACtC,aAAa,EAAE,iCAAiC;IAChD,aAAa,EAAE,4BAA4B,CAAC,QAAQ,EAAE;IACtD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,8BAA8B,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CACvD,CAAC,CAAA"}
|
package/package.json
CHANGED
|
@@ -5071,6 +5071,7 @@ export default {
|
|
|
5071
5071
|
type: 'string',
|
|
5072
5072
|
},
|
|
5073
5073
|
external_type_display_name: { type: 'string' },
|
|
5074
|
+
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
5074
5075
|
starts_at: { type: 'string' },
|
|
5075
5076
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
5076
5077
|
},
|
|
@@ -5154,6 +5155,7 @@ export default {
|
|
|
5154
5155
|
type: 'string',
|
|
5155
5156
|
},
|
|
5156
5157
|
external_type_display_name: { type: 'string' },
|
|
5158
|
+
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
5157
5159
|
starts_at: { type: 'string' },
|
|
5158
5160
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
5159
5161
|
},
|
|
@@ -5262,6 +5264,7 @@ export default {
|
|
|
5262
5264
|
type: 'string',
|
|
5263
5265
|
},
|
|
5264
5266
|
external_type_display_name: { type: 'string' },
|
|
5267
|
+
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
5265
5268
|
starts_at: { type: 'string' },
|
|
5266
5269
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
5267
5270
|
},
|
|
@@ -5390,6 +5393,7 @@ export default {
|
|
|
5390
5393
|
type: 'string',
|
|
5391
5394
|
},
|
|
5392
5395
|
external_type_display_name: { type: 'string' },
|
|
5396
|
+
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
5393
5397
|
starts_at: { type: 'string' },
|
|
5394
5398
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
5395
5399
|
},
|
|
@@ -5502,6 +5506,7 @@ export default {
|
|
|
5502
5506
|
type: 'string',
|
|
5503
5507
|
},
|
|
5504
5508
|
external_type_display_name: { type: 'string' },
|
|
5509
|
+
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
5505
5510
|
starts_at: { type: 'string' },
|
|
5506
5511
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
5507
5512
|
},
|
|
@@ -5591,6 +5596,7 @@ export default {
|
|
|
5591
5596
|
type: 'string',
|
|
5592
5597
|
},
|
|
5593
5598
|
external_type_display_name: { type: 'string' },
|
|
5599
|
+
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
5594
5600
|
starts_at: { type: 'string' },
|
|
5595
5601
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
5596
5602
|
},
|
|
@@ -5674,6 +5680,7 @@ export default {
|
|
|
5674
5680
|
type: 'string',
|
|
5675
5681
|
},
|
|
5676
5682
|
external_type_display_name: { type: 'string' },
|
|
5683
|
+
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
5677
5684
|
starts_at: { type: 'string' },
|
|
5678
5685
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
5679
5686
|
},
|
|
@@ -5760,6 +5767,7 @@ export default {
|
|
|
5760
5767
|
type: 'string',
|
|
5761
5768
|
},
|
|
5762
5769
|
external_type_display_name: { type: 'string' },
|
|
5770
|
+
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
5763
5771
|
starts_at: { type: 'string' },
|
|
5764
5772
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
5765
5773
|
},
|
|
@@ -5843,6 +5851,7 @@ export default {
|
|
|
5843
5851
|
type: 'string',
|
|
5844
5852
|
},
|
|
5845
5853
|
external_type_display_name: { type: 'string' },
|
|
5854
|
+
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
5846
5855
|
starts_at: { type: 'string' },
|
|
5847
5856
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
5848
5857
|
},
|
|
@@ -8934,6 +8943,39 @@ export default {
|
|
|
8934
8943
|
tags: ['/health'],
|
|
8935
8944
|
'x-fern-ignore': true,
|
|
8936
8945
|
},
|
|
8946
|
+
post: {
|
|
8947
|
+
operationId: 'healthPost',
|
|
8948
|
+
responses: {
|
|
8949
|
+
200: {
|
|
8950
|
+
content: {
|
|
8951
|
+
'application/json': {
|
|
8952
|
+
schema: {
|
|
8953
|
+
properties: {
|
|
8954
|
+
last_service_evaluation_at: { type: 'string' },
|
|
8955
|
+
msg: {
|
|
8956
|
+
enum: ['I’m one with the Force. The Force is with me.'],
|
|
8957
|
+
type: 'string',
|
|
8958
|
+
},
|
|
8959
|
+
ok: { type: 'boolean' },
|
|
8960
|
+
service_health_statuses: {
|
|
8961
|
+
items: { $ref: '#/components/schemas/service_health' },
|
|
8962
|
+
type: 'array',
|
|
8963
|
+
},
|
|
8964
|
+
},
|
|
8965
|
+
required: ['ok', 'msg', 'service_health_statuses'],
|
|
8966
|
+
type: 'object',
|
|
8967
|
+
},
|
|
8968
|
+
},
|
|
8969
|
+
},
|
|
8970
|
+
description: 'OK',
|
|
8971
|
+
},
|
|
8972
|
+
400: { description: 'Bad Request' },
|
|
8973
|
+
401: { description: 'Unauthorized' },
|
|
8974
|
+
},
|
|
8975
|
+
summary: '/health',
|
|
8976
|
+
tags: ['/health'],
|
|
8977
|
+
'x-fern-ignore': true,
|
|
8978
|
+
},
|
|
8937
8979
|
},
|
|
8938
8980
|
'/health/get_health': {
|
|
8939
8981
|
get: {
|
|
@@ -8967,6 +9009,39 @@ export default {
|
|
|
8967
9009
|
},
|
|
8968
9010
|
summary: '/health/get_health',
|
|
8969
9011
|
tags: ['/health'],
|
|
9012
|
+
'x-fern-ignore': true,
|
|
9013
|
+
},
|
|
9014
|
+
post: {
|
|
9015
|
+
operationId: 'healthGetHealthPost',
|
|
9016
|
+
responses: {
|
|
9017
|
+
200: {
|
|
9018
|
+
content: {
|
|
9019
|
+
'application/json': {
|
|
9020
|
+
schema: {
|
|
9021
|
+
properties: {
|
|
9022
|
+
last_service_evaluation_at: { type: 'string' },
|
|
9023
|
+
msg: {
|
|
9024
|
+
enum: ['I’m one with the Force. The Force is with me.'],
|
|
9025
|
+
type: 'string',
|
|
9026
|
+
},
|
|
9027
|
+
ok: { type: 'boolean' },
|
|
9028
|
+
service_health_statuses: {
|
|
9029
|
+
items: { $ref: '#/components/schemas/service_health' },
|
|
9030
|
+
type: 'array',
|
|
9031
|
+
},
|
|
9032
|
+
},
|
|
9033
|
+
required: ['ok', 'msg', 'service_health_statuses'],
|
|
9034
|
+
type: 'object',
|
|
9035
|
+
},
|
|
9036
|
+
},
|
|
9037
|
+
},
|
|
9038
|
+
description: 'OK',
|
|
9039
|
+
},
|
|
9040
|
+
400: { description: 'Bad Request' },
|
|
9041
|
+
401: { description: 'Unauthorized' },
|
|
9042
|
+
},
|
|
9043
|
+
summary: '/health/get_health',
|
|
9044
|
+
tags: ['/health'],
|
|
8970
9045
|
'x-fern-sdk-group-name': ['health'],
|
|
8971
9046
|
'x-fern-sdk-method-name': 'get_health',
|
|
8972
9047
|
},
|
|
@@ -848,6 +848,7 @@ export interface Routes {
|
|
|
848
848
|
workspace_id: string
|
|
849
849
|
starts_at?: string | undefined
|
|
850
850
|
ends_at?: string | undefined
|
|
851
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
851
852
|
}
|
|
852
853
|
}
|
|
853
854
|
}
|
|
@@ -898,6 +899,7 @@ export interface Routes {
|
|
|
898
899
|
workspace_id: string
|
|
899
900
|
starts_at?: string | undefined
|
|
900
901
|
ends_at?: string | undefined
|
|
902
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
901
903
|
}
|
|
902
904
|
}
|
|
903
905
|
}
|
|
@@ -943,6 +945,7 @@ export interface Routes {
|
|
|
943
945
|
workspace_id: string
|
|
944
946
|
starts_at?: string | undefined
|
|
945
947
|
ends_at?: string | undefined
|
|
948
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
946
949
|
}
|
|
947
950
|
}
|
|
948
951
|
}
|
|
@@ -988,6 +991,7 @@ export interface Routes {
|
|
|
988
991
|
workspace_id: string
|
|
989
992
|
starts_at?: string | undefined
|
|
990
993
|
ends_at?: string | undefined
|
|
994
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
991
995
|
}>
|
|
992
996
|
}
|
|
993
997
|
}
|
|
@@ -1023,6 +1027,7 @@ export interface Routes {
|
|
|
1023
1027
|
workspace_id: string
|
|
1024
1028
|
starts_at?: string | undefined
|
|
1025
1029
|
ends_at?: string | undefined
|
|
1030
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
1026
1031
|
}
|
|
1027
1032
|
}
|
|
1028
1033
|
}
|
|
@@ -1058,6 +1063,7 @@ export interface Routes {
|
|
|
1058
1063
|
workspace_id: string
|
|
1059
1064
|
starts_at?: string | undefined
|
|
1060
1065
|
ends_at?: string | undefined
|
|
1066
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
1061
1067
|
}
|
|
1062
1068
|
}
|
|
1063
1069
|
}
|
|
@@ -3936,7 +3942,7 @@ export interface Routes {
|
|
|
3936
3942
|
}
|
|
3937
3943
|
'/health': {
|
|
3938
3944
|
route: '/health'
|
|
3939
|
-
method: 'GET'
|
|
3945
|
+
method: 'GET' | 'POST'
|
|
3940
3946
|
queryParams: {}
|
|
3941
3947
|
jsonBody: {}
|
|
3942
3948
|
commonParams: {}
|
|
@@ -3954,7 +3960,7 @@ export interface Routes {
|
|
|
3954
3960
|
}
|
|
3955
3961
|
'/health/get_health': {
|
|
3956
3962
|
route: '/health/get_health'
|
|
3957
|
-
method: 'GET'
|
|
3963
|
+
method: 'GET' | 'POST'
|
|
3958
3964
|
queryParams: {}
|
|
3959
3965
|
jsonBody: {}
|
|
3960
3966
|
commonParams: {}
|
|
@@ -32,6 +32,7 @@ export const acs_credential = z.object({
|
|
|
32
32
|
workspace_id: z.string().uuid(),
|
|
33
33
|
starts_at: z.string().optional(),
|
|
34
34
|
ends_at: z.string().optional(),
|
|
35
|
+
is_multi_phone_sync_credential: z.boolean().optional(),
|
|
35
36
|
})
|
|
36
37
|
|
|
37
38
|
export type AcsCredential = z.output<typeof acs_credential>
|