@automate.ax/integration-contracts 0.145.1 → 0.145.2

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.
@@ -945,13 +945,27 @@
945
945
  "example": 60
946
946
  },
947
947
  "eventTypeId": {
948
- "type": "number",
949
- "example": 50,
950
- "deprecated": true,
951
- "description": "Deprecated - rely on 'eventType' object containing the id instead."
948
+ "anyOf": [
949
+ {
950
+ "type": "number",
951
+ "example": 50,
952
+ "deprecated": true,
953
+ "description": "Deprecated - rely on 'eventType' object containing the id instead."
954
+ },
955
+ {
956
+ "type": "null"
957
+ }
958
+ ]
952
959
  },
953
960
  "eventType": {
954
- "$ref": "#/$defs/EventType"
961
+ "anyOf": [
962
+ {
963
+ "$ref": "#/$defs/EventType"
964
+ },
965
+ {
966
+ "type": "null"
967
+ }
968
+ ]
955
969
  },
956
970
  "meetingUrl": {
957
971
  "type": "string",
@@ -5666,13 +5680,27 @@
5666
5680
  "example": 60
5667
5681
  },
5668
5682
  "eventTypeId": {
5669
- "type": "number",
5670
- "example": 50,
5671
- "deprecated": true,
5672
- "description": "Deprecated - rely on 'eventType' object containing the id instead."
5683
+ "anyOf": [
5684
+ {
5685
+ "type": "number",
5686
+ "example": 50,
5687
+ "deprecated": true,
5688
+ "description": "Deprecated - rely on 'eventType' object containing the id instead."
5689
+ },
5690
+ {
5691
+ "type": "null"
5692
+ }
5693
+ ]
5673
5694
  },
5674
5695
  "eventType": {
5675
- "$ref": "#/$defs/EventType"
5696
+ "anyOf": [
5697
+ {
5698
+ "$ref": "#/$defs/EventType"
5699
+ },
5700
+ {
5701
+ "type": "null"
5702
+ }
5703
+ ]
5676
5704
  },
5677
5705
  "meetingUrl": {
5678
5706
  "type": "string",
@@ -5898,13 +5926,27 @@
5898
5926
  "example": 60
5899
5927
  },
5900
5928
  "eventTypeId": {
5901
- "type": "number",
5902
- "example": 50,
5903
- "deprecated": true,
5904
- "description": "Deprecated - rely on 'eventType' object containing the id instead."
5929
+ "anyOf": [
5930
+ {
5931
+ "type": "number",
5932
+ "example": 50,
5933
+ "deprecated": true,
5934
+ "description": "Deprecated - rely on 'eventType' object containing the id instead."
5935
+ },
5936
+ {
5937
+ "type": "null"
5938
+ }
5939
+ ]
5905
5940
  },
5906
5941
  "eventType": {
5907
- "$ref": "#/$defs/EventType"
5942
+ "anyOf": [
5943
+ {
5944
+ "$ref": "#/$defs/EventType"
5945
+ },
5946
+ {
5947
+ "type": "null"
5948
+ }
5949
+ ]
5908
5950
  },
5909
5951
  "meetingUrl": {
5910
5952
  "type": "string",
@@ -7823,13 +7865,27 @@
7823
7865
  "example": 60
7824
7866
  },
7825
7867
  "eventTypeId": {
7826
- "type": "number",
7827
- "example": 50,
7828
- "deprecated": true,
7829
- "description": "Deprecated - rely on 'eventType' object containing the id instead."
7868
+ "anyOf": [
7869
+ {
7870
+ "type": "number",
7871
+ "example": 50,
7872
+ "deprecated": true,
7873
+ "description": "Deprecated - rely on 'eventType' object containing the id instead."
7874
+ },
7875
+ {
7876
+ "type": "null"
7877
+ }
7878
+ ]
7830
7879
  },
7831
7880
  "eventType": {
7832
- "$ref": "#/$defs/EventType"
7881
+ "anyOf": [
7882
+ {
7883
+ "$ref": "#/$defs/EventType"
7884
+ },
7885
+ {
7886
+ "type": "null"
7887
+ }
7888
+ ]
7833
7889
  },
7834
7890
  "meetingUrl": {
7835
7891
  "type": "string",
@@ -679,8 +679,8 @@ export interface components {
679
679
  * @example
680
680
  * 50
681
681
  */
682
- eventTypeId: number;
683
- eventType: components["schemas"]["EventType"];
682
+ eventTypeId: number | null;
683
+ eventType: components["schemas"]["EventType"] | null;
684
684
  /**
685
685
  * Format: uri
686
686
  *
@@ -3827,8 +3827,8 @@ export interface components {
3827
3827
  * @example
3828
3828
  * 50
3829
3829
  */
3830
- eventTypeId: number;
3831
- eventType: components["schemas"]["EventType"];
3830
+ eventTypeId: number | null;
3831
+ eventType: components["schemas"]["EventType"] | null;
3832
3832
  /**
3833
3833
  * Format: uri
3834
3834
  *
@@ -4010,8 +4010,8 @@ export interface components {
4010
4010
  * @example
4011
4011
  * 50
4012
4012
  */
4013
- eventTypeId: number;
4014
- eventType: components["schemas"]["EventType"];
4013
+ eventTypeId: number | null;
4014
+ eventType: components["schemas"]["EventType"] | null;
4015
4015
  /**
4016
4016
  * Format: uri
4017
4017
  *
@@ -5510,8 +5510,8 @@ export interface components {
5510
5510
  * @example
5511
5511
  * 50
5512
5512
  */
5513
- eventTypeId: number;
5514
- eventType: components["schemas"]["EventType"];
5513
+ eventTypeId: number | null;
5514
+ eventType: components["schemas"]["EventType"] | null;
5515
5515
  /**
5516
5516
  * Format: uri
5517
5517
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automate.ax/integration-contracts",
3
- "version": "0.145.1",
3
+ "version": "0.145.2",
4
4
  "description": "Shared integration payload contracts and provider primitives for Automate.ax.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -67,7 +67,7 @@
67
67
  },
68
68
  "dependencies": {
69
69
  "@anthropic-ai/sdk": "0.123.0",
70
- "@automate.ax/codec": "0.145.1",
70
+ "@automate.ax/codec": "0.145.2",
71
71
  "@cfworker/json-schema": "^4.1.1",
72
72
  "@googleapis/calendar": "^16.0.0",
73
73
  "@googleapis/forms": "^6.0.1",
@@ -945,13 +945,27 @@
945
945
  "example": 60
946
946
  },
947
947
  "eventTypeId": {
948
- "type": "number",
949
- "example": 50,
950
- "deprecated": true,
951
- "description": "Deprecated - rely on 'eventType' object containing the id instead."
948
+ "anyOf": [
949
+ {
950
+ "type": "number",
951
+ "example": 50,
952
+ "deprecated": true,
953
+ "description": "Deprecated - rely on 'eventType' object containing the id instead."
954
+ },
955
+ {
956
+ "type": "null"
957
+ }
958
+ ]
952
959
  },
953
960
  "eventType": {
954
- "$ref": "#/$defs/EventType"
961
+ "anyOf": [
962
+ {
963
+ "$ref": "#/$defs/EventType"
964
+ },
965
+ {
966
+ "type": "null"
967
+ }
968
+ ]
955
969
  },
956
970
  "meetingUrl": {
957
971
  "type": "string",
@@ -5666,13 +5680,27 @@
5666
5680
  "example": 60
5667
5681
  },
5668
5682
  "eventTypeId": {
5669
- "type": "number",
5670
- "example": 50,
5671
- "deprecated": true,
5672
- "description": "Deprecated - rely on 'eventType' object containing the id instead."
5683
+ "anyOf": [
5684
+ {
5685
+ "type": "number",
5686
+ "example": 50,
5687
+ "deprecated": true,
5688
+ "description": "Deprecated - rely on 'eventType' object containing the id instead."
5689
+ },
5690
+ {
5691
+ "type": "null"
5692
+ }
5693
+ ]
5673
5694
  },
5674
5695
  "eventType": {
5675
- "$ref": "#/$defs/EventType"
5696
+ "anyOf": [
5697
+ {
5698
+ "$ref": "#/$defs/EventType"
5699
+ },
5700
+ {
5701
+ "type": "null"
5702
+ }
5703
+ ]
5676
5704
  },
5677
5705
  "meetingUrl": {
5678
5706
  "type": "string",
@@ -5898,13 +5926,27 @@
5898
5926
  "example": 60
5899
5927
  },
5900
5928
  "eventTypeId": {
5901
- "type": "number",
5902
- "example": 50,
5903
- "deprecated": true,
5904
- "description": "Deprecated - rely on 'eventType' object containing the id instead."
5929
+ "anyOf": [
5930
+ {
5931
+ "type": "number",
5932
+ "example": 50,
5933
+ "deprecated": true,
5934
+ "description": "Deprecated - rely on 'eventType' object containing the id instead."
5935
+ },
5936
+ {
5937
+ "type": "null"
5938
+ }
5939
+ ]
5905
5940
  },
5906
5941
  "eventType": {
5907
- "$ref": "#/$defs/EventType"
5942
+ "anyOf": [
5943
+ {
5944
+ "$ref": "#/$defs/EventType"
5945
+ },
5946
+ {
5947
+ "type": "null"
5948
+ }
5949
+ ]
5908
5950
  },
5909
5951
  "meetingUrl": {
5910
5952
  "type": "string",
@@ -7823,13 +7865,27 @@
7823
7865
  "example": 60
7824
7866
  },
7825
7867
  "eventTypeId": {
7826
- "type": "number",
7827
- "example": 50,
7828
- "deprecated": true,
7829
- "description": "Deprecated - rely on 'eventType' object containing the id instead."
7868
+ "anyOf": [
7869
+ {
7870
+ "type": "number",
7871
+ "example": 50,
7872
+ "deprecated": true,
7873
+ "description": "Deprecated - rely on 'eventType' object containing the id instead."
7874
+ },
7875
+ {
7876
+ "type": "null"
7877
+ }
7878
+ ]
7830
7879
  },
7831
7880
  "eventType": {
7832
- "$ref": "#/$defs/EventType"
7881
+ "anyOf": [
7882
+ {
7883
+ "$ref": "#/$defs/EventType"
7884
+ },
7885
+ {
7886
+ "type": "null"
7887
+ }
7888
+ ]
7833
7889
  },
7834
7890
  "meetingUrl": {
7835
7891
  "type": "string",
@@ -886,8 +886,8 @@ export interface components {
886
886
  * @example
887
887
  * 50
888
888
  */
889
- eventTypeId: number
890
- eventType: components["schemas"]["EventType"]
889
+ eventTypeId: number | null
890
+ eventType: components["schemas"]["EventType"] | null
891
891
  /**
892
892
  * Format: uri
893
893
  *
@@ -4398,8 +4398,8 @@ export interface components {
4398
4398
  * @example
4399
4399
  * 50
4400
4400
  */
4401
- eventTypeId: number
4402
- eventType: components["schemas"]["EventType"]
4401
+ eventTypeId: number | null
4402
+ eventType: components["schemas"]["EventType"] | null
4403
4403
  /**
4404
4404
  * Format: uri
4405
4405
  *
@@ -4581,8 +4581,8 @@ export interface components {
4581
4581
  * @example
4582
4582
  * 50
4583
4583
  */
4584
- eventTypeId: number
4585
- eventType: components["schemas"]["EventType"]
4584
+ eventTypeId: number | null
4585
+ eventType: components["schemas"]["EventType"] | null
4586
4586
  /**
4587
4587
  * Format: uri
4588
4588
  *
@@ -6184,8 +6184,8 @@ export interface components {
6184
6184
  * @example
6185
6185
  * 50
6186
6186
  */
6187
- eventTypeId: number
6188
- eventType: components["schemas"]["EventType"]
6187
+ eventTypeId: number | null
6188
+ eventType: components["schemas"]["EventType"] | null
6189
6189
  /**
6190
6190
  * Format: uri
6191
6191
  *