@robosystems/client 0.3.36 → 0.3.37
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/artifacts/graphql/generated/graphql.d.ts +5 -0
- package/artifacts/graphql/generated/graphql.js +3 -0
- package/artifacts/graphql/generated/graphql.ts +8 -0
- package/artifacts/graphql/queries/ledger/informationBlock.js +2 -0
- package/artifacts/graphql/queries/ledger/informationBlock.ts +2 -0
- package/artifacts/graphql/queries/ledger/reportPackage.js +1 -0
- package/artifacts/graphql/queries/ledger/reportPackage.ts +1 -0
- package/package.json +1 -1
- package/sdk/types.gen.d.ts +8 -0
- package/sdk/types.gen.ts +8 -0
- package/types.gen.d.ts +8 -0
- package/types.gen.ts +8 -0
|
@@ -556,6 +556,8 @@ export type InformationBlockFactSet = {
|
|
|
556
556
|
id: Scalars['String']['output'];
|
|
557
557
|
periodEnd: Scalars['Date']['output'];
|
|
558
558
|
periodStart: Maybe<Scalars['Date']['output']>;
|
|
559
|
+
/** Typed ``FactProvenance`` descriptor (discriminated on ``origin``: pivot | schedule | derived | asserted) recording how this FactSet's facts were constructed. Surfaced as JSON, mirroring how mechanics is exposed. Null for pre-feature historical FactSets. */
|
|
560
|
+
provenance: Maybe<Scalars['JSON']['output']>;
|
|
559
561
|
/** Back-pointer to the ``reports`` table while ``report_id`` still lives on facts. Drops out once the retirement migration lands. */
|
|
560
562
|
reportId: Maybe<Scalars['String']['output']>;
|
|
561
563
|
structureId: Maybe<Scalars['String']['output']>;
|
|
@@ -2733,6 +2735,7 @@ export type GetInformationBlockQuery = {
|
|
|
2733
2735
|
factsetType: string;
|
|
2734
2736
|
entityId: string;
|
|
2735
2737
|
reportId: string | null;
|
|
2738
|
+
provenance: any | null;
|
|
2736
2739
|
} | null;
|
|
2737
2740
|
verificationResults: Array<{
|
|
2738
2741
|
id: string;
|
|
@@ -2870,6 +2873,7 @@ export type ListInformationBlocksQuery = {
|
|
|
2870
2873
|
factsetType: string;
|
|
2871
2874
|
entityId: string;
|
|
2872
2875
|
reportId: string | null;
|
|
2876
|
+
provenance: any | null;
|
|
2873
2877
|
} | null;
|
|
2874
2878
|
verificationResults: Array<{
|
|
2875
2879
|
id: string;
|
|
@@ -3254,6 +3258,7 @@ export type GetLedgerReportPackageQuery = {
|
|
|
3254
3258
|
factsetType: string;
|
|
3255
3259
|
entityId: string;
|
|
3256
3260
|
reportId: string | null;
|
|
3261
|
+
provenance: any | null;
|
|
3257
3262
|
} | null;
|
|
3258
3263
|
verificationResults: Array<{
|
|
3259
3264
|
id: string;
|
|
@@ -1814,6 +1814,7 @@ exports.GetInformationBlockDocument = {
|
|
|
1814
1814
|
{ kind: 'Field', name: { kind: 'Name', value: 'factsetType' } },
|
|
1815
1815
|
{ kind: 'Field', name: { kind: 'Name', value: 'entityId' } },
|
|
1816
1816
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportId' } },
|
|
1817
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'provenance' } },
|
|
1817
1818
|
],
|
|
1818
1819
|
},
|
|
1819
1820
|
},
|
|
@@ -2131,6 +2132,7 @@ exports.ListInformationBlocksDocument = {
|
|
|
2131
2132
|
{ kind: 'Field', name: { kind: 'Name', value: 'factsetType' } },
|
|
2132
2133
|
{ kind: 'Field', name: { kind: 'Name', value: 'entityId' } },
|
|
2133
2134
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportId' } },
|
|
2135
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'provenance' } },
|
|
2134
2136
|
],
|
|
2135
2137
|
},
|
|
2136
2138
|
},
|
|
@@ -3149,6 +3151,7 @@ exports.GetLedgerReportPackageDocument = {
|
|
|
3149
3151
|
{ kind: 'Field', name: { kind: 'Name', value: 'factsetType' } },
|
|
3150
3152
|
{ kind: 'Field', name: { kind: 'Name', value: 'entityId' } },
|
|
3151
3153
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportId' } },
|
|
3154
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'provenance' } },
|
|
3152
3155
|
],
|
|
3153
3156
|
},
|
|
3154
3157
|
},
|
|
@@ -553,6 +553,8 @@ export type InformationBlockFactSet = {
|
|
|
553
553
|
id: Scalars['String']['output']
|
|
554
554
|
periodEnd: Scalars['Date']['output']
|
|
555
555
|
periodStart: Maybe<Scalars['Date']['output']>
|
|
556
|
+
/** Typed ``FactProvenance`` descriptor (discriminated on ``origin``: pivot | schedule | derived | asserted) recording how this FactSet's facts were constructed. Surfaced as JSON, mirroring how mechanics is exposed. Null for pre-feature historical FactSets. */
|
|
557
|
+
provenance: Maybe<Scalars['JSON']['output']>
|
|
556
558
|
/** Back-pointer to the ``reports`` table while ``report_id`` still lives on facts. Drops out once the retirement migration lands. */
|
|
557
559
|
reportId: Maybe<Scalars['String']['output']>
|
|
558
560
|
structureId: Maybe<Scalars['String']['output']>
|
|
@@ -2846,6 +2848,7 @@ export type GetInformationBlockQuery = {
|
|
|
2846
2848
|
factsetType: string
|
|
2847
2849
|
entityId: string
|
|
2848
2850
|
reportId: string | null
|
|
2851
|
+
provenance: any | null
|
|
2849
2852
|
} | null
|
|
2850
2853
|
verificationResults: Array<{
|
|
2851
2854
|
id: string
|
|
@@ -2972,6 +2975,7 @@ export type ListInformationBlocksQuery = {
|
|
|
2972
2975
|
factsetType: string
|
|
2973
2976
|
entityId: string
|
|
2974
2977
|
reportId: string | null
|
|
2978
|
+
provenance: any | null
|
|
2975
2979
|
} | null
|
|
2976
2980
|
verificationResults: Array<{
|
|
2977
2981
|
id: string
|
|
@@ -3345,6 +3349,7 @@ export type GetLedgerReportPackageQuery = {
|
|
|
3345
3349
|
factsetType: string
|
|
3346
3350
|
entityId: string
|
|
3347
3351
|
reportId: string | null
|
|
3352
|
+
provenance: any | null
|
|
3348
3353
|
} | null
|
|
3349
3354
|
verificationResults: Array<{
|
|
3350
3355
|
id: string
|
|
@@ -5669,6 +5674,7 @@ export const GetInformationBlockDocument = {
|
|
|
5669
5674
|
{ kind: 'Field', name: { kind: 'Name', value: 'factsetType' } },
|
|
5670
5675
|
{ kind: 'Field', name: { kind: 'Name', value: 'entityId' } },
|
|
5671
5676
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportId' } },
|
|
5677
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'provenance' } },
|
|
5672
5678
|
],
|
|
5673
5679
|
},
|
|
5674
5680
|
},
|
|
@@ -5986,6 +5992,7 @@ export const ListInformationBlocksDocument = {
|
|
|
5986
5992
|
{ kind: 'Field', name: { kind: 'Name', value: 'factsetType' } },
|
|
5987
5993
|
{ kind: 'Field', name: { kind: 'Name', value: 'entityId' } },
|
|
5988
5994
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportId' } },
|
|
5995
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'provenance' } },
|
|
5989
5996
|
],
|
|
5990
5997
|
},
|
|
5991
5998
|
},
|
|
@@ -7010,6 +7017,7 @@ export const GetLedgerReportPackageDocument = {
|
|
|
7010
7017
|
{ kind: 'Field', name: { kind: 'Name', value: 'factsetType' } },
|
|
7011
7018
|
{ kind: 'Field', name: { kind: 'Name', value: 'entityId' } },
|
|
7012
7019
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportId' } },
|
|
7020
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'provenance' } },
|
|
7013
7021
|
],
|
|
7014
7022
|
},
|
|
7015
7023
|
},
|
|
@@ -86,6 +86,7 @@ exports.GET_INFORMATION_BLOCK = (0, graphql_request_1.gql) `
|
|
|
86
86
|
factsetType
|
|
87
87
|
entityId
|
|
88
88
|
reportId
|
|
89
|
+
provenance
|
|
89
90
|
}
|
|
90
91
|
verificationResults {
|
|
91
92
|
id
|
|
@@ -225,6 +226,7 @@ exports.LIST_INFORMATION_BLOCKS = (0, graphql_request_1.gql) `
|
|
|
225
226
|
factsetType
|
|
226
227
|
entityId
|
|
227
228
|
reportId
|
|
229
|
+
provenance
|
|
228
230
|
}
|
|
229
231
|
verificationResults {
|
|
230
232
|
id
|
|
@@ -84,6 +84,7 @@ export const GET_INFORMATION_BLOCK = gql`
|
|
|
84
84
|
factsetType
|
|
85
85
|
entityId
|
|
86
86
|
reportId
|
|
87
|
+
provenance
|
|
87
88
|
}
|
|
88
89
|
verificationResults {
|
|
89
90
|
id
|
|
@@ -224,6 +225,7 @@ export const LIST_INFORMATION_BLOCKS = gql`
|
|
|
224
225
|
factsetType
|
|
225
226
|
entityId
|
|
226
227
|
reportId
|
|
228
|
+
provenance
|
|
227
229
|
}
|
|
228
230
|
verificationResults {
|
|
229
231
|
id
|
package/package.json
CHANGED
package/sdk/types.gen.d.ts
CHANGED
|
@@ -4191,6 +4191,14 @@ export type FactSetLite = {
|
|
|
4191
4191
|
* Back-pointer to the ``reports`` table while ``report_id`` still lives on facts. Drops out once the retirement migration lands.
|
|
4192
4192
|
*/
|
|
4193
4193
|
report_id?: string | null;
|
|
4194
|
+
/**
|
|
4195
|
+
* Provenance
|
|
4196
|
+
*
|
|
4197
|
+
* Typed ``FactProvenance`` descriptor (discriminated on ``origin``: pivot | schedule | derived | asserted) recording how this FactSet's facts were constructed. Surfaced as JSON, mirroring how mechanics is exposed. Null for pre-feature historical FactSets.
|
|
4198
|
+
*/
|
|
4199
|
+
provenance?: {
|
|
4200
|
+
[key: string]: unknown;
|
|
4201
|
+
} | null;
|
|
4194
4202
|
};
|
|
4195
4203
|
/**
|
|
4196
4204
|
* FileInfo
|
package/sdk/types.gen.ts
CHANGED
|
@@ -4299,6 +4299,14 @@ export type FactSetLite = {
|
|
|
4299
4299
|
* Back-pointer to the ``reports`` table while ``report_id`` still lives on facts. Drops out once the retirement migration lands.
|
|
4300
4300
|
*/
|
|
4301
4301
|
report_id?: string | null;
|
|
4302
|
+
/**
|
|
4303
|
+
* Provenance
|
|
4304
|
+
*
|
|
4305
|
+
* Typed ``FactProvenance`` descriptor (discriminated on ``origin``: pivot | schedule | derived | asserted) recording how this FactSet's facts were constructed. Surfaced as JSON, mirroring how mechanics is exposed. Null for pre-feature historical FactSets.
|
|
4306
|
+
*/
|
|
4307
|
+
provenance?: {
|
|
4308
|
+
[key: string]: unknown;
|
|
4309
|
+
} | null;
|
|
4302
4310
|
};
|
|
4303
4311
|
|
|
4304
4312
|
/**
|
package/types.gen.d.ts
CHANGED
|
@@ -4191,6 +4191,14 @@ export type FactSetLite = {
|
|
|
4191
4191
|
* Back-pointer to the ``reports`` table while ``report_id`` still lives on facts. Drops out once the retirement migration lands.
|
|
4192
4192
|
*/
|
|
4193
4193
|
report_id?: string | null;
|
|
4194
|
+
/**
|
|
4195
|
+
* Provenance
|
|
4196
|
+
*
|
|
4197
|
+
* Typed ``FactProvenance`` descriptor (discriminated on ``origin``: pivot | schedule | derived | asserted) recording how this FactSet's facts were constructed. Surfaced as JSON, mirroring how mechanics is exposed. Null for pre-feature historical FactSets.
|
|
4198
|
+
*/
|
|
4199
|
+
provenance?: {
|
|
4200
|
+
[key: string]: unknown;
|
|
4201
|
+
} | null;
|
|
4194
4202
|
};
|
|
4195
4203
|
/**
|
|
4196
4204
|
* FileInfo
|
package/types.gen.ts
CHANGED
|
@@ -4299,6 +4299,14 @@ export type FactSetLite = {
|
|
|
4299
4299
|
* Back-pointer to the ``reports`` table while ``report_id`` still lives on facts. Drops out once the retirement migration lands.
|
|
4300
4300
|
*/
|
|
4301
4301
|
report_id?: string | null;
|
|
4302
|
+
/**
|
|
4303
|
+
* Provenance
|
|
4304
|
+
*
|
|
4305
|
+
* Typed ``FactProvenance`` descriptor (discriminated on ``origin``: pivot | schedule | derived | asserted) recording how this FactSet's facts were constructed. Surfaced as JSON, mirroring how mechanics is exposed. Null for pre-feature historical FactSets.
|
|
4306
|
+
*/
|
|
4307
|
+
provenance?: {
|
|
4308
|
+
[key: string]: unknown;
|
|
4309
|
+
} | null;
|
|
4302
4310
|
};
|
|
4303
4311
|
|
|
4304
4312
|
/**
|